blob: 52722db85503d10fd7da6013adabe5b955248ef1 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HA-Proxy : High Availability-enabled HTTP/TCP proxy
Willy Tarreau7b677262017-04-03 09:27:49 +02003 * Copyright 2000-2017 Willy Tarreau <willy@haproxy.org>.
Willy Tarreaubaaee002006-06-26 02:48:02 +02004 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 *
Lukas Tribus23953682017-04-28 13:24:30 +000010 * Please refer to RFC7230 - RFC7235 informations about HTTP protocol, and
11 * RFC6265 for informations about cookies usage. More generally, the IETF HTTP
Willy Tarreaubaaee002006-06-26 02:48:02 +020012 * Working Group's web site should be consulted for protocol related changes :
13 *
14 * http://ftp.ics.uci.edu/pub/ietf/http/
15 *
16 * Pending bugs (may be not fixed because never reproduced) :
17 * - solaris only : sometimes, an HTTP proxy with only a dispatch address causes
18 * the proxy to terminate (no core) if the client breaks the connection during
19 * the response. Seen on 1.1.8pre4, but never reproduced. May not be related to
20 * the snprintf() bug since requests were simple (GET / HTTP/1.0), but may be
21 * related to missing setsid() (fixed in 1.1.15)
22 * - a proxy with an invalid config will prevent the startup even if disabled.
23 *
24 * ChangeLog has moved to the CHANGELOG file.
25 *
Willy Tarreaubaaee002006-06-26 02:48:02 +020026 */
27
David Carlier7ece0962015-12-08 21:43:09 +000028#define _GNU_SOURCE
Willy Tarreaubaaee002006-06-26 02:48:02 +020029#include <stdio.h>
30#include <stdlib.h>
31#include <unistd.h>
32#include <string.h>
33#include <ctype.h>
Maxime de Roucy379d9c72016-05-13 23:52:56 +020034#include <dirent.h>
Maxime de Roucy379d9c72016-05-13 23:52:56 +020035#include <sys/stat.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036#include <sys/time.h>
37#include <sys/types.h>
38#include <sys/socket.h>
39#include <netinet/tcp.h>
40#include <netinet/in.h>
41#include <arpa/inet.h>
Olivier Houchardf73629d2017-04-05 22:33:04 +020042#include <net/if.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043#include <netdb.h>
44#include <fcntl.h>
45#include <errno.h>
46#include <signal.h>
47#include <stdarg.h>
48#include <sys/resource.h>
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +010049#include <sys/wait.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020050#include <time.h>
51#include <syslog.h>
Michael Schererab012dd2013-01-12 18:35:19 +010052#include <grp.h>
Willy Tarreaufc6c0322012-11-16 16:12:27 +010053#ifdef USE_CPU_AFFINITY
Willy Tarreaufc6c0322012-11-16 16:12:27 +010054#include <sched.h>
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020055#ifdef __FreeBSD__
56#include <sys/param.h>
57#include <sys/cpuset.h>
58#endif
Willy Tarreaufc6c0322012-11-16 16:12:27 +010059#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020060
61#ifdef DEBUG_FULL
62#include <assert.h>
63#endif
64
Willy Tarreau2dd0d472006-06-29 17:53:05 +020065#include <common/base64.h>
66#include <common/cfgparse.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020067#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020068#include <common/compat.h>
69#include <common/config.h>
70#include <common/defaults.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010071#include <common/errors.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020072#include <common/memory.h>
73#include <common/mini-clist.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010074#include <common/namespace.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020075#include <common/regex.h>
76#include <common/standard.h>
77#include <common/time.h>
78#include <common/uri_auth.h>
79#include <common/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020080
81#include <types/capture.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020082#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020083#include <types/global.h>
Simon Hormanac821422011-07-15 13:14:09 +090084#include <types/acl.h>
Willy Tarreau3c63fd82011-09-07 18:00:47 +020085#include <types/peers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020086
Willy Tarreau0fc45a72007-06-17 00:36:03 +020087#include <proto/acl.h>
Willy Tarreau3c595ac2015-04-19 09:59:31 +020088#include <proto/applet.h>
Willy Tarreau2e845be2012-10-19 19:49:09 +020089#include <proto/arg.h>
Willy Tarreau3c595ac2015-04-19 09:59:31 +020090#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020091#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020092#include <proto/channel.h>
Willy Tarreauf2943dc2012-10-26 20:10:28 +020093#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020094#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020095#include <proto/filters.h>
Willy Tarreau34eb6712011-10-24 18:15:04 +020096#include <proto/hdr_idx.h>
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +010097#include <proto/hlua.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020098#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020099#include <proto/log.h>
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +0100100#include <proto/pattern.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +0200101#include <proto/protocol.h>
Willy Tarreau80587432006-12-24 17:47:20 +0100102#include <proto/proto_http.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200103#include <proto/proxy.h>
104#include <proto/queue.h>
105#include <proto/server.h>
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200106#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +0200107#include <proto/stream.h>
Willy Tarreau29857942009-05-10 09:01:21 +0200108#include <proto/signal.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200109#include <proto/task.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +0200110#include <proto/dns.h>
Christopher Fauletff2613e2016-11-09 11:36:17 +0100111#include <proto/vars.h>
Grant Zhang872f9c22017-01-21 01:10:18 +0000112#include <proto/ssl_sock.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200113
Willy Tarreau477ecd82010-01-03 21:12:30 +0100114/* list of config files */
115static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200116int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100117int relative_pid = 1; /* process id starting at 1 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200118
119/* global options */
120struct global global = {
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100121 .hard_stop_after = TICK_ETERNITY,
Willy Tarreau247a13a2012-11-15 17:38:15 +0100122 .nbproc = 1,
William Lallemand5f232402012-04-05 18:02:55 +0200123 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200124 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
William Lallemand9d5f5482012-11-07 16:12:57 +0100125 .maxzlibmem = 0,
William Lallemandd85f9172012-11-09 17:05:39 +0100126 .comp_rate_lim = 0,
Emeric Brun850efd52014-01-29 12:24:34 +0100127 .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED,
Emeric Bruned760922010-10-22 17:59:25 +0200128 .unix_bind = {
129 .ux = {
130 .uid = -1,
131 .gid = -1,
132 .mode = 0,
133 }
134 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200135 .tune = {
136 .bufsize = BUFSIZE,
Willy Tarreau27097842015-09-28 13:53:23 +0200137 .maxrewrite = -1,
Willy Tarreau43961d52010-10-04 20:39:20 +0200138 .chksize = BUFSIZE,
Willy Tarreaua24adf02014-11-27 01:11:56 +0100139 .reserved_bufs = RESERVED_BUFS,
Willy Tarreauf3045d22015-04-29 16:24:50 +0200140 .pattern_cache = DEFAULT_PAT_LRU_SIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200141#ifdef USE_OPENSSL
Emeric Brun46635772012-11-14 11:32:56 +0100142 .sslcachesize = SSLCACHESIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200143#endif
William Lallemandf3747832012-11-09 12:33:10 +0100144 .comp_maxlevel = 1,
Willy Tarreau7e312732014-02-12 16:35:14 +0100145#ifdef DEFAULT_IDLE_TIMER
146 .idle_timer = DEFAULT_IDLE_TIMER,
147#else
148 .idle_timer = 1000, /* 1 second */
149#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200150 },
Emeric Brun76d88952012-10-05 15:47:31 +0200151#ifdef USE_OPENSSL
152#ifdef DEFAULT_MAXSSLCONN
Willy Tarreau403edff2012-09-06 11:58:37 +0200153 .maxsslconn = DEFAULT_MAXSSLCONN,
154#endif
Emeric Brun76d88952012-10-05 15:47:31 +0200155#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200156 /* others NULL OK */
157};
158
159/*********************************************************************/
160
161int stopping; /* non zero means stopping in progress */
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100162int killed; /* non zero means a hard-stop is triggered */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200163int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200164
165/* Here we store informations about the pids of the processes we may pause
166 * or kill. We will send them a signal every 10 ms until we can bind to all
167 * our ports. With 200 retries, that's about 2 seconds.
168 */
169#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200170static int *oldpids = NULL;
171static int oldpids_sig; /* use USR1 or TERM */
172
Olivier Houchardf73629d2017-04-05 22:33:04 +0200173/* Path to the unix socket we use to retrieve listener sockets from the old process */
174static const char *old_unixsocket;
175
William Lallemand85b0bd92017-06-01 17:38:53 +0200176static char *cur_unixsocket = NULL;
177
Willy Tarreaubaaee002006-06-26 02:48:02 +0200178/* this is used to drain data, and as a temporary buffer for sprintf()... */
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100179struct chunk trash = { };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200180
Willy Tarreau8096de92010-02-26 11:12:27 +0100181/* this buffer is always the same size as standard buffers and is used for
182 * swapping data inside a buffer.
183 */
184char *swap_buffer = NULL;
185
William Lallemandcb11fd22017-06-01 17:38:52 +0200186int atexit_flag = 0;
187
Willy Tarreaubb545b42010-08-25 12:58:59 +0200188int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200189const int zero = 0;
190const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200191const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200192
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100193char hostname[MAX_HOSTNAME_LEN];
Emeric Brun2b920a12010-09-23 18:30:22 +0200194char localpeer[MAX_HOSTNAME_LEN];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200195
Willy Tarreau89efaed2013-12-13 15:14:55 +0100196/* used from everywhere just to drain results we don't want to read and which
197 * recent versions of gcc increasingly and annoyingly complain about.
198 */
199int shut_your_big_mouth_gcc_int = 0;
200
William Lallemand73b85e72017-06-01 17:38:51 +0200201int *children = NULL; /* store PIDs of children in master workers mode */
202
203static volatile sig_atomic_t caught_signal = 0;
204static char **next_argv = NULL;
205
William Lallemande20b6a62017-06-01 17:38:55 +0200206int mworker_pipe[2];
207
Willy Tarreau08ceb102011-07-24 22:58:00 +0200208/* list of the temporarily limited listeners because of lack of resource */
209struct list global_listener_queue = LIST_HEAD_INIT(global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +0200210struct task *global_listener_queue_task;
211static struct task *manage_global_listener_queue(struct task *t);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200212
Willy Tarreauff055502014-04-28 22:27:06 +0200213/* bitfield of a few warnings to emit just once (WARN_*) */
214unsigned int warned = 0;
215
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100216
217/* These are strings to be reported in the output of "haproxy -vv". They may
218 * either be constants (in which case must_free must be zero) or dynamically
219 * allocated strings to pass to free() on exit, and in this case must_free
220 * must be non-zero.
221 */
222struct list build_opts_list = LIST_HEAD_INIT(build_opts_list);
223struct build_opts_str {
224 struct list list;
225 const char *str;
226 int must_free;
227};
228
Willy Tarreaue6945732016-12-21 19:57:00 +0100229/* These functions are called just after the point where the program exits
230 * after a config validity check, so they are generally suited for resource
231 * allocation and slow initializations that should be skipped during basic
232 * config checks. The functions must return 0 on success, or a combination
233 * of ERR_* flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause
234 * and immediate exit, so the function must have emitted any useful error.
235 */
236struct list post_check_list = LIST_HEAD_INIT(post_check_list);
237struct post_check_fct {
238 struct list list;
239 int (*fct)();
240};
241
Willy Tarreau05554e62016-12-21 20:46:26 +0100242/* These functions are called when freeing the global sections at the end
243 * of deinit, after everything is stopped. They don't return anything, and
244 * they work in best effort mode as their sole goal is to make valgrind
245 * mostly happy.
246 */
247struct list post_deinit_list = LIST_HEAD_INIT(post_deinit_list);
248struct post_deinit_fct {
249 struct list list;
250 void (*fct)();
251};
252
Willy Tarreaubaaee002006-06-26 02:48:02 +0200253/*********************************************************************/
254/* general purpose functions ***************************************/
255/*********************************************************************/
256
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100257/* used to register some build option strings at boot. Set must_free to
258 * non-zero if the string must be freed upon exit.
259 */
260void hap_register_build_opts(const char *str, int must_free)
261{
262 struct build_opts_str *b;
263
264 b = calloc(1, sizeof(*b));
265 if (!b) {
266 fprintf(stderr, "out of memory\n");
267 exit(1);
268 }
269 b->str = str;
270 b->must_free = must_free;
271 LIST_ADDQ(&build_opts_list, &b->list);
272}
273
Willy Tarreaue6945732016-12-21 19:57:00 +0100274/* used to register some initialization functions to call after the checks. */
275void hap_register_post_check(int (*fct)())
276{
277 struct post_check_fct *b;
278
279 b = calloc(1, sizeof(*b));
280 if (!b) {
281 fprintf(stderr, "out of memory\n");
282 exit(1);
283 }
284 b->fct = fct;
285 LIST_ADDQ(&post_check_list, &b->list);
286}
287
Willy Tarreau05554e62016-12-21 20:46:26 +0100288/* used to register some de-initialization functions to call after everything
289 * has stopped.
290 */
291void hap_register_post_deinit(void (*fct)())
292{
293 struct post_deinit_fct *b;
294
295 b = calloc(1, sizeof(*b));
296 if (!b) {
297 fprintf(stderr, "out of memory\n");
298 exit(1);
299 }
300 b->fct = fct;
301 LIST_ADDQ(&post_deinit_list, &b->list);
302}
303
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100304static void display_version()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200305{
306 printf("HA-Proxy version " HAPROXY_VERSION " " HAPROXY_DATE"\n");
Willy Tarreau7b677262017-04-03 09:27:49 +0200307 printf("Copyright 2000-2017 Willy Tarreau <willy@haproxy.org>\n\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200308}
309
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100310static void display_build_opts()
Willy Tarreau7b066db2007-12-02 11:28:59 +0100311{
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100312 struct build_opts_str *item;
313
Willy Tarreau7b066db2007-12-02 11:28:59 +0100314 printf("Build options :"
315#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100316 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100317#endif
318#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100319 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100320#endif
321#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100322 "\n CC = " BUILD_CC
323#endif
324#ifdef BUILD_CFLAGS
325 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100326#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100327#ifdef BUILD_OPTIONS
328 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100329#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200330 "\n\nDefault settings :"
331 "\n maxconn = %d, bufsize = %d, maxrewrite = %d, maxpollevents = %d"
332 "\n\n",
333 DEFAULT_MAXCONN, BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200334
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100335 list_for_each_entry(item, &build_opts_list, list) {
336 puts(item->str);
337 }
338
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100339 putchar('\n');
340
Willy Tarreaube5b6852009-10-03 18:57:08 +0200341 list_pollers(stdout);
342 putchar('\n');
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100343 list_filters(stdout);
344 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100345}
346
Willy Tarreaubaaee002006-06-26 02:48:02 +0200347/*
348 * This function prints the command line usage and exits
349 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100350static void usage(char *name)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200351{
352 display_version();
353 fprintf(stderr,
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200354 "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200355 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreaua088d312015-10-08 11:58:48 +0200356 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100357 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200358 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200359 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200360 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200361 " -D goes daemon ; -C changes to <dir> before loading files.\n"
William Lallemand095ba4c2017-06-01 17:38:50 +0200362 " -W master-worker mode.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200363 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200364 " -c check mode : only check config files and exit\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200365 " -n sets the maximum total # of connections (%d)\n"
366 " -m limits the usable amount of memory (in MB)\n"
367 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200368 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200369 " -p writes pids of all children to this file\n"
370#if defined(ENABLE_EPOLL)
371 " -de disables epoll() usage even when available\n"
372#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200373#if defined(ENABLE_KQUEUE)
374 " -dk disables kqueue() usage even when available\n"
375#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200376#if defined(ENABLE_POLL)
377 " -dp disables poll() usage even when available\n"
378#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +0200379#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100380 " -dS disables splice usage (broken on old kernels)\n"
381#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200382#if defined(USE_GETADDRINFO)
383 " -dG disables getaddrinfo() usage\n"
384#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000385#if defined(SO_REUSEPORT)
386 " -dR disables SO_REUSEPORT usage\n"
387#endif
Willy Tarreau3eed10e2016-11-07 21:03:16 +0100388 " -dr ignores server address resolution failures\n"
Emeric Brun850efd52014-01-29 12:24:34 +0100389 " -dV disables SSL verify on servers side\n"
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200390 " -sf/-st [pid ]* finishes/terminates old pids.\n"
Olivier Houchardf73629d2017-04-05 22:33:04 +0200391 " -x <unix_socket> get listening sockets from a unix socket\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200392 "\n",
393 name, DEFAULT_MAXCONN, cfg_maxpconn);
394 exit(1);
395}
396
397
398
399/*********************************************************************/
400/* more specific functions ***************************************/
401/*********************************************************************/
402
William Lallemand73b85e72017-06-01 17:38:51 +0200403/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
404 * pids the signal was correctly delivered to.
405 */
406static int tell_old_pids(int sig)
407{
408 int p;
409 int ret = 0;
410 for (p = 0; p < nb_oldpids; p++)
411 if (kill(oldpids[p], sig) == 0)
412 ret++;
413 return ret;
414}
415
416/* return 1 if a pid is a current child otherwise 0 */
417
418int current_child(int pid)
419{
420 int i;
421
422 for (i = 0; i < global.nbproc; i++) {
423 if (children[i] == pid)
424 return 1;
425 }
426 return 0;
427}
428
429static void mworker_signalhandler(int signum)
430{
431 caught_signal = signum;
432}
433
434static void mworker_register_signals()
435{
436 struct sigaction sa;
437 /* Here we are not using the haproxy async way
438 for signals because it does not exists in
439 the master */
440 memset(&sa, 0, sizeof(struct sigaction));
441 sa.sa_handler = &mworker_signalhandler;
442 sigaction(SIGHUP, &sa, NULL);
443 sigaction(SIGUSR1, &sa, NULL);
444 sigaction(SIGUSR2, &sa, NULL);
445 sigaction(SIGINT, &sa, NULL);
446 sigaction(SIGTERM, &sa, NULL);
447}
448
449static void mworker_block_signals()
450{
451 sigset_t set;
452
453 sigemptyset(&set);
454 sigaddset(&set, SIGUSR1);
455 sigaddset(&set, SIGUSR2);
456 sigaddset(&set, SIGHUP);
457 sigaddset(&set, SIGINT);
458 sigaddset(&set, SIGTERM);
459 sigprocmask(SIG_SETMASK, &set, NULL);
460}
461
462static void mworker_unblock_signals()
463{
464 sigset_t set;
465
466 sigemptyset(&set);
467 sigaddset(&set, SIGUSR1);
468 sigaddset(&set, SIGUSR2);
469 sigaddset(&set, SIGHUP);
470 sigaddset(&set, SIGINT);
471 sigaddset(&set, SIGTERM);
472 sigprocmask(SIG_UNBLOCK, &set, NULL);
473}
474
475static void mworker_unregister_signals()
476{
477 signal(SIGINT, SIG_DFL);
478 signal(SIGTERM, SIG_DFL);
479 signal(SIGHUP, SIG_IGN);
480 signal(SIGUSR1, SIG_IGN);
481 signal(SIGUSR2, SIG_IGN);
482}
483
484/*
485 * Send signal to every known children.
486 */
487
488static void mworker_kill(int sig)
489{
490 int i;
491
492 tell_old_pids(sig);
493 if (children) {
494 for (i = 0; i < global.nbproc; i++)
495 kill(children[i], sig);
496 }
497}
498
Willy Tarreaubaaee002006-06-26 02:48:02 +0200499/*
William Lallemand73b85e72017-06-01 17:38:51 +0200500 * remove a pid forom the olpid array and decrease nb_oldpids
501 * return 1 pid was found otherwise return 0
502 */
503
504int delete_oldpid(int pid)
505{
506 int i;
507
508 for (i = 0; i < nb_oldpids; i++) {
509 if (oldpids[i] == pid) {
510 oldpids[i] = oldpids[nb_oldpids - 1];
511 oldpids[nb_oldpids - 1] = 0;
512 nb_oldpids--;
513 return 1;
514 }
515 }
516 return 0;
517}
518
William Lallemand85b0bd92017-06-01 17:38:53 +0200519
520static void get_cur_unixsocket()
521{
522 /* if -x was used, try to update the stat socket if not available anymore */
523 if (global.stats_fe) {
524 struct bind_conf *bind_conf;
525
526 /* pass through all stats socket */
527 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
528 struct listener *l;
529
530 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
531
532 if (l->addr.ss_family == AF_UNIX &&
533 (bind_conf->level & ACCESS_FD_LISTENERS)) {
534 const struct sockaddr_un *un;
535
536 un = (struct sockaddr_un *)&l->addr;
537 /* priority to old_unixsocket */
538 if (!cur_unixsocket) {
539 cur_unixsocket = strdup(un->sun_path);
540 } else {
541 if (old_unixsocket && !strcmp(un->sun_path, old_unixsocket)) {
542 free(cur_unixsocket);
543 cur_unixsocket = strdup(old_unixsocket);
544 return;
545 }
546 }
547 }
548 }
549 }
550 }
551 if (!cur_unixsocket && old_unixsocket)
552 cur_unixsocket = strdup(old_unixsocket);
553}
554
William Lallemand73b85e72017-06-01 17:38:51 +0200555/*
556 * When called, this function reexec haproxy with -sf followed by current
557 * children PIDs and possibily old children PIDs if they didn't leave yet.
558 */
559static void mworker_reload()
560{
561 int next_argc = 0;
562 int j;
563 char *msg = NULL;
564
565 mworker_block_signals();
566 mworker_unregister_signals();
567 setenv("HAPROXY_MWORKER_REEXEC", "1", 1);
568
569 /* compute length */
570 while (next_argv[next_argc])
571 next_argc++;
572
William Lallemand85b0bd92017-06-01 17:38:53 +0200573 /* 1 for haproxy -sf, 2 for -x /socket */
574 next_argv = realloc(next_argv, (next_argc + 1 + 2 + global.nbproc + nb_oldpids + 1) * sizeof(char *));
William Lallemand73b85e72017-06-01 17:38:51 +0200575 if (next_argv == NULL)
576 goto alloc_error;
577
578
579 /* add -sf <PID>* to argv */
580 if (children || nb_oldpids > 0)
581 next_argv[next_argc++] = "-sf";
582 if (children) {
583 for (j = 0; j < global.nbproc; next_argc++,j++) {
584 next_argv[next_argc] = memprintf(&msg, "%d", children[j]);
585 if (next_argv[next_argc] == NULL)
586 goto alloc_error;
587 msg = NULL;
588 }
589 }
590 /* copy old process PIDs */
591 for (j = 0; j < nb_oldpids; next_argc++,j++) {
592 next_argv[next_argc] = memprintf(&msg, "%d", oldpids[j]);
593 if (next_argv[next_argc] == NULL)
594 goto alloc_error;
595 msg = NULL;
596 }
597 next_argv[next_argc] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200598
William Lallemand2bf6d622017-06-20 11:20:23 +0200599 /* add the -x option with the stat socket */
William Lallemand85b0bd92017-06-01 17:38:53 +0200600 if (cur_unixsocket) {
601
William Lallemand2bf6d622017-06-20 11:20:23 +0200602 next_argv[next_argc++] = "-x";
603 next_argv[next_argc++] = (char *)cur_unixsocket;
604 next_argv[next_argc++] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200605 }
606
William Lallemand73b85e72017-06-01 17:38:51 +0200607 deinit(); /* we don't want to leak FD there */
608 Warning("Reexecuting Master process\n");
609 execv(next_argv[0], next_argv);
610
611alloc_error:
612 Warning("Cannot allocate memory\n");
613 Warning("Failed to reexecute the master processs [%d]\n", pid);
614 return;
615}
616
617
618/*
619 * Wait for every children to exit
620 */
621
622static void mworker_wait()
623{
624 int exitpid = -1;
625 int status = 0;
626
627 mworker_register_signals();
628 mworker_unblock_signals();
629
630 while (1) {
631
632 while (((exitpid = wait(&status)) == -1) && errno == EINTR) {
633 int sig = caught_signal;
634 if (sig == SIGUSR2 || sig == SIGHUP) {
635 mworker_reload();
636 } else {
637 Warning("Exiting Master process...\n");
638 mworker_kill(sig);
639 mworker_unregister_signals();
640 }
641 caught_signal = 0;
642 }
643
644 if (exitpid == -1 && errno == ECHILD) {
645 Warning("All workers are left. Leaving... (%d)\n", status);
William Lallemandcb11fd22017-06-01 17:38:52 +0200646 atexit_flag = 0;
William Lallemand73b85e72017-06-01 17:38:51 +0200647 exit(status); /* parent must leave using the latest status code known */
648 }
649
650 if (WIFEXITED(status))
651 status = WEXITSTATUS(status);
652 else if (WIFSIGNALED(status))
653 status = 128 + WTERMSIG(status);
654 else if (WIFSTOPPED(status))
655 status = 128 + WSTOPSIG(status);
656 else
657 status = 255;
658
659 if (!children) {
660 Warning("Worker %d left with exit code %d\n", exitpid, status);
661 } else {
662 /* check if exited child was in the current children list */
663 if (current_child(exitpid)) {
664 Alert("Current worker %d left with exit code %d\n", exitpid, status);
William Lallemand69f9b3b2017-06-01 17:38:54 +0200665 if (status != 0 && status != 130 && status != 143
666 && global.tune.options & GTUNE_EXIT_ONFAILURE) {
667 Alert("exit-on-failure: killing every workers with SIGTERM\n");
668 mworker_kill(SIGTERM);
669 }
William Lallemand73b85e72017-06-01 17:38:51 +0200670 } else {
671 Warning("Former worker %d left with exit code %d\n", exitpid, status);
672 delete_oldpid(exitpid);
673 }
674 }
675 }
676}
677
William Lallemandcb11fd22017-06-01 17:38:52 +0200678
679/*
680 * Reexec the process in failure mode, instead of exiting
681 */
682void reexec_on_failure()
683{
684 if (!atexit_flag)
685 return;
686
687 setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1);
688
689 Warning("Reexecuting Master process in waitpid mode\n");
690 mworker_reload();
691
692 Warning("Failed to reexecute the master processs\n");
693}
William Lallemand73b85e72017-06-01 17:38:51 +0200694
695
696/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200697 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
698 * a signal zero to all subscribers. This means that it's as easy as
699 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200700 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100701static void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200702{
703 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200704 signal_unregister_handler(sh);
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200705 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200706}
707
708/*
709 * upon SIGTTOU, we pause everything
710 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100711static void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200712{
713 pause_proxies();
Willy Tarreau4d2d0982007-05-14 00:39:29 +0200714 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200715}
716
717/*
718 * upon SIGTTIN, let's have a soft stop.
719 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100720static void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200721{
Willy Tarreaube58c382011-07-24 18:28:10 +0200722 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200723}
724
725/*
726 * this function dumps every server's state when the process receives SIGHUP.
727 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100728static void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200729{
730 struct proxy *p = proxy;
731
732 Warning("SIGHUP received, dumping servers states.\n");
733 while (p) {
734 struct server *s = p->srv;
735
736 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
737 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100738 chunk_printf(&trash,
739 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
740 p->id, s->id,
Willy Tarreau892337c2014-05-13 23:41:20 +0200741 (s->state != SRV_ST_STOPPED) ? "UP" : "DOWN",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100742 s->cur_sess, s->nbpend, s->counters.cum_sess);
743 Warning("%s\n", trash.str);
744 send_log(p, LOG_NOTICE, "%s\n", trash.str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200745 s = s->next;
746 }
747
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200748 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
749 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100750 chunk_printf(&trash,
751 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
752 p->id,
753 p->feconn, p->beconn, p->totpend, p->nbpend, p->fe_counters.cum_conn, p->be_counters.cum_conn);
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200754 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100755 chunk_printf(&trash,
756 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
757 p->id,
758 (p->srv_bck) ? "is running on backup servers" : "has no server available",
759 p->feconn, p->beconn, p->totpend, p->nbpend, p->fe_counters.cum_conn, p->be_counters.cum_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200760 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100761 chunk_printf(&trash,
762 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
763 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
764 p->id, p->srv_act, p->srv_bck,
765 p->feconn, p->beconn, p->totpend, p->nbpend, p->fe_counters.cum_conn, p->be_counters.cum_conn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200766 }
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100767 Warning("%s\n", trash.str);
768 send_log(p, LOG_NOTICE, "%s\n", trash.str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200769
770 p = p->next;
771 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200772}
773
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100774static void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200775{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200776 /* dump memory usage then free everything possible */
777 dump_pools();
778 pool_gc2();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200779}
780
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200781/* This function check if cfg_cfgfiles containes directories.
782 * If it find one, it add all the files (and only files) it containes
783 * in cfg_cfgfiles in place of the directory (and remove the directory).
784 * It add the files in lexical order.
785 * It add only files with .cfg extension.
786 * It doesn't add files with name starting with '.'
787 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100788static void cfgfiles_expand_directories(void)
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200789{
790 struct wordlist *wl, *wlb;
791 char *err = NULL;
792
793 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
794 struct stat file_stat;
795 struct dirent **dir_entries = NULL;
796 int dir_entries_nb;
797 int dir_entries_it;
798
799 if (stat(wl->s, &file_stat)) {
800 Alert("Cannot open configuration file/directory %s : %s\n",
801 wl->s,
802 strerror(errno));
803 exit(1);
804 }
805
806 if (!S_ISDIR(file_stat.st_mode))
807 continue;
808
809 /* from this point wl->s is a directory */
810
811 dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort);
812 if (dir_entries_nb < 0) {
813 Alert("Cannot open configuration directory %s : %s\n",
814 wl->s,
815 strerror(errno));
816 exit(1);
817 }
818
819 /* for each element in the directory wl->s */
820 for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) {
821 struct dirent *dir_entry = dir_entries[dir_entries_it];
822 char *filename = NULL;
823 char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg");
824
825 /* don't add filename that begin with .
826 * only add filename with .cfg extention
827 */
828 if (dir_entry->d_name[0] == '.' ||
829 !(d_name_cfgext && d_name_cfgext[4] == '\0'))
830 goto next_dir_entry;
831
832 if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) {
833 Alert("Cannot load configuration files %s : out of memory.\n",
834 filename);
835 exit(1);
836 }
837
838 if (stat(filename, &file_stat)) {
839 Alert("Cannot open configuration file %s : %s\n",
840 wl->s,
841 strerror(errno));
842 exit(1);
843 }
844
845 /* don't add anything else than regular file in cfg_cfgfiles
846 * this way we avoid loops
847 */
848 if (!S_ISREG(file_stat.st_mode))
849 goto next_dir_entry;
850
851 if (!list_append_word(&wl->list, filename, &err)) {
852 Alert("Cannot load configuration files %s : %s\n",
853 filename,
854 err);
855 exit(1);
856 }
857
858next_dir_entry:
859 free(filename);
860 free(dir_entry);
861 }
862
863 free(dir_entries);
864
865 /* remove the current directory (wl) from cfg_cfgfiles */
866 free(wl->s);
867 LIST_DEL(&wl->list);
868 free(wl);
869 }
870
871 free(err);
872}
873
Olivier Houchardf73629d2017-04-05 22:33:04 +0200874static int get_old_sockets(const char *unixsocket)
875{
876 char *cmsgbuf = NULL, *tmpbuf = NULL;
877 int *tmpfd = NULL;
878 struct sockaddr_un addr;
879 struct cmsghdr *cmsg;
880 struct msghdr msghdr;
881 struct iovec iov;
882 struct xfer_sock_list *xfer_sock = NULL;
Olivier Houchard54740872017-04-06 14:45:14 +0200883 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Olivier Houchardf73629d2017-04-05 22:33:04 +0200884 int sock = -1;
885 int ret = -1;
886 int ret2 = -1;
887 int fd_nb;
888 int got_fd = 0;
889 int i = 0;
890 size_t maxoff = 0, curoff = 0;
891
892 memset(&msghdr, 0, sizeof(msghdr));
893 cmsgbuf = malloc(CMSG_SPACE(sizeof(int)) * MAX_SEND_FD);
894 if (!cmsgbuf) {
895 Warning("Failed to allocate memory to send sockets\n");
896 goto out;
897 }
898 sock = socket(PF_UNIX, SOCK_STREAM, 0);
899 if (sock < 0) {
900 Warning("Failed to connect to the old process socket '%s'\n",
901 unixsocket);
902 goto out;
903 }
904 strncpy(addr.sun_path, unixsocket, sizeof(addr.sun_path));
905 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
906 addr.sun_family = PF_UNIX;
907 ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr));
908 if (ret < 0) {
909 Warning("Failed to connect to the old process socket '%s'\n",
910 unixsocket);
911 goto out;
912 }
Olivier Houchard54740872017-04-06 14:45:14 +0200913 setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf73629d2017-04-05 22:33:04 +0200914 iov.iov_base = &fd_nb;
915 iov.iov_len = sizeof(fd_nb);
916 msghdr.msg_iov = &iov;
917 msghdr.msg_iovlen = 1;
918 send(sock, "_getsocks\n", strlen("_getsocks\n"), 0);
919 /* First, get the number of file descriptors to be received */
920 if (recvmsg(sock, &msghdr, MSG_WAITALL) != sizeof(fd_nb)) {
921 Warning("Failed to get the number of sockets to be transferred !\n");
922 goto out;
923 }
924 if (fd_nb == 0) {
925 ret = 0;
926 goto out;
927 }
928 tmpbuf = malloc(fd_nb * (1 + NAME_MAX + 1 + IFNAMSIZ + sizeof(int)));
929 if (tmpbuf == NULL) {
930 Warning("Failed to allocate memory while receiving sockets\n");
931 goto out;
932 }
933 tmpfd = malloc(fd_nb * sizeof(int));
934 if (tmpfd == NULL) {
935 Warning("Failed to allocate memory while receiving sockets\n");
936 goto out;
937 }
938 msghdr.msg_control = cmsgbuf;
939 msghdr.msg_controllen = CMSG_SPACE(sizeof(int)) * MAX_SEND_FD;
940 iov.iov_len = MAX_SEND_FD * (1 + NAME_MAX + 1 + IFNAMSIZ + sizeof(int));
941 do {
942 int ret3;
943
944 iov.iov_base = tmpbuf + curoff;
945 ret = recvmsg(sock, &msghdr, 0);
946 if (ret == -1 && errno == EINTR)
947 continue;
948 if (ret <= 0)
949 break;
950 /* Send an ack to let the sender know we got the sockets
951 * and it can send some more
952 */
953 do {
954 ret3 = send(sock, &got_fd, sizeof(got_fd), 0);
955 } while (ret3 == -1 && errno == EINTR);
956 for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg != NULL;
957 cmsg = CMSG_NXTHDR(&msghdr, cmsg)) {
958 if (cmsg->cmsg_level == SOL_SOCKET &&
959 cmsg->cmsg_type == SCM_RIGHTS) {
960 size_t totlen = cmsg->cmsg_len -
961 CMSG_LEN(0);
962 if (totlen / sizeof(int) + got_fd > fd_nb) {
963 Warning("Got to many sockets !\n");
964 goto out;
965 }
966 /*
967 * Be paranoid and use memcpy() to avoid any
968 * potential alignement issue.
969 */
970 memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen);
971 got_fd += totlen / sizeof(int);
972 }
973 }
974 curoff += ret;
975 } while (got_fd < fd_nb);
976
977 if (got_fd != fd_nb) {
978 Warning("We didn't get the expected number of sockets (expecting %d got %d)\n",
979 fd_nb, got_fd);
980 goto out;
981 }
982 maxoff = curoff;
983 curoff = 0;
984 for (i = 0; i < got_fd; i++) {
985 int fd = tmpfd[i];
986 socklen_t socklen;
987 int len;
988
989 xfer_sock = calloc(1, sizeof(*xfer_sock));
990 if (!xfer_sock) {
991 Warning("Failed to allocate memory in get_old_sockets() !\n");
992 break;
993 }
994 xfer_sock->fd = -1;
995
996 socklen = sizeof(xfer_sock->addr);
997 if (getsockname(fd, (struct sockaddr *)&xfer_sock->addr, &socklen) != 0) {
998 Warning("Failed to get socket address\n");
999 free(xfer_sock);
Olivier Houchardbe7b1ce2017-07-17 17:25:33 +02001000 xfer_sock = NULL;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001001 continue;
1002 }
1003 if (curoff >= maxoff) {
1004 Warning("Inconsistency while transferring sockets\n");
1005 goto out;
1006 }
1007 len = tmpbuf[curoff++];
1008 if (len > 0) {
1009 /* We have a namespace */
1010 if (curoff + len > maxoff) {
1011 Warning("Inconsistency while transferring sockets\n");
1012 goto out;
1013 }
1014 xfer_sock->namespace = malloc(len + 1);
1015 if (!xfer_sock->namespace) {
1016 Warning("Failed to allocate memory while transferring sockets\n");
1017 goto out;
1018 }
1019 memcpy(xfer_sock->namespace, &tmpbuf[curoff], len);
1020 xfer_sock->namespace[len] = 0;
1021 curoff += len;
1022 }
1023 if (curoff >= maxoff) {
1024 Warning("Inconsistency while transferring sockets\n");
1025 goto out;
1026 }
1027 len = tmpbuf[curoff++];
1028 if (len > 0) {
1029 /* We have an interface */
1030 if (curoff + len > maxoff) {
1031 Warning("Inconsistency while transferring sockets\n");
1032 goto out;
1033 }
1034 xfer_sock->iface = malloc(len + 1);
1035 if (!xfer_sock->iface) {
1036 Warning("Failed to allocate memory while transferring sockets\n");
1037 goto out;
1038 }
1039 memcpy(xfer_sock->iface, &tmpbuf[curoff], len);
1040 xfer_sock->namespace[len] = 0;
1041 curoff += len;
1042 }
1043 if (curoff + sizeof(int) > maxoff) {
1044 Warning("Inconsistency while transferring sockets\n");
1045 goto out;
1046 }
1047 memcpy(&xfer_sock->options, &tmpbuf[curoff],
1048 sizeof(xfer_sock->options));
1049 curoff += sizeof(xfer_sock->options);
1050
1051 xfer_sock->fd = fd;
1052 if (xfer_sock_list)
1053 xfer_sock_list->prev = xfer_sock;
1054 xfer_sock->next = xfer_sock_list;
1055 xfer_sock->prev = NULL;
1056 xfer_sock_list = xfer_sock;
1057 xfer_sock = NULL;
1058 }
1059
1060 ret2 = 0;
1061out:
1062 /* If we failed midway make sure to close the remaining
1063 * file descriptors
1064 */
1065 if (tmpfd != NULL && i < got_fd) {
1066 for (; i < got_fd; i++) {
1067 close(tmpfd[i]);
1068 }
1069 }
1070 free(tmpbuf);
1071 free(tmpfd);
1072 free(cmsgbuf);
1073 if (sock != -1)
1074 close(sock);
1075 if (xfer_sock) {
1076 free(xfer_sock->namespace);
1077 free(xfer_sock->iface);
1078 if (xfer_sock->fd != -1)
1079 close(xfer_sock->fd);
1080 free(xfer_sock);
1081 }
1082 return (ret2);
1083}
1084
Willy Tarreaubaaee002006-06-26 02:48:02 +02001085/*
William Lallemand73b85e72017-06-01 17:38:51 +02001086 * copy and cleanup the current argv
1087 * Remove the -sf /-st parameters
1088 * Return an allocated copy of argv
1089 */
1090
1091static char **copy_argv(int argc, char **argv)
1092{
1093 char **newargv;
William Lallemand2bf6d622017-06-20 11:20:23 +02001094 int i = 0, j = 0;
William Lallemand73b85e72017-06-01 17:38:51 +02001095
1096 newargv = calloc(argc + 2, sizeof(char *));
1097 if (newargv == NULL) {
1098 Warning("Cannot allocate memory\n");
1099 return NULL;
1100 }
1101
William Lallemand2bf6d622017-06-20 11:20:23 +02001102 while (i < argc) {
1103 /* -sf or -st or -x */
1104 if ((argv[i][1] == 's' && (argv[i][2] == 'f' || argv[i][2] == 't')) || argv[i][1] == 'x' ) {
1105 /* list of pids to finish ('f') or terminate ('t') or unix socket (-x) */
William Lallemand73b85e72017-06-01 17:38:51 +02001106 i++;
1107 while (i < argc && argv[i][0] != '-') {
1108 i++;
1109 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001110 continue;
William Lallemand73b85e72017-06-01 17:38:51 +02001111 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001112
1113 newargv[j++] = argv[i++];
William Lallemand73b85e72017-06-01 17:38:51 +02001114 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001115
William Lallemand73b85e72017-06-01 17:38:51 +02001116 return newargv;
1117}
1118
1119/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001120 * This function initializes all the necessary variables. It only returns
1121 * if everything is OK. If something fails, it exits.
1122 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001123static void init(int argc, char **argv)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001124{
Willy Tarreaubaaee002006-06-26 02:48:02 +02001125 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001126 char *tmp;
1127 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +02001128 int err_code = 0;
Maxime de Roucy0f503922016-05-13 23:52:55 +02001129 char *err_msg = NULL;
Willy Tarreau477ecd82010-01-03 21:12:30 +01001130 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +00001131 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +02001132 char *change_dir = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001133 struct proxy *px;
Willy Tarreaue6945732016-12-21 19:57:00 +01001134 struct post_check_fct *pcf;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001135
William Lallemand73b85e72017-06-01 17:38:51 +02001136 next_argv = copy_argv(argc, argv);
1137
Willy Tarreau19d14ef2012-10-29 16:51:55 +01001138 chunk_init(&trash, malloc(global.tune.bufsize), global.tune.bufsize);
Willy Tarreau2819e992013-12-13 14:41:10 +01001139 alloc_trash_buffers(global.tune.bufsize);
David du Colombier7af46052012-05-16 14:16:48 +02001140
Emeric Brun2b920a12010-09-23 18:30:22 +02001141 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
1142 * the string in case of truncation, and at least FreeBSD appears not to do
1143 * it.
1144 */
1145 memset(hostname, 0, sizeof(hostname));
1146 gethostname(hostname, sizeof(hostname) - 1);
1147 memset(localpeer, 0, sizeof(localpeer));
1148 memcpy(localpeer, hostname, (sizeof(hostname) > sizeof(localpeer) ? sizeof(localpeer) : sizeof(hostname)) - 1);
1149
Willy Tarreaubaaee002006-06-26 02:48:02 +02001150 /*
1151 * Initialize the previously static variables.
1152 */
1153
Willy Tarreau3eba98a2009-01-25 13:56:13 +01001154 totalconn = actconn = maxfd = listeners = stopping = 0;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001155 killed = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001156
1157
1158#ifdef HAPROXY_MEMMAX
Willy Tarreau70060452015-12-14 12:46:07 +01001159 global.rlimit_memmax_all = HAPROXY_MEMMAX;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001160#endif
1161
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001162 tzset();
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001163 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001164 start_date = now;
1165
Willy Tarreau84310e22014-02-14 11:59:04 +01001166 srandom(now_ms - getpid());
1167
Dragan Dosen835b9212016-02-12 13:23:03 +01001168 init_log();
Willy Tarreau29857942009-05-10 09:01:21 +02001169 signal_init();
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001170 if (init_acl() != 0)
1171 exit(1);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02001172 init_task();
Willy Tarreau87b09662015-04-03 00:22:06 +02001173 init_stream();
Willy Tarreaub1ec8c42015-04-03 13:53:24 +02001174 init_session();
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001175 init_connection();
Willy Tarreau8280d642009-09-23 23:37:52 +02001176 /* warning, we init buffers later */
Willy Tarreaue4d7e552007-05-13 20:19:55 +02001177 init_pendconn();
Willy Tarreau80587432006-12-24 17:47:20 +01001178 init_proto_http();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001179
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001180 /* Initialise lua. */
1181 hlua_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001182
Christopher Fauletff2613e2016-11-09 11:36:17 +01001183 /* Initialize process vars */
1184 vars_init(&global.vars, SCOPE_PROC);
1185
Willy Tarreau43b78992009-01-25 15:42:27 +01001186 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001187#if defined(ENABLE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001188 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001189#endif
1190#if defined(ENABLE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001191 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001192#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001193#if defined(ENABLE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +01001194 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001195#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +02001196#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001197 global.tune.options |= GTUNE_USE_SPLICE;
1198#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001199#if defined(USE_GETADDRINFO)
1200 global.tune.options |= GTUNE_USE_GAI;
1201#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001202#if defined(SO_REUSEPORT)
1203 global.tune.options |= GTUNE_USE_REUSEPORT;
1204#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02001205
1206 pid = getpid();
1207 progname = *argv;
1208 while ((tmp = strchr(progname, '/')) != NULL)
1209 progname = tmp + 1;
1210
Kevinm48936af2010-12-22 16:08:21 +00001211 /* the process name is used for the logs only */
Dragan Dosen43885c72015-10-01 13:18:13 +02001212 chunk_initstr(&global.log_tag, strdup(progname));
Kevinm48936af2010-12-22 16:08:21 +00001213
Willy Tarreaubaaee002006-06-26 02:48:02 +02001214 argc--; argv++;
1215 while (argc > 0) {
1216 char *flag;
1217
1218 if (**argv == '-') {
1219 flag = *argv+1;
1220
1221 /* 1 arg */
1222 if (*flag == 'v') {
1223 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +01001224 if (flag[1] == 'v') /* -vv */
1225 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001226 exit(0);
1227 }
1228#if defined(ENABLE_EPOLL)
1229 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +01001230 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001231#endif
1232#if defined(ENABLE_POLL)
1233 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +01001234 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001235#endif
Willy Tarreau69cad1a2007-04-10 22:45:11 +02001236#if defined(ENABLE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001237 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +01001238 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001239#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +02001240#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001241 else if (*flag == 'd' && flag[1] == 'S')
1242 global.tune.options &= ~GTUNE_USE_SPLICE;
1243#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001244#if defined(USE_GETADDRINFO)
1245 else if (*flag == 'd' && flag[1] == 'G')
1246 global.tune.options &= ~GTUNE_USE_GAI;
1247#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001248#if defined(SO_REUSEPORT)
1249 else if (*flag == 'd' && flag[1] == 'R')
1250 global.tune.options &= ~GTUNE_USE_REUSEPORT;
1251#endif
Emeric Brun850efd52014-01-29 12:24:34 +01001252 else if (*flag == 'd' && flag[1] == 'V')
1253 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001254 else if (*flag == 'V')
1255 arg_mode |= MODE_VERBOSE;
1256 else if (*flag == 'd' && flag[1] == 'b')
1257 arg_mode |= MODE_FOREGROUND;
Willy Tarreau6e064432012-05-08 15:40:42 +02001258 else if (*flag == 'd' && flag[1] == 'M')
1259 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreau3eed10e2016-11-07 21:03:16 +01001260 else if (*flag == 'd' && flag[1] == 'r')
1261 global.tune.options |= GTUNE_RESOLVE_DONTFAIL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001262 else if (*flag == 'd')
1263 arg_mode |= MODE_DEBUG;
1264 else if (*flag == 'c')
1265 arg_mode |= MODE_CHECK;
William Lallemand095ba4c2017-06-01 17:38:50 +02001266 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +02001267 arg_mode |= MODE_DAEMON;
William Lallemand095ba4c2017-06-01 17:38:50 +02001268 else if (*flag == 'W')
1269 arg_mode |= MODE_MWORKER;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001270 else if (*flag == 'q')
1271 arg_mode |= MODE_QUIET;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001272 else if (*flag == 'x') {
William Lallemand45eff442017-06-19 15:57:55 +02001273 if (argc <= 1 || argv[1][0] == '-') {
1274 Alert("Unix socket path expected with the -x flag\n\n");
1275 usage(progname);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001276 }
William Lallemand4fc09692017-06-19 16:37:19 +02001277 if (old_unixsocket)
1278 Warning("-x option already set, overwriting the value\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001279 old_unixsocket = argv[1];
William Lallemand4fc09692017-06-19 16:37:19 +02001280
Olivier Houchardf73629d2017-04-05 22:33:04 +02001281 argv++;
1282 argc--;
1283 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001284 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
1285 /* list of pids to finish ('f') or terminate ('t') */
1286
1287 if (flag[1] == 'f')
1288 oldpids_sig = SIGUSR1; /* finish then exit */
1289 else
1290 oldpids_sig = SIGTERM; /* terminate immediately */
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001291 while (argc > 1 && argv[1][0] != '-') {
1292 oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int));
1293 if (!oldpids) {
1294 Alert("Cannot allocate old pid : out of memory.\n");
1295 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001296 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001297 argc--; argv++;
1298 oldpids[nb_oldpids] = atol(*argv);
1299 if (oldpids[nb_oldpids] <= 0)
1300 usage(progname);
1301 nb_oldpids++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001302 }
1303 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001304 else if (flag[0] == '-' && flag[1] == 0) { /* "--" */
1305 /* now that's a cfgfile list */
1306 argv++; argc--;
1307 while (argc > 0) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02001308 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
1309 Alert("Cannot load configuration file/directory %s : %s\n",
1310 *argv,
1311 err_msg);
Willy Tarreaua088d312015-10-08 11:58:48 +02001312 exit(1);
1313 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001314 argv++; argc--;
1315 }
1316 break;
1317 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001318 else { /* >=2 args */
1319 argv++; argc--;
1320 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001321 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001322
1323 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +02001324 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001325 case 'n' : cfg_maxconn = atol(*argv); break;
Willy Tarreau70060452015-12-14 12:46:07 +01001326 case 'm' : global.rlimit_memmax_all = atol(*argv); break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001327 case 'N' : cfg_maxpconn = atol(*argv); break;
Emeric Brun2b920a12010-09-23 18:30:22 +02001328 case 'L' : strncpy(localpeer, *argv, sizeof(localpeer) - 1); break;
Willy Tarreau5d01a632009-06-22 16:02:30 +02001329 case 'f' :
Maxime de Roucy0f503922016-05-13 23:52:55 +02001330 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
1331 Alert("Cannot load configuration file/directory %s : %s\n",
1332 *argv,
1333 err_msg);
Willy Tarreau5d01a632009-06-22 16:02:30 +02001334 exit(1);
1335 }
Willy Tarreau5d01a632009-06-22 16:02:30 +02001336 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001337 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001338 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001339 }
1340 }
1341 }
1342 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001343 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001344 argv++; argc--;
1345 }
1346
1347 global.mode = MODE_STARTING | /* during startup, we want most of the alerts */
William Lallemand095ba4c2017-06-01 17:38:50 +02001348 (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE
Willy Tarreaubaaee002006-06-26 02:48:02 +02001349 | MODE_QUIET | MODE_CHECK | MODE_DEBUG));
1350
William Lallemandcb11fd22017-06-01 17:38:52 +02001351 /* Master workers wait mode */
1352 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_WAIT_ONLY") != NULL)) {
1353
1354 unsetenv("HAPROXY_MWORKER_WAIT_ONLY");
1355 mworker_wait();
1356 }
1357
1358 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) {
1359 atexit_flag = 1;
1360 atexit(reexec_on_failure);
1361 }
1362
Willy Tarreau576132e2011-09-10 19:26:56 +02001363 if (change_dir && chdir(change_dir) < 0) {
1364 Alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
1365 exit(1);
1366 }
1367
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001368 /* handle cfgfiles that are actualy directories */
1369 cfgfiles_expand_directories();
1370
1371 if (LIST_ISEMPTY(&cfg_cfgfiles))
1372 usage(progname);
1373
Willy Tarreaubaaee002006-06-26 02:48:02 +02001374 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001375
1376 init_default_instance();
1377
Willy Tarreau477ecd82010-01-03 21:12:30 +01001378 list_for_each_entry(wl, &cfg_cfgfiles, list) {
Willy Tarreauc4382422009-12-06 13:10:44 +01001379 int ret;
1380
Willy Tarreau477ecd82010-01-03 21:12:30 +01001381 ret = readcfgfile(wl->s);
Willy Tarreauc4382422009-12-06 13:10:44 +01001382 if (ret == -1) {
1383 Alert("Could not open configuration file %s : %s\n",
Willy Tarreau477ecd82010-01-03 21:12:30 +01001384 wl->s, strerror(errno));
Willy Tarreauc4382422009-12-06 13:10:44 +01001385 exit(1);
1386 }
Willy Tarreau25a67fa2009-12-15 21:46:25 +01001387 if (ret & (ERR_ABORT|ERR_FATAL))
Willy Tarreau477ecd82010-01-03 21:12:30 +01001388 Alert("Error(s) found in configuration file : %s\n", wl->s);
Willy Tarreau25a67fa2009-12-15 21:46:25 +01001389 err_code |= ret;
Willy Tarreau058e9072009-07-20 09:30:05 +02001390 if (err_code & ERR_ABORT)
Willy Tarreau5d01a632009-06-22 16:02:30 +02001391 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001392 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001393
Willy Tarreaub83dc3d2017-04-19 11:24:07 +02001394 /* do not try to resolve arguments nor to spot inconsistencies when
1395 * the configuration contains fatal errors caused by files not found
1396 * or failed memory allocations.
1397 */
1398 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1399 Alert("Fatal errors found in configuration.\n");
1400 exit(1);
1401 }
1402
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001403 pattern_finalize_config();
1404
Willy Tarreaubb925012009-07-23 13:36:36 +02001405 err_code |= check_config_validity();
1406 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1407 Alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001408 exit(1);
1409 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001410
Willy Tarreau70060452015-12-14 12:46:07 +01001411 /* recompute the amount of per-process memory depending on nbproc and
1412 * the shared SSL cache size (allowed to exist in all processes).
1413 */
1414 if (global.rlimit_memmax_all) {
1415#if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE)
1416 int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL;
1417
1418 global.rlimit_memmax =
1419 ((((int64_t)global.rlimit_memmax_all * 1048576LL) -
1420 ssl_cache_bytes) / global.nbproc +
1421 ssl_cache_bytes + 1048575LL) / 1048576LL;
1422#else
1423 global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc;
1424#endif
1425 }
1426
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001427#ifdef CONFIG_HAP_NS
1428 err_code |= netns_init();
1429 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1430 Alert("Failed to initialize namespace support.\n");
1431 exit(1);
1432 }
1433#endif
1434
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01001435 /* Apply server states */
1436 apply_server_state();
1437
1438 for (px = proxy; px; px = px->next)
1439 srv_compute_all_admin_states(px);
1440
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01001441 /* Apply servers' configured address */
1442 err_code |= srv_init_addr();
1443 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1444 Alert("Failed to initialize server(s) addr.\n");
1445 exit(1);
1446 }
1447
Willy Tarreaubaaee002006-06-26 02:48:02 +02001448 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001449 struct peers *pr;
1450 struct proxy *px;
1451
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001452 for (pr = cfg_peers; pr; pr = pr->next)
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001453 if (pr->peers_fe)
1454 break;
1455
1456 for (px = proxy; px; px = px->next)
Willy Tarreau4348fad2012-09-20 16:48:07 +02001457 if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001458 break;
1459
1460 if (pr || px) {
1461 /* At least one peer or one listener has been found */
1462 qfprintf(stdout, "Configuration file is valid\n");
1463 exit(0);
1464 }
1465 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
1466 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001467 }
1468
Willy Tarreaue9b26022011-08-01 20:57:55 +02001469 global_listener_queue_task = task_new();
1470 if (!global_listener_queue_task) {
1471 Alert("Out of memory when initializing global task\n");
1472 exit(1);
1473 }
1474 /* very simple initialization, users will queue the task if needed */
1475 global_listener_queue_task->context = NULL; /* not even a context! */
1476 global_listener_queue_task->process = manage_global_listener_queue;
Willy Tarreaue9b26022011-08-01 20:57:55 +02001477
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001478 /* now we know the buffer size, we can initialize the channels and buffers */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001479 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +02001480
Willy Tarreaue6945732016-12-21 19:57:00 +01001481 list_for_each_entry(pcf, &post_check_list, list) {
1482 err_code |= pcf->fct();
1483 if (err_code & (ERR_ABORT|ERR_FATAL))
1484 exit(1);
1485 }
1486
Willy Tarreaubaaee002006-06-26 02:48:02 +02001487 if (cfg_maxconn > 0)
1488 global.maxconn = cfg_maxconn;
1489
1490 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +02001491 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001492 global.pidfile = strdup(cfg_pidfile);
1493 }
1494
Willy Tarreaud0256482015-01-15 21:45:22 +01001495 /* Now we want to compute the maxconn and possibly maxsslconn values.
1496 * It's a bit tricky. If memmax is not set, maxconn defaults to
1497 * DEFAULT_MAXCONN and maxsslconn defaults to DEFAULT_MAXSSLCONN.
1498 *
1499 * If memmax is set, then it depends on which values are set. If
1500 * maxsslconn is set, we use memmax to determine how many cleartext
1501 * connections may be added, and set maxconn to the sum of the two.
1502 * If maxconn is set and not maxsslconn, maxsslconn is computed from
1503 * the remaining amount of memory between memmax and the cleartext
1504 * connections. If neither are set, then it is considered that all
1505 * connections are SSL-capable, and maxconn is computed based on this,
1506 * then maxsslconn accordingly. We need to know if SSL is used on the
1507 * frontends, backends, or both, because when it's used on both sides,
1508 * we need twice the value for maxsslconn, but we only count the
1509 * handshake once since it is not performed on the two sides at the
1510 * same time (frontend-side is terminated before backend-side begins).
1511 * The SSL stack is supposed to have filled ssl_session_cost and
Willy Tarreau474b96a2015-01-28 19:03:21 +01001512 * ssl_handshake_cost during its initialization. In any case, if
1513 * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for
1514 * maxconn in order to protect the system.
Willy Tarreaud0256482015-01-15 21:45:22 +01001515 */
1516 if (!global.rlimit_memmax) {
1517 if (global.maxconn == 0) {
1518 global.maxconn = DEFAULT_MAXCONN;
1519 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1520 fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn);
1521 }
1522 }
1523#ifdef USE_OPENSSL
1524 else if (!global.maxconn && !global.maxsslconn &&
1525 (global.ssl_used_frontend || global.ssl_used_backend)) {
1526 /* memmax is set, compute everything automatically. Here we want
1527 * to ensure that all SSL connections will be served. We take
1528 * care of the number of sides where SSL is used, and consider
1529 * the worst case : SSL used on both sides and doing a handshake
1530 * simultaneously. Note that we can't have more than maxconn
1531 * handshakes at a time by definition, so for the worst case of
1532 * two SSL conns per connection, we count a single handshake.
1533 */
1534 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1535 int64_t mem = global.rlimit_memmax * 1048576ULL;
1536
1537 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1538 mem -= global.maxzlibmem;
1539 mem = mem * MEM_USABLE_RATIO;
1540
1541 global.maxconn = mem /
Willy Tarreau87b09662015-04-03 00:22:06 +02001542 ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream
Willy Tarreaud0256482015-01-15 21:45:22 +01001543 sides * global.ssl_session_max_cost + // SSL buffers, one per side
1544 global.ssl_handshake_max_cost); // 1 handshake per connection max
1545
1546 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001547#ifdef SYSTEM_MAXCONN
1548 if (global.maxconn > DEFAULT_MAXCONN)
1549 global.maxconn = DEFAULT_MAXCONN;
1550#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01001551 global.maxsslconn = sides * global.maxconn;
1552 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1553 fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n",
1554 global.maxconn, global.maxsslconn);
1555 }
1556 else if (!global.maxsslconn &&
1557 (global.ssl_used_frontend || global.ssl_used_backend)) {
1558 /* memmax and maxconn are known, compute maxsslconn automatically.
1559 * maxsslconn being forced, we don't know how many of it will be
1560 * on each side if both sides are being used. The worst case is
1561 * when all connections use only one SSL instance because
1562 * handshakes may be on two sides at the same time.
1563 */
1564 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1565 int64_t mem = global.rlimit_memmax * 1048576ULL;
1566 int64_t sslmem;
1567
1568 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1569 mem -= global.maxzlibmem;
1570 mem = mem * MEM_USABLE_RATIO;
1571
Willy Tarreau87b09662015-04-03 00:22:06 +02001572 sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01001573 global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost);
1574 global.maxsslconn = round_2dig(global.maxsslconn);
1575
1576 if (sslmem <= 0 || global.maxsslconn < sides) {
1577 Alert("Cannot compute the automatic maxsslconn because global.maxconn is already too "
1578 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1579 "without SSL is %d, but %d was found and SSL is in use.\n",
1580 global.rlimit_memmax,
Willy Tarreau87b09662015-04-03 00:22:06 +02001581 (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)),
Willy Tarreaud0256482015-01-15 21:45:22 +01001582 global.maxconn);
1583 exit(1);
1584 }
1585
1586 if (global.maxsslconn > sides * global.maxconn)
1587 global.maxsslconn = sides * global.maxconn;
1588
1589 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1590 fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn);
1591 }
1592#endif
1593 else if (!global.maxconn) {
1594 /* memmax and maxsslconn are known/unused, compute maxconn automatically */
1595 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1596 int64_t mem = global.rlimit_memmax * 1048576ULL;
1597 int64_t clearmem;
1598
1599 if (global.ssl_used_frontend || global.ssl_used_backend)
1600 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1601
1602 mem -= global.maxzlibmem;
1603 mem = mem * MEM_USABLE_RATIO;
1604
1605 clearmem = mem;
1606 if (sides)
1607 clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn;
1608
Willy Tarreau87b09662015-04-03 00:22:06 +02001609 global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01001610 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001611#ifdef SYSTEM_MAXCONN
1612 if (global.maxconn > DEFAULT_MAXCONN)
1613 global.maxconn = DEFAULT_MAXCONN;
1614#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01001615
1616 if (clearmem <= 0 || !global.maxconn) {
1617 Alert("Cannot compute the automatic maxconn because global.maxsslconn is already too "
1618 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1619 "is %d, but %d was found.\n",
1620 global.rlimit_memmax,
1621 (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)),
1622 global.maxsslconn);
1623 exit(1);
1624 }
1625
1626 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
1627 if (sides && global.maxsslconn > sides * global.maxconn) {
1628 fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn "
1629 "to be limited to %d. Better reduce global.maxsslconn to get more "
1630 "room for extra connections.\n", global.maxsslconn, global.maxconn);
1631 }
1632 fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn);
1633 }
1634 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001635
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001636 if (!global.maxpipes) {
1637 /* maxpipes not specified. Count how many frontends and backends
1638 * may be using splicing, and bound that to maxconn.
1639 */
1640 struct proxy *cur;
1641 int nbfe = 0, nbbe = 0;
1642
1643 for (cur = proxy; cur; cur = cur->next) {
1644 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
1645 if (cur->cap & PR_CAP_FE)
1646 nbfe += cur->maxconn;
1647 if (cur->cap & PR_CAP_BE)
Willy Tarreauafb48762009-01-25 10:42:05 +01001648 nbbe += cur->fullconn ? cur->fullconn : global.maxconn;
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001649 }
1650 }
1651 global.maxpipes = MAX(nbfe, nbbe);
1652 if (global.maxpipes > global.maxconn)
1653 global.maxpipes = global.maxconn;
Willy Tarreau686ac822009-01-25 14:06:58 +01001654 global.maxpipes /= 4;
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001655 }
1656
1657
Willy Tarreauabacc2c2011-09-07 14:26:33 +02001658 global.hardmaxconn = global.maxconn; /* keep this max value */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001659 global.maxsock += global.maxconn * 2; /* each connection needs two sockets */
Willy Tarreau3ec79b92009-01-18 20:39:42 +01001660 global.maxsock += global.maxpipes * 2; /* each pipe needs two FDs */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001661
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001662 if (global.stats_fe)
1663 global.maxsock += global.stats_fe->maxconn;
1664
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001665 if (cfg_peers) {
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001666 /* peers also need to bypass global maxconn */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001667 struct peers *p = cfg_peers;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001668
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001669 for (p = cfg_peers; p; p = p->next)
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001670 if (p->peers_fe)
1671 global.maxsock += p->peers_fe->maxconn;
1672 }
1673
Willy Tarreau1db37712007-06-03 17:16:49 +02001674 if (global.tune.maxpollevents <= 0)
1675 global.tune.maxpollevents = MAX_POLL_EVENTS;
1676
Willy Tarreau6f4a82c2009-03-21 20:43:57 +01001677 if (global.tune.recv_enough == 0)
1678 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
1679
Willy Tarreau27097842015-09-28 13:53:23 +02001680 if (global.tune.maxrewrite < 0)
1681 global.tune.maxrewrite = MAXREWRITE;
1682
Willy Tarreau27a674e2009-08-17 07:23:33 +02001683 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
1684 global.tune.maxrewrite = global.tune.bufsize / 2;
1685
Willy Tarreaubaaee002006-06-26 02:48:02 +02001686 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
1687 /* command line debug mode inhibits configuration mode */
William Lallemand095ba4c2017-06-01 17:38:50 +02001688 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001689 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
1690 }
1691
William Lallemand095ba4c2017-06-01 17:38:50 +02001692 if (arg_mode & MODE_DAEMON) {
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001693 /* command line daemon mode inhibits foreground and debug modes mode */
1694 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
William Lallemand095ba4c2017-06-01 17:38:50 +02001695 global.mode |= arg_mode & MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001696 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001697
1698 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001699
William Lallemand095ba4c2017-06-01 17:38:50 +02001700 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
1701 Warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
1702 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001703 }
1704
William Lallemand095ba4c2017-06-01 17:38:50 +02001705 if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001706 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
1707 Warning("<nbproc> is only meaningful in daemon mode. Setting limit to 1 process.\n");
1708 global.nbproc = 1;
1709 }
1710
1711 if (global.nbproc < 1)
1712 global.nbproc = 1;
1713
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001714 swap_buffer = calloc(1, global.tune.bufsize);
1715 get_http_auth_buff = calloc(1, global.tune.bufsize);
Thierry FOURNIER7e25df32015-07-24 19:31:59 +02001716 static_table_key = calloc(1, sizeof(*static_table_key));
Willy Tarreau8096de92010-02-26 11:12:27 +01001717
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02001718 fdinfo = calloc(1, sizeof(struct fdinfo) * (global.maxsock));
1719 fdtab = calloc(1, sizeof(struct fdtab) * (global.maxsock));
Willy Tarreauef1d1f82007-04-16 00:25:25 +02001720 /*
1721 * Note: we could register external pollers here.
1722 * Built-in pollers have been registered before main().
1723 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02001724
Willy Tarreau43b78992009-01-25 15:42:27 +01001725 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001726 disable_poller("kqueue");
1727
Willy Tarreau43b78992009-01-25 15:42:27 +01001728 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001729 disable_poller("epoll");
1730
Willy Tarreau43b78992009-01-25 15:42:27 +01001731 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001732 disable_poller("poll");
1733
Willy Tarreau43b78992009-01-25 15:42:27 +01001734 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001735 disable_poller("select");
1736
1737 /* Note: we could disable any poller by name here */
1738
Christopher Fauletb3f4e142016-03-07 12:46:38 +01001739 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02001740 list_pollers(stderr);
Christopher Fauletb3f4e142016-03-07 12:46:38 +01001741 fprintf(stderr, "\n");
1742 list_filters(stderr);
1743 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02001744
Willy Tarreau4f60f162007-04-08 16:39:58 +02001745 if (!init_pollers()) {
Willy Tarreau3fa87b12013-03-31 14:41:15 +02001746 Alert("No polling mechanism available.\n"
1747 " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n"
1748 " is too low on this platform to support maxconn and the number of listeners\n"
1749 " and servers. You should rebuild haproxy specifying your system using TARGET=\n"
1750 " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n"
Prach Pongpanichb837e682013-05-14 20:56:28 +02001751 " global maxconn setting to accommodate the system's limitation. For reference,\n"
Willy Tarreau3fa87b12013-03-31 14:41:15 +02001752 " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n"
1753 " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n"
1754 " check build settings using 'haproxy -vv'.\n\n",
1755 FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001756 exit(1);
1757 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02001758 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
1759 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001760 }
1761
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001762 if (!global.node)
1763 global.node = strdup(hostname);
1764
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01001765 if (!hlua_post_init())
1766 exit(1);
Thomas Holmes6abded42015-05-12 16:23:58 +01001767
Baptiste Assmann325137d2015-04-13 23:40:55 +02001768 /* initialize structures for name resolution */
Baptiste Assmann5cd1b922017-02-02 22:44:15 +01001769 if (!dns_init_resolvers(0))
Baptiste Assmann325137d2015-04-13 23:40:55 +02001770 exit(1);
Maxime de Roucy0f503922016-05-13 23:52:55 +02001771
1772 free(err_msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001773}
1774
Simon Horman6fb82592011-07-15 13:14:11 +09001775static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +09001776{
Simon Hormanac821422011-07-15 13:14:09 +09001777 struct acl_term_suite *suite, *suiteb;
1778 struct acl_term *term, *termb;
1779
Simon Horman6fb82592011-07-15 13:14:11 +09001780 if (!cond)
1781 return;
1782
1783 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
1784 list_for_each_entry_safe(term, termb, &suite->terms, list) {
1785 LIST_DEL(&term->list);
1786 free(term);
Simon Hormanac821422011-07-15 13:14:09 +09001787 }
Simon Horman6fb82592011-07-15 13:14:11 +09001788 LIST_DEL(&suite->list);
1789 free(suite);
1790 }
1791
1792 free(cond);
1793}
1794
1795static void deinit_tcp_rules(struct list *rules)
1796{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02001797 struct act_rule *trule, *truleb;
Simon Horman6fb82592011-07-15 13:14:11 +09001798
1799 list_for_each_entry_safe(trule, truleb, rules, list) {
Simon Hormanac821422011-07-15 13:14:09 +09001800 LIST_DEL(&trule->list);
Simon Horman6fb82592011-07-15 13:14:11 +09001801 deinit_acl_cond(trule->cond);
Simon Hormanac821422011-07-15 13:14:09 +09001802 free(trule);
1803 }
1804}
1805
Simon Horman6fb82592011-07-15 13:14:11 +09001806static void deinit_stick_rules(struct list *rules)
1807{
1808 struct sticking_rule *rule, *ruleb;
1809
1810 list_for_each_entry_safe(rule, ruleb, rules, list) {
1811 LIST_DEL(&rule->list);
1812 deinit_acl_cond(rule->cond);
Christopher Faulet476e5d02016-10-26 11:34:47 +02001813 release_sample_expr(rule->expr);
Simon Horman6fb82592011-07-15 13:14:11 +09001814 free(rule);
1815 }
1816}
1817
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001818void deinit(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001819{
Willy Tarreau4d2d0982007-05-14 00:39:29 +02001820 struct proxy *p = proxy, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001821 struct cap_hdr *h,*h_next;
1822 struct server *s,*s_next;
1823 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001824 struct acl_cond *cond, *condb;
1825 struct hdr_exp *exp, *expb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001826 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001827 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001828 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001829 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01001830 struct wordlist *wl, *wlb;
Willy Tarreauf4f04122010-01-28 18:10:50 +01001831 struct cond_wordlist *cwl, *cwlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001832 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +02001833 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +01001834 struct logformat_node *lf, *lfb;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001835 struct bind_conf *bind_conf, *bind_back;
Willy Tarreaucdb737e2016-12-21 18:43:10 +01001836 struct build_opts_str *bol, *bolb;
Willy Tarreau05554e62016-12-21 20:46:26 +01001837 struct post_deinit_fct *pdf;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001838 int i;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001839
Willy Tarreau24f4efa2010-08-27 17:56:48 +02001840 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001841 while (p) {
Willy Tarreau8113a5d2012-10-04 08:01:43 +02001842 free(p->conf.file);
Willy Tarreaua534fea2008-08-03 12:19:50 +02001843 free(p->id);
1844 free(p->check_req);
1845 free(p->cookie_name);
1846 free(p->cookie_domain);
1847 free(p->url_param_name);
1848 free(p->capture_name);
1849 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +09001850 free(p->rdp_cookie_name);
Willy Tarreau62a61232013-04-12 18:13:46 +02001851 if (p->conf.logformat_string != default_http_log_format &&
1852 p->conf.logformat_string != default_tcp_log_format &&
1853 p->conf.logformat_string != clf_http_log_format)
1854 free(p->conf.logformat_string);
Willy Tarreau196729e2012-05-31 19:30:26 +02001855
Willy Tarreau62a61232013-04-12 18:13:46 +02001856 free(p->conf.lfs_file);
1857 free(p->conf.uniqueid_format_string);
1858 free(p->conf.uif_file);
Godbachaf1a75d2013-10-02 17:10:11 +08001859 free(p->lbprm.map.srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001860
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001861 if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format)
1862 free(p->conf.logformat_sd_string);
1863 free(p->conf.lfsd_file);
1864
Willy Tarreaua534fea2008-08-03 12:19:50 +02001865 for (i = 0; i < HTTP_ERR_SIZE; i++)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02001866 chunk_destroy(&p->errmsg[i]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001867
Willy Tarreauf4f04122010-01-28 18:10:50 +01001868 list_for_each_entry_safe(cwl, cwlb, &p->req_add, list) {
1869 LIST_DEL(&cwl->list);
1870 free(cwl->s);
1871 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01001872 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001873
Willy Tarreauf4f04122010-01-28 18:10:50 +01001874 list_for_each_entry_safe(cwl, cwlb, &p->rsp_add, list) {
1875 LIST_DEL(&cwl->list);
1876 free(cwl->s);
1877 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01001878 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001879
Willy Tarreaub80c2302007-11-30 20:51:32 +01001880 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
1881 LIST_DEL(&cond->list);
1882 prune_acl_cond(cond);
1883 free(cond);
1884 }
1885
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001886 for (exp = p->req_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001887 if (exp->preg) {
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02001888 regex_free(exp->preg);
1889 free(exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001890 }
1891
Willy Tarreau98d04852015-05-26 12:18:29 +02001892 free((char *)exp->replace);
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001893 expb = exp;
1894 exp = exp->next;
1895 free(expb);
1896 }
1897
1898 for (exp = p->rsp_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001899 if (exp->preg) {
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02001900 regex_free(exp->preg);
1901 free(exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001902 }
1903
Willy Tarreau98d04852015-05-26 12:18:29 +02001904 free((char *)exp->replace);
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001905 expb = exp;
1906 exp = exp->next;
1907 free(expb);
1908 }
1909
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001910 /* build a list of unique uri_auths */
1911 if (!ua)
1912 ua = p->uri_auth;
1913 else {
1914 /* check if p->uri_auth is unique */
1915 for (uap = ua; uap; uap=uap->next)
1916 if (uap == p->uri_auth)
1917 break;
1918
Willy Tarreauaccc4e12008-06-24 11:14:45 +02001919 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001920 /* add it, if it is */
1921 p->uri_auth->next = ua;
1922 ua = p->uri_auth;
1923 }
1924 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02001925
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02001926 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
1927 LIST_DEL(&acl->list);
1928 prune_acl(acl);
1929 free(acl);
1930 }
1931
Willy Tarreau4a5cade2012-04-05 21:09:48 +02001932 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
1933 LIST_DEL(&srule->list);
1934 prune_acl_cond(srule->cond);
1935 free(srule->cond);
1936 free(srule);
1937 }
1938
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001939 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
1940 LIST_DEL(&rule->list);
Willy Tarreauf51658d2014-04-23 01:21:56 +02001941 if (rule->cond) {
1942 prune_acl_cond(rule->cond);
1943 free(rule->cond);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01001944 free(rule->file);
Willy Tarreauf51658d2014-04-23 01:21:56 +02001945 }
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02001946 free(rule);
1947 }
1948
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001949 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
1950 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +01001951 if (rdr->cond) {
1952 prune_acl_cond(rdr->cond);
1953 free(rdr->cond);
1954 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001955 free(rdr->rdr_str);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01001956 list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) {
1957 LIST_DEL(&lf->list);
1958 free(lf);
1959 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02001960 free(rdr);
1961 }
1962
William Lallemand0f99e342011-10-12 17:50:54 +02001963 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
1964 LIST_DEL(&log->list);
1965 free(log);
1966 }
1967
William Lallemand723b73a2012-02-08 16:37:49 +01001968 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
1969 LIST_DEL(&lf->list);
1970 free(lf);
1971 }
1972
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001973 list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) {
1974 LIST_DEL(&lf->list);
1975 free(lf);
1976 }
1977
Simon Hormanac821422011-07-15 13:14:09 +09001978 deinit_tcp_rules(&p->tcp_req.inspect_rules);
1979 deinit_tcp_rules(&p->tcp_req.l4_rules);
1980
Simon Horman6fb82592011-07-15 13:14:11 +09001981 deinit_stick_rules(&p->storersp_rules);
1982 deinit_stick_rules(&p->sticking_rules);
1983
Willy Tarreaubaaee002006-06-26 02:48:02 +02001984 h = p->req_cap;
1985 while (h) {
1986 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001987 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001988 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001989 free(h);
1990 h = h_next;
1991 }/* end while(h) */
1992
1993 h = p->rsp_cap;
1994 while (h) {
1995 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02001996 free(h->name);
Willy Tarreaucf7f3202007-05-13 22:46:04 +02001997 pool_destroy2(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001998 free(h);
1999 h = h_next;
2000 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002001
Willy Tarreaubaaee002006-06-26 02:48:02 +02002002 s = p->srv;
2003 while (s) {
2004 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002005
Willy Tarreau5b3a2022012-09-28 15:01:02 +02002006 if (s->check.task) {
2007 task_delete(s->check.task);
2008 task_free(s->check.task);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002009 }
Simon Hormand60d6912013-11-25 10:46:36 +09002010 if (s->agent.task) {
2011 task_delete(s->agent.task);
2012 task_free(s->agent.task);
2013 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002014
Willy Tarreau2e993902011-10-31 11:53:20 +01002015 if (s->warmup) {
2016 task_delete(s->warmup);
2017 task_free(s->warmup);
2018 }
2019
Willy Tarreaua534fea2008-08-03 12:19:50 +02002020 free(s->id);
2021 free(s->cookie);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002022 free(s->check.bi);
2023 free(s->check.bo);
Simon Hormand60d6912013-11-25 10:46:36 +09002024 free(s->agent.bi);
2025 free(s->agent.bo);
James Brown55f9ff12015-10-21 18:19:05 -07002026 free(s->agent.send_string);
Sárközi, László34c01792014-09-05 10:08:23 +02002027 free((char*)s->conf.file);
Willy Tarreau17d45382016-12-22 21:16:08 +01002028
2029 if (s->use_ssl || s->check.use_ssl) {
2030 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2031 xprt_get(XPRT_SSL)->destroy_srv(s);
2032 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002033 free(s);
2034 s = s_next;
2035 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002036
Willy Tarreau4348fad2012-09-20 16:48:07 +02002037 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002038 /*
2039 * Zombie proxy, the listener just pretend to be up
2040 * because they still hold an opened fd.
2041 * Close it and give the listener its real state.
2042 */
2043 if (p->state == PR_STSTOPPED && l->state >= LI_ZOMBIE) {
2044 close(l->fd);
2045 l->state = LI_INIT;
2046 }
Willy Tarreauf6e2cc72010-09-03 10:38:17 +02002047 unbind_listener(l);
2048 delete_listener(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002049 LIST_DEL(&l->by_fe);
2050 LIST_DEL(&l->by_bind);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002051 free(l->name);
2052 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002053 free(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002054 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002055
Willy Tarreau4348fad2012-09-20 16:48:07 +02002056 /* Release unused SSL configs. */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002057 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01002058 if (bind_conf->xprt->destroy_bind_conf)
2059 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002060 free(bind_conf->file);
2061 free(bind_conf->arg);
2062 LIST_DEL(&bind_conf->by_fe);
2063 free(bind_conf);
2064 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02002065
Christopher Fauletd7c91962015-04-30 11:48:27 +02002066 flt_deinit(p);
2067
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002068 free(p->desc);
2069 free(p->fwdfor_hdr_name);
2070
Willy Tarreauff011f22011-01-06 17:51:27 +01002071 free_http_req_rules(&p->http_req_rules);
Sasha Pachev218f0642014-06-16 12:05:59 -06002072 free_http_res_rules(&p->http_res_rules);
Willy Tarreau918ff602011-07-25 16:33:49 +02002073 free(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002074
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002075 pool_destroy2(p->req_cap_pool);
2076 pool_destroy2(p->rsp_cap_pool);
Simon Hormanb08584a2011-07-15 13:14:10 +09002077 pool_destroy2(p->table.pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002078
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002079 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002080 p = p->next;
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002081 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002082 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02002083
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002084 while (ua) {
2085 uap = ua;
2086 ua = ua->next;
2087
Willy Tarreaua534fea2008-08-03 12:19:50 +02002088 free(uap->uri_prefix);
2089 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002090 free(uap->node);
2091 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002092
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002093 userlist_free(uap->userlist);
Willy Tarreauff011f22011-01-06 17:51:27 +01002094 free_http_req_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002095
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002096 free(uap);
2097 }
2098
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002099 userlist_free(userlist);
2100
David Carlier834cb2e2015-09-25 12:02:25 +01002101 cfg_unregister_sections();
2102
2103 free_trash_buffers();
2104 chunk_destroy(&trash);
2105
Willy Tarreaudd815982007-10-16 12:25:14 +02002106 protocol_unbind_all();
2107
Willy Tarreau05554e62016-12-21 20:46:26 +01002108 list_for_each_entry(pdf, &post_deinit_list, list)
2109 pdf->fct();
2110
Joe Williamsdf5b38f2010-12-29 17:05:48 +01002111 free(global.log_send_hostname); global.log_send_hostname = NULL;
Dragan Dosen43885c72015-10-01 13:18:13 +02002112 chunk_destroy(&global.log_tag);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002113 free(global.chroot); global.chroot = NULL;
2114 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002115 free(global.node); global.node = NULL;
2116 free(global.desc); global.desc = NULL;
Godbach4cc1b0d2013-06-26 16:49:51 +08002117 free(fdinfo); fdinfo = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002118 free(fdtab); fdtab = NULL;
2119 free(oldpids); oldpids = NULL;
David Carlier834cb2e2015-09-25 12:02:25 +01002120 free(static_table_key); static_table_key = NULL;
2121 free(get_http_auth_buff); get_http_auth_buff = NULL;
2122 free(swap_buffer); swap_buffer = NULL;
Willy Tarreaue9b26022011-08-01 20:57:55 +02002123 free(global_listener_queue_task); global_listener_queue_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002124
William Lallemand0f99e342011-10-12 17:50:54 +02002125 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
2126 LIST_DEL(&log->list);
2127 free(log);
2128 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01002129 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02002130 free(wl->s);
Willy Tarreau477ecd82010-01-03 21:12:30 +01002131 LIST_DEL(&wl->list);
2132 free(wl);
2133 }
2134
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002135 list_for_each_entry_safe(bol, bolb, &build_opts_list, list) {
2136 if (bol->must_free)
2137 free((void *)bol->str);
2138 LIST_DEL(&bol->list);
2139 free(bol);
2140 }
2141
Christopher Fauletff2613e2016-11-09 11:36:17 +01002142 vars_prune(&global.vars, NULL, NULL);
2143
Willy Tarreau87b09662015-04-03 00:22:06 +02002144 pool_destroy2(pool2_stream);
Willy Tarreaufeb76402015-04-03 14:10:06 +02002145 pool_destroy2(pool2_session);
Willy Tarreauf2943dc2012-10-26 20:10:28 +02002146 pool_destroy2(pool2_connection);
Willy Tarreaub686afd2017-02-08 11:06:11 +01002147 pool_destroy2(pool2_trash);
Willy Tarreau9b28e032012-10-12 23:49:43 +02002148 pool_destroy2(pool2_buffer);
Willy Tarreau332f8bf2007-05-13 21:36:56 +02002149 pool_destroy2(pool2_requri);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02002150 pool_destroy2(pool2_task);
Willy Tarreau086b3b42007-05-13 21:45:51 +02002151 pool_destroy2(pool2_capture);
Willy Tarreaue4d7e552007-05-13 20:19:55 +02002152 pool_destroy2(pool2_pendconn);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002153 pool_destroy2(pool2_sig_handlers);
Willy Tarreau34eb6712011-10-24 18:15:04 +02002154 pool_destroy2(pool2_hdr_idx);
Willy Tarreau63986c72015-04-03 22:55:33 +02002155 pool_destroy2(pool2_http_txn);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002156 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002157} /* end deinit() */
2158
Willy Tarreaubaaee002006-06-26 02:48:02 +02002159
Willy Tarreau918ff602011-07-25 16:33:49 +02002160/* Runs the polling loop */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01002161static void run_poll_loop()
Willy Tarreau4f60f162007-04-08 16:39:58 +02002162{
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002163 int next;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002164
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002165 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002166 while (1) {
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002167 /* Process a few tasks */
2168 process_runnable_tasks();
2169
Willy Tarreau29857942009-05-10 09:01:21 +02002170 /* check if we caught some signals and process them */
2171 signal_process_queue();
2172
Willy Tarreau58b458d2008-06-29 22:40:23 +02002173 /* Check if we can expire some tasks */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002174 next = wake_expired_tasks();
Willy Tarreau4f60f162007-04-08 16:39:58 +02002175
Willy Tarreauaf7ad002010-08-31 15:39:26 +02002176 /* stop when there's nothing left to do */
2177 if (jobs == 0)
Willy Tarreau4f60f162007-04-08 16:39:58 +02002178 break;
2179
Willy Tarreau10146c92015-04-13 20:44:19 +02002180 /* expire immediately if events are pending */
Christopher Faulet34c5cc92016-12-06 09:15:30 +01002181 if (fd_cache_num || tasks_run_queue || signal_queue_len || applets_active_queue)
Willy Tarreau10146c92015-04-13 20:44:19 +02002182 next = now_ms;
2183
Willy Tarreau58b458d2008-06-29 22:40:23 +02002184 /* The poller will ensure it returns around <next> */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002185 cur_poller.poll(&cur_poller, next);
Willy Tarreau033cd9d2014-01-25 19:24:15 +01002186 fd_process_cached_events();
Willy Tarreau3c595ac2015-04-19 09:59:31 +02002187 applet_run_active();
Willy Tarreau4f60f162007-04-08 16:39:58 +02002188 }
2189}
2190
Willy Tarreaue9b26022011-08-01 20:57:55 +02002191/* This is the global management task for listeners. It enables listeners waiting
2192 * for global resources when there are enough free resource, or at least once in
2193 * a while. It is designed to be called as a task.
2194 */
2195static struct task *manage_global_listener_queue(struct task *t)
2196{
2197 int next = TICK_ETERNITY;
Willy Tarreaue9b26022011-08-01 20:57:55 +02002198 /* queue is empty, nothing to do */
2199 if (LIST_ISEMPTY(&global_listener_queue))
2200 goto out;
2201
2202 /* If there are still too many concurrent connections, let's wait for
2203 * some of them to go away. We don't need to re-arm the timer because
2204 * each of them will scan the queue anyway.
2205 */
2206 if (unlikely(actconn >= global.maxconn))
2207 goto out;
2208
2209 /* We should periodically try to enable listeners waiting for a global
2210 * resource here, because it is possible, though very unlikely, that
2211 * they have been blocked by a temporary lack of global resource such
2212 * as a file descriptor or memory and that the temporary condition has
2213 * disappeared.
2214 */
Willy Tarreauabacc2c2011-09-07 14:26:33 +02002215 dequeue_all_listeners(&global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02002216
2217 out:
2218 t->expire = next;
2219 task_queue(t);
2220 return t;
2221}
Willy Tarreau4f60f162007-04-08 16:39:58 +02002222
William Lallemande20b6a62017-06-01 17:38:55 +02002223void mworker_pipe_handler(int fd)
2224{
2225 char c;
2226
2227 while (read(fd, &c, 1) == -1) {
2228 if (errno == EINTR)
2229 continue;
2230 if (errno == EAGAIN) {
2231 fd_cant_recv(fd);
2232 return;
2233 }
2234 break;
2235 }
2236
2237 deinit();
2238 exit(EXIT_FAILURE);
2239 return;
2240}
2241
2242void mworker_pipe_register(int pipefd[2])
2243{
2244 close(mworker_pipe[1]); /* close the write end of the master pipe in the children */
2245
2246 fcntl(mworker_pipe[0], F_SETFL, O_NONBLOCK);
2247 fdtab[mworker_pipe[0]].owner = mworker_pipe;
2248 fdtab[mworker_pipe[0]].iocb = mworker_pipe_handler;
2249 fd_insert(mworker_pipe[0]);
2250 fd_want_recv(mworker_pipe[0]);
2251 }
2252
2253
Willy Tarreaubaaee002006-06-26 02:48:02 +02002254int main(int argc, char **argv)
2255{
2256 int err, retry;
2257 struct rlimit limit;
Emeric Bruncf20bf12010-10-22 16:06:11 +02002258 char errmsg[100];
Willy Tarreau269ab312012-09-05 08:02:48 +02002259 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002260
Emeric Bruncf20bf12010-10-22 16:06:11 +02002261 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002262 signal_register_fct(SIGQUIT, dump, SIGQUIT);
2263 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
2264 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
William Lallemand73b85e72017-06-01 17:38:51 +02002265 signal_register_fct(SIGUSR2, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002266
Willy Tarreaue437c442010-03-17 18:02:46 +01002267 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
2268 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
2269 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002270 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002271 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002272
Willy Tarreaudc23a922011-02-16 11:10:36 +01002273 /* ulimits */
2274 if (!global.rlimit_nofile)
2275 global.rlimit_nofile = global.maxsock;
2276
2277 if (global.rlimit_nofile) {
2278 limit.rlim_cur = limit.rlim_max = global.rlimit_nofile;
2279 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
Willy Tarreauef635472016-06-21 11:48:18 +02002280 /* try to set it to the max possible at least */
2281 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau164dd0b2016-06-21 11:51:59 +02002282 limit.rlim_cur = limit.rlim_max;
2283 if (setrlimit(RLIMIT_NOFILE, &limit) != -1)
2284 getrlimit(RLIMIT_NOFILE, &limit);
2285
Willy Tarreauef635472016-06-21 11:48:18 +02002286 Warning("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n", argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
2287 global.rlimit_nofile = limit.rlim_cur;
Willy Tarreaudc23a922011-02-16 11:10:36 +01002288 }
2289 }
2290
2291 if (global.rlimit_memmax) {
2292 limit.rlim_cur = limit.rlim_max =
Willy Tarreau70060452015-12-14 12:46:07 +01002293 global.rlimit_memmax * 1048576ULL;
Willy Tarreaudc23a922011-02-16 11:10:36 +01002294#ifdef RLIMIT_AS
2295 if (setrlimit(RLIMIT_AS, &limit) == -1) {
2296 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2297 argv[0], global.rlimit_memmax);
2298 }
2299#else
2300 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
2301 Warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2302 argv[0], global.rlimit_memmax);
2303 }
2304#endif
2305 }
2306
Olivier Houchardf73629d2017-04-05 22:33:04 +02002307 if (old_unixsocket) {
William Lallemand85b0bd92017-06-01 17:38:53 +02002308 if (strcmp("/dev/null", old_unixsocket) != 0) {
2309 if (get_old_sockets(old_unixsocket) != 0) {
2310 Alert("Failed to get the sockets from the old process!\n");
2311 if (!(global.mode & MODE_MWORKER))
2312 exit(1);
2313 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02002314 }
2315 }
William Lallemand85b0bd92017-06-01 17:38:53 +02002316 get_cur_unixsocket();
2317
Willy Tarreaubaaee002006-06-26 02:48:02 +02002318 /* We will loop at most 100 times with 10 ms delay each time.
2319 * That's at most 1 second. We only send a signal to old pids
2320 * if we cannot grab at least one port.
2321 */
2322 retry = MAX_START_RETRIES;
2323 err = ERR_NONE;
2324 while (retry >= 0) {
2325 struct timeval w;
2326 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01002327 /* exit the loop on no error or fatal error */
2328 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002329 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02002330 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002331 break;
2332
2333 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
2334 * listening sockets. So on those platforms, it would be wiser to
2335 * simply send SIGUSR1, which will not be undoable.
2336 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02002337 if (tell_old_pids(SIGTTOU) == 0) {
2338 /* no need to wait if we can't contact old pids */
2339 retry = 0;
2340 continue;
2341 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002342 /* give some time to old processes to stop listening */
2343 w.tv_sec = 0;
2344 w.tv_usec = 10*1000;
2345 select(0, NULL, NULL, NULL, &w);
2346 retry--;
2347 }
2348
2349 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01002350 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02002351 if (retry != MAX_START_RETRIES && nb_oldpids) {
2352 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002353 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02002354 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002355 exit(1);
2356 }
2357
2358 if (listeners == 0) {
Willy Tarreauf2ee0162015-08-09 11:01:51 +02002359 Alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002360 /* Note: we don't have to send anything to the old pids because we
2361 * never stopped them. */
2362 exit(1);
2363 }
2364
Emeric Bruncf20bf12010-10-22 16:06:11 +02002365 err = protocol_bind_all(errmsg, sizeof(errmsg));
2366 if ((err & ~ERR_WARN) != ERR_NONE) {
2367 if ((err & ERR_ALERT) || (err & ERR_WARN))
2368 Alert("[%s.main()] %s.\n", argv[0], errmsg);
2369
Willy Tarreaudd815982007-10-16 12:25:14 +02002370 Alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
2371 protocol_unbind_all(); /* cleanup everything we can */
2372 if (nb_oldpids)
2373 tell_old_pids(SIGTTIN);
2374 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02002375 } else if (err & ERR_WARN) {
2376 Alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02002377 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02002378 /* Ok, all listener should now be bound, close any leftover sockets
2379 * the previous process gave us, we don't need them anymore
2380 */
2381 while (xfer_sock_list != NULL) {
2382 struct xfer_sock_list *tmpxfer = xfer_sock_list->next;
2383 close(xfer_sock_list->fd);
2384 free(xfer_sock_list->iface);
2385 free(xfer_sock_list->namespace);
2386 free(xfer_sock_list);
2387 xfer_sock_list = tmpxfer;
2388 }
Willy Tarreaudd815982007-10-16 12:25:14 +02002389
Willy Tarreaubaaee002006-06-26 02:48:02 +02002390 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002391 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
2392 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002393
Willy Tarreaubaaee002006-06-26 02:48:02 +02002394 /* MODE_QUIET can inhibit alerts and warnings below this line */
2395
2396 global.mode &= ~MODE_STARTING;
2397 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
2398 /* detach from the tty */
2399 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002400 }
2401
2402 /* open log & pid files before the chroot */
William Lallemand095ba4c2017-06-01 17:38:50 +02002403 if (global.mode & MODE_DAEMON && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002404 unlink(global.pidfile);
2405 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
2406 if (pidfd < 0) {
2407 Alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
2408 if (nb_oldpids)
2409 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02002410 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002411 exit(1);
2412 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002413 }
2414
Willy Tarreaub38651a2007-03-24 17:24:39 +01002415 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
2416 Alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002417 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002418 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01002419 exit(1);
2420 }
2421
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002422 /* If the user is not root, we'll still let him try the configuration
2423 * but we inform him that unexpected behaviour may occur.
2424 */
2425 if ((global.last_checks & LSTCHK_NETADM) && getuid())
2426 Warning("[%s.main()] Some options which require full privileges"
2427 " might not work well.\n"
2428 "", argv[0]);
2429
William Lallemand095ba4c2017-06-01 17:38:50 +02002430 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
2431
2432 /* chroot if needed */
2433 if (global.chroot != NULL) {
2434 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
2435 Alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
2436 if (nb_oldpids)
2437 tell_old_pids(SIGTTIN);
2438 protocol_unbind_all();
2439 exit(1);
2440 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02002441 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02002442 }
2443
Willy Tarreaubaaee002006-06-26 02:48:02 +02002444 if (nb_oldpids)
Willy Tarreaubb545b42010-08-25 12:58:59 +02002445 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002446
William Lallemand8a361b52017-06-20 11:20:33 +02002447 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
2448 nb_oldpids = 0;
2449 free(oldpids);
2450 oldpids = NULL;
2451 }
2452
2453
Willy Tarreaubaaee002006-06-26 02:48:02 +02002454 /* Note that any error at this stage will be fatal because we will not
2455 * be able to restart the old pids.
2456 */
2457
William Lallemand095ba4c2017-06-01 17:38:50 +02002458 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
2459 /* setgid / setuid */
2460 if (global.gid) {
2461 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
2462 Warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
2463 " without 'uid'/'user' is generally useless.\n", argv[0]);
2464
2465 if (setgid(global.gid) == -1) {
2466 Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
2467 protocol_unbind_all();
2468 exit(1);
2469 }
2470 }
Michael Schererab012dd2013-01-12 18:35:19 +01002471
William Lallemand095ba4c2017-06-01 17:38:50 +02002472 if (global.uid && setuid(global.uid) == -1) {
2473 Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
Michael Schererab012dd2013-01-12 18:35:19 +01002474 protocol_unbind_all();
2475 exit(1);
2476 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002477 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002478 /* check ulimits */
2479 limit.rlim_cur = limit.rlim_max = 0;
2480 getrlimit(RLIMIT_NOFILE, &limit);
2481 if (limit.rlim_cur < global.maxsock) {
2482 Warning("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. Please raise 'ulimit-n' to %d or more to avoid any trouble.\n",
Willy Tarreau1772ece2009-04-03 14:49:12 +02002483 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock, global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002484 }
2485
William Lallemand095ba4c2017-06-01 17:38:50 +02002486 if (global.mode & (MODE_DAEMON | MODE_MWORKER)) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002487 struct proxy *px;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002488 struct peers *curpeers;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002489 int ret = 0;
2490 int proc;
2491
William Lallemand73b85e72017-06-01 17:38:51 +02002492 children = calloc(global.nbproc, sizeof(int));
William Lallemand095ba4c2017-06-01 17:38:50 +02002493 /*
2494 * if daemon + mworker: must fork here to let a master
2495 * process live in background before forking children
2496 */
William Lallemand73b85e72017-06-01 17:38:51 +02002497
2498 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)
2499 && (global.mode & MODE_MWORKER)
2500 && (global.mode & MODE_DAEMON)) {
William Lallemand095ba4c2017-06-01 17:38:50 +02002501 ret = fork();
2502 if (ret < 0) {
2503 Alert("[%s.main()] Cannot fork.\n", argv[0]);
2504 protocol_unbind_all();
2505 exit(1); /* there has been an error */
2506 }
2507 /* parent leave to daemonize */
2508 if (ret > 0)
2509 exit(0);
2510 }
William Lallemande20b6a62017-06-01 17:38:55 +02002511
2512 if (global.mode & MODE_MWORKER) {
2513 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
2514 char *msg = NULL;
2515 /* master pipe to ensure the master is still alive */
2516 ret = pipe(mworker_pipe);
2517 if (ret < 0) {
2518 Warning("[%s.main()] Cannot create master pipe.\n", argv[0]);
2519 } else {
2520 memprintf(&msg, "%d", mworker_pipe[0]);
2521 setenv("HAPROXY_MWORKER_PIPE_RD", msg, 1);
2522 memprintf(&msg, "%d", mworker_pipe[1]);
2523 setenv("HAPROXY_MWORKER_PIPE_WR", msg, 1);
2524 free(msg);
2525 }
2526 } else {
2527 mworker_pipe[0] = atol(getenv("HAPROXY_MWORKER_PIPE_RD"));
2528 mworker_pipe[1] = atol(getenv("HAPROXY_MWORKER_PIPE_WR"));
2529 if (mworker_pipe[0] <= 0 || mworker_pipe[1] <= 0) {
2530 Warning("[%s.main()] Cannot get master pipe FDs.\n", argv[0]);
2531 }
2532 }
2533 }
2534
Willy Tarreaubaaee002006-06-26 02:48:02 +02002535 /* the father launches the required number of processes */
2536 for (proc = 0; proc < global.nbproc; proc++) {
2537 ret = fork();
2538 if (ret < 0) {
2539 Alert("[%s.main()] Cannot fork.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002540 protocol_unbind_all();
Willy Tarreaud6803712007-10-16 07:44:56 +02002541 exit(1); /* there has been an error */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002542 }
2543 else if (ret == 0) /* child breaks here */
2544 break;
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +01002545 children[proc] = ret;
Willy Tarreau269ab312012-09-05 08:02:48 +02002546 if (pidfd >= 0) {
2547 char pidstr[100];
2548 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
Willy Tarreau89efaed2013-12-13 15:14:55 +01002549 shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002550 }
Willy Tarreaudcd47712007-11-04 23:35:08 +01002551 relative_pid++; /* each child will get a different one */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002552 }
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002553
2554#ifdef USE_CPU_AFFINITY
2555 if (proc < global.nbproc && /* child */
Willy Tarreaue7597492015-04-20 11:36:57 +02002556 proc < LONGBITS && /* only the first 32/64 processes may be pinned */
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002557 global.cpu_map[proc]) /* only do this if the process has a CPU map */
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002558#ifdef __FreeBSD__
2559 cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(unsigned long), (void *)&global.cpu_map[proc]);
2560#else
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002561 sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map[proc]);
2562#endif
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002563#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02002564 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02002565 if (pidfd >= 0) {
2566 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
2567 close(pidfd);
2568 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02002569
2570 /* We won't ever use this anymore */
Willy Tarreaud137dd32010-08-25 12:49:05 +02002571 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002572
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002573 if (proc == global.nbproc) {
William Lallemand095ba4c2017-06-01 17:38:50 +02002574 if (global.mode & MODE_MWORKER) {
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002575 protocol_unbind_all();
William Lallemand73b85e72017-06-01 17:38:51 +02002576 mworker_wait();
William Lallemand1499b9b2017-06-07 15:04:47 +02002577 /* should never get there */
2578 exit(EXIT_FAILURE);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002579 }
William Lallemandcf4e4962017-06-08 19:05:48 +02002580#if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH)
Grant Zhang872f9c22017-01-21 01:10:18 +00002581 ssl_free_dh();
2582#endif
William Lallemand1499b9b2017-06-07 15:04:47 +02002583 exit(0); /* parent must leave */
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002584 }
2585
William Lallemandcb11fd22017-06-01 17:38:52 +02002586 /* child must never use the atexit function */
2587 atexit_flag = 0;
2588
William Lallemand095ba4c2017-06-01 17:38:50 +02002589 /* Must chroot and setgid/setuid in the children */
2590 /* chroot if needed */
2591 if (global.chroot != NULL) {
2592 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
2593 Alert("[%s.main()] Cannot chroot1(%s).\n", argv[0], global.chroot);
2594 if (nb_oldpids)
2595 tell_old_pids(SIGTTIN);
2596 protocol_unbind_all();
2597 exit(1);
2598 }
2599 }
2600
2601 free(global.chroot);
2602 global.chroot = NULL;
2603
2604 /* setgid / setuid */
2605 if (global.gid) {
2606 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
2607 Warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
2608 " without 'uid'/'user' is generally useless.\n", argv[0]);
2609
2610 if (setgid(global.gid) == -1) {
2611 Alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
2612 protocol_unbind_all();
2613 exit(1);
2614 }
2615 }
2616
2617 if (global.uid && setuid(global.uid) == -1) {
2618 Alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
2619 protocol_unbind_all();
2620 exit(1);
2621 }
2622
William Lallemand7f80eb22017-05-26 18:19:55 +02002623 /* pass through every cli socket, and check if it's bound to
2624 * the current process and if it exposes listeners sockets.
2625 * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork.
2626 * */
2627
2628 if (global.stats_fe) {
2629 struct bind_conf *bind_conf;
2630
2631 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
2632 if (bind_conf->level & ACCESS_FD_LISTENERS) {
2633 if (!bind_conf->bind_proc || bind_conf->bind_proc & (1UL << proc)) {
2634 global.tune.options |= GTUNE_SOCKET_TRANSFER;
2635 break;
2636 }
2637 }
2638 }
2639 }
2640
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002641 /* we might have to unbind some proxies from some processes */
2642 px = proxy;
2643 while (px != NULL) {
2644 if (px->bind_proc && px->state != PR_STSTOPPED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002645 if (!(px->bind_proc & (1UL << proc))) {
2646 if (global.tune.options & GTUNE_SOCKET_TRANSFER)
2647 zombify_proxy(px);
2648 else
2649 stop_proxy(px);
2650 }
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002651 }
2652 px = px->next;
2653 }
2654
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002655 /* we might have to unbind some peers sections from some processes */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002656 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002657 if (!curpeers->peers_fe)
2658 continue;
2659
2660 if (curpeers->peers_fe->bind_proc & (1UL << proc))
2661 continue;
2662
2663 stop_proxy(curpeers->peers_fe);
2664 /* disable this peer section so that it kills itself */
Willy Tarreau47c8c022015-09-28 16:39:25 +02002665 signal_unregister_handler(curpeers->sighandler);
2666 task_delete(curpeers->sync_task);
2667 task_free(curpeers->sync_task);
2668 curpeers->sync_task = NULL;
2669 task_free(curpeers->peers_fe->task);
2670 curpeers->peers_fe->task = NULL;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002671 curpeers->peers_fe = NULL;
2672 }
2673
Willy Tarreaubaaee002006-06-26 02:48:02 +02002674 /* if we're NOT in QUIET mode, we should now close the 3 first FDs to ensure
2675 * that we can detach from the TTY. We MUST NOT do it in other cases since
2676 * it would have already be done, and 0-2 would have been affected to listening
2677 * sockets
2678 */
Willy Tarreau106cb762008-11-16 07:40:34 +01002679 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002680 /* detach from the tty */
2681 fclose(stdin); fclose(stdout); fclose(stderr);
Willy Tarreau106cb762008-11-16 07:40:34 +01002682 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002683 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
2684 }
2685 pid = getpid(); /* update child's pid */
2686 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02002687 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002688 }
2689
Baptiste Assmann26c6eb82017-02-02 23:14:51 +01002690 /* initialize structures for name resolution */
2691 if (!dns_init_resolvers(1))
2692 exit(1);
2693
William Lallemande20b6a62017-06-01 17:38:55 +02002694 if (global.mode & MODE_MWORKER)
2695 mworker_pipe_register(mworker_pipe);
2696
Willy Tarreaudd815982007-10-16 12:25:14 +02002697 protocol_enable_all();
Willy Tarreau4f60f162007-04-08 16:39:58 +02002698 /*
2699 * That's it : the central polling loop. Run until we stop.
2700 */
2701 run_poll_loop();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002702
Willy Tarreaubaaee002006-06-26 02:48:02 +02002703 /* Do some cleanup */
2704 deinit();
2705
2706 exit(0);
2707}
2708
2709
2710/*
2711 * Local variables:
2712 * c-indent-level: 8
2713 * c-basic-offset: 8
2714 * End:
2715 */