Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 1 | /* |
| 2 | * FD polling functions for generic select() |
| 3 | * |
Willy Tarreau | 4d31fb2 | 2012-11-11 16:53:50 +0100 | [diff] [blame] | 4 | * Copyright 2000-2012 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 5 | * |
| 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> |
| 14 | #include <sys/time.h> |
| 15 | #include <sys/types.h> |
| 16 | |
| 17 | #include <common/compat.h> |
| 18 | #include <common/config.h> |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 19 | #include <common/ticks.h> |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 20 | #include <common/time.h> |
| 21 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 22 | #include <types/global.h> |
| 23 | |
| 24 | #include <proto/fd.h> |
Willy Tarreau | 332740d | 2009-05-10 09:57:21 +0200 | [diff] [blame] | 25 | #include <proto/signal.h> |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 26 | #include <proto/task.h> |
| 27 | |
| 28 | |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 29 | static fd_set *fd_evts[2]; |
| 30 | static fd_set *tmp_evts[2]; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 31 | |
Willy Tarreau | 4d31fb2 | 2012-11-11 16:53:50 +0100 | [diff] [blame] | 32 | /* Immediately remove the entry upon close() */ |
| 33 | REGPRM1 static void __fd_clo(int fd) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 34 | { |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 35 | FD_CLR(fd, fd_evts[DIR_RD]); |
| 36 | FD_CLR(fd, fd_evts[DIR_WR]); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 37 | } |
| 38 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 39 | /* |
| 40 | * Select() poller |
| 41 | */ |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 42 | REGPRM2 static void _do_poll(struct poller *p, int exp) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 43 | { |
| 44 | int status; |
| 45 | int fd, i; |
| 46 | struct timeval delta; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 47 | int delta_ms; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 48 | int readnotnull, writenotnull; |
| 49 | int fds; |
Willy Tarreau | 4d31fb2 | 2012-11-11 16:53:50 +0100 | [diff] [blame] | 50 | int updt_idx, en, eo; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 51 | char count; |
| 52 | |
Willy Tarreau | 4d31fb2 | 2012-11-11 16:53:50 +0100 | [diff] [blame] | 53 | /* first, scan the update list to find changes */ |
| 54 | for (updt_idx = 0; updt_idx < fd_nbupdt; updt_idx++) { |
| 55 | fd = fd_updt[updt_idx]; |
| 56 | en = fdtab[fd].spec_e & 15; /* new events */ |
| 57 | eo = fdtab[fd].spec_e >> 4; /* previous events */ |
| 58 | |
| 59 | if (fdtab[fd].owner && (eo ^ en)) { |
| 60 | if ((eo ^ en) & FD_EV_POLLED_RW) { |
| 61 | /* poll status changed, update the lists */ |
| 62 | if ((eo & ~en) & FD_EV_POLLED_R) |
| 63 | FD_CLR(fd, fd_evts[DIR_RD]); |
| 64 | else if ((en & ~eo) & FD_EV_POLLED_R) |
| 65 | FD_SET(fd, fd_evts[DIR_RD]); |
| 66 | |
| 67 | if ((eo & ~en) & FD_EV_POLLED_W) |
| 68 | FD_CLR(fd, fd_evts[DIR_WR]); |
| 69 | else if ((en & ~eo) & FD_EV_POLLED_W) |
| 70 | FD_SET(fd, fd_evts[DIR_WR]); |
| 71 | } |
| 72 | |
| 73 | fdtab[fd].spec_e = (en << 4) + en; /* save new events */ |
| 74 | |
| 75 | if (!(en & FD_EV_ACTIVE_RW)) { |
| 76 | /* This fd doesn't use any active entry anymore, we can |
| 77 | * kill its entry. |
| 78 | */ |
| 79 | release_spec_entry(fd); |
| 80 | } |
| 81 | else if ((en & ~eo) & FD_EV_ACTIVE_RW) { |
| 82 | /* we need a new spec entry now */ |
| 83 | alloc_spec_entry(fd); |
| 84 | } |
| 85 | |
| 86 | } |
| 87 | fdtab[fd].updated = 0; |
| 88 | fdtab[fd].new = 0; |
| 89 | } |
| 90 | fd_nbupdt = 0; |
| 91 | |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 92 | delta_ms = 0; |
| 93 | delta.tv_sec = 0; |
| 94 | delta.tv_usec = 0; |
| 95 | |
Willy Tarreau | 4d31fb2 | 2012-11-11 16:53:50 +0100 | [diff] [blame] | 96 | if (!fd_nbspec && !run_queue && !signal_queue_len) { |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 97 | if (!exp) { |
| 98 | delta_ms = MAX_DELAY_MS; |
| 99 | delta.tv_sec = (MAX_DELAY_MS / 1000); |
| 100 | delta.tv_usec = (MAX_DELAY_MS % 1000) * 1000; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 101 | } |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 102 | else if (!tick_is_expired(exp, now_ms)) { |
| 103 | delta_ms = TICKS_TO_MS(tick_remain(now_ms, exp)) + SCHEDULER_RESOLUTION; |
| 104 | if (delta_ms > MAX_DELAY_MS) |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 105 | delta_ms = MAX_DELAY_MS; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 106 | delta.tv_sec = (delta_ms / 1000); |
| 107 | delta.tv_usec = (delta_ms % 1000) * 1000; |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 108 | } |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | /* let's restore fdset state */ |
| 112 | |
| 113 | readnotnull = 0; writenotnull = 0; |
| 114 | for (i = 0; i < (maxfd + FD_SETSIZE - 1)/(8*sizeof(int)); i++) { |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 115 | readnotnull |= (*(((int*)tmp_evts[DIR_RD])+i) = *(((int*)fd_evts[DIR_RD])+i)) != 0; |
| 116 | writenotnull |= (*(((int*)tmp_evts[DIR_WR])+i) = *(((int*)fd_evts[DIR_WR])+i)) != 0; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | // /* just a verification code, needs to be removed for performance */ |
| 120 | // for (i=0; i<maxfd; i++) { |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 121 | // if (FD_ISSET(i, tmp_evts[DIR_RD]) != FD_ISSET(i, fd_evts[DIR_RD])) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 122 | // abort(); |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 123 | // if (FD_ISSET(i, tmp_evts[DIR_WR]) != FD_ISSET(i, fd_evts[DIR_WR])) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 124 | // abort(); |
| 125 | // |
| 126 | // } |
| 127 | |
Willy Tarreau | 45a1251 | 2011-09-10 16:56:42 +0200 | [diff] [blame] | 128 | gettimeofday(&before_poll, NULL); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 129 | status = select(maxfd, |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 130 | readnotnull ? tmp_evts[DIR_RD] : NULL, |
| 131 | writenotnull ? tmp_evts[DIR_WR] : NULL, |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 132 | NULL, |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 133 | &delta); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 134 | |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 135 | tv_update_date(delta_ms, status); |
Willy Tarreau | 45a1251 | 2011-09-10 16:56:42 +0200 | [diff] [blame] | 136 | measure_idle(); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 137 | |
| 138 | if (status <= 0) |
| 139 | return; |
| 140 | |
Willy Tarreau | 177e2b0 | 2008-07-15 00:36:31 +0200 | [diff] [blame] | 141 | for (fds = 0; (fds * BITS_PER_INT) < maxfd; fds++) { |
Willy Tarreau | 28d8686 | 2007-04-08 17:42:27 +0200 | [diff] [blame] | 142 | if ((((int *)(tmp_evts[DIR_RD]))[fds] | ((int *)(tmp_evts[DIR_WR]))[fds]) == 0) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 143 | continue; |
| 144 | |
Willy Tarreau | 177e2b0 | 2008-07-15 00:36:31 +0200 | [diff] [blame] | 145 | for (count = BITS_PER_INT, fd = fds * BITS_PER_INT; count && fd < maxfd; count--, fd++) { |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 146 | /* if we specify read first, the accepts and zero reads will be |
| 147 | * seen first. Moreover, system buffers will be flushed faster. |
| 148 | */ |
Willy Tarreau | 076be25 | 2012-07-06 16:02:29 +0200 | [diff] [blame] | 149 | if (!fdtab[fd].owner) |
| 150 | continue; |
| 151 | |
Willy Tarreau | 9845e75 | 2012-07-06 11:44:28 +0200 | [diff] [blame] | 152 | fdtab[fd].ev &= FD_POLL_STICKY; |
Willy Tarreau | 076be25 | 2012-07-06 16:02:29 +0200 | [diff] [blame] | 153 | if (FD_ISSET(fd, tmp_evts[DIR_RD])) |
Willy Tarreau | 491c498 | 2012-07-06 11:16:01 +0200 | [diff] [blame] | 154 | fdtab[fd].ev |= FD_POLL_IN; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 155 | |
Willy Tarreau | 076be25 | 2012-07-06 16:02:29 +0200 | [diff] [blame] | 156 | if (FD_ISSET(fd, tmp_evts[DIR_WR])) |
Willy Tarreau | 491c498 | 2012-07-06 11:16:01 +0200 | [diff] [blame] | 157 | fdtab[fd].ev |= FD_POLL_OUT; |
Willy Tarreau | 9845e75 | 2012-07-06 11:44:28 +0200 | [diff] [blame] | 158 | |
Willy Tarreau | 4d31fb2 | 2012-11-11 16:53:50 +0100 | [diff] [blame] | 159 | if (fdtab[fd].iocb && fdtab[fd].owner && fdtab[fd].ev) { |
| 160 | /* Mark the events as speculative before processing |
| 161 | * them so that if nothing can be done we don't need |
| 162 | * to poll again. |
| 163 | */ |
| 164 | if (fdtab[fd].ev & (FD_POLL_IN|FD_POLL_HUP|FD_POLL_ERR)) |
| 165 | fd_ev_set(fd, DIR_RD); |
| 166 | |
| 167 | if (fdtab[fd].ev & (FD_POLL_OUT|FD_POLL_ERR)) |
| 168 | fd_ev_set(fd, DIR_WR); |
| 169 | |
Willy Tarreau | 9845e75 | 2012-07-06 11:44:28 +0200 | [diff] [blame] | 170 | fdtab[fd].iocb(fd); |
Willy Tarreau | 4d31fb2 | 2012-11-11 16:53:50 +0100 | [diff] [blame] | 171 | } |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 172 | } |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | /* |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 177 | * Initialization of the select() poller. |
| 178 | * Returns 0 in case of failure, non-zero in case of success. If it fails, it |
| 179 | * disables the poller by setting its pref to 0. |
| 180 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 181 | REGPRM1 static int _do_init(struct poller *p) |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 182 | { |
| 183 | __label__ fail_swevt, fail_srevt, fail_wevt, fail_revt; |
| 184 | int fd_set_bytes; |
| 185 | |
| 186 | p->private = NULL; |
| 187 | fd_set_bytes = sizeof(fd_set) * (global.maxsock + FD_SETSIZE - 1) / FD_SETSIZE; |
| 188 | |
| 189 | if ((tmp_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL) |
| 190 | goto fail_revt; |
| 191 | |
| 192 | if ((tmp_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL) |
| 193 | goto fail_wevt; |
| 194 | |
| 195 | if ((fd_evts[DIR_RD] = (fd_set *)calloc(1, fd_set_bytes)) == NULL) |
| 196 | goto fail_srevt; |
| 197 | |
| 198 | if ((fd_evts[DIR_WR] = (fd_set *)calloc(1, fd_set_bytes)) == NULL) |
| 199 | goto fail_swevt; |
| 200 | |
| 201 | return 1; |
| 202 | |
| 203 | fail_swevt: |
| 204 | free(fd_evts[DIR_RD]); |
| 205 | fail_srevt: |
| 206 | free(tmp_evts[DIR_WR]); |
| 207 | fail_wevt: |
| 208 | free(tmp_evts[DIR_RD]); |
| 209 | fail_revt: |
| 210 | p->pref = 0; |
| 211 | return 0; |
| 212 | } |
| 213 | |
| 214 | /* |
| 215 | * Termination of the select() poller. |
| 216 | * Memory is released and the poller is marked as unselectable. |
| 217 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 218 | REGPRM1 static void _do_term(struct poller *p) |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 219 | { |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 220 | free(fd_evts[DIR_WR]); |
| 221 | free(fd_evts[DIR_RD]); |
| 222 | free(tmp_evts[DIR_WR]); |
| 223 | free(tmp_evts[DIR_RD]); |
Willy Tarreau | e54e917 | 2007-04-09 09:23:31 +0200 | [diff] [blame] | 224 | p->private = NULL; |
| 225 | p->pref = 0; |
| 226 | } |
| 227 | |
| 228 | /* |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 229 | * Check that the poller works. |
| 230 | * Returns 1 if OK, otherwise 0. |
| 231 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 232 | REGPRM1 static int _do_test(struct poller *p) |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 233 | { |
| 234 | return 1; |
| 235 | } |
| 236 | |
| 237 | /* |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 238 | * It is a constructor, which means that it will automatically be called before |
| 239 | * main(). This is GCC-specific but it works at least since 2.95. |
| 240 | * Special care must be taken so that it does not need any uninitialized data. |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 241 | */ |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 242 | __attribute__((constructor)) |
| 243 | static void _do_register(void) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 244 | { |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 245 | struct poller *p; |
| 246 | |
| 247 | if (nbpollers >= MAX_POLLERS) |
| 248 | return; |
| 249 | p = &pollers[nbpollers++]; |
| 250 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 251 | p->name = "select"; |
| 252 | p->pref = 150; |
| 253 | p->private = NULL; |
| 254 | |
Willy Tarreau | 70c6fd8 | 2012-11-11 21:02:34 +0100 | [diff] [blame] | 255 | p->clo = __fd_clo; |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 256 | p->test = _do_test; |
| 257 | p->init = _do_init; |
| 258 | p->term = _do_term; |
| 259 | p->poll = _do_poll; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 260 | } |
| 261 | |
| 262 | |
| 263 | /* |
| 264 | * Local variables: |
| 265 | * c-indent-level: 8 |
| 266 | * c-basic-offset: 8 |
| 267 | * End: |
| 268 | */ |