blob: f672c66cbf4a6f3d7fecd56644caf5d983878968 [file] [log] [blame]
Willy Tarreau4f60f162007-04-08 16:39:58 +02001/*
Willy Tarreaue9f49e72012-11-11 17:42:00 +01002 * FD polling functions for Linux epoll
Willy Tarreau4f60f162007-04-08 16:39:58 +02003 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +01004 * Copyright 2000-2014 Willy Tarreau <w@1wt.eu>
Willy Tarreau4f60f162007-04-08 16:39:58 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
Willy Tarreau4f60f162007-04-08 16:39:58 +020010 */
11
12#include <unistd.h>
13#include <sys/time.h>
14#include <sys/types.h>
15
16#include <common/compat.h>
17#include <common/config.h>
Willy Tarreaue9f49e72012-11-11 17:42:00 +010018#include <common/debug.h>
Willy Tarreau43d8fb22011-08-22 17:12:02 +020019#include <common/epoll.h>
Willy Tarreau60b639c2018-08-02 10:16:17 +020020#include <common/hathreads.h>
Willy Tarreau58094f22007-04-10 01:33:20 +020021#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020022#include <common/ticks.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020023#include <common/time.h>
Willy Tarreau1db37712007-06-03 17:16:49 +020024#include <common/tools.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020025
Willy Tarreau4f60f162007-04-08 16:39:58 +020026#include <types/global.h>
27
Willy Tarreaue9f49e72012-11-11 17:42:00 +010028#include <proto/fd.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020029
Willy Tarreau58094f22007-04-10 01:33:20 +020030
Willy Tarreau4f60f162007-04-08 16:39:58 +020031/* private data */
Christopher Fauletd4604ad2017-05-29 10:40:41 +020032static THREAD_LOCAL struct epoll_event *epoll_events = NULL;
Willy Tarreaud9e7e362018-01-18 19:16:02 +010033static int epoll_fd[MAX_THREADS]; // per-thread epoll_fd
Willy Tarreau4f60f162007-04-08 16:39:58 +020034
Willy Tarreau58094f22007-04-10 01:33:20 +020035/* This structure may be used for any purpose. Warning! do not use it in
36 * recursive functions !
37 */
Christopher Fauletd4604ad2017-05-29 10:40:41 +020038static THREAD_LOCAL struct epoll_event ev;
Willy Tarreau58094f22007-04-10 01:33:20 +020039
Willy Tarreau1c07b072013-01-07 16:19:18 +010040#ifndef EPOLLRDHUP
41/* EPOLLRDHUP was defined late in libc, and it appeared in kernel 2.6.17 */
42#define EPOLLRDHUP 0x2000
43#endif
44
Willy Tarreau4f60f162007-04-08 16:39:58 +020045/*
Conrad Hoffmann041751c2014-05-20 14:28:24 +020046 * Immediately remove file descriptor from epoll set upon close.
47 * Since we forked, some fds share inodes with the other process, and epoll may
48 * send us events even though this process closed the fd (see man 7 epoll,
49 * "Questions and answers", Q 6).
50 */
51REGPRM1 static void __fd_clo(int fd)
52{
Willy Tarreaud9e7e362018-01-18 19:16:02 +010053 if (unlikely(fdtab[fd].cloned)) {
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020054 unsigned long m = polled_mask[fd];
Willy Tarreaud9e7e362018-01-18 19:16:02 +010055 int i;
56
57 for (i = global.nbthread - 1; i >= 0; i--)
58 if (m & (1UL << i))
59 epoll_ctl(epoll_fd[i], EPOLL_CTL_DEL, fd, &ev);
60 }
Conrad Hoffmann041751c2014-05-20 14:28:24 +020061}
62
Olivier Houchard6b96f722018-04-25 16:58:25 +020063static void _update_fd(int fd)
64{
65 int en, opcode;
66
67 en = fdtab[fd].state;
68
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020069 if (polled_mask[fd] & tid_bit) {
Olivier Houchard6b96f722018-04-25 16:58:25 +020070 if (!(fdtab[fd].thread_mask & tid_bit) || !(en & FD_EV_POLLED_RW)) {
71 /* fd removed from poll list */
72 opcode = EPOLL_CTL_DEL;
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020073 HA_ATOMIC_AND(&polled_mask[fd], ~tid_bit);
Olivier Houchard6b96f722018-04-25 16:58:25 +020074 }
75 else {
76 /* fd status changed */
77 opcode = EPOLL_CTL_MOD;
78 }
79 }
80 else if ((fdtab[fd].thread_mask & tid_bit) && (en & FD_EV_POLLED_RW)) {
81 /* new fd in the poll list */
82 opcode = EPOLL_CTL_ADD;
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020083 HA_ATOMIC_OR(&polled_mask[fd], tid_bit);
Olivier Houchard6b96f722018-04-25 16:58:25 +020084 }
85 else {
86 return;
87 }
88
89 /* construct the epoll events based on new state */
90 ev.events = 0;
91 if (en & FD_EV_POLLED_R)
92 ev.events |= EPOLLIN | EPOLLRDHUP;
93
94 if (en & FD_EV_POLLED_W)
95 ev.events |= EPOLLOUT;
96
97 ev.data.fd = fd;
98 epoll_ctl(epoll_fd[tid], opcode, fd, &ev);
99}
100
Conrad Hoffmann041751c2014-05-20 14:28:24 +0200101/*
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100102 * Linux epoll() poller
Willy Tarreau4f60f162007-04-08 16:39:58 +0200103 */
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100104REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200105{
Olivier Houchard6b96f722018-04-25 16:58:25 +0200106 int status;
107 int fd;
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100108 int count;
109 int updt_idx;
110 int wait_time;
Olivier Houchard6b96f722018-04-25 16:58:25 +0200111 int old_fd;
Willy Tarreau58094f22007-04-10 01:33:20 +0200112
Willy Tarreau5be2f352014-11-19 19:43:05 +0100113 /* first, scan the update list to find polling changes */
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100114 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
115 fd = fd_updt[updt_idx];
Willy Tarreau58094f22007-04-10 01:33:20 +0200116
Olivier Houchard8ef1a6b2018-04-03 19:06:18 +0200117 HA_ATOMIC_AND(&fdtab[fd].update_mask, ~tid_bit);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100118 if (!fdtab[fd].owner) {
119 activity[tid].poll_drop++;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100120 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100121 }
Willy Tarreau58094f22007-04-10 01:33:20 +0200122
Olivier Houchard6b96f722018-04-25 16:58:25 +0200123 _update_fd(fd);
124 }
125 fd_nbupdt = 0;
126 /* Scan the global update list */
127 for (old_fd = fd = update_list.first; fd != -1; fd = fdtab[fd].update.next) {
128 if (fd == -2) {
129 fd = old_fd;
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100130 continue;
131 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200132 else if (fd <= -3)
133 fd = -fd -4;
134 if (fd == -1)
135 break;
136 if (fdtab[fd].update_mask & tid_bit)
137 done_update_polling(fd);
138 else
139 continue;
140 if (!fdtab[fd].owner)
141 continue;
142 _update_fd(fd);
Willy Tarreau58094f22007-04-10 01:33:20 +0200143 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200144
Willy Tarreau60b639c2018-08-02 10:16:17 +0200145 thread_harmless_now();
146
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100147 /* compute the epoll_wait() timeout */
Willy Tarreau10146c92015-04-13 20:44:19 +0200148 if (!exp)
149 wait_time = MAX_DELAY_MS;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100150 else if (tick_is_expired(exp, now_ms)) {
151 activity[tid].poll_exp++;
Willy Tarreaubdefc512007-05-14 02:02:04 +0200152 wait_time = 0;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100153 }
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200154 else {
Willy Tarreau10146c92015-04-13 20:44:19 +0200155 wait_time = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
156 if (wait_time > MAX_DELAY_MS)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200157 wait_time = MAX_DELAY_MS;
158 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200159
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100160 /* now let's wait for polled events */
161
Willy Tarreau45a12512011-09-10 16:56:42 +0200162 gettimeofday(&before_poll, NULL);
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100163 status = epoll_wait(epoll_fd[tid], epoll_events, global.tune.maxpollevents, wait_time);
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200164 tv_update_date(wait_time, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200165 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200166
Willy Tarreau60b639c2018-08-02 10:16:17 +0200167 thread_harmless_end();
168
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100169 /* process polled events */
170
Willy Tarreau4f60f162007-04-08 16:39:58 +0200171 for (count = 0; count < status; count++) {
Willy Tarreau1c07b072013-01-07 16:19:18 +0100172 unsigned int n;
173 unsigned int e = epoll_events[count].events;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200174 fd = epoll_events[count].data.fd;
175
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100176 if (!fdtab[fd].owner) {
177 activity[tid].poll_dead++;
178 continue;
179 }
180
181 if (!(fdtab[fd].thread_mask & tid_bit)) {
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100182 /* FD has been migrated */
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100183 activity[tid].poll_skip++;
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100184 epoll_ctl(epoll_fd[tid], EPOLL_CTL_DEL, fd, &ev);
Olivier Houchardcb92f5c2018-04-26 14:23:07 +0200185 HA_ATOMIC_AND(&polled_mask[fd], ~tid_bit);
Willy Tarreau076be252012-07-06 16:02:29 +0200186 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100187 }
Willy Tarreau076be252012-07-06 16:02:29 +0200188
Willy Tarreau491c4982012-07-06 11:16:01 +0200189 /* it looks complicated but gcc can optimize it away when constants
Willy Tarreau462c7202012-12-13 22:26:37 +0100190 * have same values... In fact it depends on gcc :-(
Willy Tarreau491c4982012-07-06 11:16:01 +0200191 */
Willy Tarreau462c7202012-12-13 22:26:37 +0100192 if (EPOLLIN == FD_POLL_IN && EPOLLOUT == FD_POLL_OUT &&
193 EPOLLPRI == FD_POLL_PRI && EPOLLERR == FD_POLL_ERR &&
194 EPOLLHUP == FD_POLL_HUP) {
Willy Tarreau6320c3c2012-12-13 23:52:58 +0100195 n = e & (EPOLLIN|EPOLLOUT|EPOLLPRI|EPOLLERR|EPOLLHUP);
Willy Tarreau462c7202012-12-13 22:26:37 +0100196 }
197 else {
Willy Tarreau6320c3c2012-12-13 23:52:58 +0100198 n = ((e & EPOLLIN ) ? FD_POLL_IN : 0) |
Willy Tarreau462c7202012-12-13 22:26:37 +0100199 ((e & EPOLLPRI) ? FD_POLL_PRI : 0) |
200 ((e & EPOLLOUT) ? FD_POLL_OUT : 0) |
201 ((e & EPOLLERR) ? FD_POLL_ERR : 0) |
202 ((e & EPOLLHUP) ? FD_POLL_HUP : 0);
203 }
Willy Tarreau491c4982012-07-06 11:16:01 +0200204
Willy Tarreau1c07b072013-01-07 16:19:18 +0100205 /* always remap RDHUP to HUP as they're used similarly */
Willy Tarreau5a767692017-03-13 11:38:28 +0100206 if (e & EPOLLRDHUP) {
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200207 HA_ATOMIC_OR(&cur_poller.flags, HAP_POLL_F_RDHUP);
Willy Tarreau1c07b072013-01-07 16:19:18 +0100208 n |= FD_POLL_HUP;
Willy Tarreau5a767692017-03-13 11:38:28 +0100209 }
Christopher Fauletab62f512017-08-30 10:34:36 +0200210 fd_update_events(fd, n);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200211 }
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100212 /* the caller will take care of cached events */
Willy Tarreau4f60f162007-04-08 16:39:58 +0200213}
214
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200215static int init_epoll_per_thread()
216{
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100217 int fd;
218
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200219 epoll_events = calloc(1, sizeof(struct epoll_event) * global.tune.maxpollevents);
220 if (epoll_events == NULL)
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100221 goto fail_alloc;
222
Christopher Faulet3e805ed2018-01-25 16:18:09 +0100223 if (MAX_THREADS > 1 && tid) {
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100224 epoll_fd[tid] = epoll_create(global.maxsock + 1);
225 if (epoll_fd[tid] < 0)
226 goto fail_fd;
227 }
228
229 /* we may have to unregister some events initially registered on the
230 * original fd when it was alone, and/or to register events on the new
231 * fd for this thread. Let's just mark them as updated, the poller will
232 * do the rest.
233 */
Willy Tarreauce036bc2018-01-29 14:58:02 +0100234 for (fd = 0; fd < global.maxsock; fd++)
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100235 updt_fd_polling(fd);
236
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200237 return 1;
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100238 fail_fd:
239 free(epoll_events);
240 fail_alloc:
241 return 0;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200242}
243
244static void deinit_epoll_per_thread()
245{
Christopher Faulet3e805ed2018-01-25 16:18:09 +0100246 if (MAX_THREADS > 1 && tid)
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100247 close(epoll_fd[tid]);
248
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200249 free(epoll_events);
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200250 epoll_events = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200251}
252
Willy Tarreau4f60f162007-04-08 16:39:58 +0200253/*
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100254 * Initialization of the epoll() poller.
Willy Tarreaue54e9172007-04-09 09:23:31 +0200255 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
256 * disables the poller by setting its pref to 0.
257 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200258REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200259{
Willy Tarreaue54e9172007-04-09 09:23:31 +0200260 p->private = NULL;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200261
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100262 epoll_fd[tid] = epoll_create(global.maxsock + 1);
263 if (epoll_fd[tid] < 0)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200264 goto fail_fd;
265
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200266 hap_register_per_thread_init(init_epoll_per_thread);
267 hap_register_per_thread_deinit(deinit_epoll_per_thread);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200268
Willy Tarreaue54e9172007-04-09 09:23:31 +0200269 return 1;
270
Willy Tarreaue54e9172007-04-09 09:23:31 +0200271 fail_fd:
272 p->pref = 0;
273 return 0;
274}
275
276/*
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100277 * Termination of the epoll() poller.
Willy Tarreaue54e9172007-04-09 09:23:31 +0200278 * Memory is released and the poller is marked as unselectable.
279 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200280REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200281{
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100282 if (epoll_fd[tid] >= 0) {
283 close(epoll_fd[tid]);
284 epoll_fd[tid] = -1;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200285 }
Willy Tarreaue54e9172007-04-09 09:23:31 +0200286
287 p->private = NULL;
288 p->pref = 0;
289}
290
291/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200292 * Check that the poller works.
293 * Returns 1 if OK, otherwise 0.
294 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200295REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200296{
297 int fd;
298
299 fd = epoll_create(global.maxsock + 1);
300 if (fd < 0)
301 return 0;
302 close(fd);
303 return 1;
304}
305
306/*
Willy Tarreaufb8983f2007-06-03 16:40:44 +0200307 * Recreate the epoll file descriptor after a fork(). Returns 1 if OK,
308 * otherwise 0. It will ensure that all processes will not share their
309 * epoll_fd. Some side effects were encountered because of this, such
310 * as epoll_wait() returning an FD which was previously deleted.
311 */
312REGPRM1 static int _do_fork(struct poller *p)
313{
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100314 if (epoll_fd[tid] >= 0)
315 close(epoll_fd[tid]);
316 epoll_fd[tid] = epoll_create(global.maxsock + 1);
317 if (epoll_fd[tid] < 0)
Willy Tarreaufb8983f2007-06-03 16:40:44 +0200318 return 0;
319 return 1;
320}
321
322/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200323 * It is a constructor, which means that it will automatically be called before
324 * main(). This is GCC-specific but it works at least since 2.95.
325 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200326 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200327__attribute__((constructor))
328static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200329{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200330 struct poller *p;
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100331 int i;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200332
333 if (nbpollers >= MAX_POLLERS)
334 return;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200335
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100336 for (i = 0; i < MAX_THREADS; i++)
337 epoll_fd[i] = -1;
338
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200339 p = &pollers[nbpollers++];
340
Willy Tarreau4f60f162007-04-08 16:39:58 +0200341 p->name = "epoll";
342 p->pref = 300;
Willy Tarreau5a767692017-03-13 11:38:28 +0100343 p->flags = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200344 p->private = NULL;
345
Conrad Hoffmann041751c2014-05-20 14:28:24 +0200346 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200347 p->test = _do_test;
348 p->init = _do_init;
349 p->term = _do_term;
350 p->poll = _do_poll;
Willy Tarreaufb8983f2007-06-03 16:40:44 +0200351 p->fork = _do_fork;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200352}
353
354
355/*
356 * Local variables:
357 * c-indent-level: 8
358 * c-basic-offset: 8
359 * End:
360 */