blob: 6bfefdddc889758d6b59f1c4f315a4c3935cc2f3 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * File descriptors management functions.
3 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +01004 * Copyright 2000-2014 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +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 *
Willy Tarreau7be79a42012-11-11 15:02:54 +010011 * There is no direct link between the FD and the updates list. There is only a
12 * bit in the fdtab[] to indicate than a file descriptor is already present in
13 * the updates list. Once an fd is present in the updates list, it will have to
14 * be considered even if its changes are reverted in the middle or if the fd is
15 * replaced.
16 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +010017 * The event state for an FD, as found in fdtab[].state, is maintained for each
18 * direction. The state field is built this way, with R bits in the low nibble
19 * and W bits in the high nibble for ease of access and debugging :
Willy Tarreau7be79a42012-11-11 15:02:54 +010020 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +010021 * 7 6 5 4 3 2 1 0
Willy Tarreau5bee3e22019-09-04 09:52:57 +020022 * [ 0 | 0 | RW | AW | 0 | 0 | RR | AR ]
Willy Tarreauf817e9f2014-01-10 16:58:45 +010023 *
24 * A* = active *R = read
Willy Tarreau5bee3e22019-09-04 09:52:57 +020025 * R* = ready *W = write
Willy Tarreauf817e9f2014-01-10 16:58:45 +010026 *
27 * An FD is marked "active" when there is a desire to use it.
Willy Tarreauf817e9f2014-01-10 16:58:45 +010028 * An FD is marked "ready" when it has not faced a new EAGAIN since last wake-up
Willy Tarreau5bee3e22019-09-04 09:52:57 +020029 * (it is a cache of the last EAGAIN regardless of polling changes). Each poller
30 * has its own "polled" state for the same fd, as stored in the polled_mask.
Willy Tarreau7be79a42012-11-11 15:02:54 +010031 *
Willy Tarreau5bee3e22019-09-04 09:52:57 +020032 * We have 4 possible states for each direction based on these 2 flags :
Willy Tarreau7be79a42012-11-11 15:02:54 +010033 *
Willy Tarreau5bee3e22019-09-04 09:52:57 +020034 * +---+---+----------+---------------------------------------------+
35 * | R | A | State | Description |
36 * +---+---+----------+---------------------------------------------+
37 * | 0 | 0 | DISABLED | No activity desired, not ready. |
38 * | 0 | 1 | ACTIVE | Activity desired. |
39 * | 1 | 0 | STOPPED | End of activity. |
40 * | 1 | 1 | READY | Activity desired and reported. |
41 * +---+---+----------+---------------------------------------------+
Willy Tarreau7be79a42012-11-11 15:02:54 +010042 *
Willy Tarreauf817e9f2014-01-10 16:58:45 +010043 * The transitions are pretty simple :
44 * - fd_want_*() : set flag A
45 * - fd_stop_*() : clear flag A
46 * - fd_cant_*() : clear flag R (when facing EAGAIN)
47 * - fd_may_*() : set flag R (upon return from poll())
Willy Tarreauf817e9f2014-01-10 16:58:45 +010048 *
Willy Tarreau5bee3e22019-09-04 09:52:57 +020049 * Each poller then computes its own polled state :
50 * if (A) { if (!R) P := 1 } else { P := 0 }
Willy Tarreauf817e9f2014-01-10 16:58:45 +010051 *
Willy Tarreau5bee3e22019-09-04 09:52:57 +020052 * The state transitions look like the diagram below.
Willy Tarreauf817e9f2014-01-10 16:58:45 +010053 *
Willy Tarreau5bee3e22019-09-04 09:52:57 +020054 * may +----------+
55 * ,----| DISABLED | (READY=0, ACTIVE=0)
56 * | +----------+
57 * | want | ^
58 * | | |
59 * | v | stop
60 * | +----------+
61 * | | ACTIVE | (READY=0, ACTIVE=1)
62 * | +----------+
63 * | | ^
64 * | may | |
65 * | v | EAGAIN (cant)
66 * | +--------+
67 * | | READY | (READY=1, ACTIVE=1)
68 * | +--------+
69 * | stop | ^
70 * | | |
71 * | v | want
72 * | +---------+
73 * `--->| STOPPED | (READY=1, ACTIVE=0)
74 * +---------+
Willy Tarreaubaaee002006-06-26 02:48:02 +020075 */
76
Willy Tarreau2ff76222007-04-09 19:29:56 +020077#include <stdio.h>
Willy Tarreau4f60f162007-04-08 16:39:58 +020078#include <string.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020079#include <unistd.h>
Olivier Houchard79321b92018-07-26 17:55:11 +020080#include <fcntl.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020081#include <sys/types.h>
Willy Tarreau2d7f81b2019-02-21 22:19:17 +010082#include <sys/resource.h>
Willy Tarreau931d8b72019-08-27 11:08:17 +020083#include <sys/uio.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020084
Willy Tarreaue5733232019-05-22 19:24:06 +020085#if defined(USE_POLL)
Willy Tarreau9188ac62019-02-21 22:12:47 +010086#include <poll.h>
87#include <errno.h>
88#endif
89
Willy Tarreau2dd0d472006-06-29 17:53:05 +020090#include <common/compat.h>
91#include <common/config.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020092
Willy Tarreau7be79a42012-11-11 15:02:54 +010093#include <types/global.h>
94
Willy Tarreau2a429502006-10-15 14:52:29 +020095#include <proto/fd.h>
Christopher Fauletd4604ad2017-05-29 10:40:41 +020096#include <proto/log.h>
Willy Tarreauc6f4ce82009-06-10 11:09:37 +020097#include <proto/port_range.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020098
99struct fdtab *fdtab = NULL; /* array of all the file descriptors */
Olivier Houchard53055052019-07-25 14:00:18 +0000100struct polled_mask *polled_mask = NULL; /* Array for the polled_mask of each fd */
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200101struct fdinfo *fdinfo = NULL; /* less-often used infos for file descriptors */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200102int totalconn; /* total # of terminated sessions */
103int actconn; /* # of active sessions */
104
Willy Tarreau4f60f162007-04-08 16:39:58 +0200105struct poller pollers[MAX_POLLERS];
106struct poller cur_poller;
107int nbpollers = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200108
Olivier Houchard6b96f722018-04-25 16:58:25 +0200109volatile struct fdlist update_list; // Global update list
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100110
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200111THREAD_LOCAL int *fd_updt = NULL; // FD updates list
112THREAD_LOCAL int fd_nbupdt = 0; // number of updates in the list
Olivier Houchard79321b92018-07-26 17:55:11 +0200113THREAD_LOCAL int poller_rd_pipe = -1; // Pipe to wake the thread
114int poller_wr_pipe[MAX_THREADS]; // Pipe to wake the threads
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200115
Olivier Houchard7c49d2e2019-04-16 18:37:05 +0200116volatile int ha_used_fds = 0; // Number of FD we're currently using
117
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200118#define _GET_NEXT(fd, off) ((struct fdlist_entry *)(void *)((char *)(&fdtab[fd]) + off))->next
119#define _GET_PREV(fd, off) ((struct fdlist_entry *)(void *)((char *)(&fdtab[fd]) + off))->prev
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100120/* adds fd <fd> to fd list <list> if it was not yet in it */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200121void fd_add_to_fd_list(volatile struct fdlist *list, int fd, int off)
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100122{
123 int next;
124 int new;
125 int old;
126 int last;
127
128redo_next:
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200129 next = _GET_NEXT(fd, off);
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100130 /* Check that we're not already in the cache, and if not, lock us. */
131 if (next >= -2)
132 goto done;
Olivier Houchardd3608792019-03-08 18:47:42 +0100133 if (!_HA_ATOMIC_CAS(&_GET_NEXT(fd, off), &next, -2))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100134 goto redo_next;
Olivier Houchardd2b5d162019-03-08 13:47:21 +0100135 __ha_barrier_atomic_store();
Willy Tarreau11559a72018-02-05 17:52:24 +0100136
137 new = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100138redo_last:
139 /* First, insert in the linked list */
140 last = list->last;
141 old = -1;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100142
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200143 _GET_PREV(fd, off) = -2;
Willy Tarreau11559a72018-02-05 17:52:24 +0100144 /* Make sure the "prev" store is visible before we update the last entry */
145 __ha_barrier_store();
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100146
Willy Tarreau11559a72018-02-05 17:52:24 +0100147 if (unlikely(last == -1)) {
148 /* list is empty, try to add ourselves alone so that list->last=fd */
Olivier Houchardd3608792019-03-08 18:47:42 +0100149 if (unlikely(!_HA_ATOMIC_CAS(&list->last, &old, new)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100150 goto redo_last;
151
152 /* list->first was necessary -1, we're guaranteed to be alone here */
153 list->first = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100154 } else {
Willy Tarreau11559a72018-02-05 17:52:24 +0100155 /* adding ourselves past the last element
156 * The CAS will only succeed if its next is -1,
157 * which means it's in the cache, and the last element.
158 */
Olivier Houchardd3608792019-03-08 18:47:42 +0100159 if (unlikely(!_HA_ATOMIC_CAS(&_GET_NEXT(last, off), &old, new)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100160 goto redo_last;
Willy Tarreau11559a72018-02-05 17:52:24 +0100161
162 /* Then, update the last entry */
163 list->last = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100164 }
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100165 __ha_barrier_store();
Willy Tarreau11559a72018-02-05 17:52:24 +0100166 /* since we're alone at the end of the list and still locked(-2),
167 * we know noone tried to add past us. Mark the end of list.
168 */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200169 _GET_PREV(fd, off) = last;
170 _GET_NEXT(fd, off) = -1;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100171 __ha_barrier_store();
172done:
173 return;
174}
175
176/* removes fd <fd> from fd list <list> */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200177void fd_rm_from_fd_list(volatile struct fdlist *list, int fd, int off)
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100178{
179#if defined(HA_HAVE_CAS_DW) || defined(HA_CAS_IS_8B)
180 volatile struct fdlist_entry cur_list, next_list;
181#endif
182 int old;
183 int new = -2;
184 int prev;
185 int next;
186 int last;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100187lock_self:
188#if (defined(HA_CAS_IS_8B) || defined(HA_HAVE_CAS_DW))
189 next_list.next = next_list.prev = -2;
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200190 cur_list = *(volatile struct fdlist_entry *)(((char *)&fdtab[fd]) + off);
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100191 /* First, attempt to lock our own entries */
192 do {
193 /* The FD is not in the FD cache, give up */
194 if (unlikely(cur_list.next <= -3))
195 return;
196 if (unlikely(cur_list.prev == -2 || cur_list.next == -2))
197 goto lock_self;
198 } while (
199#ifdef HA_CAS_IS_8B
Olivier Houchardd3608792019-03-08 18:47:42 +0100200 unlikely(!_HA_ATOMIC_CAS(((void **)(void *)&_GET_NEXT(fd, off)), ((void **)(void *)&cur_list), (*(void **)(void *)&next_list))))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100201#else
Willy Tarreauc3b59582019-05-27 17:37:20 +0200202 unlikely(!_HA_ATOMIC_DWCAS(((void *)&_GET_NEXT(fd, off)), ((void *)&cur_list), ((void *)&next_list))))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100203#endif
204 ;
205 next = cur_list.next;
206 prev = cur_list.prev;
207
208#else
209lock_self_next:
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200210 next = ({ volatile int *next = &_GET_NEXT(fd, off); *next; });
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100211 if (next == -2)
212 goto lock_self_next;
213 if (next <= -3)
214 goto done;
Olivier Houchardd3608792019-03-08 18:47:42 +0100215 if (unlikely(!_HA_ATOMIC_CAS(&_GET_NEXT(fd, off), &next, -2)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100216 goto lock_self_next;
217lock_self_prev:
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200218 prev = ({ volatile int *prev = &_GET_PREV(fd, off); *prev; });
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100219 if (prev == -2)
220 goto lock_self_prev;
Olivier Houchardd3608792019-03-08 18:47:42 +0100221 if (unlikely(!_HA_ATOMIC_CAS(&_GET_PREV(fd, off), &prev, -2)))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100222 goto lock_self_prev;
223#endif
Olivier Houchardd2b5d162019-03-08 13:47:21 +0100224 __ha_barrier_atomic_store();
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100225
226 /* Now, lock the entries of our neighbours */
227 if (likely(prev != -1)) {
228redo_prev:
229 old = fd;
230
Olivier Houchardd3608792019-03-08 18:47:42 +0100231 if (unlikely(!_HA_ATOMIC_CAS(&_GET_NEXT(prev, off), &old, new))) {
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100232 if (unlikely(old == -2)) {
233 /* Neighbour already locked, give up and
234 * retry again once he's done
235 */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200236 _GET_PREV(fd, off) = prev;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100237 __ha_barrier_store();
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200238 _GET_NEXT(fd, off) = next;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100239 __ha_barrier_store();
240 goto lock_self;
241 }
242 goto redo_prev;
243 }
244 }
245 if (likely(next != -1)) {
246redo_next:
247 old = fd;
Olivier Houchardd3608792019-03-08 18:47:42 +0100248 if (unlikely(!_HA_ATOMIC_CAS(&_GET_PREV(next, off), &old, new))) {
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100249 if (unlikely(old == -2)) {
250 /* Neighbour already locked, give up and
251 * retry again once he's done
252 */
253 if (prev != -1) {
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200254 _GET_NEXT(prev, off) = fd;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100255 __ha_barrier_store();
256 }
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200257 _GET_PREV(fd, off) = prev;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100258 __ha_barrier_store();
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200259 _GET_NEXT(fd, off) = next;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100260 __ha_barrier_store();
261 goto lock_self;
262 }
263 goto redo_next;
264 }
265 }
266 if (list->first == fd)
267 list->first = next;
268 __ha_barrier_store();
269 last = list->last;
Olivier Houchardd3608792019-03-08 18:47:42 +0100270 while (unlikely(last == fd && (!_HA_ATOMIC_CAS(&list->last, &last, prev))))
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100271 __ha_compiler_barrier();
272 /* Make sure we let other threads know we're no longer in cache,
273 * before releasing our neighbours.
274 */
275 __ha_barrier_store();
276 if (likely(prev != -1))
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200277 _GET_NEXT(prev, off) = next;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100278 __ha_barrier_store();
279 if (likely(next != -1))
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200280 _GET_PREV(next, off) = prev;
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100281 __ha_barrier_store();
282 /* Ok, now we're out of the fd cache */
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200283 _GET_NEXT(fd, off) = -(next + 4);
Willy Tarreau4cc67a22018-02-05 17:14:55 +0100284 __ha_barrier_store();
285done:
286 return;
287}
288
Olivier Houchard6a2cf872018-04-25 15:10:30 +0200289#undef _GET_NEXT
290#undef _GET_PREV
291
Willy Tarreau173d9952018-01-26 21:48:23 +0100292/* Deletes an FD from the fdsets.
Willy Tarreau4f60f162007-04-08 16:39:58 +0200293 * The file descriptor is also closed.
294 */
Olivier Houchard1fc05162017-04-06 01:05:05 +0200295static void fd_dodelete(int fd, int do_close)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200296{
Willy Tarreau87d54a92018-10-15 09:44:46 +0200297 unsigned long locked = atleast2(fdtab[fd].thread_mask);
298
299 if (locked)
300 HA_SPIN_LOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreauad38ace2013-12-15 14:19:38 +0100301 if (fdtab[fd].linger_risk) {
302 /* this is generally set when connecting to servers */
303 setsockopt(fd, SOL_SOCKET, SO_LINGER,
304 (struct linger *) &nolinger, sizeof(struct linger));
305 }
Willy Tarreau6ea20b12012-11-11 16:05:19 +0100306 if (cur_poller.clo)
307 cur_poller.clo(fd);
Olivier Houchardc22580c2019-08-05 18:51:52 +0200308 polled_mask[fd].poll_recv = polled_mask[fd].poll_send = 0;
Willy Tarreau6ea20b12012-11-11 16:05:19 +0100309
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100310 fdtab[fd].state = 0;
Willy Tarreau6ea20b12012-11-11 16:05:19 +0100311
Willy Tarreau8d5d77e2009-10-18 07:25:52 +0200312 port_range_release_port(fdinfo[fd].port_range, fdinfo[fd].local_port);
313 fdinfo[fd].port_range = NULL;
Willy Tarreaudb3b3262012-07-05 23:19:22 +0200314 fdtab[fd].owner = NULL;
Willy Tarreauf65610a2017-10-31 16:06:06 +0100315 fdtab[fd].thread_mask = 0;
Willy Tarreauc9c83782018-01-17 18:44:46 +0100316 if (do_close) {
Christopher Fauletd531f882017-06-01 16:55:03 +0200317 close(fd);
Olivier Houchard7c49d2e2019-04-16 18:37:05 +0200318 _HA_ATOMIC_SUB(&ha_used_fds, 1);
Willy Tarreauc9c83782018-01-17 18:44:46 +0100319 }
Willy Tarreau87d54a92018-10-15 09:44:46 +0200320 if (locked)
321 HA_SPIN_UNLOCK(FD_LOCK, &fdtab[fd].lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200322}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200323
Willy Tarreau173d9952018-01-26 21:48:23 +0100324/* Deletes an FD from the fdsets.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200325 * The file descriptor is also closed.
326 */
327void fd_delete(int fd)
328{
329 fd_dodelete(fd, 1);
330}
331
Willy Tarreau173d9952018-01-26 21:48:23 +0100332/* Deletes an FD from the fdsets.
Olivier Houchard1fc05162017-04-06 01:05:05 +0200333 * The file descriptor is kept open.
334 */
335void fd_remove(int fd)
336{
337 fd_dodelete(fd, 0);
338}
339
Willy Tarreaudbe30602019-09-04 13:25:41 +0200340void updt_fd_polling(const int fd)
341{
342 if ((fdtab[fd].thread_mask & all_threads_mask) == tid_bit) {
343
344 /* note: we don't have a test-and-set yet in hathreads */
345
346 if (HA_ATOMIC_BTS(&fdtab[fd].update_mask, tid))
347 return;
348
349 fd_updt[fd_nbupdt++] = fd;
350 } else {
351 unsigned long update_mask = fdtab[fd].update_mask;
352 do {
353 if (update_mask == fdtab[fd].thread_mask)
354 return;
355 } while (!_HA_ATOMIC_CAS(&fdtab[fd].update_mask, &update_mask,
356 fdtab[fd].thread_mask));
357 fd_add_to_fd_list(&update_list, fd, offsetof(struct fdtab, update));
358 }
359}
360
Willy Tarreau931d8b72019-08-27 11:08:17 +0200361/* Tries to send <npfx> parts from <prefix> followed by <nmsg> parts from <msg>
362 * optionally followed by a newline if <nl> is non-null, to file descriptor
363 * <fd>. The message is sent atomically using writev(). It may be truncated to
364 * <maxlen> bytes if <maxlen> is non-null. There is no distinction between the
365 * two lists, it's just a convenience to help the caller prepend some prefixes
366 * when necessary. It takes the fd's lock to make sure no other thread will
367 * write to the same fd in parallel. Returns the number of bytes sent, or <=0
368 * on failure. A limit to 31 total non-empty segments is enforced. The caller
369 * is responsible for taking care of making the fd non-blocking.
370 */
371ssize_t fd_write_frag_line(int fd, size_t maxlen, const struct ist pfx[], size_t npfx, const struct ist msg[], size_t nmsg, int nl)
372{
373 struct iovec iovec[32];
374 size_t totlen = 0;
375 size_t sent = 0;
376 int vec = 0;
377
378 if (!maxlen)
379 maxlen = ~0;
380
381 /* keep one char for a possible trailing '\n' in any case */
382 maxlen--;
383
384 /* make an iovec from the concatenation of all parts of the original
385 * message. Skip empty fields and truncate the whole message to maxlen,
386 * leaving one spare iovec for the '\n'.
387 */
388 while (vec < (sizeof(iovec) / sizeof(iovec[0]) - 1)) {
389 if (!npfx) {
390 pfx = msg;
391 npfx = nmsg;
392 nmsg = 0;
393 if (!npfx)
394 break;
395 }
396
397 iovec[vec].iov_base = pfx->ptr;
398 iovec[vec].iov_len = MIN(maxlen, pfx->len);
399 maxlen -= iovec[vec].iov_len;
400 totlen += iovec[vec].iov_len;
401 if (iovec[vec].iov_len)
402 vec++;
403 pfx++; npfx--;
404 };
405
406 if (nl) {
407 iovec[vec].iov_base = "\n";
408 iovec[vec].iov_len = 1;
409 vec++;
410 }
411
Willy Tarreau7e9776a2019-08-30 14:41:47 +0200412 if (unlikely(!fdtab[fd].initialized)) {
413 fdtab[fd].initialized = 1;
414 if (!isatty(fd))
415 fcntl(fd, F_SETFL, O_NONBLOCK);
416 }
417
Willy Tarreau931d8b72019-08-27 11:08:17 +0200418 HA_SPIN_LOCK(FD_LOCK, &fdtab[fd].lock);
419 sent = writev(fd, iovec, vec);
420 HA_SPIN_UNLOCK(FD_LOCK, &fdtab[fd].lock);
421
422 /* sent > 0 if the message was delivered */
423 return sent;
424}
425
Olivier Houchard2292edf2019-02-25 14:26:54 +0100426#if defined(USE_CLOSEFROM)
427void my_closefrom(int start)
428{
429 closefrom(start);
430}
431
Willy Tarreaue5733232019-05-22 19:24:06 +0200432#elif defined(USE_POLL)
Willy Tarreau9188ac62019-02-21 22:12:47 +0100433/* This is a portable implementation of closefrom(). It closes all open file
434 * descriptors starting at <start> and above. It relies on the fact that poll()
435 * will return POLLNVAL for each invalid (hence close) file descriptor passed
436 * in argument in order to skip them. It acts with batches of FDs and will
437 * typically perform one poll() call per 1024 FDs so the overhead is low in
438 * case all FDs have to be closed.
439 */
440void my_closefrom(int start)
441{
442 struct pollfd poll_events[1024];
443 struct rlimit limit;
444 int nbfds, fd, ret, idx;
445 int step, next;
446
447 if (getrlimit(RLIMIT_NOFILE, &limit) == 0)
448 step = nbfds = limit.rlim_cur;
449 else
450 step = nbfds = 0;
451
452 if (nbfds <= 0) {
453 /* set safe limit */
454 nbfds = 1024;
455 step = 256;
456 }
457
458 if (step > sizeof(poll_events) / sizeof(poll_events[0]))
459 step = sizeof(poll_events) / sizeof(poll_events[0]);
460
461 while (start < nbfds) {
462 next = (start / step + 1) * step;
463
464 for (fd = start; fd < next && fd < nbfds; fd++) {
465 poll_events[fd - start].fd = fd;
466 poll_events[fd - start].events = 0;
467 }
468
469 do {
470 ret = poll(poll_events, fd - start, 0);
471 if (ret >= 0)
472 break;
473 } while (errno == EAGAIN || errno == EINTR || errno == ENOMEM);
474
Willy Tarreaub8e602c2019-02-22 09:07:42 +0100475 if (ret)
476 ret = fd - start;
477
Willy Tarreau9188ac62019-02-21 22:12:47 +0100478 for (idx = 0; idx < ret; idx++) {
479 if (poll_events[idx].revents & POLLNVAL)
480 continue; /* already closed */
481
482 fd = poll_events[idx].fd;
483 close(fd);
484 }
485 start = next;
486 }
487}
488
Willy Tarreaue5733232019-05-22 19:24:06 +0200489#else // defined(USE_POLL)
Willy Tarreau9188ac62019-02-21 22:12:47 +0100490
Willy Tarreau2d7f81b2019-02-21 22:19:17 +0100491/* This is a portable implementation of closefrom(). It closes all open file
492 * descriptors starting at <start> and above. This is a naive version for use
493 * when the operating system provides no alternative.
494 */
495void my_closefrom(int start)
496{
497 struct rlimit limit;
498 int nbfds;
499
500 if (getrlimit(RLIMIT_NOFILE, &limit) == 0)
501 nbfds = limit.rlim_cur;
502 else
503 nbfds = 0;
504
505 if (nbfds <= 0)
506 nbfds = 1024; /* safe limit */
507
508 while (start < nbfds)
509 close(start++);
510}
Willy Tarreaue5733232019-05-22 19:24:06 +0200511#endif // defined(USE_POLL)
Willy Tarreau2d7f81b2019-02-21 22:19:17 +0100512
Willy Tarreau4f60f162007-04-08 16:39:58 +0200513/* disable the specified poller */
514void disable_poller(const char *poller_name)
515{
516 int p;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200517
Willy Tarreau4f60f162007-04-08 16:39:58 +0200518 for (p = 0; p < nbpollers; p++)
519 if (strcmp(pollers[p].name, poller_name) == 0)
520 pollers[p].pref = 0;
521}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200522
Olivier Houchard79321b92018-07-26 17:55:11 +0200523void poller_pipe_io_handler(int fd)
524{
525 char buf[1024];
526 /* Flush the pipe */
527 while (read(fd, buf, sizeof(buf)) > 0);
528 fd_cant_recv(fd);
529}
530
Willy Tarreau082b6282019-05-22 14:42:12 +0200531/* allocate the per-thread fd_updt thus needs to be called early after
532 * thread creation.
533 */
534static int alloc_pollers_per_thread()
535{
536 fd_updt = calloc(global.maxsock, sizeof(*fd_updt));
537 return fd_updt != NULL;
538}
539
540/* Initialize the pollers per thread.*/
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200541static int init_pollers_per_thread()
542{
Olivier Houchard79321b92018-07-26 17:55:11 +0200543 int mypipe[2];
Willy Tarreau082b6282019-05-22 14:42:12 +0200544
545 if (pipe(mypipe) < 0)
Olivier Houchard79321b92018-07-26 17:55:11 +0200546 return 0;
Willy Tarreau082b6282019-05-22 14:42:12 +0200547
Olivier Houchard79321b92018-07-26 17:55:11 +0200548 poller_rd_pipe = mypipe[0];
549 poller_wr_pipe[tid] = mypipe[1];
550 fcntl(poller_rd_pipe, F_SETFL, O_NONBLOCK);
551 fd_insert(poller_rd_pipe, poller_pipe_io_handler, poller_pipe_io_handler,
552 tid_bit);
553 fd_want_recv(poller_rd_pipe);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200554 return 1;
555}
556
557/* Deinitialize the pollers per thread */
558static void deinit_pollers_per_thread()
559{
William Lallemand808e1b72018-12-15 22:34:31 +0100560 /* rd and wr are init at the same place, but only rd is init to -1, so
561 we rely to rd to close. */
562 if (poller_rd_pipe > -1) {
563 close(poller_rd_pipe);
564 poller_rd_pipe = -1;
565 close(poller_wr_pipe[tid]);
566 poller_wr_pipe[tid] = -1;
567 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200568}
569
Willy Tarreau082b6282019-05-22 14:42:12 +0200570/* Release the pollers per thread, to be called late */
571static void free_pollers_per_thread()
572{
573 free(fd_updt);
574 fd_updt = NULL;
575}
576
Willy Tarreaubaaee002006-06-26 02:48:02 +0200577/*
Willy Tarreau4f60f162007-04-08 16:39:58 +0200578 * Initialize the pollers till the best one is found.
579 * If none works, returns 0, otherwise 1.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200580 */
Willy Tarreau4f60f162007-04-08 16:39:58 +0200581int init_pollers()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200582{
Willy Tarreau4f60f162007-04-08 16:39:58 +0200583 int p;
584 struct poller *bp;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200585
Christopher Faulet63fe6522017-08-31 17:52:09 +0200586 if ((fdtab = calloc(global.maxsock, sizeof(struct fdtab))) == NULL)
587 goto fail_tab;
588
Olivier Houchard53055052019-07-25 14:00:18 +0000589 if ((polled_mask = calloc(global.maxsock, sizeof(*polled_mask))) == NULL)
Olivier Houchardcb92f5c2018-04-26 14:23:07 +0200590 goto fail_polledmask;
Uman Shahzadda7eeed2019-01-17 08:21:39 +0000591
Christopher Faulet63fe6522017-08-31 17:52:09 +0200592 if ((fdinfo = calloc(global.maxsock, sizeof(struct fdinfo))) == NULL)
593 goto fail_info;
594
Olivier Houchard6b96f722018-04-25 16:58:25 +0200595 update_list.first = update_list.last = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200596
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100597 for (p = 0; p < global.maxsock; p++) {
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100598 HA_SPIN_INIT(&fdtab[p].lock);
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100599 /* Mark the fd as out of the fd cache */
Olivier Houchard6b96f722018-04-25 16:58:25 +0200600 fdtab[p].update.next = -3;
Olivier Houchard4815c8c2018-01-24 18:17:56 +0100601 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200602
Willy Tarreau4f60f162007-04-08 16:39:58 +0200603 do {
604 bp = NULL;
605 for (p = 0; p < nbpollers; p++)
606 if (!bp || (pollers[p].pref > bp->pref))
607 bp = &pollers[p];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200608
Willy Tarreau4f60f162007-04-08 16:39:58 +0200609 if (!bp || bp->pref == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200610 break;
611
Willy Tarreau4f60f162007-04-08 16:39:58 +0200612 if (bp->init(bp)) {
613 memcpy(&cur_poller, bp, sizeof(*bp));
614 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200615 }
Willy Tarreau4f60f162007-04-08 16:39:58 +0200616 } while (!bp || bp->pref == 0);
Willy Tarreau7be79a42012-11-11 15:02:54 +0100617
Christopher Faulet63fe6522017-08-31 17:52:09 +0200618 free(fdinfo);
619 fail_info:
Olivier Houchardcb92f5c2018-04-26 14:23:07 +0200620 free(polled_mask);
621 fail_polledmask:
Uman Shahzadda7eeed2019-01-17 08:21:39 +0000622 free(fdtab);
623 fail_tab:
Willy Tarreau7be79a42012-11-11 15:02:54 +0100624 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200625}
626
Willy Tarreaubaaee002006-06-26 02:48:02 +0200627/*
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200628 * Deinitialize the pollers.
629 */
630void deinit_pollers() {
631
632 struct poller *bp;
633 int p;
634
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200635 for (p = 0; p < global.maxsock; p++)
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100636 HA_SPIN_DESTROY(&fdtab[p].lock);
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200637
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200638 for (p = 0; p < nbpollers; p++) {
639 bp = &pollers[p];
640
641 if (bp && bp->pref)
642 bp->term(bp);
643 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +0200644
Christopher Faulet63fe6522017-08-31 17:52:09 +0200645 free(fdinfo); fdinfo = NULL;
646 free(fdtab); fdtab = NULL;
Olivier Houchardcb92f5c2018-04-26 14:23:07 +0200647 free(polled_mask); polled_mask = NULL;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +0200648}
649
650/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200651 * Lists the known pollers on <out>.
652 * Should be performed only before initialization.
653 */
654int list_pollers(FILE *out)
655{
656 int p;
657 int last, next;
658 int usable;
659 struct poller *bp;
660
661 fprintf(out, "Available polling systems :\n");
662
663 usable = 0;
664 bp = NULL;
665 last = next = -1;
666 while (1) {
667 for (p = 0; p < nbpollers; p++) {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200668 if ((next < 0 || pollers[p].pref > next)
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100669 && (last < 0 || pollers[p].pref < last)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200670 next = pollers[p].pref;
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100671 if (!bp || (pollers[p].pref > bp->pref))
672 bp = &pollers[p];
673 }
Willy Tarreau2ff76222007-04-09 19:29:56 +0200674 }
675
676 if (next == -1)
677 break;
678
679 for (p = 0; p < nbpollers; p++) {
680 if (pollers[p].pref == next) {
681 fprintf(out, " %10s : ", pollers[p].name);
682 if (pollers[p].pref == 0)
683 fprintf(out, "disabled, ");
684 else
685 fprintf(out, "pref=%3d, ", pollers[p].pref);
686 if (pollers[p].test(&pollers[p])) {
687 fprintf(out, " test result OK");
688 if (next > 0)
689 usable++;
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100690 } else {
Willy Tarreau2ff76222007-04-09 19:29:56 +0200691 fprintf(out, " test result FAILED");
Willy Tarreaue79c3b22010-11-19 10:20:36 +0100692 if (bp == &pollers[p])
693 bp = NULL;
694 }
Willy Tarreau2ff76222007-04-09 19:29:56 +0200695 fprintf(out, "\n");
696 }
697 }
698 last = next;
699 next = -1;
700 };
701 fprintf(out, "Total: %d (%d usable), will use %s.\n", nbpollers, usable, bp ? bp->name : "none");
702 return 0;
703}
704
705/*
706 * Some pollers may lose their connection after a fork(). It may be necessary
707 * to create initialize part of them again. Returns 0 in case of failure,
708 * otherwise 1. The fork() function may be NULL if unused. In case of error,
709 * the the current poller is destroyed and the caller is responsible for trying
710 * another one by calling init_pollers() again.
711 */
712int fork_poller()
713{
Conrad Hoffmann041751c2014-05-20 14:28:24 +0200714 int fd;
Willy Tarreauce036bc2018-01-29 14:58:02 +0100715 for (fd = 0; fd < global.maxsock; fd++) {
Conrad Hoffmann041751c2014-05-20 14:28:24 +0200716 if (fdtab[fd].owner) {
717 fdtab[fd].cloned = 1;
718 }
719 }
720
Willy Tarreau2ff76222007-04-09 19:29:56 +0200721 if (cur_poller.fork) {
722 if (cur_poller.fork(&cur_poller))
723 return 1;
724 cur_poller.term(&cur_poller);
725 return 0;
726 }
727 return 1;
728}
729
Willy Tarreau082b6282019-05-22 14:42:12 +0200730REGISTER_PER_THREAD_ALLOC(alloc_pollers_per_thread);
Willy Tarreau172f5ce2018-11-26 11:21:50 +0100731REGISTER_PER_THREAD_INIT(init_pollers_per_thread);
732REGISTER_PER_THREAD_DEINIT(deinit_pollers_per_thread);
Willy Tarreau082b6282019-05-22 14:42:12 +0200733REGISTER_PER_THREAD_FREE(free_pollers_per_thread);
Willy Tarreau172f5ce2018-11-26 11:21:50 +0100734
Willy Tarreau2ff76222007-04-09 19:29:56 +0200735/*
Willy Tarreaubaaee002006-06-26 02:48:02 +0200736 * Local variables:
737 * c-indent-level: 8
738 * c-basic-offset: 8
739 * End:
740 */