blob: e1b56e0838204bd8563db0318fb60bcc7469417e [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HA-Proxy : High Availability-enabled HTTP/TCP proxy
Willy Tarreau6c1b6672019-02-26 16:43:49 +01003 * Copyright 2000-2019 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>
David Carlier42d9e5a2018-11-12 16:22:19 +000055#if defined(__FreeBSD__) || defined(__DragonFly__)
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020056#include <sys/param.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000057#ifdef __FreeBSD__
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020058#include <sys/cpuset.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000059#endif
David Carlier6d5c8412017-11-29 11:02:32 +000060#include <pthread_np.h>
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020061#endif
Willy Tarreaufc6c0322012-11-16 16:12:27 +010062#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020063
Willy Tarreau636848a2019-04-15 19:38:50 +020064#if defined(USE_PRCTL)
65#include <sys/prctl.h>
66#endif
67
Willy Tarreaubaaee002006-06-26 02:48:02 +020068#ifdef DEBUG_FULL
69#include <assert.h>
70#endif
Tim Duesterhusd6942c82017-11-20 15:58:35 +010071#if defined(USE_SYSTEMD)
72#include <systemd/sd-daemon.h>
73#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020074
Willy Tarreau2dd0d472006-06-29 17:53:05 +020075#include <common/base64.h>
76#include <common/cfgparse.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020077#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020078#include <common/compat.h>
79#include <common/config.h>
80#include <common/defaults.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010081#include <common/errors.h>
Willy Tarreau5794fb02018-11-25 18:43:29 +010082#include <common/initcall.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020083#include <common/memory.h>
84#include <common/mini-clist.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010085#include <common/namespace.h>
Willy Tarreauc125cef2019-05-10 09:58:43 +020086#include <common/openssl-compat.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020087#include <common/regex.h>
88#include <common/standard.h>
89#include <common/time.h>
90#include <common/uri_auth.h>
91#include <common/version.h>
Christopher Fauletbe0faa22017-08-29 15:37:10 +020092#include <common/hathreads.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020093
94#include <types/capture.h>
William Lallemandce83b4a2018-10-26 14:47:30 +020095#include <types/cli.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020096#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020097#include <types/global.h>
Simon Hormanac821422011-07-15 13:14:09 +090098#include <types/acl.h>
Willy Tarreau3c63fd82011-09-07 18:00:47 +020099#include <types/peers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200100
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200101#include <proto/acl.h>
Willy Tarreau609aad92018-11-22 08:31:09 +0100102#include <proto/activity.h>
Willy Tarreau2e845be2012-10-19 19:49:09 +0200103#include <proto/arg.h>
Willy Tarreau3c595ac2015-04-19 09:59:31 +0200104#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200105#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +0200106#include <proto/channel.h>
William Lallemandce83b4a2018-10-26 14:47:30 +0200107#include <proto/cli.h>
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200108#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200109#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +0200110#include <proto/filters.h>
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +0100111#include <proto/hlua.h>
Willy Tarreau61c112a2018-10-02 16:43:32 +0200112#include <proto/http_rules.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +0200113#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200114#include <proto/log.h>
William Lallemand48dfbbd2019-04-01 11:29:53 +0200115#include <proto/mworker.h>
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +0100116#include <proto/pattern.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +0200117#include <proto/protocol.h>
Willy Tarreau80587432006-12-24 17:47:20 +0100118#include <proto/proto_http.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200119#include <proto/proxy.h>
120#include <proto/queue.h>
121#include <proto/server.h>
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200122#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +0200123#include <proto/stream.h>
Willy Tarreau29857942009-05-10 09:01:21 +0200124#include <proto/signal.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200125#include <proto/task.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +0200126#include <proto/dns.h>
Christopher Fauletff2613e2016-11-09 11:36:17 +0100127#include <proto/vars.h>
Grant Zhang872f9c22017-01-21 01:10:18 +0000128#include <proto/ssl_sock.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200129
Willy Tarreau7b5654f2019-03-29 21:30:17 +0100130/* array of init calls for older platforms */
131DECLARE_INIT_STAGES;
132
Willy Tarreau477ecd82010-01-03 21:12:30 +0100133/* list of config files */
134static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200135int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100136int relative_pid = 1; /* process id starting at 1 */
Willy Tarreau387bd4f2017-11-10 19:08:14 +0100137unsigned long pid_bit = 1; /* bit corresponding to the process id */
Willy Tarreaua38a7172019-02-02 17:11:28 +0100138unsigned long all_proc_mask = 1; /* mask of all processes */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200139
Olivier Houchard79321b92018-07-26 17:55:11 +0200140volatile unsigned long sleeping_thread_mask; /* Threads that are about to sleep in poll() */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200141/* global options */
142struct global global = {
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100143 .hard_stop_after = TICK_ETERNITY,
Willy Tarreau247a13a2012-11-15 17:38:15 +0100144 .nbproc = 1,
Willy Tarreau149ab772019-01-26 14:27:06 +0100145 .nbthread = 0,
William Lallemand5f232402012-04-05 18:02:55 +0200146 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200147 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
William Lallemand9d5f5482012-11-07 16:12:57 +0100148 .maxzlibmem = 0,
William Lallemandd85f9172012-11-09 17:05:39 +0100149 .comp_rate_lim = 0,
Emeric Brun850efd52014-01-29 12:24:34 +0100150 .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED,
Emeric Bruned760922010-10-22 17:59:25 +0200151 .unix_bind = {
152 .ux = {
153 .uid = -1,
154 .gid = -1,
155 .mode = 0,
156 }
157 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200158 .tune = {
Willy Tarreau7ac908b2019-02-27 12:02:18 +0100159 .options = GTUNE_LISTENER_MQ,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100160 .bufsize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Willy Tarreau27097842015-09-28 13:53:23 +0200161 .maxrewrite = -1,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100162 .chksize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Willy Tarreaua24adf02014-11-27 01:11:56 +0100163 .reserved_bufs = RESERVED_BUFS,
Willy Tarreauf3045d22015-04-29 16:24:50 +0200164 .pattern_cache = DEFAULT_PAT_LRU_SIZE,
Olivier Houchard88698d92019-04-16 19:07:22 +0200165 .pool_low_ratio = 20,
166 .pool_high_ratio = 25,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200167#ifdef USE_OPENSSL
Emeric Brun46635772012-11-14 11:32:56 +0100168 .sslcachesize = SSLCACHESIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200169#endif
William Lallemandf3747832012-11-09 12:33:10 +0100170 .comp_maxlevel = 1,
Willy Tarreau7e312732014-02-12 16:35:14 +0100171#ifdef DEFAULT_IDLE_TIMER
172 .idle_timer = DEFAULT_IDLE_TIMER,
173#else
174 .idle_timer = 1000, /* 1 second */
175#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200176 },
Emeric Brun76d88952012-10-05 15:47:31 +0200177#ifdef USE_OPENSSL
178#ifdef DEFAULT_MAXSSLCONN
Willy Tarreau403edff2012-09-06 11:58:37 +0200179 .maxsslconn = DEFAULT_MAXSSLCONN,
180#endif
Emeric Brun76d88952012-10-05 15:47:31 +0200181#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200182 /* others NULL OK */
183};
184
185/*********************************************************************/
186
187int stopping; /* non zero means stopping in progress */
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100188int killed; /* non zero means a hard-stop is triggered */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200189int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
William Lallemanda7199262018-11-16 16:57:20 +0100190int unstoppable_jobs = 0; /* number of active jobs that can't be stopped during a soft stop */
Willy Tarreau199ad242018-11-05 16:31:22 +0100191int active_peers = 0; /* number of active peers (connection attempts and connected) */
Willy Tarreau2d372c22018-11-05 17:12:27 +0100192int connected_peers = 0; /* number of connected peers (verified ones) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200193
194/* Here we store informations about the pids of the processes we may pause
195 * or kill. We will send them a signal every 10 ms until we can bind to all
196 * our ports. With 200 retries, that's about 2 seconds.
197 */
198#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200199static int *oldpids = NULL;
200static int oldpids_sig; /* use USR1 or TERM */
201
Olivier Houchardf73629d2017-04-05 22:33:04 +0200202/* Path to the unix socket we use to retrieve listener sockets from the old process */
203static const char *old_unixsocket;
204
William Lallemand85b0bd92017-06-01 17:38:53 +0200205static char *cur_unixsocket = NULL;
206
William Lallemandcb11fd22017-06-01 17:38:52 +0200207int atexit_flag = 0;
208
Willy Tarreaubb545b42010-08-25 12:58:59 +0200209int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200210const int zero = 0;
211const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200212const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200213
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100214char hostname[MAX_HOSTNAME_LEN];
Emeric Brun2b920a12010-09-23 18:30:22 +0200215char localpeer[MAX_HOSTNAME_LEN];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200216
Willy Tarreau89efaed2013-12-13 15:14:55 +0100217/* used from everywhere just to drain results we don't want to read and which
218 * recent versions of gcc increasingly and annoyingly complain about.
219 */
220int shut_your_big_mouth_gcc_int = 0;
221
William Lallemand73b85e72017-06-01 17:38:51 +0200222static char **next_argv = NULL;
223
William Lallemandbc193052018-09-11 10:06:26 +0200224struct list proc_list = LIST_HEAD_INIT(proc_list);
225
226int master = 0; /* 1 if in master, 0 if in child */
Willy Tarreaubf696402019-03-01 10:09:28 +0100227unsigned int rlim_fd_cur_at_boot = 0;
228unsigned int rlim_fd_max_at_boot = 0;
William Lallemandbc193052018-09-11 10:06:26 +0200229
William Lallemand16dd1b32018-11-19 18:46:18 +0100230struct mworker_proc *proc_self = NULL;
William Lallemandbc193052018-09-11 10:06:26 +0200231
Willy Tarreau08ceb102011-07-24 22:58:00 +0200232/* list of the temporarily limited listeners because of lack of resource */
233struct list global_listener_queue = LIST_HEAD_INIT(global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +0200234struct task *global_listener_queue_task;
Olivier Houchard9f6af332018-05-25 14:04:04 +0200235static struct task *manage_global_listener_queue(struct task *t, void *context, unsigned short state);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200236
William Lallemandb3f2be32018-09-11 10:06:18 +0200237static void *run_thread_poll_loop(void *data);
238
Willy Tarreauff055502014-04-28 22:27:06 +0200239/* bitfield of a few warnings to emit just once (WARN_*) */
240unsigned int warned = 0;
241
William Lallemande7361152018-10-26 14:47:36 +0200242/* master CLI configuration (-S flag) */
243struct list mworker_cli_conf = LIST_HEAD_INIT(mworker_cli_conf);
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100244
245/* These are strings to be reported in the output of "haproxy -vv". They may
246 * either be constants (in which case must_free must be zero) or dynamically
247 * allocated strings to pass to free() on exit, and in this case must_free
248 * must be non-zero.
249 */
250struct list build_opts_list = LIST_HEAD_INIT(build_opts_list);
251struct build_opts_str {
252 struct list list;
253 const char *str;
254 int must_free;
255};
256
Willy Tarreaue6945732016-12-21 19:57:00 +0100257/* These functions are called just after the point where the program exits
258 * after a config validity check, so they are generally suited for resource
259 * allocation and slow initializations that should be skipped during basic
260 * config checks. The functions must return 0 on success, or a combination
261 * of ERR_* flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause
262 * and immediate exit, so the function must have emitted any useful error.
263 */
264struct list post_check_list = LIST_HEAD_INIT(post_check_list);
265struct post_check_fct {
266 struct list list;
267 int (*fct)();
268};
269
Willy Tarreau082b6282019-05-22 14:42:12 +0200270/* These functions are called for each thread just after the thread creation
271 * and before running the init functions. They should be used to do per-thread
272 * (re-)allocations that are needed by subsequent functoins. They must return 0
273 * if an error occurred. */
274struct list per_thread_alloc_list = LIST_HEAD_INIT(per_thread_alloc_list);
275struct per_thread_alloc_fct {
Willy Tarreau05554e62016-12-21 20:46:26 +0100276 struct list list;
Willy Tarreau082b6282019-05-22 14:42:12 +0200277 int (*fct)();
Willy Tarreau05554e62016-12-21 20:46:26 +0100278};
279
Christopher Faulet415f6112017-07-25 16:52:58 +0200280/* These functions are called for each thread just after the thread creation
281 * and before running the scheduler. They should be used to do per-thread
282 * initializations. They must return 0 if an error occurred. */
283struct list per_thread_init_list = LIST_HEAD_INIT(per_thread_init_list);
284struct per_thread_init_fct {
285 struct list list;
286 int (*fct)();
287};
288
Willy Tarreau082b6282019-05-22 14:42:12 +0200289/* These functions are called when freeing the global sections at the end of
290 * deinit, after everything is stopped. They don't return anything. They should
291 * not release shared resources that are possibly used by other deinit
292 * functions, only close/release what is private. Use the per_thread_free_list
293 * to release shared resources.
294 */
295struct list post_deinit_list = LIST_HEAD_INIT(post_deinit_list);
296struct post_deinit_fct {
297 struct list list;
298 void (*fct)();
299};
300
301/* These functions are called when freeing the global sections at the end of
302 * deinit, after the thread deinit functions, to release unneeded memory
303 * allocations. They don't return anything, and they work in best effort mode
304 * as their sole goal is to make valgrind mostly happy.
305 */
306struct list per_thread_free_list = LIST_HEAD_INIT(per_thread_free_list);
307struct per_thread_free_fct {
308 struct list list;
309 int (*fct)();
310};
311
Christopher Faulet415f6112017-07-25 16:52:58 +0200312/* These functions are called for each thread just after the scheduler loop and
313 * before exiting the thread. They don't return anything and, as for post-deinit
314 * functions, they work in best effort mode as their sole goal is to make
315 * valgrind mostly happy. */
316struct list per_thread_deinit_list = LIST_HEAD_INIT(per_thread_deinit_list);
317struct per_thread_deinit_fct {
318 struct list list;
319 void (*fct)();
320};
321
Willy Tarreaubaaee002006-06-26 02:48:02 +0200322/*********************************************************************/
323/* general purpose functions ***************************************/
324/*********************************************************************/
325
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100326/* used to register some build option strings at boot. Set must_free to
327 * non-zero if the string must be freed upon exit.
328 */
329void hap_register_build_opts(const char *str, int must_free)
330{
331 struct build_opts_str *b;
332
333 b = calloc(1, sizeof(*b));
334 if (!b) {
335 fprintf(stderr, "out of memory\n");
336 exit(1);
337 }
338 b->str = str;
339 b->must_free = must_free;
340 LIST_ADDQ(&build_opts_list, &b->list);
341}
342
Willy Tarreaue6945732016-12-21 19:57:00 +0100343/* used to register some initialization functions to call after the checks. */
344void hap_register_post_check(int (*fct)())
345{
346 struct post_check_fct *b;
347
348 b = calloc(1, sizeof(*b));
349 if (!b) {
350 fprintf(stderr, "out of memory\n");
351 exit(1);
352 }
353 b->fct = fct;
354 LIST_ADDQ(&post_check_list, &b->list);
355}
356
Willy Tarreau05554e62016-12-21 20:46:26 +0100357/* used to register some de-initialization functions to call after everything
358 * has stopped.
359 */
360void hap_register_post_deinit(void (*fct)())
361{
362 struct post_deinit_fct *b;
363
364 b = calloc(1, sizeof(*b));
365 if (!b) {
366 fprintf(stderr, "out of memory\n");
367 exit(1);
368 }
369 b->fct = fct;
370 LIST_ADDQ(&post_deinit_list, &b->list);
371}
372
Willy Tarreau082b6282019-05-22 14:42:12 +0200373/* used to register some allocation functions to call for each thread. */
374void hap_register_per_thread_alloc(int (*fct)())
375{
376 struct per_thread_alloc_fct *b;
377
378 b = calloc(1, sizeof(*b));
379 if (!b) {
380 fprintf(stderr, "out of memory\n");
381 exit(1);
382 }
383 b->fct = fct;
384 LIST_ADDQ(&per_thread_alloc_list, &b->list);
385}
386
Christopher Faulet415f6112017-07-25 16:52:58 +0200387/* used to register some initialization functions to call for each thread. */
388void hap_register_per_thread_init(int (*fct)())
389{
390 struct per_thread_init_fct *b;
391
392 b = calloc(1, sizeof(*b));
393 if (!b) {
394 fprintf(stderr, "out of memory\n");
395 exit(1);
396 }
397 b->fct = fct;
398 LIST_ADDQ(&per_thread_init_list, &b->list);
399}
400
401/* used to register some de-initialization functions to call for each thread. */
402void hap_register_per_thread_deinit(void (*fct)())
403{
404 struct per_thread_deinit_fct *b;
405
406 b = calloc(1, sizeof(*b));
407 if (!b) {
408 fprintf(stderr, "out of memory\n");
409 exit(1);
410 }
411 b->fct = fct;
412 LIST_ADDQ(&per_thread_deinit_list, &b->list);
413}
414
Willy Tarreau082b6282019-05-22 14:42:12 +0200415/* used to register some free functions to call for each thread. */
416void hap_register_per_thread_free(int (*fct)())
417{
418 struct per_thread_free_fct *b;
419
420 b = calloc(1, sizeof(*b));
421 if (!b) {
422 fprintf(stderr, "out of memory\n");
423 exit(1);
424 }
425 b->fct = fct;
426 LIST_ADDQ(&per_thread_free_list, &b->list);
427}
428
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100429static void display_version()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200430{
Willy Tarreau909b9d82019-01-04 18:20:32 +0100431 printf("HA-Proxy version %s %s - https://haproxy.org/\n", haproxy_version, haproxy_date);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200432}
433
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100434static void display_build_opts()
Willy Tarreau7b066db2007-12-02 11:28:59 +0100435{
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100436 struct build_opts_str *item;
437
Willy Tarreau7b066db2007-12-02 11:28:59 +0100438 printf("Build options :"
439#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100440 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100441#endif
442#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100443 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100444#endif
445#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100446 "\n CC = " BUILD_CC
447#endif
448#ifdef BUILD_CFLAGS
449 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100450#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100451#ifdef BUILD_OPTIONS
452 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100453#endif
Willy Tarreau7728ed32019-03-27 13:20:08 +0100454#ifdef BUILD_FEATURES
455 "\n\nFeature list : " BUILD_FEATURES
456#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200457 "\n\nDefault settings :"
Willy Tarreauca783d42019-03-13 10:03:07 +0100458 "\n bufsize = %d, maxrewrite = %d, maxpollevents = %d"
Willy Tarreau27a674e2009-08-17 07:23:33 +0200459 "\n\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100460 BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200461
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100462 list_for_each_entry(item, &build_opts_list, list) {
463 puts(item->str);
464 }
465
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100466 putchar('\n');
467
Willy Tarreaube5b6852009-10-03 18:57:08 +0200468 list_pollers(stdout);
469 putchar('\n');
Christopher Faulet98d9fe22018-04-10 14:37:32 +0200470 list_mux_proto(stdout);
471 putchar('\n');
Willy Tarreau679bba12019-03-19 08:08:10 +0100472 list_services(stdout);
473 putchar('\n');
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100474 list_filters(stdout);
475 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100476}
477
Willy Tarreaubaaee002006-06-26 02:48:02 +0200478/*
479 * This function prints the command line usage and exits
480 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100481static void usage(char *name)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200482{
483 display_version();
484 fprintf(stderr,
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200485 "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200486 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreaua088d312015-10-08 11:58:48 +0200487 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100488 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200489 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200490 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200491 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200492 " -D goes daemon ; -C changes to <dir> before loading files.\n"
William Lallemand095ba4c2017-06-01 17:38:50 +0200493 " -W master-worker mode.\n"
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100494#if defined(USE_SYSTEMD)
495 " -Ws master-worker mode with systemd notify support.\n"
496#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200497 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200498 " -c check mode : only check config files and exit\n"
Willy Tarreauca783d42019-03-13 10:03:07 +0100499 " -n sets the maximum total # of connections (uses ulimit -n)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200500 " -m limits the usable amount of memory (in MB)\n"
501 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200502 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200503 " -p writes pids of all children to this file\n"
Willy Tarreaue5733232019-05-22 19:24:06 +0200504#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200505 " -de disables epoll() usage even when available\n"
506#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200507#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200508 " -dk disables kqueue() usage even when available\n"
509#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200510#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +0000511 " -dv disables event ports usage even when available\n"
512#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200513#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200514 " -dp disables poll() usage even when available\n"
515#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200516#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100517 " -dS disables splice usage (broken on old kernels)\n"
518#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200519#if defined(USE_GETADDRINFO)
520 " -dG disables getaddrinfo() usage\n"
521#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000522#if defined(SO_REUSEPORT)
523 " -dR disables SO_REUSEPORT usage\n"
524#endif
Willy Tarreau3eed10e2016-11-07 21:03:16 +0100525 " -dr ignores server address resolution failures\n"
Emeric Brun850efd52014-01-29 12:24:34 +0100526 " -dV disables SSL verify on servers side\n"
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200527 " -sf/-st [pid ]* finishes/terminates old pids.\n"
Olivier Houchardf73629d2017-04-05 22:33:04 +0200528 " -x <unix_socket> get listening sockets from a unix socket\n"
William Lallemand63329e32019-06-13 17:03:37 +0200529 " -S <bind>[,<bind options>...] new master CLI\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200530 "\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100531 name, cfg_maxpconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200532 exit(1);
533}
534
535
536
537/*********************************************************************/
538/* more specific functions ***************************************/
539/*********************************************************************/
540
William Lallemand73b85e72017-06-01 17:38:51 +0200541/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
542 * pids the signal was correctly delivered to.
543 */
William Lallemande25473c2019-04-01 11:29:56 +0200544int tell_old_pids(int sig)
William Lallemand73b85e72017-06-01 17:38:51 +0200545{
546 int p;
547 int ret = 0;
548 for (p = 0; p < nb_oldpids; p++)
549 if (kill(oldpids[p], sig) == 0)
550 ret++;
551 return ret;
552}
553
William Lallemand75ea0a02017-11-15 19:02:58 +0100554/*
William Lallemand73b85e72017-06-01 17:38:51 +0200555 * remove a pid forom the olpid array and decrease nb_oldpids
556 * return 1 pid was found otherwise return 0
557 */
558
559int delete_oldpid(int pid)
560{
561 int i;
562
563 for (i = 0; i < nb_oldpids; i++) {
564 if (oldpids[i] == pid) {
565 oldpids[i] = oldpids[nb_oldpids - 1];
566 oldpids[nb_oldpids - 1] = 0;
567 nb_oldpids--;
568 return 1;
569 }
570 }
571 return 0;
572}
573
William Lallemand85b0bd92017-06-01 17:38:53 +0200574
575static void get_cur_unixsocket()
576{
577 /* if -x was used, try to update the stat socket if not available anymore */
578 if (global.stats_fe) {
579 struct bind_conf *bind_conf;
580
581 /* pass through all stats socket */
582 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
583 struct listener *l;
584
585 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
586
587 if (l->addr.ss_family == AF_UNIX &&
588 (bind_conf->level & ACCESS_FD_LISTENERS)) {
589 const struct sockaddr_un *un;
590
591 un = (struct sockaddr_un *)&l->addr;
592 /* priority to old_unixsocket */
593 if (!cur_unixsocket) {
594 cur_unixsocket = strdup(un->sun_path);
595 } else {
596 if (old_unixsocket && !strcmp(un->sun_path, old_unixsocket)) {
597 free(cur_unixsocket);
598 cur_unixsocket = strdup(old_unixsocket);
599 return;
600 }
601 }
602 }
603 }
604 }
605 }
606 if (!cur_unixsocket && old_unixsocket)
607 cur_unixsocket = strdup(old_unixsocket);
608}
609
William Lallemand73b85e72017-06-01 17:38:51 +0200610/*
611 * When called, this function reexec haproxy with -sf followed by current
Joseph Herlant03420902018-11-15 10:41:50 -0800612 * children PIDs and possibly old children PIDs if they didn't leave yet.
William Lallemand73b85e72017-06-01 17:38:51 +0200613 */
William Lallemanda57b7e32018-12-14 21:11:31 +0100614void mworker_reload()
William Lallemand73b85e72017-06-01 17:38:51 +0200615{
616 int next_argc = 0;
William Lallemand73b85e72017-06-01 17:38:51 +0200617 char *msg = NULL;
Willy Tarreau8dca1952019-03-01 10:21:55 +0100618 struct rlimit limit;
William Lallemand7c756a82018-11-26 11:53:40 +0100619 struct per_thread_deinit_fct *ptdf;
William Lallemand73b85e72017-06-01 17:38:51 +0200620
621 mworker_block_signals();
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100622#if defined(USE_SYSTEMD)
623 if (global.tune.options & GTUNE_USE_SYSTEMD)
624 sd_notify(0, "RELOADING=1");
625#endif
William Lallemand73b85e72017-06-01 17:38:51 +0200626 setenv("HAPROXY_MWORKER_REEXEC", "1", 1);
627
William Lallemandbc193052018-09-11 10:06:26 +0200628 mworker_proc_list_to_env(); /* put the children description in the env */
629
William Lallemand7c756a82018-11-26 11:53:40 +0100630 /* during the reload we must ensure that every FDs that can't be
631 * reuse (ie those that are not referenced in the proc_list)
632 * are closed or they will leak. */
633
634 /* close the listeners FD */
635 mworker_cli_proxy_stop();
William Lallemand16866672019-06-24 17:40:48 +0200636
637 if (getenv("HAPROXY_MWORKER_WAIT_ONLY") == NULL) {
638 /* close the poller FD and the thread waker pipe FD */
639 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
640 ptdf->fct();
641 if (fdtab)
642 deinit_pollers();
643 }
Willy Tarreau5db847a2019-05-09 14:13:35 +0200644#if defined(USE_OPENSSL) && (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
Rob Allen56996da2019-05-03 09:11:32 +0100645 if (global.ssl_used_frontend || global.ssl_used_backend)
646 /* close random device FDs */
647 RAND_keep_random_devices_open(0);
648#endif
William Lallemand7c756a82018-11-26 11:53:40 +0100649
Willy Tarreau8dca1952019-03-01 10:21:55 +0100650 /* restore the initial FD limits */
651 limit.rlim_cur = rlim_fd_cur_at_boot;
652 limit.rlim_max = rlim_fd_max_at_boot;
653 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
654 getrlimit(RLIMIT_NOFILE, &limit);
655 ha_warning("Failed to restore initial FD limits (cur=%u max=%u), using cur=%u max=%u\n",
656 rlim_fd_cur_at_boot, rlim_fd_max_at_boot,
657 (unsigned int)limit.rlim_cur, (unsigned int)limit.rlim_max);
658 }
659
William Lallemand73b85e72017-06-01 17:38:51 +0200660 /* compute length */
661 while (next_argv[next_argc])
662 next_argc++;
663
William Lallemand85b0bd92017-06-01 17:38:53 +0200664 /* 1 for haproxy -sf, 2 for -x /socket */
William Lallemand3f128872019-04-01 11:29:59 +0200665 next_argv = realloc(next_argv, (next_argc + 1 + 2 + mworker_child_nb() + nb_oldpids + 1) * sizeof(char *));
William Lallemand73b85e72017-06-01 17:38:51 +0200666 if (next_argv == NULL)
667 goto alloc_error;
668
William Lallemand73b85e72017-06-01 17:38:51 +0200669 /* add -sf <PID>* to argv */
William Lallemand3f128872019-04-01 11:29:59 +0200670 if (mworker_child_nb() > 0) {
671 struct mworker_proc *child;
672
William Lallemand73b85e72017-06-01 17:38:51 +0200673 next_argv[next_argc++] = "-sf";
William Lallemand3f128872019-04-01 11:29:59 +0200674
675 list_for_each_entry(child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +0200676 if (!(child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)))
William Lallemand3f128872019-04-01 11:29:59 +0200677 continue;
678 next_argv[next_argc] = memprintf(&msg, "%d", child->pid);
William Lallemand73b85e72017-06-01 17:38:51 +0200679 if (next_argv[next_argc] == NULL)
680 goto alloc_error;
681 msg = NULL;
William Lallemand3f128872019-04-01 11:29:59 +0200682 next_argc++;
William Lallemand73b85e72017-06-01 17:38:51 +0200683 }
684 }
William Lallemand3f128872019-04-01 11:29:59 +0200685
William Lallemand73b85e72017-06-01 17:38:51 +0200686 next_argv[next_argc] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200687
William Lallemand2bf6d622017-06-20 11:20:23 +0200688 /* add the -x option with the stat socket */
William Lallemand85b0bd92017-06-01 17:38:53 +0200689 if (cur_unixsocket) {
690
William Lallemand2bf6d622017-06-20 11:20:23 +0200691 next_argv[next_argc++] = "-x";
692 next_argv[next_argc++] = (char *)cur_unixsocket;
693 next_argv[next_argc++] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200694 }
695
Christopher Faulet767a84b2017-11-24 16:50:31 +0100696 ha_warning("Reexecuting Master process\n");
Tim Duesterhus0436ab72017-11-12 17:39:18 +0100697 execvp(next_argv[0], next_argv);
William Lallemand73b85e72017-06-01 17:38:51 +0200698
Christopher Faulet767a84b2017-11-24 16:50:31 +0100699 ha_warning("Failed to reexecute the master process [%d]: %s\n", pid, strerror(errno));
William Lallemand722d4ca2017-11-15 19:02:55 +0100700 return;
701
William Lallemand73b85e72017-06-01 17:38:51 +0200702alloc_error:
Joseph Herlant07a08342018-11-15 10:43:05 -0800703 ha_warning("Failed to reexecute the master process [%d]: Cannot allocate memory\n", pid);
William Lallemand73b85e72017-06-01 17:38:51 +0200704 return;
705}
706
William Lallemandb3f2be32018-09-11 10:06:18 +0200707static void mworker_loop()
708{
709
710#if defined(USE_SYSTEMD)
711 if (global.tune.options & GTUNE_USE_SYSTEMD)
712 sd_notifyf(0, "READY=1\nMAINPID=%lu", (unsigned long)getpid());
713#endif
Willy Tarreaud83b6c12019-04-18 11:31:36 +0200714 /* Busy polling makes no sense in the master :-) */
715 global.tune.options &= ~GTUNE_BUSY_POLLING;
William Lallemandb3f2be32018-09-11 10:06:18 +0200716
William Lallemandbc193052018-09-11 10:06:26 +0200717 master = 1;
718
William Lallemand0564d412018-11-20 17:36:53 +0100719 signal_unregister(SIGUSR1);
720 signal_unregister(SIGHUP);
721 signal_unregister(SIGQUIT);
722
William Lallemandb3f2be32018-09-11 10:06:18 +0200723 signal_register_fct(SIGTERM, mworker_catch_sigterm, SIGTERM);
724 signal_register_fct(SIGUSR1, mworker_catch_sigterm, SIGUSR1);
725 signal_register_fct(SIGINT, mworker_catch_sigterm, SIGINT);
726 signal_register_fct(SIGHUP, mworker_catch_sighup, SIGHUP);
727 signal_register_fct(SIGUSR2, mworker_catch_sighup, SIGUSR2);
728 signal_register_fct(SIGCHLD, mworker_catch_sigchld, SIGCHLD);
729
730 mworker_unblock_signals();
731 mworker_cleanlisteners();
William Lallemand27f3fa52018-12-06 14:05:20 +0100732 mworker_cleantasks();
William Lallemandb3f2be32018-09-11 10:06:18 +0200733
William Lallemandbc193052018-09-11 10:06:26 +0200734 mworker_catch_sigchld(NULL); /* ensure we clean the children in case
735 some SIGCHLD were lost */
736
William Lallemandb3f2be32018-09-11 10:06:18 +0200737 global.nbthread = 1;
738 relative_pid = 1;
739 pid_bit = 1;
Willy Tarreaua38a7172019-02-02 17:11:28 +0100740 all_proc_mask = 1;
William Lallemandb3f2be32018-09-11 10:06:18 +0200741
William Lallemand2672eb92018-12-14 15:52:39 +0100742#ifdef USE_THREAD
743 tid_bit = 1;
744 all_threads_mask = 1;
745#endif
746
William Lallemandb3f2be32018-09-11 10:06:18 +0200747 jobs++; /* this is the "master" job, we want to take care of the
748 signals even if there is no listener so the poll loop don't
749 leave */
750
751 fork_poller();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +0200752 run_thread_poll_loop(0);
William Lallemandb3f2be32018-09-11 10:06:18 +0200753}
William Lallemandcb11fd22017-06-01 17:38:52 +0200754
755/*
756 * Reexec the process in failure mode, instead of exiting
757 */
758void reexec_on_failure()
759{
760 if (!atexit_flag)
761 return;
762
763 setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1);
764
Christopher Faulet767a84b2017-11-24 16:50:31 +0100765 ha_warning("Reexecuting Master process in waitpid mode\n");
William Lallemandcb11fd22017-06-01 17:38:52 +0200766 mworker_reload();
William Lallemandcb11fd22017-06-01 17:38:52 +0200767}
William Lallemand73b85e72017-06-01 17:38:51 +0200768
769
770/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200771 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
772 * a signal zero to all subscribers. This means that it's as easy as
773 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200774 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100775static void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200776{
777 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200778 signal_unregister_handler(sh);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100779 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200780}
781
782/*
783 * upon SIGTTOU, we pause everything
784 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100785static void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200786{
787 pause_proxies();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100788 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200789}
790
791/*
792 * upon SIGTTIN, let's have a soft stop.
793 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100794static void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200795{
Willy Tarreaube58c382011-07-24 18:28:10 +0200796 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200797}
798
799/*
800 * this function dumps every server's state when the process receives SIGHUP.
801 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100802static void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200803{
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100804 struct proxy *p = proxies_list;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200805
Christopher Faulet767a84b2017-11-24 16:50:31 +0100806 ha_warning("SIGHUP received, dumping servers states.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200807 while (p) {
808 struct server *s = p->srv;
809
810 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
811 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100812 chunk_printf(&trash,
813 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
814 p->id, s->id,
Emeric Brun52a91d32017-08-31 14:41:55 +0200815 (s->cur_state != SRV_ST_STOPPED) ? "UP" : "DOWN",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100816 s->cur_sess, s->nbpend, s->counters.cum_sess);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200817 ha_warning("%s\n", trash.area);
818 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200819 s = s->next;
820 }
821
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200822 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
823 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100824 chunk_printf(&trash,
825 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
826 p->id,
827 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 +0200828 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100829 chunk_printf(&trash,
830 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
831 p->id,
832 (p->srv_bck) ? "is running on backup servers" : "has no server available",
833 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 +0200834 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100835 chunk_printf(&trash,
836 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
837 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
838 p->id, p->srv_act, p->srv_bck,
839 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 +0200840 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200841 ha_warning("%s\n", trash.area);
842 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200843
844 p = p->next;
845 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200846}
847
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100848static void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200849{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200850 /* dump memory usage then free everything possible */
851 dump_pools();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100852 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200853}
854
William Lallemande1340412017-12-28 16:09:36 +0100855/*
856 * This function dup2 the stdio FDs (0,1,2) with <fd>, then closes <fd>
857 * If <fd> < 0, it opens /dev/null and use it to dup
858 *
859 * In the case of chrooting, you have to open /dev/null before the chroot, and
860 * pass the <fd> to this function
861 */
862static void stdio_quiet(int fd)
863{
864 if (fd < 0)
865 fd = open("/dev/null", O_RDWR, 0);
866
867 if (fd > -1) {
868 fclose(stdin);
869 fclose(stdout);
870 fclose(stderr);
871
872 dup2(fd, 0);
873 dup2(fd, 1);
874 dup2(fd, 2);
875 if (fd > 2)
876 close(fd);
877 return;
878 }
879
880 ha_alert("Cannot open /dev/null\n");
881 exit(EXIT_FAILURE);
882}
883
884
Joseph Herlant03420902018-11-15 10:41:50 -0800885/* This function checks if cfg_cfgfiles contains directories.
886 * If it finds one, it adds all the files (and only files) it contains
887 * in cfg_cfgfiles in place of the directory (and removes the directory).
888 * It adds the files in lexical order.
889 * It adds only files with .cfg extension.
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200890 * It doesn't add files with name starting with '.'
891 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100892static void cfgfiles_expand_directories(void)
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200893{
894 struct wordlist *wl, *wlb;
895 char *err = NULL;
896
897 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
898 struct stat file_stat;
899 struct dirent **dir_entries = NULL;
900 int dir_entries_nb;
901 int dir_entries_it;
902
903 if (stat(wl->s, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100904 ha_alert("Cannot open configuration file/directory %s : %s\n",
905 wl->s,
906 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200907 exit(1);
908 }
909
910 if (!S_ISDIR(file_stat.st_mode))
911 continue;
912
913 /* from this point wl->s is a directory */
914
915 dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort);
916 if (dir_entries_nb < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100917 ha_alert("Cannot open configuration directory %s : %s\n",
918 wl->s,
919 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200920 exit(1);
921 }
922
923 /* for each element in the directory wl->s */
924 for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) {
925 struct dirent *dir_entry = dir_entries[dir_entries_it];
926 char *filename = NULL;
927 char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg");
928
929 /* don't add filename that begin with .
Joseph Herlant03420902018-11-15 10:41:50 -0800930 * only add filename with .cfg extension
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200931 */
932 if (dir_entry->d_name[0] == '.' ||
933 !(d_name_cfgext && d_name_cfgext[4] == '\0'))
934 goto next_dir_entry;
935
936 if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100937 ha_alert("Cannot load configuration files %s : out of memory.\n",
938 filename);
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200939 exit(1);
940 }
941
942 if (stat(filename, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100943 ha_alert("Cannot open configuration file %s : %s\n",
944 wl->s,
945 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200946 exit(1);
947 }
948
949 /* don't add anything else than regular file in cfg_cfgfiles
950 * this way we avoid loops
951 */
952 if (!S_ISREG(file_stat.st_mode))
953 goto next_dir_entry;
954
955 if (!list_append_word(&wl->list, filename, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100956 ha_alert("Cannot load configuration files %s : %s\n",
957 filename,
958 err);
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200959 exit(1);
960 }
961
962next_dir_entry:
963 free(filename);
964 free(dir_entry);
965 }
966
967 free(dir_entries);
968
969 /* remove the current directory (wl) from cfg_cfgfiles */
970 free(wl->s);
971 LIST_DEL(&wl->list);
972 free(wl);
973 }
974
975 free(err);
976}
977
Olivier Houchardf73629d2017-04-05 22:33:04 +0200978static int get_old_sockets(const char *unixsocket)
979{
980 char *cmsgbuf = NULL, *tmpbuf = NULL;
981 int *tmpfd = NULL;
982 struct sockaddr_un addr;
983 struct cmsghdr *cmsg;
984 struct msghdr msghdr;
985 struct iovec iov;
986 struct xfer_sock_list *xfer_sock = NULL;
Olivier Houchard54740872017-04-06 14:45:14 +0200987 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Olivier Houchardf73629d2017-04-05 22:33:04 +0200988 int sock = -1;
989 int ret = -1;
990 int ret2 = -1;
991 int fd_nb;
992 int got_fd = 0;
993 int i = 0;
994 size_t maxoff = 0, curoff = 0;
995
996 memset(&msghdr, 0, sizeof(msghdr));
997 cmsgbuf = malloc(CMSG_SPACE(sizeof(int)) * MAX_SEND_FD);
998 if (!cmsgbuf) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100999 ha_warning("Failed to allocate memory to send sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001000 goto out;
1001 }
1002 sock = socket(PF_UNIX, SOCK_STREAM, 0);
1003 if (sock < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001004 ha_warning("Failed to connect to the old process socket '%s'\n",
1005 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001006 goto out;
1007 }
1008 strncpy(addr.sun_path, unixsocket, sizeof(addr.sun_path));
1009 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
1010 addr.sun_family = PF_UNIX;
1011 ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr));
1012 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001013 ha_warning("Failed to connect to the old process socket '%s'\n",
1014 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001015 goto out;
1016 }
Olivier Houchard54740872017-04-06 14:45:14 +02001017 setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001018 iov.iov_base = &fd_nb;
1019 iov.iov_len = sizeof(fd_nb);
1020 msghdr.msg_iov = &iov;
1021 msghdr.msg_iovlen = 1;
1022 send(sock, "_getsocks\n", strlen("_getsocks\n"), 0);
1023 /* First, get the number of file descriptors to be received */
1024 if (recvmsg(sock, &msghdr, MSG_WAITALL) != sizeof(fd_nb)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001025 ha_warning("Failed to get the number of sockets to be transferred !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001026 goto out;
1027 }
1028 if (fd_nb == 0) {
1029 ret = 0;
1030 goto out;
1031 }
Olivier Houchardf143b802017-11-04 15:13:01 +01001032 tmpbuf = malloc(fd_nb * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001033 if (tmpbuf == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001034 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001035 goto out;
1036 }
1037 tmpfd = malloc(fd_nb * sizeof(int));
1038 if (tmpfd == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001039 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001040 goto out;
1041 }
1042 msghdr.msg_control = cmsgbuf;
1043 msghdr.msg_controllen = CMSG_SPACE(sizeof(int)) * MAX_SEND_FD;
Olivier Houchardf143b802017-11-04 15:13:01 +01001044 iov.iov_len = MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001045 do {
1046 int ret3;
1047
1048 iov.iov_base = tmpbuf + curoff;
1049 ret = recvmsg(sock, &msghdr, 0);
1050 if (ret == -1 && errno == EINTR)
1051 continue;
1052 if (ret <= 0)
1053 break;
1054 /* Send an ack to let the sender know we got the sockets
1055 * and it can send some more
1056 */
1057 do {
1058 ret3 = send(sock, &got_fd, sizeof(got_fd), 0);
1059 } while (ret3 == -1 && errno == EINTR);
1060 for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg != NULL;
1061 cmsg = CMSG_NXTHDR(&msghdr, cmsg)) {
1062 if (cmsg->cmsg_level == SOL_SOCKET &&
1063 cmsg->cmsg_type == SCM_RIGHTS) {
1064 size_t totlen = cmsg->cmsg_len -
1065 CMSG_LEN(0);
1066 if (totlen / sizeof(int) + got_fd > fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001067 ha_warning("Got to many sockets !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001068 goto out;
1069 }
1070 /*
1071 * Be paranoid and use memcpy() to avoid any
1072 * potential alignement issue.
1073 */
1074 memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen);
1075 got_fd += totlen / sizeof(int);
1076 }
1077 }
1078 curoff += ret;
1079 } while (got_fd < fd_nb);
1080
1081 if (got_fd != fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001082 ha_warning("We didn't get the expected number of sockets (expecting %d got %d)\n",
1083 fd_nb, got_fd);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001084 goto out;
1085 }
1086 maxoff = curoff;
1087 curoff = 0;
1088 for (i = 0; i < got_fd; i++) {
1089 int fd = tmpfd[i];
1090 socklen_t socklen;
1091 int len;
1092
1093 xfer_sock = calloc(1, sizeof(*xfer_sock));
1094 if (!xfer_sock) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001095 ha_warning("Failed to allocate memory in get_old_sockets() !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001096 break;
1097 }
1098 xfer_sock->fd = -1;
1099
1100 socklen = sizeof(xfer_sock->addr);
1101 if (getsockname(fd, (struct sockaddr *)&xfer_sock->addr, &socklen) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001102 ha_warning("Failed to get socket address\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001103 free(xfer_sock);
Olivier Houchardbe7b1ce2017-07-17 17:25:33 +02001104 xfer_sock = NULL;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001105 continue;
1106 }
1107 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001108 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001109 goto out;
1110 }
1111 len = tmpbuf[curoff++];
1112 if (len > 0) {
1113 /* We have a namespace */
1114 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001115 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001116 goto out;
1117 }
1118 xfer_sock->namespace = malloc(len + 1);
1119 if (!xfer_sock->namespace) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001120 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001121 goto out;
1122 }
1123 memcpy(xfer_sock->namespace, &tmpbuf[curoff], len);
1124 xfer_sock->namespace[len] = 0;
1125 curoff += len;
1126 }
1127 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001128 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001129 goto out;
1130 }
1131 len = tmpbuf[curoff++];
1132 if (len > 0) {
1133 /* We have an interface */
1134 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001135 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001136 goto out;
1137 }
1138 xfer_sock->iface = malloc(len + 1);
1139 if (!xfer_sock->iface) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001140 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001141 goto out;
1142 }
1143 memcpy(xfer_sock->iface, &tmpbuf[curoff], len);
Olivier Houchard33e083c2018-03-15 17:48:49 +01001144 xfer_sock->iface[len] = 0;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001145 curoff += len;
1146 }
1147 if (curoff + sizeof(int) > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001148 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001149 goto out;
1150 }
1151 memcpy(&xfer_sock->options, &tmpbuf[curoff],
1152 sizeof(xfer_sock->options));
1153 curoff += sizeof(xfer_sock->options);
1154
1155 xfer_sock->fd = fd;
1156 if (xfer_sock_list)
1157 xfer_sock_list->prev = xfer_sock;
1158 xfer_sock->next = xfer_sock_list;
1159 xfer_sock->prev = NULL;
1160 xfer_sock_list = xfer_sock;
1161 xfer_sock = NULL;
1162 }
1163
1164 ret2 = 0;
1165out:
1166 /* If we failed midway make sure to close the remaining
1167 * file descriptors
1168 */
1169 if (tmpfd != NULL && i < got_fd) {
1170 for (; i < got_fd; i++) {
1171 close(tmpfd[i]);
1172 }
1173 }
1174 free(tmpbuf);
1175 free(tmpfd);
1176 free(cmsgbuf);
1177 if (sock != -1)
1178 close(sock);
1179 if (xfer_sock) {
1180 free(xfer_sock->namespace);
1181 free(xfer_sock->iface);
1182 if (xfer_sock->fd != -1)
1183 close(xfer_sock->fd);
1184 free(xfer_sock);
1185 }
1186 return (ret2);
1187}
1188
Willy Tarreaubaaee002006-06-26 02:48:02 +02001189/*
William Lallemand73b85e72017-06-01 17:38:51 +02001190 * copy and cleanup the current argv
1191 * Remove the -sf /-st parameters
1192 * Return an allocated copy of argv
1193 */
1194
1195static char **copy_argv(int argc, char **argv)
1196{
1197 char **newargv;
William Lallemand2bf6d622017-06-20 11:20:23 +02001198 int i = 0, j = 0;
William Lallemand73b85e72017-06-01 17:38:51 +02001199
1200 newargv = calloc(argc + 2, sizeof(char *));
1201 if (newargv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001202 ha_warning("Cannot allocate memory\n");
William Lallemand73b85e72017-06-01 17:38:51 +02001203 return NULL;
1204 }
1205
William Lallemand2bf6d622017-06-20 11:20:23 +02001206 while (i < argc) {
1207 /* -sf or -st or -x */
William Lallemand29f690c2018-01-09 23:12:27 +01001208 if (i > 0 && argv[i][0] == '-' &&
1209 ((argv[i][1] == 's' && (argv[i][2] == 'f' || argv[i][2] == 't')) || argv[i][1] == 'x' )) {
William Lallemand2bf6d622017-06-20 11:20:23 +02001210 /* list of pids to finish ('f') or terminate ('t') or unix socket (-x) */
William Lallemand73b85e72017-06-01 17:38:51 +02001211 i++;
1212 while (i < argc && argv[i][0] != '-') {
1213 i++;
1214 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001215 continue;
William Lallemand73b85e72017-06-01 17:38:51 +02001216 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001217
1218 newargv[j++] = argv[i++];
William Lallemand73b85e72017-06-01 17:38:51 +02001219 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001220
William Lallemand73b85e72017-06-01 17:38:51 +02001221 return newargv;
1222}
1223
Willy Tarreau5a023f02019-03-01 14:19:31 +01001224/* considers splicing proxies' maxconn, computes the ideal global.maxpipes
1225 * setting, and returns it. It may return -1 meaning "unlimited" if some
1226 * unlimited proxies have been found and the global.maxconn value is not yet
1227 * set. It may also return a value greater than maxconn if it's not yet set.
1228 * Note that a value of zero means there is no need for pipes. -1 is never
1229 * returned if global.maxconn is valid.
1230 */
1231static int compute_ideal_maxpipes()
1232{
1233 struct proxy *cur;
1234 int nbfe = 0, nbbe = 0;
1235 int unlimited = 0;
1236 int pipes;
1237 int max;
1238
1239 for (cur = proxies_list; cur; cur = cur->next) {
1240 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
1241 if (cur->cap & PR_CAP_FE) {
1242 max = cur->maxconn;
1243 nbfe += max;
1244 if (!max) {
1245 unlimited = 1;
1246 break;
1247 }
1248 }
1249 if (cur->cap & PR_CAP_BE) {
1250 max = cur->fullconn ? cur->fullconn : global.maxconn;
1251 nbbe += max;
1252 if (!max) {
1253 unlimited = 1;
1254 break;
1255 }
1256 }
1257 }
1258 }
1259
1260 pipes = MAX(nbfe, nbbe);
1261 if (global.maxconn) {
1262 if (pipes > global.maxconn || unlimited)
1263 pipes = global.maxconn;
1264 } else if (unlimited) {
1265 pipes = -1;
1266 }
1267
1268 return pipes >= 4 ? pipes / 4 : pipes;
1269}
1270
Willy Tarreauac350932019-03-01 15:43:14 +01001271/* considers global.maxsocks, global.maxpipes, async engines, SSL frontends and
1272 * rlimits and computes an ideal maxconn. It's meant to be called only when
1273 * maxsock contains the sum of listening FDs, before it is updated based on
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001274 * maxconn and pipes. If there are not enough FDs left, DEFAULT_MAXCONN (by
1275 * default 100) is returned as it is expected that it will even run on tight
1276 * environments, and will maintain compatibility with previous packages that
1277 * used to rely on this value as the default one. The system will emit a
1278 * warning indicating how many FDs are missing anyway if needed.
Willy Tarreauac350932019-03-01 15:43:14 +01001279 */
1280static int compute_ideal_maxconn()
1281{
1282 int ssl_sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1283 int engine_fds = global.ssl_used_async_engines * ssl_sides;
1284 int pipes = compute_ideal_maxpipes();
1285 int remain = rlim_fd_cur_at_boot;
1286 int maxconn;
1287
1288 /* we have to take into account these elements :
1289 * - number of engine_fds, which inflates the number of FD needed per
1290 * connection by this number.
1291 * - number of pipes per connection on average : for the unlimited
1292 * case, this is 0.5 pipe FDs per connection, otherwise it's a
1293 * fixed value of 2*pipes.
1294 * - two FDs per connection
1295 */
1296
1297 /* subtract listeners and checks */
1298 remain -= global.maxsock;
1299
Willy Tarreau3f200852019-03-14 19:13:17 +01001300 /* one epoll_fd/kqueue_fd per thread */
1301 remain -= global.nbthread;
1302
1303 /* one wake-up pipe (2 fd) per thread */
1304 remain -= 2 * global.nbthread;
1305
Willy Tarreauac350932019-03-01 15:43:14 +01001306 /* Fixed pipes values : we only subtract them if they're not larger
1307 * than the remaining FDs because pipes are optional.
1308 */
1309 if (pipes >= 0 && pipes * 2 < remain)
1310 remain -= pipes * 2;
1311
1312 if (pipes < 0) {
1313 /* maxsock = maxconn * 2 + maxconn/4 * 2 + maxconn * engine_fds.
1314 * = maxconn * (2 + 0.5 + engine_fds)
1315 * = maxconn * (4 + 1 + 2*engine_fds) / 2
1316 */
1317 maxconn = 2 * remain / (5 + 2 * engine_fds);
1318 } else {
1319 /* maxsock = maxconn * 2 + maxconn * engine_fds.
1320 * = maxconn * (2 + engine_fds)
1321 */
1322 maxconn = remain / (2 + engine_fds);
1323 }
1324
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001325 return MAX(maxconn, DEFAULT_MAXCONN);
Willy Tarreauac350932019-03-01 15:43:14 +01001326}
1327
William Lallemand73b85e72017-06-01 17:38:51 +02001328/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001329 * This function initializes all the necessary variables. It only returns
1330 * if everything is OK. If something fails, it exits.
1331 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001332static void init(int argc, char **argv)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001333{
Willy Tarreaubaaee002006-06-26 02:48:02 +02001334 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001335 char *tmp;
1336 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +02001337 int err_code = 0;
Maxime de Roucy0f503922016-05-13 23:52:55 +02001338 char *err_msg = NULL;
Willy Tarreau477ecd82010-01-03 21:12:30 +01001339 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +00001340 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +02001341 char *change_dir = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001342 struct proxy *px;
Willy Tarreaue6945732016-12-21 19:57:00 +01001343 struct post_check_fct *pcf;
Willy Tarreauac350932019-03-01 15:43:14 +01001344 int ideal_maxconn;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001345
Christopher Faulete3a5e352017-10-24 13:53:54 +02001346 global.mode = MODE_STARTING;
William Lallemand73b85e72017-06-01 17:38:51 +02001347 next_argv = copy_argv(argc, argv);
1348
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001349 if (!init_trash_buffers(1)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001350 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet748919a2017-07-26 14:59:46 +02001351 exit(1);
1352 }
David du Colombier7af46052012-05-16 14:16:48 +02001353
Emeric Brun2b920a12010-09-23 18:30:22 +02001354 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
1355 * the string in case of truncation, and at least FreeBSD appears not to do
1356 * it.
1357 */
1358 memset(hostname, 0, sizeof(hostname));
1359 gethostname(hostname, sizeof(hostname) - 1);
1360 memset(localpeer, 0, sizeof(localpeer));
1361 memcpy(localpeer, hostname, (sizeof(hostname) > sizeof(localpeer) ? sizeof(localpeer) : sizeof(hostname)) - 1);
William Lallemanddaf4cd22018-04-17 16:46:13 +02001362 setenv("HAPROXY_LOCALPEER", localpeer, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02001363
Willy Tarreaubaaee002006-06-26 02:48:02 +02001364 /*
1365 * Initialize the previously static variables.
1366 */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001367
Willy Tarreau173d9952018-01-26 21:48:23 +01001368 totalconn = actconn = listeners = stopping = 0;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001369 killed = 0;
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001370
Willy Tarreaubaaee002006-06-26 02:48:02 +02001371
1372#ifdef HAPROXY_MEMMAX
Willy Tarreau70060452015-12-14 12:46:07 +01001373 global.rlimit_memmax_all = HAPROXY_MEMMAX;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001374#endif
1375
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001376 tzset();
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001377 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001378 start_date = now;
1379
Willy Tarreau84310e22014-02-14 11:59:04 +01001380 srandom(now_ms - getpid());
1381
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001382 if (init_acl() != 0)
1383 exit(1);
Willy Tarreaub6b3df32018-11-26 16:31:20 +01001384
Willy Tarreau8280d642009-09-23 23:37:52 +02001385 /* warning, we init buffers later */
Willy Tarreau04f1e2d2018-09-10 18:04:24 +02001386 if (!init_http(&err_msg)) {
1387 ha_alert("%s. Aborting.\n", err_msg);
1388 free(err_msg);
1389 abort();
1390 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001391
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001392 /* Initialise lua. */
1393 hlua_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001394
Christopher Fauletff2613e2016-11-09 11:36:17 +01001395 /* Initialize process vars */
1396 vars_init(&global.vars, SCOPE_PROC);
1397
Willy Tarreau43b78992009-01-25 15:42:27 +01001398 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaue5733232019-05-22 19:24:06 +02001399#if defined(USE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001400 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001401#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001402#if defined(USE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001403 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001404#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001405#if defined(USE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +01001406 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001407#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001408#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001409 global.tune.options |= GTUNE_USE_EVPORTS;
1410#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001411#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001412 global.tune.options |= GTUNE_USE_SPLICE;
1413#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001414#if defined(USE_GETADDRINFO)
1415 global.tune.options |= GTUNE_USE_GAI;
1416#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001417#if defined(SO_REUSEPORT)
1418 global.tune.options |= GTUNE_USE_REUSEPORT;
1419#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02001420
1421 pid = getpid();
1422 progname = *argv;
1423 while ((tmp = strchr(progname, '/')) != NULL)
1424 progname = tmp + 1;
1425
Kevinm48936af2010-12-22 16:08:21 +00001426 /* the process name is used for the logs only */
Dragan Dosen43885c72015-10-01 13:18:13 +02001427 chunk_initstr(&global.log_tag, strdup(progname));
Kevinm48936af2010-12-22 16:08:21 +00001428
Willy Tarreaubaaee002006-06-26 02:48:02 +02001429 argc--; argv++;
1430 while (argc > 0) {
1431 char *flag;
1432
1433 if (**argv == '-') {
1434 flag = *argv+1;
1435
1436 /* 1 arg */
1437 if (*flag == 'v') {
1438 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +01001439 if (flag[1] == 'v') /* -vv */
1440 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001441 exit(0);
1442 }
Willy Tarreaue5733232019-05-22 19:24:06 +02001443#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001444 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +01001445 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001446#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001447#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001448 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +01001449 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001450#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001451#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001452 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +01001453 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001454#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001455#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001456 else if (*flag == 'd' && flag[1] == 'v')
1457 global.tune.options &= ~GTUNE_USE_EVPORTS;
1458#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001459#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001460 else if (*flag == 'd' && flag[1] == 'S')
1461 global.tune.options &= ~GTUNE_USE_SPLICE;
1462#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001463#if defined(USE_GETADDRINFO)
1464 else if (*flag == 'd' && flag[1] == 'G')
1465 global.tune.options &= ~GTUNE_USE_GAI;
1466#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001467#if defined(SO_REUSEPORT)
1468 else if (*flag == 'd' && flag[1] == 'R')
1469 global.tune.options &= ~GTUNE_USE_REUSEPORT;
1470#endif
Emeric Brun850efd52014-01-29 12:24:34 +01001471 else if (*flag == 'd' && flag[1] == 'V')
1472 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001473 else if (*flag == 'V')
1474 arg_mode |= MODE_VERBOSE;
1475 else if (*flag == 'd' && flag[1] == 'b')
1476 arg_mode |= MODE_FOREGROUND;
Willy Tarreau6e064432012-05-08 15:40:42 +02001477 else if (*flag == 'd' && flag[1] == 'M')
1478 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreau3eed10e2016-11-07 21:03:16 +01001479 else if (*flag == 'd' && flag[1] == 'r')
1480 global.tune.options |= GTUNE_RESOLVE_DONTFAIL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001481 else if (*flag == 'd')
1482 arg_mode |= MODE_DEBUG;
1483 else if (*flag == 'c')
1484 arg_mode |= MODE_CHECK;
William Lallemand095ba4c2017-06-01 17:38:50 +02001485 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +02001486 arg_mode |= MODE_DAEMON;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001487 else if (*flag == 'W' && flag[1] == 's') {
Lukas Tribusf46bf952017-11-21 12:39:34 +01001488 arg_mode |= MODE_MWORKER | MODE_FOREGROUND;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001489#if defined(USE_SYSTEMD)
1490 global.tune.options |= GTUNE_USE_SYSTEMD;
1491#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001492 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 +01001493 usage(progname);
1494#endif
1495 }
William Lallemand095ba4c2017-06-01 17:38:50 +02001496 else if (*flag == 'W')
1497 arg_mode |= MODE_MWORKER;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001498 else if (*flag == 'q')
1499 arg_mode |= MODE_QUIET;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001500 else if (*flag == 'x') {
William Lallemand45eff442017-06-19 15:57:55 +02001501 if (argc <= 1 || argv[1][0] == '-') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001502 ha_alert("Unix socket path expected with the -x flag\n\n");
William Lallemand45eff442017-06-19 15:57:55 +02001503 usage(progname);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001504 }
William Lallemand4fc09692017-06-19 16:37:19 +02001505 if (old_unixsocket)
Christopher Faulet767a84b2017-11-24 16:50:31 +01001506 ha_warning("-x option already set, overwriting the value\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001507 old_unixsocket = argv[1];
William Lallemand4fc09692017-06-19 16:37:19 +02001508
Olivier Houchardf73629d2017-04-05 22:33:04 +02001509 argv++;
1510 argc--;
1511 }
William Lallemande7361152018-10-26 14:47:36 +02001512 else if (*flag == 'S') {
1513 struct wordlist *c;
1514
1515 if (argc <= 1 || argv[1][0] == '-') {
1516 ha_alert("Socket and optional bind parameters expected with the -S flag\n");
1517 usage(progname);
1518 }
1519 if ((c = malloc(sizeof(*c))) == NULL || (c->s = strdup(argv[1])) == NULL) {
1520 ha_alert("Cannot allocate memory\n");
1521 exit(EXIT_FAILURE);
1522 }
1523 LIST_ADD(&mworker_cli_conf, &c->list);
1524
1525 argv++;
1526 argc--;
1527 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001528 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
1529 /* list of pids to finish ('f') or terminate ('t') */
1530
1531 if (flag[1] == 'f')
1532 oldpids_sig = SIGUSR1; /* finish then exit */
1533 else
1534 oldpids_sig = SIGTERM; /* terminate immediately */
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001535 while (argc > 1 && argv[1][0] != '-') {
Chris Lane236062f2018-02-05 23:15:44 +00001536 char * endptr = NULL;
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001537 oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int));
1538 if (!oldpids) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001539 ha_alert("Cannot allocate old pid : out of memory.\n");
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001540 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001541 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001542 argc--; argv++;
Chris Lane236062f2018-02-05 23:15:44 +00001543 errno = 0;
1544 oldpids[nb_oldpids] = strtol(*argv, &endptr, 10);
1545 if (errno) {
1546 ha_alert("-%2s option: failed to parse {%s}: %s\n",
1547 flag,
1548 *argv, strerror(errno));
1549 exit(1);
1550 } else if (endptr && strlen(endptr)) {
1551 while (isspace(*endptr)) endptr++;
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001552 if (*endptr != 0) {
Chris Lane236062f2018-02-05 23:15:44 +00001553 ha_alert("-%2s option: some bytes unconsumed in PID list {%s}\n",
1554 flag, endptr);
1555 exit(1);
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001556 }
Chris Lane236062f2018-02-05 23:15:44 +00001557 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001558 if (oldpids[nb_oldpids] <= 0)
1559 usage(progname);
1560 nb_oldpids++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001561 }
1562 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001563 else if (flag[0] == '-' && flag[1] == 0) { /* "--" */
1564 /* now that's a cfgfile list */
1565 argv++; argc--;
1566 while (argc > 0) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02001567 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001568 ha_alert("Cannot load configuration file/directory %s : %s\n",
1569 *argv,
1570 err_msg);
Willy Tarreaua088d312015-10-08 11:58:48 +02001571 exit(1);
1572 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001573 argv++; argc--;
1574 }
1575 break;
1576 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001577 else { /* >=2 args */
1578 argv++; argc--;
1579 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001580 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001581
1582 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +02001583 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001584 case 'n' : cfg_maxconn = atol(*argv); break;
Willy Tarreau70060452015-12-14 12:46:07 +01001585 case 'm' : global.rlimit_memmax_all = atol(*argv); break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001586 case 'N' : cfg_maxpconn = atol(*argv); break;
William Lallemanddaf4cd22018-04-17 16:46:13 +02001587 case 'L' :
1588 strncpy(localpeer, *argv, sizeof(localpeer) - 1);
1589 setenv("HAPROXY_LOCALPEER", localpeer, 1);
1590 break;
Willy Tarreau5d01a632009-06-22 16:02:30 +02001591 case 'f' :
Maxime de Roucy0f503922016-05-13 23:52:55 +02001592 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001593 ha_alert("Cannot load configuration file/directory %s : %s\n",
1594 *argv,
1595 err_msg);
Willy Tarreau5d01a632009-06-22 16:02:30 +02001596 exit(1);
1597 }
Willy Tarreau5d01a632009-06-22 16:02:30 +02001598 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001599 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001600 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001601 }
1602 }
1603 }
1604 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001605 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001606 argv++; argc--;
1607 }
1608
Christopher Faulete3a5e352017-10-24 13:53:54 +02001609 global.mode |= (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE
1610 | MODE_QUIET | MODE_CHECK | MODE_DEBUG));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001611
William Lallemand944e6192018-11-21 15:48:31 +01001612 if (getenv("HAPROXY_MWORKER_WAIT_ONLY")) {
William Lallemandcb11fd22017-06-01 17:38:52 +02001613 unsetenv("HAPROXY_MWORKER_WAIT_ONLY");
William Lallemand944e6192018-11-21 15:48:31 +01001614 global.mode |= MODE_MWORKER_WAIT;
1615 global.mode &= ~MODE_MWORKER;
William Lallemandcb11fd22017-06-01 17:38:52 +02001616 }
1617
1618 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) {
1619 atexit_flag = 1;
1620 atexit(reexec_on_failure);
1621 }
1622
Willy Tarreau576132e2011-09-10 19:26:56 +02001623 if (change_dir && chdir(change_dir) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001624 ha_alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
Willy Tarreau576132e2011-09-10 19:26:56 +02001625 exit(1);
1626 }
1627
Willy Tarreaubaaee002006-06-26 02:48:02 +02001628 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001629
1630 init_default_instance();
1631
William Lallemand944e6192018-11-21 15:48:31 +01001632 /* in wait mode, we don't try to read the configuration files */
1633 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand7b302d82019-05-20 11:15:37 +02001634 struct buffer *trash = get_trash_chunk();
Willy Tarreauc4382422009-12-06 13:10:44 +01001635
William Lallemand944e6192018-11-21 15:48:31 +01001636 /* handle cfgfiles that are actually directories */
1637 cfgfiles_expand_directories();
1638
1639 if (LIST_ISEMPTY(&cfg_cfgfiles))
1640 usage(progname);
1641
1642
1643 list_for_each_entry(wl, &cfg_cfgfiles, list) {
1644 int ret;
1645
William Lallemand7b302d82019-05-20 11:15:37 +02001646 if (trash->data)
1647 chunk_appendf(trash, ";");
1648
1649 chunk_appendf(trash, "%s", wl->s);
1650
William Lallemand944e6192018-11-21 15:48:31 +01001651 ret = readcfgfile(wl->s);
1652 if (ret == -1) {
1653 ha_alert("Could not open configuration file %s : %s\n",
1654 wl->s, strerror(errno));
1655 exit(1);
1656 }
1657 if (ret & (ERR_ABORT|ERR_FATAL))
1658 ha_alert("Error(s) found in configuration file : %s\n", wl->s);
1659 err_code |= ret;
1660 if (err_code & ERR_ABORT)
1661 exit(1);
Willy Tarreauc4382422009-12-06 13:10:44 +01001662 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001663
William Lallemand944e6192018-11-21 15:48:31 +01001664 /* do not try to resolve arguments nor to spot inconsistencies when
1665 * the configuration contains fatal errors caused by files not found
1666 * or failed memory allocations.
1667 */
1668 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1669 ha_alert("Fatal errors found in configuration.\n");
1670 exit(1);
1671 }
William Lallemand7b302d82019-05-20 11:15:37 +02001672 if (trash->data)
1673 setenv("HAPROXY_CFGFILES", trash->area, 1);
1674
Willy Tarreaub83dc3d2017-04-19 11:24:07 +02001675 }
William Lallemandce83b4a2018-10-26 14:47:30 +02001676 if (global.mode & MODE_MWORKER) {
1677 int proc;
William Lallemand16dd1b32018-11-19 18:46:18 +01001678 struct mworker_proc *tmproc;
1679
William Lallemand482f9a92019-04-12 16:15:00 +02001680 setenv("HAPROXY_MWORKER", "1", 1);
1681
William Lallemand16dd1b32018-11-19 18:46:18 +01001682 if (getenv("HAPROXY_MWORKER_REEXEC") == NULL) {
1683
William Lallemandf3a86832019-04-01 11:29:58 +02001684 tmproc = calloc(1, sizeof(*tmproc));
William Lallemand16dd1b32018-11-19 18:46:18 +01001685 if (!tmproc) {
1686 ha_alert("Cannot allocate process structures.\n");
1687 exit(EXIT_FAILURE);
1688 }
William Lallemand8f7069a2019-04-12 16:09:23 +02001689 tmproc->options |= PROC_O_TYPE_MASTER; /* master */
William Lallemand16dd1b32018-11-19 18:46:18 +01001690 tmproc->reloads = 0;
1691 tmproc->relative_pid = 0;
1692 tmproc->pid = pid;
1693 tmproc->timestamp = start_date.tv_sec;
1694 tmproc->ipc_fd[0] = -1;
1695 tmproc->ipc_fd[1] = -1;
1696
1697 proc_self = tmproc;
1698
1699 LIST_ADDQ(&proc_list, &tmproc->list);
1700 }
William Lallemandce83b4a2018-10-26 14:47:30 +02001701
1702 for (proc = 0; proc < global.nbproc; proc++) {
William Lallemandce83b4a2018-10-26 14:47:30 +02001703
William Lallemandf3a86832019-04-01 11:29:58 +02001704 tmproc = calloc(1, sizeof(*tmproc));
William Lallemandce83b4a2018-10-26 14:47:30 +02001705 if (!tmproc) {
1706 ha_alert("Cannot allocate process structures.\n");
1707 exit(EXIT_FAILURE);
1708 }
1709
William Lallemand8f7069a2019-04-12 16:09:23 +02001710 tmproc->options |= PROC_O_TYPE_WORKER; /* worker */
William Lallemandce83b4a2018-10-26 14:47:30 +02001711 tmproc->pid = -1;
1712 tmproc->reloads = 0;
William Lallemande3683302018-11-19 18:46:17 +01001713 tmproc->timestamp = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02001714 tmproc->relative_pid = 1 + proc;
William Lallemand550db6d2018-11-06 17:37:12 +01001715 tmproc->ipc_fd[0] = -1;
1716 tmproc->ipc_fd[1] = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02001717
1718 if (mworker_cli_sockpair_new(tmproc, proc) < 0) {
1719 exit(EXIT_FAILURE);
1720 }
1721
1722 LIST_ADDQ(&proc_list, &tmproc->list);
1723 }
William Lallemand944e6192018-11-21 15:48:31 +01001724 }
1725 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
1726 struct wordlist *it, *c;
1727
William Lallemand1b663612018-10-26 14:47:33 +02001728 mworker_env_to_proc_list(); /* get the info of the children in the env */
William Lallemand8a022572018-10-26 14:47:35 +02001729
William Lallemande7361152018-10-26 14:47:36 +02001730
William Lallemand550db6d2018-11-06 17:37:12 +01001731 if (!LIST_ISEMPTY(&mworker_cli_conf)) {
William Lallemande7361152018-10-26 14:47:36 +02001732
William Lallemand550db6d2018-11-06 17:37:12 +01001733 if (mworker_cli_proxy_create() < 0) {
William Lallemande7361152018-10-26 14:47:36 +02001734 ha_alert("Can't create the master's CLI.\n");
1735 exit(EXIT_FAILURE);
1736 }
William Lallemande7361152018-10-26 14:47:36 +02001737
William Lallemand550db6d2018-11-06 17:37:12 +01001738 list_for_each_entry_safe(c, it, &mworker_cli_conf, list) {
1739
1740 if (mworker_cli_proxy_new_listener(c->s) < 0) {
1741 ha_alert("Can't create the master's CLI.\n");
1742 exit(EXIT_FAILURE);
1743 }
1744 LIST_DEL(&c->list);
1745 free(c->s);
1746 free(c);
1747 }
1748 }
William Lallemandce83b4a2018-10-26 14:47:30 +02001749 }
1750
Willy Tarreaubb925012009-07-23 13:36:36 +02001751 err_code |= check_config_validity();
1752 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001753 ha_alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001754 exit(1);
1755 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001756
Willy Tarreau0f936722019-04-11 14:47:08 +02001757 pattern_finalize_config();
1758
Willy Tarreau70060452015-12-14 12:46:07 +01001759 /* recompute the amount of per-process memory depending on nbproc and
1760 * the shared SSL cache size (allowed to exist in all processes).
1761 */
1762 if (global.rlimit_memmax_all) {
1763#if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE)
1764 int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL;
1765
1766 global.rlimit_memmax =
1767 ((((int64_t)global.rlimit_memmax_all * 1048576LL) -
1768 ssl_cache_bytes) / global.nbproc +
1769 ssl_cache_bytes + 1048575LL) / 1048576LL;
1770#else
1771 global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc;
1772#endif
1773 }
1774
Willy Tarreaue5733232019-05-22 19:24:06 +02001775#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001776 err_code |= netns_init();
1777 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001778 ha_alert("Failed to initialize namespace support.\n");
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001779 exit(1);
1780 }
1781#endif
1782
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01001783 /* Apply server states */
1784 apply_server_state();
1785
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001786 for (px = proxies_list; px; px = px->next)
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01001787 srv_compute_all_admin_states(px);
1788
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01001789 /* Apply servers' configured address */
1790 err_code |= srv_init_addr();
1791 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001792 ha_alert("Failed to initialize server(s) addr.\n");
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01001793 exit(1);
1794 }
1795
Willy Tarreaubaaee002006-06-26 02:48:02 +02001796 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001797 struct peers *pr;
1798 struct proxy *px;
1799
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001800 for (pr = cfg_peers; pr; pr = pr->next)
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001801 if (pr->peers_fe)
1802 break;
1803
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001804 for (px = proxies_list; px; px = px->next)
Willy Tarreau4348fad2012-09-20 16:48:07 +02001805 if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001806 break;
1807
1808 if (pr || px) {
1809 /* At least one peer or one listener has been found */
1810 qfprintf(stdout, "Configuration file is valid\n");
1811 exit(0);
1812 }
1813 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
1814 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001815 }
1816
Emeric Brunc60def82017-09-27 14:59:38 +02001817 global_listener_queue_task = task_new(MAX_THREADS_MASK);
Willy Tarreaue9b26022011-08-01 20:57:55 +02001818 if (!global_listener_queue_task) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001819 ha_alert("Out of memory when initializing global task\n");
Willy Tarreaue9b26022011-08-01 20:57:55 +02001820 exit(1);
1821 }
1822 /* very simple initialization, users will queue the task if needed */
1823 global_listener_queue_task->context = NULL; /* not even a context! */
1824 global_listener_queue_task->process = manage_global_listener_queue;
Willy Tarreaue9b26022011-08-01 20:57:55 +02001825
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001826 /* now we know the buffer size, we can initialize the channels and buffers */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001827 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +02001828
Willy Tarreaue6945732016-12-21 19:57:00 +01001829 list_for_each_entry(pcf, &post_check_list, list) {
1830 err_code |= pcf->fct();
1831 if (err_code & (ERR_ABORT|ERR_FATAL))
1832 exit(1);
1833 }
1834
Willy Tarreaubaaee002006-06-26 02:48:02 +02001835 if (cfg_maxconn > 0)
1836 global.maxconn = cfg_maxconn;
1837
Willy Tarreau8d687d82019-03-01 09:39:42 +01001838 if (global.stats_fe)
1839 global.maxsock += global.stats_fe->maxconn;
1840
1841 if (cfg_peers) {
1842 /* peers also need to bypass global maxconn */
1843 struct peers *p = cfg_peers;
1844
1845 for (p = cfg_peers; p; p = p->next)
1846 if (p->peers_fe)
1847 global.maxsock += p->peers_fe->maxconn;
1848 }
1849
Willy Tarreaubaaee002006-06-26 02:48:02 +02001850 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +02001851 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001852 global.pidfile = strdup(cfg_pidfile);
1853 }
1854
Willy Tarreaud0256482015-01-15 21:45:22 +01001855 /* Now we want to compute the maxconn and possibly maxsslconn values.
Willy Tarreauac350932019-03-01 15:43:14 +01001856 * It's a bit tricky. Maxconn defaults to the pre-computed value based
1857 * on rlim_fd_cur and the number of FDs in use due to the configuration,
1858 * and maxsslconn defaults to DEFAULT_MAXSSLCONN. On top of that we can
1859 * enforce a lower limit based on memmax.
Willy Tarreaud0256482015-01-15 21:45:22 +01001860 *
1861 * If memmax is set, then it depends on which values are set. If
1862 * maxsslconn is set, we use memmax to determine how many cleartext
1863 * connections may be added, and set maxconn to the sum of the two.
1864 * If maxconn is set and not maxsslconn, maxsslconn is computed from
1865 * the remaining amount of memory between memmax and the cleartext
1866 * connections. If neither are set, then it is considered that all
1867 * connections are SSL-capable, and maxconn is computed based on this,
1868 * then maxsslconn accordingly. We need to know if SSL is used on the
1869 * frontends, backends, or both, because when it's used on both sides,
1870 * we need twice the value for maxsslconn, but we only count the
1871 * handshake once since it is not performed on the two sides at the
1872 * same time (frontend-side is terminated before backend-side begins).
1873 * The SSL stack is supposed to have filled ssl_session_cost and
Willy Tarreau474b96a2015-01-28 19:03:21 +01001874 * ssl_handshake_cost during its initialization. In any case, if
1875 * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for
1876 * maxconn in order to protect the system.
Willy Tarreaud0256482015-01-15 21:45:22 +01001877 */
Willy Tarreauac350932019-03-01 15:43:14 +01001878 ideal_maxconn = compute_ideal_maxconn();
1879
Willy Tarreaud0256482015-01-15 21:45:22 +01001880 if (!global.rlimit_memmax) {
1881 if (global.maxconn == 0) {
Willy Tarreauac350932019-03-01 15:43:14 +01001882 global.maxconn = ideal_maxconn;
Willy Tarreaud0256482015-01-15 21:45:22 +01001883 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1884 fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn);
1885 }
1886 }
1887#ifdef USE_OPENSSL
1888 else if (!global.maxconn && !global.maxsslconn &&
1889 (global.ssl_used_frontend || global.ssl_used_backend)) {
1890 /* memmax is set, compute everything automatically. Here we want
1891 * to ensure that all SSL connections will be served. We take
1892 * care of the number of sides where SSL is used, and consider
1893 * the worst case : SSL used on both sides and doing a handshake
1894 * simultaneously. Note that we can't have more than maxconn
1895 * handshakes at a time by definition, so for the worst case of
1896 * two SSL conns per connection, we count a single handshake.
1897 */
1898 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1899 int64_t mem = global.rlimit_memmax * 1048576ULL;
1900
1901 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1902 mem -= global.maxzlibmem;
1903 mem = mem * MEM_USABLE_RATIO;
1904
1905 global.maxconn = mem /
Willy Tarreau87b09662015-04-03 00:22:06 +02001906 ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream
Willy Tarreaud0256482015-01-15 21:45:22 +01001907 sides * global.ssl_session_max_cost + // SSL buffers, one per side
1908 global.ssl_handshake_max_cost); // 1 handshake per connection max
1909
Willy Tarreauac350932019-03-01 15:43:14 +01001910 global.maxconn = MIN(global.maxconn, ideal_maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01001911 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001912#ifdef SYSTEM_MAXCONN
Willy Tarreauca783d42019-03-13 10:03:07 +01001913 if (global.maxconn > SYSTEM_MAXCONN)
1914 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01001915#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01001916 global.maxsslconn = sides * global.maxconn;
1917 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1918 fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n",
1919 global.maxconn, global.maxsslconn);
1920 }
1921 else if (!global.maxsslconn &&
1922 (global.ssl_used_frontend || global.ssl_used_backend)) {
1923 /* memmax and maxconn are known, compute maxsslconn automatically.
1924 * maxsslconn being forced, we don't know how many of it will be
1925 * on each side if both sides are being used. The worst case is
1926 * when all connections use only one SSL instance because
1927 * handshakes may be on two sides at the same time.
1928 */
1929 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1930 int64_t mem = global.rlimit_memmax * 1048576ULL;
1931 int64_t sslmem;
1932
1933 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1934 mem -= global.maxzlibmem;
1935 mem = mem * MEM_USABLE_RATIO;
1936
Willy Tarreau87b09662015-04-03 00:22:06 +02001937 sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01001938 global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost);
1939 global.maxsslconn = round_2dig(global.maxsslconn);
1940
1941 if (sslmem <= 0 || global.maxsslconn < sides) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001942 ha_alert("Cannot compute the automatic maxsslconn because global.maxconn is already too "
1943 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1944 "without SSL is %d, but %d was found and SSL is in use.\n",
1945 global.rlimit_memmax,
1946 (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)),
1947 global.maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01001948 exit(1);
1949 }
1950
1951 if (global.maxsslconn > sides * global.maxconn)
1952 global.maxsslconn = sides * global.maxconn;
1953
1954 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1955 fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn);
1956 }
1957#endif
1958 else if (!global.maxconn) {
1959 /* memmax and maxsslconn are known/unused, compute maxconn automatically */
1960 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1961 int64_t mem = global.rlimit_memmax * 1048576ULL;
1962 int64_t clearmem;
1963
1964 if (global.ssl_used_frontend || global.ssl_used_backend)
1965 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1966
1967 mem -= global.maxzlibmem;
1968 mem = mem * MEM_USABLE_RATIO;
1969
1970 clearmem = mem;
1971 if (sides)
1972 clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn;
1973
Willy Tarreau87b09662015-04-03 00:22:06 +02001974 global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreauac350932019-03-01 15:43:14 +01001975 global.maxconn = MIN(global.maxconn, ideal_maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01001976 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001977#ifdef SYSTEM_MAXCONN
Willy Tarreauca783d42019-03-13 10:03:07 +01001978 if (global.maxconn > SYSTEM_MAXCONN)
1979 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01001980#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01001981
1982 if (clearmem <= 0 || !global.maxconn) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001983 ha_alert("Cannot compute the automatic maxconn because global.maxsslconn is already too "
1984 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1985 "is %d, but %d was found.\n",
1986 global.rlimit_memmax,
1987 (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)),
1988 global.maxsslconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01001989 exit(1);
1990 }
1991
1992 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
1993 if (sides && global.maxsslconn > sides * global.maxconn) {
1994 fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn "
1995 "to be limited to %d. Better reduce global.maxsslconn to get more "
1996 "room for extra connections.\n", global.maxsslconn, global.maxconn);
1997 }
1998 fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn);
1999 }
Willy Tarreau66aa61f2009-01-18 21:44:07 +01002000 }
2001
Willy Tarreau5a023f02019-03-01 14:19:31 +01002002 if (!global.maxpipes)
2003 global.maxpipes = compute_ideal_maxpipes();
Willy Tarreau66aa61f2009-01-18 21:44:07 +01002004
Willy Tarreauabacc2c2011-09-07 14:26:33 +02002005 global.hardmaxconn = global.maxconn; /* keep this max value */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002006 global.maxsock += global.maxconn * 2; /* each connection needs two sockets */
Willy Tarreau3ec79b92009-01-18 20:39:42 +01002007 global.maxsock += global.maxpipes * 2; /* each pipe needs two FDs */
Willy Tarreau2c58b412019-03-14 19:10:55 +01002008 global.maxsock += global.nbthread; /* one epoll_fd/kqueue_fd per thread */
2009 global.maxsock += 2 * global.nbthread; /* one wake-up pipe (2 fd) per thread */
2010
Emeric Brunece0c332017-12-06 13:51:49 +01002011 /* compute fd used by async engines */
2012 if (global.ssl_used_async_engines) {
2013 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2014 global.maxsock += global.maxconn * sides * global.ssl_used_async_engines;
2015 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002016
Olivier Houchard88698d92019-04-16 19:07:22 +02002017 /* update connection pool thresholds */
2018 global.tune.pool_low_count = ((long long)global.maxsock * global.tune.pool_low_ratio + 99) / 100;
2019 global.tune.pool_high_count = ((long long)global.maxsock * global.tune.pool_high_ratio + 99) / 100;
2020
Willy Tarreauc8d5b952019-02-27 17:25:52 +01002021 proxy_adjust_all_maxconn();
2022
Willy Tarreau1db37712007-06-03 17:16:49 +02002023 if (global.tune.maxpollevents <= 0)
2024 global.tune.maxpollevents = MAX_POLL_EVENTS;
2025
Olivier Houchard1599b802018-05-24 18:59:04 +02002026 if (global.tune.runqueue_depth <= 0)
2027 global.tune.runqueue_depth = RUNQUEUE_DEPTH;
2028
Willy Tarreau6f4a82c2009-03-21 20:43:57 +01002029 if (global.tune.recv_enough == 0)
2030 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
2031
Willy Tarreau27097842015-09-28 13:53:23 +02002032 if (global.tune.maxrewrite < 0)
2033 global.tune.maxrewrite = MAXREWRITE;
2034
Willy Tarreau27a674e2009-08-17 07:23:33 +02002035 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
2036 global.tune.maxrewrite = global.tune.bufsize / 2;
2037
Willy Tarreaubaaee002006-06-26 02:48:02 +02002038 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
2039 /* command line debug mode inhibits configuration mode */
William Lallemand095ba4c2017-06-01 17:38:50 +02002040 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002041 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
2042 }
2043
William Lallemand095ba4c2017-06-01 17:38:50 +02002044 if (arg_mode & MODE_DAEMON) {
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002045 /* command line daemon mode inhibits foreground and debug modes mode */
2046 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
William Lallemand095ba4c2017-06-01 17:38:50 +02002047 global.mode |= arg_mode & MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002048 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002049
2050 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002051
William Lallemand095ba4c2017-06-01 17:38:50 +02002052 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002053 ha_warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
William Lallemand095ba4c2017-06-01 17:38:50 +02002054 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002055 }
2056
William Lallemand095ba4c2017-06-01 17:38:50 +02002057 if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002058 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
Christopher Faulet767a84b2017-11-24 16:50:31 +01002059 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 +02002060 global.nbproc = 1;
2061 }
2062
2063 if (global.nbproc < 1)
2064 global.nbproc = 1;
2065
Christopher Fauletbe0faa22017-08-29 15:37:10 +02002066 if (global.nbthread < 1)
2067 global.nbthread = 1;
2068
Christopher Faulet3ef26392017-08-29 16:46:57 +02002069 /* Realloc trash buffers because global.tune.bufsize may have changed */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002070 if (!init_trash_buffers(0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002071 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet3ef26392017-08-29 16:46:57 +02002072 exit(1);
2073 }
2074
Christopher Faulet96d44832017-11-14 22:02:30 +01002075 if (!init_log_buffers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002076 ha_alert("failed to initialize log buffers.\n");
Christopher Faulet96d44832017-11-14 22:02:30 +01002077 exit(1);
2078 }
2079
Willy Tarreauef1d1f82007-04-16 00:25:25 +02002080 /*
2081 * Note: we could register external pollers here.
2082 * Built-in pollers have been registered before main().
2083 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02002084
Willy Tarreau43b78992009-01-25 15:42:27 +01002085 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +02002086 disable_poller("kqueue");
2087
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00002088 if (!(global.tune.options & GTUNE_USE_EVPORTS))
2089 disable_poller("evports");
2090
Willy Tarreau43b78992009-01-25 15:42:27 +01002091 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002092 disable_poller("epoll");
2093
Willy Tarreau43b78992009-01-25 15:42:27 +01002094 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002095 disable_poller("poll");
2096
Willy Tarreau43b78992009-01-25 15:42:27 +01002097 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002098 disable_poller("select");
2099
2100 /* Note: we could disable any poller by name here */
2101
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002102 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02002103 list_pollers(stderr);
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002104 fprintf(stderr, "\n");
2105 list_filters(stderr);
2106 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002107
Willy Tarreau4f60f162007-04-08 16:39:58 +02002108 if (!init_pollers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002109 ha_alert("No polling mechanism available.\n"
2110 " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n"
2111 " is too low on this platform to support maxconn and the number of listeners\n"
2112 " and servers. You should rebuild haproxy specifying your system using TARGET=\n"
2113 " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n"
2114 " global maxconn setting to accommodate the system's limitation. For reference,\n"
2115 " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n"
2116 " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n"
2117 " check build settings using 'haproxy -vv'.\n\n",
2118 FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002119 exit(1);
2120 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002121 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2122 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002123 }
2124
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002125 if (!global.node)
2126 global.node = strdup(hostname);
2127
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01002128 if (!hlua_post_init())
2129 exit(1);
Thomas Holmes6abded42015-05-12 16:23:58 +01002130
Maxime de Roucy0f503922016-05-13 23:52:55 +02002131 free(err_msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002132}
2133
Simon Horman6fb82592011-07-15 13:14:11 +09002134static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +09002135{
Simon Hormanac821422011-07-15 13:14:09 +09002136 struct acl_term_suite *suite, *suiteb;
2137 struct acl_term *term, *termb;
2138
Simon Horman6fb82592011-07-15 13:14:11 +09002139 if (!cond)
2140 return;
2141
2142 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
2143 list_for_each_entry_safe(term, termb, &suite->terms, list) {
2144 LIST_DEL(&term->list);
2145 free(term);
Simon Hormanac821422011-07-15 13:14:09 +09002146 }
Simon Horman6fb82592011-07-15 13:14:11 +09002147 LIST_DEL(&suite->list);
2148 free(suite);
2149 }
2150
2151 free(cond);
2152}
2153
2154static void deinit_tcp_rules(struct list *rules)
2155{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002156 struct act_rule *trule, *truleb;
Simon Horman6fb82592011-07-15 13:14:11 +09002157
2158 list_for_each_entry_safe(trule, truleb, rules, list) {
Simon Hormanac821422011-07-15 13:14:09 +09002159 LIST_DEL(&trule->list);
Simon Horman6fb82592011-07-15 13:14:11 +09002160 deinit_acl_cond(trule->cond);
Simon Hormanac821422011-07-15 13:14:09 +09002161 free(trule);
2162 }
2163}
2164
Simon Horman6fb82592011-07-15 13:14:11 +09002165static void deinit_stick_rules(struct list *rules)
2166{
2167 struct sticking_rule *rule, *ruleb;
2168
2169 list_for_each_entry_safe(rule, ruleb, rules, list) {
2170 LIST_DEL(&rule->list);
2171 deinit_acl_cond(rule->cond);
Christopher Faulet476e5d02016-10-26 11:34:47 +02002172 release_sample_expr(rule->expr);
Simon Horman6fb82592011-07-15 13:14:11 +09002173 free(rule);
2174 }
2175}
2176
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002177void deinit(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002178{
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002179 struct proxy *p = proxies_list, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002180 struct cap_hdr *h,*h_next;
2181 struct server *s,*s_next;
2182 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002183 struct acl_cond *cond, *condb;
2184 struct hdr_exp *exp, *expb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002185 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002186 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002187 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002188 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002189 struct wordlist *wl, *wlb;
Willy Tarreauf4f04122010-01-28 18:10:50 +01002190 struct cond_wordlist *cwl, *cwlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002191 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +02002192 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +01002193 struct logformat_node *lf, *lfb;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002194 struct bind_conf *bind_conf, *bind_back;
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002195 struct build_opts_str *bol, *bolb;
Willy Tarreau05554e62016-12-21 20:46:26 +01002196 struct post_deinit_fct *pdf;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002197 int i;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002198
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002199 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002200 while (p) {
Willy Tarreau8113a5d2012-10-04 08:01:43 +02002201 free(p->conf.file);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002202 free(p->id);
2203 free(p->check_req);
2204 free(p->cookie_name);
2205 free(p->cookie_domain);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002206 free(p->lbprm.arg_str);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002207 free(p->capture_name);
2208 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +09002209 free(p->rdp_cookie_name);
Willy Tarreau62a61232013-04-12 18:13:46 +02002210 if (p->conf.logformat_string != default_http_log_format &&
2211 p->conf.logformat_string != default_tcp_log_format &&
2212 p->conf.logformat_string != clf_http_log_format)
2213 free(p->conf.logformat_string);
Willy Tarreau196729e2012-05-31 19:30:26 +02002214
Willy Tarreau62a61232013-04-12 18:13:46 +02002215 free(p->conf.lfs_file);
2216 free(p->conf.uniqueid_format_string);
2217 free(p->conf.uif_file);
Willy Tarreau0cac26c2019-01-14 16:55:42 +01002218 if ((p->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_MAP)
2219 free(p->lbprm.map.srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002220
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002221 if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2222 free(p->conf.logformat_sd_string);
2223 free(p->conf.lfsd_file);
2224
Willy Tarreaua534fea2008-08-03 12:19:50 +02002225 for (i = 0; i < HTTP_ERR_SIZE; i++)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002226 chunk_destroy(&p->errmsg[i]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002227
Willy Tarreauf4f04122010-01-28 18:10:50 +01002228 list_for_each_entry_safe(cwl, cwlb, &p->req_add, list) {
2229 LIST_DEL(&cwl->list);
2230 free(cwl->s);
2231 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002232 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002233
Willy Tarreauf4f04122010-01-28 18:10:50 +01002234 list_for_each_entry_safe(cwl, cwlb, &p->rsp_add, list) {
2235 LIST_DEL(&cwl->list);
2236 free(cwl->s);
2237 free(cwl);
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002238 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002239
Willy Tarreaub80c2302007-11-30 20:51:32 +01002240 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
2241 LIST_DEL(&cond->list);
2242 prune_acl_cond(cond);
2243 free(cond);
2244 }
2245
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002246 for (exp = p->req_exp; exp != NULL; ) {
Dragan Dosen26743032019-04-30 15:54:36 +02002247 regex_free(exp->preg);
Willy Tarreau98d04852015-05-26 12:18:29 +02002248 free((char *)exp->replace);
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002249 expb = exp;
2250 exp = exp->next;
2251 free(expb);
2252 }
2253
2254 for (exp = p->rsp_exp; exp != NULL; ) {
Dragan Dosen26743032019-04-30 15:54:36 +02002255 regex_free(exp->preg);
Willy Tarreau98d04852015-05-26 12:18:29 +02002256 free((char *)exp->replace);
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002257 expb = exp;
2258 exp = exp->next;
2259 free(expb);
2260 }
2261
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002262 /* build a list of unique uri_auths */
2263 if (!ua)
2264 ua = p->uri_auth;
2265 else {
2266 /* check if p->uri_auth is unique */
2267 for (uap = ua; uap; uap=uap->next)
2268 if (uap == p->uri_auth)
2269 break;
2270
Willy Tarreauaccc4e12008-06-24 11:14:45 +02002271 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002272 /* add it, if it is */
2273 p->uri_auth->next = ua;
2274 ua = p->uri_auth;
2275 }
2276 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002277
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002278 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
2279 LIST_DEL(&acl->list);
2280 prune_acl(acl);
2281 free(acl);
2282 }
2283
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002284 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
2285 LIST_DEL(&srule->list);
2286 prune_acl_cond(srule->cond);
2287 free(srule->cond);
2288 free(srule);
2289 }
2290
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002291 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
2292 LIST_DEL(&rule->list);
Willy Tarreauf51658d2014-04-23 01:21:56 +02002293 if (rule->cond) {
2294 prune_acl_cond(rule->cond);
2295 free(rule->cond);
2296 }
Dragan Dosen2a7c20f2019-04-30 00:38:36 +02002297 free(rule->file);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002298 free(rule);
2299 }
2300
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002301 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
2302 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +01002303 if (rdr->cond) {
2304 prune_acl_cond(rdr->cond);
2305 free(rdr->cond);
2306 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002307 free(rdr->rdr_str);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002308 list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) {
2309 LIST_DEL(&lf->list);
2310 free(lf);
2311 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002312 free(rdr);
2313 }
2314
William Lallemand0f99e342011-10-12 17:50:54 +02002315 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
2316 LIST_DEL(&log->list);
2317 free(log);
2318 }
2319
William Lallemand723b73a2012-02-08 16:37:49 +01002320 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
2321 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002322 release_sample_expr(lf->expr);
2323 free(lf->arg);
William Lallemand723b73a2012-02-08 16:37:49 +01002324 free(lf);
2325 }
2326
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002327 list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) {
2328 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002329 release_sample_expr(lf->expr);
2330 free(lf->arg);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002331 free(lf);
2332 }
2333
Simon Hormanac821422011-07-15 13:14:09 +09002334 deinit_tcp_rules(&p->tcp_req.inspect_rules);
Kevin Zhu13ebef72019-01-30 16:01:21 +08002335 deinit_tcp_rules(&p->tcp_rep.inspect_rules);
Simon Hormanac821422011-07-15 13:14:09 +09002336 deinit_tcp_rules(&p->tcp_req.l4_rules);
2337
Simon Horman6fb82592011-07-15 13:14:11 +09002338 deinit_stick_rules(&p->storersp_rules);
2339 deinit_stick_rules(&p->sticking_rules);
2340
Willy Tarreaubaaee002006-06-26 02:48:02 +02002341 h = p->req_cap;
2342 while (h) {
2343 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002344 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002345 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002346 free(h);
2347 h = h_next;
2348 }/* end while(h) */
2349
2350 h = p->rsp_cap;
2351 while (h) {
2352 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002353 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002354 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002355 free(h);
2356 h = h_next;
2357 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002358
Willy Tarreaubaaee002006-06-26 02:48:02 +02002359 s = p->srv;
2360 while (s) {
2361 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002362
Willy Tarreauf6562792019-05-07 19:05:35 +02002363 task_destroy(s->check.task);
2364 task_destroy(s->agent.task);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002365
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002366 if (s->check.wait_list.tasklet)
2367 tasklet_free(s->check.wait_list.tasklet);
2368 if (s->agent.wait_list.tasklet)
2369 tasklet_free(s->agent.wait_list.tasklet);
Dragan Dosen026ef572019-04-30 00:56:20 +02002370
Willy Tarreauf6562792019-05-07 19:05:35 +02002371 task_destroy(s->warmup);
Willy Tarreau2e993902011-10-31 11:53:20 +01002372
Willy Tarreaua534fea2008-08-03 12:19:50 +02002373 free(s->id);
2374 free(s->cookie);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002375 free(s->check.bi.area);
2376 free(s->check.bo.area);
2377 free(s->agent.bi.area);
2378 free(s->agent.bo.area);
James Brown55f9ff12015-10-21 18:19:05 -07002379 free(s->agent.send_string);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002380 free(s->hostname_dn);
Sárközi, László34c01792014-09-05 10:08:23 +02002381 free((char*)s->conf.file);
Olivier Houchard7fc3be72018-11-22 18:50:54 +01002382 free(s->idle_conns);
2383 free(s->priv_conns);
2384 free(s->safe_conns);
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01002385 free(s->idle_orphan_conns);
Olivier Houchardf1314812019-02-18 16:41:17 +01002386 free(s->curr_idle_thr);
Willy Tarreau17d45382016-12-22 21:16:08 +01002387
2388 if (s->use_ssl || s->check.use_ssl) {
2389 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2390 xprt_get(XPRT_SSL)->destroy_srv(s);
2391 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002392 HA_SPIN_DESTROY(&s->lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002393 free(s);
2394 s = s_next;
2395 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002396
Willy Tarreau4348fad2012-09-20 16:48:07 +02002397 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002398 /*
2399 * Zombie proxy, the listener just pretend to be up
2400 * because they still hold an opened fd.
2401 * Close it and give the listener its real state.
2402 */
2403 if (p->state == PR_STSTOPPED && l->state >= LI_ZOMBIE) {
2404 close(l->fd);
2405 l->state = LI_INIT;
2406 }
Willy Tarreauf6e2cc72010-09-03 10:38:17 +02002407 unbind_listener(l);
2408 delete_listener(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002409 LIST_DEL(&l->by_fe);
2410 LIST_DEL(&l->by_bind);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002411 free(l->name);
2412 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002413 free(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002414 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002415
Willy Tarreau4348fad2012-09-20 16:48:07 +02002416 /* Release unused SSL configs. */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002417 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01002418 if (bind_conf->xprt->destroy_bind_conf)
2419 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002420 free(bind_conf->file);
2421 free(bind_conf->arg);
2422 LIST_DEL(&bind_conf->by_fe);
2423 free(bind_conf);
2424 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02002425
Christopher Fauletd7c91962015-04-30 11:48:27 +02002426 flt_deinit(p);
2427
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002428 free(p->desc);
2429 free(p->fwdfor_hdr_name);
2430
Willy Tarreauff011f22011-01-06 17:51:27 +01002431 free_http_req_rules(&p->http_req_rules);
Sasha Pachev218f0642014-06-16 12:05:59 -06002432 free_http_res_rules(&p->http_res_rules);
Olivier Houchard3f795f72019-04-17 22:51:06 +02002433 task_destroy(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002434
Willy Tarreaubafbe012017-11-24 17:34:44 +01002435 pool_destroy(p->req_cap_pool);
2436 pool_destroy(p->rsp_cap_pool);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002437 if (p->table)
2438 pool_destroy(p->table->pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002439
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002440 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002441 p = p->next;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002442 HA_SPIN_DESTROY(&p0->lbprm.lock);
2443 HA_SPIN_DESTROY(&p0->lock);
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002444 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002445 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02002446
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002447 while (ua) {
2448 uap = ua;
2449 ua = ua->next;
2450
Willy Tarreaua534fea2008-08-03 12:19:50 +02002451 free(uap->uri_prefix);
2452 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002453 free(uap->node);
2454 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002455
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002456 userlist_free(uap->userlist);
Willy Tarreauff011f22011-01-06 17:51:27 +01002457 free_http_req_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002458
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002459 free(uap);
2460 }
2461
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002462 userlist_free(userlist);
2463
David Carlier834cb2e2015-09-25 12:02:25 +01002464 cfg_unregister_sections();
2465
Christopher Faulet0132d062017-07-26 15:33:35 +02002466 deinit_log_buffers();
David Carlier834cb2e2015-09-25 12:02:25 +01002467
Willy Tarreaudd815982007-10-16 12:25:14 +02002468 protocol_unbind_all();
2469
Willy Tarreau05554e62016-12-21 20:46:26 +01002470 list_for_each_entry(pdf, &post_deinit_list, list)
2471 pdf->fct();
2472
Joe Williamsdf5b38f2010-12-29 17:05:48 +01002473 free(global.log_send_hostname); global.log_send_hostname = NULL;
Dragan Dosen43885c72015-10-01 13:18:13 +02002474 chunk_destroy(&global.log_tag);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002475 free(global.chroot); global.chroot = NULL;
2476 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002477 free(global.node); global.node = NULL;
2478 free(global.desc); global.desc = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002479 free(oldpids); oldpids = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02002480 task_destroy(global_listener_queue_task); global_listener_queue_task = NULL;
2481 task_destroy(idle_conn_task);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01002482 idle_conn_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002483
William Lallemand0f99e342011-10-12 17:50:54 +02002484 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
2485 LIST_DEL(&log->list);
2486 free(log);
2487 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01002488 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02002489 free(wl->s);
Willy Tarreau477ecd82010-01-03 21:12:30 +01002490 LIST_DEL(&wl->list);
2491 free(wl);
2492 }
2493
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002494 list_for_each_entry_safe(bol, bolb, &build_opts_list, list) {
2495 if (bol->must_free)
2496 free((void *)bol->str);
2497 LIST_DEL(&bol->list);
2498 free(bol);
2499 }
2500
Christopher Fauletff2613e2016-11-09 11:36:17 +01002501 vars_prune(&global.vars, NULL, NULL);
Willy Tarreau2455ceb2018-11-26 15:57:34 +01002502 pool_destroy_all();
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002503 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002504} /* end deinit() */
2505
William Lallemand72160322018-11-06 17:37:16 +01002506
Willy Tarreau918ff602011-07-25 16:33:49 +02002507/* Runs the polling loop */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01002508static void run_poll_loop()
Willy Tarreau4f60f162007-04-08 16:39:58 +02002509{
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002510 int next, wake;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002511
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002512 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002513 while (1) {
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002514 /* Process a few tasks */
2515 process_runnable_tasks();
2516
William Lallemand1aab50b2018-06-07 09:46:01 +02002517 /* check if we caught some signals and process them in the
2518 first thread */
2519 if (tid == 0)
2520 signal_process_queue();
Willy Tarreau29857942009-05-10 09:01:21 +02002521
Willy Tarreau58b458d2008-06-29 22:40:23 +02002522 /* Check if we can expire some tasks */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002523 next = wake_expired_tasks();
Willy Tarreau4f60f162007-04-08 16:39:58 +02002524
Willy Tarreau85c459d2018-08-02 10:54:31 +02002525 /* stop when there's nothing left to do */
William Lallemanda7199262018-11-16 16:57:20 +01002526 if ((jobs - unstoppable_jobs) == 0)
Willy Tarreau85c459d2018-08-02 10:54:31 +02002527 break;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002528
Willy Tarreau7067b3a2019-06-02 11:11:29 +02002529 /* also stop if we failed to cleanly stop all tasks */
2530 if (killed > 1)
2531 break;
2532
Willy Tarreau10146c92015-04-13 20:44:19 +02002533 /* expire immediately if events are pending */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002534 wake = 1;
Christopher Faulet32467fe2018-01-15 12:16:34 +01002535 if (fd_cache_mask & tid_bit)
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002536 activity[tid].wake_cache++;
Olivier Houchardcfbb3e62019-05-29 19:22:43 +02002537 else if (thread_has_tasks())
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002538 activity[tid].wake_tasks++;
William Lallemand1aab50b2018-06-07 09:46:01 +02002539 else if (signal_queue_len && tid == 0)
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002540 activity[tid].wake_signal++;
Olivier Houchard79321b92018-07-26 17:55:11 +02002541 else {
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002542 _HA_ATOMIC_OR(&sleeping_thread_mask, tid_bit);
2543 __ha_barrier_atomic_store();
Olivier Houchardcfbb3e62019-05-29 19:22:43 +02002544 if (global_tasks_mask & tid_bit) {
Olivier Houchard79321b92018-07-26 17:55:11 +02002545 activity[tid].wake_tasks++;
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002546 _HA_ATOMIC_AND(&sleeping_thread_mask, ~tid_bit);
Olivier Houchard79321b92018-07-26 17:55:11 +02002547 } else
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002548 wake = 0;
Olivier Houchard79321b92018-07-26 17:55:11 +02002549 }
Willy Tarreau10146c92015-04-13 20:44:19 +02002550
Willy Tarreau58b458d2008-06-29 22:40:23 +02002551 /* The poller will ensure it returns around <next> */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002552 cur_poller.poll(&cur_poller, next, wake);
Olivier Houchard79321b92018-07-26 17:55:11 +02002553 if (sleeping_thread_mask & tid_bit)
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002554 _HA_ATOMIC_AND(&sleeping_thread_mask, ~tid_bit);
Willy Tarreau033cd9d2014-01-25 19:24:15 +01002555 fd_process_cached_events();
Emeric Brun64cc49c2017-10-03 14:46:45 +02002556
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002557 activity[tid].loops++;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002558 }
2559}
2560
Christopher Faulet1d17c102017-08-29 15:38:48 +02002561static void *run_thread_poll_loop(void *data)
2562{
Willy Tarreau082b6282019-05-22 14:42:12 +02002563 struct per_thread_alloc_fct *ptaf;
Christopher Faulet1d17c102017-08-29 15:38:48 +02002564 struct per_thread_init_fct *ptif;
2565 struct per_thread_deinit_fct *ptdf;
Willy Tarreau082b6282019-05-22 14:42:12 +02002566 struct per_thread_free_fct *ptff;
Willy Tarreau34a150c2019-06-11 09:16:41 +02002567 static int init_left = 0;
2568 __decl_hathreads(static pthread_mutex_t init_mutex = PTHREAD_MUTEX_INITIALIZER);
2569 __decl_hathreads(static pthread_cond_t init_cond = PTHREAD_COND_INITIALIZER);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002570
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02002571 ha_set_tid((unsigned long)data);
Willy Tarreau91e6df02019-05-03 17:21:18 +02002572
Willy Tarreauf6178242019-05-21 19:46:58 +02002573#if (_POSIX_TIMERS > 0) && defined(_POSIX_THREAD_CPUTIME)
Willy Tarreau91e6df02019-05-03 17:21:18 +02002574#ifdef USE_THREAD
Willy Tarreau8323a372019-05-20 18:57:53 +02002575 pthread_getcpuclockid(pthread_self(), &ti->clock_id);
Willy Tarreau624dcbf2019-05-20 20:23:06 +02002576#else
Willy Tarreau8323a372019-05-20 18:57:53 +02002577 ti->clock_id = CLOCK_THREAD_CPUTIME_ID;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002578#endif
Willy Tarreau663fda42019-05-21 15:14:08 +02002579#endif
Willy Tarreau6ec902a2019-06-07 14:41:11 +02002580 /* Now, initialize one thread init at a time. This is better since
2581 * some init code is a bit tricky and may release global resources
2582 * after reallocating them locally. This will also ensure there is
2583 * no race on file descriptors allocation.
2584 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02002585#ifdef USE_THREAD
2586 pthread_mutex_lock(&init_mutex);
2587#endif
2588 /* The first thread must set the number of threads left */
2589 if (!init_left)
2590 init_left = global.nbthread;
2591 init_left--;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002592
Christopher Faulet1d17c102017-08-29 15:38:48 +02002593 tv_update_date(-1,-1);
2594
Willy Tarreau082b6282019-05-22 14:42:12 +02002595 /* per-thread alloc calls performed here are not allowed to snoop on
2596 * other threads, so they are free to initialize at their own rhythm
2597 * as long as they act as if they were alone. None of them may rely
2598 * on resources initialized by the other ones.
2599 */
2600 list_for_each_entry(ptaf, &per_thread_alloc_list, list) {
2601 if (!ptaf->fct()) {
2602 ha_alert("failed to allocate resources for thread %u.\n", tid);
2603 exit(1);
2604 }
2605 }
2606
Willy Tarreau3078e9f2019-05-20 10:50:43 +02002607 /* per-thread init calls performed here are not allowed to snoop on
2608 * other threads, so they are free to initialize at their own rhythm
2609 * as long as they act as if they were alone.
2610 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02002611 list_for_each_entry(ptif, &per_thread_init_list, list) {
2612 if (!ptif->fct()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002613 ha_alert("failed to initialize thread %u.\n", tid);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002614 exit(1);
2615 }
2616 }
2617
Willy Tarreau71092822019-06-10 09:51:04 +02002618 /* enabling protocols will result in fd_insert() calls to be performed,
2619 * we want all threads to have already allocated their local fd tables
Willy Tarreau34a150c2019-06-11 09:16:41 +02002620 * before doing so, thus only the last thread does it.
Willy Tarreau71092822019-06-10 09:51:04 +02002621 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02002622 if (init_left == 0)
Willy Tarreaue4d7c9d2019-06-10 10:14:52 +02002623 protocol_enable_all();
Willy Tarreau6ec902a2019-06-07 14:41:11 +02002624
Willy Tarreau34a150c2019-06-11 09:16:41 +02002625#ifdef USE_THREAD
2626 pthread_cond_broadcast(&init_cond);
2627 pthread_mutex_unlock(&init_mutex);
2628
2629 /* now wait for other threads to finish starting */
2630 pthread_mutex_lock(&init_mutex);
2631 while (init_left)
2632 pthread_cond_wait(&init_cond, &init_mutex);
2633 pthread_mutex_unlock(&init_mutex);
2634#endif
Willy Tarreau3078e9f2019-05-20 10:50:43 +02002635
Christopher Faulet1d17c102017-08-29 15:38:48 +02002636 run_poll_loop();
2637
2638 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
2639 ptdf->fct();
2640
Willy Tarreau082b6282019-05-22 14:42:12 +02002641 list_for_each_entry(ptff, &per_thread_free_list, list)
2642 ptff->fct();
2643
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002644#ifdef USE_THREAD
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002645 _HA_ATOMIC_AND(&all_threads_mask, ~tid_bit);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002646 if (tid > 0)
2647 pthread_exit(NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002648#endif
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002649 return NULL;
2650}
Christopher Faulet1d17c102017-08-29 15:38:48 +02002651
Willy Tarreaue9b26022011-08-01 20:57:55 +02002652/* This is the global management task for listeners. It enables listeners waiting
2653 * for global resources when there are enough free resource, or at least once in
2654 * a while. It is designed to be called as a task.
2655 */
Olivier Houchard9f6af332018-05-25 14:04:04 +02002656static struct task *manage_global_listener_queue(struct task *t, void *context, unsigned short state)
Willy Tarreaue9b26022011-08-01 20:57:55 +02002657{
2658 int next = TICK_ETERNITY;
Willy Tarreaue9b26022011-08-01 20:57:55 +02002659 /* queue is empty, nothing to do */
2660 if (LIST_ISEMPTY(&global_listener_queue))
2661 goto out;
2662
2663 /* If there are still too many concurrent connections, let's wait for
2664 * some of them to go away. We don't need to re-arm the timer because
2665 * each of them will scan the queue anyway.
2666 */
2667 if (unlikely(actconn >= global.maxconn))
2668 goto out;
2669
2670 /* We should periodically try to enable listeners waiting for a global
2671 * resource here, because it is possible, though very unlikely, that
2672 * they have been blocked by a temporary lack of global resource such
2673 * as a file descriptor or memory and that the temporary condition has
2674 * disappeared.
2675 */
Willy Tarreauabacc2c2011-09-07 14:26:33 +02002676 dequeue_all_listeners(&global_listener_queue);
Willy Tarreaue9b26022011-08-01 20:57:55 +02002677
2678 out:
2679 t->expire = next;
2680 task_queue(t);
2681 return t;
2682}
Willy Tarreau4f60f162007-04-08 16:39:58 +02002683
Willy Tarreaubaaee002006-06-26 02:48:02 +02002684int main(int argc, char **argv)
2685{
2686 int err, retry;
2687 struct rlimit limit;
Emeric Bruncf20bf12010-10-22 16:06:11 +02002688 char errmsg[100];
Willy Tarreau269ab312012-09-05 08:02:48 +02002689 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002690
Olivier Houchard5fa300d2018-02-03 15:15:21 +01002691 setvbuf(stdout, NULL, _IONBF, 0);
Willy Tarreau5794fb02018-11-25 18:43:29 +01002692
Willy Tarreauff9c9142019-02-07 10:39:36 +01002693 /* this can only safely be done here, though it's optimized away by
2694 * the compiler.
2695 */
2696 if (MAX_PROCS < 1 || MAX_PROCS > LONGBITS) {
2697 ha_alert("MAX_PROCS value must be between 1 and %d inclusive; "
2698 "HAProxy was built with value %d, please fix it and rebuild.\n",
2699 LONGBITS, MAX_PROCS);
2700 exit(1);
2701 }
2702
Willy Tarreaubf696402019-03-01 10:09:28 +01002703 /* take a copy of initial limits before we possibly change them */
2704 getrlimit(RLIMIT_NOFILE, &limit);
2705 rlim_fd_cur_at_boot = limit.rlim_cur;
2706 rlim_fd_max_at_boot = limit.rlim_max;
2707
Willy Tarreau5794fb02018-11-25 18:43:29 +01002708 /* process all initcalls in order of potential dependency */
2709 RUN_INITCALLS(STG_PREPARE);
2710 RUN_INITCALLS(STG_LOCK);
2711 RUN_INITCALLS(STG_ALLOC);
2712 RUN_INITCALLS(STG_POOL);
2713 RUN_INITCALLS(STG_REGISTER);
2714 RUN_INITCALLS(STG_INIT);
2715
Emeric Bruncf20bf12010-10-22 16:06:11 +02002716 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002717 signal_register_fct(SIGQUIT, dump, SIGQUIT);
2718 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
2719 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
William Lallemand73b85e72017-06-01 17:38:51 +02002720 signal_register_fct(SIGUSR2, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002721
Willy Tarreaue437c442010-03-17 18:02:46 +01002722 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
2723 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
2724 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002725 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002726 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002727
Willy Tarreaudc23a922011-02-16 11:10:36 +01002728 /* ulimits */
2729 if (!global.rlimit_nofile)
2730 global.rlimit_nofile = global.maxsock;
2731
2732 if (global.rlimit_nofile) {
Willy Tarreaue5cfdac2019-03-01 10:32:05 +01002733 limit.rlim_cur = global.rlimit_nofile;
2734 limit.rlim_max = MAX(rlim_fd_max_at_boot, limit.rlim_cur);
2735
Willy Tarreaudc23a922011-02-16 11:10:36 +01002736 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
Willy Tarreauef635472016-06-21 11:48:18 +02002737 /* try to set it to the max possible at least */
2738 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau164dd0b2016-06-21 11:51:59 +02002739 limit.rlim_cur = limit.rlim_max;
2740 if (setrlimit(RLIMIT_NOFILE, &limit) != -1)
2741 getrlimit(RLIMIT_NOFILE, &limit);
2742
Christopher Faulet767a84b2017-11-24 16:50:31 +01002743 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 +02002744 global.rlimit_nofile = limit.rlim_cur;
Willy Tarreaudc23a922011-02-16 11:10:36 +01002745 }
2746 }
2747
2748 if (global.rlimit_memmax) {
2749 limit.rlim_cur = limit.rlim_max =
Willy Tarreau70060452015-12-14 12:46:07 +01002750 global.rlimit_memmax * 1048576ULL;
Willy Tarreaudc23a922011-02-16 11:10:36 +01002751#ifdef RLIMIT_AS
2752 if (setrlimit(RLIMIT_AS, &limit) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002753 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2754 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01002755 }
2756#else
2757 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002758 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2759 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01002760 }
2761#endif
2762 }
2763
Olivier Houchardf73629d2017-04-05 22:33:04 +02002764 if (old_unixsocket) {
William Lallemand85b0bd92017-06-01 17:38:53 +02002765 if (strcmp("/dev/null", old_unixsocket) != 0) {
2766 if (get_old_sockets(old_unixsocket) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002767 ha_alert("Failed to get the sockets from the old process!\n");
William Lallemand85b0bd92017-06-01 17:38:53 +02002768 if (!(global.mode & MODE_MWORKER))
2769 exit(1);
2770 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02002771 }
2772 }
William Lallemand85b0bd92017-06-01 17:38:53 +02002773 get_cur_unixsocket();
2774
Willy Tarreaubaaee002006-06-26 02:48:02 +02002775 /* We will loop at most 100 times with 10 ms delay each time.
2776 * That's at most 1 second. We only send a signal to old pids
2777 * if we cannot grab at least one port.
2778 */
2779 retry = MAX_START_RETRIES;
2780 err = ERR_NONE;
2781 while (retry >= 0) {
2782 struct timeval w;
2783 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01002784 /* exit the loop on no error or fatal error */
2785 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002786 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02002787 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002788 break;
2789
2790 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
2791 * listening sockets. So on those platforms, it would be wiser to
2792 * simply send SIGUSR1, which will not be undoable.
2793 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02002794 if (tell_old_pids(SIGTTOU) == 0) {
2795 /* no need to wait if we can't contact old pids */
2796 retry = 0;
2797 continue;
2798 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002799 /* give some time to old processes to stop listening */
2800 w.tv_sec = 0;
2801 w.tv_usec = 10*1000;
2802 select(0, NULL, NULL, NULL, &w);
2803 retry--;
2804 }
2805
2806 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01002807 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02002808 if (retry != MAX_START_RETRIES && nb_oldpids) {
2809 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002810 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02002811 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002812 exit(1);
2813 }
2814
William Lallemand944e6192018-11-21 15:48:31 +01002815 if (!(global.mode & MODE_MWORKER_WAIT) && listeners == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002816 ha_alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002817 /* Note: we don't have to send anything to the old pids because we
2818 * never stopped them. */
2819 exit(1);
2820 }
2821
Emeric Bruncf20bf12010-10-22 16:06:11 +02002822 err = protocol_bind_all(errmsg, sizeof(errmsg));
2823 if ((err & ~ERR_WARN) != ERR_NONE) {
2824 if ((err & ERR_ALERT) || (err & ERR_WARN))
Christopher Faulet767a84b2017-11-24 16:50:31 +01002825 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Emeric Bruncf20bf12010-10-22 16:06:11 +02002826
Christopher Faulet767a84b2017-11-24 16:50:31 +01002827 ha_alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002828 protocol_unbind_all(); /* cleanup everything we can */
2829 if (nb_oldpids)
2830 tell_old_pids(SIGTTIN);
2831 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02002832 } else if (err & ERR_WARN) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002833 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02002834 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02002835 /* Ok, all listener should now be bound, close any leftover sockets
2836 * the previous process gave us, we don't need them anymore
2837 */
2838 while (xfer_sock_list != NULL) {
2839 struct xfer_sock_list *tmpxfer = xfer_sock_list->next;
2840 close(xfer_sock_list->fd);
2841 free(xfer_sock_list->iface);
2842 free(xfer_sock_list->namespace);
2843 free(xfer_sock_list);
2844 xfer_sock_list = tmpxfer;
2845 }
Willy Tarreaudd815982007-10-16 12:25:14 +02002846
Willy Tarreaubaaee002006-06-26 02:48:02 +02002847 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002848 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
2849 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002850
Willy Tarreaubaaee002006-06-26 02:48:02 +02002851 /* MODE_QUIET can inhibit alerts and warnings below this line */
2852
PiBa-NL149a81a2017-12-25 21:03:31 +01002853 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL) {
2854 /* either stdin/out/err are already closed or should stay as they are. */
2855 if ((global.mode & MODE_DAEMON)) {
2856 /* daemon mode re-executing, stdin/stdout/stderr are already closed so keep quiet */
2857 global.mode &= ~MODE_VERBOSE;
2858 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
2859 }
2860 } else {
2861 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
2862 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01002863 stdio_quiet(-1);
PiBa-NL149a81a2017-12-25 21:03:31 +01002864 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002865 }
2866
2867 /* open log & pid files before the chroot */
William Lallemand80293002017-11-06 11:00:03 +01002868 if ((global.mode & MODE_DAEMON || global.mode & MODE_MWORKER) && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002869 unlink(global.pidfile);
2870 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
2871 if (pidfd < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002872 ha_alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002873 if (nb_oldpids)
2874 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02002875 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002876 exit(1);
2877 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002878 }
2879
Willy Tarreaub38651a2007-03-24 17:24:39 +01002880 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002881 ha_alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
2882 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002883 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01002884 exit(1);
2885 }
2886
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002887 /* If the user is not root, we'll still let him try the configuration
2888 * but we inform him that unexpected behaviour may occur.
2889 */
2890 if ((global.last_checks & LSTCHK_NETADM) && getuid())
Christopher Faulet767a84b2017-11-24 16:50:31 +01002891 ha_warning("[%s.main()] Some options which require full privileges"
2892 " might not work well.\n"
2893 "", argv[0]);
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002894
William Lallemand095ba4c2017-06-01 17:38:50 +02002895 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
2896
2897 /* chroot if needed */
2898 if (global.chroot != NULL) {
2899 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002900 ha_alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02002901 if (nb_oldpids)
2902 tell_old_pids(SIGTTIN);
2903 protocol_unbind_all();
2904 exit(1);
2905 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02002906 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02002907 }
2908
William Lallemand944e6192018-11-21 15:48:31 +01002909 if (nb_oldpids && !(global.mode & MODE_MWORKER_WAIT))
Willy Tarreaubb545b42010-08-25 12:58:59 +02002910 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002911
William Lallemand27edc4b2019-05-07 17:49:33 +02002912 /* send a SIGTERM to workers who have a too high reloads number */
2913 if ((global.mode & MODE_MWORKER) && !(global.mode & MODE_MWORKER_WAIT))
2914 mworker_kill_max_reloads(SIGTERM);
2915
William Lallemand8a361b52017-06-20 11:20:33 +02002916 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
2917 nb_oldpids = 0;
2918 free(oldpids);
2919 oldpids = NULL;
2920 }
2921
2922
Willy Tarreaubaaee002006-06-26 02:48:02 +02002923 /* Note that any error at this stage will be fatal because we will not
2924 * be able to restart the old pids.
2925 */
2926
William Lallemand095ba4c2017-06-01 17:38:50 +02002927 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
2928 /* setgid / setuid */
2929 if (global.gid) {
2930 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002931 ha_warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
2932 " without 'uid'/'user' is generally useless.\n", argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02002933
2934 if (setgid(global.gid) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002935 ha_alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
William Lallemand095ba4c2017-06-01 17:38:50 +02002936 protocol_unbind_all();
2937 exit(1);
2938 }
2939 }
Michael Schererab012dd2013-01-12 18:35:19 +01002940
William Lallemand095ba4c2017-06-01 17:38:50 +02002941 if (global.uid && setuid(global.uid) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002942 ha_alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
Michael Schererab012dd2013-01-12 18:35:19 +01002943 protocol_unbind_all();
2944 exit(1);
2945 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002946 }
Willy Tarreau636848a2019-04-15 19:38:50 +02002947
2948 /* try our best to re-enable core dumps depending on system capabilities.
2949 * What is addressed here :
2950 * - remove file size limits
2951 * - remove core size limits
2952 * - mark the process dumpable again if it lost it due to user/group
2953 */
2954 if (global.tune.options & GTUNE_SET_DUMPABLE) {
2955 limit.rlim_cur = limit.rlim_max = RLIM_INFINITY;
2956
2957#if defined(RLIMIT_FSIZE)
2958 if (setrlimit(RLIMIT_FSIZE, &limit) == -1)
2959 ha_warning("[%s.main()] Failed to set the raise the maximum file size.\n", argv[0]);
2960#endif
2961
2962#if defined(RLIMIT_CORE)
2963 if (setrlimit(RLIMIT_CORE, &limit) == -1)
2964 ha_warning("[%s.main()] Failed to set the raise the core dump size.\n", argv[0]);
2965#endif
2966
2967#if defined(USE_PRCTL)
2968 if (prctl(PR_SET_DUMPABLE, 1, 0, 0, 0) == -1)
2969 ha_warning("[%s.main()] Failed to set the dumpable flag, no core will be dumped.\n", argv[0]);
2970#endif
2971 }
2972
Willy Tarreaubaaee002006-06-26 02:48:02 +02002973 /* check ulimits */
2974 limit.rlim_cur = limit.rlim_max = 0;
2975 getrlimit(RLIMIT_NOFILE, &limit);
2976 if (limit.rlim_cur < global.maxsock) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002977 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",
2978 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock, global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002979 }
2980
William Lallemand944e6192018-11-21 15:48:31 +01002981 if (global.mode & (MODE_DAEMON | MODE_MWORKER | MODE_MWORKER_WAIT)) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002982 struct proxy *px;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002983 struct peers *curpeers;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002984 int ret = 0;
2985 int proc;
William Lallemande1340412017-12-28 16:09:36 +01002986 int devnullfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002987
William Lallemand095ba4c2017-06-01 17:38:50 +02002988 /*
2989 * if daemon + mworker: must fork here to let a master
2990 * process live in background before forking children
2991 */
William Lallemand73b85e72017-06-01 17:38:51 +02002992
2993 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)
2994 && (global.mode & MODE_MWORKER)
2995 && (global.mode & MODE_DAEMON)) {
William Lallemand095ba4c2017-06-01 17:38:50 +02002996 ret = fork();
2997 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002998 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02002999 protocol_unbind_all();
3000 exit(1); /* there has been an error */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003001 } else if (ret > 0) { /* parent leave to daemonize */
William Lallemand095ba4c2017-06-01 17:38:50 +02003002 exit(0);
William Lallemandbfd8eb52018-07-04 15:31:23 +02003003 } else /* change the process group ID in the child (master process) */
3004 setsid();
William Lallemand095ba4c2017-06-01 17:38:50 +02003005 }
William Lallemande20b6a62017-06-01 17:38:55 +02003006
William Lallemande20b6a62017-06-01 17:38:55 +02003007
William Lallemanddeed7802017-11-06 11:00:04 +01003008 /* if in master-worker mode, write the PID of the father */
3009 if (global.mode & MODE_MWORKER) {
3010 char pidstr[100];
Willy Tarreau76a80c72019-06-22 07:41:38 +02003011 snprintf(pidstr, sizeof(pidstr), "%d\n", (int)getpid());
Willy Tarreau46ec48b2018-01-23 19:20:19 +01003012 if (pidfd >= 0)
3013 shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
William Lallemanddeed7802017-11-06 11:00:04 +01003014 }
3015
Willy Tarreaubaaee002006-06-26 02:48:02 +02003016 /* the father launches the required number of processes */
William Lallemand944e6192018-11-21 15:48:31 +01003017 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +02003018 if (global.mode & MODE_MWORKER)
3019 mworker_ext_launch_all();
William Lallemand944e6192018-11-21 15:48:31 +01003020 for (proc = 0; proc < global.nbproc; proc++) {
3021 ret = fork();
3022 if (ret < 0) {
3023 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
3024 protocol_unbind_all();
3025 exit(1); /* there has been an error */
3026 }
3027 else if (ret == 0) /* child breaks here */
3028 break;
William Lallemand944e6192018-11-21 15:48:31 +01003029 if (pidfd >= 0 && !(global.mode & MODE_MWORKER)) {
3030 char pidstr[100];
3031 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
3032 shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
3033 }
3034 if (global.mode & MODE_MWORKER) {
3035 struct mworker_proc *child;
William Lallemandce83b4a2018-10-26 14:47:30 +02003036
William Lallemand220567e2018-11-21 18:04:53 +01003037 ha_notice("New worker #%d (%d) forked\n", relative_pid, ret);
William Lallemand944e6192018-11-21 15:48:31 +01003038 /* find the right mworker_proc */
3039 list_for_each_entry(child, &proc_list, list) {
3040 if (child->relative_pid == relative_pid &&
William Lallemand8f7069a2019-04-12 16:09:23 +02003041 child->reloads == 0 && child->options & PROC_O_TYPE_WORKER) {
William Lallemand944e6192018-11-21 15:48:31 +01003042 child->timestamp = now.tv_sec;
3043 child->pid = ret;
William Lallemand1dc69632019-06-12 19:11:33 +02003044 child->version = strdup(haproxy_version);
William Lallemand944e6192018-11-21 15:48:31 +01003045 break;
3046 }
William Lallemandce83b4a2018-10-26 14:47:30 +02003047 }
3048 }
William Lallemandbc193052018-09-11 10:06:26 +02003049
William Lallemand944e6192018-11-21 15:48:31 +01003050 relative_pid++; /* each child will get a different one */
3051 pid_bit <<= 1;
3052 }
3053 } else {
3054 /* wait mode */
3055 global.nbproc = 1;
3056 proc = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003057 }
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003058
3059#ifdef USE_CPU_AFFINITY
3060 if (proc < global.nbproc && /* child */
Willy Tarreauff9c9142019-02-07 10:39:36 +01003061 proc < MAX_PROCS && /* only the first 32/64 processes may be pinned */
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003062 global.cpu_map.proc[proc]) /* only do this if the process has a CPU map */
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003063#ifdef __FreeBSD__
Olivier Houchard97148f62017-08-16 17:29:11 +02003064 {
3065 cpuset_t cpuset;
3066 int i;
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003067 unsigned long cpu_map = global.cpu_map.proc[proc];
Olivier Houchard97148f62017-08-16 17:29:11 +02003068
3069 CPU_ZERO(&cpuset);
3070 while ((i = ffsl(cpu_map)) > 0) {
3071 CPU_SET(i - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003072 cpu_map &= ~(1UL << (i - 1));
Olivier Houchard97148f62017-08-16 17:29:11 +02003073 }
3074 ret = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(cpuset), &cpuset);
3075 }
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003076#else
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003077 sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map.proc[proc]);
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003078#endif
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003079#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02003080 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02003081 if (pidfd >= 0) {
3082 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
3083 close(pidfd);
3084 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02003085
3086 /* We won't ever use this anymore */
Willy Tarreaud137dd32010-08-25 12:49:05 +02003087 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003088
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003089 if (proc == global.nbproc) {
William Lallemand944e6192018-11-21 15:48:31 +01003090 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003091
3092 if ((!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
3093 (global.mode & MODE_DAEMON)) {
3094 /* detach from the tty, this is required to properly daemonize. */
William Lallemande1340412017-12-28 16:09:36 +01003095 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL))
3096 stdio_quiet(-1);
3097
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003098 global.mode &= ~MODE_VERBOSE;
3099 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003100 }
3101
William Lallemandb3f2be32018-09-11 10:06:18 +02003102 mworker_loop();
William Lallemand1499b9b2017-06-07 15:04:47 +02003103 /* should never get there */
3104 exit(EXIT_FAILURE);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003105 }
William Lallemandcf4e4962017-06-08 19:05:48 +02003106#if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH)
Grant Zhang872f9c22017-01-21 01:10:18 +00003107 ssl_free_dh();
3108#endif
William Lallemand1499b9b2017-06-07 15:04:47 +02003109 exit(0); /* parent must leave */
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003110 }
3111
William Lallemandcb11fd22017-06-01 17:38:52 +02003112 /* child must never use the atexit function */
3113 atexit_flag = 0;
3114
William Lallemandbc193052018-09-11 10:06:26 +02003115 /* close useless master sockets */
3116 if (global.mode & MODE_MWORKER) {
3117 struct mworker_proc *child, *it;
3118 master = 0;
3119
William Lallemand309dc9a2018-10-26 14:47:45 +02003120 mworker_cli_proxy_stop();
3121
William Lallemandbc193052018-09-11 10:06:26 +02003122 /* free proc struct of other processes */
3123 list_for_each_entry_safe(child, it, &proc_list, list) {
William Lallemandce83b4a2018-10-26 14:47:30 +02003124 /* close the FD of the master side for all
3125 * workers, we don't need to close the worker
3126 * side of other workers since it's done with
3127 * the bind_proc */
Tim Duesterhus742e0f92018-11-25 20:03:39 +01003128 if (child->ipc_fd[0] >= 0)
3129 close(child->ipc_fd[0]);
William Lallemandce83b4a2018-10-26 14:47:30 +02003130 if (child->relative_pid == relative_pid &&
3131 child->reloads == 0) {
3132 /* keep this struct if this is our pid */
3133 proc_self = child;
William Lallemandbc193052018-09-11 10:06:26 +02003134 continue;
William Lallemandce83b4a2018-10-26 14:47:30 +02003135 }
William Lallemandbc193052018-09-11 10:06:26 +02003136 LIST_DEL(&child->list);
Tim Duesterhus9b7a9762019-05-16 20:23:22 +02003137 mworker_free_child(child);
3138 child = NULL;
William Lallemandbc193052018-09-11 10:06:26 +02003139 }
3140 }
Willy Tarreau1605c7a2018-01-23 19:01:49 +01003141
William Lallemande1340412017-12-28 16:09:36 +01003142 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
3143 devnullfd = open("/dev/null", O_RDWR, 0);
3144 if (devnullfd < 0) {
3145 ha_alert("Cannot open /dev/null\n");
3146 exit(EXIT_FAILURE);
3147 }
3148 }
3149
William Lallemand095ba4c2017-06-01 17:38:50 +02003150 /* Must chroot and setgid/setuid in the children */
3151 /* chroot if needed */
3152 if (global.chroot != NULL) {
3153 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003154 ha_alert("[%s.main()] Cannot chroot1(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003155 if (nb_oldpids)
3156 tell_old_pids(SIGTTIN);
3157 protocol_unbind_all();
3158 exit(1);
3159 }
3160 }
3161
3162 free(global.chroot);
3163 global.chroot = NULL;
3164
3165 /* setgid / setuid */
3166 if (global.gid) {
3167 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003168 ha_warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
3169 " without 'uid'/'user' is generally useless.\n", argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003170
3171 if (setgid(global.gid) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003172 ha_alert("[%s.main()] Cannot set gid %d.\n", argv[0], global.gid);
William Lallemand095ba4c2017-06-01 17:38:50 +02003173 protocol_unbind_all();
3174 exit(1);
3175 }
3176 }
3177
3178 if (global.uid && setuid(global.uid) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003179 ha_alert("[%s.main()] Cannot set uid %d.\n", argv[0], global.uid);
William Lallemand095ba4c2017-06-01 17:38:50 +02003180 protocol_unbind_all();
3181 exit(1);
3182 }
3183
William Lallemand7f80eb22017-05-26 18:19:55 +02003184 /* pass through every cli socket, and check if it's bound to
3185 * the current process and if it exposes listeners sockets.
3186 * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork.
3187 * */
3188
3189 if (global.stats_fe) {
3190 struct bind_conf *bind_conf;
3191
3192 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3193 if (bind_conf->level & ACCESS_FD_LISTENERS) {
3194 if (!bind_conf->bind_proc || bind_conf->bind_proc & (1UL << proc)) {
3195 global.tune.options |= GTUNE_SOCKET_TRANSFER;
3196 break;
3197 }
3198 }
3199 }
3200 }
3201
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003202 /* we might have to unbind some proxies from some processes */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003203 px = proxies_list;
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003204 while (px != NULL) {
3205 if (px->bind_proc && px->state != PR_STSTOPPED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02003206 if (!(px->bind_proc & (1UL << proc))) {
3207 if (global.tune.options & GTUNE_SOCKET_TRANSFER)
3208 zombify_proxy(px);
3209 else
3210 stop_proxy(px);
3211 }
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003212 }
3213 px = px->next;
3214 }
3215
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003216 /* we might have to unbind some peers sections from some processes */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003217 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003218 if (!curpeers->peers_fe)
3219 continue;
3220
3221 if (curpeers->peers_fe->bind_proc & (1UL << proc))
3222 continue;
3223
3224 stop_proxy(curpeers->peers_fe);
3225 /* disable this peer section so that it kills itself */
Willy Tarreau47c8c022015-09-28 16:39:25 +02003226 signal_unregister_handler(curpeers->sighandler);
Olivier Houchard3f795f72019-04-17 22:51:06 +02003227 task_destroy(curpeers->sync_task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003228 curpeers->sync_task = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02003229 task_destroy(curpeers->peers_fe->task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003230 curpeers->peers_fe->task = NULL;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003231 curpeers->peers_fe = NULL;
3232 }
3233
William Lallemand2e8fad92018-11-13 16:18:23 +01003234 /*
3235 * This is only done in daemon mode because we might want the
3236 * logs on stdout in mworker mode. If we're NOT in QUIET mode,
3237 * we should now close the 3 first FDs to ensure that we can
3238 * detach from the TTY. We MUST NOT do it in other cases since
3239 * it would have already be done, and 0-2 would have been
3240 * affected to listening sockets
Willy Tarreaubaaee002006-06-26 02:48:02 +02003241 */
William Lallemand2e8fad92018-11-13 16:18:23 +01003242 if ((global.mode & MODE_DAEMON) &&
3243 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003244 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003245 stdio_quiet(devnullfd);
Willy Tarreau106cb762008-11-16 07:40:34 +01003246 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003247 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3248 }
3249 pid = getpid(); /* update child's pid */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003250 if (!(global.mode & MODE_MWORKER)) /* in mworker mode we don't want a new pgid for the children */
3251 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02003252 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003253 }
3254
Christopher Faulete3a5e352017-10-24 13:53:54 +02003255 global.mode &= ~MODE_STARTING;
Willy Tarreau4f60f162007-04-08 16:39:58 +02003256 /*
3257 * That's it : the central polling loop. Run until we stop.
3258 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02003259#ifdef USE_THREAD
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003260 {
William Lallemand1aab50b2018-06-07 09:46:01 +02003261 sigset_t blocked_sig, old_sig;
Willy Tarreauc40efc12019-05-03 09:22:44 +02003262 int i;
3263
William Lallemand1aab50b2018-06-07 09:46:01 +02003264 /* ensure the signals will be blocked in every thread */
3265 sigfillset(&blocked_sig);
3266 sigdelset(&blocked_sig, SIGPROF);
3267 sigdelset(&blocked_sig, SIGBUS);
3268 sigdelset(&blocked_sig, SIGFPE);
3269 sigdelset(&blocked_sig, SIGILL);
3270 sigdelset(&blocked_sig, SIGSEGV);
3271 pthread_sigmask(SIG_SETMASK, &blocked_sig, &old_sig);
3272
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003273 /* Create nbthread-1 thread. The first thread is the current process */
Willy Tarreau522cfbc2019-05-03 10:16:39 +02003274 thread_info[0].pthread = pthread_self();
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003275 for (i = 1; i < global.nbthread; i++)
Willy Tarreau522cfbc2019-05-03 10:16:39 +02003276 pthread_create(&thread_info[i].pthread, NULL, &run_thread_poll_loop, (void *)(long)i);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003277
Christopher Faulet62519022017-10-16 15:49:32 +02003278#ifdef USE_CPU_AFFINITY
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003279 /* Now the CPU affinity for all threads */
Willy Tarreau7764a572019-07-16 15:10:34 +02003280 if (global.cpu_map.proc_t1[relative_pid-1])
3281 global.cpu_map.thread[0] &= global.cpu_map.proc_t1[relative_pid-1];
3282
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003283 for (i = 0; i < global.nbthread; i++) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003284 if (global.cpu_map.proc[relative_pid-1])
Willy Tarreau81492c92019-05-03 09:41:23 +02003285 global.cpu_map.thread[i] &= global.cpu_map.proc[relative_pid-1];
Christopher Faulet62519022017-10-16 15:49:32 +02003286
Willy Tarreau421f02e2018-01-20 18:19:22 +01003287 if (i < MAX_THREADS && /* only the first 32/64 threads may be pinned */
Willy Tarreau81492c92019-05-03 09:41:23 +02003288 global.cpu_map.thread[i]) {/* only do this if the thread has a THREAD map */
Olivier Houchard829aa242017-12-01 18:19:43 +01003289#if defined(__FreeBSD__) || defined(__NetBSD__)
3290 cpuset_t cpuset;
3291#else
3292 cpu_set_t cpuset;
3293#endif
3294 int j;
Willy Tarreau81492c92019-05-03 09:41:23 +02003295 unsigned long cpu_map = global.cpu_map.thread[i];
Olivier Houchard829aa242017-12-01 18:19:43 +01003296
3297 CPU_ZERO(&cpuset);
3298
3299 while ((j = ffsl(cpu_map)) > 0) {
3300 CPU_SET(j - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003301 cpu_map &= ~(1UL << (j - 1));
Olivier Houchard829aa242017-12-01 18:19:43 +01003302 }
Willy Tarreau522cfbc2019-05-03 10:16:39 +02003303 pthread_setaffinity_np(thread_info[i].pthread,
Olivier Houchard829aa242017-12-01 18:19:43 +01003304 sizeof(cpuset), &cpuset);
3305 }
Christopher Faulet1d17c102017-08-29 15:38:48 +02003306 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003307#endif /* !USE_CPU_AFFINITY */
3308
William Lallemand1aab50b2018-06-07 09:46:01 +02003309 /* when multithreading we need to let only the thread 0 handle the signals */
William Lallemandd3801c12018-09-11 10:06:23 +02003310 haproxy_unblock_signals();
William Lallemand1aab50b2018-06-07 09:46:01 +02003311
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003312 /* Finally, start the poll loop for the first thread */
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003313 run_thread_poll_loop(0);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003314
3315 /* Wait the end of other threads */
3316 for (i = 1; i < global.nbthread; i++)
Willy Tarreau522cfbc2019-05-03 10:16:39 +02003317 pthread_join(thread_info[i].pthread, NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003318
Christopher Fauletb79a94c2017-05-30 15:34:30 +02003319#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
3320 show_lock_stats();
3321#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003322 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003323#else /* ! USE_THREAD */
William Lallemandd3801c12018-09-11 10:06:23 +02003324 haproxy_unblock_signals();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003325 run_thread_poll_loop(0);
Christopher Faulet62519022017-10-16 15:49:32 +02003326#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003327
3328 /* Do some cleanup */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003329 deinit();
Christopher Faulet1d17c102017-08-29 15:38:48 +02003330
Willy Tarreaubaaee002006-06-26 02:48:02 +02003331 exit(0);
3332}
3333
3334
3335/*
3336 * Local variables:
3337 * c-indent-level: 8
3338 * c-basic-offset: 8
3339 * End:
3340 */