blob: ccb7c33772ab62f5aad297437e6795ea1f6d80a6 [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 */
31static struct epoll_event *epoll_events;
32static int epoll_fd;
33
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 */
37static struct epoll_event ev;
38
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{
52 if (unlikely(fdtab[fd].cloned)) {
53 epoll_ctl(epoll_fd, EPOLL_CTL_DEL, fd, &ev);
54 }
55}
56
57/*
Willy Tarreauf817e9f2014-01-10 16:58:45 +010058 * Linux epoll() poller
Willy Tarreau4f60f162007-04-08 16:39:58 +020059 */
Willy Tarreaue9f49e72012-11-11 17:42:00 +010060REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +020061{
Willy Tarreaue9f49e72012-11-11 17:42:00 +010062 int status, eo, en;
63 int fd, opcode;
64 int count;
65 int updt_idx;
66 int wait_time;
Willy Tarreau58094f22007-04-10 01:33:20 +020067
Willy Tarreau5be2f352014-11-19 19:43:05 +010068 /* first, scan the update list to find polling changes */
Willy Tarreaue9f49e72012-11-11 17:42:00 +010069 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
70 fd = fd_updt[updt_idx];
Willy Tarreauf817e9f2014-01-10 16:58:45 +010071 fdtab[fd].updated = 0;
72 fdtab[fd].new = 0;
Willy Tarreau58094f22007-04-10 01:33:20 +020073
Willy Tarreauf817e9f2014-01-10 16:58:45 +010074 if (!fdtab[fd].owner)
75 continue;
Willy Tarreau58094f22007-04-10 01:33:20 +020076
Willy Tarreau25002d22014-01-25 10:32:56 +010077 eo = fdtab[fd].state;
78 en = fd_compute_new_polled_status(eo);
Willy Tarreau58094f22007-04-10 01:33:20 +020079
Willy Tarreauf817e9f2014-01-10 16:58:45 +010080 if ((eo ^ en) & FD_EV_POLLED_RW) {
81 /* poll status changed */
82 fdtab[fd].state = en;
Willy Tarreauf8cfa442012-10-04 21:54:41 +020083
Willy Tarreauf817e9f2014-01-10 16:58:45 +010084 if ((en & FD_EV_POLLED_RW) == 0) {
85 /* fd removed from poll list */
86 opcode = EPOLL_CTL_DEL;
Willy Tarreaue9f49e72012-11-11 17:42:00 +010087 }
Willy Tarreauf817e9f2014-01-10 16:58:45 +010088 else if ((eo & FD_EV_POLLED_RW) == 0) {
89 /* new fd in the poll list */
90 opcode = EPOLL_CTL_ADD;
Willy Tarreaue9f49e72012-11-11 17:42:00 +010091 }
Willy Tarreauf817e9f2014-01-10 16:58:45 +010092 else {
93 /* fd status changed */
94 opcode = EPOLL_CTL_MOD;
95 }
96
97 /* construct the epoll events based on new state */
98 ev.events = 0;
99 if (en & FD_EV_POLLED_R)
100 ev.events |= EPOLLIN | EPOLLRDHUP;
101
102 if (en & FD_EV_POLLED_W)
103 ev.events |= EPOLLOUT;
104
105 ev.data.fd = fd;
106 epoll_ctl(epoll_fd, opcode, fd, &ev);
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100107 }
Willy Tarreau58094f22007-04-10 01:33:20 +0200108 }
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100109 fd_nbupdt = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200110
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100111 /* compute the epoll_wait() timeout */
Willy Tarreau10146c92015-04-13 20:44:19 +0200112 if (!exp)
113 wait_time = MAX_DELAY_MS;
114 else if (tick_is_expired(exp, now_ms))
Willy Tarreaubdefc512007-05-14 02:02:04 +0200115 wait_time = 0;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200116 else {
Willy Tarreau10146c92015-04-13 20:44:19 +0200117 wait_time = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
118 if (wait_time > MAX_DELAY_MS)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200119 wait_time = MAX_DELAY_MS;
120 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200121
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100122 /* now let's wait for polled events */
123
Willy Tarreau45a12512011-09-10 16:56:42 +0200124 gettimeofday(&before_poll, NULL);
Willy Tarreaucf181c92013-01-18 15:22:41 +0100125 status = epoll_wait(epoll_fd, epoll_events, global.tune.maxpollevents, wait_time);
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200126 tv_update_date(wait_time, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200127 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200128
Willy Tarreaue9f49e72012-11-11 17:42:00 +0100129 /* process polled events */
130
Willy Tarreau4f60f162007-04-08 16:39:58 +0200131 for (count = 0; count < status; count++) {
Willy Tarreau1c07b072013-01-07 16:19:18 +0100132 unsigned int n;
133 unsigned int e = epoll_events[count].events;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200134 fd = epoll_events[count].data.fd;
135
Willy Tarreau076be252012-07-06 16:02:29 +0200136 if (!fdtab[fd].owner)
137 continue;
138
Willy Tarreau491c4982012-07-06 11:16:01 +0200139 /* it looks complicated but gcc can optimize it away when constants
Willy Tarreau462c7202012-12-13 22:26:37 +0100140 * have same values... In fact it depends on gcc :-(
Willy Tarreau491c4982012-07-06 11:16:01 +0200141 */
142 fdtab[fd].ev &= FD_POLL_STICKY;
Willy Tarreau462c7202012-12-13 22:26:37 +0100143 if (EPOLLIN == FD_POLL_IN && EPOLLOUT == FD_POLL_OUT &&
144 EPOLLPRI == FD_POLL_PRI && EPOLLERR == FD_POLL_ERR &&
145 EPOLLHUP == FD_POLL_HUP) {
Willy Tarreau6320c3c2012-12-13 23:52:58 +0100146 n = e & (EPOLLIN|EPOLLOUT|EPOLLPRI|EPOLLERR|EPOLLHUP);
Willy Tarreau462c7202012-12-13 22:26:37 +0100147 }
148 else {
Willy Tarreau6320c3c2012-12-13 23:52:58 +0100149 n = ((e & EPOLLIN ) ? FD_POLL_IN : 0) |
Willy Tarreau462c7202012-12-13 22:26:37 +0100150 ((e & EPOLLPRI) ? FD_POLL_PRI : 0) |
151 ((e & EPOLLOUT) ? FD_POLL_OUT : 0) |
152 ((e & EPOLLERR) ? FD_POLL_ERR : 0) |
153 ((e & EPOLLHUP) ? FD_POLL_HUP : 0);
154 }
Willy Tarreau491c4982012-07-06 11:16:01 +0200155
Willy Tarreau1c07b072013-01-07 16:19:18 +0100156 /* always remap RDHUP to HUP as they're used similarly */
157 if (e & EPOLLRDHUP)
158 n |= FD_POLL_HUP;
159
Willy Tarreau6320c3c2012-12-13 23:52:58 +0100160 fdtab[fd].ev |= n;
Willy Tarreau5be2f352014-11-19 19:43:05 +0100161 if (n & (FD_POLL_IN | FD_POLL_HUP | FD_POLL_ERR))
162 fd_may_recv(fd);
163
164 if (n & (FD_POLL_OUT | FD_POLL_ERR))
165 fd_may_send(fd);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200166 }
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100167 /* the caller will take care of cached events */
Willy Tarreau4f60f162007-04-08 16:39:58 +0200168}
169
170/*
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100171 * Initialization of the epoll() poller.
Willy Tarreaue54e9172007-04-09 09:23:31 +0200172 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
173 * disables the poller by setting its pref to 0.
174 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200175REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200176{
Willy Tarreaue54e9172007-04-09 09:23:31 +0200177 p->private = NULL;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200178
179 epoll_fd = epoll_create(global.maxsock + 1);
180 if (epoll_fd < 0)
181 goto fail_fd;
182
183 epoll_events = (struct epoll_event*)
Godbachd39ae7d2014-12-17 16:14:26 +0800184 calloc(1, sizeof(struct epoll_event) * global.tune.maxpollevents);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200185
186 if (epoll_events == NULL)
187 goto fail_ee;
188
Willy Tarreaue54e9172007-04-09 09:23:31 +0200189 return 1;
190
Willy Tarreaue54e9172007-04-09 09:23:31 +0200191 fail_ee:
192 close(epoll_fd);
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200193 epoll_fd = -1;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200194 fail_fd:
195 p->pref = 0;
196 return 0;
197}
198
199/*
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100200 * Termination of the epoll() poller.
Willy Tarreaue54e9172007-04-09 09:23:31 +0200201 * Memory is released and the poller is marked as unselectable.
202 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200203REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200204{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200205 free(epoll_events);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200206
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200207 if (epoll_fd >= 0) {
208 close(epoll_fd);
209 epoll_fd = -1;
210 }
Willy Tarreaue54e9172007-04-09 09:23:31 +0200211
Willy Tarreau58094f22007-04-10 01:33:20 +0200212 epoll_events = NULL;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200213 p->private = NULL;
214 p->pref = 0;
215}
216
217/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200218 * Check that the poller works.
219 * Returns 1 if OK, otherwise 0.
220 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200221REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200222{
223 int fd;
224
225 fd = epoll_create(global.maxsock + 1);
226 if (fd < 0)
227 return 0;
228 close(fd);
229 return 1;
230}
231
232/*
Willy Tarreaufb8983f2007-06-03 16:40:44 +0200233 * Recreate the epoll file descriptor after a fork(). Returns 1 if OK,
234 * otherwise 0. It will ensure that all processes will not share their
235 * epoll_fd. Some side effects were encountered because of this, such
236 * as epoll_wait() returning an FD which was previously deleted.
237 */
238REGPRM1 static int _do_fork(struct poller *p)
239{
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200240 if (epoll_fd >= 0)
241 close(epoll_fd);
Willy Tarreaufb8983f2007-06-03 16:40:44 +0200242 epoll_fd = epoll_create(global.maxsock + 1);
243 if (epoll_fd < 0)
244 return 0;
245 return 1;
246}
247
248/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200249 * It is a constructor, which means that it will automatically be called before
250 * main(). This is GCC-specific but it works at least since 2.95.
251 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200252 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200253__attribute__((constructor))
254static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200255{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200256 struct poller *p;
257
258 if (nbpollers >= MAX_POLLERS)
259 return;
Willy Tarreaud79e79b2009-05-10 10:18:54 +0200260
261 epoll_fd = -1;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200262 p = &pollers[nbpollers++];
263
Willy Tarreau4f60f162007-04-08 16:39:58 +0200264 p->name = "epoll";
265 p->pref = 300;
266 p->private = NULL;
267
Conrad Hoffmann041751c2014-05-20 14:28:24 +0200268 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200269 p->test = _do_test;
270 p->init = _do_init;
271 p->term = _do_term;
272 p->poll = _do_poll;
Willy Tarreaufb8983f2007-06-03 16:40:44 +0200273 p->fork = _do_fork;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200274}
275
276
277/*
278 * Local variables:
279 * c-indent-level: 8
280 * c-basic-offset: 8
281 * End:
282 */