blob: abc22ba76e77188da44a690e05cb90faf003f838 [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 Tarreau58094f22007-04-10 01:33:20 +020020#include <common/standard.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020021#include <common/ticks.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020022#include <common/time.h>
Willy Tarreau1db37712007-06-03 17:16:49 +020023#include <common/tools.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020024
Willy Tarreau4f60f162007-04-08 16:39:58 +020025#include <types/global.h>
26
Willy Tarreaue9f49e72012-11-11 17:42:00 +010027#include <proto/fd.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020028
Willy Tarreau58094f22007-04-10 01:33:20 +020029
Willy Tarreau4f60f162007-04-08 16:39:58 +020030/* private data */
Christopher Fauletd4604ad2017-05-29 10:40:41 +020031static THREAD_LOCAL struct epoll_event *epoll_events = NULL;
Willy Tarreaud9e7e362018-01-18 19:16:02 +010032static int epoll_fd[MAX_THREADS]; // per-thread epoll_fd
Willy Tarreau4f60f162007-04-08 16:39:58 +020033
Willy Tarreau58094f22007-04-10 01:33:20 +020034/* This structure may be used for any purpose. Warning! do not use it in
35 * recursive functions !
36 */
Christopher Fauletd4604ad2017-05-29 10:40:41 +020037static THREAD_LOCAL struct epoll_event ev;
Willy Tarreau58094f22007-04-10 01:33:20 +020038
Willy Tarreau1c07b072013-01-07 16:19:18 +010039#ifndef EPOLLRDHUP
40/* EPOLLRDHUP was defined late in libc, and it appeared in kernel 2.6.17 */
41#define EPOLLRDHUP 0x2000
42#endif
43
Willy Tarreau4f60f162007-04-08 16:39:58 +020044/*
Conrad Hoffmann041751c2014-05-20 14:28:24 +020045 * Immediately remove file descriptor from epoll set upon close.
46 * Since we forked, some fds share inodes with the other process, and epoll may
47 * send us events even though this process closed the fd (see man 7 epoll,
48 * "Questions and answers", Q 6).
49 */
50REGPRM1 static void __fd_clo(int fd)
51{
Willy Tarreaud9e7e362018-01-18 19:16:02 +010052 if (unlikely(fdtab[fd].cloned)) {
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020053 unsigned long m = polled_mask[fd];
Willy Tarreaud9e7e362018-01-18 19:16:02 +010054 int i;
55
56 for (i = global.nbthread - 1; i >= 0; i--)
57 if (m & (1UL << i))
58 epoll_ctl(epoll_fd[i], EPOLL_CTL_DEL, fd, &ev);
59 }
Conrad Hoffmann041751c2014-05-20 14:28:24 +020060}
61
Olivier Houchard6b96f722018-04-25 16:58:25 +020062static void _update_fd(int fd)
63{
64 int en, opcode;
65
66 en = fdtab[fd].state;
67
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020068 if (polled_mask[fd] & tid_bit) {
Olivier Houchard6b96f722018-04-25 16:58:25 +020069 if (!(fdtab[fd].thread_mask & tid_bit) || !(en & FD_EV_POLLED_RW)) {
70 /* fd removed from poll list */
71 opcode = EPOLL_CTL_DEL;
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020072 HA_ATOMIC_AND(&polled_mask[fd], ~tid_bit);
Olivier Houchard6b96f722018-04-25 16:58:25 +020073 }
74 else {
75 /* fd status changed */
76 opcode = EPOLL_CTL_MOD;
77 }
78 }
79 else if ((fdtab[fd].thread_mask & tid_bit) && (en & FD_EV_POLLED_RW)) {
80 /* new fd in the poll list */
81 opcode = EPOLL_CTL_ADD;
Olivier Houchardcb92f5c2018-04-26 14:23:07 +020082 HA_ATOMIC_OR(&polled_mask[fd], tid_bit);
Olivier Houchard6b96f722018-04-25 16:58:25 +020083 }
84 else {
85 return;
86 }
87
88 /* construct the epoll events based on new state */
89 ev.events = 0;
90 if (en & FD_EV_POLLED_R)
91 ev.events |= EPOLLIN | EPOLLRDHUP;
92
93 if (en & FD_EV_POLLED_W)
94 ev.events |= EPOLLOUT;
95
96 ev.data.fd = fd;
97 epoll_ctl(epoll_fd[tid], opcode, fd, &ev);
98}
99
Conrad Hoffmann041751c2014-05-20 14:28:24 +0200100/*
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100101 * Linux epoll() poller
Willy Tarreau4f60f162007-04-08 16:39:58 +0200102 */
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100103REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200104{
Olivier Houchard6b96f722018-04-25 16:58:25 +0200105 int status;
106 int fd;
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100107 int count;
108 int updt_idx;
109 int wait_time;
Olivier Houchard6b96f722018-04-25 16:58:25 +0200110 int old_fd;
Willy Tarreau58094f22007-04-10 01:33:20 +0200111
Willy Tarreau5be2f352014-11-19 19:43:05 +0100112 /* first, scan the update list to find polling changes */
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100113 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
114 fd = fd_updt[updt_idx];
Willy Tarreau58094f22007-04-10 01:33:20 +0200115
Olivier Houchard8ef1a6b2018-04-03 19:06:18 +0200116 HA_ATOMIC_AND(&fdtab[fd].update_mask, ~tid_bit);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100117 if (!fdtab[fd].owner) {
118 activity[tid].poll_drop++;
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100119 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100120 }
Willy Tarreau58094f22007-04-10 01:33:20 +0200121
Olivier Houchard6b96f722018-04-25 16:58:25 +0200122 _update_fd(fd);
123 }
124 fd_nbupdt = 0;
125 /* Scan the global update list */
126 for (old_fd = fd = update_list.first; fd != -1; fd = fdtab[fd].update.next) {
127 if (fd == -2) {
128 fd = old_fd;
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100129 continue;
130 }
Olivier Houchard6b96f722018-04-25 16:58:25 +0200131 else if (fd <= -3)
132 fd = -fd -4;
133 if (fd == -1)
134 break;
135 if (fdtab[fd].update_mask & tid_bit)
136 done_update_polling(fd);
137 else
138 continue;
139 if (!fdtab[fd].owner)
140 continue;
141 _update_fd(fd);
Willy Tarreau58094f22007-04-10 01:33:20 +0200142 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200143
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100144 /* compute the epoll_wait() timeout */
Willy Tarreau10146c92015-04-13 20:44:19 +0200145 if (!exp)
146 wait_time = MAX_DELAY_MS;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100147 else if (tick_is_expired(exp, now_ms)) {
148 activity[tid].poll_exp++;
Willy Tarreaubdefc512007-05-14 02:02:04 +0200149 wait_time = 0;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100150 }
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200151 else {
Willy Tarreau10146c92015-04-13 20:44:19 +0200152 wait_time = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
153 if (wait_time > MAX_DELAY_MS)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200154 wait_time = MAX_DELAY_MS;
155 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200156
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100157 /* now let's wait for polled events */
158
Willy Tarreau45a12512011-09-10 16:56:42 +0200159 gettimeofday(&before_poll, NULL);
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100160 status = epoll_wait(epoll_fd[tid], epoll_events, global.tune.maxpollevents, wait_time);
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200161 tv_update_date(wait_time, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200162 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200163
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100164 /* process polled events */
165
Willy Tarreau4f60f162007-04-08 16:39:58 +0200166 for (count = 0; count < status; count++) {
Willy Tarreau1c07b072013-01-07 16:19:18 +0100167 unsigned int n;
168 unsigned int e = epoll_events[count].events;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200169 fd = epoll_events[count].data.fd;
170
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100171 if (!fdtab[fd].owner) {
172 activity[tid].poll_dead++;
173 continue;
174 }
175
176 if (!(fdtab[fd].thread_mask & tid_bit)) {
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100177 /* FD has been migrated */
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100178 activity[tid].poll_skip++;
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100179 epoll_ctl(epoll_fd[tid], EPOLL_CTL_DEL, fd, &ev);
Olivier Houchardcb92f5c2018-04-26 14:23:07 +0200180 HA_ATOMIC_AND(&polled_mask[fd], ~tid_bit);
Willy Tarreau076be252012-07-06 16:02:29 +0200181 continue;
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100182 }
Willy Tarreau076be252012-07-06 16:02:29 +0200183
Willy Tarreau491c4982012-07-06 11:16:01 +0200184 /* it looks complicated but gcc can optimize it away when constants
Willy Tarreau462c7202012-12-13 22:26:37 +0100185 * have same values... In fact it depends on gcc :-(
Willy Tarreau491c4982012-07-06 11:16:01 +0200186 */
Willy Tarreau462c7202012-12-13 22:26:37 +0100187 if (EPOLLIN == FD_POLL_IN && EPOLLOUT == FD_POLL_OUT &&
188 EPOLLPRI == FD_POLL_PRI && EPOLLERR == FD_POLL_ERR &&
189 EPOLLHUP == FD_POLL_HUP) {
Willy Tarreau6320c3c2012-12-13 23:52:58 +0100190 n = e & (EPOLLIN|EPOLLOUT|EPOLLPRI|EPOLLERR|EPOLLHUP);
Willy Tarreau462c7202012-12-13 22:26:37 +0100191 }
192 else {
Willy Tarreau6320c3c2012-12-13 23:52:58 +0100193 n = ((e & EPOLLIN ) ? FD_POLL_IN : 0) |
Willy Tarreau462c7202012-12-13 22:26:37 +0100194 ((e & EPOLLPRI) ? FD_POLL_PRI : 0) |
195 ((e & EPOLLOUT) ? FD_POLL_OUT : 0) |
196 ((e & EPOLLERR) ? FD_POLL_ERR : 0) |
197 ((e & EPOLLHUP) ? FD_POLL_HUP : 0);
198 }
Willy Tarreau491c4982012-07-06 11:16:01 +0200199
Willy Tarreau1c07b072013-01-07 16:19:18 +0100200 /* always remap RDHUP to HUP as they're used similarly */
Willy Tarreau5a767692017-03-13 11:38:28 +0100201 if (e & EPOLLRDHUP) {
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200202 HA_ATOMIC_OR(&cur_poller.flags, HAP_POLL_F_RDHUP);
Willy Tarreau1c07b072013-01-07 16:19:18 +0100203 n |= FD_POLL_HUP;
Willy Tarreau5a767692017-03-13 11:38:28 +0100204 }
Christopher Fauletab62f512017-08-30 10:34:36 +0200205 fd_update_events(fd, n);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200206 }
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100207 /* the caller will take care of cached events */
Willy Tarreau4f60f162007-04-08 16:39:58 +0200208}
209
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200210static int init_epoll_per_thread()
211{
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100212 int fd;
213
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200214 epoll_events = calloc(1, sizeof(struct epoll_event) * global.tune.maxpollevents);
215 if (epoll_events == NULL)
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100216 goto fail_alloc;
217
Christopher Faulet3e805ed2018-01-25 16:18:09 +0100218 if (MAX_THREADS > 1 && tid) {
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100219 epoll_fd[tid] = epoll_create(global.maxsock + 1);
220 if (epoll_fd[tid] < 0)
221 goto fail_fd;
222 }
223
224 /* we may have to unregister some events initially registered on the
225 * original fd when it was alone, and/or to register events on the new
226 * fd for this thread. Let's just mark them as updated, the poller will
227 * do the rest.
228 */
Willy Tarreauce036bc2018-01-29 14:58:02 +0100229 for (fd = 0; fd < global.maxsock; fd++)
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100230 updt_fd_polling(fd);
231
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200232 return 1;
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100233 fail_fd:
234 free(epoll_events);
235 fail_alloc:
236 return 0;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200237}
238
239static void deinit_epoll_per_thread()
240{
Christopher Faulet3e805ed2018-01-25 16:18:09 +0100241 if (MAX_THREADS > 1 && tid)
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100242 close(epoll_fd[tid]);
243
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200244 free(epoll_events);
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200245 epoll_events = NULL;
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200246}
247
Willy Tarreau4f60f162007-04-08 16:39:58 +0200248/*
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100249 * Initialization of the epoll() poller.
Willy Tarreaue54e9172007-04-09 09:23:31 +0200250 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
251 * disables the poller by setting its pref to 0.
252 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200253REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200254{
Willy Tarreaue54e9172007-04-09 09:23:31 +0200255 p->private = NULL;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200256
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100257 epoll_fd[tid] = epoll_create(global.maxsock + 1);
258 if (epoll_fd[tid] < 0)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200259 goto fail_fd;
260
Christopher Fauletcd7879a2017-10-27 13:53:47 +0200261 hap_register_per_thread_init(init_epoll_per_thread);
262 hap_register_per_thread_deinit(deinit_epoll_per_thread);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200263
Willy Tarreaue54e9172007-04-09 09:23:31 +0200264 return 1;
265
Willy Tarreaue54e9172007-04-09 09:23:31 +0200266 fail_fd:
267 p->pref = 0;
268 return 0;
269}
270
271/*
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100272 * Termination of the epoll() poller.
Willy Tarreaue54e9172007-04-09 09:23:31 +0200273 * Memory is released and the poller is marked as unselectable.
274 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200275REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200276{
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100277 if (epoll_fd[tid] >= 0) {
278 close(epoll_fd[tid]);
279 epoll_fd[tid] = -1;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200280 }
Willy Tarreaue54e9172007-04-09 09:23:31 +0200281
282 p->private = NULL;
283 p->pref = 0;
284}
285
286/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200287 * Check that the poller works.
288 * Returns 1 if OK, otherwise 0.
289 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200290REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200291{
292 int fd;
293
294 fd = epoll_create(global.maxsock + 1);
295 if (fd < 0)
296 return 0;
297 close(fd);
298 return 1;
299}
300
301/*
Willy Tarreaufb8983f2007-06-03 16:40:44 +0200302 * Recreate the epoll file descriptor after a fork(). Returns 1 if OK,
303 * otherwise 0. It will ensure that all processes will not share their
304 * epoll_fd. Some side effects were encountered because of this, such
305 * as epoll_wait() returning an FD which was previously deleted.
306 */
307REGPRM1 static int _do_fork(struct poller *p)
308{
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100309 if (epoll_fd[tid] >= 0)
310 close(epoll_fd[tid]);
311 epoll_fd[tid] = epoll_create(global.maxsock + 1);
312 if (epoll_fd[tid] < 0)
Willy Tarreaufb8983f2007-06-03 16:40:44 +0200313 return 0;
314 return 1;
315}
316
317/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200318 * It is a constructor, which means that it will automatically be called before
319 * main(). This is GCC-specific but it works at least since 2.95.
320 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200321 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200322__attribute__((constructor))
323static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200324{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200325 struct poller *p;
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100326 int i;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200327
328 if (nbpollers >= MAX_POLLERS)
329 return;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200330
Willy Tarreaud9e7e362018-01-18 19:16:02 +0100331 for (i = 0; i < MAX_THREADS; i++)
332 epoll_fd[i] = -1;
333
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200334 p = &pollers[nbpollers++];
335
Willy Tarreau4f60f162007-04-08 16:39:58 +0200336 p->name = "epoll";
337 p->pref = 300;
Willy Tarreau5a767692017-03-13 11:38:28 +0100338 p->flags = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200339 p->private = NULL;
340
Conrad Hoffmann041751c2014-05-20 14:28:24 +0200341 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200342 p->test = _do_test;
343 p->init = _do_init;
344 p->term = _do_term;
345 p->poll = _do_poll;
Willy Tarreaufb8983f2007-06-03 16:40:44 +0200346 p->fork = _do_fork;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200347}
348
349
350/*
351 * Local variables:
352 * c-indent-level: 8
353 * c-basic-offset: 8
354 * End:
355 */