blob: 1ce35de8cde9edc41038917d9af6efe4bed5c1ba [file] [log] [blame]
Willy Tarreaudd815982007-10-16 12:25:14 +02001/*
Willy Tarreaud1d54542012-09-12 22:58:11 +02002 * Listener management functions.
Willy Tarreaudd815982007-10-16 12:25:14 +02003 *
Willy Tarreau0ccb7442013-01-07 22:54:17 +01004 * Copyright 2000-2013 Willy Tarreau <w@1wt.eu>
Willy Tarreaudd815982007-10-16 12:25:14 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreau44489252014-01-14 17:52:01 +010013#define _GNU_SOURCE
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020014#include <errno.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020015#include <stdio.h>
16#include <string.h>
17
Willy Tarreau1bc4aab2012-10-08 20:11:03 +020018#include <common/accept4.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020019#include <common/config.h>
Willy Tarreaudabf2e22007-10-28 21:59:24 +010020#include <common/errors.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020021#include <common/mini-clist.h>
22#include <common/standard.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020023#include <common/time.h>
24
25#include <types/global.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020026#include <types/protocol.h>
Willy Tarreaudd815982007-10-16 12:25:14 +020027
Willy Tarreau645513a2010-05-24 20:55:15 +020028#include <proto/acl.h>
Willy Tarreaub648d632007-10-28 22:13:50 +010029#include <proto/fd.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020030#include <proto/freq_ctr.h>
31#include <proto/log.h>
Willy Tarreau0ccb7442013-01-07 22:54:17 +010032#include <proto/sample.h>
Willy Tarreaubbebbbf2012-05-07 21:22:09 +020033#include <proto/task.h>
Willy Tarreaub648d632007-10-28 22:13:50 +010034
Willy Tarreau26982662012-09-12 23:17:10 +020035/* List head of all known bind keywords */
36static struct bind_kw_list bind_keywords = {
37 .list = LIST_HEAD_INIT(bind_keywords.list)
38};
39
Willy Tarreaudabf2e22007-10-28 21:59:24 +010040/* This function adds the specified listener's file descriptor to the polling
41 * lists if it is in the LI_LISTEN state. The listener enters LI_READY or
42 * LI_FULL state depending on its number of connections.
43 */
44void enable_listener(struct listener *listener)
45{
46 if (listener->state == LI_LISTEN) {
47 if (listener->nbconn < listener->maxconn) {
Willy Tarreau49b046d2012-08-09 12:11:58 +020048 fd_want_recv(listener->fd);
Willy Tarreaudabf2e22007-10-28 21:59:24 +010049 listener->state = LI_READY;
50 } else {
51 listener->state = LI_FULL;
52 }
53 }
54}
55
56/* This function removes the specified listener's file descriptor from the
57 * polling lists if it is in the LI_READY or in the LI_FULL state. The listener
58 * enters LI_LISTEN.
59 */
60void disable_listener(struct listener *listener)
61{
62 if (listener->state < LI_READY)
63 return;
64 if (listener->state == LI_READY)
Willy Tarreau49b046d2012-08-09 12:11:58 +020065 fd_stop_recv(listener->fd);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +020066 if (listener->state == LI_LIMITED)
67 LIST_DEL(&listener->wait_queue);
Willy Tarreaudabf2e22007-10-28 21:59:24 +010068 listener->state = LI_LISTEN;
69}
70
Willy Tarreaube58c382011-07-24 18:28:10 +020071/* This function tries to temporarily disable a listener, depending on the OS
72 * capabilities. Linux unbinds the listen socket after a SHUT_RD, and ignores
73 * SHUT_WR. Solaris refuses either shutdown(). OpenBSD ignores SHUT_RD but
74 * closes upon SHUT_WR and refuses to rebind. So a common validation path
75 * involves SHUT_WR && listen && SHUT_RD. In case of success, the FD's polling
76 * is disabled. It normally returns non-zero, unless an error is reported.
77 */
78int pause_listener(struct listener *l)
79{
80 if (l->state <= LI_PAUSED)
81 return 1;
82
Willy Tarreaub3fb60b2012-10-04 08:56:31 +020083 if (l->proto->sock_prot == IPPROTO_TCP) {
84 if (shutdown(l->fd, SHUT_WR) != 0)
85 return 0; /* Solaris dies here */
Willy Tarreaube58c382011-07-24 18:28:10 +020086
Willy Tarreaub3fb60b2012-10-04 08:56:31 +020087 if (listen(l->fd, l->backlog ? l->backlog : l->maxconn) != 0)
88 return 0; /* OpenBSD dies here */
Willy Tarreaube58c382011-07-24 18:28:10 +020089
Willy Tarreaub3fb60b2012-10-04 08:56:31 +020090 if (shutdown(l->fd, SHUT_RD) != 0)
91 return 0; /* should always be OK */
92 }
Willy Tarreaube58c382011-07-24 18:28:10 +020093
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +020094 if (l->state == LI_LIMITED)
95 LIST_DEL(&l->wait_queue);
96
Willy Tarreau49b046d2012-08-09 12:11:58 +020097 fd_stop_recv(l->fd);
Willy Tarreaube58c382011-07-24 18:28:10 +020098 l->state = LI_PAUSED;
99 return 1;
100}
101
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200102/* This function tries to resume a temporarily disabled listener. Paused, full,
103 * limited and disabled listeners are handled, which means that this function
104 * may replace enable_listener(). The resulting state will either be LI_READY
105 * or LI_FULL. 0 is returned in case of failure to resume (eg: dead socket).
Willy Tarreaube58c382011-07-24 18:28:10 +0200106 */
107int resume_listener(struct listener *l)
108{
109 if (l->state < LI_PAUSED)
110 return 0;
111
Willy Tarreaub3fb60b2012-10-04 08:56:31 +0200112 if (l->proto->sock_prot == IPPROTO_TCP &&
113 l->state == LI_PAUSED &&
Willy Tarreaube58c382011-07-24 18:28:10 +0200114 listen(l->fd, l->backlog ? l->backlog : l->maxconn) != 0)
115 return 0;
116
117 if (l->state == LI_READY)
118 return 1;
119
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200120 if (l->state == LI_LIMITED)
121 LIST_DEL(&l->wait_queue);
122
Willy Tarreaube58c382011-07-24 18:28:10 +0200123 if (l->nbconn >= l->maxconn) {
124 l->state = LI_FULL;
125 return 1;
126 }
127
Willy Tarreau49b046d2012-08-09 12:11:58 +0200128 fd_want_recv(l->fd);
Willy Tarreaube58c382011-07-24 18:28:10 +0200129 l->state = LI_READY;
130 return 1;
131}
132
Willy Tarreau62793712011-07-24 19:23:38 +0200133/* Marks a ready listener as full so that the session code tries to re-enable
134 * it upon next close() using resume_listener().
135 */
136void listener_full(struct listener *l)
137{
138 if (l->state >= LI_READY) {
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200139 if (l->state == LI_LIMITED)
140 LIST_DEL(&l->wait_queue);
141
Willy Tarreau49b046d2012-08-09 12:11:58 +0200142 fd_stop_recv(l->fd);
Willy Tarreau62793712011-07-24 19:23:38 +0200143 l->state = LI_FULL;
144 }
145}
146
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200147/* Marks a ready listener as limited so that we only try to re-enable it when
148 * resources are free again. It will be queued into the specified queue.
149 */
150void limit_listener(struct listener *l, struct list *list)
151{
152 if (l->state == LI_READY) {
153 LIST_ADDQ(list, &l->wait_queue);
Willy Tarreau49b046d2012-08-09 12:11:58 +0200154 fd_stop_recv(l->fd);
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200155 l->state = LI_LIMITED;
156 }
157}
158
Willy Tarreaudabf2e22007-10-28 21:59:24 +0100159/* This function adds all of the protocol's listener's file descriptors to the
160 * polling lists when they are in the LI_LISTEN state. It is intended to be
161 * used as a protocol's generic enable_all() primitive, for use after the
162 * fork(). It puts the listeners into LI_READY or LI_FULL states depending on
163 * their number of connections. It always returns ERR_NONE.
164 */
165int enable_all_listeners(struct protocol *proto)
166{
167 struct listener *listener;
168
169 list_for_each_entry(listener, &proto->listeners, proto_list)
170 enable_listener(listener);
171 return ERR_NONE;
172}
173
174/* This function removes all of the protocol's listener's file descriptors from
175 * the polling lists when they are in the LI_READY or LI_FULL states. It is
176 * intended to be used as a protocol's generic disable_all() primitive. It puts
177 * the listeners into LI_LISTEN, and always returns ERR_NONE.
178 */
179int disable_all_listeners(struct protocol *proto)
180{
181 struct listener *listener;
182
183 list_for_each_entry(listener, &proto->listeners, proto_list)
184 disable_listener(listener);
185 return ERR_NONE;
186}
187
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200188/* Dequeues all of the listeners waiting for a resource in wait queue <queue>. */
189void dequeue_all_listeners(struct list *list)
190{
191 struct listener *listener, *l_back;
192
193 list_for_each_entry_safe(listener, l_back, list, wait_queue) {
194 /* This cannot fail because the listeners are by definition in
195 * the LI_LIMITED state. The function also removes the entry
196 * from the queue.
197 */
198 resume_listener(listener);
199 }
200}
201
Willy Tarreaub648d632007-10-28 22:13:50 +0100202/* This function closes the listening socket for the specified listener,
203 * provided that it's already in a listening state. The listener enters the
204 * LI_ASSIGNED state. It always returns ERR_NONE. This function is intended
205 * to be used as a generic function for standard protocols.
206 */
207int unbind_listener(struct listener *listener)
208{
209 if (listener->state == LI_READY)
Willy Tarreau49b046d2012-08-09 12:11:58 +0200210 fd_stop_recv(listener->fd);
Willy Tarreaub648d632007-10-28 22:13:50 +0100211
Willy Tarreaue6ca1fc2011-07-24 22:03:52 +0200212 if (listener->state == LI_LIMITED)
213 LIST_DEL(&listener->wait_queue);
214
Willy Tarreaube58c382011-07-24 18:28:10 +0200215 if (listener->state >= LI_PAUSED) {
Willy Tarreaub648d632007-10-28 22:13:50 +0100216 fd_delete(listener->fd);
217 listener->state = LI_ASSIGNED;
218 }
219 return ERR_NONE;
220}
221
Willy Tarreau3acf8c32007-10-28 22:35:41 +0100222/* This function closes all listening sockets bound to the protocol <proto>,
223 * and the listeners end in LI_ASSIGNED state if they were higher. It does not
224 * detach them from the protocol. It always returns ERR_NONE.
225 */
226int unbind_all_listeners(struct protocol *proto)
227{
228 struct listener *listener;
229
230 list_for_each_entry(listener, &proto->listeners, proto_list)
231 unbind_listener(listener);
232 return ERR_NONE;
233}
234
Willy Tarreau1a64d162007-10-28 22:26:05 +0100235/* Delete a listener from its protocol's list of listeners. The listener's
236 * state is automatically updated from LI_ASSIGNED to LI_INIT. The protocol's
237 * number of listeners is updated. Note that the listener must have previously
238 * been unbound. This is the generic function to use to remove a listener.
239 */
240void delete_listener(struct listener *listener)
241{
242 if (listener->state != LI_ASSIGNED)
243 return;
244 listener->state = LI_INIT;
245 LIST_DEL(&listener->proto_list);
246 listener->proto->nb_listeners--;
247}
248
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200249/* This function is called on a read event from a listening socket, corresponding
250 * to an accept. It tries to accept as many connections as possible, and for each
251 * calls the listener's accept handler (generally the frontend's accept handler).
252 */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200253void listener_accept(int fd)
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200254{
255 struct listener *l = fdtab[fd].owner;
256 struct proxy *p = l->frontend;
Willy Tarreau50de90a2012-11-23 20:11:45 +0100257 int max_accept = l->maxaccept ? l->maxaccept : 1;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200258 int cfd;
259 int ret;
260
261 if (unlikely(l->nbconn >= l->maxconn)) {
262 listener_full(l);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200263 return;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200264 }
265
Willy Tarreau93e7c002013-10-07 18:51:07 +0200266 if (!(l->options & LI_O_UNLIMITED) && global.sps_lim) {
267 int max = freq_ctr_remain(&global.sess_per_sec, global.sps_lim, 0);
268 int expire;
269
270 if (unlikely(!max)) {
271 /* frontend accept rate limit was reached */
272 limit_listener(l, &global_listener_queue);
273 expire = tick_add(now_ms, next_event_delay(&global.sess_per_sec, global.sps_lim, 0));
274 task_schedule(global_listener_queue_task, tick_first(expire, global_listener_queue_task->expire));
275 return;
276 }
277
278 if (max_accept > max)
279 max_accept = max;
280 }
281
282 if (!(l->options & LI_O_UNLIMITED) && global.cps_lim) {
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200283 int max = freq_ctr_remain(&global.conn_per_sec, global.cps_lim, 0);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200284 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200285
286 if (unlikely(!max)) {
287 /* frontend accept rate limit was reached */
288 limit_listener(l, &global_listener_queue);
Willy Tarreau93e7c002013-10-07 18:51:07 +0200289 expire = tick_add(now_ms, next_event_delay(&global.conn_per_sec, global.cps_lim, 0));
290 task_schedule(global_listener_queue_task, tick_first(expire, global_listener_queue_task->expire));
Willy Tarreauafad0e02012-08-09 14:45:22 +0200291 return;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200292 }
293
294 if (max_accept > max)
295 max_accept = max;
296 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200297#ifdef USE_OPENSSL
298 if (!(l->options & LI_O_UNLIMITED) && global.ssl_lim && l->bind_conf && l->bind_conf->is_ssl) {
299 int max = freq_ctr_remain(&global.ssl_per_sec, global.ssl_lim, 0);
300 int expire;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200301
Willy Tarreaue43d5322013-10-07 20:01:52 +0200302 if (unlikely(!max)) {
303 /* frontend accept rate limit was reached */
304 limit_listener(l, &global_listener_queue);
305 expire = tick_add(now_ms, next_event_delay(&global.ssl_per_sec, global.ssl_lim, 0));
306 task_schedule(global_listener_queue_task, tick_first(expire, global_listener_queue_task->expire));
307 return;
308 }
309
310 if (max_accept > max)
311 max_accept = max;
312 }
313#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200314 if (p && p->fe_sps_lim) {
315 int max = freq_ctr_remain(&p->fe_sess_per_sec, p->fe_sps_lim, 0);
316
317 if (unlikely(!max)) {
318 /* frontend accept rate limit was reached */
319 limit_listener(l, &p->listener_queue);
320 task_schedule(p->task, tick_add(now_ms, next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0)));
Willy Tarreauafad0e02012-08-09 14:45:22 +0200321 return;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200322 }
323
324 if (max_accept > max)
325 max_accept = max;
326 }
327
328 /* Note: if we fail to allocate a connection because of configured
329 * limits, we'll schedule a new attempt worst 1 second later in the
330 * worst case. If we fail due to system limits or temporary resource
331 * shortage, we try again 100ms later in the worst case.
332 */
333 while (max_accept--) {
334 struct sockaddr_storage addr;
335 socklen_t laddr = sizeof(addr);
336
337 if (unlikely(actconn >= global.maxconn) && !(l->options & LI_O_UNLIMITED)) {
338 limit_listener(l, &global_listener_queue);
339 task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200340 return;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200341 }
342
343 if (unlikely(p && p->feconn >= p->maxconn)) {
344 limit_listener(l, &p->listener_queue);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200345 return;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200346 }
347
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200348#ifdef USE_ACCEPT4
349 cfd = accept4(fd, (struct sockaddr *)&addr, &laddr, SOCK_NONBLOCK);
Willy Tarreau6b3b0d42012-10-22 19:32:55 +0200350 if (unlikely(cfd == -1 && errno == EINVAL)) {
351 /* unsupported syscall, fallback to normal accept()+fcntl() */
352 if ((cfd = accept(fd, (struct sockaddr *)&addr, &laddr)) != -1)
353 fcntl(cfd, F_SETFL, O_NONBLOCK);
354 }
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200355#else
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200356 cfd = accept(fd, (struct sockaddr *)&addr, &laddr);
Willy Tarreau1bc4aab2012-10-08 20:11:03 +0200357#endif
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200358 if (unlikely(cfd == -1)) {
359 switch (errno) {
360 case EAGAIN:
Willy Tarreauf817e9f2014-01-10 16:58:45 +0100361 fd_cant_recv(fd);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200362 return; /* nothing more to accept */
Willy Tarreaua593ec52014-01-20 21:21:30 +0100363 case EINTR:
364 case ECONNABORTED:
365 continue;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200366 case ENFILE:
367 if (p)
368 send_log(p, LOG_EMERG,
369 "Proxy %s reached system FD limit at %d. Please check system tunables.\n",
370 p->id, maxfd);
371 limit_listener(l, &global_listener_queue);
372 task_schedule(global_listener_queue_task, tick_add(now_ms, 100)); /* try again in 100 ms */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200373 return;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200374 case EMFILE:
375 if (p)
376 send_log(p, LOG_EMERG,
377 "Proxy %s reached process FD limit at %d. Please check 'ulimit-n' and restart.\n",
378 p->id, maxfd);
379 limit_listener(l, &global_listener_queue);
380 task_schedule(global_listener_queue_task, tick_add(now_ms, 100)); /* try again in 100 ms */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200381 return;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200382 case ENOBUFS:
383 case ENOMEM:
384 if (p)
385 send_log(p, LOG_EMERG,
386 "Proxy %s reached system memory limit at %d sockets. Please check system tunables.\n",
387 p->id, maxfd);
388 limit_listener(l, &global_listener_queue);
389 task_schedule(global_listener_queue_task, tick_add(now_ms, 100)); /* try again in 100 ms */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200390 return;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200391 default:
Willy Tarreaua593ec52014-01-20 21:21:30 +0100392 /* unexpected result, let's give up and let other tasks run */
Willy Tarreau6c11bd22014-01-24 00:54:27 +0100393 goto stop;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200394 }
395 }
396
397 if (unlikely(cfd >= global.maxsock)) {
398 send_log(p, LOG_EMERG,
399 "Proxy %s reached the configured maximum connection limit. Please check the global 'maxconn' value.\n",
400 p->id);
401 close(cfd);
402 limit_listener(l, &global_listener_queue);
403 task_schedule(global_listener_queue_task, tick_add(now_ms, 1000)); /* try again in 1 second */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200404 return;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200405 }
406
407 /* increase the per-process number of cumulated connections */
408 if (!(l->options & LI_O_UNLIMITED)) {
409 update_freq_ctr(&global.conn_per_sec, 1);
410 if (global.conn_per_sec.curr_ctr > global.cps_max)
411 global.cps_max = global.conn_per_sec.curr_ctr;
412 actconn++;
413 }
414
415 jobs++;
416 totalconn++;
417 l->nbconn++;
418
419 if (l->counters) {
420 if (l->nbconn > l->counters->conn_max)
421 l->counters->conn_max = l->nbconn;
422 }
423
424 ret = l->accept(l, cfd, &addr);
425 if (unlikely(ret <= 0)) {
426 /* The connection was closed by session_accept(). Either
427 * we just have to ignore it (ret == 0) or it's a critical
428 * error due to a resource shortage, and we must stop the
429 * listener (ret < 0).
430 */
431 if (!(l->options & LI_O_UNLIMITED))
432 actconn--;
433 jobs--;
434 l->nbconn--;
435 if (ret == 0) /* successful termination */
436 continue;
437
438 limit_listener(l, &global_listener_queue);
439 task_schedule(global_listener_queue_task, tick_add(now_ms, 100)); /* try again in 100 ms */
Willy Tarreauafad0e02012-08-09 14:45:22 +0200440 return;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200441 }
442
443 if (l->nbconn >= l->maxconn) {
444 listener_full(l);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200445 return;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200446 }
447
Willy Tarreau93e7c002013-10-07 18:51:07 +0200448 /* increase the per-process number of cumulated connections */
449 if (!(l->options & LI_O_UNLIMITED)) {
450 update_freq_ctr(&global.sess_per_sec, 1);
451 if (global.sess_per_sec.curr_ctr > global.sps_max)
452 global.sps_max = global.sess_per_sec.curr_ctr;
453 }
Willy Tarreaue43d5322013-10-07 20:01:52 +0200454#ifdef USE_OPENSSL
455 if (!(l->options & LI_O_UNLIMITED) && l->bind_conf && l->bind_conf->is_ssl) {
456
457 update_freq_ctr(&global.ssl_per_sec, 1);
458 if (global.ssl_per_sec.curr_ctr > global.ssl_max)
459 global.ssl_max = global.ssl_per_sec.curr_ctr;
460 }
461#endif
Willy Tarreau93e7c002013-10-07 18:51:07 +0200462
Willy Tarreauaece46a2012-07-06 12:25:58 +0200463 } /* end of while (max_accept--) */
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200464
Willy Tarreauaece46a2012-07-06 12:25:58 +0200465 /* we've exhausted max_accept, so there is no need to poll again */
Willy Tarreau6c11bd22014-01-24 00:54:27 +0100466 stop:
467 fd_done_recv(fd);
Willy Tarreauafad0e02012-08-09 14:45:22 +0200468 return;
Willy Tarreaubbebbbf2012-05-07 21:22:09 +0200469}
470
Willy Tarreau26982662012-09-12 23:17:10 +0200471/*
472 * Registers the bind keyword list <kwl> as a list of valid keywords for next
473 * parsing sessions.
474 */
475void bind_register_keywords(struct bind_kw_list *kwl)
476{
477 LIST_ADDQ(&bind_keywords.list, &kwl->list);
478}
479
480/* Return a pointer to the bind keyword <kw>, or NULL if not found. If the
481 * keyword is found with a NULL ->parse() function, then an attempt is made to
482 * find one with a valid ->parse() function. This way it is possible to declare
483 * platform-dependant, known keywords as NULL, then only declare them as valid
484 * if some options are met. Note that if the requested keyword contains an
485 * opening parenthesis, everything from this point is ignored.
486 */
487struct bind_kw *bind_find_kw(const char *kw)
488{
489 int index;
490 const char *kwend;
491 struct bind_kw_list *kwl;
492 struct bind_kw *ret = NULL;
493
494 kwend = strchr(kw, '(');
495 if (!kwend)
496 kwend = kw + strlen(kw);
497
498 list_for_each_entry(kwl, &bind_keywords.list, list) {
499 for (index = 0; kwl->kw[index].kw != NULL; index++) {
500 if ((strncmp(kwl->kw[index].kw, kw, kwend - kw) == 0) &&
501 kwl->kw[index].kw[kwend-kw] == 0) {
502 if (kwl->kw[index].parse)
503 return &kwl->kw[index]; /* found it !*/
504 else
505 ret = &kwl->kw[index]; /* may be OK */
506 }
507 }
508 }
509 return ret;
510}
511
Willy Tarreau8638f482012-09-18 18:01:17 +0200512/* Dumps all registered "bind" keywords to the <out> string pointer. The
513 * unsupported keywords are only dumped if their supported form was not
514 * found.
515 */
516void bind_dump_kws(char **out)
517{
518 struct bind_kw_list *kwl;
519 int index;
520
521 *out = NULL;
522 list_for_each_entry(kwl, &bind_keywords.list, list) {
523 for (index = 0; kwl->kw[index].kw != NULL; index++) {
524 if (kwl->kw[index].parse ||
525 bind_find_kw(kwl->kw[index].kw) == &kwl->kw[index]) {
Willy Tarreau51fb7652012-09-18 18:24:39 +0200526 memprintf(out, "%s[%4s] %s%s%s\n", *out ? *out : "",
527 kwl->scope,
Willy Tarreau8638f482012-09-18 18:01:17 +0200528 kwl->kw[index].kw,
Willy Tarreau51fb7652012-09-18 18:24:39 +0200529 kwl->kw[index].skip ? " <arg>" : "",
530 kwl->kw[index].parse ? "" : " (not supported)");
Willy Tarreau8638f482012-09-18 18:01:17 +0200531 }
532 }
533 }
534}
535
Willy Tarreau645513a2010-05-24 20:55:15 +0200536/************************************************************************/
Willy Tarreau0ccb7442013-01-07 22:54:17 +0100537/* All supported sample and ACL keywords must be declared here. */
Willy Tarreau645513a2010-05-24 20:55:15 +0200538/************************************************************************/
539
Willy Tarreaua5e37562011-12-16 17:06:15 +0100540/* set temp integer to the number of connexions to the same listening socket */
Willy Tarreau645513a2010-05-24 20:55:15 +0200541static int
Willy Tarreau0ccb7442013-01-07 22:54:17 +0100542smp_fetch_dconn(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +0200543 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau645513a2010-05-24 20:55:15 +0200544{
Willy Tarreauf853c462012-04-23 18:53:56 +0200545 smp->type = SMP_T_UINT;
546 smp->data.uint = l4->listener->nbconn;
Willy Tarreau645513a2010-05-24 20:55:15 +0200547 return 1;
548}
549
Willy Tarreaua5e37562011-12-16 17:06:15 +0100550/* set temp integer to the id of the socket (listener) */
Willy Tarreau645513a2010-05-24 20:55:15 +0200551static int
Willy Tarreau0ccb7442013-01-07 22:54:17 +0100552smp_fetch_so_id(struct proxy *px, struct session *l4, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +0200553 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau37406352012-04-23 16:16:37 +0200554{
Willy Tarreauf853c462012-04-23 18:53:56 +0200555 smp->type = SMP_T_UINT;
556 smp->data.uint = l4->listener->luid;
Willy Tarreau645513a2010-05-24 20:55:15 +0200557 return 1;
558}
559
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200560/* parse the "accept-proxy" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200561static int bind_parse_accept_proxy(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200562{
563 struct listener *l;
564
Willy Tarreau4348fad2012-09-20 16:48:07 +0200565 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200566 l->options |= LI_O_ACC_PROXY;
567
568 return 0;
569}
570
571/* parse the "backlog" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200572static int bind_parse_backlog(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200573{
574 struct listener *l;
575 int val;
576
577 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200578 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200579 return ERR_ALERT | ERR_FATAL;
580 }
581
582 val = atol(args[cur_arg + 1]);
583 if (val <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200584 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200585 return ERR_ALERT | ERR_FATAL;
586 }
587
Willy Tarreau4348fad2012-09-20 16:48:07 +0200588 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200589 l->backlog = val;
590
591 return 0;
592}
593
594/* parse the "id" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200595static int bind_parse_id(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200596{
597 struct eb32_node *node;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200598 struct listener *l, *new;
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200599
Willy Tarreau4348fad2012-09-20 16:48:07 +0200600 if (conf->listeners.n != conf->listeners.p) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200601 memprintf(err, "'%s' can only be used with a single socket", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200602 return ERR_ALERT | ERR_FATAL;
603 }
604
605 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200606 memprintf(err, "'%s' : expects an integer argument", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200607 return ERR_ALERT | ERR_FATAL;
608 }
609
Willy Tarreau4348fad2012-09-20 16:48:07 +0200610 new = LIST_NEXT(&conf->listeners, struct listener *, by_bind);
611 new->luid = atol(args[cur_arg + 1]);
612 new->conf.id.key = new->luid;
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200613
Willy Tarreau4348fad2012-09-20 16:48:07 +0200614 if (new->luid <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200615 memprintf(err, "'%s' : custom id has to be > 0", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200616 return ERR_ALERT | ERR_FATAL;
617 }
618
Willy Tarreau4348fad2012-09-20 16:48:07 +0200619 node = eb32_lookup(&px->conf.used_listener_id, new->luid);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200620 if (node) {
621 l = container_of(node, struct listener, conf.id);
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200622 memprintf(err, "'%s' : custom id %d already used at %s:%d ('bind %s')",
623 args[cur_arg], l->luid, l->bind_conf->file, l->bind_conf->line,
624 l->bind_conf->arg);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200625 return ERR_ALERT | ERR_FATAL;
626 }
627
Willy Tarreau4348fad2012-09-20 16:48:07 +0200628 eb32_insert(&px->conf.used_listener_id, &new->conf.id);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200629 return 0;
630}
631
632/* parse the "maxconn" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200633static int bind_parse_maxconn(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200634{
635 struct listener *l;
636 int val;
637
638 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200639 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200640 return ERR_ALERT | ERR_FATAL;
641 }
642
643 val = atol(args[cur_arg + 1]);
644 if (val <= 0) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200645 memprintf(err, "'%s' : invalid value %d, must be > 0", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200646 return ERR_ALERT | ERR_FATAL;
647 }
648
Willy Tarreau4348fad2012-09-20 16:48:07 +0200649 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200650 l->maxconn = val;
651
652 return 0;
653}
654
655/* parse the "name" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200656static int bind_parse_name(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200657{
658 struct listener *l;
659
660 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200661 memprintf(err, "'%s' : missing name", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200662 return ERR_ALERT | ERR_FATAL;
663 }
664
Willy Tarreau4348fad2012-09-20 16:48:07 +0200665 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200666 l->name = strdup(args[cur_arg + 1]);
667
668 return 0;
669}
670
671/* parse the "nice" bind keyword */
Willy Tarreau4348fad2012-09-20 16:48:07 +0200672static int bind_parse_nice(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200673{
674 struct listener *l;
675 int val;
676
677 if (!*args[cur_arg + 1]) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200678 memprintf(err, "'%s' : missing value", args[cur_arg]);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200679 return ERR_ALERT | ERR_FATAL;
680 }
681
682 val = atol(args[cur_arg + 1]);
683 if (val < -1024 || val > 1024) {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200684 memprintf(err, "'%s' : invalid value %d, allowed range is -1024..1024", args[cur_arg], val);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200685 return ERR_ALERT | ERR_FATAL;
686 }
687
Willy Tarreau4348fad2012-09-20 16:48:07 +0200688 list_for_each_entry(l, &conf->listeners, by_bind)
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200689 l->nice = val;
690
691 return 0;
692}
693
694
Willy Tarreau61612d42012-04-19 18:42:05 +0200695/* Note: must not be declared <const> as its list will be overwritten.
696 * Please take care of keeping this list alphabetically sorted.
697 */
Willy Tarreaudc13c112013-06-21 23:16:39 +0200698static struct sample_fetch_kw_list smp_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +0100699 { "dst_conn", smp_fetch_dconn, 0, NULL, SMP_T_UINT, SMP_USE_FTEND, },
700 { "so_id", smp_fetch_so_id, 0, NULL, SMP_T_UINT, SMP_USE_FTEND, },
701 { /* END */ },
702}};
703
704/* Note: must not be declared <const> as its list will be overwritten.
705 * Please take care of keeping this list alphabetically sorted.
706 */
Willy Tarreaudc13c112013-06-21 23:16:39 +0200707static struct acl_kw_list acl_kws = {ILH, {
Willy Tarreau0ccb7442013-01-07 22:54:17 +0100708 { /* END */ },
Willy Tarreau645513a2010-05-24 20:55:15 +0200709}};
710
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200711/* Note: must not be declared <const> as its list will be overwritten.
712 * Please take care of keeping this list alphabetically sorted, doing so helps
713 * all code contributors.
714 * Optional keywords are also declared with a NULL ->parse() function so that
715 * the config parser can report an appropriate error when a known keyword was
716 * not enabled.
717 */
Willy Tarreau51fb7652012-09-18 18:24:39 +0200718static struct bind_kw_list bind_kws = { "ALL", { }, {
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200719 { "accept-proxy", bind_parse_accept_proxy, 0 }, /* enable PROXY protocol */
720 { "backlog", bind_parse_backlog, 1 }, /* set backlog of listening socket */
721 { "id", bind_parse_id, 1 }, /* set id of listening socket */
722 { "maxconn", bind_parse_maxconn, 1 }, /* set maxconn of listening socket */
723 { "name", bind_parse_name, 1 }, /* set name of listening socket */
724 { "nice", bind_parse_nice, 1 }, /* set nice of listening socket */
Willy Tarreau0ccb7442013-01-07 22:54:17 +0100725 { /* END */ },
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200726}};
727
Willy Tarreau645513a2010-05-24 20:55:15 +0200728__attribute__((constructor))
Willy Tarreaud1d54542012-09-12 22:58:11 +0200729static void __listener_init(void)
Willy Tarreau645513a2010-05-24 20:55:15 +0200730{
Willy Tarreau0ccb7442013-01-07 22:54:17 +0100731 sample_register_fetches(&smp_kws);
Willy Tarreau645513a2010-05-24 20:55:15 +0200732 acl_register_keywords(&acl_kws);
Willy Tarreau3dcc3412012-09-18 17:17:28 +0200733 bind_register_keywords(&bind_kws);
Willy Tarreau645513a2010-05-24 20:55:15 +0200734}
735
736/*
737 * Local variables:
738 * c-indent-level: 8
739 * c-basic-offset: 8
740 * End:
741 */