blob: 866906c3a3515a14bcd9c2090e247d7e33099b1b [file] [log] [blame]
Willy Tarreau4f60f162007-04-08 16:39:58 +02001/*
2 * FD polling functions for generic poll()
3 *
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.
10 *
11 */
12
13#include <unistd.h>
Willy Tarreau69801b82007-04-09 15:28:51 +020014#include <sys/poll.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020015#include <sys/time.h>
16#include <sys/types.h>
17
18#include <common/compat.h>
19#include <common/config.h>
Willy Tarreau0c303ee2008-07-07 00:09:58 +020020#include <common/ticks.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020021#include <common/time.h>
22
Willy Tarreau4f60f162007-04-08 16:39:58 +020023#include <types/global.h>
24
25#include <proto/fd.h>
Willy Tarreau332740d2009-05-10 09:57:21 +020026#include <proto/signal.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020027#include <proto/task.h>
28
29
Willy Tarreau80da05a2013-03-31 14:06:57 +020030static unsigned int *fd_evts[2];
Willy Tarreau4f60f162007-04-08 16:39:58 +020031
32/* private data */
33static struct pollfd *poll_events = NULL;
34
35
Willy Tarreau80da05a2013-03-31 14:06:57 +020036static inline unsigned int hap_fd_isset(int fd, unsigned int *evts)
Willy Tarreau4f60f162007-04-08 16:39:58 +020037{
Willy Tarreau80da05a2013-03-31 14:06:57 +020038 return evts[fd / (8*sizeof(*evts))] & (1U << (fd & (8*sizeof(*evts) - 1)));
Willy Tarreau4f60f162007-04-08 16:39:58 +020039}
40
Willy Tarreau80da05a2013-03-31 14:06:57 +020041static inline void hap_fd_set(int fd, unsigned int *evts)
42{
43 evts[fd / (8*sizeof(*evts))] |= 1U << (fd & (8*sizeof(*evts) - 1));
44}
45
46static inline void hap_fd_clr(int fd, unsigned int *evts)
47{
48 evts[fd / (8*sizeof(*evts))] &= ~(1U << (fd & (8*sizeof(*evts) - 1)));
49}
50
51REGPRM1 static void __fd_clo(int fd)
52{
53 hap_fd_clr(fd, fd_evts[DIR_RD]);
54 hap_fd_clr(fd, fd_evts[DIR_WR]);
55}
56
Willy Tarreau4f60f162007-04-08 16:39:58 +020057/*
58 * Poll() poller
59 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +020060REGPRM2 static void _do_poll(struct poller *p, int exp)
Willy Tarreau4f60f162007-04-08 16:39:58 +020061{
62 int status;
63 int fd, nbfd;
Willy Tarreaud825eef2007-05-12 22:35:00 +020064 int wait_time;
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010065 int updt_idx, en, eo;
Willy Tarreau4f60f162007-04-08 16:39:58 +020066 int fds, count;
67 int sr, sw;
68 unsigned rn, wn; /* read new, write new */
69
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010070 /* first, scan the update list to find changes */
71 for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) {
72 fd = fd_updt[updt_idx];
Willy Tarreauf817e9f2014-01-10 16:58:45 +010073 fdtab[fd].updated = 0;
74 fdtab[fd].new = 0;
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010075
Willy Tarreauf817e9f2014-01-10 16:58:45 +010076 if (!fdtab[fd].owner)
77 continue;
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010078
Willy Tarreau25002d22014-01-25 10:32:56 +010079 eo = fdtab[fd].state;
80 en = fd_compute_new_polled_status(eo);
Willy Tarreauf817e9f2014-01-10 16:58:45 +010081
82 if ((eo ^ en) & FD_EV_POLLED_RW) {
83 /* poll status changed, update the lists */
84 fdtab[fd].state = en;
85
86 if ((eo & ~en) & FD_EV_POLLED_R)
87 hap_fd_clr(fd, fd_evts[DIR_RD]);
88 else if ((en & ~eo) & FD_EV_POLLED_R)
89 hap_fd_set(fd, fd_evts[DIR_RD]);
90
91 if ((eo & ~en) & FD_EV_POLLED_W)
92 hap_fd_clr(fd, fd_evts[DIR_WR]);
93 else if ((en & ~eo) & FD_EV_POLLED_W)
94 hap_fd_set(fd, fd_evts[DIR_WR]);
95 }
Willy Tarreaucc7e3f72012-11-11 17:25:15 +010096 }
97 fd_nbupdt = 0;
98
Willy Tarreau4f60f162007-04-08 16:39:58 +020099 nbfd = 0;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200100 for (fds = 0; (fds * 8*sizeof(**fd_evts)) < maxfd; fds++) {
101 rn = fd_evts[DIR_RD][fds];
102 wn = fd_evts[DIR_WR][fds];
Willy Tarreau4f60f162007-04-08 16:39:58 +0200103
Willy Tarreau80da05a2013-03-31 14:06:57 +0200104 if (!(rn|wn))
105 continue;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200106
Willy Tarreau80da05a2013-03-31 14:06:57 +0200107 for (count = 0, fd = fds * 8*sizeof(**fd_evts); count < 8*sizeof(**fd_evts) && fd < maxfd; count++, fd++) {
108 sr = (rn >> count) & 1;
109 sw = (wn >> count) & 1;
110 if ((sr|sw)) {
111 poll_events[nbfd].fd = fd;
112 poll_events[nbfd].events = (sr ? POLLIN : 0) | (sw ? POLLOUT : 0);
113 nbfd++;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200114 }
115 }
116 }
117
118 /* now let's wait for events */
Willy Tarreau16f649c2014-01-25 19:10:48 +0100119 if (fd_cache_num || run_queue || signal_queue_len)
Willy Tarreau3a628112008-06-13 21:06:56 +0200120 wait_time = 0;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200121 else if (!exp)
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200122 wait_time = MAX_DELAY_MS;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200123 else if (tick_is_expired(exp, now_ms))
Willy Tarreaubdefc512007-05-14 02:02:04 +0200124 wait_time = 0;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200125 else {
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200126 wait_time = TICKS_TO_MS(tick_remain(now_ms, exp)) + 1;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200127 if (wait_time > MAX_DELAY_MS)
128 wait_time = MAX_DELAY_MS;
129 }
Willy Tarreaud825eef2007-05-12 22:35:00 +0200130
Willy Tarreau45a12512011-09-10 16:56:42 +0200131 gettimeofday(&before_poll, NULL);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200132 status = poll(poll_events, nbfd, wait_time);
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200133 tv_update_date(wait_time, status);
Willy Tarreau45a12512011-09-10 16:56:42 +0200134 measure_idle();
Willy Tarreau4f60f162007-04-08 16:39:58 +0200135
136 for (count = 0; status > 0 && count < nbfd; count++) {
Willy Tarreau491c4982012-07-06 11:16:01 +0200137 int e = poll_events[count].revents;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200138 fd = poll_events[count].fd;
139
Willy Tarreau491c4982012-07-06 11:16:01 +0200140 if (!(e & ( POLLOUT | POLLIN | POLLERR | POLLHUP )))
Willy Tarreau4f60f162007-04-08 16:39:58 +0200141 continue;
142
Willy Tarreau076be252012-07-06 16:02:29 +0200143 /* ok, we found one active fd */
144 status--;
145
146 if (!fdtab[fd].owner)
147 continue;
148
Willy Tarreau462c7202012-12-13 22:26:37 +0100149 /* it looks complicated but gcc can optimize it away when constants
150 * have same values... In fact it depends on gcc :-(
151 */
Willy Tarreau491c4982012-07-06 11:16:01 +0200152 fdtab[fd].ev &= FD_POLL_STICKY;
Willy Tarreau462c7202012-12-13 22:26:37 +0100153 if (POLLIN == FD_POLL_IN && POLLOUT == FD_POLL_OUT &&
154 POLLERR == FD_POLL_ERR && POLLHUP == FD_POLL_HUP) {
155 fdtab[fd].ev |= e & (POLLIN|POLLOUT|POLLERR|POLLHUP);
156 }
157 else {
158 fdtab[fd].ev |=
159 ((e & POLLIN ) ? FD_POLL_IN : 0) |
160 ((e & POLLOUT) ? FD_POLL_OUT : 0) |
161 ((e & POLLERR) ? FD_POLL_ERR : 0) |
162 ((e & POLLHUP) ? FD_POLL_HUP : 0);
163 }
Willy Tarreau491c4982012-07-06 11:16:01 +0200164
Willy Tarreau5be2f352014-11-19 19:43:05 +0100165 if (fdtab[fd].ev & (FD_POLL_IN | FD_POLL_HUP | FD_POLL_ERR))
166 fd_may_recv(fd);
167
168 if (fdtab[fd].ev & (FD_POLL_OUT | FD_POLL_ERR))
169 fd_may_send(fd);
Willy Tarreau4f60f162007-04-08 16:39:58 +0200170 }
171
Willy Tarreaue54e9172007-04-09 09:23:31 +0200172}
173
174/*
175 * Initialization of the poll() poller.
176 * Returns 0 in case of failure, non-zero in case of success. If it fails, it
177 * disables the poller by setting its pref to 0.
178 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200179REGPRM1 static int _do_init(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200180{
181 __label__ fail_swevt, fail_srevt, fail_pe;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200182 int fd_evts_bytes;
Willy Tarreaue54e9172007-04-09 09:23:31 +0200183
184 p->private = NULL;
Willy Tarreau80da05a2013-03-31 14:06:57 +0200185 fd_evts_bytes = (global.maxsock + sizeof(**fd_evts) - 1) / sizeof(**fd_evts) * sizeof(**fd_evts);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200186
Willy Tarreau80da05a2013-03-31 14:06:57 +0200187 poll_events = calloc(1, sizeof(struct pollfd) * global.maxsock);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200188
189 if (poll_events == NULL)
190 goto fail_pe;
191
Willy Tarreau80da05a2013-03-31 14:06:57 +0200192 if ((fd_evts[DIR_RD] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200193 goto fail_srevt;
194
Willy Tarreau80da05a2013-03-31 14:06:57 +0200195 if ((fd_evts[DIR_WR] = calloc(1, fd_evts_bytes)) == NULL)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200196 goto fail_swevt;
197
198 return 1;
199
200 fail_swevt:
201 free(fd_evts[DIR_RD]);
202 fail_srevt:
203 free(poll_events);
204 fail_pe:
205 p->pref = 0;
206 return 0;
207}
208
209/*
210 * Termination of the poll() poller.
211 * Memory is released and the poller is marked as unselectable.
212 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200213REGPRM1 static void _do_term(struct poller *p)
Willy Tarreaue54e9172007-04-09 09:23:31 +0200214{
Willy Tarreaua534fea2008-08-03 12:19:50 +0200215 free(fd_evts[DIR_WR]);
216 free(fd_evts[DIR_RD]);
217 free(poll_events);
Willy Tarreaue54e9172007-04-09 09:23:31 +0200218 p->private = NULL;
219 p->pref = 0;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200220}
221
222/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200223 * Check that the poller works.
224 * Returns 1 if OK, otherwise 0.
225 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200226REGPRM1 static int _do_test(struct poller *p)
Willy Tarreau2ff76222007-04-09 19:29:56 +0200227{
228 return 1;
229}
230
231/*
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200232 * It is a constructor, which means that it will automatically be called before
233 * main(). This is GCC-specific but it works at least since 2.95.
234 * Special care must be taken so that it does not need any uninitialized data.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200235 */
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200236__attribute__((constructor))
237static void _do_register(void)
Willy Tarreau4f60f162007-04-08 16:39:58 +0200238{
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200239 struct poller *p;
240
241 if (nbpollers >= MAX_POLLERS)
242 return;
243 p = &pollers[nbpollers++];
244
Willy Tarreau4f60f162007-04-08 16:39:58 +0200245 p->name = "poll";
246 p->pref = 200;
247 p->private = NULL;
248
Willy Tarreau70c6fd82012-11-11 21:02:34 +0100249 p->clo = __fd_clo;
Willy Tarreauef1d1f82007-04-16 00:25:25 +0200250 p->test = _do_test;
251 p->init = _do_init;
252 p->term = _do_term;
253 p->poll = _do_poll;
Willy Tarreau4f60f162007-04-08 16:39:58 +0200254}
255
256
257/*
258 * Local variables:
259 * c-indent-level: 8
260 * c-basic-offset: 8
261 * End:
262 */