blob: e19d89abfb95a7f57969135873ab54576f1f886e [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>
David Carlier6d5c8412017-11-29 11:02:32 +000058#include <pthread_np.h>
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020059#endif
Willy Tarreaufc6c0322012-11-16 16:12:27 +010060#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020061
62#ifdef DEBUG_FULL
63#include <assert.h>
64#endif
Tim Duesterhusd6942c82017-11-20 15:58:35 +010065#if defined(USE_SYSTEMD)
66#include <systemd/sd-daemon.h>
67#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020068
Willy Tarreau2dd0d472006-06-29 17:53:05 +020069#include <common/base64.h>
70#include <common/cfgparse.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020071#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020072#include <common/compat.h>
73#include <common/config.h>
74#include <common/defaults.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010075#include <common/errors.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020076#include <common/memory.h>
77#include <common/mini-clist.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010078#include <common/namespace.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020079#include <common/regex.h>
80#include <common/standard.h>
81#include <common/time.h>
82#include <common/uri_auth.h>
83#include <common/version.h>
Christopher Fauletbe0faa22017-08-29 15:37:10 +020084#include <common/hathreads.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020085
86#include <types/capture.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020087#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020088#include <types/global.h>
Simon Hormanac821422011-07-15 13:14:09 +090089#include <types/acl.h>
Willy Tarreau3c63fd82011-09-07 18:00:47 +020090#include <types/peers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020091
Willy Tarreau0fc45a72007-06-17 00:36:03 +020092#include <proto/acl.h>
Willy Tarreau2e845be2012-10-19 19:49:09 +020093#include <proto/arg.h>
Willy Tarreau3c595ac2015-04-19 09:59:31 +020094#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020095#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020096#include <proto/channel.h>
Willy Tarreauf2943dc2012-10-26 20:10:28 +020097#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020098#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020099#include <proto/filters.h>
Willy Tarreau34eb6712011-10-24 18:15:04 +0200100#include <proto/hdr_idx.h>
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +0100101#include <proto/hlua.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +0200102#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200103#include <proto/log.h>
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +0100104#include <proto/pattern.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +0200105#include <proto/protocol.h>
Willy Tarreau80587432006-12-24 17:47:20 +0100106#include <proto/proto_http.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200107#include <proto/proxy.h>
108#include <proto/queue.h>
109#include <proto/server.h>
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200110#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +0200111#include <proto/stream.h>
Willy Tarreau29857942009-05-10 09:01:21 +0200112#include <proto/signal.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200113#include <proto/task.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +0200114#include <proto/dns.h>
Christopher Fauletff2613e2016-11-09 11:36:17 +0100115#include <proto/vars.h>
Willy Tarreau50bc31d2017-08-16 15:35:19 +0200116#ifdef USE_OPENSSL
Grant Zhang872f9c22017-01-21 01:10:18 +0000117#include <proto/ssl_sock.h>
Willy Tarreau50bc31d2017-08-16 15:35:19 +0200118#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200119
Willy Tarreau477ecd82010-01-03 21:12:30 +0100120/* list of config files */
121static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200122int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100123int relative_pid = 1; /* process id starting at 1 */
Willy Tarreau387bd4f2017-11-10 19:08:14 +0100124unsigned long pid_bit = 1; /* bit corresponding to the process id */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200125
126/* global options */
127struct global global = {
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100128 .hard_stop_after = TICK_ETERNITY,
Willy Tarreau247a13a2012-11-15 17:38:15 +0100129 .nbproc = 1,
Christopher Fauletbe0faa22017-08-29 15:37:10 +0200130 .nbthread = 1,
William Lallemand5f232402012-04-05 18:02:55 +0200131 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200132 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
William Lallemand9d5f5482012-11-07 16:12:57 +0100133 .maxzlibmem = 0,
William Lallemandd85f9172012-11-09 17:05:39 +0100134 .comp_rate_lim = 0,
Emeric Brun850efd52014-01-29 12:24:34 +0100135 .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED,
Emeric Bruned760922010-10-22 17:59:25 +0200136 .unix_bind = {
137 .ux = {
138 .uid = -1,
139 .gid = -1,
140 .mode = 0,
141 }
142 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200143 .tune = {
144 .bufsize = BUFSIZE,
Willy Tarreau27097842015-09-28 13:53:23 +0200145 .maxrewrite = -1,
Willy Tarreau43961d52010-10-04 20:39:20 +0200146 .chksize = BUFSIZE,
Willy Tarreaua24adf02014-11-27 01:11:56 +0100147 .reserved_bufs = RESERVED_BUFS,
Willy Tarreauf3045d22015-04-29 16:24:50 +0200148 .pattern_cache = DEFAULT_PAT_LRU_SIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200149#ifdef USE_OPENSSL
Emeric Brun46635772012-11-14 11:32:56 +0100150 .sslcachesize = SSLCACHESIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200151#endif
William Lallemandf3747832012-11-09 12:33:10 +0100152 .comp_maxlevel = 1,
Willy Tarreau7e312732014-02-12 16:35:14 +0100153#ifdef DEFAULT_IDLE_TIMER
154 .idle_timer = DEFAULT_IDLE_TIMER,
155#else
156 .idle_timer = 1000, /* 1 second */
157#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200158 },
Emeric Brun76d88952012-10-05 15:47:31 +0200159#ifdef USE_OPENSSL
160#ifdef DEFAULT_MAXSSLCONN
Willy Tarreau403edff2012-09-06 11:58:37 +0200161 .maxsslconn = DEFAULT_MAXSSLCONN,
162#endif
Emeric Brun76d88952012-10-05 15:47:31 +0200163#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200164 /* others NULL OK */
165};
166
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100167struct activity activity[MAX_THREADS] __attribute__((aligned(64))) = { };
168
Willy Tarreaubaaee002006-06-26 02:48:02 +0200169/*********************************************************************/
170
171int stopping; /* non zero means stopping in progress */
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100172int killed; /* non zero means a hard-stop is triggered */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200173int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200174
175/* Here we store informations about the pids of the processes we may pause
176 * or kill. We will send them a signal every 10 ms until we can bind to all
177 * our ports. With 200 retries, that's about 2 seconds.
178 */
179#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200180static int *oldpids = NULL;
181static int oldpids_sig; /* use USR1 or TERM */
182
Olivier Houchardf73629d2017-04-05 22:33:04 +0200183/* Path to the unix socket we use to retrieve listener sockets from the old process */
184static const char *old_unixsocket;
185
William Lallemand85b0bd92017-06-01 17:38:53 +0200186static char *cur_unixsocket = NULL;
187
William Lallemandcb11fd22017-06-01 17:38:52 +0200188int atexit_flag = 0;
189
Willy Tarreaubb545b42010-08-25 12:58:59 +0200190int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200191const int zero = 0;
192const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200193const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200194
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100195char hostname[MAX_HOSTNAME_LEN];
Emeric Brun2b920a12010-09-23 18:30:22 +0200196char localpeer[MAX_HOSTNAME_LEN];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200197
Willy Tarreau89efaed2013-12-13 15:14:55 +0100198/* used from everywhere just to drain results we don't want to read and which
199 * recent versions of gcc increasingly and annoyingly complain about.
200 */
201int shut_your_big_mouth_gcc_int = 0;
202
William Lallemand73b85e72017-06-01 17:38:51 +0200203int *children = NULL; /* store PIDs of children in master workers mode */
204
205static volatile sig_atomic_t caught_signal = 0;
206static char **next_argv = NULL;
207
William Lallemande20b6a62017-06-01 17:38:55 +0200208int mworker_pipe[2];
209
Willy Tarreau08ceb102011-07-24 22:58:00 +0200210/* list of the temporarily limited listeners because of lack of resource */
211struct list global_listener_queue = LIST_HEAD_INIT(global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +0200212struct task *global_listener_queue_task;
Olivier Houchard9f6af332018-05-25 14:04:04 +0200213static struct task *manage_global_listener_queue(struct task *t, void *context, unsigned short state);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200214
Willy Tarreauff055502014-04-28 22:27:06 +0200215/* bitfield of a few warnings to emit just once (WARN_*) */
216unsigned int warned = 0;
217
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100218
219/* These are strings to be reported in the output of "haproxy -vv". They may
220 * either be constants (in which case must_free must be zero) or dynamically
221 * allocated strings to pass to free() on exit, and in this case must_free
222 * must be non-zero.
223 */
224struct list build_opts_list = LIST_HEAD_INIT(build_opts_list);
225struct build_opts_str {
226 struct list list;
227 const char *str;
228 int must_free;
229};
230
Willy Tarreaue6945732016-12-21 19:57:00 +0100231/* These functions are called just after the point where the program exits
232 * after a config validity check, so they are generally suited for resource
233 * allocation and slow initializations that should be skipped during basic
234 * config checks. The functions must return 0 on success, or a combination
235 * of ERR_* flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause
236 * and immediate exit, so the function must have emitted any useful error.
237 */
238struct list post_check_list = LIST_HEAD_INIT(post_check_list);
239struct post_check_fct {
240 struct list list;
241 int (*fct)();
242};
243
Willy Tarreau05554e62016-12-21 20:46:26 +0100244/* These functions are called when freeing the global sections at the end
245 * of deinit, after everything is stopped. They don't return anything, and
246 * they work in best effort mode as their sole goal is to make valgrind
247 * mostly happy.
248 */
249struct list post_deinit_list = LIST_HEAD_INIT(post_deinit_list);
250struct post_deinit_fct {
251 struct list list;
252 void (*fct)();
253};
254
Christopher Faulet415f6112017-07-25 16:52:58 +0200255/* These functions are called for each thread just after the thread creation
256 * and before running the scheduler. They should be used to do per-thread
257 * initializations. They must return 0 if an error occurred. */
258struct list per_thread_init_list = LIST_HEAD_INIT(per_thread_init_list);
259struct per_thread_init_fct {
260 struct list list;
261 int (*fct)();
262};
263
264/* These functions are called for each thread just after the scheduler loop and
265 * before exiting the thread. They don't return anything and, as for post-deinit
266 * functions, they work in best effort mode as their sole goal is to make
267 * valgrind mostly happy. */
268struct list per_thread_deinit_list = LIST_HEAD_INIT(per_thread_deinit_list);
269struct per_thread_deinit_fct {
270 struct list list;
271 void (*fct)();
272};
273
Willy Tarreaubaaee002006-06-26 02:48:02 +0200274/*********************************************************************/
275/* general purpose functions ***************************************/
276/*********************************************************************/
277
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100278/* used to register some build option strings at boot. Set must_free to
279 * non-zero if the string must be freed upon exit.
280 */
281void hap_register_build_opts(const char *str, int must_free)
282{
283 struct build_opts_str *b;
284
285 b = calloc(1, sizeof(*b));
286 if (!b) {
287 fprintf(stderr, "out of memory\n");
288 exit(1);
289 }
290 b->str = str;
291 b->must_free = must_free;
292 LIST_ADDQ(&build_opts_list, &b->list);
293}
294
Willy Tarreaue6945732016-12-21 19:57:00 +0100295/* used to register some initialization functions to call after the checks. */
296void hap_register_post_check(int (*fct)())
297{
298 struct post_check_fct *b;
299
300 b = calloc(1, sizeof(*b));
301 if (!b) {
302 fprintf(stderr, "out of memory\n");
303 exit(1);
304 }
305 b->fct = fct;
306 LIST_ADDQ(&post_check_list, &b->list);
307}
308
Willy Tarreau05554e62016-12-21 20:46:26 +0100309/* used to register some de-initialization functions to call after everything
310 * has stopped.
311 */
312void hap_register_post_deinit(void (*fct)())
313{
314 struct post_deinit_fct *b;
315
316 b = calloc(1, sizeof(*b));
317 if (!b) {
318 fprintf(stderr, "out of memory\n");
319 exit(1);
320 }
321 b->fct = fct;
322 LIST_ADDQ(&post_deinit_list, &b->list);
323}
324
Christopher Faulet415f6112017-07-25 16:52:58 +0200325/* used to register some initialization functions to call for each thread. */
326void hap_register_per_thread_init(int (*fct)())
327{
328 struct per_thread_init_fct *b;
329
330 b = calloc(1, sizeof(*b));
331 if (!b) {
332 fprintf(stderr, "out of memory\n");
333 exit(1);
334 }
335 b->fct = fct;
336 LIST_ADDQ(&per_thread_init_list, &b->list);
337}
338
339/* used to register some de-initialization functions to call for each thread. */
340void hap_register_per_thread_deinit(void (*fct)())
341{
342 struct per_thread_deinit_fct *b;
343
344 b = calloc(1, sizeof(*b));
345 if (!b) {
346 fprintf(stderr, "out of memory\n");
347 exit(1);
348 }
349 b->fct = fct;
350 LIST_ADDQ(&per_thread_deinit_list, &b->list);
351}
352
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100353static void display_version()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200354{
355 printf("HA-Proxy version " HAPROXY_VERSION " " HAPROXY_DATE"\n");
Willy Tarreau7b677262017-04-03 09:27:49 +0200356 printf("Copyright 2000-2017 Willy Tarreau <willy@haproxy.org>\n\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200357}
358
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100359static void display_build_opts()
Willy Tarreau7b066db2007-12-02 11:28:59 +0100360{
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100361 struct build_opts_str *item;
362
Willy Tarreau7b066db2007-12-02 11:28:59 +0100363 printf("Build options :"
364#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100365 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100366#endif
367#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100368 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100369#endif
370#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100371 "\n CC = " BUILD_CC
372#endif
373#ifdef BUILD_CFLAGS
374 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100375#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100376#ifdef BUILD_OPTIONS
377 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100378#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200379 "\n\nDefault settings :"
380 "\n maxconn = %d, bufsize = %d, maxrewrite = %d, maxpollevents = %d"
381 "\n\n",
382 DEFAULT_MAXCONN, BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200383
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100384 list_for_each_entry(item, &build_opts_list, list) {
385 puts(item->str);
386 }
387
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100388 putchar('\n');
389
Willy Tarreaube5b6852009-10-03 18:57:08 +0200390 list_pollers(stdout);
391 putchar('\n');
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100392 list_filters(stdout);
393 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100394}
395
Willy Tarreaubaaee002006-06-26 02:48:02 +0200396/*
397 * This function prints the command line usage and exits
398 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100399static void usage(char *name)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200400{
401 display_version();
402 fprintf(stderr,
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200403 "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200404 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreaua088d312015-10-08 11:58:48 +0200405 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100406 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200407 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200408 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200409 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200410 " -D goes daemon ; -C changes to <dir> before loading files.\n"
William Lallemand095ba4c2017-06-01 17:38:50 +0200411 " -W master-worker mode.\n"
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100412#if defined(USE_SYSTEMD)
413 " -Ws master-worker mode with systemd notify support.\n"
414#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200415 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200416 " -c check mode : only check config files and exit\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200417 " -n sets the maximum total # of connections (%d)\n"
418 " -m limits the usable amount of memory (in MB)\n"
419 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200420 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200421 " -p writes pids of all children to this file\n"
422#if defined(ENABLE_EPOLL)
423 " -de disables epoll() usage even when available\n"
424#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200425#if defined(ENABLE_KQUEUE)
426 " -dk disables kqueue() usage even when available\n"
427#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200428#if defined(ENABLE_POLL)
429 " -dp disables poll() usage even when available\n"
430#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +0200431#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100432 " -dS disables splice usage (broken on old kernels)\n"
433#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200434#if defined(USE_GETADDRINFO)
435 " -dG disables getaddrinfo() usage\n"
436#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000437#if defined(SO_REUSEPORT)
438 " -dR disables SO_REUSEPORT usage\n"
439#endif
Willy Tarreau3eed10e2016-11-07 21:03:16 +0100440 " -dr ignores server address resolution failures\n"
Emeric Brun850efd52014-01-29 12:24:34 +0100441 " -dV disables SSL verify on servers side\n"
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200442 " -sf/-st [pid ]* finishes/terminates old pids.\n"
Olivier Houchardf73629d2017-04-05 22:33:04 +0200443 " -x <unix_socket> get listening sockets from a unix socket\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200444 "\n",
445 name, DEFAULT_MAXCONN, cfg_maxpconn);
446 exit(1);
447}
448
449
450
451/*********************************************************************/
452/* more specific functions ***************************************/
453/*********************************************************************/
454
William Lallemand73b85e72017-06-01 17:38:51 +0200455/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
456 * pids the signal was correctly delivered to.
457 */
458static int tell_old_pids(int sig)
459{
460 int p;
461 int ret = 0;
462 for (p = 0; p < nb_oldpids; p++)
463 if (kill(oldpids[p], sig) == 0)
464 ret++;
465 return ret;
466}
467
468/* return 1 if a pid is a current child otherwise 0 */
469
470int current_child(int pid)
471{
472 int i;
473
474 for (i = 0; i < global.nbproc; i++) {
475 if (children[i] == pid)
476 return 1;
477 }
478 return 0;
479}
480
481static void mworker_signalhandler(int signum)
482{
483 caught_signal = signum;
484}
485
486static void mworker_register_signals()
487{
488 struct sigaction sa;
489 /* Here we are not using the haproxy async way
490 for signals because it does not exists in
491 the master */
492 memset(&sa, 0, sizeof(struct sigaction));
493 sa.sa_handler = &mworker_signalhandler;
494 sigaction(SIGHUP, &sa, NULL);
495 sigaction(SIGUSR1, &sa, NULL);
496 sigaction(SIGUSR2, &sa, NULL);
497 sigaction(SIGINT, &sa, NULL);
498 sigaction(SIGTERM, &sa, NULL);
499}
500
501static void mworker_block_signals()
502{
503 sigset_t set;
504
505 sigemptyset(&set);
506 sigaddset(&set, SIGUSR1);
507 sigaddset(&set, SIGUSR2);
508 sigaddset(&set, SIGHUP);
509 sigaddset(&set, SIGINT);
510 sigaddset(&set, SIGTERM);
William Lallemand6e1796e2018-06-07 11:23:40 +0200511 ha_sigmask(SIG_SETMASK, &set, NULL);
William Lallemand73b85e72017-06-01 17:38:51 +0200512}
513
514static void mworker_unblock_signals()
515{
516 sigset_t set;
517
518 sigemptyset(&set);
519 sigaddset(&set, SIGUSR1);
520 sigaddset(&set, SIGUSR2);
521 sigaddset(&set, SIGHUP);
522 sigaddset(&set, SIGINT);
523 sigaddset(&set, SIGTERM);
William Lallemand6e1796e2018-06-07 11:23:40 +0200524 ha_sigmask(SIG_UNBLOCK, &set, NULL);
William Lallemand73b85e72017-06-01 17:38:51 +0200525}
526
527static void mworker_unregister_signals()
528{
529 signal(SIGINT, SIG_DFL);
530 signal(SIGTERM, SIG_DFL);
531 signal(SIGHUP, SIG_IGN);
532 signal(SIGUSR1, SIG_IGN);
533 signal(SIGUSR2, SIG_IGN);
534}
535
536/*
537 * Send signal to every known children.
538 */
539
540static void mworker_kill(int sig)
541{
542 int i;
543
544 tell_old_pids(sig);
545 if (children) {
546 for (i = 0; i < global.nbproc; i++)
547 kill(children[i], sig);
548 }
549}
550
Willy Tarreaubaaee002006-06-26 02:48:02 +0200551/*
William Lallemand75ea0a02017-11-15 19:02:58 +0100552 * Upon a reload, the master worker needs to close all listeners FDs but the mworker_pipe
553 * fd, and the FD provided by fd@
554 */
555static void mworker_cleanlisteners()
556{
557 struct listener *l, *l_next;
558 struct proxy *curproxy;
Willy Tarreau473cf5d2017-12-05 11:14:12 +0100559 struct peers *curpeers;
William Lallemand75ea0a02017-11-15 19:02:58 +0100560
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100561 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau473cf5d2017-12-05 11:14:12 +0100562 /* we might have to unbind some peers sections from some processes */
563 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
564 if (!curpeers->peers_fe)
565 continue;
566
567 stop_proxy(curpeers->peers_fe);
568 /* disable this peer section so that it kills itself */
569 signal_unregister_handler(curpeers->sighandler);
570 task_delete(curpeers->sync_task);
571 task_free(curpeers->sync_task);
572 curpeers->sync_task = NULL;
573 task_free(curpeers->peers_fe->task);
574 curpeers->peers_fe->task = NULL;
575 curpeers->peers_fe = NULL;
576 }
William Lallemand75ea0a02017-11-15 19:02:58 +0100577
578 list_for_each_entry_safe(l, l_next, &curproxy->conf.listeners, by_fe) {
579 /* does not close if the FD is inherited with fd@
580 * from the parent process */
581 if (!(l->options & LI_O_INHERITED)) {
582 close(l->fd);
583 LIST_DEL(&l->by_fe);
584 LIST_DEL(&l->by_bind);
585 free(l->name);
586 free(l->counters);
587 free(l);
588 }
589 }
590 }
591}
592
593
594/*
William Lallemand73b85e72017-06-01 17:38:51 +0200595 * remove a pid forom the olpid array and decrease nb_oldpids
596 * return 1 pid was found otherwise return 0
597 */
598
599int delete_oldpid(int pid)
600{
601 int i;
602
603 for (i = 0; i < nb_oldpids; i++) {
604 if (oldpids[i] == pid) {
605 oldpids[i] = oldpids[nb_oldpids - 1];
606 oldpids[nb_oldpids - 1] = 0;
607 nb_oldpids--;
608 return 1;
609 }
610 }
611 return 0;
612}
613
William Lallemand85b0bd92017-06-01 17:38:53 +0200614
615static void get_cur_unixsocket()
616{
617 /* if -x was used, try to update the stat socket if not available anymore */
618 if (global.stats_fe) {
619 struct bind_conf *bind_conf;
620
621 /* pass through all stats socket */
622 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
623 struct listener *l;
624
625 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
626
627 if (l->addr.ss_family == AF_UNIX &&
628 (bind_conf->level & ACCESS_FD_LISTENERS)) {
629 const struct sockaddr_un *un;
630
631 un = (struct sockaddr_un *)&l->addr;
632 /* priority to old_unixsocket */
633 if (!cur_unixsocket) {
634 cur_unixsocket = strdup(un->sun_path);
635 } else {
636 if (old_unixsocket && !strcmp(un->sun_path, old_unixsocket)) {
637 free(cur_unixsocket);
638 cur_unixsocket = strdup(old_unixsocket);
639 return;
640 }
641 }
642 }
643 }
644 }
645 }
646 if (!cur_unixsocket && old_unixsocket)
647 cur_unixsocket = strdup(old_unixsocket);
648}
649
William Lallemand73b85e72017-06-01 17:38:51 +0200650/*
651 * When called, this function reexec haproxy with -sf followed by current
652 * children PIDs and possibily old children PIDs if they didn't leave yet.
653 */
654static void mworker_reload()
655{
656 int next_argc = 0;
657 int j;
658 char *msg = NULL;
659
660 mworker_block_signals();
661 mworker_unregister_signals();
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100662#if defined(USE_SYSTEMD)
663 if (global.tune.options & GTUNE_USE_SYSTEMD)
664 sd_notify(0, "RELOADING=1");
665#endif
William Lallemand73b85e72017-06-01 17:38:51 +0200666 setenv("HAPROXY_MWORKER_REEXEC", "1", 1);
667
668 /* compute length */
669 while (next_argv[next_argc])
670 next_argc++;
671
William Lallemand85b0bd92017-06-01 17:38:53 +0200672 /* 1 for haproxy -sf, 2 for -x /socket */
673 next_argv = realloc(next_argv, (next_argc + 1 + 2 + global.nbproc + nb_oldpids + 1) * sizeof(char *));
William Lallemand73b85e72017-06-01 17:38:51 +0200674 if (next_argv == NULL)
675 goto alloc_error;
676
677
678 /* add -sf <PID>* to argv */
679 if (children || nb_oldpids > 0)
680 next_argv[next_argc++] = "-sf";
681 if (children) {
682 for (j = 0; j < global.nbproc; next_argc++,j++) {
683 next_argv[next_argc] = memprintf(&msg, "%d", children[j]);
684 if (next_argv[next_argc] == NULL)
685 goto alloc_error;
686 msg = NULL;
687 }
688 }
689 /* copy old process PIDs */
690 for (j = 0; j < nb_oldpids; next_argc++,j++) {
691 next_argv[next_argc] = memprintf(&msg, "%d", oldpids[j]);
692 if (next_argv[next_argc] == NULL)
693 goto alloc_error;
694 msg = NULL;
695 }
696 next_argv[next_argc] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200697
William Lallemand2bf6d622017-06-20 11:20:23 +0200698 /* add the -x option with the stat socket */
William Lallemand85b0bd92017-06-01 17:38:53 +0200699 if (cur_unixsocket) {
700
William Lallemand2bf6d622017-06-20 11:20:23 +0200701 next_argv[next_argc++] = "-x";
702 next_argv[next_argc++] = (char *)cur_unixsocket;
703 next_argv[next_argc++] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200704 }
705
Christopher Faulet767a84b2017-11-24 16:50:31 +0100706 ha_warning("Reexecuting Master process\n");
Tim Duesterhus0436ab72017-11-12 17:39:18 +0100707 execvp(next_argv[0], next_argv);
William Lallemand73b85e72017-06-01 17:38:51 +0200708
Christopher Faulet767a84b2017-11-24 16:50:31 +0100709 ha_warning("Failed to reexecute the master process [%d]: %s\n", pid, strerror(errno));
William Lallemand722d4ca2017-11-15 19:02:55 +0100710 return;
711
William Lallemand73b85e72017-06-01 17:38:51 +0200712alloc_error:
Christopher Faulet767a84b2017-11-24 16:50:31 +0100713 ha_warning("Failed to reexecute the master processs [%d]: Cannot allocate memory\n", pid);
William Lallemand73b85e72017-06-01 17:38:51 +0200714 return;
715}
716
717
718/*
719 * Wait for every children to exit
720 */
721
722static void mworker_wait()
723{
724 int exitpid = -1;
725 int status = 0;
726
William Lallemand2f8b31c2017-11-15 19:02:56 +0100727restart_wait:
728
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100729#if defined(USE_SYSTEMD)
730 if (global.tune.options & GTUNE_USE_SYSTEMD)
731 sd_notifyf(0, "READY=1\nMAINPID=%lu", (unsigned long)getpid());
732#endif
733
William Lallemand73b85e72017-06-01 17:38:51 +0200734 mworker_register_signals();
735 mworker_unblock_signals();
736
737 while (1) {
738
739 while (((exitpid = wait(&status)) == -1) && errno == EINTR) {
740 int sig = caught_signal;
741 if (sig == SIGUSR2 || sig == SIGHUP) {
742 mworker_reload();
William Lallemand2f8b31c2017-11-15 19:02:56 +0100743 /* should reach there only if it fail */
744 goto restart_wait;
William Lallemand73b85e72017-06-01 17:38:51 +0200745 } else {
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100746#if defined(USE_SYSTEMD)
747 if ((global.tune.options & GTUNE_USE_SYSTEMD) && (sig == SIGUSR1 || sig == SIGTERM)) {
748 sd_notify(0, "STOPPING=1");
749 }
750#endif
Christopher Faulet767a84b2017-11-24 16:50:31 +0100751 ha_warning("Exiting Master process...\n");
William Lallemand73b85e72017-06-01 17:38:51 +0200752 mworker_kill(sig);
753 mworker_unregister_signals();
754 }
755 caught_signal = 0;
756 }
757
758 if (exitpid == -1 && errno == ECHILD) {
Tim Duesterhusd16f4502017-12-05 18:14:13 +0100759 ha_warning("All workers exited. Exiting... (%d)\n", status);
William Lallemandcb11fd22017-06-01 17:38:52 +0200760 atexit_flag = 0;
William Lallemand73b85e72017-06-01 17:38:51 +0200761 exit(status); /* parent must leave using the latest status code known */
762 }
763
764 if (WIFEXITED(status))
765 status = WEXITSTATUS(status);
766 else if (WIFSIGNALED(status))
767 status = 128 + WTERMSIG(status);
768 else if (WIFSTOPPED(status))
769 status = 128 + WSTOPSIG(status);
770 else
771 status = 255;
772
773 if (!children) {
Tim Duesterhusd16f4502017-12-05 18:14:13 +0100774 ha_warning("Worker %d exited with code %d\n", exitpid, status);
William Lallemand73b85e72017-06-01 17:38:51 +0200775 } else {
776 /* check if exited child was in the current children list */
777 if (current_child(exitpid)) {
Tim Duesterhusd16f4502017-12-05 18:14:13 +0100778 ha_alert("Current worker %d exited with code %d\n", exitpid, status);
William Lallemand69f9b3b2017-06-01 17:38:54 +0200779 if (status != 0 && status != 130 && status != 143
William Lallemand4cfede82017-11-24 22:02:34 +0100780 && !(global.tune.options & GTUNE_NOEXIT_ONFAILURE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100781 ha_alert("exit-on-failure: killing every workers with SIGTERM\n");
William Lallemand69f9b3b2017-06-01 17:38:54 +0200782 mworker_kill(SIGTERM);
783 }
William Lallemand73b85e72017-06-01 17:38:51 +0200784 } else {
Tim Duesterhusd16f4502017-12-05 18:14:13 +0100785 ha_warning("Former worker %d exited with code %d\n", exitpid, status);
William Lallemand73b85e72017-06-01 17:38:51 +0200786 delete_oldpid(exitpid);
787 }
788 }
789 }
790}
791
William Lallemandcb11fd22017-06-01 17:38:52 +0200792
793/*
794 * Reexec the process in failure mode, instead of exiting
795 */
796void reexec_on_failure()
797{
798 if (!atexit_flag)
799 return;
800
801 setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1);
802
Christopher Faulet767a84b2017-11-24 16:50:31 +0100803 ha_warning("Reexecuting Master process in waitpid mode\n");
William Lallemandcb11fd22017-06-01 17:38:52 +0200804 mworker_reload();
William Lallemandcb11fd22017-06-01 17:38:52 +0200805}
William Lallemand73b85e72017-06-01 17:38:51 +0200806
807
808/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200809 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
810 * a signal zero to all subscribers. This means that it's as easy as
811 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200812 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100813static void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200814{
815 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200816 signal_unregister_handler(sh);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100817 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200818}
819
820/*
821 * upon SIGTTOU, we pause everything
822 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100823static void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200824{
825 pause_proxies();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100826 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200827}
828
829/*
830 * upon SIGTTIN, let's have a soft stop.
831 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100832static void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200833{
Willy Tarreaube58c382011-07-24 18:28:10 +0200834 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200835}
836
837/*
838 * this function dumps every server's state when the process receives SIGHUP.
839 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100840static void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200841{
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100842 struct proxy *p = proxies_list;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200843
Christopher Faulet767a84b2017-11-24 16:50:31 +0100844 ha_warning("SIGHUP received, dumping servers states.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200845 while (p) {
846 struct server *s = p->srv;
847
848 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
849 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100850 chunk_printf(&trash,
851 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
852 p->id, s->id,
Emeric Brun52a91d32017-08-31 14:41:55 +0200853 (s->cur_state != SRV_ST_STOPPED) ? "UP" : "DOWN",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100854 s->cur_sess, s->nbpend, s->counters.cum_sess);
Christopher Faulet767a84b2017-11-24 16:50:31 +0100855 ha_warning("%s\n", trash.str);
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100856 send_log(p, LOG_NOTICE, "%s\n", trash.str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200857 s = s->next;
858 }
859
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200860 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
861 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100862 chunk_printf(&trash,
863 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
864 p->id,
865 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 +0200866 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100867 chunk_printf(&trash,
868 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
869 p->id,
870 (p->srv_bck) ? "is running on backup servers" : "has no server available",
871 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 +0200872 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100873 chunk_printf(&trash,
874 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
875 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
876 p->id, p->srv_act, p->srv_bck,
877 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 +0200878 }
Christopher Faulet767a84b2017-11-24 16:50:31 +0100879 ha_warning("%s\n", trash.str);
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100880 send_log(p, LOG_NOTICE, "%s\n", trash.str);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200881
882 p = p->next;
883 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200884}
885
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100886static void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200887{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200888 /* dump memory usage then free everything possible */
889 dump_pools();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100890 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200891}
892
William Lallemande1340412017-12-28 16:09:36 +0100893/*
894 * This function dup2 the stdio FDs (0,1,2) with <fd>, then closes <fd>
895 * If <fd> < 0, it opens /dev/null and use it to dup
896 *
897 * In the case of chrooting, you have to open /dev/null before the chroot, and
898 * pass the <fd> to this function
899 */
900static void stdio_quiet(int fd)
901{
902 if (fd < 0)
903 fd = open("/dev/null", O_RDWR, 0);
904
905 if (fd > -1) {
906 fclose(stdin);
907 fclose(stdout);
908 fclose(stderr);
909
910 dup2(fd, 0);
911 dup2(fd, 1);
912 dup2(fd, 2);
913 if (fd > 2)
914 close(fd);
915 return;
916 }
917
918 ha_alert("Cannot open /dev/null\n");
919 exit(EXIT_FAILURE);
920}
921
922
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200923/* This function check if cfg_cfgfiles containes directories.
924 * If it find one, it add all the files (and only files) it containes
925 * in cfg_cfgfiles in place of the directory (and remove the directory).
926 * It add the files in lexical order.
927 * It add only files with .cfg extension.
928 * It doesn't add files with name starting with '.'
929 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100930static void cfgfiles_expand_directories(void)
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200931{
932 struct wordlist *wl, *wlb;
933 char *err = NULL;
934
935 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
936 struct stat file_stat;
937 struct dirent **dir_entries = NULL;
938 int dir_entries_nb;
939 int dir_entries_it;
940
941 if (stat(wl->s, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100942 ha_alert("Cannot open configuration file/directory %s : %s\n",
943 wl->s,
944 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200945 exit(1);
946 }
947
948 if (!S_ISDIR(file_stat.st_mode))
949 continue;
950
951 /* from this point wl->s is a directory */
952
953 dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort);
954 if (dir_entries_nb < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100955 ha_alert("Cannot open configuration directory %s : %s\n",
956 wl->s,
957 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200958 exit(1);
959 }
960
961 /* for each element in the directory wl->s */
962 for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) {
963 struct dirent *dir_entry = dir_entries[dir_entries_it];
964 char *filename = NULL;
965 char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg");
966
967 /* don't add filename that begin with .
968 * only add filename with .cfg extention
969 */
970 if (dir_entry->d_name[0] == '.' ||
971 !(d_name_cfgext && d_name_cfgext[4] == '\0'))
972 goto next_dir_entry;
973
974 if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100975 ha_alert("Cannot load configuration files %s : out of memory.\n",
976 filename);
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200977 exit(1);
978 }
979
980 if (stat(filename, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100981 ha_alert("Cannot open configuration file %s : %s\n",
982 wl->s,
983 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200984 exit(1);
985 }
986
987 /* don't add anything else than regular file in cfg_cfgfiles
988 * this way we avoid loops
989 */
990 if (!S_ISREG(file_stat.st_mode))
991 goto next_dir_entry;
992
993 if (!list_append_word(&wl->list, filename, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100994 ha_alert("Cannot load configuration files %s : %s\n",
995 filename,
996 err);
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200997 exit(1);
998 }
999
1000next_dir_entry:
1001 free(filename);
1002 free(dir_entry);
1003 }
1004
1005 free(dir_entries);
1006
1007 /* remove the current directory (wl) from cfg_cfgfiles */
1008 free(wl->s);
1009 LIST_DEL(&wl->list);
1010 free(wl);
1011 }
1012
1013 free(err);
1014}
1015
Olivier Houchardf73629d2017-04-05 22:33:04 +02001016static int get_old_sockets(const char *unixsocket)
1017{
1018 char *cmsgbuf = NULL, *tmpbuf = NULL;
1019 int *tmpfd = NULL;
1020 struct sockaddr_un addr;
1021 struct cmsghdr *cmsg;
1022 struct msghdr msghdr;
1023 struct iovec iov;
1024 struct xfer_sock_list *xfer_sock = NULL;
Olivier Houchard54740872017-04-06 14:45:14 +02001025 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Olivier Houchardf73629d2017-04-05 22:33:04 +02001026 int sock = -1;
1027 int ret = -1;
1028 int ret2 = -1;
1029 int fd_nb;
1030 int got_fd = 0;
1031 int i = 0;
1032 size_t maxoff = 0, curoff = 0;
1033
1034 memset(&msghdr, 0, sizeof(msghdr));
1035 cmsgbuf = malloc(CMSG_SPACE(sizeof(int)) * MAX_SEND_FD);
1036 if (!cmsgbuf) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001037 ha_warning("Failed to allocate memory to send sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001038 goto out;
1039 }
1040 sock = socket(PF_UNIX, SOCK_STREAM, 0);
1041 if (sock < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001042 ha_warning("Failed to connect to the old process socket '%s'\n",
1043 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001044 goto out;
1045 }
1046 strncpy(addr.sun_path, unixsocket, sizeof(addr.sun_path));
1047 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
1048 addr.sun_family = PF_UNIX;
1049 ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr));
1050 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001051 ha_warning("Failed to connect to the old process socket '%s'\n",
1052 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001053 goto out;
1054 }
Olivier Houchard54740872017-04-06 14:45:14 +02001055 setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001056 iov.iov_base = &fd_nb;
1057 iov.iov_len = sizeof(fd_nb);
1058 msghdr.msg_iov = &iov;
1059 msghdr.msg_iovlen = 1;
1060 send(sock, "_getsocks\n", strlen("_getsocks\n"), 0);
1061 /* First, get the number of file descriptors to be received */
1062 if (recvmsg(sock, &msghdr, MSG_WAITALL) != sizeof(fd_nb)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001063 ha_warning("Failed to get the number of sockets to be transferred !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001064 goto out;
1065 }
1066 if (fd_nb == 0) {
1067 ret = 0;
1068 goto out;
1069 }
Olivier Houchardf143b802017-11-04 15:13:01 +01001070 tmpbuf = malloc(fd_nb * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001071 if (tmpbuf == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001072 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001073 goto out;
1074 }
1075 tmpfd = malloc(fd_nb * sizeof(int));
1076 if (tmpfd == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001077 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001078 goto out;
1079 }
1080 msghdr.msg_control = cmsgbuf;
1081 msghdr.msg_controllen = CMSG_SPACE(sizeof(int)) * MAX_SEND_FD;
Olivier Houchardf143b802017-11-04 15:13:01 +01001082 iov.iov_len = MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001083 do {
1084 int ret3;
1085
1086 iov.iov_base = tmpbuf + curoff;
1087 ret = recvmsg(sock, &msghdr, 0);
1088 if (ret == -1 && errno == EINTR)
1089 continue;
1090 if (ret <= 0)
1091 break;
1092 /* Send an ack to let the sender know we got the sockets
1093 * and it can send some more
1094 */
1095 do {
1096 ret3 = send(sock, &got_fd, sizeof(got_fd), 0);
1097 } while (ret3 == -1 && errno == EINTR);
1098 for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg != NULL;
1099 cmsg = CMSG_NXTHDR(&msghdr, cmsg)) {
1100 if (cmsg->cmsg_level == SOL_SOCKET &&
1101 cmsg->cmsg_type == SCM_RIGHTS) {
1102 size_t totlen = cmsg->cmsg_len -
1103 CMSG_LEN(0);
1104 if (totlen / sizeof(int) + got_fd > fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001105 ha_warning("Got to many sockets !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001106 goto out;
1107 }
1108 /*
1109 * Be paranoid and use memcpy() to avoid any
1110 * potential alignement issue.
1111 */
1112 memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen);
1113 got_fd += totlen / sizeof(int);
1114 }
1115 }
1116 curoff += ret;
1117 } while (got_fd < fd_nb);
1118
1119 if (got_fd != fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001120 ha_warning("We didn't get the expected number of sockets (expecting %d got %d)\n",
1121 fd_nb, got_fd);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001122 goto out;
1123 }
1124 maxoff = curoff;
1125 curoff = 0;
1126 for (i = 0; i < got_fd; i++) {
1127 int fd = tmpfd[i];
1128 socklen_t socklen;
1129 int len;
1130
1131 xfer_sock = calloc(1, sizeof(*xfer_sock));
1132 if (!xfer_sock) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001133 ha_warning("Failed to allocate memory in get_old_sockets() !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001134 break;
1135 }
1136 xfer_sock->fd = -1;
1137
1138 socklen = sizeof(xfer_sock->addr);
1139 if (getsockname(fd, (struct sockaddr *)&xfer_sock->addr, &socklen) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001140 ha_warning("Failed to get socket address\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001141 free(xfer_sock);
Olivier Houchardbe7b1ce2017-07-17 17:25:33 +02001142 xfer_sock = NULL;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001143 continue;
1144 }
1145 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001146 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001147 goto out;
1148 }
1149 len = tmpbuf[curoff++];
1150 if (len > 0) {
1151 /* We have a namespace */
1152 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001153 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001154 goto out;
1155 }
1156 xfer_sock->namespace = malloc(len + 1);
1157 if (!xfer_sock->namespace) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001158 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001159 goto out;
1160 }
1161 memcpy(xfer_sock->namespace, &tmpbuf[curoff], len);
1162 xfer_sock->namespace[len] = 0;
1163 curoff += len;
1164 }
1165 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001166 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001167 goto out;
1168 }
1169 len = tmpbuf[curoff++];
1170 if (len > 0) {
1171 /* We have an interface */
1172 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001173 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001174 goto out;
1175 }
1176 xfer_sock->iface = malloc(len + 1);
1177 if (!xfer_sock->iface) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001178 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001179 goto out;
1180 }
1181 memcpy(xfer_sock->iface, &tmpbuf[curoff], len);
Olivier Houchard33e083c2018-03-15 17:48:49 +01001182 xfer_sock->iface[len] = 0;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001183 curoff += len;
1184 }
1185 if (curoff + sizeof(int) > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001186 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001187 goto out;
1188 }
1189 memcpy(&xfer_sock->options, &tmpbuf[curoff],
1190 sizeof(xfer_sock->options));
1191 curoff += sizeof(xfer_sock->options);
1192
1193 xfer_sock->fd = fd;
1194 if (xfer_sock_list)
1195 xfer_sock_list->prev = xfer_sock;
1196 xfer_sock->next = xfer_sock_list;
1197 xfer_sock->prev = NULL;
1198 xfer_sock_list = xfer_sock;
1199 xfer_sock = NULL;
1200 }
1201
1202 ret2 = 0;
1203out:
1204 /* If we failed midway make sure to close the remaining
1205 * file descriptors
1206 */
1207 if (tmpfd != NULL && i < got_fd) {
1208 for (; i < got_fd; i++) {
1209 close(tmpfd[i]);
1210 }
1211 }
1212 free(tmpbuf);
1213 free(tmpfd);
1214 free(cmsgbuf);
1215 if (sock != -1)
1216 close(sock);
1217 if (xfer_sock) {
1218 free(xfer_sock->namespace);
1219 free(xfer_sock->iface);
1220 if (xfer_sock->fd != -1)
1221 close(xfer_sock->fd);
1222 free(xfer_sock);
1223 }
1224 return (ret2);
1225}
1226
Willy Tarreaubaaee002006-06-26 02:48:02 +02001227/*
William Lallemand73b85e72017-06-01 17:38:51 +02001228 * copy and cleanup the current argv
1229 * Remove the -sf /-st parameters
1230 * Return an allocated copy of argv
1231 */
1232
1233static char **copy_argv(int argc, char **argv)
1234{
1235 char **newargv;
William Lallemand2bf6d622017-06-20 11:20:23 +02001236 int i = 0, j = 0;
William Lallemand73b85e72017-06-01 17:38:51 +02001237
1238 newargv = calloc(argc + 2, sizeof(char *));
1239 if (newargv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001240 ha_warning("Cannot allocate memory\n");
William Lallemand73b85e72017-06-01 17:38:51 +02001241 return NULL;
1242 }
1243
William Lallemand2bf6d622017-06-20 11:20:23 +02001244 while (i < argc) {
1245 /* -sf or -st or -x */
William Lallemand29f690c2018-01-09 23:12:27 +01001246 if (i > 0 && argv[i][0] == '-' &&
1247 ((argv[i][1] == 's' && (argv[i][2] == 'f' || argv[i][2] == 't')) || argv[i][1] == 'x' )) {
William Lallemand2bf6d622017-06-20 11:20:23 +02001248 /* list of pids to finish ('f') or terminate ('t') or unix socket (-x) */
William Lallemand73b85e72017-06-01 17:38:51 +02001249 i++;
1250 while (i < argc && argv[i][0] != '-') {
1251 i++;
1252 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001253 continue;
William Lallemand73b85e72017-06-01 17:38:51 +02001254 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001255
1256 newargv[j++] = argv[i++];
William Lallemand73b85e72017-06-01 17:38:51 +02001257 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001258
William Lallemand73b85e72017-06-01 17:38:51 +02001259 return newargv;
1260}
1261
1262/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001263 * This function initializes all the necessary variables. It only returns
1264 * if everything is OK. If something fails, it exits.
1265 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001266static void init(int argc, char **argv)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001267{
Willy Tarreaubaaee002006-06-26 02:48:02 +02001268 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001269 char *tmp;
1270 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +02001271 int err_code = 0;
Maxime de Roucy0f503922016-05-13 23:52:55 +02001272 char *err_msg = NULL;
Willy Tarreau477ecd82010-01-03 21:12:30 +01001273 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +00001274 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +02001275 char *change_dir = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001276 struct proxy *px;
Willy Tarreaue6945732016-12-21 19:57:00 +01001277 struct post_check_fct *pcf;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001278
Christopher Faulete3a5e352017-10-24 13:53:54 +02001279 global.mode = MODE_STARTING;
William Lallemand73b85e72017-06-01 17:38:51 +02001280 next_argv = copy_argv(argc, argv);
1281
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001282 if (!init_trash_buffers(1)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001283 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet748919a2017-07-26 14:59:46 +02001284 exit(1);
1285 }
David du Colombier7af46052012-05-16 14:16:48 +02001286
Emeric Brun2b920a12010-09-23 18:30:22 +02001287 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
1288 * the string in case of truncation, and at least FreeBSD appears not to do
1289 * it.
1290 */
1291 memset(hostname, 0, sizeof(hostname));
1292 gethostname(hostname, sizeof(hostname) - 1);
1293 memset(localpeer, 0, sizeof(localpeer));
1294 memcpy(localpeer, hostname, (sizeof(hostname) > sizeof(localpeer) ? sizeof(localpeer) : sizeof(hostname)) - 1);
William Lallemanddaf4cd22018-04-17 16:46:13 +02001295 setenv("HAPROXY_LOCALPEER", localpeer, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02001296
Willy Tarreaubaaee002006-06-26 02:48:02 +02001297 /*
1298 * Initialize the previously static variables.
1299 */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001300
Willy Tarreau173d9952018-01-26 21:48:23 +01001301 totalconn = actconn = listeners = stopping = 0;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001302 killed = 0;
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001303
Willy Tarreaubaaee002006-06-26 02:48:02 +02001304
1305#ifdef HAPROXY_MEMMAX
Willy Tarreau70060452015-12-14 12:46:07 +01001306 global.rlimit_memmax_all = HAPROXY_MEMMAX;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001307#endif
1308
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001309 tzset();
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001310 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001311 start_date = now;
1312
Willy Tarreau84310e22014-02-14 11:59:04 +01001313 srandom(now_ms - getpid());
1314
Dragan Dosen835b9212016-02-12 13:23:03 +01001315 init_log();
Willy Tarreau29857942009-05-10 09:01:21 +02001316 signal_init();
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001317 if (init_acl() != 0)
1318 exit(1);
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02001319 init_task();
Willy Tarreau87b09662015-04-03 00:22:06 +02001320 init_stream();
Willy Tarreaub1ec8c42015-04-03 13:53:24 +02001321 init_session();
Willy Tarreauf2943dc2012-10-26 20:10:28 +02001322 init_connection();
Willy Tarreau8280d642009-09-23 23:37:52 +02001323 /* warning, we init buffers later */
Willy Tarreaue4d7e552007-05-13 20:19:55 +02001324 init_pendconn();
Willy Tarreau80587432006-12-24 17:47:20 +01001325 init_proto_http();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001326
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001327 /* Initialise lua. */
1328 hlua_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001329
Christopher Fauletff2613e2016-11-09 11:36:17 +01001330 /* Initialize process vars */
1331 vars_init(&global.vars, SCOPE_PROC);
1332
Willy Tarreau43b78992009-01-25 15:42:27 +01001333 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001334#if defined(ENABLE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001335 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001336#endif
1337#if defined(ENABLE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001338 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001339#endif
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001340#if defined(ENABLE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +01001341 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001342#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +02001343#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001344 global.tune.options |= GTUNE_USE_SPLICE;
1345#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001346#if defined(USE_GETADDRINFO)
1347 global.tune.options |= GTUNE_USE_GAI;
1348#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001349#if defined(SO_REUSEPORT)
1350 global.tune.options |= GTUNE_USE_REUSEPORT;
1351#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02001352
1353 pid = getpid();
1354 progname = *argv;
1355 while ((tmp = strchr(progname, '/')) != NULL)
1356 progname = tmp + 1;
1357
Kevinm48936af2010-12-22 16:08:21 +00001358 /* the process name is used for the logs only */
Dragan Dosen43885c72015-10-01 13:18:13 +02001359 chunk_initstr(&global.log_tag, strdup(progname));
Kevinm48936af2010-12-22 16:08:21 +00001360
Willy Tarreaubaaee002006-06-26 02:48:02 +02001361 argc--; argv++;
1362 while (argc > 0) {
1363 char *flag;
1364
1365 if (**argv == '-') {
1366 flag = *argv+1;
1367
1368 /* 1 arg */
1369 if (*flag == 'v') {
1370 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +01001371 if (flag[1] == 'v') /* -vv */
1372 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001373 exit(0);
1374 }
1375#if defined(ENABLE_EPOLL)
1376 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +01001377 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001378#endif
1379#if defined(ENABLE_POLL)
1380 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +01001381 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001382#endif
Willy Tarreau69cad1a2007-04-10 22:45:11 +02001383#if defined(ENABLE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001384 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +01001385 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001386#endif
Willy Tarreaub55932d2009-08-16 13:20:32 +02001387#if defined(CONFIG_HAP_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001388 else if (*flag == 'd' && flag[1] == 'S')
1389 global.tune.options &= ~GTUNE_USE_SPLICE;
1390#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001391#if defined(USE_GETADDRINFO)
1392 else if (*flag == 'd' && flag[1] == 'G')
1393 global.tune.options &= ~GTUNE_USE_GAI;
1394#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001395#if defined(SO_REUSEPORT)
1396 else if (*flag == 'd' && flag[1] == 'R')
1397 global.tune.options &= ~GTUNE_USE_REUSEPORT;
1398#endif
Emeric Brun850efd52014-01-29 12:24:34 +01001399 else if (*flag == 'd' && flag[1] == 'V')
1400 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001401 else if (*flag == 'V')
1402 arg_mode |= MODE_VERBOSE;
1403 else if (*flag == 'd' && flag[1] == 'b')
1404 arg_mode |= MODE_FOREGROUND;
Willy Tarreau6e064432012-05-08 15:40:42 +02001405 else if (*flag == 'd' && flag[1] == 'M')
1406 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreau3eed10e2016-11-07 21:03:16 +01001407 else if (*flag == 'd' && flag[1] == 'r')
1408 global.tune.options |= GTUNE_RESOLVE_DONTFAIL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001409 else if (*flag == 'd')
1410 arg_mode |= MODE_DEBUG;
1411 else if (*flag == 'c')
1412 arg_mode |= MODE_CHECK;
William Lallemand095ba4c2017-06-01 17:38:50 +02001413 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +02001414 arg_mode |= MODE_DAEMON;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001415 else if (*flag == 'W' && flag[1] == 's') {
Lukas Tribusf46bf952017-11-21 12:39:34 +01001416 arg_mode |= MODE_MWORKER | MODE_FOREGROUND;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001417#if defined(USE_SYSTEMD)
1418 global.tune.options |= GTUNE_USE_SYSTEMD;
1419#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001420 ha_alert("master-worker mode with systemd support (-Ws) requested, but not compiled. Use master-worker mode (-W) if you are not using Type=notify in your unit file or recompile with USE_SYSTEMD=1.\n\n");
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001421 usage(progname);
1422#endif
1423 }
William Lallemand095ba4c2017-06-01 17:38:50 +02001424 else if (*flag == 'W')
1425 arg_mode |= MODE_MWORKER;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001426 else if (*flag == 'q')
1427 arg_mode |= MODE_QUIET;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001428 else if (*flag == 'x') {
William Lallemand45eff442017-06-19 15:57:55 +02001429 if (argc <= 1 || argv[1][0] == '-') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001430 ha_alert("Unix socket path expected with the -x flag\n\n");
William Lallemand45eff442017-06-19 15:57:55 +02001431 usage(progname);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001432 }
William Lallemand4fc09692017-06-19 16:37:19 +02001433 if (old_unixsocket)
Christopher Faulet767a84b2017-11-24 16:50:31 +01001434 ha_warning("-x option already set, overwriting the value\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001435 old_unixsocket = argv[1];
William Lallemand4fc09692017-06-19 16:37:19 +02001436
Olivier Houchardf73629d2017-04-05 22:33:04 +02001437 argv++;
1438 argc--;
1439 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001440 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
1441 /* list of pids to finish ('f') or terminate ('t') */
1442
1443 if (flag[1] == 'f')
1444 oldpids_sig = SIGUSR1; /* finish then exit */
1445 else
1446 oldpids_sig = SIGTERM; /* terminate immediately */
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001447 while (argc > 1 && argv[1][0] != '-') {
Chris Lane236062f2018-02-05 23:15:44 +00001448 char * endptr = NULL;
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001449 oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int));
1450 if (!oldpids) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001451 ha_alert("Cannot allocate old pid : out of memory.\n");
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001452 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001453 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001454 argc--; argv++;
Chris Lane236062f2018-02-05 23:15:44 +00001455 errno = 0;
1456 oldpids[nb_oldpids] = strtol(*argv, &endptr, 10);
1457 if (errno) {
1458 ha_alert("-%2s option: failed to parse {%s}: %s\n",
1459 flag,
1460 *argv, strerror(errno));
1461 exit(1);
1462 } else if (endptr && strlen(endptr)) {
1463 while (isspace(*endptr)) endptr++;
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001464 if (*endptr != 0) {
Chris Lane236062f2018-02-05 23:15:44 +00001465 ha_alert("-%2s option: some bytes unconsumed in PID list {%s}\n",
1466 flag, endptr);
1467 exit(1);
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001468 }
Chris Lane236062f2018-02-05 23:15:44 +00001469 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001470 if (oldpids[nb_oldpids] <= 0)
1471 usage(progname);
1472 nb_oldpids++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001473 }
1474 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001475 else if (flag[0] == '-' && flag[1] == 0) { /* "--" */
1476 /* now that's a cfgfile list */
1477 argv++; argc--;
1478 while (argc > 0) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02001479 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001480 ha_alert("Cannot load configuration file/directory %s : %s\n",
1481 *argv,
1482 err_msg);
Willy Tarreaua088d312015-10-08 11:58:48 +02001483 exit(1);
1484 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001485 argv++; argc--;
1486 }
1487 break;
1488 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001489 else { /* >=2 args */
1490 argv++; argc--;
1491 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001492 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001493
1494 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +02001495 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001496 case 'n' : cfg_maxconn = atol(*argv); break;
Willy Tarreau70060452015-12-14 12:46:07 +01001497 case 'm' : global.rlimit_memmax_all = atol(*argv); break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001498 case 'N' : cfg_maxpconn = atol(*argv); break;
William Lallemanddaf4cd22018-04-17 16:46:13 +02001499 case 'L' :
1500 strncpy(localpeer, *argv, sizeof(localpeer) - 1);
1501 setenv("HAPROXY_LOCALPEER", localpeer, 1);
1502 break;
Willy Tarreau5d01a632009-06-22 16:02:30 +02001503 case 'f' :
Maxime de Roucy0f503922016-05-13 23:52:55 +02001504 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001505 ha_alert("Cannot load configuration file/directory %s : %s\n",
1506 *argv,
1507 err_msg);
Willy Tarreau5d01a632009-06-22 16:02:30 +02001508 exit(1);
1509 }
Willy Tarreau5d01a632009-06-22 16:02:30 +02001510 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001511 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001512 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001513 }
1514 }
1515 }
1516 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001517 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001518 argv++; argc--;
1519 }
1520
Christopher Faulete3a5e352017-10-24 13:53:54 +02001521 global.mode |= (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE
1522 | MODE_QUIET | MODE_CHECK | MODE_DEBUG));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001523
William Lallemandcb11fd22017-06-01 17:38:52 +02001524 /* Master workers wait mode */
1525 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_WAIT_ONLY") != NULL)) {
1526
1527 unsetenv("HAPROXY_MWORKER_WAIT_ONLY");
1528 mworker_wait();
1529 }
1530
1531 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) {
1532 atexit_flag = 1;
1533 atexit(reexec_on_failure);
1534 }
1535
Willy Tarreau576132e2011-09-10 19:26:56 +02001536 if (change_dir && chdir(change_dir) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001537 ha_alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
Willy Tarreau576132e2011-09-10 19:26:56 +02001538 exit(1);
1539 }
1540
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001541 /* handle cfgfiles that are actualy directories */
1542 cfgfiles_expand_directories();
1543
1544 if (LIST_ISEMPTY(&cfg_cfgfiles))
1545 usage(progname);
1546
Willy Tarreaubaaee002006-06-26 02:48:02 +02001547 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001548
1549 init_default_instance();
1550
Willy Tarreau477ecd82010-01-03 21:12:30 +01001551 list_for_each_entry(wl, &cfg_cfgfiles, list) {
Willy Tarreauc4382422009-12-06 13:10:44 +01001552 int ret;
1553
Willy Tarreau477ecd82010-01-03 21:12:30 +01001554 ret = readcfgfile(wl->s);
Willy Tarreauc4382422009-12-06 13:10:44 +01001555 if (ret == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001556 ha_alert("Could not open configuration file %s : %s\n",
1557 wl->s, strerror(errno));
Willy Tarreauc4382422009-12-06 13:10:44 +01001558 exit(1);
1559 }
Willy Tarreau25a67fa2009-12-15 21:46:25 +01001560 if (ret & (ERR_ABORT|ERR_FATAL))
Christopher Faulet767a84b2017-11-24 16:50:31 +01001561 ha_alert("Error(s) found in configuration file : %s\n", wl->s);
Willy Tarreau25a67fa2009-12-15 21:46:25 +01001562 err_code |= ret;
Willy Tarreau058e9072009-07-20 09:30:05 +02001563 if (err_code & ERR_ABORT)
Willy Tarreau5d01a632009-06-22 16:02:30 +02001564 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001565 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001566
Willy Tarreaub83dc3d2017-04-19 11:24:07 +02001567 /* do not try to resolve arguments nor to spot inconsistencies when
1568 * the configuration contains fatal errors caused by files not found
1569 * or failed memory allocations.
1570 */
1571 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001572 ha_alert("Fatal errors found in configuration.\n");
Willy Tarreaub83dc3d2017-04-19 11:24:07 +02001573 exit(1);
1574 }
1575
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +01001576 pattern_finalize_config();
1577
Willy Tarreaubb925012009-07-23 13:36:36 +02001578 err_code |= check_config_validity();
1579 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001580 ha_alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001581 exit(1);
1582 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001583
Willy Tarreau70060452015-12-14 12:46:07 +01001584 /* recompute the amount of per-process memory depending on nbproc and
1585 * the shared SSL cache size (allowed to exist in all processes).
1586 */
1587 if (global.rlimit_memmax_all) {
1588#if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE)
1589 int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL;
1590
1591 global.rlimit_memmax =
1592 ((((int64_t)global.rlimit_memmax_all * 1048576LL) -
1593 ssl_cache_bytes) / global.nbproc +
1594 ssl_cache_bytes + 1048575LL) / 1048576LL;
1595#else
1596 global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc;
1597#endif
1598 }
1599
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001600#ifdef CONFIG_HAP_NS
1601 err_code |= netns_init();
1602 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001603 ha_alert("Failed to initialize namespace support.\n");
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001604 exit(1);
1605 }
1606#endif
1607
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01001608 /* Apply server states */
1609 apply_server_state();
1610
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001611 for (px = proxies_list; px; px = px->next)
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01001612 srv_compute_all_admin_states(px);
1613
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01001614 /* Apply servers' configured address */
1615 err_code |= srv_init_addr();
1616 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001617 ha_alert("Failed to initialize server(s) addr.\n");
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01001618 exit(1);
1619 }
1620
Willy Tarreaubaaee002006-06-26 02:48:02 +02001621 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001622 struct peers *pr;
1623 struct proxy *px;
1624
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001625 for (pr = cfg_peers; pr; pr = pr->next)
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001626 if (pr->peers_fe)
1627 break;
1628
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001629 for (px = proxies_list; px; px = px->next)
Willy Tarreau4348fad2012-09-20 16:48:07 +02001630 if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001631 break;
1632
1633 if (pr || px) {
1634 /* At least one peer or one listener has been found */
1635 qfprintf(stdout, "Configuration file is valid\n");
1636 exit(0);
1637 }
1638 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
1639 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001640 }
1641
Emeric Brunc60def82017-09-27 14:59:38 +02001642 global_listener_queue_task = task_new(MAX_THREADS_MASK);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001643 if (!global_listener_queue_task) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001644 ha_alert("Out of memory when initializing global task\n");
Willy Tarreaue9b26022011-08-01 20:57:55 +02001645 exit(1);
1646 }
1647 /* very simple initialization, users will queue the task if needed */
1648 global_listener_queue_task->context = NULL; /* not even a context! */
1649 global_listener_queue_task->process = manage_global_listener_queue;
Willy Tarreaue9b26022011-08-01 20:57:55 +02001650
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001651 /* now we know the buffer size, we can initialize the channels and buffers */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001652 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +02001653
Willy Tarreaue6945732016-12-21 19:57:00 +01001654 list_for_each_entry(pcf, &post_check_list, list) {
1655 err_code |= pcf->fct();
1656 if (err_code & (ERR_ABORT|ERR_FATAL))
1657 exit(1);
1658 }
1659
Willy Tarreaubaaee002006-06-26 02:48:02 +02001660 if (cfg_maxconn > 0)
1661 global.maxconn = cfg_maxconn;
1662
1663 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +02001664 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001665 global.pidfile = strdup(cfg_pidfile);
1666 }
1667
Willy Tarreaud0256482015-01-15 21:45:22 +01001668 /* Now we want to compute the maxconn and possibly maxsslconn values.
1669 * It's a bit tricky. If memmax is not set, maxconn defaults to
1670 * DEFAULT_MAXCONN and maxsslconn defaults to DEFAULT_MAXSSLCONN.
1671 *
1672 * If memmax is set, then it depends on which values are set. If
1673 * maxsslconn is set, we use memmax to determine how many cleartext
1674 * connections may be added, and set maxconn to the sum of the two.
1675 * If maxconn is set and not maxsslconn, maxsslconn is computed from
1676 * the remaining amount of memory between memmax and the cleartext
1677 * connections. If neither are set, then it is considered that all
1678 * connections are SSL-capable, and maxconn is computed based on this,
1679 * then maxsslconn accordingly. We need to know if SSL is used on the
1680 * frontends, backends, or both, because when it's used on both sides,
1681 * we need twice the value for maxsslconn, but we only count the
1682 * handshake once since it is not performed on the two sides at the
1683 * same time (frontend-side is terminated before backend-side begins).
1684 * The SSL stack is supposed to have filled ssl_session_cost and
Willy Tarreau474b96a2015-01-28 19:03:21 +01001685 * ssl_handshake_cost during its initialization. In any case, if
1686 * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for
1687 * maxconn in order to protect the system.
Willy Tarreaud0256482015-01-15 21:45:22 +01001688 */
1689 if (!global.rlimit_memmax) {
1690 if (global.maxconn == 0) {
1691 global.maxconn = DEFAULT_MAXCONN;
1692 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1693 fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn);
1694 }
1695 }
1696#ifdef USE_OPENSSL
1697 else if (!global.maxconn && !global.maxsslconn &&
1698 (global.ssl_used_frontend || global.ssl_used_backend)) {
1699 /* memmax is set, compute everything automatically. Here we want
1700 * to ensure that all SSL connections will be served. We take
1701 * care of the number of sides where SSL is used, and consider
1702 * the worst case : SSL used on both sides and doing a handshake
1703 * simultaneously. Note that we can't have more than maxconn
1704 * handshakes at a time by definition, so for the worst case of
1705 * two SSL conns per connection, we count a single handshake.
1706 */
1707 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1708 int64_t mem = global.rlimit_memmax * 1048576ULL;
1709
1710 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1711 mem -= global.maxzlibmem;
1712 mem = mem * MEM_USABLE_RATIO;
1713
1714 global.maxconn = mem /
Willy Tarreau87b09662015-04-03 00:22:06 +02001715 ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream
Willy Tarreaud0256482015-01-15 21:45:22 +01001716 sides * global.ssl_session_max_cost + // SSL buffers, one per side
1717 global.ssl_handshake_max_cost); // 1 handshake per connection max
1718
1719 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001720#ifdef SYSTEM_MAXCONN
1721 if (global.maxconn > DEFAULT_MAXCONN)
1722 global.maxconn = DEFAULT_MAXCONN;
1723#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01001724 global.maxsslconn = sides * global.maxconn;
1725 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1726 fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n",
1727 global.maxconn, global.maxsslconn);
1728 }
1729 else if (!global.maxsslconn &&
1730 (global.ssl_used_frontend || global.ssl_used_backend)) {
1731 /* memmax and maxconn are known, compute maxsslconn automatically.
1732 * maxsslconn being forced, we don't know how many of it will be
1733 * on each side if both sides are being used. The worst case is
1734 * when all connections use only one SSL instance because
1735 * handshakes may be on two sides at the same time.
1736 */
1737 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1738 int64_t mem = global.rlimit_memmax * 1048576ULL;
1739 int64_t sslmem;
1740
1741 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1742 mem -= global.maxzlibmem;
1743 mem = mem * MEM_USABLE_RATIO;
1744
Willy Tarreau87b09662015-04-03 00:22:06 +02001745 sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01001746 global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost);
1747 global.maxsslconn = round_2dig(global.maxsslconn);
1748
1749 if (sslmem <= 0 || global.maxsslconn < sides) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001750 ha_alert("Cannot compute the automatic maxsslconn because global.maxconn is already too "
1751 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1752 "without SSL is %d, but %d was found and SSL is in use.\n",
1753 global.rlimit_memmax,
1754 (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)),
1755 global.maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01001756 exit(1);
1757 }
1758
1759 if (global.maxsslconn > sides * global.maxconn)
1760 global.maxsslconn = sides * global.maxconn;
1761
1762 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1763 fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn);
1764 }
1765#endif
1766 else if (!global.maxconn) {
1767 /* memmax and maxsslconn are known/unused, compute maxconn automatically */
1768 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1769 int64_t mem = global.rlimit_memmax * 1048576ULL;
1770 int64_t clearmem;
1771
1772 if (global.ssl_used_frontend || global.ssl_used_backend)
1773 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1774
1775 mem -= global.maxzlibmem;
1776 mem = mem * MEM_USABLE_RATIO;
1777
1778 clearmem = mem;
1779 if (sides)
1780 clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn;
1781
Willy Tarreau87b09662015-04-03 00:22:06 +02001782 global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01001783 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001784#ifdef SYSTEM_MAXCONN
1785 if (global.maxconn > DEFAULT_MAXCONN)
1786 global.maxconn = DEFAULT_MAXCONN;
1787#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01001788
1789 if (clearmem <= 0 || !global.maxconn) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001790 ha_alert("Cannot compute the automatic maxconn because global.maxsslconn is already too "
1791 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1792 "is %d, but %d was found.\n",
1793 global.rlimit_memmax,
1794 (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)),
1795 global.maxsslconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01001796 exit(1);
1797 }
1798
1799 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
1800 if (sides && global.maxsslconn > sides * global.maxconn) {
1801 fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn "
1802 "to be limited to %d. Better reduce global.maxsslconn to get more "
1803 "room for extra connections.\n", global.maxsslconn, global.maxconn);
1804 }
1805 fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn);
1806 }
1807 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001808
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001809 if (!global.maxpipes) {
1810 /* maxpipes not specified. Count how many frontends and backends
1811 * may be using splicing, and bound that to maxconn.
1812 */
1813 struct proxy *cur;
1814 int nbfe = 0, nbbe = 0;
1815
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001816 for (cur = proxies_list; cur; cur = cur->next) {
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001817 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
1818 if (cur->cap & PR_CAP_FE)
1819 nbfe += cur->maxconn;
1820 if (cur->cap & PR_CAP_BE)
Willy Tarreauafb48762009-01-25 10:42:05 +01001821 nbbe += cur->fullconn ? cur->fullconn : global.maxconn;
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001822 }
1823 }
1824 global.maxpipes = MAX(nbfe, nbbe);
1825 if (global.maxpipes > global.maxconn)
1826 global.maxpipes = global.maxconn;
Willy Tarreau686ac822009-01-25 14:06:58 +01001827 global.maxpipes /= 4;
Willy Tarreau66aa61f2009-01-18 21:44:07 +01001828 }
1829
1830
Willy Tarreauabacc2c2011-09-07 14:26:33 +02001831 global.hardmaxconn = global.maxconn; /* keep this max value */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001832 global.maxsock += global.maxconn * 2; /* each connection needs two sockets */
Willy Tarreau3ec79b92009-01-18 20:39:42 +01001833 global.maxsock += global.maxpipes * 2; /* each pipe needs two FDs */
Emeric Brunece0c332017-12-06 13:51:49 +01001834 /* compute fd used by async engines */
1835 if (global.ssl_used_async_engines) {
1836 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1837 global.maxsock += global.maxconn * sides * global.ssl_used_async_engines;
1838 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001839
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001840 if (global.stats_fe)
1841 global.maxsock += global.stats_fe->maxconn;
1842
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001843 if (cfg_peers) {
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001844 /* peers also need to bypass global maxconn */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001845 struct peers *p = cfg_peers;
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001846
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001847 for (p = cfg_peers; p; p = p->next)
Willy Tarreau3c63fd82011-09-07 18:00:47 +02001848 if (p->peers_fe)
1849 global.maxsock += p->peers_fe->maxconn;
1850 }
1851
Willy Tarreau1db37712007-06-03 17:16:49 +02001852 if (global.tune.maxpollevents <= 0)
1853 global.tune.maxpollevents = MAX_POLL_EVENTS;
1854
Olivier Houchard1599b802018-05-24 18:59:04 +02001855 if (global.tune.runqueue_depth <= 0)
1856 global.tune.runqueue_depth = RUNQUEUE_DEPTH;
1857
Willy Tarreau6f4a82c2009-03-21 20:43:57 +01001858 if (global.tune.recv_enough == 0)
1859 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
1860
Willy Tarreau27097842015-09-28 13:53:23 +02001861 if (global.tune.maxrewrite < 0)
1862 global.tune.maxrewrite = MAXREWRITE;
1863
Willy Tarreau27a674e2009-08-17 07:23:33 +02001864 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
1865 global.tune.maxrewrite = global.tune.bufsize / 2;
1866
Willy Tarreaubaaee002006-06-26 02:48:02 +02001867 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
1868 /* command line debug mode inhibits configuration mode */
William Lallemand095ba4c2017-06-01 17:38:50 +02001869 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001870 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
1871 }
1872
William Lallemand095ba4c2017-06-01 17:38:50 +02001873 if (arg_mode & MODE_DAEMON) {
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001874 /* command line daemon mode inhibits foreground and debug modes mode */
1875 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
William Lallemand095ba4c2017-06-01 17:38:50 +02001876 global.mode |= arg_mode & MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001877 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +02001878
1879 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001880
William Lallemand095ba4c2017-06-01 17:38:50 +02001881 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001882 ha_warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
William Lallemand095ba4c2017-06-01 17:38:50 +02001883 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001884 }
1885
William Lallemand095ba4c2017-06-01 17:38:50 +02001886 if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001887 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
Christopher Faulet767a84b2017-11-24 16:50:31 +01001888 ha_warning("<nbproc> is only meaningful in daemon mode or master-worker mode. Setting limit to 1 process.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +02001889 global.nbproc = 1;
1890 }
1891
1892 if (global.nbproc < 1)
1893 global.nbproc = 1;
1894
Christopher Fauletbe0faa22017-08-29 15:37:10 +02001895 if (global.nbthread < 1)
1896 global.nbthread = 1;
1897
Christopher Faulet3ef26392017-08-29 16:46:57 +02001898 /* Realloc trash buffers because global.tune.bufsize may have changed */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001899 if (!init_trash_buffers(0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001900 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet3ef26392017-08-29 16:46:57 +02001901 exit(1);
1902 }
1903
Christopher Faulet96d44832017-11-14 22:02:30 +01001904 if (!init_log_buffers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001905 ha_alert("failed to initialize log buffers.\n");
Christopher Faulet96d44832017-11-14 22:02:30 +01001906 exit(1);
1907 }
1908
Willy Tarreauef1d1f82007-04-16 00:25:25 +02001909 /*
1910 * Note: we could register external pollers here.
1911 * Built-in pollers have been registered before main().
1912 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02001913
Willy Tarreau43b78992009-01-25 15:42:27 +01001914 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001915 disable_poller("kqueue");
1916
Willy Tarreau43b78992009-01-25 15:42:27 +01001917 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001918 disable_poller("epoll");
1919
Willy Tarreau43b78992009-01-25 15:42:27 +01001920 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001921 disable_poller("poll");
1922
Willy Tarreau43b78992009-01-25 15:42:27 +01001923 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +02001924 disable_poller("select");
1925
1926 /* Note: we could disable any poller by name here */
1927
Christopher Fauletb3f4e142016-03-07 12:46:38 +01001928 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02001929 list_pollers(stderr);
Christopher Fauletb3f4e142016-03-07 12:46:38 +01001930 fprintf(stderr, "\n");
1931 list_filters(stderr);
1932 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02001933
Willy Tarreau4f60f162007-04-08 16:39:58 +02001934 if (!init_pollers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001935 ha_alert("No polling mechanism available.\n"
1936 " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n"
1937 " is too low on this platform to support maxconn and the number of listeners\n"
1938 " and servers. You should rebuild haproxy specifying your system using TARGET=\n"
1939 " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n"
1940 " global maxconn setting to accommodate the system's limitation. For reference,\n"
1941 " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n"
1942 " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n"
1943 " check build settings using 'haproxy -vv'.\n\n",
1944 FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001945 exit(1);
1946 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02001947 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
1948 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +02001949 }
1950
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02001951 if (!global.node)
1952 global.node = strdup(hostname);
1953
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01001954 if (!hlua_post_init())
1955 exit(1);
Thomas Holmes6abded42015-05-12 16:23:58 +01001956
Maxime de Roucy0f503922016-05-13 23:52:55 +02001957 free(err_msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001958}
1959
Simon Horman6fb82592011-07-15 13:14:11 +09001960static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +09001961{
Simon Hormanac821422011-07-15 13:14:09 +09001962 struct acl_term_suite *suite, *suiteb;
1963 struct acl_term *term, *termb;
1964
Simon Horman6fb82592011-07-15 13:14:11 +09001965 if (!cond)
1966 return;
1967
1968 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
1969 list_for_each_entry_safe(term, termb, &suite->terms, list) {
1970 LIST_DEL(&term->list);
1971 free(term);
Simon Hormanac821422011-07-15 13:14:09 +09001972 }
Simon Horman6fb82592011-07-15 13:14:11 +09001973 LIST_DEL(&suite->list);
1974 free(suite);
1975 }
1976
1977 free(cond);
1978}
1979
1980static void deinit_tcp_rules(struct list *rules)
1981{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02001982 struct act_rule *trule, *truleb;
Simon Horman6fb82592011-07-15 13:14:11 +09001983
1984 list_for_each_entry_safe(trule, truleb, rules, list) {
Simon Hormanac821422011-07-15 13:14:09 +09001985 LIST_DEL(&trule->list);
Simon Horman6fb82592011-07-15 13:14:11 +09001986 deinit_acl_cond(trule->cond);
Simon Hormanac821422011-07-15 13:14:09 +09001987 free(trule);
1988 }
1989}
1990
Simon Horman6fb82592011-07-15 13:14:11 +09001991static void deinit_stick_rules(struct list *rules)
1992{
1993 struct sticking_rule *rule, *ruleb;
1994
1995 list_for_each_entry_safe(rule, ruleb, rules, list) {
1996 LIST_DEL(&rule->list);
1997 deinit_acl_cond(rule->cond);
Christopher Faulet476e5d02016-10-26 11:34:47 +02001998 release_sample_expr(rule->expr);
Simon Horman6fb82592011-07-15 13:14:11 +09001999 free(rule);
2000 }
2001}
2002
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002003void deinit(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002004{
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002005 struct proxy *p = proxies_list, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002006 struct cap_hdr *h,*h_next;
2007 struct server *s,*s_next;
2008 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002009 struct acl_cond *cond, *condb;
2010 struct hdr_exp *exp, *expb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002011 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002012 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002013 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002014 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002015 struct wordlist *wl, *wlb;
Willy Tarreauf4f04122010-01-28 18:10:50 +01002016 struct cond_wordlist *cwl, *cwlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002017 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +02002018 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +01002019 struct logformat_node *lf, *lfb;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002020 struct bind_conf *bind_conf, *bind_back;
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002021 struct build_opts_str *bol, *bolb;
Willy Tarreau05554e62016-12-21 20:46:26 +01002022 struct post_deinit_fct *pdf;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002023 int i;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002024
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002025 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002026 while (p) {
Willy Tarreau8113a5d2012-10-04 08:01:43 +02002027 free(p->conf.file);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002028 free(p->id);
2029 free(p->check_req);
2030 free(p->cookie_name);
2031 free(p->cookie_domain);
2032 free(p->url_param_name);
2033 free(p->capture_name);
2034 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +09002035 free(p->rdp_cookie_name);
Willy Tarreau62a61232013-04-12 18:13:46 +02002036 if (p->conf.logformat_string != default_http_log_format &&
2037 p->conf.logformat_string != default_tcp_log_format &&
2038 p->conf.logformat_string != clf_http_log_format)
2039 free(p->conf.logformat_string);
Willy Tarreau196729e2012-05-31 19:30:26 +02002040
Willy Tarreau62a61232013-04-12 18:13:46 +02002041 free(p->conf.lfs_file);
2042 free(p->conf.uniqueid_format_string);
2043 free(p->conf.uif_file);
Godbachaf1a75d2013-10-02 17:10:11 +08002044 free(p->lbprm.map.srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002045
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002046 if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2047 free(p->conf.logformat_sd_string);
2048 free(p->conf.lfsd_file);
2049
Willy Tarreaua534fea2008-08-03 12:19:50 +02002050 for (i = 0; i < HTTP_ERR_SIZE; i++)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002051 chunk_destroy(&p->errmsg[i]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002052
Willy Tarreauf4f04122010-01-28 18:10:50 +01002053 list_for_each_entry_safe(cwl, cwlb, &p->req_add, list) {
2054 LIST_DEL(&cwl->list);
2055 free(cwl->s);
2056 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002057 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002058
Willy Tarreauf4f04122010-01-28 18:10:50 +01002059 list_for_each_entry_safe(cwl, cwlb, &p->rsp_add, list) {
2060 LIST_DEL(&cwl->list);
2061 free(cwl->s);
2062 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002063 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002064
Willy Tarreaub80c2302007-11-30 20:51:32 +01002065 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
2066 LIST_DEL(&cond->list);
2067 prune_acl_cond(cond);
2068 free(cond);
2069 }
2070
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002071 for (exp = p->req_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002072 if (exp->preg) {
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02002073 regex_free(exp->preg);
2074 free(exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002075 }
2076
Willy Tarreau98d04852015-05-26 12:18:29 +02002077 free((char *)exp->replace);
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002078 expb = exp;
2079 exp = exp->next;
2080 free(expb);
2081 }
2082
2083 for (exp = p->rsp_exp; exp != NULL; ) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002084 if (exp->preg) {
Thierry FOURNIER09af0d62014-06-18 11:35:54 +02002085 regex_free(exp->preg);
2086 free(exp->preg);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002087 }
2088
Willy Tarreau98d04852015-05-26 12:18:29 +02002089 free((char *)exp->replace);
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002090 expb = exp;
2091 exp = exp->next;
2092 free(expb);
2093 }
2094
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002095 /* build a list of unique uri_auths */
2096 if (!ua)
2097 ua = p->uri_auth;
2098 else {
2099 /* check if p->uri_auth is unique */
2100 for (uap = ua; uap; uap=uap->next)
2101 if (uap == p->uri_auth)
2102 break;
2103
Willy Tarreauaccc4e12008-06-24 11:14:45 +02002104 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002105 /* add it, if it is */
2106 p->uri_auth->next = ua;
2107 ua = p->uri_auth;
2108 }
2109 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002110
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002111 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
2112 LIST_DEL(&acl->list);
2113 prune_acl(acl);
2114 free(acl);
2115 }
2116
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002117 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
2118 LIST_DEL(&srule->list);
2119 prune_acl_cond(srule->cond);
2120 free(srule->cond);
2121 free(srule);
2122 }
2123
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002124 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
2125 LIST_DEL(&rule->list);
Willy Tarreauf51658d2014-04-23 01:21:56 +02002126 if (rule->cond) {
2127 prune_acl_cond(rule->cond);
2128 free(rule->cond);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002129 free(rule->file);
Willy Tarreauf51658d2014-04-23 01:21:56 +02002130 }
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002131 free(rule);
2132 }
2133
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002134 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
2135 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +01002136 if (rdr->cond) {
2137 prune_acl_cond(rdr->cond);
2138 free(rdr->cond);
2139 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002140 free(rdr->rdr_str);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002141 list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) {
2142 LIST_DEL(&lf->list);
2143 free(lf);
2144 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002145 free(rdr);
2146 }
2147
William Lallemand0f99e342011-10-12 17:50:54 +02002148 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
2149 LIST_DEL(&log->list);
2150 free(log);
2151 }
2152
William Lallemand723b73a2012-02-08 16:37:49 +01002153 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
2154 LIST_DEL(&lf->list);
2155 free(lf);
2156 }
2157
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002158 list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) {
2159 LIST_DEL(&lf->list);
2160 free(lf);
2161 }
2162
Simon Hormanac821422011-07-15 13:14:09 +09002163 deinit_tcp_rules(&p->tcp_req.inspect_rules);
2164 deinit_tcp_rules(&p->tcp_req.l4_rules);
2165
Simon Horman6fb82592011-07-15 13:14:11 +09002166 deinit_stick_rules(&p->storersp_rules);
2167 deinit_stick_rules(&p->sticking_rules);
2168
Willy Tarreaubaaee002006-06-26 02:48:02 +02002169 h = p->req_cap;
2170 while (h) {
2171 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002172 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002173 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002174 free(h);
2175 h = h_next;
2176 }/* end while(h) */
2177
2178 h = p->rsp_cap;
2179 while (h) {
2180 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002181 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002182 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002183 free(h);
2184 h = h_next;
2185 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002186
Willy Tarreaubaaee002006-06-26 02:48:02 +02002187 s = p->srv;
2188 while (s) {
2189 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002190
Willy Tarreau5b3a2022012-09-28 15:01:02 +02002191 if (s->check.task) {
2192 task_delete(s->check.task);
2193 task_free(s->check.task);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002194 }
Simon Hormand60d6912013-11-25 10:46:36 +09002195 if (s->agent.task) {
2196 task_delete(s->agent.task);
2197 task_free(s->agent.task);
2198 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002199
Willy Tarreau2e993902011-10-31 11:53:20 +01002200 if (s->warmup) {
2201 task_delete(s->warmup);
2202 task_free(s->warmup);
2203 }
2204
Willy Tarreaua534fea2008-08-03 12:19:50 +02002205 free(s->id);
2206 free(s->cookie);
Willy Tarreau1ae1b7b2012-09-28 15:28:30 +02002207 free(s->check.bi);
2208 free(s->check.bo);
Simon Hormand60d6912013-11-25 10:46:36 +09002209 free(s->agent.bi);
2210 free(s->agent.bo);
James Brown55f9ff12015-10-21 18:19:05 -07002211 free(s->agent.send_string);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002212 free(s->hostname_dn);
Sárközi, László34c01792014-09-05 10:08:23 +02002213 free((char*)s->conf.file);
Willy Tarreau17d45382016-12-22 21:16:08 +01002214
2215 if (s->use_ssl || s->check.use_ssl) {
2216 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2217 xprt_get(XPRT_SSL)->destroy_srv(s);
2218 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002219 HA_SPIN_DESTROY(&s->lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002220 free(s);
2221 s = s_next;
2222 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002223
Willy Tarreau4348fad2012-09-20 16:48:07 +02002224 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002225 /*
2226 * Zombie proxy, the listener just pretend to be up
2227 * because they still hold an opened fd.
2228 * Close it and give the listener its real state.
2229 */
2230 if (p->state == PR_STSTOPPED && l->state >= LI_ZOMBIE) {
2231 close(l->fd);
2232 l->state = LI_INIT;
2233 }
Willy Tarreauf6e2cc72010-09-03 10:38:17 +02002234 unbind_listener(l);
2235 delete_listener(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002236 LIST_DEL(&l->by_fe);
2237 LIST_DEL(&l->by_bind);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002238 free(l->name);
2239 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002240 free(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002241 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002242
Willy Tarreau4348fad2012-09-20 16:48:07 +02002243 /* Release unused SSL configs. */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002244 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01002245 if (bind_conf->xprt->destroy_bind_conf)
2246 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002247 free(bind_conf->file);
2248 free(bind_conf->arg);
2249 LIST_DEL(&bind_conf->by_fe);
2250 free(bind_conf);
2251 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02002252
Christopher Fauletd7c91962015-04-30 11:48:27 +02002253 flt_deinit(p);
2254
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002255 free(p->desc);
2256 free(p->fwdfor_hdr_name);
2257
Willy Tarreauff011f22011-01-06 17:51:27 +01002258 free_http_req_rules(&p->http_req_rules);
Sasha Pachev218f0642014-06-16 12:05:59 -06002259 free_http_res_rules(&p->http_res_rules);
Willy Tarreau1f89b182017-11-22 16:53:53 +01002260 task_free(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002261
Willy Tarreaubafbe012017-11-24 17:34:44 +01002262 pool_destroy(p->req_cap_pool);
2263 pool_destroy(p->rsp_cap_pool);
2264 pool_destroy(p->table.pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002265
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002266 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002267 p = p->next;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002268 HA_SPIN_DESTROY(&p0->lbprm.lock);
2269 HA_SPIN_DESTROY(&p0->lock);
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002270 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002271 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02002272
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002273 while (ua) {
2274 uap = ua;
2275 ua = ua->next;
2276
Willy Tarreaua534fea2008-08-03 12:19:50 +02002277 free(uap->uri_prefix);
2278 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002279 free(uap->node);
2280 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002281
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002282 userlist_free(uap->userlist);
Willy Tarreauff011f22011-01-06 17:51:27 +01002283 free_http_req_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002284
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002285 free(uap);
2286 }
2287
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002288 userlist_free(userlist);
2289
David Carlier834cb2e2015-09-25 12:02:25 +01002290 cfg_unregister_sections();
2291
Christopher Faulet0132d062017-07-26 15:33:35 +02002292 deinit_log_buffers();
Christopher Faulet748919a2017-07-26 14:59:46 +02002293 deinit_trash_buffers();
David Carlier834cb2e2015-09-25 12:02:25 +01002294
Willy Tarreaudd815982007-10-16 12:25:14 +02002295 protocol_unbind_all();
2296
Willy Tarreau05554e62016-12-21 20:46:26 +01002297 list_for_each_entry(pdf, &post_deinit_list, list)
2298 pdf->fct();
2299
Joe Williamsdf5b38f2010-12-29 17:05:48 +01002300 free(global.log_send_hostname); global.log_send_hostname = NULL;
Dragan Dosen43885c72015-10-01 13:18:13 +02002301 chunk_destroy(&global.log_tag);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002302 free(global.chroot); global.chroot = NULL;
2303 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002304 free(global.node); global.node = NULL;
2305 free(global.desc); global.desc = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002306 free(oldpids); oldpids = NULL;
Willy Tarreau1f89b182017-11-22 16:53:53 +01002307 task_free(global_listener_queue_task); global_listener_queue_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002308
William Lallemand0f99e342011-10-12 17:50:54 +02002309 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
2310 LIST_DEL(&log->list);
2311 free(log);
2312 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01002313 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02002314 free(wl->s);
Willy Tarreau477ecd82010-01-03 21:12:30 +01002315 LIST_DEL(&wl->list);
2316 free(wl);
2317 }
2318
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002319 list_for_each_entry_safe(bol, bolb, &build_opts_list, list) {
2320 if (bol->must_free)
2321 free((void *)bol->str);
2322 LIST_DEL(&bol->list);
2323 free(bol);
2324 }
2325
Christopher Fauletff2613e2016-11-09 11:36:17 +01002326 vars_prune(&global.vars, NULL, NULL);
2327
Christopher Fauletad405f12017-08-29 15:30:11 +02002328 deinit_buffer();
2329
Willy Tarreaubafbe012017-11-24 17:34:44 +01002330 pool_destroy(pool_head_stream);
2331 pool_destroy(pool_head_session);
2332 pool_destroy(pool_head_connection);
2333 pool_destroy(pool_head_connstream);
2334 pool_destroy(pool_head_requri);
2335 pool_destroy(pool_head_task);
2336 pool_destroy(pool_head_capture);
2337 pool_destroy(pool_head_pendconn);
2338 pool_destroy(pool_head_sig_handlers);
2339 pool_destroy(pool_head_hdr_idx);
2340 pool_destroy(pool_head_http_txn);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002341 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002342} /* end deinit() */
2343
Christopher Fauletd4604ad2017-05-29 10:40:41 +02002344void mworker_pipe_handler(int fd)
2345{
2346 char c;
2347
2348 while (read(fd, &c, 1) == -1) {
2349 if (errno == EINTR)
2350 continue;
2351 if (errno == EAGAIN) {
2352 fd_cant_recv(fd);
2353 return;
2354 }
2355 break;
2356 }
2357
2358 deinit();
2359 exit(EXIT_FAILURE);
2360 return;
2361}
2362
Willy Tarreau1605c7a2018-01-23 19:01:49 +01002363/* should only be called once per process */
2364void mworker_pipe_register()
Christopher Fauletd4604ad2017-05-29 10:40:41 +02002365{
Willy Tarreau1605c7a2018-01-23 19:01:49 +01002366 if (fdtab[mworker_pipe[0]].owner)
2367 /* already initialized */
2368 return;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002369
Christopher Fauletd4604ad2017-05-29 10:40:41 +02002370 fcntl(mworker_pipe[0], F_SETFL, O_NONBLOCK);
Willy Tarreaua9786b62018-01-25 07:22:13 +01002371 fd_insert(mworker_pipe[0], mworker_pipe, mworker_pipe_handler, MAX_THREADS_MASK);
Christopher Fauletd4604ad2017-05-29 10:40:41 +02002372 fd_want_recv(mworker_pipe[0]);
2373}
Christopher Fauletdc628a32017-10-19 11:59:44 +02002374
Christopher Fauletd8fd2af2018-06-20 16:22:03 +02002375static int sync_poll_loop()
Christopher Fauletdc628a32017-10-19 11:59:44 +02002376{
Christopher Fauletd8fd2af2018-06-20 16:22:03 +02002377 int stop = 0;
2378
Christopher Fauletdc628a32017-10-19 11:59:44 +02002379 if (THREAD_NO_SYNC())
Christopher Fauletd8fd2af2018-06-20 16:22:03 +02002380 return stop;
Christopher Fauletdc628a32017-10-19 11:59:44 +02002381
2382 THREAD_ENTER_SYNC();
2383
2384 if (!THREAD_NEED_SYNC())
2385 goto exit;
2386
2387 /* *** { */
2388 /* Put here all sync functions */
2389
Christopher Faulet5d42e092017-10-16 12:00:40 +02002390 servers_update_status(); /* Commit server status changes */
Christopher Fauletdc628a32017-10-19 11:59:44 +02002391
2392 /* *** } */
2393 exit:
Christopher Fauletd8fd2af2018-06-20 16:22:03 +02002394 stop = (jobs == 0); /* stop when there's nothing left to do */
Christopher Fauletdc628a32017-10-19 11:59:44 +02002395 THREAD_EXIT_SYNC();
Christopher Fauletd8fd2af2018-06-20 16:22:03 +02002396 return stop;
Christopher Fauletdc628a32017-10-19 11:59:44 +02002397}
2398
Willy Tarreau918ff602011-07-25 16:33:49 +02002399/* Runs the polling loop */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01002400static void run_poll_loop()
Willy Tarreau4f60f162007-04-08 16:39:58 +02002401{
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002402 int next, exp;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002403
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002404 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002405 while (1) {
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002406 /* Process a few tasks */
2407 process_runnable_tasks();
2408
William Lallemand1aab50b2018-06-07 09:46:01 +02002409 /* check if we caught some signals and process them in the
2410 first thread */
2411 if (tid == 0)
2412 signal_process_queue();
Willy Tarreau29857942009-05-10 09:01:21 +02002413
Willy Tarreau58b458d2008-06-29 22:40:23 +02002414 /* Check if we can expire some tasks */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002415 next = wake_expired_tasks();
Willy Tarreau4f60f162007-04-08 16:39:58 +02002416
Christopher Fauletd8fd2af2018-06-20 16:22:03 +02002417 /* the first thread requests a synchronization to exit when
2418 * there is no active jobs anymore */
2419 if (tid == 0 && jobs == 0)
2420 THREAD_WANT_SYNC();
Willy Tarreau4f60f162007-04-08 16:39:58 +02002421
Willy Tarreau10146c92015-04-13 20:44:19 +02002422 /* expire immediately if events are pending */
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002423 exp = now_ms;
Christopher Faulet32467fe2018-01-15 12:16:34 +01002424 if (fd_cache_mask & tid_bit)
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002425 activity[tid].wake_cache++;
2426 else if (active_tasks_mask & tid_bit)
2427 activity[tid].wake_tasks++;
William Lallemand1aab50b2018-06-07 09:46:01 +02002428 else if (signal_queue_len && tid == 0)
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002429 activity[tid].wake_signal++;
2430 else
2431 exp = next;
Willy Tarreau10146c92015-04-13 20:44:19 +02002432
Willy Tarreau58b458d2008-06-29 22:40:23 +02002433 /* The poller will ensure it returns around <next> */
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002434 cur_poller.poll(&cur_poller, exp);
Willy Tarreau033cd9d2014-01-25 19:24:15 +01002435 fd_process_cached_events();
Emeric Brun64cc49c2017-10-03 14:46:45 +02002436
Christopher Fauletdc628a32017-10-19 11:59:44 +02002437
2438 /* Synchronize all polling loops */
Christopher Fauletd8fd2af2018-06-20 16:22:03 +02002439 if (sync_poll_loop())
2440 break;
2441
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002442 activity[tid].loops++;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002443 }
2444}
2445
Christopher Faulet1d17c102017-08-29 15:38:48 +02002446static void *run_thread_poll_loop(void *data)
2447{
2448 struct per_thread_init_fct *ptif;
2449 struct per_thread_deinit_fct *ptdf;
Christopher Fauletda18b9d2018-01-25 16:10:16 +01002450 __decl_hathreads(static HA_SPINLOCK_T start_lock);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002451
2452 tid = *((unsigned int *)data);
2453 tid_bit = (1UL << tid);
2454 tv_update_date(-1,-1);
2455
2456 list_for_each_entry(ptif, &per_thread_init_list, list) {
2457 if (!ptif->fct()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002458 ha_alert("failed to initialize thread %u.\n", tid);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002459 exit(1);
2460 }
2461 }
2462
Willy Tarreau1605c7a2018-01-23 19:01:49 +01002463 if (global.mode & MODE_MWORKER) {
2464 HA_SPIN_LOCK(START_LOCK, &start_lock);
2465 mworker_pipe_register();
2466 HA_SPIN_UNLOCK(START_LOCK, &start_lock);
2467 }
Christopher Fauletd4604ad2017-05-29 10:40:41 +02002468
2469 protocol_enable_all();
Christopher Fauletdc628a32017-10-19 11:59:44 +02002470 THREAD_SYNC_ENABLE();
Christopher Faulet1d17c102017-08-29 15:38:48 +02002471 run_poll_loop();
2472
2473 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
2474 ptdf->fct();
2475
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002476#ifdef USE_THREAD
William Lallemand091d8272018-06-24 09:37:03 +02002477 HA_ATOMIC_AND(&all_threads_mask, ~tid_bit);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002478 if (tid > 0)
2479 pthread_exit(NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002480#endif
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002481 return NULL;
2482}
Christopher Faulet1d17c102017-08-29 15:38:48 +02002483
Willy Tarreaue9b26022011-08-01 20:57:55 +02002484/* This is the global management task for listeners. It enables listeners waiting
2485 * for global resources when there are enough free resource, or at least once in
2486 * a while. It is designed to be called as a task.
2487 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002488static struct task *manage_global_listener_queue(struct task *t, void *context, unsigned short state)
Willy Tarreaue9b26022011-08-01 20:57:55 +02002489{
2490 int next = TICK_ETERNITY;
Willy Tarreaue9b26022011-08-01 20:57:55 +02002491 /* queue is empty, nothing to do */
2492 if (LIST_ISEMPTY(&global_listener_queue))
2493 goto out;
2494
2495 /* If there are still too many concurrent connections, let's wait for
2496 * some of them to go away. We don't need to re-arm the timer because
2497 * each of them will scan the queue anyway.
2498 */
2499 if (unlikely(actconn >= global.maxconn))
2500 goto out;
2501
2502 /* We should periodically try to enable listeners waiting for a global
2503 * resource here, because it is possible, though very unlikely, that
2504 * they have been blocked by a temporary lack of global resource such
2505 * as a file descriptor or memory and that the temporary condition has
2506 * disappeared.
2507 */
Willy Tarreauabacc2c2011-09-07 14:26:33 +02002508 dequeue_all_listeners(&global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02002509
2510 out:
2511 t->expire = next;
2512 task_queue(t);
2513 return t;
2514}
Willy Tarreau4f60f162007-04-08 16:39:58 +02002515
Willy Tarreaubaaee002006-06-26 02:48:02 +02002516int main(int argc, char **argv)
2517{
2518 int err, retry;
2519 struct rlimit limit;
Emeric Bruncf20bf12010-10-22 16:06:11 +02002520 char errmsg[100];
Willy Tarreau269ab312012-09-05 08:02:48 +02002521 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002522
Olivier Houchard5fa300d2018-02-03 15:15:21 +01002523 setvbuf(stdout, NULL, _IONBF, 0);
Emeric Bruncf20bf12010-10-22 16:06:11 +02002524 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002525 signal_register_fct(SIGQUIT, dump, SIGQUIT);
2526 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
2527 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
William Lallemand73b85e72017-06-01 17:38:51 +02002528 signal_register_fct(SIGUSR2, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002529
Willy Tarreaue437c442010-03-17 18:02:46 +01002530 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
2531 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
2532 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002533 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002534 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002535
Willy Tarreaudc23a922011-02-16 11:10:36 +01002536 /* ulimits */
2537 if (!global.rlimit_nofile)
2538 global.rlimit_nofile = global.maxsock;
2539
2540 if (global.rlimit_nofile) {
2541 limit.rlim_cur = limit.rlim_max = global.rlimit_nofile;
2542 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
Willy Tarreauef635472016-06-21 11:48:18 +02002543 /* try to set it to the max possible at least */
2544 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau164dd0b2016-06-21 11:51:59 +02002545 limit.rlim_cur = limit.rlim_max;
2546 if (setrlimit(RLIMIT_NOFILE, &limit) != -1)
2547 getrlimit(RLIMIT_NOFILE, &limit);
2548
Christopher Faulet767a84b2017-11-24 16:50:31 +01002549 ha_warning("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n", argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
Willy Tarreauef635472016-06-21 11:48:18 +02002550 global.rlimit_nofile = limit.rlim_cur;
Willy Tarreaudc23a922011-02-16 11:10:36 +01002551 }
2552 }
2553
2554 if (global.rlimit_memmax) {
2555 limit.rlim_cur = limit.rlim_max =
Willy Tarreau70060452015-12-14 12:46:07 +01002556 global.rlimit_memmax * 1048576ULL;
Willy Tarreaudc23a922011-02-16 11:10:36 +01002557#ifdef RLIMIT_AS
2558 if (setrlimit(RLIMIT_AS, &limit) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002559 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2560 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01002561 }
2562#else
2563 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002564 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2565 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01002566 }
2567#endif
2568 }
2569
Olivier Houchardf73629d2017-04-05 22:33:04 +02002570 if (old_unixsocket) {
William Lallemand85b0bd92017-06-01 17:38:53 +02002571 if (strcmp("/dev/null", old_unixsocket) != 0) {
2572 if (get_old_sockets(old_unixsocket) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002573 ha_alert("Failed to get the sockets from the old process!\n");
William Lallemand85b0bd92017-06-01 17:38:53 +02002574 if (!(global.mode & MODE_MWORKER))
2575 exit(1);
2576 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02002577 }
2578 }
William Lallemand85b0bd92017-06-01 17:38:53 +02002579 get_cur_unixsocket();
2580
Willy Tarreaubaaee002006-06-26 02:48:02 +02002581 /* We will loop at most 100 times with 10 ms delay each time.
2582 * That's at most 1 second. We only send a signal to old pids
2583 * if we cannot grab at least one port.
2584 */
2585 retry = MAX_START_RETRIES;
2586 err = ERR_NONE;
2587 while (retry >= 0) {
2588 struct timeval w;
2589 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01002590 /* exit the loop on no error or fatal error */
2591 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002592 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02002593 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002594 break;
2595
2596 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
2597 * listening sockets. So on those platforms, it would be wiser to
2598 * simply send SIGUSR1, which will not be undoable.
2599 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02002600 if (tell_old_pids(SIGTTOU) == 0) {
2601 /* no need to wait if we can't contact old pids */
2602 retry = 0;
2603 continue;
2604 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002605 /* give some time to old processes to stop listening */
2606 w.tv_sec = 0;
2607 w.tv_usec = 10*1000;
2608 select(0, NULL, NULL, NULL, &w);
2609 retry--;
2610 }
2611
2612 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01002613 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02002614 if (retry != MAX_START_RETRIES && nb_oldpids) {
2615 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002616 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02002617 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002618 exit(1);
2619 }
2620
2621 if (listeners == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002622 ha_alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002623 /* Note: we don't have to send anything to the old pids because we
2624 * never stopped them. */
2625 exit(1);
2626 }
2627
Emeric Bruncf20bf12010-10-22 16:06:11 +02002628 err = protocol_bind_all(errmsg, sizeof(errmsg));
2629 if ((err & ~ERR_WARN) != ERR_NONE) {
2630 if ((err & ERR_ALERT) || (err & ERR_WARN))
Christopher Faulet767a84b2017-11-24 16:50:31 +01002631 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Emeric Bruncf20bf12010-10-22 16:06:11 +02002632
Christopher Faulet767a84b2017-11-24 16:50:31 +01002633 ha_alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002634 protocol_unbind_all(); /* cleanup everything we can */
2635 if (nb_oldpids)
2636 tell_old_pids(SIGTTIN);
2637 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02002638 } else if (err & ERR_WARN) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002639 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02002640 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02002641 /* Ok, all listener should now be bound, close any leftover sockets
2642 * the previous process gave us, we don't need them anymore
2643 */
2644 while (xfer_sock_list != NULL) {
2645 struct xfer_sock_list *tmpxfer = xfer_sock_list->next;
2646 close(xfer_sock_list->fd);
2647 free(xfer_sock_list->iface);
2648 free(xfer_sock_list->namespace);
2649 free(xfer_sock_list);
2650 xfer_sock_list = tmpxfer;
2651 }
Willy Tarreaudd815982007-10-16 12:25:14 +02002652
Willy Tarreaubaaee002006-06-26 02:48:02 +02002653 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002654 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
2655 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002656
Willy Tarreaubaaee002006-06-26 02:48:02 +02002657 /* MODE_QUIET can inhibit alerts and warnings below this line */
2658
PiBa-NL149a81a2017-12-25 21:03:31 +01002659 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL) {
2660 /* either stdin/out/err are already closed or should stay as they are. */
2661 if ((global.mode & MODE_DAEMON)) {
2662 /* daemon mode re-executing, stdin/stdout/stderr are already closed so keep quiet */
2663 global.mode &= ~MODE_VERBOSE;
2664 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
2665 }
2666 } else {
2667 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
2668 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01002669 stdio_quiet(-1);
PiBa-NL149a81a2017-12-25 21:03:31 +01002670 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002671 }
2672
2673 /* open log & pid files before the chroot */
William Lallemand80293002017-11-06 11:00:03 +01002674 if ((global.mode & MODE_DAEMON || global.mode & MODE_MWORKER) && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002675 unlink(global.pidfile);
2676 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
2677 if (pidfd < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002678 ha_alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002679 if (nb_oldpids)
2680 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02002681 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002682 exit(1);
2683 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002684 }
2685
Willy Tarreaub38651a2007-03-24 17:24:39 +01002686 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002687 ha_alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
2688 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002689 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01002690 exit(1);
2691 }
2692
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002693 /* If the user is not root, we'll still let him try the configuration
2694 * but we inform him that unexpected behaviour may occur.
2695 */
2696 if ((global.last_checks & LSTCHK_NETADM) && getuid())
Christopher Faulet767a84b2017-11-24 16:50:31 +01002697 ha_warning("[%s.main()] Some options which require full privileges"
2698 " might not work well.\n"
2699 "", argv[0]);
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002700
William Lallemand095ba4c2017-06-01 17:38:50 +02002701 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
2702
2703 /* chroot if needed */
2704 if (global.chroot != NULL) {
2705 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002706 ha_alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02002707 if (nb_oldpids)
2708 tell_old_pids(SIGTTIN);
2709 protocol_unbind_all();
2710 exit(1);
2711 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02002712 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02002713 }
2714
Willy Tarreaubaaee002006-06-26 02:48:02 +02002715 if (nb_oldpids)
Willy Tarreaubb545b42010-08-25 12:58:59 +02002716 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002717
William Lallemand8a361b52017-06-20 11:20:33 +02002718 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
2719 nb_oldpids = 0;
2720 free(oldpids);
2721 oldpids = NULL;
2722 }
2723
2724
Willy Tarreaubaaee002006-06-26 02:48:02 +02002725 /* Note that any error at this stage will be fatal because we will not
2726 * be able to restart the old pids.
2727 */
2728
William Lallemand095ba4c2017-06-01 17:38:50 +02002729 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
2730 /* setgid / setuid */
2731 if (global.gid) {
2732 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002733 ha_warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
2734 " without 'uid'/'user' is generally useless.\n", argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02002735
2736 if (setgid(global.gid) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002737 ha_alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
William Lallemand095ba4c2017-06-01 17:38:50 +02002738 protocol_unbind_all();
2739 exit(1);
2740 }
2741 }
Michael Schererab012dd2013-01-12 18:35:19 +01002742
William Lallemand095ba4c2017-06-01 17:38:50 +02002743 if (global.uid && setuid(global.uid) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002744 ha_alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
Michael Schererab012dd2013-01-12 18:35:19 +01002745 protocol_unbind_all();
2746 exit(1);
2747 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002748 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002749 /* check ulimits */
2750 limit.rlim_cur = limit.rlim_max = 0;
2751 getrlimit(RLIMIT_NOFILE, &limit);
2752 if (limit.rlim_cur < global.maxsock) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002753 ha_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",
2754 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock, global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002755 }
2756
William Lallemand095ba4c2017-06-01 17:38:50 +02002757 if (global.mode & (MODE_DAEMON | MODE_MWORKER)) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002758 struct proxy *px;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002759 struct peers *curpeers;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002760 int ret = 0;
2761 int proc;
William Lallemande1340412017-12-28 16:09:36 +01002762 int devnullfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002763
William Lallemand73b85e72017-06-01 17:38:51 +02002764 children = calloc(global.nbproc, sizeof(int));
William Lallemand095ba4c2017-06-01 17:38:50 +02002765 /*
2766 * if daemon + mworker: must fork here to let a master
2767 * process live in background before forking children
2768 */
William Lallemand73b85e72017-06-01 17:38:51 +02002769
2770 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)
2771 && (global.mode & MODE_MWORKER)
2772 && (global.mode & MODE_DAEMON)) {
William Lallemand095ba4c2017-06-01 17:38:50 +02002773 ret = fork();
2774 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002775 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02002776 protocol_unbind_all();
2777 exit(1); /* there has been an error */
William Lallemandbfd8eb52018-07-04 15:31:23 +02002778 } else if (ret > 0) { /* parent leave to daemonize */
William Lallemand095ba4c2017-06-01 17:38:50 +02002779 exit(0);
William Lallemandbfd8eb52018-07-04 15:31:23 +02002780 } else /* change the process group ID in the child (master process) */
2781 setsid();
William Lallemand095ba4c2017-06-01 17:38:50 +02002782 }
William Lallemande20b6a62017-06-01 17:38:55 +02002783
2784 if (global.mode & MODE_MWORKER) {
2785 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
2786 char *msg = NULL;
2787 /* master pipe to ensure the master is still alive */
2788 ret = pipe(mworker_pipe);
2789 if (ret < 0) {
PiBa-NL4763ffd2017-11-28 23:22:14 +01002790 ha_alert("[%s.main()] Cannot create master pipe.\n", argv[0]);
2791 exit(EXIT_FAILURE);
William Lallemande20b6a62017-06-01 17:38:55 +02002792 } else {
2793 memprintf(&msg, "%d", mworker_pipe[0]);
2794 setenv("HAPROXY_MWORKER_PIPE_RD", msg, 1);
2795 memprintf(&msg, "%d", mworker_pipe[1]);
2796 setenv("HAPROXY_MWORKER_PIPE_WR", msg, 1);
2797 free(msg);
2798 }
2799 } else {
PiBa-NL4763ffd2017-11-28 23:22:14 +01002800 char* rd = getenv("HAPROXY_MWORKER_PIPE_RD");
2801 char* wr = getenv("HAPROXY_MWORKER_PIPE_WR");
2802 if (!rd || !wr) {
2803 ha_alert("[%s.main()] Cannot get master pipe FDs.\n", argv[0]);
2804 atexit_flag = 0;// dont reexecute master process
2805 exit(EXIT_FAILURE);
William Lallemande20b6a62017-06-01 17:38:55 +02002806 }
PiBa-NL4763ffd2017-11-28 23:22:14 +01002807 mworker_pipe[0] = atoi(rd);
2808 mworker_pipe[1] = atoi(wr);
William Lallemande20b6a62017-06-01 17:38:55 +02002809 }
2810 }
2811
William Lallemanddeed7802017-11-06 11:00:04 +01002812 /* if in master-worker mode, write the PID of the father */
2813 if (global.mode & MODE_MWORKER) {
2814 char pidstr[100];
2815 snprintf(pidstr, sizeof(pidstr), "%d\n", getpid());
Willy Tarreau46ec48b2018-01-23 19:20:19 +01002816 if (pidfd >= 0)
2817 shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
William Lallemanddeed7802017-11-06 11:00:04 +01002818 }
2819
Willy Tarreaubaaee002006-06-26 02:48:02 +02002820 /* the father launches the required number of processes */
2821 for (proc = 0; proc < global.nbproc; proc++) {
2822 ret = fork();
2823 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002824 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002825 protocol_unbind_all();
Willy Tarreaud6803712007-10-16 07:44:56 +02002826 exit(1); /* there has been an error */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002827 }
2828 else if (ret == 0) /* child breaks here */
2829 break;
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +01002830 children[proc] = ret;
William Lallemand92159b22017-11-06 11:16:12 +01002831 if (pidfd >= 0 && !(global.mode & MODE_MWORKER)) {
Willy Tarreau269ab312012-09-05 08:02:48 +02002832 char pidstr[100];
2833 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
Willy Tarreau89efaed2013-12-13 15:14:55 +01002834 shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002835 }
Willy Tarreaudcd47712007-11-04 23:35:08 +01002836 relative_pid++; /* each child will get a different one */
Willy Tarreau387bd4f2017-11-10 19:08:14 +01002837 pid_bit <<= 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002838 }
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002839
2840#ifdef USE_CPU_AFFINITY
2841 if (proc < global.nbproc && /* child */
Willy Tarreaue7597492015-04-20 11:36:57 +02002842 proc < LONGBITS && /* only the first 32/64 processes may be pinned */
Christopher Fauletcb6a9452017-11-22 16:50:41 +01002843 global.cpu_map.proc[proc]) /* only do this if the process has a CPU map */
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002844#ifdef __FreeBSD__
Olivier Houchard97148f62017-08-16 17:29:11 +02002845 {
2846 cpuset_t cpuset;
2847 int i;
Christopher Fauletcb6a9452017-11-22 16:50:41 +01002848 unsigned long cpu_map = global.cpu_map.proc[proc];
Olivier Houchard97148f62017-08-16 17:29:11 +02002849
2850 CPU_ZERO(&cpuset);
2851 while ((i = ffsl(cpu_map)) > 0) {
2852 CPU_SET(i - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01002853 cpu_map &= ~(1UL << (i - 1));
Olivier Houchard97148f62017-08-16 17:29:11 +02002854 }
2855 ret = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(cpuset), &cpuset);
2856 }
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002857#else
Christopher Fauletcb6a9452017-11-22 16:50:41 +01002858 sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map.proc[proc]);
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002859#endif
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002860#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02002861 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02002862 if (pidfd >= 0) {
2863 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
2864 close(pidfd);
2865 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02002866
2867 /* We won't ever use this anymore */
Willy Tarreaud137dd32010-08-25 12:49:05 +02002868 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002869
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002870 if (proc == global.nbproc) {
William Lallemand095ba4c2017-06-01 17:38:50 +02002871 if (global.mode & MODE_MWORKER) {
William Lallemand75ea0a02017-11-15 19:02:58 +01002872 mworker_cleanlisteners();
2873 deinit_pollers();
PiBa-NLbaf6ea42017-11-28 23:26:08 +01002874
2875 if ((!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
2876 (global.mode & MODE_DAEMON)) {
2877 /* detach from the tty, this is required to properly daemonize. */
William Lallemande1340412017-12-28 16:09:36 +01002878 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL))
2879 stdio_quiet(-1);
2880
PiBa-NLbaf6ea42017-11-28 23:26:08 +01002881 global.mode &= ~MODE_VERBOSE;
2882 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
PiBa-NLbaf6ea42017-11-28 23:26:08 +01002883 }
2884
William Lallemand73b85e72017-06-01 17:38:51 +02002885 mworker_wait();
William Lallemand1499b9b2017-06-07 15:04:47 +02002886 /* should never get there */
2887 exit(EXIT_FAILURE);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002888 }
William Lallemandcf4e4962017-06-08 19:05:48 +02002889#if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH)
Grant Zhang872f9c22017-01-21 01:10:18 +00002890 ssl_free_dh();
2891#endif
William Lallemand1499b9b2017-06-07 15:04:47 +02002892 exit(0); /* parent must leave */
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002893 }
2894
William Lallemandcb11fd22017-06-01 17:38:52 +02002895 /* child must never use the atexit function */
2896 atexit_flag = 0;
2897
Willy Tarreau1605c7a2018-01-23 19:01:49 +01002898 /* close the write end of the master pipe in the children */
2899 if (global.mode & MODE_MWORKER)
2900 close(mworker_pipe[1]);
2901
William Lallemande1340412017-12-28 16:09:36 +01002902 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
2903 devnullfd = open("/dev/null", O_RDWR, 0);
2904 if (devnullfd < 0) {
2905 ha_alert("Cannot open /dev/null\n");
2906 exit(EXIT_FAILURE);
2907 }
2908 }
2909
William Lallemand095ba4c2017-06-01 17:38:50 +02002910 /* Must chroot and setgid/setuid in the children */
2911 /* chroot if needed */
2912 if (global.chroot != NULL) {
2913 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002914 ha_alert("[%s.main()] Cannot chroot1(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02002915 if (nb_oldpids)
2916 tell_old_pids(SIGTTIN);
2917 protocol_unbind_all();
2918 exit(1);
2919 }
2920 }
2921
2922 free(global.chroot);
2923 global.chroot = NULL;
2924
2925 /* setgid / setuid */
2926 if (global.gid) {
2927 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002928 ha_warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
2929 " without 'uid'/'user' is generally useless.\n", argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02002930
2931 if (setgid(global.gid) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002932 ha_alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
William Lallemand095ba4c2017-06-01 17:38:50 +02002933 protocol_unbind_all();
2934 exit(1);
2935 }
2936 }
2937
2938 if (global.uid && setuid(global.uid) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002939 ha_alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
William Lallemand095ba4c2017-06-01 17:38:50 +02002940 protocol_unbind_all();
2941 exit(1);
2942 }
2943
William Lallemand7f80eb22017-05-26 18:19:55 +02002944 /* pass through every cli socket, and check if it's bound to
2945 * the current process and if it exposes listeners sockets.
2946 * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork.
2947 * */
2948
2949 if (global.stats_fe) {
2950 struct bind_conf *bind_conf;
2951
2952 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
2953 if (bind_conf->level & ACCESS_FD_LISTENERS) {
2954 if (!bind_conf->bind_proc || bind_conf->bind_proc & (1UL << proc)) {
2955 global.tune.options |= GTUNE_SOCKET_TRANSFER;
2956 break;
2957 }
2958 }
2959 }
2960 }
2961
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002962 /* we might have to unbind some proxies from some processes */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002963 px = proxies_list;
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002964 while (px != NULL) {
2965 if (px->bind_proc && px->state != PR_STSTOPPED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002966 if (!(px->bind_proc & (1UL << proc))) {
2967 if (global.tune.options & GTUNE_SOCKET_TRANSFER)
2968 zombify_proxy(px);
2969 else
2970 stop_proxy(px);
2971 }
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002972 }
2973 px = px->next;
2974 }
2975
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002976 /* we might have to unbind some peers sections from some processes */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002977 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002978 if (!curpeers->peers_fe)
2979 continue;
2980
2981 if (curpeers->peers_fe->bind_proc & (1UL << proc))
2982 continue;
2983
2984 stop_proxy(curpeers->peers_fe);
2985 /* disable this peer section so that it kills itself */
Willy Tarreau47c8c022015-09-28 16:39:25 +02002986 signal_unregister_handler(curpeers->sighandler);
2987 task_delete(curpeers->sync_task);
2988 task_free(curpeers->sync_task);
2989 curpeers->sync_task = NULL;
2990 task_free(curpeers->peers_fe->task);
2991 curpeers->peers_fe->task = NULL;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002992 curpeers->peers_fe = NULL;
2993 }
2994
Willy Tarreaubaaee002006-06-26 02:48:02 +02002995 /* if we're NOT in QUIET mode, we should now close the 3 first FDs to ensure
2996 * that we can detach from the TTY. We MUST NOT do it in other cases since
2997 * it would have already be done, and 0-2 would have been affected to listening
2998 * sockets
2999 */
Willy Tarreau106cb762008-11-16 07:40:34 +01003000 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003001 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003002 stdio_quiet(devnullfd);
Willy Tarreau106cb762008-11-16 07:40:34 +01003003 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003004 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3005 }
3006 pid = getpid(); /* update child's pid */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003007 if (!(global.mode & MODE_MWORKER)) /* in mworker mode we don't want a new pgid for the children */
3008 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02003009 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003010 }
3011
Christopher Faulete3a5e352017-10-24 13:53:54 +02003012 global.mode &= ~MODE_STARTING;
Willy Tarreau4f60f162007-04-08 16:39:58 +02003013 /*
3014 * That's it : the central polling loop. Run until we stop.
3015 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02003016#ifdef USE_THREAD
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003017 {
Christopher Faulet1d17c102017-08-29 15:38:48 +02003018 unsigned int *tids = calloc(global.nbthread, sizeof(unsigned int));
3019 pthread_t *threads = calloc(global.nbthread, sizeof(pthread_t));
3020 int i;
William Lallemand1aab50b2018-06-07 09:46:01 +02003021 sigset_t blocked_sig, old_sig;
Christopher Faulet1d17c102017-08-29 15:38:48 +02003022
Christopher Fauletd7bddda2017-10-31 17:30:12 +01003023 THREAD_SYNC_INIT((1UL << global.nbthread) - 1);
3024
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003025 /* Init tids array */
3026 for (i = 0; i < global.nbthread; i++)
Christopher Faulet1d17c102017-08-29 15:38:48 +02003027 tids[i] = i;
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003028
William Lallemand1aab50b2018-06-07 09:46:01 +02003029 /* ensure the signals will be blocked in every thread */
3030 sigfillset(&blocked_sig);
3031 sigdelset(&blocked_sig, SIGPROF);
3032 sigdelset(&blocked_sig, SIGBUS);
3033 sigdelset(&blocked_sig, SIGFPE);
3034 sigdelset(&blocked_sig, SIGILL);
3035 sigdelset(&blocked_sig, SIGSEGV);
3036 pthread_sigmask(SIG_SETMASK, &blocked_sig, &old_sig);
3037
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003038 /* Create nbthread-1 thread. The first thread is the current process */
3039 threads[0] = pthread_self();
3040 for (i = 1; i < global.nbthread; i++)
Christopher Faulet1d17c102017-08-29 15:38:48 +02003041 pthread_create(&threads[i], NULL, &run_thread_poll_loop, &tids[i]);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003042
Christopher Faulet62519022017-10-16 15:49:32 +02003043#ifdef USE_CPU_AFFINITY
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003044 /* Now the CPU affinity for all threads */
3045 for (i = 0; i < global.nbthread; i++) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003046 if (global.cpu_map.proc[relative_pid-1])
3047 global.cpu_map.thread[relative_pid-1][i] &= global.cpu_map.proc[relative_pid-1];
Christopher Faulet62519022017-10-16 15:49:32 +02003048
Willy Tarreau421f02e2018-01-20 18:19:22 +01003049 if (i < MAX_THREADS && /* only the first 32/64 threads may be pinned */
Olivier Houchard829aa242017-12-01 18:19:43 +01003050 global.cpu_map.thread[relative_pid-1][i]) {/* only do this if the thread has a THREAD map */
3051#if defined(__FreeBSD__) || defined(__NetBSD__)
3052 cpuset_t cpuset;
3053#else
3054 cpu_set_t cpuset;
3055#endif
3056 int j;
3057 unsigned long cpu_map = global.cpu_map.thread[relative_pid-1][i];
3058
3059 CPU_ZERO(&cpuset);
3060
3061 while ((j = ffsl(cpu_map)) > 0) {
3062 CPU_SET(j - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003063 cpu_map &= ~(1UL << (j - 1));
Olivier Houchard829aa242017-12-01 18:19:43 +01003064 }
Christopher Faulet62519022017-10-16 15:49:32 +02003065 pthread_setaffinity_np(threads[i],
Olivier Houchard829aa242017-12-01 18:19:43 +01003066 sizeof(cpuset), &cpuset);
3067 }
Christopher Faulet1d17c102017-08-29 15:38:48 +02003068 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003069#endif /* !USE_CPU_AFFINITY */
3070
William Lallemand1aab50b2018-06-07 09:46:01 +02003071 /* when multithreading we need to let only the thread 0 handle the signals */
3072 pthread_sigmask(SIG_SETMASK, &old_sig, NULL);
3073
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003074 /* Finally, start the poll loop for the first thread */
3075 run_thread_poll_loop(&tids[0]);
3076
3077 /* Wait the end of other threads */
3078 for (i = 1; i < global.nbthread; i++)
Christopher Faulet1d17c102017-08-29 15:38:48 +02003079 pthread_join(threads[i], NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003080
Christopher Faulet1d17c102017-08-29 15:38:48 +02003081 free(tids);
3082 free(threads);
3083
Christopher Fauletb79a94c2017-05-30 15:34:30 +02003084#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
3085 show_lock_stats();
3086#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003087 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003088#else /* ! USE_THREAD */
Christopher Fauletd4604ad2017-05-29 10:40:41 +02003089
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003090 run_thread_poll_loop((int []){0});
Christopher Faulet62519022017-10-16 15:49:32 +02003091
Christopher Faulet62519022017-10-16 15:49:32 +02003092#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003093
3094 /* Do some cleanup */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003095 deinit();
Christopher Faulet1d17c102017-08-29 15:38:48 +02003096
Willy Tarreaubaaee002006-06-26 02:48:02 +02003097 exit(0);
3098}
3099
3100
3101/*
3102 * Local variables:
3103 * c-indent-level: 8
3104 * c-basic-offset: 8
3105 * End:
3106 */