Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 2 | * Listener management functions. |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 3 | * |
Willy Tarreau | 0ccb744 | 2013-01-07 22:54:17 +0100 | [diff] [blame] | 4 | * Copyright 2000-2013 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +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 | |
Willy Tarreau | 4448925 | 2014-01-14 17:52:01 +0100 | [diff] [blame] | 13 | #define _GNU_SOURCE |
Willy Tarreau | 6ae1ba6 | 2014-05-07 19:01:58 +0200 | [diff] [blame] | 14 | #include <ctype.h> |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 15 | #include <errno.h> |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 16 | #include <stdio.h> |
| 17 | #include <string.h> |
Willy Tarreau | 95ccdde | 2014-02-01 09:28:36 +0100 | [diff] [blame] | 18 | #include <unistd.h> |
| 19 | #include <fcntl.h> |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 20 | |
Willy Tarreau | 1bc4aab | 2012-10-08 20:11:03 +0200 | [diff] [blame] | 21 | #include <common/accept4.h> |
Christopher Faulet | f1f0c5f | 2017-11-22 12:06:43 +0100 | [diff] [blame] | 22 | #include <common/cfgparse.h> |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 23 | #include <common/config.h> |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 24 | #include <common/errors.h> |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 25 | #include <common/initcall.h> |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 26 | #include <common/mini-clist.h> |
| 27 | #include <common/standard.h> |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 28 | #include <common/time.h> |
| 29 | |
| 30 | #include <types/global.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 31 | #include <types/protocol.h> |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 32 | |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 33 | #include <proto/acl.h> |
Christopher Faulet | a717b99 | 2018-04-10 14:43:00 +0200 | [diff] [blame] | 34 | #include <proto/connection.h> |
Willy Tarreau | b648d63 | 2007-10-28 22:13:50 +0100 | [diff] [blame] | 35 | #include <proto/fd.h> |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 36 | #include <proto/freq_ctr.h> |
| 37 | #include <proto/log.h> |
Willy Tarreau | 7a798e5 | 2016-04-14 11:13:20 +0200 | [diff] [blame] | 38 | #include <proto/listener.h> |
Willy Tarreau | 0de59fd | 2017-09-15 08:10:44 +0200 | [diff] [blame] | 39 | #include <proto/protocol.h> |
William Lallemand | 2fe7dd0 | 2018-09-11 16:51:29 +0200 | [diff] [blame] | 40 | #include <proto/proto_sockpair.h> |
Willy Tarreau | 0ccb744 | 2013-01-07 22:54:17 +0100 | [diff] [blame] | 41 | #include <proto/sample.h> |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 42 | #include <proto/stream.h> |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 43 | #include <proto/task.h> |
Willy Tarreau | b648d63 | 2007-10-28 22:13:50 +0100 | [diff] [blame] | 44 | |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 45 | /* List head of all known bind keywords */ |
| 46 | static struct bind_kw_list bind_keywords = { |
| 47 | .list = LIST_HEAD_INIT(bind_keywords.list) |
| 48 | }; |
| 49 | |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 50 | struct xfer_sock_list *xfer_sock_list = NULL; |
| 51 | |
Willy Tarreau | f2cb169 | 2019-07-11 10:08:31 +0200 | [diff] [blame] | 52 | /* there is one listener queue per thread so that a thread unblocking the |
| 53 | * global queue can wake up listeners bound only to foreing threads by |
Willy Tarreau | 2bd65a7 | 2019-09-24 06:55:18 +0200 | [diff] [blame] | 54 | * moving them to the remote queues and waking up the associated tasklet. |
Willy Tarreau | f2cb169 | 2019-07-11 10:08:31 +0200 | [diff] [blame] | 55 | */ |
| 56 | static struct work_list *local_listener_queue; |
| 57 | |
Willy Tarreau | 1efafce | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 58 | #if defined(USE_THREAD) |
| 59 | |
| 60 | struct accept_queue_ring accept_queue_rings[MAX_THREADS] __attribute__((aligned(64))) = { }; |
| 61 | |
| 62 | /* dequeue and process a pending connection from the local accept queue (single |
| 63 | * consumer). Returns the accepted fd or -1 if none was found. The listener is |
| 64 | * placed into *li. The address is copied into *addr for no more than *addr_len |
| 65 | * bytes, and the address length is returned into *addr_len. |
| 66 | */ |
| 67 | int accept_queue_pop_sc(struct accept_queue_ring *ring, struct listener **li, void *addr, int *addr_len) |
| 68 | { |
| 69 | struct accept_queue_entry *e; |
| 70 | unsigned int pos, next; |
| 71 | struct listener *ptr; |
| 72 | int len; |
| 73 | int fd; |
| 74 | |
| 75 | pos = ring->head; |
| 76 | |
| 77 | if (pos == ring->tail) |
| 78 | return -1; |
| 79 | |
| 80 | next = pos + 1; |
| 81 | if (next >= ACCEPT_QUEUE_SIZE) |
| 82 | next = 0; |
| 83 | |
| 84 | e = &ring->entry[pos]; |
| 85 | |
| 86 | /* wait for the producer to update the listener's pointer */ |
| 87 | while (1) { |
| 88 | ptr = e->listener; |
| 89 | __ha_barrier_load(); |
| 90 | if (ptr) |
| 91 | break; |
| 92 | pl_cpu_relax(); |
| 93 | } |
| 94 | |
| 95 | fd = e->fd; |
| 96 | len = e->addr_len; |
| 97 | if (len > *addr_len) |
| 98 | len = *addr_len; |
| 99 | |
| 100 | if (likely(len > 0)) |
| 101 | memcpy(addr, &e->addr, len); |
| 102 | |
| 103 | /* release the entry */ |
| 104 | e->listener = NULL; |
| 105 | |
| 106 | __ha_barrier_store(); |
| 107 | ring->head = next; |
| 108 | |
| 109 | *addr_len = len; |
| 110 | *li = ptr; |
| 111 | |
| 112 | return fd; |
| 113 | } |
| 114 | |
| 115 | |
| 116 | /* tries to push a new accepted connection <fd> into ring <ring> for listener |
| 117 | * <li>, from address <addr> whose length is <addr_len>. Returns non-zero if it |
| 118 | * succeeds, or zero if the ring is full. Supports multiple producers. |
| 119 | */ |
| 120 | int accept_queue_push_mp(struct accept_queue_ring *ring, int fd, |
| 121 | struct listener *li, const void *addr, int addr_len) |
| 122 | { |
| 123 | struct accept_queue_entry *e; |
| 124 | unsigned int pos, next; |
| 125 | |
| 126 | pos = ring->tail; |
| 127 | do { |
| 128 | next = pos + 1; |
| 129 | if (next >= ACCEPT_QUEUE_SIZE) |
| 130 | next = 0; |
| 131 | if (next == ring->head) |
| 132 | return 0; // ring full |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 133 | } while (unlikely(!_HA_ATOMIC_CAS(&ring->tail, &pos, next))); |
Willy Tarreau | 1efafce | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 134 | |
| 135 | |
| 136 | e = &ring->entry[pos]; |
| 137 | |
| 138 | if (addr_len > sizeof(e->addr)) |
| 139 | addr_len = sizeof(e->addr); |
| 140 | |
| 141 | if (addr_len) |
| 142 | memcpy(&e->addr, addr, addr_len); |
| 143 | |
| 144 | e->addr_len = addr_len; |
| 145 | e->fd = fd; |
| 146 | |
| 147 | __ha_barrier_store(); |
| 148 | /* now commit the change */ |
| 149 | |
| 150 | e->listener = li; |
| 151 | return 1; |
| 152 | } |
| 153 | |
| 154 | /* proceed with accepting new connections */ |
| 155 | static struct task *accept_queue_process(struct task *t, void *context, unsigned short state) |
| 156 | { |
| 157 | struct accept_queue_ring *ring = context; |
| 158 | struct listener *li; |
| 159 | struct sockaddr_storage addr; |
Christopher Faulet | 102854c | 2019-04-30 12:17:13 +0200 | [diff] [blame] | 160 | unsigned int max_accept; |
Willy Tarreau | 1efafce | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 161 | int addr_len; |
| 162 | int ret; |
| 163 | int fd; |
| 164 | |
Christopher Faulet | 102854c | 2019-04-30 12:17:13 +0200 | [diff] [blame] | 165 | /* if global.tune.maxaccept is -1, then max_accept is UINT_MAX. It |
| 166 | * is not really illimited, but it is probably enough. |
| 167 | */ |
| 168 | max_accept = global.tune.maxaccept ? global.tune.maxaccept : 64; |
| 169 | for (; max_accept; max_accept--) { |
Willy Tarreau | 1efafce | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 170 | addr_len = sizeof(addr); |
| 171 | fd = accept_queue_pop_sc(ring, &li, &addr, &addr_len); |
| 172 | if (fd < 0) |
| 173 | break; |
| 174 | |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 175 | _HA_ATOMIC_ADD(&li->thr_conn[tid], 1); |
Willy Tarreau | 1efafce | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 176 | ret = li->accept(li, fd, &addr); |
| 177 | if (ret <= 0) { |
| 178 | /* connection was terminated by the application */ |
| 179 | continue; |
| 180 | } |
| 181 | |
| 182 | /* increase the per-process number of cumulated sessions, this |
| 183 | * may only be done once l->accept() has accepted the connection. |
| 184 | */ |
| 185 | if (!(li->options & LI_O_UNLIMITED)) { |
| 186 | HA_ATOMIC_UPDATE_MAX(&global.sps_max, |
| 187 | update_freq_ctr(&global.sess_per_sec, 1)); |
| 188 | if (li->bind_conf && li->bind_conf->is_ssl) { |
| 189 | HA_ATOMIC_UPDATE_MAX(&global.ssl_max, |
| 190 | update_freq_ctr(&global.ssl_per_sec, 1)); |
| 191 | } |
| 192 | } |
| 193 | } |
| 194 | |
| 195 | /* ran out of budget ? Let's come here ASAP */ |
Christopher Faulet | 102854c | 2019-04-30 12:17:13 +0200 | [diff] [blame] | 196 | if (!max_accept) |
Willy Tarreau | 2bd65a7 | 2019-09-24 06:55:18 +0200 | [diff] [blame] | 197 | tasklet_wakeup(ring->tasklet); |
Willy Tarreau | 1efafce | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 198 | |
Willy Tarreau | 2bd65a7 | 2019-09-24 06:55:18 +0200 | [diff] [blame] | 199 | return NULL; |
Willy Tarreau | 1efafce | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | /* Initializes the accept-queues. Returns 0 on success, otherwise ERR_* flags */ |
| 203 | static int accept_queue_init() |
| 204 | { |
Willy Tarreau | 2bd65a7 | 2019-09-24 06:55:18 +0200 | [diff] [blame] | 205 | struct tasklet *t; |
Willy Tarreau | 1efafce | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 206 | int i; |
| 207 | |
| 208 | for (i = 0; i < global.nbthread; i++) { |
Willy Tarreau | 2bd65a7 | 2019-09-24 06:55:18 +0200 | [diff] [blame] | 209 | t = tasklet_new(); |
Willy Tarreau | 1efafce | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 210 | if (!t) { |
| 211 | ha_alert("Out of memory while initializing accept queue for thread %d\n", i); |
| 212 | return ERR_FATAL|ERR_ABORT; |
| 213 | } |
Willy Tarreau | 2bd65a7 | 2019-09-24 06:55:18 +0200 | [diff] [blame] | 214 | t->tid = i; |
Willy Tarreau | 1efafce | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 215 | t->process = accept_queue_process; |
| 216 | t->context = &accept_queue_rings[i]; |
Willy Tarreau | 2bd65a7 | 2019-09-24 06:55:18 +0200 | [diff] [blame] | 217 | accept_queue_rings[i].tasklet = t; |
Willy Tarreau | 1efafce | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 218 | } |
| 219 | return 0; |
| 220 | } |
| 221 | |
| 222 | REGISTER_CONFIG_POSTPARSER("multi-threaded accept queue", accept_queue_init); |
| 223 | |
| 224 | #endif // USE_THREAD |
| 225 | |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 226 | /* This function adds the specified listener's file descriptor to the polling |
| 227 | * lists if it is in the LI_LISTEN state. The listener enters LI_READY or |
Willy Tarreau | ae30253 | 2014-05-07 19:22:24 +0200 | [diff] [blame] | 228 | * LI_FULL state depending on its number of connections. In deamon mode, we |
| 229 | * also support binding only the relevant processes to their respective |
| 230 | * listeners. We don't do that in debug mode however. |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 231 | */ |
Christopher Faulet | f5b8adc | 2017-06-02 10:00:35 +0200 | [diff] [blame] | 232 | static void enable_listener(struct listener *listener) |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 233 | { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 234 | HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 235 | if (listener->state == LI_LISTEN) { |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 236 | if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) && |
Willy Tarreau | 6daac19 | 2019-02-02 17:39:53 +0100 | [diff] [blame] | 237 | !(proc_mask(listener->bind_conf->bind_proc) & pid_bit)) { |
Willy Tarreau | ae30253 | 2014-05-07 19:22:24 +0200 | [diff] [blame] | 238 | /* we don't want to enable this listener and don't |
| 239 | * want any fd event to reach it. |
| 240 | */ |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 241 | if (!(global.tune.options & GTUNE_SOCKET_TRANSFER)) |
Christopher Faulet | 510c0d6 | 2018-03-16 10:04:47 +0100 | [diff] [blame] | 242 | do_unbind_listener(listener, 1); |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 243 | else { |
Christopher Faulet | 510c0d6 | 2018-03-16 10:04:47 +0100 | [diff] [blame] | 244 | do_unbind_listener(listener, 0); |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 245 | listener->state = LI_LISTEN; |
| 246 | } |
Willy Tarreau | ae30253 | 2014-05-07 19:22:24 +0200 | [diff] [blame] | 247 | } |
Willy Tarreau | a8cf66b | 2019-02-27 16:49:00 +0100 | [diff] [blame] | 248 | else if (!listener->maxconn || listener->nbconn < listener->maxconn) { |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 249 | fd_want_recv(listener->fd); |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 250 | listener->state = LI_READY; |
Willy Tarreau | ae30253 | 2014-05-07 19:22:24 +0200 | [diff] [blame] | 251 | } |
| 252 | else { |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 253 | listener->state = LI_FULL; |
| 254 | } |
| 255 | } |
William Lallemand | e22f11f | 2018-09-11 10:06:27 +0200 | [diff] [blame] | 256 | /* if this listener is supposed to be only in the master, close it in the workers */ |
| 257 | if ((global.mode & MODE_MWORKER) && |
| 258 | (listener->options & LI_O_MWORKER) && |
| 259 | master == 0) { |
| 260 | do_unbind_listener(listener, 1); |
| 261 | } |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 262 | HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | /* This function removes the specified listener's file descriptor from the |
| 266 | * polling lists if it is in the LI_READY or in the LI_FULL state. The listener |
| 267 | * enters LI_LISTEN. |
| 268 | */ |
Christopher Faulet | f5b8adc | 2017-06-02 10:00:35 +0200 | [diff] [blame] | 269 | static void disable_listener(struct listener *listener) |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 270 | { |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 271 | HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 272 | if (listener->state < LI_READY) |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 273 | goto end; |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 274 | if (listener->state == LI_READY) |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 275 | fd_stop_recv(listener->fd); |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 276 | MT_LIST_DEL(&listener->wait_queue); |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 277 | listener->state = LI_LISTEN; |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 278 | end: |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 279 | HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 280 | } |
| 281 | |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 282 | /* This function tries to temporarily disable a listener, depending on the OS |
| 283 | * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores |
| 284 | * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but |
| 285 | * closes upon SHUT_WR and refuses to rebind. So a common validation path |
| 286 | * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling |
| 287 | * is disabled. It normally returns non-zero, unless an error is reported. |
| 288 | */ |
| 289 | int pause_listener(struct listener *l) |
| 290 | { |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 291 | int ret = 1; |
| 292 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 293 | HA_SPIN_LOCK(LISTENER_LOCK, &l->lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 294 | |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 295 | if (l->state <= LI_ZOMBIE) |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 296 | goto end; |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 297 | |
Willy Tarreau | 092d865 | 2014-07-07 20:22:12 +0200 | [diff] [blame] | 298 | if (l->proto->pause) { |
| 299 | /* Returns < 0 in case of failure, 0 if the listener |
| 300 | * was totally stopped, or > 0 if correctly paused. |
| 301 | */ |
| 302 | int ret = l->proto->pause(l); |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 303 | |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 304 | if (ret < 0) { |
| 305 | ret = 0; |
| 306 | goto end; |
| 307 | } |
Willy Tarreau | 092d865 | 2014-07-07 20:22:12 +0200 | [diff] [blame] | 308 | else if (ret == 0) |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 309 | goto end; |
Willy Tarreau | b3fb60b | 2012-10-04 08:56:31 +0200 | [diff] [blame] | 310 | } |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 311 | |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 312 | MT_LIST_DEL(&l->wait_queue); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 313 | |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 314 | fd_stop_recv(l->fd); |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 315 | l->state = LI_PAUSED; |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 316 | end: |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 317 | HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 318 | return ret; |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 319 | } |
| 320 | |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 321 | /* This function tries to resume a temporarily disabled listener. Paused, full, |
| 322 | * limited and disabled listeners are handled, which means that this function |
| 323 | * may replace enable_listener(). The resulting state will either be LI_READY |
| 324 | * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket). |
Willy Tarreau | ae30253 | 2014-05-07 19:22:24 +0200 | [diff] [blame] | 325 | * Listeners bound to a different process are not woken up unless we're in |
Willy Tarreau | af2fd58 | 2015-04-14 12:07:16 +0200 | [diff] [blame] | 326 | * foreground mode, and are ignored. If the listener was only in the assigned |
| 327 | * state, it's totally rebound. This can happen if a pause() has completely |
| 328 | * stopped it. If the resume fails, 0 is returned and an error might be |
| 329 | * displayed. |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 330 | */ |
Willy Tarreau | 01abd02 | 2019-02-28 10:27:18 +0100 | [diff] [blame] | 331 | int resume_listener(struct listener *l) |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 332 | { |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 333 | int ret = 1; |
| 334 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 335 | HA_SPIN_LOCK(LISTENER_LOCK, &l->lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 336 | |
Willy Tarreau | f2cb169 | 2019-07-11 10:08:31 +0200 | [diff] [blame] | 337 | /* check that another thread didn't to the job in parallel (e.g. at the |
| 338 | * end of listen_accept() while we'd come from dequeue_all_listeners(). |
| 339 | */ |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 340 | if (MT_LIST_ADDED(&l->wait_queue)) |
Willy Tarreau | f2cb169 | 2019-07-11 10:08:31 +0200 | [diff] [blame] | 341 | goto end; |
| 342 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 343 | if ((global.mode & (MODE_DAEMON | MODE_MWORKER)) && |
Willy Tarreau | 6daac19 | 2019-02-02 17:39:53 +0100 | [diff] [blame] | 344 | !(proc_mask(l->bind_conf->bind_proc) & pid_bit)) |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 345 | goto end; |
Willy Tarreau | 3569df3 | 2017-03-15 12:47:46 +0100 | [diff] [blame] | 346 | |
Willy Tarreau | 1c4b814 | 2014-07-07 21:06:24 +0200 | [diff] [blame] | 347 | if (l->state == LI_ASSIGNED) { |
| 348 | char msg[100]; |
| 349 | int err; |
| 350 | |
| 351 | err = l->proto->bind(l, msg, sizeof(msg)); |
| 352 | if (err & ERR_ALERT) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 353 | ha_alert("Resuming listener: %s\n", msg); |
Willy Tarreau | 1c4b814 | 2014-07-07 21:06:24 +0200 | [diff] [blame] | 354 | else if (err & ERR_WARN) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 355 | ha_warning("Resuming listener: %s\n", msg); |
Willy Tarreau | 1c4b814 | 2014-07-07 21:06:24 +0200 | [diff] [blame] | 356 | |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 357 | if (err & (ERR_FATAL | ERR_ABORT)) { |
| 358 | ret = 0; |
| 359 | goto end; |
| 360 | } |
Willy Tarreau | 1c4b814 | 2014-07-07 21:06:24 +0200 | [diff] [blame] | 361 | } |
| 362 | |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 363 | if (l->state < LI_PAUSED || l->state == LI_ZOMBIE) { |
| 364 | ret = 0; |
| 365 | goto end; |
| 366 | } |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 367 | |
Willy Tarreau | b3fb60b | 2012-10-04 08:56:31 +0200 | [diff] [blame] | 368 | if (l->proto->sock_prot == IPPROTO_TCP && |
| 369 | l->state == LI_PAUSED && |
Willy Tarreau | e2711c7 | 2019-02-27 15:39:41 +0100 | [diff] [blame] | 370 | listen(l->fd, listener_backlog(l)) != 0) { |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 371 | ret = 0; |
| 372 | goto end; |
| 373 | } |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 374 | |
| 375 | if (l->state == LI_READY) |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 376 | goto end; |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 377 | |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 378 | MT_LIST_DEL(&l->wait_queue); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 379 | |
Willy Tarreau | a8cf66b | 2019-02-27 16:49:00 +0100 | [diff] [blame] | 380 | if (l->maxconn && l->nbconn >= l->maxconn) { |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 381 | l->state = LI_FULL; |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 382 | goto end; |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 383 | } |
| 384 | |
Willy Tarreau | f2cb169 | 2019-07-11 10:08:31 +0200 | [diff] [blame] | 385 | if (!(thread_mask(l->bind_conf->bind_thread) & tid_bit)) { |
| 386 | /* we're not allowed to touch this listener's FD, let's requeue |
| 387 | * the listener into one of its owning thread's queue instead. |
| 388 | */ |
| 389 | int first_thread = my_flsl(thread_mask(l->bind_conf->bind_thread)) - 1; |
| 390 | work_list_add(&local_listener_queue[first_thread], &l->wait_queue); |
| 391 | goto end; |
| 392 | } |
| 393 | |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 394 | fd_want_recv(l->fd); |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 395 | l->state = LI_READY; |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 396 | end: |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 397 | HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 398 | return ret; |
| 399 | } |
| 400 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 401 | /* Marks a ready listener as full so that the stream code tries to re-enable |
Willy Tarreau | 6279371 | 2011-07-24 19:23:38 +0200 | [diff] [blame] | 402 | * it upon next close() using resume_listener(). |
| 403 | */ |
Christopher Faulet | 5580ba2 | 2017-08-28 15:29:20 +0200 | [diff] [blame] | 404 | static void listener_full(struct listener *l) |
Willy Tarreau | 6279371 | 2011-07-24 19:23:38 +0200 | [diff] [blame] | 405 | { |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 406 | HA_SPIN_LOCK(LISTENER_LOCK, &l->lock); |
Willy Tarreau | 6279371 | 2011-07-24 19:23:38 +0200 | [diff] [blame] | 407 | if (l->state >= LI_READY) { |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 408 | MT_LIST_DEL(&l->wait_queue); |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 409 | if (l->state != LI_FULL) { |
| 410 | fd_stop_recv(l->fd); |
| 411 | l->state = LI_FULL; |
| 412 | } |
Willy Tarreau | 6279371 | 2011-07-24 19:23:38 +0200 | [diff] [blame] | 413 | } |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 414 | HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock); |
Willy Tarreau | 6279371 | 2011-07-24 19:23:38 +0200 | [diff] [blame] | 415 | } |
| 416 | |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 417 | /* Marks a ready listener as limited so that we only try to re-enable it when |
| 418 | * resources are free again. It will be queued into the specified queue. |
| 419 | */ |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 420 | static void limit_listener(struct listener *l, struct mt_list *list) |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 421 | { |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 422 | HA_SPIN_LOCK(LISTENER_LOCK, &l->lock); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 423 | if (l->state == LI_READY) { |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 424 | MT_LIST_ADDQ(list, &l->wait_queue); |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 425 | fd_stop_recv(l->fd); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 426 | l->state = LI_LIMITED; |
| 427 | } |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 428 | HA_SPIN_UNLOCK(LISTENER_LOCK, &l->lock); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 429 | } |
| 430 | |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 431 | /* This function adds all of the protocol's listener's file descriptors to the |
| 432 | * polling lists when they are in the LI_LISTEN state. It is intended to be |
| 433 | * used as a protocol's generic enable_all() primitive, for use after the |
| 434 | * fork(). It puts the listeners into LI_READY or LI_FULL states depending on |
| 435 | * their number of connections. It always returns ERR_NONE. |
Willy Tarreau | daacf36 | 2019-07-24 16:45:02 +0200 | [diff] [blame] | 436 | * |
| 437 | * Must be called with proto_lock held. |
| 438 | * |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 439 | */ |
| 440 | int enable_all_listeners(struct protocol *proto) |
| 441 | { |
| 442 | struct listener *listener; |
| 443 | |
| 444 | list_for_each_entry(listener, &proto->listeners, proto_list) |
| 445 | enable_listener(listener); |
| 446 | return ERR_NONE; |
| 447 | } |
| 448 | |
| 449 | /* This function removes all of the protocol's listener's file descriptors from |
| 450 | * the polling lists when they are in the LI_READY or LI_FULL states. It is |
| 451 | * intended to be used as a protocol's generic disable_all() primitive. It puts |
| 452 | * the listeners into LI_LISTEN, and always returns ERR_NONE. |
Willy Tarreau | daacf36 | 2019-07-24 16:45:02 +0200 | [diff] [blame] | 453 | * |
| 454 | * Must be called with proto_lock held. |
| 455 | * |
Willy Tarreau | dabf2e2 | 2007-10-28 21:59:24 +0100 | [diff] [blame] | 456 | */ |
| 457 | int disable_all_listeners(struct protocol *proto) |
| 458 | { |
| 459 | struct listener *listener; |
| 460 | |
| 461 | list_for_each_entry(listener, &proto->listeners, proto_list) |
| 462 | disable_listener(listener); |
| 463 | return ERR_NONE; |
| 464 | } |
| 465 | |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 466 | /* Dequeues all of the listeners waiting for a resource in wait queue <queue>. */ |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 467 | void dequeue_all_listeners(struct mt_list *list) |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 468 | { |
Willy Tarreau | 01abd02 | 2019-02-28 10:27:18 +0100 | [diff] [blame] | 469 | struct listener *listener; |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 470 | |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 471 | while ((listener = MT_LIST_POP(list, struct listener *, wait_queue))) { |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 472 | /* This cannot fail because the listeners are by definition in |
Willy Tarreau | 01abd02 | 2019-02-28 10:27:18 +0100 | [diff] [blame] | 473 | * the LI_LIMITED state. |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 474 | */ |
Willy Tarreau | 01abd02 | 2019-02-28 10:27:18 +0100 | [diff] [blame] | 475 | resume_listener(listener); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 476 | } |
| 477 | } |
| 478 | |
Christopher Faulet | 510c0d6 | 2018-03-16 10:04:47 +0100 | [diff] [blame] | 479 | /* Must be called with the lock held. Depending on <do_close> value, it does |
| 480 | * what unbind_listener or unbind_listener_no_close should do. |
| 481 | */ |
| 482 | void do_unbind_listener(struct listener *listener, int do_close) |
Willy Tarreau | b648d63 | 2007-10-28 22:13:50 +0100 | [diff] [blame] | 483 | { |
Olivier Houchard | a518856 | 2019-03-08 15:35:42 +0100 | [diff] [blame] | 484 | if (listener->state == LI_READY && fd_updt) |
Willy Tarreau | 49b046d | 2012-08-09 12:11:58 +0200 | [diff] [blame] | 485 | fd_stop_recv(listener->fd); |
Willy Tarreau | b648d63 | 2007-10-28 22:13:50 +0100 | [diff] [blame] | 486 | |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 487 | MT_LIST_DEL(&listener->wait_queue); |
Willy Tarreau | e6ca1fc | 2011-07-24 22:03:52 +0200 | [diff] [blame] | 488 | |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 489 | if (listener->state >= LI_PAUSED) { |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 490 | if (do_close) { |
| 491 | fd_delete(listener->fd); |
| 492 | listener->fd = -1; |
| 493 | } |
| 494 | else |
| 495 | fd_remove(listener->fd); |
Willy Tarreau | b648d63 | 2007-10-28 22:13:50 +0100 | [diff] [blame] | 496 | listener->state = LI_ASSIGNED; |
| 497 | } |
Willy Tarreau | bbd09b9 | 2017-11-05 11:38:44 +0100 | [diff] [blame] | 498 | } |
| 499 | |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 500 | /* This function closes the listening socket for the specified listener, |
| 501 | * provided that it's already in a listening state. The listener enters the |
Willy Tarreau | bbd09b9 | 2017-11-05 11:38:44 +0100 | [diff] [blame] | 502 | * LI_ASSIGNED state. This function is intended to be used as a generic |
| 503 | * function for standard protocols. |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 504 | */ |
Willy Tarreau | bbd09b9 | 2017-11-05 11:38:44 +0100 | [diff] [blame] | 505 | void unbind_listener(struct listener *listener) |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 506 | { |
Christopher Faulet | 510c0d6 | 2018-03-16 10:04:47 +0100 | [diff] [blame] | 507 | HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | bbd09b9 | 2017-11-05 11:38:44 +0100 | [diff] [blame] | 508 | do_unbind_listener(listener, 1); |
Christopher Faulet | 510c0d6 | 2018-03-16 10:04:47 +0100 | [diff] [blame] | 509 | HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock); |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 510 | } |
| 511 | |
| 512 | /* This function pretends the listener is dead, but keeps the FD opened, so |
| 513 | * that we can provide it, for conf reloading. |
| 514 | */ |
Willy Tarreau | bbd09b9 | 2017-11-05 11:38:44 +0100 | [diff] [blame] | 515 | void unbind_listener_no_close(struct listener *listener) |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 516 | { |
Christopher Faulet | 510c0d6 | 2018-03-16 10:04:47 +0100 | [diff] [blame] | 517 | HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | bbd09b9 | 2017-11-05 11:38:44 +0100 | [diff] [blame] | 518 | do_unbind_listener(listener, 0); |
Christopher Faulet | 510c0d6 | 2018-03-16 10:04:47 +0100 | [diff] [blame] | 519 | HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock); |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 520 | } |
| 521 | |
Willy Tarreau | 3acf8c3 | 2007-10-28 22:35:41 +0100 | [diff] [blame] | 522 | /* This function closes all listening sockets bound to the protocol <proto>, |
| 523 | * and the listeners end in LI_ASSIGNED state if they were higher. It does not |
| 524 | * detach them from the protocol. It always returns ERR_NONE. |
Willy Tarreau | daacf36 | 2019-07-24 16:45:02 +0200 | [diff] [blame] | 525 | * |
| 526 | * Must be called with proto_lock held. |
| 527 | * |
Willy Tarreau | 3acf8c3 | 2007-10-28 22:35:41 +0100 | [diff] [blame] | 528 | */ |
| 529 | int unbind_all_listeners(struct protocol *proto) |
| 530 | { |
| 531 | struct listener *listener; |
| 532 | |
| 533 | list_for_each_entry(listener, &proto->listeners, proto_list) |
| 534 | unbind_listener(listener); |
| 535 | return ERR_NONE; |
| 536 | } |
| 537 | |
Willy Tarreau | 0de59fd | 2017-09-15 08:10:44 +0200 | [diff] [blame] | 538 | /* creates one or multiple listeners for bind_conf <bc> on sockaddr <ss> on port |
| 539 | * range <portl> to <porth>, and possibly attached to fd <fd> (or -1 for auto |
| 540 | * allocation). The address family is taken from ss->ss_family. The number of |
| 541 | * jobs and listeners is automatically increased by the number of listeners |
William Lallemand | 75ea0a0 | 2017-11-15 19:02:58 +0100 | [diff] [blame] | 542 | * created. If the <inherited> argument is set to 1, it specifies that the FD |
| 543 | * was obtained from a parent process. |
| 544 | * It returns non-zero on success, zero on error with the error message |
Willy Tarreau | 0de59fd | 2017-09-15 08:10:44 +0200 | [diff] [blame] | 545 | * set in <err>. |
| 546 | */ |
| 547 | int create_listeners(struct bind_conf *bc, const struct sockaddr_storage *ss, |
William Lallemand | 75ea0a0 | 2017-11-15 19:02:58 +0100 | [diff] [blame] | 548 | int portl, int porth, int fd, int inherited, char **err) |
Willy Tarreau | 0de59fd | 2017-09-15 08:10:44 +0200 | [diff] [blame] | 549 | { |
| 550 | struct protocol *proto = protocol_by_family(ss->ss_family); |
| 551 | struct listener *l; |
| 552 | int port; |
| 553 | |
| 554 | if (!proto) { |
| 555 | memprintf(err, "unsupported protocol family %d", ss->ss_family); |
| 556 | return 0; |
| 557 | } |
| 558 | |
| 559 | for (port = portl; port <= porth; port++) { |
| 560 | l = calloc(1, sizeof(*l)); |
| 561 | if (!l) { |
| 562 | memprintf(err, "out of memory"); |
| 563 | return 0; |
| 564 | } |
| 565 | l->obj_type = OBJ_TYPE_LISTENER; |
| 566 | LIST_ADDQ(&bc->frontend->conf.listeners, &l->by_fe); |
| 567 | LIST_ADDQ(&bc->listeners, &l->by_bind); |
| 568 | l->bind_conf = bc; |
| 569 | |
| 570 | l->fd = fd; |
| 571 | memcpy(&l->addr, ss, sizeof(*ss)); |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 572 | MT_LIST_INIT(&l->wait_queue); |
Willy Tarreau | 0de59fd | 2017-09-15 08:10:44 +0200 | [diff] [blame] | 573 | l->state = LI_INIT; |
| 574 | |
| 575 | proto->add(l, port); |
| 576 | |
William Lallemand | 75ea0a0 | 2017-11-15 19:02:58 +0100 | [diff] [blame] | 577 | if (inherited) |
| 578 | l->options |= LI_O_INHERITED; |
| 579 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 580 | HA_SPIN_INIT(&l->lock); |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 581 | _HA_ATOMIC_ADD(&jobs, 1); |
| 582 | _HA_ATOMIC_ADD(&listeners, 1); |
Willy Tarreau | 0de59fd | 2017-09-15 08:10:44 +0200 | [diff] [blame] | 583 | } |
| 584 | return 1; |
| 585 | } |
| 586 | |
Willy Tarreau | 1a64d16 | 2007-10-28 22:26:05 +0100 | [diff] [blame] | 587 | /* Delete a listener from its protocol's list of listeners. The listener's |
| 588 | * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's |
Willy Tarreau | 2cc5bae | 2017-09-15 08:18:11 +0200 | [diff] [blame] | 589 | * number of listeners is updated, as well as the global number of listeners |
| 590 | * and jobs. Note that the listener must have previously been unbound. This |
| 591 | * is the generic function to use to remove a listener. |
Willy Tarreau | daacf36 | 2019-07-24 16:45:02 +0200 | [diff] [blame] | 592 | * |
| 593 | * Will grab the proto_lock. |
| 594 | * |
Willy Tarreau | 1a64d16 | 2007-10-28 22:26:05 +0100 | [diff] [blame] | 595 | */ |
| 596 | void delete_listener(struct listener *listener) |
| 597 | { |
Willy Tarreau | 6ee9f8d | 2019-08-26 10:55:52 +0200 | [diff] [blame] | 598 | HA_SPIN_LOCK(PROTO_LOCK, &proto_lock); |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 599 | HA_SPIN_LOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 600 | if (listener->state == LI_ASSIGNED) { |
| 601 | listener->state = LI_INIT; |
| 602 | LIST_DEL(&listener->proto_list); |
| 603 | listener->proto->nb_listeners--; |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 604 | _HA_ATOMIC_SUB(&jobs, 1); |
| 605 | _HA_ATOMIC_SUB(&listeners, 1); |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 606 | } |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 607 | HA_SPIN_UNLOCK(LISTENER_LOCK, &listener->lock); |
Willy Tarreau | 6ee9f8d | 2019-08-26 10:55:52 +0200 | [diff] [blame] | 608 | HA_SPIN_UNLOCK(PROTO_LOCK, &proto_lock); |
Willy Tarreau | 1a64d16 | 2007-10-28 22:26:05 +0100 | [diff] [blame] | 609 | } |
| 610 | |
Willy Tarreau | e2711c7 | 2019-02-27 15:39:41 +0100 | [diff] [blame] | 611 | /* Returns a suitable value for a listener's backlog. It uses the listener's, |
| 612 | * otherwise the frontend's backlog, otherwise the listener's maxconn, |
| 613 | * otherwise the frontend's maxconn, otherwise 1024. |
| 614 | */ |
| 615 | int listener_backlog(const struct listener *l) |
| 616 | { |
| 617 | if (l->backlog) |
| 618 | return l->backlog; |
| 619 | |
| 620 | if (l->bind_conf->frontend->backlog) |
| 621 | return l->bind_conf->frontend->backlog; |
| 622 | |
| 623 | if (l->maxconn) |
| 624 | return l->maxconn; |
| 625 | |
| 626 | if (l->bind_conf->frontend->maxconn) |
| 627 | return l->bind_conf->frontend->maxconn; |
| 628 | |
| 629 | return 1024; |
| 630 | } |
| 631 | |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 632 | /* This function is called on a read event from a listening socket, corresponding |
| 633 | * to an accept. It tries to accept as many connections as possible, and for each |
| 634 | * calls the listener's accept handler (generally the frontend's accept handler). |
| 635 | */ |
Willy Tarreau | afad0e0 | 2012-08-09 14:45:22 +0200 | [diff] [blame] | 636 | void listener_accept(int fd) |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 637 | { |
| 638 | struct listener *l = fdtab[fd].owner; |
Olivier Houchard | d16a9df | 2019-02-25 16:18:16 +0100 | [diff] [blame] | 639 | struct proxy *p; |
Christopher Faulet | 102854c | 2019-04-30 12:17:13 +0200 | [diff] [blame] | 640 | unsigned int max_accept; |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 641 | int next_conn = 0; |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 642 | int next_feconn = 0; |
| 643 | int next_actconn = 0; |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 644 | int expire; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 645 | int cfd; |
| 646 | int ret; |
Willy Tarreau | 818dca5 | 2014-01-31 19:40:19 +0100 | [diff] [blame] | 647 | #ifdef USE_ACCEPT4 |
| 648 | static int accept4_broken; |
| 649 | #endif |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 650 | |
Olivier Houchard | d16a9df | 2019-02-25 16:18:16 +0100 | [diff] [blame] | 651 | if (!l) |
| 652 | return; |
| 653 | p = l->bind_conf->frontend; |
Christopher Faulet | 102854c | 2019-04-30 12:17:13 +0200 | [diff] [blame] | 654 | |
| 655 | /* if l->maxaccept is -1, then max_accept is UINT_MAX. It is not really |
| 656 | * illimited, but it is probably enough. |
| 657 | */ |
Olivier Houchard | d16a9df | 2019-02-25 16:18:16 +0100 | [diff] [blame] | 658 | max_accept = l->maxaccept ? l->maxaccept : 1; |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 659 | |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 660 | if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) { |
| 661 | int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0); |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 662 | |
| 663 | if (unlikely(!max)) { |
| 664 | /* frontend accept rate limit was reached */ |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 665 | expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0)); |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 666 | goto wait_expire; |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 667 | } |
| 668 | |
| 669 | if (max_accept > max) |
| 670 | max_accept = max; |
| 671 | } |
| 672 | |
| 673 | if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) { |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 674 | int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0); |
| 675 | |
| 676 | if (unlikely(!max)) { |
| 677 | /* frontend accept rate limit was reached */ |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 678 | expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0)); |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 679 | goto wait_expire; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | if (max_accept > max) |
| 683 | max_accept = max; |
| 684 | } |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 685 | #ifdef USE_OPENSSL |
| 686 | if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) { |
| 687 | int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0); |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 688 | |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 689 | if (unlikely(!max)) { |
| 690 | /* frontend accept rate limit was reached */ |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 691 | expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0)); |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 692 | goto wait_expire; |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 693 | } |
| 694 | |
| 695 | if (max_accept > max) |
| 696 | max_accept = max; |
| 697 | } |
| 698 | #endif |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 699 | if (p && p->fe_sps_lim) { |
| 700 | int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0); |
| 701 | |
| 702 | if (unlikely(!max)) { |
| 703 | /* frontend accept rate limit was reached */ |
| 704 | limit_listener(l, &p->listener_queue); |
| 705 | task_schedule(p->task, tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 706 | goto end; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 707 | } |
| 708 | |
| 709 | if (max_accept > max) |
| 710 | max_accept = max; |
| 711 | } |
| 712 | |
| 713 | /* Note: if we fail to allocate a connection because of configured |
| 714 | * limits, we'll schedule a new attempt worst 1 second later in the |
| 715 | * worst case. If we fail due to system limits or temporary resource |
| 716 | * shortage, we try again 100ms later in the worst case. |
| 717 | */ |
Christopher Faulet | 102854c | 2019-04-30 12:17:13 +0200 | [diff] [blame] | 718 | for (; max_accept; next_conn = next_feconn = next_actconn = 0, max_accept--) { |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 719 | struct sockaddr_storage addr; |
| 720 | socklen_t laddr = sizeof(addr); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 721 | unsigned int count; |
Willy Tarreau | 57cb506 | 2019-03-15 17:16:34 +0100 | [diff] [blame] | 722 | __decl_hathreads(unsigned long mask); |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 723 | |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 724 | /* pre-increase the number of connections without going too far. |
| 725 | * We process the listener, then the proxy, then the process. |
| 726 | * We know which ones to unroll based on the next_xxx value. |
| 727 | */ |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 728 | do { |
| 729 | count = l->nbconn; |
Willy Tarreau | a8cf66b | 2019-02-27 16:49:00 +0100 | [diff] [blame] | 730 | if (l->maxconn && count >= l->maxconn) { |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 731 | /* the listener was marked full or another |
| 732 | * thread is going to do it. |
| 733 | */ |
| 734 | next_conn = 0; |
| 735 | goto end; |
| 736 | } |
| 737 | next_conn = count + 1; |
David Carlier | 5671662 | 2019-03-27 16:08:42 +0000 | [diff] [blame] | 738 | } while (!_HA_ATOMIC_CAS(&l->nbconn, (int *)(&count), next_conn)); |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 739 | |
Willy Tarreau | a8cf66b | 2019-02-27 16:49:00 +0100 | [diff] [blame] | 740 | if (l->maxconn && next_conn == l->maxconn) { |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 741 | /* we filled it, mark it full */ |
| 742 | listener_full(l); |
| 743 | } |
| 744 | |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 745 | if (p) { |
| 746 | do { |
| 747 | count = p->feconn; |
| 748 | if (count >= p->maxconn) { |
| 749 | /* the frontend was marked full or another |
| 750 | * thread is going to do it. |
| 751 | */ |
| 752 | next_feconn = 0; |
| 753 | goto end; |
| 754 | } |
| 755 | next_feconn = count + 1; |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 756 | } while (!_HA_ATOMIC_CAS(&p->feconn, &count, next_feconn)); |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 757 | |
| 758 | if (unlikely(next_feconn == p->maxconn)) { |
| 759 | /* we just filled it */ |
| 760 | limit_listener(l, &p->listener_queue); |
| 761 | } |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 762 | } |
| 763 | |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 764 | if (!(l->options & LI_O_UNLIMITED)) { |
| 765 | do { |
| 766 | count = actconn; |
| 767 | if (count >= global.maxconn) { |
| 768 | /* the process was marked full or another |
| 769 | * thread is going to do it. |
| 770 | */ |
| 771 | next_actconn = 0; |
| 772 | goto end; |
| 773 | } |
| 774 | next_actconn = count + 1; |
David Carlier | 5671662 | 2019-03-27 16:08:42 +0000 | [diff] [blame] | 775 | } while (!_HA_ATOMIC_CAS(&actconn, (int *)(&count), next_actconn)); |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 776 | |
| 777 | if (unlikely(next_actconn == global.maxconn)) { |
| 778 | limit_listener(l, &global_listener_queue); |
| 779 | task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */ |
| 780 | } |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 781 | } |
| 782 | |
William Lallemand | 2fe7dd0 | 2018-09-11 16:51:29 +0200 | [diff] [blame] | 783 | /* with sockpair@ we don't want to do an accept */ |
| 784 | if (unlikely(l->addr.ss_family == AF_CUST_SOCKPAIR)) { |
| 785 | if ((cfd = recv_fd_uxst(fd)) != -1) |
William Lallemand | d913800 | 2018-11-27 12:02:39 +0100 | [diff] [blame] | 786 | fcntl(cfd, F_SETFL, O_NONBLOCK); |
Willy Tarreau | 888d567 | 2019-01-27 18:34:12 +0100 | [diff] [blame] | 787 | /* just like with UNIX sockets, only the family is filled */ |
| 788 | addr.ss_family = AF_UNIX; |
| 789 | laddr = sizeof(addr.ss_family); |
William Lallemand | 2fe7dd0 | 2018-09-11 16:51:29 +0200 | [diff] [blame] | 790 | } else |
| 791 | |
Willy Tarreau | 1bc4aab | 2012-10-08 20:11:03 +0200 | [diff] [blame] | 792 | #ifdef USE_ACCEPT4 |
Willy Tarreau | 818dca5 | 2014-01-31 19:40:19 +0100 | [diff] [blame] | 793 | /* only call accept4() if it's known to be safe, otherwise |
| 794 | * fallback to the legacy accept() + fcntl(). |
| 795 | */ |
| 796 | if (unlikely(accept4_broken || |
William Lallemand | d913800 | 2018-11-27 12:02:39 +0100 | [diff] [blame] | 797 | ((cfd = accept4(fd, (struct sockaddr *)&addr, &laddr, SOCK_NONBLOCK)) == -1 && |
Willy Tarreau | 818dca5 | 2014-01-31 19:40:19 +0100 | [diff] [blame] | 798 | (errno == ENOSYS || errno == EINVAL || errno == EBADF) && |
| 799 | (accept4_broken = 1)))) |
| 800 | #endif |
Willy Tarreau | 6b3b0d4 | 2012-10-22 19:32:55 +0200 | [diff] [blame] | 801 | if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) != -1) |
William Lallemand | d913800 | 2018-11-27 12:02:39 +0100 | [diff] [blame] | 802 | fcntl(cfd, F_SETFL, O_NONBLOCK); |
Willy Tarreau | 818dca5 | 2014-01-31 19:40:19 +0100 | [diff] [blame] | 803 | |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 804 | if (unlikely(cfd == -1)) { |
| 805 | switch (errno) { |
| 806 | case EAGAIN: |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 807 | if (fdtab[fd].ev & FD_POLL_HUP) { |
| 808 | /* the listening socket might have been disabled in a shared |
| 809 | * process and we're a collateral victim. We'll just pause for |
| 810 | * a while in case it comes back. In the mean time, we need to |
| 811 | * clear this sticky flag. |
| 812 | */ |
| 813 | fdtab[fd].ev &= ~FD_POLL_HUP; |
| 814 | goto transient_error; |
| 815 | } |
Willy Tarreau | f817e9f | 2014-01-10 16:58:45 +0100 | [diff] [blame] | 816 | fd_cant_recv(fd); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 817 | goto end; /* nothing more to accept */ |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 818 | case EINVAL: |
| 819 | /* might be trying to accept on a shut fd (eg: soft stop) */ |
| 820 | goto transient_error; |
Willy Tarreau | a593ec5 | 2014-01-20 21:21:30 +0100 | [diff] [blame] | 821 | case EINTR: |
| 822 | case ECONNABORTED: |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 823 | _HA_ATOMIC_SUB(&l->nbconn, 1); |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 824 | if (p) |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 825 | _HA_ATOMIC_SUB(&p->feconn, 1); |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 826 | if (!(l->options & LI_O_UNLIMITED)) |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 827 | _HA_ATOMIC_SUB(&actconn, 1); |
Willy Tarreau | a593ec5 | 2014-01-20 21:21:30 +0100 | [diff] [blame] | 828 | continue; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 829 | case ENFILE: |
| 830 | if (p) |
| 831 | send_log(p, LOG_EMERG, |
Willy Tarreau | c5532ac | 2018-01-29 15:06:04 +0100 | [diff] [blame] | 832 | "Proxy %s reached system FD limit (maxsock=%d). Please check system tunables.\n", |
| 833 | p->id, global.maxsock); |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 834 | goto transient_error; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 835 | case EMFILE: |
| 836 | if (p) |
| 837 | send_log(p, LOG_EMERG, |
Willy Tarreau | c5532ac | 2018-01-29 15:06:04 +0100 | [diff] [blame] | 838 | "Proxy %s reached process FD limit (maxsock=%d). Please check 'ulimit-n' and restart.\n", |
| 839 | p->id, global.maxsock); |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 840 | goto transient_error; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 841 | case ENOBUFS: |
| 842 | case ENOMEM: |
| 843 | if (p) |
| 844 | send_log(p, LOG_EMERG, |
Willy Tarreau | c5532ac | 2018-01-29 15:06:04 +0100 | [diff] [blame] | 845 | "Proxy %s reached system memory limit (maxsock=%d). Please check system tunables.\n", |
| 846 | p->id, global.maxsock); |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 847 | goto transient_error; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 848 | default: |
Willy Tarreau | a593ec5 | 2014-01-20 21:21:30 +0100 | [diff] [blame] | 849 | /* unexpected result, let's give up and let other tasks run */ |
Willy Tarreau | 6c11bd2 | 2014-01-24 00:54:27 +0100 | [diff] [blame] | 850 | goto stop; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 851 | } |
| 852 | } |
| 853 | |
William Lallemand | d913800 | 2018-11-27 12:02:39 +0100 | [diff] [blame] | 854 | /* we don't want to leak the FD upon reload if it's in the master */ |
| 855 | if (unlikely(master == 1)) |
| 856 | fcntl(cfd, F_SETFD, FD_CLOEXEC); |
| 857 | |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 858 | /* The connection was accepted, it must be counted as such */ |
| 859 | if (l->counters) |
| 860 | HA_ATOMIC_UPDATE_MAX(&l->counters->conn_max, next_conn); |
| 861 | |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 862 | if (p) |
| 863 | HA_ATOMIC_UPDATE_MAX(&p->fe_counters.conn_max, next_feconn); |
| 864 | |
| 865 | proxy_inc_fe_conn_ctr(l, p); |
| 866 | |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 867 | if (!(l->options & LI_O_UNLIMITED)) { |
| 868 | count = update_freq_ctr(&global.conn_per_sec, 1); |
| 869 | HA_ATOMIC_UPDATE_MAX(&global.cps_max, count); |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 870 | } |
| 871 | |
Willy Tarreau | 64a9c05 | 2019-04-12 15:27:17 +0200 | [diff] [blame] | 872 | _HA_ATOMIC_ADD(&activity[tid].accepted, 1); |
| 873 | |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 874 | if (unlikely(cfd >= global.maxsock)) { |
| 875 | send_log(p, LOG_EMERG, |
| 876 | "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n", |
| 877 | p->id); |
| 878 | close(cfd); |
| 879 | limit_listener(l, &global_listener_queue); |
| 880 | task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */ |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 881 | goto end; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 882 | } |
| 883 | |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 884 | /* past this point, l->accept() will automatically decrement |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 885 | * l->nbconn, feconn and actconn once done. Setting next_*conn=0 |
| 886 | * allows the error path not to rollback on nbconn. It's more |
| 887 | * convenient than duplicating all exit labels. |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 888 | */ |
| 889 | next_conn = 0; |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 890 | next_feconn = 0; |
| 891 | next_actconn = 0; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 892 | |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 893 | #if defined(USE_THREAD) |
Willy Tarreau | 897e2c5 | 2019-03-13 15:03:53 +0100 | [diff] [blame] | 894 | mask = thread_mask(l->bind_conf->bind_thread) & all_threads_mask; |
Willy Tarreau | 0fe703b | 2019-03-05 08:46:28 +0100 | [diff] [blame] | 895 | if (atleast2(mask) && (global.tune.options & GTUNE_LISTENER_MQ)) { |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 896 | struct accept_queue_ring *ring; |
Willy Tarreau | 0fe703b | 2019-03-05 08:46:28 +0100 | [diff] [blame] | 897 | unsigned int t, t0, t1, t2; |
Willy Tarreau | fc630bd | 2019-03-04 19:57:34 +0100 | [diff] [blame] | 898 | |
Willy Tarreau | 0fe703b | 2019-03-05 08:46:28 +0100 | [diff] [blame] | 899 | /* The principle is that we have two running indexes, |
| 900 | * each visiting in turn all threads bound to this |
| 901 | * listener. The connection will be assigned to the one |
| 902 | * with the least connections, and the other one will |
| 903 | * be updated. This provides a good fairness on short |
Willy Tarreau | fc630bd | 2019-03-04 19:57:34 +0100 | [diff] [blame] | 904 | * connections (round robin) and on long ones (conn |
Willy Tarreau | 0fe703b | 2019-03-05 08:46:28 +0100 | [diff] [blame] | 905 | * count), without ever missing any idle thread. |
Willy Tarreau | fc630bd | 2019-03-04 19:57:34 +0100 | [diff] [blame] | 906 | */ |
Willy Tarreau | 0fe703b | 2019-03-05 08:46:28 +0100 | [diff] [blame] | 907 | |
| 908 | /* keep a copy for the final update. thr_idx is composite |
| 909 | * and made of (t2<<16) + t1. |
| 910 | */ |
Willy Tarreau | 0cf3317 | 2019-03-06 15:26:33 +0100 | [diff] [blame] | 911 | t0 = l->thr_idx; |
Willy Tarreau | fc630bd | 2019-03-04 19:57:34 +0100 | [diff] [blame] | 912 | do { |
Willy Tarreau | 0fe703b | 2019-03-05 08:46:28 +0100 | [diff] [blame] | 913 | unsigned long m1, m2; |
| 914 | int q1, q2; |
| 915 | |
| 916 | t2 = t1 = t0; |
| 917 | t2 >>= 16; |
| 918 | t1 &= 0xFFFF; |
| 919 | |
| 920 | /* t1 walks low to high bits ; |
| 921 | * t2 walks high to low. |
| 922 | */ |
| 923 | m1 = mask >> t1; |
| 924 | m2 = mask & (t2 ? nbits(t2 + 1) : ~0UL); |
| 925 | |
Willy Tarreau | 85d0424 | 2019-04-16 18:09:13 +0200 | [diff] [blame] | 926 | if (unlikely(!(m1 & 1))) { |
Willy Tarreau | 0fe703b | 2019-03-05 08:46:28 +0100 | [diff] [blame] | 927 | m1 &= ~1UL; |
| 928 | if (!m1) { |
| 929 | m1 = mask; |
| 930 | t1 = 0; |
| 931 | } |
| 932 | t1 += my_ffsl(m1) - 1; |
| 933 | } |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 934 | |
Willy Tarreau | 85d0424 | 2019-04-16 18:09:13 +0200 | [diff] [blame] | 935 | if (unlikely(!(m2 & (1UL << t2)) || t1 == t2)) { |
| 936 | /* highest bit not set */ |
| 937 | if (!m2) |
| 938 | m2 = mask; |
| 939 | |
| 940 | t2 = my_flsl(m2) - 1; |
| 941 | } |
| 942 | |
Willy Tarreau | 0fe703b | 2019-03-05 08:46:28 +0100 | [diff] [blame] | 943 | /* now we have two distinct thread IDs belonging to the mask */ |
| 944 | q1 = accept_queue_rings[t1].tail - accept_queue_rings[t1].head + ACCEPT_QUEUE_SIZE; |
| 945 | if (q1 >= ACCEPT_QUEUE_SIZE) |
| 946 | q1 -= ACCEPT_QUEUE_SIZE; |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 947 | |
Willy Tarreau | 0fe703b | 2019-03-05 08:46:28 +0100 | [diff] [blame] | 948 | q2 = accept_queue_rings[t2].tail - accept_queue_rings[t2].head + ACCEPT_QUEUE_SIZE; |
| 949 | if (q2 >= ACCEPT_QUEUE_SIZE) |
| 950 | q2 -= ACCEPT_QUEUE_SIZE; |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 951 | |
Willy Tarreau | 0fe703b | 2019-03-05 08:46:28 +0100 | [diff] [blame] | 952 | /* we have 3 possibilities now : |
| 953 | * q1 < q2 : t1 is less loaded than t2, so we pick it |
| 954 | * and update t2 (since t1 might still be |
| 955 | * lower than another thread) |
| 956 | * q1 > q2 : t2 is less loaded than t1, so we pick it |
| 957 | * and update t1 (since t2 might still be |
| 958 | * lower than another thread) |
| 959 | * q1 = q2 : both are equally loaded, thus we pick t1 |
| 960 | * and update t1 as it will become more loaded |
| 961 | * than t2. |
| 962 | */ |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 963 | |
Willy Tarreau | 0fe703b | 2019-03-05 08:46:28 +0100 | [diff] [blame] | 964 | q1 += l->thr_conn[t1]; |
| 965 | q2 += l->thr_conn[t2]; |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 966 | |
Willy Tarreau | 0fe703b | 2019-03-05 08:46:28 +0100 | [diff] [blame] | 967 | if (q1 - q2 < 0) { |
| 968 | t = t1; |
| 969 | t2 = t2 ? t2 - 1 : LONGBITS - 1; |
| 970 | } |
| 971 | else if (q1 - q2 > 0) { |
| 972 | t = t2; |
| 973 | t1++; |
| 974 | if (t1 >= LONGBITS) |
| 975 | t1 = 0; |
| 976 | } |
| 977 | else { |
| 978 | t = t1; |
| 979 | t1++; |
| 980 | if (t1 >= LONGBITS) |
| 981 | t1 = 0; |
| 982 | } |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 983 | |
Willy Tarreau | 0fe703b | 2019-03-05 08:46:28 +0100 | [diff] [blame] | 984 | /* new value for thr_idx */ |
| 985 | t1 += (t2 << 16); |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 986 | } while (unlikely(!_HA_ATOMIC_CAS(&l->thr_idx, &t0, t1))); |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 987 | |
Willy Tarreau | 0fe703b | 2019-03-05 08:46:28 +0100 | [diff] [blame] | 988 | /* We successfully selected the best thread "t" for this |
| 989 | * connection. We use deferred accepts even if it's the |
| 990 | * local thread because tests show that it's the best |
| 991 | * performing model, likely due to better cache locality |
| 992 | * when processing this loop. |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 993 | */ |
Willy Tarreau | 0fe703b | 2019-03-05 08:46:28 +0100 | [diff] [blame] | 994 | ring = &accept_queue_rings[t]; |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 995 | if (accept_queue_push_mp(ring, cfd, l, &addr, laddr)) { |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 996 | _HA_ATOMIC_ADD(&activity[t].accq_pushed, 1); |
Willy Tarreau | 2bd65a7 | 2019-09-24 06:55:18 +0200 | [diff] [blame] | 997 | tasklet_wakeup(ring->tasklet); |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 998 | continue; |
| 999 | } |
| 1000 | /* If the ring is full we do a synchronous accept on |
| 1001 | * the local thread here. |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 1002 | */ |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 1003 | _HA_ATOMIC_ADD(&activity[t].accq_full, 1); |
Willy Tarreau | e0e9c48 | 2019-01-27 15:37:19 +0100 | [diff] [blame] | 1004 | } |
| 1005 | #endif // USE_THREAD |
| 1006 | |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 1007 | _HA_ATOMIC_ADD(&l->thr_conn[tid], 1); |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 1008 | ret = l->accept(l, cfd, &addr); |
| 1009 | if (unlikely(ret <= 0)) { |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1010 | /* The connection was closed by stream_accept(). Either |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 1011 | * we just have to ignore it (ret == 0) or it's a critical |
| 1012 | * error due to a resource shortage, and we must stop the |
| 1013 | * listener (ret < 0). |
| 1014 | */ |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 1015 | if (ret == 0) /* successful termination */ |
| 1016 | continue; |
| 1017 | |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 1018 | goto transient_error; |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 1019 | } |
| 1020 | |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 1021 | /* increase the per-process number of cumulated sessions, this |
| 1022 | * may only be done once l->accept() has accepted the connection. |
| 1023 | */ |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 1024 | if (!(l->options & LI_O_UNLIMITED)) { |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 1025 | count = update_freq_ctr(&global.sess_per_sec, 1); |
| 1026 | HA_ATOMIC_UPDATE_MAX(&global.sps_max, count); |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 1027 | } |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 1028 | #ifdef USE_OPENSSL |
| 1029 | if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) { |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 1030 | count = update_freq_ctr(&global.ssl_per_sec, 1); |
| 1031 | HA_ATOMIC_UPDATE_MAX(&global.ssl_max, count); |
Willy Tarreau | e43d532 | 2013-10-07 20:01:52 +0200 | [diff] [blame] | 1032 | } |
| 1033 | #endif |
Willy Tarreau | 93e7c00 | 2013-10-07 18:51:07 +0200 | [diff] [blame] | 1034 | |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 1035 | } /* end of for (max_accept--) */ |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 1036 | |
Willy Tarreau | aece46a | 2012-07-06 12:25:58 +0200 | [diff] [blame] | 1037 | /* we've exhausted max_accept, so there is no need to poll again */ |
Willy Tarreau | 6c11bd2 | 2014-01-24 00:54:27 +0100 | [diff] [blame] | 1038 | stop: |
| 1039 | fd_done_recv(fd); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 1040 | goto end; |
Willy Tarreau | bb66030 | 2014-05-07 19:47:02 +0200 | [diff] [blame] | 1041 | |
| 1042 | transient_error: |
| 1043 | /* pause the listener and try again in 100 ms */ |
| 1044 | expire = tick_add(now_ms, 100); |
| 1045 | |
| 1046 | wait_expire: |
| 1047 | limit_listener(l, &global_listener_queue); |
| 1048 | task_schedule(global_listener_queue_task, tick_first(expire, global_listener_queue_task->expire)); |
Christopher Faulet | 8d8aa0d | 2017-05-30 15:36:50 +0200 | [diff] [blame] | 1049 | end: |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 1050 | if (next_conn) |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 1051 | _HA_ATOMIC_SUB(&l->nbconn, 1); |
Willy Tarreau | 741b4d6 | 2019-02-25 15:02:04 +0100 | [diff] [blame] | 1052 | |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 1053 | if (p && next_feconn) |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 1054 | _HA_ATOMIC_SUB(&p->feconn, 1); |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 1055 | |
| 1056 | if (next_actconn) |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 1057 | _HA_ATOMIC_SUB(&actconn, 1); |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 1058 | |
Willy Tarreau | a8cf66b | 2019-02-27 16:49:00 +0100 | [diff] [blame] | 1059 | if ((l->state == LI_FULL && (!l->maxconn || l->nbconn < l->maxconn)) || |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 1060 | (l->state == LI_LIMITED && ((!p || p->feconn < p->maxconn) && (actconn < global.maxconn)))) { |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 1061 | /* at least one thread has to this when quitting */ |
| 1062 | resume_listener(l); |
| 1063 | |
| 1064 | /* Dequeues all of the listeners waiting for a resource */ |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 1065 | if (!MT_LIST_ISEMPTY(&global_listener_queue)) |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 1066 | dequeue_all_listeners(&global_listener_queue); |
| 1067 | |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 1068 | if (p && !MT_LIST_ISEMPTY(&p->listener_queue) && |
Willy Tarreau | 3f0d02b | 2019-02-25 19:23:37 +0100 | [diff] [blame] | 1069 | (!p->fe_sps_lim || freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0) > 0)) |
| 1070 | dequeue_all_listeners(&p->listener_queue); |
| 1071 | } |
Willy Tarreau | bbebbbf | 2012-05-07 21:22:09 +0200 | [diff] [blame] | 1072 | } |
| 1073 | |
Willy Tarreau | 05f5047 | 2017-09-15 09:19:58 +0200 | [diff] [blame] | 1074 | /* Notify the listener that a connection initiated from it was released. This |
| 1075 | * is used to keep the connection count consistent and to possibly re-open |
| 1076 | * listening when it was limited. |
| 1077 | */ |
| 1078 | void listener_release(struct listener *l) |
| 1079 | { |
| 1080 | struct proxy *fe = l->bind_conf->frontend; |
| 1081 | |
| 1082 | if (!(l->options & LI_O_UNLIMITED)) |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 1083 | _HA_ATOMIC_SUB(&actconn, 1); |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 1084 | if (fe) |
Olivier Houchard | 64213e9 | 2019-03-08 18:52:57 +0100 | [diff] [blame] | 1085 | _HA_ATOMIC_SUB(&fe->feconn, 1); |
| 1086 | _HA_ATOMIC_SUB(&l->nbconn, 1); |
| 1087 | _HA_ATOMIC_SUB(&l->thr_conn[tid], 1); |
Willy Tarreau | 82c9789 | 2019-02-27 19:32:32 +0100 | [diff] [blame] | 1088 | |
| 1089 | if (l->state == LI_FULL || l->state == LI_LIMITED) |
Willy Tarreau | 05f5047 | 2017-09-15 09:19:58 +0200 | [diff] [blame] | 1090 | resume_listener(l); |
| 1091 | |
| 1092 | /* Dequeues all of the listeners waiting for a resource */ |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 1093 | if (!MT_LIST_ISEMPTY(&global_listener_queue)) |
Willy Tarreau | 05f5047 | 2017-09-15 09:19:58 +0200 | [diff] [blame] | 1094 | dequeue_all_listeners(&global_listener_queue); |
| 1095 | |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 1096 | if (!MT_LIST_ISEMPTY(&fe->listener_queue) && |
Willy Tarreau | 05f5047 | 2017-09-15 09:19:58 +0200 | [diff] [blame] | 1097 | (!fe->fe_sps_lim || freq_ctr_remain(&fe->fe_sess_per_sec, fe->fe_sps_lim, 0) > 0)) |
| 1098 | dequeue_all_listeners(&fe->listener_queue); |
| 1099 | } |
| 1100 | |
Willy Tarreau | f2cb169 | 2019-07-11 10:08:31 +0200 | [diff] [blame] | 1101 | /* resume listeners waiting in the local listener queue. They are still in LI_LIMITED state */ |
| 1102 | static struct task *listener_queue_process(struct task *t, void *context, unsigned short state) |
| 1103 | { |
| 1104 | struct work_list *wl = context; |
| 1105 | struct listener *l; |
| 1106 | |
Olivier Houchard | 859dc80 | 2019-08-08 15:47:21 +0200 | [diff] [blame] | 1107 | while ((l = MT_LIST_POP(&wl->head, struct listener *, wait_queue))) { |
Willy Tarreau | f2cb169 | 2019-07-11 10:08:31 +0200 | [diff] [blame] | 1108 | /* The listeners are still in the LI_LIMITED state */ |
| 1109 | resume_listener(l); |
| 1110 | } |
| 1111 | return t; |
| 1112 | } |
| 1113 | |
| 1114 | /* Initializes the listener queues. Returns 0 on success, otherwise ERR_* flags */ |
| 1115 | static int listener_queue_init() |
| 1116 | { |
| 1117 | local_listener_queue = work_list_create(global.nbthread, listener_queue_process, NULL); |
| 1118 | if (!local_listener_queue) { |
| 1119 | ha_alert("Out of memory while initializing listener queues.\n"); |
| 1120 | return ERR_FATAL|ERR_ABORT; |
| 1121 | } |
| 1122 | return 0; |
| 1123 | } |
| 1124 | |
| 1125 | static void listener_queue_deinit() |
| 1126 | { |
| 1127 | work_list_destroy(local_listener_queue, global.nbthread); |
| 1128 | } |
| 1129 | |
| 1130 | REGISTER_CONFIG_POSTPARSER("multi-threaded listener queue", listener_queue_init); |
| 1131 | REGISTER_POST_DEINIT(listener_queue_deinit); |
| 1132 | |
Willy Tarreau | 2698266 | 2012-09-12 23:17:10 +0200 | [diff] [blame] | 1133 | /* |
| 1134 | * Registers the bind keyword list <kwl> as a list of valid keywords for next |
| 1135 | * parsing sessions. |
| 1136 | */ |
| 1137 | void bind_register_keywords(struct bind_kw_list *kwl) |
| 1138 | { |
| 1139 | LIST_ADDQ(&bind_keywords.list, &kwl->list); |
| 1140 | } |
| 1141 | |
| 1142 | /* Return a pointer to the bind keyword <kw>, or NULL if not found. If the |
| 1143 | * keyword is found with a NULL ->parse() function, then an attempt is made to |
| 1144 | * find one with a valid ->parse() function. This way it is possible to declare |
| 1145 | * platform-dependant, known keywords as NULL, then only declare them as valid |
| 1146 | * if some options are met. Note that if the requested keyword contains an |
| 1147 | * opening parenthesis, everything from this point is ignored. |
| 1148 | */ |
| 1149 | struct bind_kw *bind_find_kw(const char *kw) |
| 1150 | { |
| 1151 | int index; |
| 1152 | const char *kwend; |
| 1153 | struct bind_kw_list *kwl; |
| 1154 | struct bind_kw *ret = NULL; |
| 1155 | |
| 1156 | kwend = strchr(kw, '('); |
| 1157 | if (!kwend) |
| 1158 | kwend = kw + strlen(kw); |
| 1159 | |
| 1160 | list_for_each_entry(kwl, &bind_keywords.list, list) { |
| 1161 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 1162 | if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) && |
| 1163 | kwl->kw[index].kw[kwend-kw] == 0) { |
| 1164 | if (kwl->kw[index].parse) |
| 1165 | return &kwl->kw[index]; /* found it !*/ |
| 1166 | else |
| 1167 | ret = &kwl->kw[index]; /* may be OK */ |
| 1168 | } |
| 1169 | } |
| 1170 | } |
| 1171 | return ret; |
| 1172 | } |
| 1173 | |
Willy Tarreau | 8638f48 | 2012-09-18 18:01:17 +0200 | [diff] [blame] | 1174 | /* Dumps all registered "bind" keywords to the <out> string pointer. The |
| 1175 | * unsupported keywords are only dumped if their supported form was not |
| 1176 | * found. |
| 1177 | */ |
| 1178 | void bind_dump_kws(char **out) |
| 1179 | { |
| 1180 | struct bind_kw_list *kwl; |
| 1181 | int index; |
| 1182 | |
| 1183 | *out = NULL; |
| 1184 | list_for_each_entry(kwl, &bind_keywords.list, list) { |
| 1185 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 1186 | if (kwl->kw[index].parse || |
| 1187 | bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) { |
Willy Tarreau | 51fb765 | 2012-09-18 18:24:39 +0200 | [diff] [blame] | 1188 | memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "", |
| 1189 | kwl->scope, |
Willy Tarreau | 8638f48 | 2012-09-18 18:01:17 +0200 | [diff] [blame] | 1190 | kwl->kw[index].kw, |
Willy Tarreau | 51fb765 | 2012-09-18 18:24:39 +0200 | [diff] [blame] | 1191 | kwl->kw[index].skip ? " <arg>" : "", |
| 1192 | kwl->kw[index].parse ? "" : " (not supported)"); |
Willy Tarreau | 8638f48 | 2012-09-18 18:01:17 +0200 | [diff] [blame] | 1193 | } |
| 1194 | } |
| 1195 | } |
| 1196 | } |
| 1197 | |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1198 | /************************************************************************/ |
Willy Tarreau | 0ccb744 | 2013-01-07 22:54:17 +0100 | [diff] [blame] | 1199 | /* All supported sample and ACL keywords must be declared here. */ |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1200 | /************************************************************************/ |
| 1201 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 1202 | /* set temp integer to the number of connexions to the same listening socket */ |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1203 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 1204 | smp_fetch_dconn(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1205 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1206 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1207 | smp->data.u.sint = smp->sess->listener->nbconn; |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1208 | return 1; |
| 1209 | } |
| 1210 | |
Willy Tarreau | a5e3756 | 2011-12-16 17:06:15 +0100 | [diff] [blame] | 1211 | /* set temp integer to the id of the socket (listener) */ |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1212 | static int |
Thierry FOURNIER | 0786d05 | 2015-05-11 15:42:45 +0200 | [diff] [blame] | 1213 | smp_fetch_so_id(const struct arg *args, struct sample *smp, const char *kw, void *private) |
Willy Tarreau | 3740635 | 2012-04-23 16:16:37 +0200 | [diff] [blame] | 1214 | { |
Thierry FOURNIER | 8c542ca | 2015-08-19 09:00:18 +0200 | [diff] [blame] | 1215 | smp->data.type = SMP_T_SINT; |
Thierry FOURNIER | 136f9d3 | 2015-08-19 09:07:19 +0200 | [diff] [blame] | 1216 | smp->data.u.sint = smp->sess->listener->luid; |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1217 | return 1; |
| 1218 | } |
| 1219 | |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1220 | /* parse the "accept-proxy" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1221 | static int bind_parse_accept_proxy(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1222 | { |
| 1223 | struct listener *l; |
| 1224 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1225 | list_for_each_entry(l, &conf->listeners, by_bind) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1226 | l->options |= LI_O_ACC_PROXY; |
| 1227 | |
| 1228 | return 0; |
| 1229 | } |
| 1230 | |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1231 | /* parse the "accept-netscaler-cip" bind keyword */ |
| 1232 | static int bind_parse_accept_netscaler_cip(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1233 | { |
| 1234 | struct listener *l; |
| 1235 | uint32_t val; |
| 1236 | |
| 1237 | if (!*args[cur_arg + 1]) { |
| 1238 | memprintf(err, "'%s' : missing value", args[cur_arg]); |
| 1239 | return ERR_ALERT | ERR_FATAL; |
| 1240 | } |
| 1241 | |
| 1242 | val = atol(args[cur_arg + 1]); |
| 1243 | if (val <= 0) { |
Willy Tarreau | e2711c7 | 2019-02-27 15:39:41 +0100 | [diff] [blame] | 1244 | memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val); |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1245 | return ERR_ALERT | ERR_FATAL; |
| 1246 | } |
| 1247 | |
| 1248 | list_for_each_entry(l, &conf->listeners, by_bind) { |
| 1249 | l->options |= LI_O_ACC_CIP; |
| 1250 | conf->ns_cip_magic = val; |
| 1251 | } |
| 1252 | |
| 1253 | return 0; |
| 1254 | } |
| 1255 | |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1256 | /* parse the "backlog" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1257 | static int bind_parse_backlog(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1258 | { |
| 1259 | struct listener *l; |
| 1260 | int val; |
| 1261 | |
| 1262 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1263 | memprintf(err, "'%s' : missing value", args[cur_arg]); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1264 | return ERR_ALERT | ERR_FATAL; |
| 1265 | } |
| 1266 | |
| 1267 | val = atol(args[cur_arg + 1]); |
Willy Tarreau | e2711c7 | 2019-02-27 15:39:41 +0100 | [diff] [blame] | 1268 | if (val < 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1269 | memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1270 | return ERR_ALERT | ERR_FATAL; |
| 1271 | } |
| 1272 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1273 | list_for_each_entry(l, &conf->listeners, by_bind) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1274 | l->backlog = val; |
| 1275 | |
| 1276 | return 0; |
| 1277 | } |
| 1278 | |
| 1279 | /* parse the "id" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1280 | static int bind_parse_id(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1281 | { |
| 1282 | struct eb32_node *node; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1283 | struct listener *l, *new; |
Thierry Fournier | e7fe8eb | 2016-02-26 08:45:58 +0100 | [diff] [blame] | 1284 | char *error; |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1285 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1286 | if (conf->listeners.n != conf->listeners.p) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1287 | memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1288 | return ERR_ALERT | ERR_FATAL; |
| 1289 | } |
| 1290 | |
| 1291 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1292 | memprintf(err, "'%s' : expects an integer argument", args[cur_arg]); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1293 | return ERR_ALERT | ERR_FATAL; |
| 1294 | } |
| 1295 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1296 | new = LIST_NEXT(&conf->listeners, struct listener *, by_bind); |
Thierry Fournier | e7fe8eb | 2016-02-26 08:45:58 +0100 | [diff] [blame] | 1297 | new->luid = strtol(args[cur_arg + 1], &error, 10); |
| 1298 | if (*error != '\0') { |
| 1299 | memprintf(err, "'%s' : expects an integer argument, found '%s'", args[cur_arg], args[cur_arg + 1]); |
| 1300 | return ERR_ALERT | ERR_FATAL; |
| 1301 | } |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1302 | new->conf.id.key = new->luid; |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1303 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1304 | if (new->luid <= 0) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1305 | memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1306 | return ERR_ALERT | ERR_FATAL; |
| 1307 | } |
| 1308 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1309 | node = eb32_lookup(&px->conf.used_listener_id, new->luid); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1310 | if (node) { |
| 1311 | l = container_of(node, struct listener, conf.id); |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1312 | memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')", |
| 1313 | args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line, |
| 1314 | l->bind_conf->arg); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1315 | return ERR_ALERT | ERR_FATAL; |
| 1316 | } |
| 1317 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1318 | eb32_insert(&px->conf.used_listener_id, &new->conf.id); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1319 | return 0; |
| 1320 | } |
| 1321 | |
| 1322 | /* parse the "maxconn" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1323 | static int bind_parse_maxconn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1324 | { |
| 1325 | struct listener *l; |
| 1326 | int val; |
| 1327 | |
| 1328 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1329 | memprintf(err, "'%s' : missing value", args[cur_arg]); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1330 | return ERR_ALERT | ERR_FATAL; |
| 1331 | } |
| 1332 | |
| 1333 | val = atol(args[cur_arg + 1]); |
Willy Tarreau | a8cf66b | 2019-02-27 16:49:00 +0100 | [diff] [blame] | 1334 | if (val < 0) { |
| 1335 | memprintf(err, "'%s' : invalid value %d, must be >= 0", args[cur_arg], val); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1336 | return ERR_ALERT | ERR_FATAL; |
| 1337 | } |
| 1338 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1339 | list_for_each_entry(l, &conf->listeners, by_bind) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1340 | l->maxconn = val; |
| 1341 | |
| 1342 | return 0; |
| 1343 | } |
| 1344 | |
| 1345 | /* parse the "name" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1346 | static int bind_parse_name(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1347 | { |
| 1348 | struct listener *l; |
| 1349 | |
| 1350 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1351 | memprintf(err, "'%s' : missing name", args[cur_arg]); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1352 | return ERR_ALERT | ERR_FATAL; |
| 1353 | } |
| 1354 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1355 | list_for_each_entry(l, &conf->listeners, by_bind) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1356 | l->name = strdup(args[cur_arg + 1]); |
| 1357 | |
| 1358 | return 0; |
| 1359 | } |
| 1360 | |
| 1361 | /* parse the "nice" bind keyword */ |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1362 | static int bind_parse_nice(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1363 | { |
| 1364 | struct listener *l; |
| 1365 | int val; |
| 1366 | |
| 1367 | if (!*args[cur_arg + 1]) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1368 | memprintf(err, "'%s' : missing value", args[cur_arg]); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1369 | return ERR_ALERT | ERR_FATAL; |
| 1370 | } |
| 1371 | |
| 1372 | val = atol(args[cur_arg + 1]); |
| 1373 | if (val < -1024 || val > 1024) { |
Willy Tarreau | eb6cead | 2012-09-20 19:43:14 +0200 | [diff] [blame] | 1374 | memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val); |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1375 | return ERR_ALERT | ERR_FATAL; |
| 1376 | } |
| 1377 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1378 | list_for_each_entry(l, &conf->listeners, by_bind) |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1379 | l->nice = val; |
| 1380 | |
| 1381 | return 0; |
| 1382 | } |
| 1383 | |
Willy Tarreau | 6ae1ba6 | 2014-05-07 19:01:58 +0200 | [diff] [blame] | 1384 | /* parse the "process" bind keyword */ |
| 1385 | static int bind_parse_process(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1386 | { |
Christopher Faulet | c644fa9 | 2017-11-23 22:44:11 +0100 | [diff] [blame] | 1387 | char *slash; |
| 1388 | unsigned long proc = 0, thread = 0; |
Willy Tarreau | 6ae1ba6 | 2014-05-07 19:01:58 +0200 | [diff] [blame] | 1389 | |
Christopher Faulet | c644fa9 | 2017-11-23 22:44:11 +0100 | [diff] [blame] | 1390 | if ((slash = strchr(args[cur_arg + 1], '/')) != NULL) |
| 1391 | *slash = 0; |
| 1392 | |
Willy Tarreau | ff9c914 | 2019-02-07 10:39:36 +0100 | [diff] [blame] | 1393 | if (parse_process_number(args[cur_arg + 1], &proc, MAX_PROCS, NULL, err)) { |
Christopher Faulet | f1f0c5f | 2017-11-22 12:06:43 +0100 | [diff] [blame] | 1394 | memprintf(err, "'%s' : %s", args[cur_arg], *err); |
Willy Tarreau | 6ae1ba6 | 2014-05-07 19:01:58 +0200 | [diff] [blame] | 1395 | return ERR_ALERT | ERR_FATAL; |
| 1396 | } |
| 1397 | |
Christopher Faulet | c644fa9 | 2017-11-23 22:44:11 +0100 | [diff] [blame] | 1398 | if (slash) { |
Willy Tarreau | c9a82e4 | 2019-01-26 13:25:14 +0100 | [diff] [blame] | 1399 | if (parse_process_number(slash+1, &thread, MAX_THREADS, NULL, err)) { |
Christopher Faulet | c644fa9 | 2017-11-23 22:44:11 +0100 | [diff] [blame] | 1400 | memprintf(err, "'%s' : %s", args[cur_arg], *err); |
| 1401 | return ERR_ALERT | ERR_FATAL; |
| 1402 | } |
| 1403 | *slash = '/'; |
| 1404 | } |
| 1405 | |
| 1406 | conf->bind_proc |= proc; |
Willy Tarreau | a36b324 | 2019-02-02 13:14:34 +0100 | [diff] [blame] | 1407 | conf->bind_thread |= thread; |
Willy Tarreau | 6ae1ba6 | 2014-05-07 19:01:58 +0200 | [diff] [blame] | 1408 | return 0; |
| 1409 | } |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1410 | |
Christopher Faulet | a717b99 | 2018-04-10 14:43:00 +0200 | [diff] [blame] | 1411 | /* parse the "proto" bind keyword */ |
| 1412 | static int bind_parse_proto(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1413 | { |
| 1414 | struct ist proto; |
| 1415 | |
| 1416 | if (!*args[cur_arg + 1]) { |
| 1417 | memprintf(err, "'%s' : missing value", args[cur_arg]); |
| 1418 | return ERR_ALERT | ERR_FATAL; |
| 1419 | } |
| 1420 | |
| 1421 | proto = ist2(args[cur_arg + 1], strlen(args[cur_arg + 1])); |
| 1422 | conf->mux_proto = get_mux_proto(proto); |
| 1423 | if (!conf->mux_proto) { |
| 1424 | memprintf(err, "'%s' : unknown MUX protocol '%s'", args[cur_arg], args[cur_arg+1]); |
| 1425 | return ERR_ALERT | ERR_FATAL; |
| 1426 | } |
Christopher Faulet | a717b99 | 2018-04-10 14:43:00 +0200 | [diff] [blame] | 1427 | return 0; |
| 1428 | } |
| 1429 | |
Willy Tarreau | 7ac908b | 2019-02-27 12:02:18 +0100 | [diff] [blame] | 1430 | /* config parser for global "tune.listener.multi-queue", accepts "on" or "off" */ |
| 1431 | static int cfg_parse_tune_listener_mq(char **args, int section_type, struct proxy *curpx, |
| 1432 | struct proxy *defpx, const char *file, int line, |
| 1433 | char **err) |
| 1434 | { |
| 1435 | if (too_many_args(1, args, err, NULL)) |
| 1436 | return -1; |
| 1437 | |
| 1438 | if (strcmp(args[1], "on") == 0) |
| 1439 | global.tune.options |= GTUNE_LISTENER_MQ; |
| 1440 | else if (strcmp(args[1], "off") == 0) |
| 1441 | global.tune.options &= ~GTUNE_LISTENER_MQ; |
| 1442 | else { |
| 1443 | memprintf(err, "'%s' expects either 'on' or 'off' but got '%s'.", args[0], args[1]); |
| 1444 | return -1; |
| 1445 | } |
| 1446 | return 0; |
| 1447 | } |
| 1448 | |
Willy Tarreau | 61612d4 | 2012-04-19 18:42:05 +0200 | [diff] [blame] | 1449 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1450 | * Please take care of keeping this list alphabetically sorted. |
| 1451 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 1452 | static struct sample_fetch_kw_list smp_kws = {ILH, { |
Thierry FOURNIER | 07ee64e | 2015-07-06 23:43:03 +0200 | [diff] [blame] | 1453 | { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, }, |
| 1454 | { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_SINT, SMP_USE_FTEND, }, |
Willy Tarreau | 0ccb744 | 2013-01-07 22:54:17 +0100 | [diff] [blame] | 1455 | { /* END */ }, |
| 1456 | }}; |
| 1457 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1458 | INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws); |
| 1459 | |
Willy Tarreau | 0ccb744 | 2013-01-07 22:54:17 +0100 | [diff] [blame] | 1460 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1461 | * Please take care of keeping this list alphabetically sorted. |
| 1462 | */ |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 1463 | static struct acl_kw_list acl_kws = {ILH, { |
Willy Tarreau | 0ccb744 | 2013-01-07 22:54:17 +0100 | [diff] [blame] | 1464 | { /* END */ }, |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1465 | }}; |
| 1466 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1467 | INITCALL1(STG_REGISTER, acl_register_keywords, &acl_kws); |
| 1468 | |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1469 | /* Note: must not be declared <const> as its list will be overwritten. |
| 1470 | * Please take care of keeping this list alphabetically sorted, doing so helps |
| 1471 | * all code contributors. |
| 1472 | * Optional keywords are also declared with a NULL ->parse() function so that |
| 1473 | * the config parser can report an appropriate error when a known keyword was |
| 1474 | * not enabled. |
| 1475 | */ |
Willy Tarreau | 51fb765 | 2012-09-18 18:24:39 +0200 | [diff] [blame] | 1476 | static struct bind_kw_list bind_kws = { "ALL", { }, { |
Bertrand Jacquin | 93b227d | 2016-06-04 15:11:10 +0100 | [diff] [blame] | 1477 | { "accept-netscaler-cip", bind_parse_accept_netscaler_cip, 1 }, /* enable NetScaler Client IP insertion protocol */ |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1478 | { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */ |
| 1479 | { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */ |
| 1480 | { "id", bind_parse_id, 1 }, /* set id of listening socket */ |
| 1481 | { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */ |
| 1482 | { "name", bind_parse_name, 1 }, /* set name of listening socket */ |
| 1483 | { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */ |
Willy Tarreau | 6ae1ba6 | 2014-05-07 19:01:58 +0200 | [diff] [blame] | 1484 | { "process", bind_parse_process, 1 }, /* set list of allowed process for this socket */ |
Christopher Faulet | a717b99 | 2018-04-10 14:43:00 +0200 | [diff] [blame] | 1485 | { "proto", bind_parse_proto, 1 }, /* set the proto to use for all incoming connections */ |
Willy Tarreau | 0ccb744 | 2013-01-07 22:54:17 +0100 | [diff] [blame] | 1486 | { /* END */ }, |
Willy Tarreau | 3dcc341 | 2012-09-18 17:17:28 +0200 | [diff] [blame] | 1487 | }}; |
| 1488 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1489 | INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws); |
| 1490 | |
Willy Tarreau | 7ac908b | 2019-02-27 12:02:18 +0100 | [diff] [blame] | 1491 | /* config keyword parsers */ |
| 1492 | static struct cfg_kw_list cfg_kws = {ILH, { |
| 1493 | { CFG_GLOBAL, "tune.listener.multi-queue", cfg_parse_tune_listener_mq }, |
| 1494 | { 0, NULL, NULL } |
| 1495 | }}; |
| 1496 | |
| 1497 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 1498 | |
Willy Tarreau | 645513a | 2010-05-24 20:55:15 +0200 | [diff] [blame] | 1499 | /* |
| 1500 | * Local variables: |
| 1501 | * c-indent-level: 8 |
| 1502 | * c-basic-offset: 8 |
| 1503 | * End: |
| 1504 | */ |