blob: 605e5ee01bd98d07e0c680e3d9cd2ff4b148ea50 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HA-Proxy : High Availability-enabled HTTP/TCP proxy
Willy Tarreau71f95fa2020-01-22 10:34:58 +01003 * Copyright 2000-2020 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
David Carlier5e4c8e22019-09-13 05:12:58 +010062#ifdef __APPLE__
63#include <mach/mach_types.h>
64#include <mach/thread_act.h>
65#include <mach/thread_policy.h>
66#endif
Willy Tarreaufc6c0322012-11-16 16:12:27 +010067#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020068
Willy Tarreau636848a2019-04-15 19:38:50 +020069#if defined(USE_PRCTL)
70#include <sys/prctl.h>
71#endif
72
Willy Tarreaubaaee002006-06-26 02:48:02 +020073#ifdef DEBUG_FULL
74#include <assert.h>
75#endif
Tim Duesterhusd6942c82017-11-20 15:58:35 +010076#if defined(USE_SYSTEMD)
77#include <systemd/sd-daemon.h>
78#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020079
Willy Tarreau6c3a6812020-03-06 18:57:15 +010080#include <import/sha1.h>
81
Willy Tarreau2dd0d472006-06-29 17:53:05 +020082#include <common/base64.h>
83#include <common/cfgparse.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020084#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020085#include <common/compat.h>
86#include <common/config.h>
87#include <common/defaults.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010088#include <common/errors.h>
Willy Tarreau5794fb02018-11-25 18:43:29 +010089#include <common/initcall.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020090#include <common/memory.h>
91#include <common/mini-clist.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010092#include <common/namespace.h>
Willy Tarreau6c3a6812020-03-06 18:57:15 +010093#include <common/net_helper.h>
Willy Tarreauc125cef2019-05-10 09:58:43 +020094#include <common/openssl-compat.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020095#include <common/regex.h>
96#include <common/standard.h>
97#include <common/time.h>
98#include <common/uri_auth.h>
99#include <common/version.h>
Christopher Fauletbe0faa22017-08-29 15:37:10 +0200100#include <common/hathreads.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200101
102#include <types/capture.h>
William Lallemandce83b4a2018-10-26 14:47:30 +0200103#include <types/cli.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +0200104#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200105#include <types/global.h>
Simon Hormanac821422011-07-15 13:14:09 +0900106#include <types/acl.h>
Willy Tarreau3c63fd82011-09-07 18:00:47 +0200107#include <types/peers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200108
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200109#include <proto/acl.h>
Willy Tarreau609aad92018-11-22 08:31:09 +0100110#include <proto/activity.h>
Willy Tarreau2e845be2012-10-19 19:49:09 +0200111#include <proto/arg.h>
Willy Tarreau3c595ac2015-04-19 09:59:31 +0200112#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200113#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +0200114#include <proto/channel.h>
William Lallemandce83b4a2018-10-26 14:47:30 +0200115#include <proto/cli.h>
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200116#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200117#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +0200118#include <proto/filters.h>
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +0100119#include <proto/hlua.h>
Willy Tarreau61c112a2018-10-02 16:43:32 +0200120#include <proto/http_rules.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +0200121#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200122#include <proto/log.h>
William Lallemand48dfbbd2019-04-01 11:29:53 +0200123#include <proto/mworker.h>
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +0100124#include <proto/pattern.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +0200125#include <proto/protocol.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200126#include <proto/http_ana.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200127#include <proto/proxy.h>
128#include <proto/queue.h>
129#include <proto/server.h>
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200130#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +0200131#include <proto/stream.h>
Willy Tarreau29857942009-05-10 09:01:21 +0200132#include <proto/signal.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200133#include <proto/task.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +0200134#include <proto/dns.h>
Christopher Fauletff2613e2016-11-09 11:36:17 +0100135#include <proto/vars.h>
Grant Zhang872f9c22017-01-21 01:10:18 +0000136#include <proto/ssl_sock.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200137
Willy Tarreau7b5654f2019-03-29 21:30:17 +0100138/* array of init calls for older platforms */
139DECLARE_INIT_STAGES;
140
Willy Tarreau477ecd82010-01-03 21:12:30 +0100141/* list of config files */
142static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200143int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100144int relative_pid = 1; /* process id starting at 1 */
Willy Tarreau387bd4f2017-11-10 19:08:14 +0100145unsigned long pid_bit = 1; /* bit corresponding to the process id */
Willy Tarreaua38a7172019-02-02 17:11:28 +0100146unsigned long all_proc_mask = 1; /* mask of all processes */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200147
Olivier Houchard79321b92018-07-26 17:55:11 +0200148volatile unsigned long sleeping_thread_mask; /* Threads that are about to sleep in poll() */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200149/* global options */
150struct global global = {
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100151 .hard_stop_after = TICK_ETERNITY,
Willy Tarreau247a13a2012-11-15 17:38:15 +0100152 .nbproc = 1,
Willy Tarreau149ab772019-01-26 14:27:06 +0100153 .nbthread = 0,
William Lallemand5f232402012-04-05 18:02:55 +0200154 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200155 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
William Lallemand9d5f5482012-11-07 16:12:57 +0100156 .maxzlibmem = 0,
William Lallemandd85f9172012-11-09 17:05:39 +0100157 .comp_rate_lim = 0,
Emeric Brun850efd52014-01-29 12:24:34 +0100158 .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED,
Emeric Bruned760922010-10-22 17:59:25 +0200159 .unix_bind = {
160 .ux = {
161 .uid = -1,
162 .gid = -1,
163 .mode = 0,
164 }
165 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200166 .tune = {
Willy Tarreau7ac908b2019-02-27 12:02:18 +0100167 .options = GTUNE_LISTENER_MQ,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100168 .bufsize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Christopher Faulet546c4692020-01-22 14:31:21 +0100169 .maxrewrite = MAXREWRITE,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100170 .chksize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Willy Tarreaua24adf02014-11-27 01:11:56 +0100171 .reserved_bufs = RESERVED_BUFS,
Willy Tarreauf3045d22015-04-29 16:24:50 +0200172 .pattern_cache = DEFAULT_PAT_LRU_SIZE,
Olivier Houchard88698d92019-04-16 19:07:22 +0200173 .pool_low_ratio = 20,
174 .pool_high_ratio = 25,
Christopher Faulet41ba36f2019-07-19 09:36:45 +0200175 .max_http_hdr = MAX_HTTP_HDR,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200176#ifdef USE_OPENSSL
Emeric Brun46635772012-11-14 11:32:56 +0100177 .sslcachesize = SSLCACHESIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200178#endif
William Lallemandf3747832012-11-09 12:33:10 +0100179 .comp_maxlevel = 1,
Willy Tarreau7e312732014-02-12 16:35:14 +0100180#ifdef DEFAULT_IDLE_TIMER
181 .idle_timer = DEFAULT_IDLE_TIMER,
182#else
183 .idle_timer = 1000, /* 1 second */
184#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200185 },
Emeric Brun76d88952012-10-05 15:47:31 +0200186#ifdef USE_OPENSSL
187#ifdef DEFAULT_MAXSSLCONN
Willy Tarreau403edff2012-09-06 11:58:37 +0200188 .maxsslconn = DEFAULT_MAXSSLCONN,
189#endif
Emeric Brun76d88952012-10-05 15:47:31 +0200190#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200191 /* others NULL OK */
192};
193
194/*********************************************************************/
195
196int stopping; /* non zero means stopping in progress */
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100197int killed; /* non zero means a hard-stop is triggered */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200198int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
William Lallemanda7199262018-11-16 16:57:20 +0100199int unstoppable_jobs = 0; /* number of active jobs that can't be stopped during a soft stop */
Willy Tarreau199ad242018-11-05 16:31:22 +0100200int active_peers = 0; /* number of active peers (connection attempts and connected) */
Willy Tarreau2d372c22018-11-05 17:12:27 +0100201int connected_peers = 0; /* number of connected peers (verified ones) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200202
203/* Here we store informations about the pids of the processes we may pause
204 * or kill. We will send them a signal every 10 ms until we can bind to all
205 * our ports. With 200 retries, that's about 2 seconds.
206 */
207#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200208static int *oldpids = NULL;
209static int oldpids_sig; /* use USR1 or TERM */
210
Olivier Houchardf73629d2017-04-05 22:33:04 +0200211/* Path to the unix socket we use to retrieve listener sockets from the old process */
212static const char *old_unixsocket;
213
William Lallemand85b0bd92017-06-01 17:38:53 +0200214static char *cur_unixsocket = NULL;
215
William Lallemandcb11fd22017-06-01 17:38:52 +0200216int atexit_flag = 0;
217
Willy Tarreaubb545b42010-08-25 12:58:59 +0200218int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200219const int zero = 0;
220const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200221const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200222
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100223char hostname[MAX_HOSTNAME_LEN];
Emeric Brun2b920a12010-09-23 18:30:22 +0200224char localpeer[MAX_HOSTNAME_LEN];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200225
Willy Tarreau89efaed2013-12-13 15:14:55 +0100226/* used from everywhere just to drain results we don't want to read and which
227 * recent versions of gcc increasingly and annoyingly complain about.
228 */
229int shut_your_big_mouth_gcc_int = 0;
230
William Lallemand73b85e72017-06-01 17:38:51 +0200231static char **next_argv = NULL;
232
William Lallemandbc193052018-09-11 10:06:26 +0200233struct list proc_list = LIST_HEAD_INIT(proc_list);
234
235int master = 0; /* 1 if in master, 0 if in child */
Willy Tarreaubf696402019-03-01 10:09:28 +0100236unsigned int rlim_fd_cur_at_boot = 0;
237unsigned int rlim_fd_max_at_boot = 0;
William Lallemandbc193052018-09-11 10:06:26 +0200238
Willy Tarreau6c3a6812020-03-06 18:57:15 +0100239/* per-boot randomness */
240unsigned char boot_seed[20]; /* per-boot random seed (160 bits initially) */
241
William Lallemand16dd1b32018-11-19 18:46:18 +0100242struct mworker_proc *proc_self = NULL;
William Lallemandbc193052018-09-11 10:06:26 +0200243
William Lallemandb3f2be32018-09-11 10:06:18 +0200244static void *run_thread_poll_loop(void *data);
245
Willy Tarreauff055502014-04-28 22:27:06 +0200246/* bitfield of a few warnings to emit just once (WARN_*) */
247unsigned int warned = 0;
248
William Lallemande7361152018-10-26 14:47:36 +0200249/* master CLI configuration (-S flag) */
250struct list mworker_cli_conf = LIST_HEAD_INIT(mworker_cli_conf);
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100251
252/* These are strings to be reported in the output of "haproxy -vv". They may
253 * either be constants (in which case must_free must be zero) or dynamically
254 * allocated strings to pass to free() on exit, and in this case must_free
255 * must be non-zero.
256 */
257struct list build_opts_list = LIST_HEAD_INIT(build_opts_list);
258struct build_opts_str {
259 struct list list;
260 const char *str;
261 int must_free;
262};
263
Willy Tarreaue6945732016-12-21 19:57:00 +0100264/* These functions are called just after the point where the program exits
265 * after a config validity check, so they are generally suited for resource
266 * allocation and slow initializations that should be skipped during basic
267 * config checks. The functions must return 0 on success, or a combination
268 * of ERR_* flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause
269 * and immediate exit, so the function must have emitted any useful error.
270 */
271struct list post_check_list = LIST_HEAD_INIT(post_check_list);
272struct post_check_fct {
273 struct list list;
274 int (*fct)();
275};
276
Christopher Fauletc1692962019-08-12 09:51:07 +0200277/* These functions are called for each proxy just after the config validity
278 * check. The functions must return 0 on success, or a combination of ERR_*
279 * flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause and immediate
280 * exit, so the function must have emitted any useful error.
281 */
282struct list post_proxy_check_list = LIST_HEAD_INIT(post_proxy_check_list);
283struct post_proxy_check_fct {
284 struct list list;
285 int (*fct)(struct proxy *);
286};
287
288/* These functions are called for each server just after the config validity
289 * check. The functions must return 0 on success, or a combination of ERR_*
290 * flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause and immediate
291 * exit, so the function must have emitted any useful error.
292 */
293struct list post_server_check_list = LIST_HEAD_INIT(post_server_check_list);
294struct post_server_check_fct {
295 struct list list;
296 int (*fct)(struct server *);
297};
298
Willy Tarreau082b6282019-05-22 14:42:12 +0200299/* These functions are called for each thread just after the thread creation
300 * and before running the init functions. They should be used to do per-thread
301 * (re-)allocations that are needed by subsequent functoins. They must return 0
302 * if an error occurred. */
303struct list per_thread_alloc_list = LIST_HEAD_INIT(per_thread_alloc_list);
304struct per_thread_alloc_fct {
Willy Tarreau05554e62016-12-21 20:46:26 +0100305 struct list list;
Willy Tarreau082b6282019-05-22 14:42:12 +0200306 int (*fct)();
Willy Tarreau05554e62016-12-21 20:46:26 +0100307};
308
Christopher Faulet415f6112017-07-25 16:52:58 +0200309/* These functions are called for each thread just after the thread creation
310 * and before running the scheduler. They should be used to do per-thread
311 * initializations. They must return 0 if an error occurred. */
312struct list per_thread_init_list = LIST_HEAD_INIT(per_thread_init_list);
313struct per_thread_init_fct {
314 struct list list;
315 int (*fct)();
316};
317
Willy Tarreau082b6282019-05-22 14:42:12 +0200318/* These functions are called when freeing the global sections at the end of
319 * deinit, after everything is stopped. They don't return anything. They should
320 * not release shared resources that are possibly used by other deinit
321 * functions, only close/release what is private. Use the per_thread_free_list
322 * to release shared resources.
323 */
324struct list post_deinit_list = LIST_HEAD_INIT(post_deinit_list);
325struct post_deinit_fct {
326 struct list list;
327 void (*fct)();
328};
329
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +0200330/* These functions are called when freeing a proxy during the deinit, after
331 * everything isg stopped. They don't return anything. They should not release
332 * the proxy itself or any shared resources that are possibly used by other
333 * deinit functions, only close/release what is private.
334 */
335struct list proxy_deinit_list = LIST_HEAD_INIT(proxy_deinit_list);
336struct proxy_deinit_fct {
337 struct list list;
338 void (*fct)(struct proxy *);
339};
340
341/* These functions are called when freeing a server during the deinit, after
342 * everything isg stopped. They don't return anything. They should not release
343 * the proxy itself or any shared resources that are possibly used by other
344 * deinit functions, only close/release what is private.
345 */
346struct list server_deinit_list = LIST_HEAD_INIT(server_deinit_list);
347struct server_deinit_fct {
348 struct list list;
349 void (*fct)(struct server *);
350};
351
Willy Tarreau082b6282019-05-22 14:42:12 +0200352/* These functions are called when freeing the global sections at the end of
353 * deinit, after the thread deinit functions, to release unneeded memory
354 * allocations. They don't return anything, and they work in best effort mode
355 * as their sole goal is to make valgrind mostly happy.
356 */
357struct list per_thread_free_list = LIST_HEAD_INIT(per_thread_free_list);
358struct per_thread_free_fct {
359 struct list list;
360 int (*fct)();
361};
362
Christopher Faulet415f6112017-07-25 16:52:58 +0200363/* These functions are called for each thread just after the scheduler loop and
364 * before exiting the thread. They don't return anything and, as for post-deinit
365 * functions, they work in best effort mode as their sole goal is to make
366 * valgrind mostly happy. */
367struct list per_thread_deinit_list = LIST_HEAD_INIT(per_thread_deinit_list);
368struct per_thread_deinit_fct {
369 struct list list;
370 void (*fct)();
371};
372
Willy Tarreaubaaee002006-06-26 02:48:02 +0200373/*********************************************************************/
374/* general purpose functions ***************************************/
375/*********************************************************************/
376
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100377/* used to register some build option strings at boot. Set must_free to
378 * non-zero if the string must be freed upon exit.
379 */
380void hap_register_build_opts(const char *str, int must_free)
381{
382 struct build_opts_str *b;
383
384 b = calloc(1, sizeof(*b));
385 if (!b) {
386 fprintf(stderr, "out of memory\n");
387 exit(1);
388 }
389 b->str = str;
390 b->must_free = must_free;
391 LIST_ADDQ(&build_opts_list, &b->list);
392}
393
Willy Tarreaue6945732016-12-21 19:57:00 +0100394/* used to register some initialization functions to call after the checks. */
395void hap_register_post_check(int (*fct)())
396{
397 struct post_check_fct *b;
398
399 b = calloc(1, sizeof(*b));
400 if (!b) {
401 fprintf(stderr, "out of memory\n");
402 exit(1);
403 }
404 b->fct = fct;
405 LIST_ADDQ(&post_check_list, &b->list);
406}
407
Christopher Fauletc1692962019-08-12 09:51:07 +0200408/* used to register some initialization functions to call for each proxy after
409 * the checks.
410 */
411void hap_register_post_proxy_check(int (*fct)(struct proxy *))
412{
413 struct post_proxy_check_fct *b;
414
415 b = calloc(1, sizeof(*b));
416 if (!b) {
417 fprintf(stderr, "out of memory\n");
418 exit(1);
419 }
420 b->fct = fct;
421 LIST_ADDQ(&post_proxy_check_list, &b->list);
422}
423
424/* used to register some initialization functions to call for each server after
425 * the checks.
426 */
427void hap_register_post_server_check(int (*fct)(struct server *))
428{
429 struct post_server_check_fct *b;
430
431 b = calloc(1, sizeof(*b));
432 if (!b) {
433 fprintf(stderr, "out of memory\n");
434 exit(1);
435 }
436 b->fct = fct;
437 LIST_ADDQ(&post_server_check_list, &b->list);
438}
439
Willy Tarreau05554e62016-12-21 20:46:26 +0100440/* used to register some de-initialization functions to call after everything
441 * has stopped.
442 */
443void hap_register_post_deinit(void (*fct)())
444{
445 struct post_deinit_fct *b;
446
447 b = calloc(1, sizeof(*b));
448 if (!b) {
449 fprintf(stderr, "out of memory\n");
450 exit(1);
451 }
452 b->fct = fct;
453 LIST_ADDQ(&post_deinit_list, &b->list);
454}
455
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +0200456/* used to register some per proxy de-initialization functions to call after
457 * everything has stopped.
458 */
459void hap_register_proxy_deinit(void (*fct)(struct proxy *))
460{
461 struct proxy_deinit_fct *b;
462
463 b = calloc(1, sizeof(*b));
464 if (!b) {
465 fprintf(stderr, "out of memory\n");
466 exit(1);
467 }
468 b->fct = fct;
469 LIST_ADDQ(&proxy_deinit_list, &b->list);
470}
471
472
473/* used to register some per server de-initialization functions to call after
474 * everything has stopped.
475 */
476void hap_register_server_deinit(void (*fct)(struct server *))
477{
478 struct server_deinit_fct *b;
479
480 b = calloc(1, sizeof(*b));
481 if (!b) {
482 fprintf(stderr, "out of memory\n");
483 exit(1);
484 }
485 b->fct = fct;
486 LIST_ADDQ(&server_deinit_list, &b->list);
487}
488
Willy Tarreau082b6282019-05-22 14:42:12 +0200489/* used to register some allocation functions to call for each thread. */
490void hap_register_per_thread_alloc(int (*fct)())
491{
492 struct per_thread_alloc_fct *b;
493
494 b = calloc(1, sizeof(*b));
495 if (!b) {
496 fprintf(stderr, "out of memory\n");
497 exit(1);
498 }
499 b->fct = fct;
500 LIST_ADDQ(&per_thread_alloc_list, &b->list);
501}
502
Christopher Faulet415f6112017-07-25 16:52:58 +0200503/* used to register some initialization functions to call for each thread. */
504void hap_register_per_thread_init(int (*fct)())
505{
506 struct per_thread_init_fct *b;
507
508 b = calloc(1, sizeof(*b));
509 if (!b) {
510 fprintf(stderr, "out of memory\n");
511 exit(1);
512 }
513 b->fct = fct;
514 LIST_ADDQ(&per_thread_init_list, &b->list);
515}
516
517/* used to register some de-initialization functions to call for each thread. */
518void hap_register_per_thread_deinit(void (*fct)())
519{
520 struct per_thread_deinit_fct *b;
521
522 b = calloc(1, sizeof(*b));
523 if (!b) {
524 fprintf(stderr, "out of memory\n");
525 exit(1);
526 }
527 b->fct = fct;
528 LIST_ADDQ(&per_thread_deinit_list, &b->list);
529}
530
Willy Tarreau082b6282019-05-22 14:42:12 +0200531/* used to register some free functions to call for each thread. */
532void hap_register_per_thread_free(int (*fct)())
533{
534 struct per_thread_free_fct *b;
535
536 b = calloc(1, sizeof(*b));
537 if (!b) {
538 fprintf(stderr, "out of memory\n");
539 exit(1);
540 }
541 b->fct = fct;
542 LIST_ADDQ(&per_thread_free_list, &b->list);
543}
544
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100545static void display_version()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200546{
Willy Tarreau08dd2022019-11-21 18:07:30 +0100547 printf("HA-Proxy version %s %s - https://haproxy.org/\n"
548 PRODUCT_STATUS "\n", haproxy_version, haproxy_date);
Willy Tarreau47479eb2019-11-21 18:48:20 +0100549
550 if (strlen(PRODUCT_URL_BUGS) > 0) {
551 char base_version[20];
552 int dots = 0;
553 char *del;
554
555 /* only retrieve the base version without distro-specific extensions */
556 for (del = haproxy_version; *del; del++) {
557 if (*del == '.')
558 dots++;
559 else if (*del < '0' || *del > '9')
560 break;
561 }
562
563 strlcpy2(base_version, haproxy_version, del - haproxy_version + 1);
564 if (dots < 2)
565 printf("Known bugs: https://github.com/haproxy/haproxy/issues?q=is:issue+is:open\n");
566 else
567 printf("Known bugs: " PRODUCT_URL_BUGS "\n", base_version);
568 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200569}
570
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100571static void display_build_opts()
Willy Tarreau7b066db2007-12-02 11:28:59 +0100572{
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100573 struct build_opts_str *item;
574
Willy Tarreau7b066db2007-12-02 11:28:59 +0100575 printf("Build options :"
576#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100577 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100578#endif
579#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100580 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100581#endif
582#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100583 "\n CC = " BUILD_CC
584#endif
585#ifdef BUILD_CFLAGS
586 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100587#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100588#ifdef BUILD_OPTIONS
589 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100590#endif
Willy Tarreau7728ed32019-03-27 13:20:08 +0100591#ifdef BUILD_FEATURES
592 "\n\nFeature list : " BUILD_FEATURES
593#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200594 "\n\nDefault settings :"
Willy Tarreauca783d42019-03-13 10:03:07 +0100595 "\n bufsize = %d, maxrewrite = %d, maxpollevents = %d"
Willy Tarreau27a674e2009-08-17 07:23:33 +0200596 "\n\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100597 BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200598
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100599 list_for_each_entry(item, &build_opts_list, list) {
600 puts(item->str);
601 }
602
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100603 putchar('\n');
604
Willy Tarreaube5b6852009-10-03 18:57:08 +0200605 list_pollers(stdout);
606 putchar('\n');
Christopher Faulet98d9fe22018-04-10 14:37:32 +0200607 list_mux_proto(stdout);
608 putchar('\n');
Willy Tarreau679bba12019-03-19 08:08:10 +0100609 list_services(stdout);
610 putchar('\n');
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100611 list_filters(stdout);
612 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100613}
614
Willy Tarreaubaaee002006-06-26 02:48:02 +0200615/*
616 * This function prints the command line usage and exits
617 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100618static void usage(char *name)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200619{
620 display_version();
621 fprintf(stderr,
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200622 "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200623 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreaua088d312015-10-08 11:58:48 +0200624 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100625 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200626 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200627 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200628 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200629 " -D goes daemon ; -C changes to <dir> before loading files.\n"
William Lallemand095ba4c2017-06-01 17:38:50 +0200630 " -W master-worker mode.\n"
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100631#if defined(USE_SYSTEMD)
632 " -Ws master-worker mode with systemd notify support.\n"
633#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200634 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200635 " -c check mode : only check config files and exit\n"
Willy Tarreauca783d42019-03-13 10:03:07 +0100636 " -n sets the maximum total # of connections (uses ulimit -n)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200637 " -m limits the usable amount of memory (in MB)\n"
638 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200639 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200640 " -p writes pids of all children to this file\n"
Willy Tarreaue5733232019-05-22 19:24:06 +0200641#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200642 " -de disables epoll() usage even when available\n"
643#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200644#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200645 " -dk disables kqueue() usage even when available\n"
646#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200647#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +0000648 " -dv disables event ports usage even when available\n"
649#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200650#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200651 " -dp disables poll() usage even when available\n"
652#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200653#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100654 " -dS disables splice usage (broken on old kernels)\n"
655#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200656#if defined(USE_GETADDRINFO)
657 " -dG disables getaddrinfo() usage\n"
658#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000659#if defined(SO_REUSEPORT)
660 " -dR disables SO_REUSEPORT usage\n"
661#endif
Willy Tarreau3eed10e2016-11-07 21:03:16 +0100662 " -dr ignores server address resolution failures\n"
Emeric Brun850efd52014-01-29 12:24:34 +0100663 " -dV disables SSL verify on servers side\n"
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200664 " -sf/-st [pid ]* finishes/terminates old pids.\n"
Olivier Houchardf73629d2017-04-05 22:33:04 +0200665 " -x <unix_socket> get listening sockets from a unix socket\n"
William Lallemand63329e32019-06-13 17:03:37 +0200666 " -S <bind>[,<bind options>...] new master CLI\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200667 "\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100668 name, cfg_maxpconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200669 exit(1);
670}
671
672
673
674/*********************************************************************/
675/* more specific functions ***************************************/
676/*********************************************************************/
677
William Lallemand73b85e72017-06-01 17:38:51 +0200678/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
679 * pids the signal was correctly delivered to.
680 */
William Lallemande25473c2019-04-01 11:29:56 +0200681int tell_old_pids(int sig)
William Lallemand73b85e72017-06-01 17:38:51 +0200682{
683 int p;
684 int ret = 0;
685 for (p = 0; p < nb_oldpids; p++)
686 if (kill(oldpids[p], sig) == 0)
687 ret++;
688 return ret;
689}
690
William Lallemand75ea0a02017-11-15 19:02:58 +0100691/*
William Lallemand73b85e72017-06-01 17:38:51 +0200692 * remove a pid forom the olpid array and decrease nb_oldpids
693 * return 1 pid was found otherwise return 0
694 */
695
696int delete_oldpid(int pid)
697{
698 int i;
699
700 for (i = 0; i < nb_oldpids; i++) {
701 if (oldpids[i] == pid) {
702 oldpids[i] = oldpids[nb_oldpids - 1];
703 oldpids[nb_oldpids - 1] = 0;
704 nb_oldpids--;
705 return 1;
706 }
707 }
708 return 0;
709}
710
William Lallemand85b0bd92017-06-01 17:38:53 +0200711
712static void get_cur_unixsocket()
713{
714 /* if -x was used, try to update the stat socket if not available anymore */
715 if (global.stats_fe) {
716 struct bind_conf *bind_conf;
717
718 /* pass through all stats socket */
719 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
720 struct listener *l;
721
722 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
723
724 if (l->addr.ss_family == AF_UNIX &&
725 (bind_conf->level & ACCESS_FD_LISTENERS)) {
726 const struct sockaddr_un *un;
727
728 un = (struct sockaddr_un *)&l->addr;
729 /* priority to old_unixsocket */
730 if (!cur_unixsocket) {
731 cur_unixsocket = strdup(un->sun_path);
732 } else {
733 if (old_unixsocket && !strcmp(un->sun_path, old_unixsocket)) {
734 free(cur_unixsocket);
735 cur_unixsocket = strdup(old_unixsocket);
736 return;
737 }
738 }
739 }
740 }
741 }
742 }
743 if (!cur_unixsocket && old_unixsocket)
744 cur_unixsocket = strdup(old_unixsocket);
745}
746
William Lallemand73b85e72017-06-01 17:38:51 +0200747/*
748 * When called, this function reexec haproxy with -sf followed by current
Joseph Herlant03420902018-11-15 10:41:50 -0800749 * children PIDs and possibly old children PIDs if they didn't leave yet.
William Lallemand73b85e72017-06-01 17:38:51 +0200750 */
William Lallemanda57b7e32018-12-14 21:11:31 +0100751void mworker_reload()
William Lallemand73b85e72017-06-01 17:38:51 +0200752{
753 int next_argc = 0;
William Lallemand73b85e72017-06-01 17:38:51 +0200754 char *msg = NULL;
Willy Tarreau8dca1952019-03-01 10:21:55 +0100755 struct rlimit limit;
William Lallemand7c756a82018-11-26 11:53:40 +0100756 struct per_thread_deinit_fct *ptdf;
William Lallemand73b85e72017-06-01 17:38:51 +0200757
758 mworker_block_signals();
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100759#if defined(USE_SYSTEMD)
760 if (global.tune.options & GTUNE_USE_SYSTEMD)
761 sd_notify(0, "RELOADING=1");
762#endif
William Lallemand73b85e72017-06-01 17:38:51 +0200763 setenv("HAPROXY_MWORKER_REEXEC", "1", 1);
764
William Lallemandbc193052018-09-11 10:06:26 +0200765 mworker_proc_list_to_env(); /* put the children description in the env */
766
William Lallemand7c756a82018-11-26 11:53:40 +0100767 /* during the reload we must ensure that every FDs that can't be
768 * reuse (ie those that are not referenced in the proc_list)
769 * are closed or they will leak. */
770
771 /* close the listeners FD */
772 mworker_cli_proxy_stop();
William Lallemand16866672019-06-24 17:40:48 +0200773
774 if (getenv("HAPROXY_MWORKER_WAIT_ONLY") == NULL) {
775 /* close the poller FD and the thread waker pipe FD */
776 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
777 ptdf->fct();
778 if (fdtab)
779 deinit_pollers();
780 }
Willy Tarreau5db847a2019-05-09 14:13:35 +0200781#if defined(USE_OPENSSL) && (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
William Lallemand5fdb5b32019-10-15 14:04:08 +0200782 /* close random device FDs */
783 RAND_keep_random_devices_open(0);
Rob Allen56996da2019-05-03 09:11:32 +0100784#endif
William Lallemand7c756a82018-11-26 11:53:40 +0100785
Willy Tarreau8dca1952019-03-01 10:21:55 +0100786 /* restore the initial FD limits */
787 limit.rlim_cur = rlim_fd_cur_at_boot;
788 limit.rlim_max = rlim_fd_max_at_boot;
789 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
790 getrlimit(RLIMIT_NOFILE, &limit);
791 ha_warning("Failed to restore initial FD limits (cur=%u max=%u), using cur=%u max=%u\n",
792 rlim_fd_cur_at_boot, rlim_fd_max_at_boot,
793 (unsigned int)limit.rlim_cur, (unsigned int)limit.rlim_max);
794 }
795
William Lallemand73b85e72017-06-01 17:38:51 +0200796 /* compute length */
797 while (next_argv[next_argc])
798 next_argc++;
799
William Lallemand85b0bd92017-06-01 17:38:53 +0200800 /* 1 for haproxy -sf, 2 for -x /socket */
William Lallemand3f128872019-04-01 11:29:59 +0200801 next_argv = realloc(next_argv, (next_argc + 1 + 2 + mworker_child_nb() + nb_oldpids + 1) * sizeof(char *));
William Lallemand73b85e72017-06-01 17:38:51 +0200802 if (next_argv == NULL)
803 goto alloc_error;
804
William Lallemand73b85e72017-06-01 17:38:51 +0200805 /* add -sf <PID>* to argv */
William Lallemand3f128872019-04-01 11:29:59 +0200806 if (mworker_child_nb() > 0) {
807 struct mworker_proc *child;
808
William Lallemand73b85e72017-06-01 17:38:51 +0200809 next_argv[next_argc++] = "-sf";
William Lallemand3f128872019-04-01 11:29:59 +0200810
811 list_for_each_entry(child, &proc_list, list) {
William Lallemand677e2f22019-11-19 17:04:18 +0100812 if (!(child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) || child->pid <= -1 )
William Lallemand3f128872019-04-01 11:29:59 +0200813 continue;
814 next_argv[next_argc] = memprintf(&msg, "%d", child->pid);
William Lallemand73b85e72017-06-01 17:38:51 +0200815 if (next_argv[next_argc] == NULL)
816 goto alloc_error;
817 msg = NULL;
William Lallemand3f128872019-04-01 11:29:59 +0200818 next_argc++;
William Lallemand73b85e72017-06-01 17:38:51 +0200819 }
820 }
William Lallemand3f128872019-04-01 11:29:59 +0200821
William Lallemand73b85e72017-06-01 17:38:51 +0200822 next_argv[next_argc] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200823
William Lallemand2bf6d622017-06-20 11:20:23 +0200824 /* add the -x option with the stat socket */
William Lallemand85b0bd92017-06-01 17:38:53 +0200825 if (cur_unixsocket) {
826
William Lallemand2bf6d622017-06-20 11:20:23 +0200827 next_argv[next_argc++] = "-x";
828 next_argv[next_argc++] = (char *)cur_unixsocket;
829 next_argv[next_argc++] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200830 }
831
Christopher Faulet767a84b2017-11-24 16:50:31 +0100832 ha_warning("Reexecuting Master process\n");
Willy Tarreaue0d86e22019-08-26 10:37:39 +0200833 signal(SIGPROF, SIG_IGN);
Tim Duesterhus0436ab72017-11-12 17:39:18 +0100834 execvp(next_argv[0], next_argv);
William Lallemand73b85e72017-06-01 17:38:51 +0200835
Christopher Faulet767a84b2017-11-24 16:50:31 +0100836 ha_warning("Failed to reexecute the master process [%d]: %s\n", pid, strerror(errno));
William Lallemand722d4ca2017-11-15 19:02:55 +0100837 return;
838
William Lallemand73b85e72017-06-01 17:38:51 +0200839alloc_error:
Joseph Herlant07a08342018-11-15 10:43:05 -0800840 ha_warning("Failed to reexecute the master process [%d]: Cannot allocate memory\n", pid);
William Lallemand73b85e72017-06-01 17:38:51 +0200841 return;
842}
843
William Lallemandb3f2be32018-09-11 10:06:18 +0200844static void mworker_loop()
845{
846
847#if defined(USE_SYSTEMD)
848 if (global.tune.options & GTUNE_USE_SYSTEMD)
849 sd_notifyf(0, "READY=1\nMAINPID=%lu", (unsigned long)getpid());
850#endif
Willy Tarreaud83b6c12019-04-18 11:31:36 +0200851 /* Busy polling makes no sense in the master :-) */
852 global.tune.options &= ~GTUNE_BUSY_POLLING;
William Lallemandb3f2be32018-09-11 10:06:18 +0200853
William Lallemandbc193052018-09-11 10:06:26 +0200854 master = 1;
855
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100856 signal_unregister(SIGTTIN);
857 signal_unregister(SIGTTOU);
William Lallemand0564d412018-11-20 17:36:53 +0100858 signal_unregister(SIGUSR1);
859 signal_unregister(SIGHUP);
860 signal_unregister(SIGQUIT);
861
William Lallemandb3f2be32018-09-11 10:06:18 +0200862 signal_register_fct(SIGTERM, mworker_catch_sigterm, SIGTERM);
863 signal_register_fct(SIGUSR1, mworker_catch_sigterm, SIGUSR1);
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100864 signal_register_fct(SIGTTIN, mworker_broadcast_signal, SIGTTIN);
865 signal_register_fct(SIGTTOU, mworker_broadcast_signal, SIGTTOU);
William Lallemandb3f2be32018-09-11 10:06:18 +0200866 signal_register_fct(SIGINT, mworker_catch_sigterm, SIGINT);
867 signal_register_fct(SIGHUP, mworker_catch_sighup, SIGHUP);
868 signal_register_fct(SIGUSR2, mworker_catch_sighup, SIGUSR2);
869 signal_register_fct(SIGCHLD, mworker_catch_sigchld, SIGCHLD);
870
871 mworker_unblock_signals();
872 mworker_cleanlisteners();
William Lallemand27f3fa52018-12-06 14:05:20 +0100873 mworker_cleantasks();
William Lallemandb3f2be32018-09-11 10:06:18 +0200874
William Lallemandbc193052018-09-11 10:06:26 +0200875 mworker_catch_sigchld(NULL); /* ensure we clean the children in case
876 some SIGCHLD were lost */
877
William Lallemandb3f2be32018-09-11 10:06:18 +0200878 global.nbthread = 1;
879 relative_pid = 1;
880 pid_bit = 1;
Willy Tarreaua38a7172019-02-02 17:11:28 +0100881 all_proc_mask = 1;
William Lallemandb3f2be32018-09-11 10:06:18 +0200882
William Lallemand2672eb92018-12-14 15:52:39 +0100883#ifdef USE_THREAD
884 tid_bit = 1;
885 all_threads_mask = 1;
886#endif
887
William Lallemandb3f2be32018-09-11 10:06:18 +0200888 jobs++; /* this is the "master" job, we want to take care of the
889 signals even if there is no listener so the poll loop don't
890 leave */
891
892 fork_poller();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +0200893 run_thread_poll_loop(0);
William Lallemandb3f2be32018-09-11 10:06:18 +0200894}
William Lallemandcb11fd22017-06-01 17:38:52 +0200895
896/*
897 * Reexec the process in failure mode, instead of exiting
898 */
899void reexec_on_failure()
900{
901 if (!atexit_flag)
902 return;
903
904 setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1);
905
Christopher Faulet767a84b2017-11-24 16:50:31 +0100906 ha_warning("Reexecuting Master process in waitpid mode\n");
William Lallemandcb11fd22017-06-01 17:38:52 +0200907 mworker_reload();
William Lallemandcb11fd22017-06-01 17:38:52 +0200908}
William Lallemand73b85e72017-06-01 17:38:51 +0200909
910
911/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200912 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
913 * a signal zero to all subscribers. This means that it's as easy as
914 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200915 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100916static void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200917{
918 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200919 signal_unregister_handler(sh);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100920 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200921}
922
923/*
924 * upon SIGTTOU, we pause everything
925 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100926static void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200927{
928 pause_proxies();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100929 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200930}
931
932/*
933 * upon SIGTTIN, let's have a soft stop.
934 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100935static void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200936{
Willy Tarreaube58c382011-07-24 18:28:10 +0200937 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200938}
939
940/*
941 * this function dumps every server's state when the process receives SIGHUP.
942 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100943static void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200944{
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100945 struct proxy *p = proxies_list;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200946
Christopher Faulet767a84b2017-11-24 16:50:31 +0100947 ha_warning("SIGHUP received, dumping servers states.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200948 while (p) {
949 struct server *s = p->srv;
950
951 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
952 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100953 chunk_printf(&trash,
954 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
955 p->id, s->id,
Emeric Brun52a91d32017-08-31 14:41:55 +0200956 (s->cur_state != SRV_ST_STOPPED) ? "UP" : "DOWN",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100957 s->cur_sess, s->nbpend, s->counters.cum_sess);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200958 ha_warning("%s\n", trash.area);
959 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200960 s = s->next;
961 }
962
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200963 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
964 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100965 chunk_printf(&trash,
966 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
967 p->id,
968 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 +0200969 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100970 chunk_printf(&trash,
971 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
972 p->id,
973 (p->srv_bck) ? "is running on backup servers" : "has no server available",
974 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 +0200975 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100976 chunk_printf(&trash,
977 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
978 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
979 p->id, p->srv_act, p->srv_bck,
980 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 +0200981 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200982 ha_warning("%s\n", trash.area);
983 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200984
985 p = p->next;
986 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200987}
988
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100989static void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200990{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200991 /* dump memory usage then free everything possible */
992 dump_pools();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100993 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200994}
995
William Lallemande1340412017-12-28 16:09:36 +0100996/*
997 * This function dup2 the stdio FDs (0,1,2) with <fd>, then closes <fd>
998 * If <fd> < 0, it opens /dev/null and use it to dup
999 *
1000 * In the case of chrooting, you have to open /dev/null before the chroot, and
1001 * pass the <fd> to this function
1002 */
1003static void stdio_quiet(int fd)
1004{
1005 if (fd < 0)
1006 fd = open("/dev/null", O_RDWR, 0);
1007
1008 if (fd > -1) {
1009 fclose(stdin);
1010 fclose(stdout);
1011 fclose(stderr);
1012
1013 dup2(fd, 0);
1014 dup2(fd, 1);
1015 dup2(fd, 2);
1016 if (fd > 2)
1017 close(fd);
1018 return;
1019 }
1020
1021 ha_alert("Cannot open /dev/null\n");
1022 exit(EXIT_FAILURE);
1023}
1024
1025
Joseph Herlant03420902018-11-15 10:41:50 -08001026/* This function checks if cfg_cfgfiles contains directories.
1027 * If it finds one, it adds all the files (and only files) it contains
1028 * in cfg_cfgfiles in place of the directory (and removes the directory).
1029 * It adds the files in lexical order.
1030 * It adds only files with .cfg extension.
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001031 * It doesn't add files with name starting with '.'
1032 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001033static void cfgfiles_expand_directories(void)
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001034{
1035 struct wordlist *wl, *wlb;
1036 char *err = NULL;
1037
1038 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
1039 struct stat file_stat;
1040 struct dirent **dir_entries = NULL;
1041 int dir_entries_nb;
1042 int dir_entries_it;
1043
1044 if (stat(wl->s, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001045 ha_alert("Cannot open configuration file/directory %s : %s\n",
1046 wl->s,
1047 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001048 exit(1);
1049 }
1050
1051 if (!S_ISDIR(file_stat.st_mode))
1052 continue;
1053
1054 /* from this point wl->s is a directory */
1055
1056 dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort);
1057 if (dir_entries_nb < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001058 ha_alert("Cannot open configuration directory %s : %s\n",
1059 wl->s,
1060 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001061 exit(1);
1062 }
1063
1064 /* for each element in the directory wl->s */
1065 for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) {
1066 struct dirent *dir_entry = dir_entries[dir_entries_it];
1067 char *filename = NULL;
1068 char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg");
1069
1070 /* don't add filename that begin with .
Joseph Herlant03420902018-11-15 10:41:50 -08001071 * only add filename with .cfg extension
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001072 */
1073 if (dir_entry->d_name[0] == '.' ||
1074 !(d_name_cfgext && d_name_cfgext[4] == '\0'))
1075 goto next_dir_entry;
1076
1077 if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001078 ha_alert("Cannot load configuration files %s : out of memory.\n",
1079 filename);
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001080 exit(1);
1081 }
1082
1083 if (stat(filename, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001084 ha_alert("Cannot open configuration file %s : %s\n",
1085 wl->s,
1086 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001087 exit(1);
1088 }
1089
1090 /* don't add anything else than regular file in cfg_cfgfiles
1091 * this way we avoid loops
1092 */
1093 if (!S_ISREG(file_stat.st_mode))
1094 goto next_dir_entry;
1095
1096 if (!list_append_word(&wl->list, filename, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001097 ha_alert("Cannot load configuration files %s : %s\n",
1098 filename,
1099 err);
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001100 exit(1);
1101 }
1102
1103next_dir_entry:
1104 free(filename);
1105 free(dir_entry);
1106 }
1107
1108 free(dir_entries);
1109
1110 /* remove the current directory (wl) from cfg_cfgfiles */
1111 free(wl->s);
1112 LIST_DEL(&wl->list);
1113 free(wl);
1114 }
1115
1116 free(err);
1117}
1118
Olivier Houchardf73629d2017-04-05 22:33:04 +02001119static int get_old_sockets(const char *unixsocket)
1120{
1121 char *cmsgbuf = NULL, *tmpbuf = NULL;
1122 int *tmpfd = NULL;
1123 struct sockaddr_un addr;
1124 struct cmsghdr *cmsg;
1125 struct msghdr msghdr;
1126 struct iovec iov;
1127 struct xfer_sock_list *xfer_sock = NULL;
Olivier Houchard54740872017-04-06 14:45:14 +02001128 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Olivier Houchardf73629d2017-04-05 22:33:04 +02001129 int sock = -1;
1130 int ret = -1;
1131 int ret2 = -1;
1132 int fd_nb;
1133 int got_fd = 0;
1134 int i = 0;
1135 size_t maxoff = 0, curoff = 0;
1136
1137 memset(&msghdr, 0, sizeof(msghdr));
1138 cmsgbuf = malloc(CMSG_SPACE(sizeof(int)) * MAX_SEND_FD);
1139 if (!cmsgbuf) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001140 ha_warning("Failed to allocate memory to send sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001141 goto out;
1142 }
1143 sock = socket(PF_UNIX, SOCK_STREAM, 0);
1144 if (sock < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001145 ha_warning("Failed to connect to the old process socket '%s'\n",
1146 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001147 goto out;
1148 }
Willy Tarreau719e07c2019-12-11 16:29:10 +01001149 strncpy(addr.sun_path, unixsocket, sizeof(addr.sun_path) - 1);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001150 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
1151 addr.sun_family = PF_UNIX;
1152 ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr));
1153 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001154 ha_warning("Failed to connect to the old process socket '%s'\n",
1155 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001156 goto out;
1157 }
Olivier Houchard54740872017-04-06 14:45:14 +02001158 setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001159 iov.iov_base = &fd_nb;
1160 iov.iov_len = sizeof(fd_nb);
1161 msghdr.msg_iov = &iov;
1162 msghdr.msg_iovlen = 1;
1163 send(sock, "_getsocks\n", strlen("_getsocks\n"), 0);
1164 /* First, get the number of file descriptors to be received */
1165 if (recvmsg(sock, &msghdr, MSG_WAITALL) != sizeof(fd_nb)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001166 ha_warning("Failed to get the number of sockets to be transferred !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001167 goto out;
1168 }
1169 if (fd_nb == 0) {
1170 ret = 0;
1171 goto out;
1172 }
Olivier Houchardf143b802017-11-04 15:13:01 +01001173 tmpbuf = malloc(fd_nb * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001174 if (tmpbuf == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001175 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001176 goto out;
1177 }
1178 tmpfd = malloc(fd_nb * sizeof(int));
1179 if (tmpfd == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001180 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001181 goto out;
1182 }
1183 msghdr.msg_control = cmsgbuf;
1184 msghdr.msg_controllen = CMSG_SPACE(sizeof(int)) * MAX_SEND_FD;
Olivier Houchardf143b802017-11-04 15:13:01 +01001185 iov.iov_len = MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001186 do {
1187 int ret3;
1188
1189 iov.iov_base = tmpbuf + curoff;
1190 ret = recvmsg(sock, &msghdr, 0);
1191 if (ret == -1 && errno == EINTR)
1192 continue;
1193 if (ret <= 0)
1194 break;
1195 /* Send an ack to let the sender know we got the sockets
1196 * and it can send some more
1197 */
1198 do {
1199 ret3 = send(sock, &got_fd, sizeof(got_fd), 0);
1200 } while (ret3 == -1 && errno == EINTR);
1201 for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg != NULL;
1202 cmsg = CMSG_NXTHDR(&msghdr, cmsg)) {
1203 if (cmsg->cmsg_level == SOL_SOCKET &&
1204 cmsg->cmsg_type == SCM_RIGHTS) {
1205 size_t totlen = cmsg->cmsg_len -
1206 CMSG_LEN(0);
1207 if (totlen / sizeof(int) + got_fd > fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001208 ha_warning("Got to many sockets !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001209 goto out;
1210 }
1211 /*
1212 * Be paranoid and use memcpy() to avoid any
1213 * potential alignement issue.
1214 */
1215 memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen);
1216 got_fd += totlen / sizeof(int);
1217 }
1218 }
1219 curoff += ret;
1220 } while (got_fd < fd_nb);
1221
1222 if (got_fd != fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001223 ha_warning("We didn't get the expected number of sockets (expecting %d got %d)\n",
1224 fd_nb, got_fd);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001225 goto out;
1226 }
1227 maxoff = curoff;
1228 curoff = 0;
1229 for (i = 0; i < got_fd; i++) {
1230 int fd = tmpfd[i];
1231 socklen_t socklen;
1232 int len;
1233
1234 xfer_sock = calloc(1, sizeof(*xfer_sock));
1235 if (!xfer_sock) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001236 ha_warning("Failed to allocate memory in get_old_sockets() !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001237 break;
1238 }
1239 xfer_sock->fd = -1;
1240
1241 socklen = sizeof(xfer_sock->addr);
1242 if (getsockname(fd, (struct sockaddr *)&xfer_sock->addr, &socklen) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001243 ha_warning("Failed to get socket address\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001244 free(xfer_sock);
Olivier Houchardbe7b1ce2017-07-17 17:25:33 +02001245 xfer_sock = NULL;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001246 continue;
1247 }
1248 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001249 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001250 goto out;
1251 }
1252 len = tmpbuf[curoff++];
1253 if (len > 0) {
1254 /* We have a namespace */
1255 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001256 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001257 goto out;
1258 }
1259 xfer_sock->namespace = malloc(len + 1);
1260 if (!xfer_sock->namespace) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001261 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001262 goto out;
1263 }
1264 memcpy(xfer_sock->namespace, &tmpbuf[curoff], len);
1265 xfer_sock->namespace[len] = 0;
1266 curoff += len;
1267 }
1268 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001269 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001270 goto out;
1271 }
1272 len = tmpbuf[curoff++];
1273 if (len > 0) {
1274 /* We have an interface */
1275 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001276 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001277 goto out;
1278 }
1279 xfer_sock->iface = malloc(len + 1);
1280 if (!xfer_sock->iface) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001281 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001282 goto out;
1283 }
1284 memcpy(xfer_sock->iface, &tmpbuf[curoff], len);
Olivier Houchard33e083c2018-03-15 17:48:49 +01001285 xfer_sock->iface[len] = 0;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001286 curoff += len;
1287 }
1288 if (curoff + sizeof(int) > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001289 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001290 goto out;
1291 }
1292 memcpy(&xfer_sock->options, &tmpbuf[curoff],
1293 sizeof(xfer_sock->options));
1294 curoff += sizeof(xfer_sock->options);
1295
1296 xfer_sock->fd = fd;
1297 if (xfer_sock_list)
1298 xfer_sock_list->prev = xfer_sock;
1299 xfer_sock->next = xfer_sock_list;
1300 xfer_sock->prev = NULL;
1301 xfer_sock_list = xfer_sock;
1302 xfer_sock = NULL;
1303 }
1304
1305 ret2 = 0;
1306out:
1307 /* If we failed midway make sure to close the remaining
1308 * file descriptors
1309 */
1310 if (tmpfd != NULL && i < got_fd) {
1311 for (; i < got_fd; i++) {
1312 close(tmpfd[i]);
1313 }
1314 }
1315 free(tmpbuf);
1316 free(tmpfd);
1317 free(cmsgbuf);
1318 if (sock != -1)
1319 close(sock);
1320 if (xfer_sock) {
1321 free(xfer_sock->namespace);
1322 free(xfer_sock->iface);
1323 if (xfer_sock->fd != -1)
1324 close(xfer_sock->fd);
1325 free(xfer_sock);
1326 }
1327 return (ret2);
1328}
1329
Willy Tarreaubaaee002006-06-26 02:48:02 +02001330/*
William Lallemand73b85e72017-06-01 17:38:51 +02001331 * copy and cleanup the current argv
1332 * Remove the -sf /-st parameters
1333 * Return an allocated copy of argv
1334 */
1335
1336static char **copy_argv(int argc, char **argv)
1337{
1338 char **newargv;
William Lallemand2bf6d622017-06-20 11:20:23 +02001339 int i = 0, j = 0;
William Lallemand73b85e72017-06-01 17:38:51 +02001340
1341 newargv = calloc(argc + 2, sizeof(char *));
1342 if (newargv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001343 ha_warning("Cannot allocate memory\n");
William Lallemand73b85e72017-06-01 17:38:51 +02001344 return NULL;
1345 }
1346
William Lallemand2bf6d622017-06-20 11:20:23 +02001347 while (i < argc) {
1348 /* -sf or -st or -x */
William Lallemand29f690c2018-01-09 23:12:27 +01001349 if (i > 0 && argv[i][0] == '-' &&
1350 ((argv[i][1] == 's' && (argv[i][2] == 'f' || argv[i][2] == 't')) || argv[i][1] == 'x' )) {
William Lallemand2bf6d622017-06-20 11:20:23 +02001351 /* list of pids to finish ('f') or terminate ('t') or unix socket (-x) */
William Lallemand73b85e72017-06-01 17:38:51 +02001352 i++;
1353 while (i < argc && argv[i][0] != '-') {
1354 i++;
1355 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001356 continue;
William Lallemand73b85e72017-06-01 17:38:51 +02001357 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001358
1359 newargv[j++] = argv[i++];
William Lallemand73b85e72017-06-01 17:38:51 +02001360 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001361
William Lallemand73b85e72017-06-01 17:38:51 +02001362 return newargv;
1363}
1364
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001365
1366/* Performs basic random seed initialization. The main issue with this is that
1367 * srandom_r() only takes 32 bits and purposely provides a reproducible sequence,
1368 * which means that there will only be 4 billion possible random sequences once
1369 * srandom() is called, regardless of the internal state. Not calling it is
1370 * even worse as we'll always produce the same randoms sequences. What we do
1371 * here is to create an initial sequence from various entropy sources, hash it
1372 * using SHA1 and keep the resulting 160 bits available globally.
1373 *
1374 * We initialize the current process with the first 32 bits before starting the
1375 * polling loop, where all this will be changed to have process specific and
1376 * thread specific sequences.
Willy Tarreau52bf8392020-03-08 00:42:37 +01001377 *
1378 * Before starting threads, it's still possible to call random() as srandom()
1379 * is initialized from this, but after threads and/or processes are started,
1380 * only ha_random() is expected to be used to guarantee distinct sequences.
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001381 */
1382static void ha_random_boot(char *const *argv)
1383{
1384 unsigned char message[256];
1385 unsigned char *m = message;
1386 struct timeval tv;
1387 blk_SHA_CTX ctx;
1388 unsigned long l;
1389 int fd;
1390 int i;
1391
1392 /* start with current time as pseudo-random seed */
1393 gettimeofday(&tv, NULL);
1394 write_u32(m, tv.tv_sec); m += 4;
1395 write_u32(m, tv.tv_usec); m += 4;
1396
1397 /* PID and PPID add some OS-based randomness */
1398 write_u16(m, getpid()); m += 2;
1399 write_u16(m, getppid()); m += 2;
1400
1401 /* take up to 160 bits bytes from /dev/urandom if available (non-blocking) */
1402 fd = open("/dev/urandom", O_RDONLY);
1403 if (fd >= 0) {
1404 i = read(fd, m, 20);
1405 if (i > 0)
1406 m += i;
1407 close(fd);
1408 }
1409
1410 /* take up to 160 bits bytes from openssl (non-blocking) */
1411#ifdef USE_OPENSSL
1412 if (RAND_bytes(m, 20) == 1)
1413 m += 20;
1414#endif
1415
1416 /* take 160 bits from existing random in case it was already initialized */
1417 for (i = 0; i < 5; i++) {
1418 write_u32(m, random());
1419 m += 4;
1420 }
1421
1422 /* stack address (benefit form operating system's ASLR) */
1423 l = (unsigned long)&m;
1424 memcpy(m, &l, sizeof(l)); m += sizeof(l);
1425
1426 /* argv address (benefit form operating system's ASLR) */
1427 l = (unsigned long)&argv;
1428 memcpy(m, &l, sizeof(l)); m += sizeof(l);
1429
1430 /* use tv_usec again after all the operations above */
1431 gettimeofday(&tv, NULL);
1432 write_u32(m, tv.tv_usec); m += 4;
1433
1434 /*
1435 * At this point, ~84-92 bytes have been used
1436 */
1437
1438 /* finish with the hostname */
1439 strncpy((char *)m, hostname, message + sizeof(message) - m);
1440 m += strlen(hostname);
1441
1442 /* total message length */
1443 l = m - message;
1444
1445 memset(&ctx, 0, sizeof(ctx));
1446 blk_SHA1_Init(&ctx);
1447 blk_SHA1_Update(&ctx, message, l);
1448 blk_SHA1_Final(boot_seed, &ctx);
1449
1450 srandom(read_u32(boot_seed));
Willy Tarreau52bf8392020-03-08 00:42:37 +01001451 ha_random_seed(boot_seed, sizeof(boot_seed));
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001452}
1453
Willy Tarreau5a023f02019-03-01 14:19:31 +01001454/* considers splicing proxies' maxconn, computes the ideal global.maxpipes
1455 * setting, and returns it. It may return -1 meaning "unlimited" if some
1456 * unlimited proxies have been found and the global.maxconn value is not yet
1457 * set. It may also return a value greater than maxconn if it's not yet set.
1458 * Note that a value of zero means there is no need for pipes. -1 is never
1459 * returned if global.maxconn is valid.
1460 */
1461static int compute_ideal_maxpipes()
1462{
1463 struct proxy *cur;
1464 int nbfe = 0, nbbe = 0;
1465 int unlimited = 0;
1466 int pipes;
1467 int max;
1468
1469 for (cur = proxies_list; cur; cur = cur->next) {
1470 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
1471 if (cur->cap & PR_CAP_FE) {
1472 max = cur->maxconn;
1473 nbfe += max;
1474 if (!max) {
1475 unlimited = 1;
1476 break;
1477 }
1478 }
1479 if (cur->cap & PR_CAP_BE) {
1480 max = cur->fullconn ? cur->fullconn : global.maxconn;
1481 nbbe += max;
1482 if (!max) {
1483 unlimited = 1;
1484 break;
1485 }
1486 }
1487 }
1488 }
1489
1490 pipes = MAX(nbfe, nbbe);
1491 if (global.maxconn) {
1492 if (pipes > global.maxconn || unlimited)
1493 pipes = global.maxconn;
1494 } else if (unlimited) {
1495 pipes = -1;
1496 }
1497
1498 return pipes >= 4 ? pipes / 4 : pipes;
1499}
1500
Willy Tarreauac350932019-03-01 15:43:14 +01001501/* considers global.maxsocks, global.maxpipes, async engines, SSL frontends and
1502 * rlimits and computes an ideal maxconn. It's meant to be called only when
1503 * maxsock contains the sum of listening FDs, before it is updated based on
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001504 * maxconn and pipes. If there are not enough FDs left, DEFAULT_MAXCONN (by
1505 * default 100) is returned as it is expected that it will even run on tight
1506 * environments, and will maintain compatibility with previous packages that
1507 * used to rely on this value as the default one. The system will emit a
1508 * warning indicating how many FDs are missing anyway if needed.
Willy Tarreauac350932019-03-01 15:43:14 +01001509 */
1510static int compute_ideal_maxconn()
1511{
1512 int ssl_sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1513 int engine_fds = global.ssl_used_async_engines * ssl_sides;
1514 int pipes = compute_ideal_maxpipes();
Willy Tarreaub1beaa32020-03-06 10:25:31 +01001515 int remain = MAX(rlim_fd_cur_at_boot, rlim_fd_max_at_boot);
Willy Tarreauac350932019-03-01 15:43:14 +01001516 int maxconn;
1517
1518 /* we have to take into account these elements :
1519 * - number of engine_fds, which inflates the number of FD needed per
1520 * connection by this number.
1521 * - number of pipes per connection on average : for the unlimited
1522 * case, this is 0.5 pipe FDs per connection, otherwise it's a
1523 * fixed value of 2*pipes.
1524 * - two FDs per connection
1525 */
1526
1527 /* subtract listeners and checks */
1528 remain -= global.maxsock;
1529
Willy Tarreau3f200852019-03-14 19:13:17 +01001530 /* one epoll_fd/kqueue_fd per thread */
1531 remain -= global.nbthread;
1532
1533 /* one wake-up pipe (2 fd) per thread */
1534 remain -= 2 * global.nbthread;
1535
Willy Tarreauac350932019-03-01 15:43:14 +01001536 /* Fixed pipes values : we only subtract them if they're not larger
1537 * than the remaining FDs because pipes are optional.
1538 */
1539 if (pipes >= 0 && pipes * 2 < remain)
1540 remain -= pipes * 2;
1541
1542 if (pipes < 0) {
1543 /* maxsock = maxconn * 2 + maxconn/4 * 2 + maxconn * engine_fds.
1544 * = maxconn * (2 + 0.5 + engine_fds)
1545 * = maxconn * (4 + 1 + 2*engine_fds) / 2
1546 */
1547 maxconn = 2 * remain / (5 + 2 * engine_fds);
1548 } else {
1549 /* maxsock = maxconn * 2 + maxconn * engine_fds.
1550 * = maxconn * (2 + engine_fds)
1551 */
1552 maxconn = remain / (2 + engine_fds);
1553 }
1554
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001555 return MAX(maxconn, DEFAULT_MAXCONN);
Willy Tarreauac350932019-03-01 15:43:14 +01001556}
1557
Willy Tarreaua409f302020-03-10 17:08:53 +01001558/* computes the estimated maxsock value for the given maxconn based on the
1559 * possibly set global.maxpipes and existing partial global.maxsock. It may
1560 * temporarily change global.maxconn for the time needed to propagate the
1561 * computations, and will reset it.
1562 */
1563static int compute_ideal_maxsock(int maxconn)
1564{
1565 int maxpipes = global.maxpipes;
1566 int maxsock = global.maxsock;
1567
1568
1569 if (!maxpipes) {
1570 int old_maxconn = global.maxconn;
1571
1572 global.maxconn = maxconn;
1573 maxpipes = compute_ideal_maxpipes();
1574 global.maxconn = old_maxconn;
1575 }
1576
1577 maxsock += maxconn * 2; /* each connection needs two sockets */
1578 maxsock += maxpipes * 2; /* each pipe needs two FDs */
1579 maxsock += global.nbthread; /* one epoll_fd/kqueue_fd per thread */
1580 maxsock += 2 * global.nbthread; /* one wake-up pipe (2 fd) per thread */
1581
1582 /* compute fd used by async engines */
1583 if (global.ssl_used_async_engines) {
1584 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1585
1586 maxsock += maxconn * sides * global.ssl_used_async_engines;
1587 }
1588 return maxsock;
1589}
1590
William Lallemand73b85e72017-06-01 17:38:51 +02001591/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001592 * This function initializes all the necessary variables. It only returns
1593 * if everything is OK. If something fails, it exits.
1594 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001595static void init(int argc, char **argv)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001596{
Willy Tarreaubaaee002006-06-26 02:48:02 +02001597 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001598 char *tmp;
1599 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +02001600 int err_code = 0;
Maxime de Roucy0f503922016-05-13 23:52:55 +02001601 char *err_msg = NULL;
Willy Tarreau477ecd82010-01-03 21:12:30 +01001602 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +00001603 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +02001604 char *change_dir = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001605 struct proxy *px;
Willy Tarreaue6945732016-12-21 19:57:00 +01001606 struct post_check_fct *pcf;
Willy Tarreauac350932019-03-01 15:43:14 +01001607 int ideal_maxconn;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001608
Christopher Faulete3a5e352017-10-24 13:53:54 +02001609 global.mode = MODE_STARTING;
William Lallemand73b85e72017-06-01 17:38:51 +02001610 next_argv = copy_argv(argc, argv);
1611
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001612 if (!init_trash_buffers(1)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001613 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet748919a2017-07-26 14:59:46 +02001614 exit(1);
1615 }
David du Colombier7af46052012-05-16 14:16:48 +02001616
Emeric Brun2b920a12010-09-23 18:30:22 +02001617 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
1618 * the string in case of truncation, and at least FreeBSD appears not to do
1619 * it.
1620 */
1621 memset(hostname, 0, sizeof(hostname));
1622 gethostname(hostname, sizeof(hostname) - 1);
1623 memset(localpeer, 0, sizeof(localpeer));
1624 memcpy(localpeer, hostname, (sizeof(hostname) > sizeof(localpeer) ? sizeof(localpeer) : sizeof(hostname)) - 1);
William Lallemanddaf4cd22018-04-17 16:46:13 +02001625 setenv("HAPROXY_LOCALPEER", localpeer, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02001626
William Lallemand24c928c2020-01-14 17:58:18 +01001627 /* we were in mworker mode, we should restart in mworker mode */
1628 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL)
1629 global.mode |= MODE_MWORKER;
1630
Willy Tarreaubaaee002006-06-26 02:48:02 +02001631 /*
1632 * Initialize the previously static variables.
1633 */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001634
Willy Tarreau173d9952018-01-26 21:48:23 +01001635 totalconn = actconn = listeners = stopping = 0;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001636 killed = 0;
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001637
Willy Tarreaubaaee002006-06-26 02:48:02 +02001638
1639#ifdef HAPROXY_MEMMAX
Willy Tarreau70060452015-12-14 12:46:07 +01001640 global.rlimit_memmax_all = HAPROXY_MEMMAX;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001641#endif
1642
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001643 tzset();
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001644 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001645 start_date = now;
1646
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001647 ha_random_boot(argv);
Willy Tarreau84310e22014-02-14 11:59:04 +01001648
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001649 if (init_acl() != 0)
1650 exit(1);
Willy Tarreaub6b3df32018-11-26 16:31:20 +01001651
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001652 /* Initialise lua. */
1653 hlua_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001654
Christopher Fauletff2613e2016-11-09 11:36:17 +01001655 /* Initialize process vars */
1656 vars_init(&global.vars, SCOPE_PROC);
1657
Willy Tarreau43b78992009-01-25 15:42:27 +01001658 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaue5733232019-05-22 19:24:06 +02001659#if defined(USE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001660 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001661#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001662#if defined(USE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001663 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001664#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001665#if defined(USE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +01001666 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001667#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001668#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001669 global.tune.options |= GTUNE_USE_EVPORTS;
1670#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001671#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001672 global.tune.options |= GTUNE_USE_SPLICE;
1673#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001674#if defined(USE_GETADDRINFO)
1675 global.tune.options |= GTUNE_USE_GAI;
1676#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001677#if defined(SO_REUSEPORT)
1678 global.tune.options |= GTUNE_USE_REUSEPORT;
1679#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02001680
1681 pid = getpid();
1682 progname = *argv;
1683 while ((tmp = strchr(progname, '/')) != NULL)
1684 progname = tmp + 1;
1685
Kevinm48936af2010-12-22 16:08:21 +00001686 /* the process name is used for the logs only */
Dragan Dosen43885c72015-10-01 13:18:13 +02001687 chunk_initstr(&global.log_tag, strdup(progname));
Kevinm48936af2010-12-22 16:08:21 +00001688
Willy Tarreaubaaee002006-06-26 02:48:02 +02001689 argc--; argv++;
1690 while (argc > 0) {
1691 char *flag;
1692
1693 if (**argv == '-') {
1694 flag = *argv+1;
1695
1696 /* 1 arg */
1697 if (*flag == 'v') {
1698 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +01001699 if (flag[1] == 'v') /* -vv */
1700 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001701 exit(0);
1702 }
Willy Tarreaue5733232019-05-22 19:24:06 +02001703#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001704 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +01001705 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001706#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001707#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001708 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +01001709 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001710#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001711#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001712 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +01001713 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001714#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001715#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001716 else if (*flag == 'd' && flag[1] == 'v')
1717 global.tune.options &= ~GTUNE_USE_EVPORTS;
1718#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001719#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001720 else if (*flag == 'd' && flag[1] == 'S')
1721 global.tune.options &= ~GTUNE_USE_SPLICE;
1722#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001723#if defined(USE_GETADDRINFO)
1724 else if (*flag == 'd' && flag[1] == 'G')
1725 global.tune.options &= ~GTUNE_USE_GAI;
1726#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001727#if defined(SO_REUSEPORT)
1728 else if (*flag == 'd' && flag[1] == 'R')
1729 global.tune.options &= ~GTUNE_USE_REUSEPORT;
1730#endif
Emeric Brun850efd52014-01-29 12:24:34 +01001731 else if (*flag == 'd' && flag[1] == 'V')
1732 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001733 else if (*flag == 'V')
1734 arg_mode |= MODE_VERBOSE;
1735 else if (*flag == 'd' && flag[1] == 'b')
1736 arg_mode |= MODE_FOREGROUND;
Willy Tarreau6e064432012-05-08 15:40:42 +02001737 else if (*flag == 'd' && flag[1] == 'M')
1738 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreau3eed10e2016-11-07 21:03:16 +01001739 else if (*flag == 'd' && flag[1] == 'r')
1740 global.tune.options |= GTUNE_RESOLVE_DONTFAIL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001741 else if (*flag == 'd')
1742 arg_mode |= MODE_DEBUG;
1743 else if (*flag == 'c')
1744 arg_mode |= MODE_CHECK;
William Lallemand095ba4c2017-06-01 17:38:50 +02001745 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +02001746 arg_mode |= MODE_DAEMON;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001747 else if (*flag == 'W' && flag[1] == 's') {
Lukas Tribusf46bf952017-11-21 12:39:34 +01001748 arg_mode |= MODE_MWORKER | MODE_FOREGROUND;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001749#if defined(USE_SYSTEMD)
1750 global.tune.options |= GTUNE_USE_SYSTEMD;
1751#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001752 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 +01001753 usage(progname);
1754#endif
1755 }
William Lallemand095ba4c2017-06-01 17:38:50 +02001756 else if (*flag == 'W')
1757 arg_mode |= MODE_MWORKER;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001758 else if (*flag == 'q')
1759 arg_mode |= MODE_QUIET;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001760 else if (*flag == 'x') {
William Lallemand45eff442017-06-19 15:57:55 +02001761 if (argc <= 1 || argv[1][0] == '-') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001762 ha_alert("Unix socket path expected with the -x flag\n\n");
William Lallemand45eff442017-06-19 15:57:55 +02001763 usage(progname);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001764 }
William Lallemand4fc09692017-06-19 16:37:19 +02001765 if (old_unixsocket)
Christopher Faulet767a84b2017-11-24 16:50:31 +01001766 ha_warning("-x option already set, overwriting the value\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001767 old_unixsocket = argv[1];
William Lallemand4fc09692017-06-19 16:37:19 +02001768
Olivier Houchardf73629d2017-04-05 22:33:04 +02001769 argv++;
1770 argc--;
1771 }
William Lallemande7361152018-10-26 14:47:36 +02001772 else if (*flag == 'S') {
1773 struct wordlist *c;
1774
1775 if (argc <= 1 || argv[1][0] == '-') {
1776 ha_alert("Socket and optional bind parameters expected with the -S flag\n");
1777 usage(progname);
1778 }
1779 if ((c = malloc(sizeof(*c))) == NULL || (c->s = strdup(argv[1])) == NULL) {
1780 ha_alert("Cannot allocate memory\n");
1781 exit(EXIT_FAILURE);
1782 }
1783 LIST_ADD(&mworker_cli_conf, &c->list);
1784
1785 argv++;
1786 argc--;
1787 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001788 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
1789 /* list of pids to finish ('f') or terminate ('t') */
1790
1791 if (flag[1] == 'f')
1792 oldpids_sig = SIGUSR1; /* finish then exit */
1793 else
1794 oldpids_sig = SIGTERM; /* terminate immediately */
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001795 while (argc > 1 && argv[1][0] != '-') {
Chris Lane236062f2018-02-05 23:15:44 +00001796 char * endptr = NULL;
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001797 oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int));
1798 if (!oldpids) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001799 ha_alert("Cannot allocate old pid : out of memory.\n");
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001800 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001801 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001802 argc--; argv++;
Chris Lane236062f2018-02-05 23:15:44 +00001803 errno = 0;
1804 oldpids[nb_oldpids] = strtol(*argv, &endptr, 10);
1805 if (errno) {
1806 ha_alert("-%2s option: failed to parse {%s}: %s\n",
1807 flag,
1808 *argv, strerror(errno));
1809 exit(1);
1810 } else if (endptr && strlen(endptr)) {
Willy Tarreau90807112020-02-25 08:16:33 +01001811 while (isspace((unsigned char)*endptr)) endptr++;
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001812 if (*endptr != 0) {
Chris Lane236062f2018-02-05 23:15:44 +00001813 ha_alert("-%2s option: some bytes unconsumed in PID list {%s}\n",
1814 flag, endptr);
1815 exit(1);
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001816 }
Chris Lane236062f2018-02-05 23:15:44 +00001817 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001818 if (oldpids[nb_oldpids] <= 0)
1819 usage(progname);
1820 nb_oldpids++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001821 }
1822 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001823 else if (flag[0] == '-' && flag[1] == 0) { /* "--" */
1824 /* now that's a cfgfile list */
1825 argv++; argc--;
1826 while (argc > 0) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02001827 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001828 ha_alert("Cannot load configuration file/directory %s : %s\n",
1829 *argv,
1830 err_msg);
Willy Tarreaua088d312015-10-08 11:58:48 +02001831 exit(1);
1832 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001833 argv++; argc--;
1834 }
1835 break;
1836 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001837 else { /* >=2 args */
1838 argv++; argc--;
1839 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001840 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001841
1842 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +02001843 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001844 case 'n' : cfg_maxconn = atol(*argv); break;
Willy Tarreau70060452015-12-14 12:46:07 +01001845 case 'm' : global.rlimit_memmax_all = atol(*argv); break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001846 case 'N' : cfg_maxpconn = atol(*argv); break;
William Lallemanddaf4cd22018-04-17 16:46:13 +02001847 case 'L' :
1848 strncpy(localpeer, *argv, sizeof(localpeer) - 1);
1849 setenv("HAPROXY_LOCALPEER", localpeer, 1);
1850 break;
Willy Tarreau5d01a632009-06-22 16:02:30 +02001851 case 'f' :
Maxime de Roucy0f503922016-05-13 23:52:55 +02001852 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001853 ha_alert("Cannot load configuration file/directory %s : %s\n",
1854 *argv,
1855 err_msg);
Willy Tarreau5d01a632009-06-22 16:02:30 +02001856 exit(1);
1857 }
Willy Tarreau5d01a632009-06-22 16:02:30 +02001858 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001859 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001860 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001861 }
1862 }
1863 }
1864 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001865 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001866 argv++; argc--;
1867 }
1868
Christopher Faulete3a5e352017-10-24 13:53:54 +02001869 global.mode |= (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE
1870 | MODE_QUIET | MODE_CHECK | MODE_DEBUG));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001871
William Lallemand944e6192018-11-21 15:48:31 +01001872 if (getenv("HAPROXY_MWORKER_WAIT_ONLY")) {
William Lallemandcb11fd22017-06-01 17:38:52 +02001873 unsetenv("HAPROXY_MWORKER_WAIT_ONLY");
William Lallemand944e6192018-11-21 15:48:31 +01001874 global.mode |= MODE_MWORKER_WAIT;
1875 global.mode &= ~MODE_MWORKER;
William Lallemandcb11fd22017-06-01 17:38:52 +02001876 }
1877
1878 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) {
1879 atexit_flag = 1;
1880 atexit(reexec_on_failure);
1881 }
1882
Willy Tarreau576132e2011-09-10 19:26:56 +02001883 if (change_dir && chdir(change_dir) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001884 ha_alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
Willy Tarreau576132e2011-09-10 19:26:56 +02001885 exit(1);
1886 }
1887
Willy Tarreaubaaee002006-06-26 02:48:02 +02001888 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001889
1890 init_default_instance();
1891
William Lallemand944e6192018-11-21 15:48:31 +01001892 /* in wait mode, we don't try to read the configuration files */
1893 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand7b302d82019-05-20 11:15:37 +02001894 struct buffer *trash = get_trash_chunk();
Willy Tarreauc4382422009-12-06 13:10:44 +01001895
William Lallemand944e6192018-11-21 15:48:31 +01001896 /* handle cfgfiles that are actually directories */
1897 cfgfiles_expand_directories();
1898
1899 if (LIST_ISEMPTY(&cfg_cfgfiles))
1900 usage(progname);
1901
1902
1903 list_for_each_entry(wl, &cfg_cfgfiles, list) {
1904 int ret;
1905
William Lallemand7b302d82019-05-20 11:15:37 +02001906 if (trash->data)
1907 chunk_appendf(trash, ";");
1908
1909 chunk_appendf(trash, "%s", wl->s);
1910
William Lallemand944e6192018-11-21 15:48:31 +01001911 ret = readcfgfile(wl->s);
1912 if (ret == -1) {
1913 ha_alert("Could not open configuration file %s : %s\n",
1914 wl->s, strerror(errno));
1915 exit(1);
1916 }
1917 if (ret & (ERR_ABORT|ERR_FATAL))
1918 ha_alert("Error(s) found in configuration file : %s\n", wl->s);
1919 err_code |= ret;
1920 if (err_code & ERR_ABORT)
1921 exit(1);
Willy Tarreauc4382422009-12-06 13:10:44 +01001922 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001923
William Lallemand944e6192018-11-21 15:48:31 +01001924 /* do not try to resolve arguments nor to spot inconsistencies when
1925 * the configuration contains fatal errors caused by files not found
1926 * or failed memory allocations.
1927 */
1928 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1929 ha_alert("Fatal errors found in configuration.\n");
1930 exit(1);
1931 }
William Lallemand7b302d82019-05-20 11:15:37 +02001932 if (trash->data)
1933 setenv("HAPROXY_CFGFILES", trash->area, 1);
1934
Willy Tarreaub83dc3d2017-04-19 11:24:07 +02001935 }
William Lallemandce83b4a2018-10-26 14:47:30 +02001936 if (global.mode & MODE_MWORKER) {
1937 int proc;
William Lallemand16dd1b32018-11-19 18:46:18 +01001938 struct mworker_proc *tmproc;
1939
William Lallemand482f9a92019-04-12 16:15:00 +02001940 setenv("HAPROXY_MWORKER", "1", 1);
1941
William Lallemand16dd1b32018-11-19 18:46:18 +01001942 if (getenv("HAPROXY_MWORKER_REEXEC") == NULL) {
1943
William Lallemandf3a86832019-04-01 11:29:58 +02001944 tmproc = calloc(1, sizeof(*tmproc));
William Lallemand16dd1b32018-11-19 18:46:18 +01001945 if (!tmproc) {
1946 ha_alert("Cannot allocate process structures.\n");
1947 exit(EXIT_FAILURE);
1948 }
William Lallemand8f7069a2019-04-12 16:09:23 +02001949 tmproc->options |= PROC_O_TYPE_MASTER; /* master */
William Lallemand16dd1b32018-11-19 18:46:18 +01001950 tmproc->reloads = 0;
1951 tmproc->relative_pid = 0;
1952 tmproc->pid = pid;
1953 tmproc->timestamp = start_date.tv_sec;
1954 tmproc->ipc_fd[0] = -1;
1955 tmproc->ipc_fd[1] = -1;
1956
1957 proc_self = tmproc;
1958
1959 LIST_ADDQ(&proc_list, &tmproc->list);
1960 }
William Lallemandce83b4a2018-10-26 14:47:30 +02001961
1962 for (proc = 0; proc < global.nbproc; proc++) {
William Lallemandce83b4a2018-10-26 14:47:30 +02001963
William Lallemandf3a86832019-04-01 11:29:58 +02001964 tmproc = calloc(1, sizeof(*tmproc));
William Lallemandce83b4a2018-10-26 14:47:30 +02001965 if (!tmproc) {
1966 ha_alert("Cannot allocate process structures.\n");
1967 exit(EXIT_FAILURE);
1968 }
1969
William Lallemand8f7069a2019-04-12 16:09:23 +02001970 tmproc->options |= PROC_O_TYPE_WORKER; /* worker */
William Lallemandce83b4a2018-10-26 14:47:30 +02001971 tmproc->pid = -1;
1972 tmproc->reloads = 0;
William Lallemande3683302018-11-19 18:46:17 +01001973 tmproc->timestamp = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02001974 tmproc->relative_pid = 1 + proc;
William Lallemand550db6d2018-11-06 17:37:12 +01001975 tmproc->ipc_fd[0] = -1;
1976 tmproc->ipc_fd[1] = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02001977
1978 if (mworker_cli_sockpair_new(tmproc, proc) < 0) {
1979 exit(EXIT_FAILURE);
1980 }
1981
1982 LIST_ADDQ(&proc_list, &tmproc->list);
1983 }
William Lallemand944e6192018-11-21 15:48:31 +01001984 }
1985 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
1986 struct wordlist *it, *c;
1987
William Lallemand1b663612018-10-26 14:47:33 +02001988 mworker_env_to_proc_list(); /* get the info of the children in the env */
William Lallemand8a022572018-10-26 14:47:35 +02001989
William Lallemande7361152018-10-26 14:47:36 +02001990
William Lallemand550db6d2018-11-06 17:37:12 +01001991 if (!LIST_ISEMPTY(&mworker_cli_conf)) {
William Lallemande7361152018-10-26 14:47:36 +02001992
William Lallemand550db6d2018-11-06 17:37:12 +01001993 if (mworker_cli_proxy_create() < 0) {
William Lallemande7361152018-10-26 14:47:36 +02001994 ha_alert("Can't create the master's CLI.\n");
1995 exit(EXIT_FAILURE);
1996 }
William Lallemande7361152018-10-26 14:47:36 +02001997
William Lallemand550db6d2018-11-06 17:37:12 +01001998 list_for_each_entry_safe(c, it, &mworker_cli_conf, list) {
1999
2000 if (mworker_cli_proxy_new_listener(c->s) < 0) {
2001 ha_alert("Can't create the master's CLI.\n");
2002 exit(EXIT_FAILURE);
2003 }
2004 LIST_DEL(&c->list);
2005 free(c->s);
2006 free(c);
2007 }
2008 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002009 }
2010
Willy Tarreaubb925012009-07-23 13:36:36 +02002011 err_code |= check_config_validity();
Christopher Fauletc1692962019-08-12 09:51:07 +02002012 for (px = proxies_list; px; px = px->next) {
2013 struct server *srv;
2014 struct post_proxy_check_fct *ppcf;
2015 struct post_server_check_fct *pscf;
2016
2017 list_for_each_entry(pscf, &post_server_check_list, list) {
2018 for (srv = px->srv; srv; srv = srv->next)
2019 err_code |= pscf->fct(srv);
2020 }
2021 list_for_each_entry(ppcf, &post_proxy_check_list, list)
2022 err_code |= ppcf->fct(px);
2023 }
Willy Tarreaubb925012009-07-23 13:36:36 +02002024 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002025 ha_alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002026 exit(1);
2027 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002028
Carl Henrik Lundef91ac192020-02-27 16:45:50 +01002029 err_code |= pattern_finalize_config();
2030 if (err_code & (ERR_ABORT|ERR_FATAL)) {
2031 ha_alert("Failed to finalize pattern config.\n");
2032 exit(1);
2033 }
Willy Tarreau0f936722019-04-11 14:47:08 +02002034
Willy Tarreau70060452015-12-14 12:46:07 +01002035 /* recompute the amount of per-process memory depending on nbproc and
2036 * the shared SSL cache size (allowed to exist in all processes).
2037 */
2038 if (global.rlimit_memmax_all) {
2039#if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE)
2040 int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL;
2041
2042 global.rlimit_memmax =
2043 ((((int64_t)global.rlimit_memmax_all * 1048576LL) -
2044 ssl_cache_bytes) / global.nbproc +
2045 ssl_cache_bytes + 1048575LL) / 1048576LL;
2046#else
2047 global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc;
2048#endif
2049 }
2050
Willy Tarreaue5733232019-05-22 19:24:06 +02002051#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002052 err_code |= netns_init();
2053 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002054 ha_alert("Failed to initialize namespace support.\n");
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002055 exit(1);
2056 }
2057#endif
2058
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01002059 /* Apply server states */
2060 apply_server_state();
2061
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002062 for (px = proxies_list; px; px = px->next)
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01002063 srv_compute_all_admin_states(px);
2064
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01002065 /* Apply servers' configured address */
2066 err_code |= srv_init_addr();
2067 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002068 ha_alert("Failed to initialize server(s) addr.\n");
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01002069 exit(1);
2070 }
2071
Willy Tarreaubaaee002006-06-26 02:48:02 +02002072 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002073 struct peers *pr;
2074 struct proxy *px;
2075
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002076 for (pr = cfg_peers; pr; pr = pr->next)
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002077 if (pr->peers_fe)
2078 break;
2079
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002080 for (px = proxies_list; px; px = px->next)
Willy Tarreau4348fad2012-09-20 16:48:07 +02002081 if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002082 break;
2083
2084 if (pr || px) {
2085 /* At least one peer or one listener has been found */
2086 qfprintf(stdout, "Configuration file is valid\n");
2087 exit(0);
2088 }
2089 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
2090 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002091 }
Willy Tarreaue9b26022011-08-01 20:57:55 +02002092
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002093 /* now we know the buffer size, we can initialize the channels and buffers */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002094 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +02002095
Willy Tarreaue6945732016-12-21 19:57:00 +01002096 list_for_each_entry(pcf, &post_check_list, list) {
2097 err_code |= pcf->fct();
2098 if (err_code & (ERR_ABORT|ERR_FATAL))
2099 exit(1);
2100 }
2101
Willy Tarreaubaaee002006-06-26 02:48:02 +02002102 if (cfg_maxconn > 0)
2103 global.maxconn = cfg_maxconn;
2104
Willy Tarreau8d687d82019-03-01 09:39:42 +01002105 if (global.stats_fe)
2106 global.maxsock += global.stats_fe->maxconn;
2107
2108 if (cfg_peers) {
2109 /* peers also need to bypass global maxconn */
2110 struct peers *p = cfg_peers;
2111
2112 for (p = cfg_peers; p; p = p->next)
2113 if (p->peers_fe)
2114 global.maxsock += p->peers_fe->maxconn;
2115 }
2116
Willy Tarreaubaaee002006-06-26 02:48:02 +02002117 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +02002118 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002119 global.pidfile = strdup(cfg_pidfile);
2120 }
2121
Willy Tarreaud0256482015-01-15 21:45:22 +01002122 /* Now we want to compute the maxconn and possibly maxsslconn values.
Willy Tarreauac350932019-03-01 15:43:14 +01002123 * It's a bit tricky. Maxconn defaults to the pre-computed value based
2124 * on rlim_fd_cur and the number of FDs in use due to the configuration,
2125 * and maxsslconn defaults to DEFAULT_MAXSSLCONN. On top of that we can
2126 * enforce a lower limit based on memmax.
Willy Tarreaud0256482015-01-15 21:45:22 +01002127 *
2128 * If memmax is set, then it depends on which values are set. If
2129 * maxsslconn is set, we use memmax to determine how many cleartext
2130 * connections may be added, and set maxconn to the sum of the two.
2131 * If maxconn is set and not maxsslconn, maxsslconn is computed from
2132 * the remaining amount of memory between memmax and the cleartext
2133 * connections. If neither are set, then it is considered that all
2134 * connections are SSL-capable, and maxconn is computed based on this,
2135 * then maxsslconn accordingly. We need to know if SSL is used on the
2136 * frontends, backends, or both, because when it's used on both sides,
2137 * we need twice the value for maxsslconn, but we only count the
2138 * handshake once since it is not performed on the two sides at the
2139 * same time (frontend-side is terminated before backend-side begins).
2140 * The SSL stack is supposed to have filled ssl_session_cost and
Willy Tarreau474b96a2015-01-28 19:03:21 +01002141 * ssl_handshake_cost during its initialization. In any case, if
2142 * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for
2143 * maxconn in order to protect the system.
Willy Tarreaud0256482015-01-15 21:45:22 +01002144 */
Willy Tarreauac350932019-03-01 15:43:14 +01002145 ideal_maxconn = compute_ideal_maxconn();
2146
Willy Tarreaud0256482015-01-15 21:45:22 +01002147 if (!global.rlimit_memmax) {
2148 if (global.maxconn == 0) {
Willy Tarreauac350932019-03-01 15:43:14 +01002149 global.maxconn = ideal_maxconn;
Willy Tarreaud0256482015-01-15 21:45:22 +01002150 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2151 fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn);
2152 }
2153 }
2154#ifdef USE_OPENSSL
2155 else if (!global.maxconn && !global.maxsslconn &&
2156 (global.ssl_used_frontend || global.ssl_used_backend)) {
2157 /* memmax is set, compute everything automatically. Here we want
2158 * to ensure that all SSL connections will be served. We take
2159 * care of the number of sides where SSL is used, and consider
2160 * the worst case : SSL used on both sides and doing a handshake
2161 * simultaneously. Note that we can't have more than maxconn
2162 * handshakes at a time by definition, so for the worst case of
2163 * two SSL conns per connection, we count a single handshake.
2164 */
2165 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2166 int64_t mem = global.rlimit_memmax * 1048576ULL;
2167
2168 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2169 mem -= global.maxzlibmem;
2170 mem = mem * MEM_USABLE_RATIO;
2171
2172 global.maxconn = mem /
Willy Tarreau87b09662015-04-03 00:22:06 +02002173 ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream
Willy Tarreaud0256482015-01-15 21:45:22 +01002174 sides * global.ssl_session_max_cost + // SSL buffers, one per side
2175 global.ssl_handshake_max_cost); // 1 handshake per connection max
2176
Willy Tarreauac350932019-03-01 15:43:14 +01002177 global.maxconn = MIN(global.maxconn, ideal_maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01002178 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01002179#ifdef SYSTEM_MAXCONN
Willy Tarreauca783d42019-03-13 10:03:07 +01002180 if (global.maxconn > SYSTEM_MAXCONN)
2181 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01002182#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01002183 global.maxsslconn = sides * global.maxconn;
2184 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2185 fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n",
2186 global.maxconn, global.maxsslconn);
2187 }
2188 else if (!global.maxsslconn &&
2189 (global.ssl_used_frontend || global.ssl_used_backend)) {
2190 /* memmax and maxconn are known, compute maxsslconn automatically.
2191 * maxsslconn being forced, we don't know how many of it will be
2192 * on each side if both sides are being used. The worst case is
2193 * when all connections use only one SSL instance because
2194 * handshakes may be on two sides at the same time.
2195 */
2196 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2197 int64_t mem = global.rlimit_memmax * 1048576ULL;
2198 int64_t sslmem;
2199
2200 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2201 mem -= global.maxzlibmem;
2202 mem = mem * MEM_USABLE_RATIO;
2203
Willy Tarreau87b09662015-04-03 00:22:06 +02002204 sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01002205 global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost);
2206 global.maxsslconn = round_2dig(global.maxsslconn);
2207
2208 if (sslmem <= 0 || global.maxsslconn < sides) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002209 ha_alert("Cannot compute the automatic maxsslconn because global.maxconn is already too "
2210 "high for the global.memmax value (%d MB). The absolute maximum possible value "
2211 "without SSL is %d, but %d was found and SSL is in use.\n",
2212 global.rlimit_memmax,
2213 (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)),
2214 global.maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01002215 exit(1);
2216 }
2217
2218 if (global.maxsslconn > sides * global.maxconn)
2219 global.maxsslconn = sides * global.maxconn;
2220
2221 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2222 fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn);
2223 }
2224#endif
2225 else if (!global.maxconn) {
2226 /* memmax and maxsslconn are known/unused, compute maxconn automatically */
2227 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2228 int64_t mem = global.rlimit_memmax * 1048576ULL;
2229 int64_t clearmem;
2230
2231 if (global.ssl_used_frontend || global.ssl_used_backend)
2232 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2233
2234 mem -= global.maxzlibmem;
2235 mem = mem * MEM_USABLE_RATIO;
2236
2237 clearmem = mem;
2238 if (sides)
2239 clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn;
2240
Willy Tarreau87b09662015-04-03 00:22:06 +02002241 global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreauac350932019-03-01 15:43:14 +01002242 global.maxconn = MIN(global.maxconn, ideal_maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01002243 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01002244#ifdef SYSTEM_MAXCONN
Willy Tarreauca783d42019-03-13 10:03:07 +01002245 if (global.maxconn > SYSTEM_MAXCONN)
2246 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01002247#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01002248
2249 if (clearmem <= 0 || !global.maxconn) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002250 ha_alert("Cannot compute the automatic maxconn because global.maxsslconn is already too "
2251 "high for the global.memmax value (%d MB). The absolute maximum possible value "
2252 "is %d, but %d was found.\n",
2253 global.rlimit_memmax,
2254 (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)),
2255 global.maxsslconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01002256 exit(1);
2257 }
2258
2259 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2260 if (sides && global.maxsslconn > sides * global.maxconn) {
2261 fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn "
2262 "to be limited to %d. Better reduce global.maxsslconn to get more "
2263 "room for extra connections.\n", global.maxsslconn, global.maxconn);
2264 }
2265 fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn);
2266 }
Willy Tarreau66aa61f2009-01-18 21:44:07 +01002267 }
2268
Willy Tarreaua409f302020-03-10 17:08:53 +01002269 global.maxsock = compute_ideal_maxsock(global.maxconn);
2270 global.hardmaxconn = global.maxconn;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002271
Olivier Houchard88698d92019-04-16 19:07:22 +02002272 /* update connection pool thresholds */
2273 global.tune.pool_low_count = ((long long)global.maxsock * global.tune.pool_low_ratio + 99) / 100;
2274 global.tune.pool_high_count = ((long long)global.maxsock * global.tune.pool_high_ratio + 99) / 100;
2275
Willy Tarreauc8d5b952019-02-27 17:25:52 +01002276 proxy_adjust_all_maxconn();
2277
Willy Tarreau1db37712007-06-03 17:16:49 +02002278 if (global.tune.maxpollevents <= 0)
2279 global.tune.maxpollevents = MAX_POLL_EVENTS;
2280
Olivier Houchard1599b802018-05-24 18:59:04 +02002281 if (global.tune.runqueue_depth <= 0)
2282 global.tune.runqueue_depth = RUNQUEUE_DEPTH;
2283
Willy Tarreau6f4a82c2009-03-21 20:43:57 +01002284 if (global.tune.recv_enough == 0)
2285 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
2286
Willy Tarreau27a674e2009-08-17 07:23:33 +02002287 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
2288 global.tune.maxrewrite = global.tune.bufsize / 2;
2289
Willy Tarreaubaaee002006-06-26 02:48:02 +02002290 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
2291 /* command line debug mode inhibits configuration mode */
William Lallemand095ba4c2017-06-01 17:38:50 +02002292 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002293 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
2294 }
2295
William Lallemand095ba4c2017-06-01 17:38:50 +02002296 if (arg_mode & MODE_DAEMON) {
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002297 /* command line daemon mode inhibits foreground and debug modes mode */
2298 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
William Lallemand095ba4c2017-06-01 17:38:50 +02002299 global.mode |= arg_mode & MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002300 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002301
2302 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002303
William Lallemand095ba4c2017-06-01 17:38:50 +02002304 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002305 ha_warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
William Lallemand095ba4c2017-06-01 17:38:50 +02002306 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002307 }
2308
William Lallemand095ba4c2017-06-01 17:38:50 +02002309 if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002310 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
Christopher Faulet767a84b2017-11-24 16:50:31 +01002311 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 +02002312 global.nbproc = 1;
2313 }
2314
2315 if (global.nbproc < 1)
2316 global.nbproc = 1;
2317
Christopher Fauletbe0faa22017-08-29 15:37:10 +02002318 if (global.nbthread < 1)
2319 global.nbthread = 1;
2320
Christopher Faulet3ef26392017-08-29 16:46:57 +02002321 /* Realloc trash buffers because global.tune.bufsize may have changed */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002322 if (!init_trash_buffers(0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002323 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet3ef26392017-08-29 16:46:57 +02002324 exit(1);
2325 }
2326
Christopher Faulet96d44832017-11-14 22:02:30 +01002327 if (!init_log_buffers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002328 ha_alert("failed to initialize log buffers.\n");
Christopher Faulet96d44832017-11-14 22:02:30 +01002329 exit(1);
2330 }
2331
Willy Tarreauef1d1f82007-04-16 00:25:25 +02002332 /*
2333 * Note: we could register external pollers here.
2334 * Built-in pollers have been registered before main().
2335 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02002336
Willy Tarreau43b78992009-01-25 15:42:27 +01002337 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +02002338 disable_poller("kqueue");
2339
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00002340 if (!(global.tune.options & GTUNE_USE_EVPORTS))
2341 disable_poller("evports");
2342
Willy Tarreau43b78992009-01-25 15:42:27 +01002343 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002344 disable_poller("epoll");
2345
Willy Tarreau43b78992009-01-25 15:42:27 +01002346 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002347 disable_poller("poll");
2348
Willy Tarreau43b78992009-01-25 15:42:27 +01002349 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002350 disable_poller("select");
2351
2352 /* Note: we could disable any poller by name here */
2353
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002354 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02002355 list_pollers(stderr);
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002356 fprintf(stderr, "\n");
2357 list_filters(stderr);
2358 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002359
Willy Tarreau4f60f162007-04-08 16:39:58 +02002360 if (!init_pollers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002361 ha_alert("No polling mechanism available.\n"
2362 " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n"
2363 " is too low on this platform to support maxconn and the number of listeners\n"
2364 " and servers. You should rebuild haproxy specifying your system using TARGET=\n"
2365 " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n"
2366 " global maxconn setting to accommodate the system's limitation. For reference,\n"
2367 " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n"
2368 " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n"
2369 " check build settings using 'haproxy -vv'.\n\n",
2370 FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002371 exit(1);
2372 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002373 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2374 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002375 }
2376
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002377 if (!global.node)
2378 global.node = strdup(hostname);
2379
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01002380 if (!hlua_post_init())
2381 exit(1);
Thomas Holmes6abded42015-05-12 16:23:58 +01002382
Maxime de Roucy0f503922016-05-13 23:52:55 +02002383 free(err_msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002384}
2385
Simon Horman6fb82592011-07-15 13:14:11 +09002386static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +09002387{
Simon Hormanac821422011-07-15 13:14:09 +09002388 struct acl_term_suite *suite, *suiteb;
2389 struct acl_term *term, *termb;
2390
Simon Horman6fb82592011-07-15 13:14:11 +09002391 if (!cond)
2392 return;
2393
2394 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
2395 list_for_each_entry_safe(term, termb, &suite->terms, list) {
2396 LIST_DEL(&term->list);
2397 free(term);
Simon Hormanac821422011-07-15 13:14:09 +09002398 }
Simon Horman6fb82592011-07-15 13:14:11 +09002399 LIST_DEL(&suite->list);
2400 free(suite);
2401 }
2402
2403 free(cond);
2404}
2405
Christopher Fauletcb550132019-12-17 11:25:46 +01002406static void deinit_act_rules(struct list *rules)
Simon Horman6fb82592011-07-15 13:14:11 +09002407{
Christopher Fauletcb550132019-12-17 11:25:46 +01002408 struct act_rule *rule, *ruleb;
Simon Horman6fb82592011-07-15 13:14:11 +09002409
Christopher Fauletcb550132019-12-17 11:25:46 +01002410 list_for_each_entry_safe(rule, ruleb, rules, list) {
2411 LIST_DEL(&rule->list);
2412 deinit_acl_cond(rule->cond);
Christopher Faulet58b35642019-12-17 11:48:42 +01002413 if (rule->release_ptr)
2414 rule->release_ptr(rule);
Christopher Fauletcb550132019-12-17 11:25:46 +01002415 free(rule);
Simon Hormanac821422011-07-15 13:14:09 +09002416 }
2417}
2418
Simon Horman6fb82592011-07-15 13:14:11 +09002419static void deinit_stick_rules(struct list *rules)
2420{
2421 struct sticking_rule *rule, *ruleb;
2422
2423 list_for_each_entry_safe(rule, ruleb, rules, list) {
2424 LIST_DEL(&rule->list);
2425 deinit_acl_cond(rule->cond);
Christopher Faulet476e5d02016-10-26 11:34:47 +02002426 release_sample_expr(rule->expr);
Simon Horman6fb82592011-07-15 13:14:11 +09002427 free(rule);
2428 }
2429}
2430
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002431void deinit(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002432{
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002433 struct proxy *p = proxies_list, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002434 struct cap_hdr *h,*h_next;
2435 struct server *s,*s_next;
2436 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002437 struct acl_cond *cond, *condb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002438 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002439 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002440 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002441 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002442 struct wordlist *wl, *wlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002443 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +02002444 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +01002445 struct logformat_node *lf, *lfb;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002446 struct bind_conf *bind_conf, *bind_back;
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002447 struct build_opts_str *bol, *bolb;
Willy Tarreau05554e62016-12-21 20:46:26 +01002448 struct post_deinit_fct *pdf;
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002449 struct proxy_deinit_fct *pxdf;
2450 struct server_deinit_fct *srvdf;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002451
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002452 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002453 while (p) {
Willy Tarreau8113a5d2012-10-04 08:01:43 +02002454 free(p->conf.file);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002455 free(p->id);
2456 free(p->check_req);
2457 free(p->cookie_name);
2458 free(p->cookie_domain);
Christopher Faulet2f533902020-01-21 11:06:48 +01002459 free(p->cookie_attrs);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002460 free(p->lbprm.arg_str);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002461 free(p->capture_name);
2462 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +09002463 free(p->rdp_cookie_name);
Willy Tarreau62a61232013-04-12 18:13:46 +02002464 if (p->conf.logformat_string != default_http_log_format &&
2465 p->conf.logformat_string != default_tcp_log_format &&
2466 p->conf.logformat_string != clf_http_log_format)
2467 free(p->conf.logformat_string);
Willy Tarreau196729e2012-05-31 19:30:26 +02002468
Willy Tarreau62a61232013-04-12 18:13:46 +02002469 free(p->conf.lfs_file);
2470 free(p->conf.uniqueid_format_string);
2471 free(p->conf.uif_file);
Willy Tarreau0cac26c2019-01-14 16:55:42 +01002472 if ((p->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_MAP)
2473 free(p->lbprm.map.srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002474
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002475 if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2476 free(p->conf.logformat_sd_string);
2477 free(p->conf.lfsd_file);
2478
Willy Tarreaub80c2302007-11-30 20:51:32 +01002479 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
2480 LIST_DEL(&cond->list);
2481 prune_acl_cond(cond);
2482 free(cond);
2483 }
2484
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002485 /* build a list of unique uri_auths */
2486 if (!ua)
2487 ua = p->uri_auth;
2488 else {
2489 /* check if p->uri_auth is unique */
2490 for (uap = ua; uap; uap=uap->next)
2491 if (uap == p->uri_auth)
2492 break;
2493
Willy Tarreauaccc4e12008-06-24 11:14:45 +02002494 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002495 /* add it, if it is */
2496 p->uri_auth->next = ua;
2497 ua = p->uri_auth;
2498 }
2499 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002500
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002501 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
2502 LIST_DEL(&acl->list);
2503 prune_acl(acl);
2504 free(acl);
2505 }
2506
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002507 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
2508 LIST_DEL(&srule->list);
2509 prune_acl_cond(srule->cond);
2510 free(srule->cond);
2511 free(srule);
2512 }
2513
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002514 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
2515 LIST_DEL(&rule->list);
Willy Tarreauf51658d2014-04-23 01:21:56 +02002516 if (rule->cond) {
2517 prune_acl_cond(rule->cond);
2518 free(rule->cond);
2519 }
Dragan Dosen2a7c20f2019-04-30 00:38:36 +02002520 free(rule->file);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002521 free(rule);
2522 }
2523
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002524 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
2525 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +01002526 if (rdr->cond) {
2527 prune_acl_cond(rdr->cond);
2528 free(rdr->cond);
2529 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002530 free(rdr->rdr_str);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002531 list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) {
2532 LIST_DEL(&lf->list);
2533 free(lf);
2534 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002535 free(rdr);
2536 }
2537
William Lallemand0f99e342011-10-12 17:50:54 +02002538 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
2539 LIST_DEL(&log->list);
2540 free(log);
2541 }
2542
William Lallemand723b73a2012-02-08 16:37:49 +01002543 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
2544 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002545 release_sample_expr(lf->expr);
2546 free(lf->arg);
William Lallemand723b73a2012-02-08 16:37:49 +01002547 free(lf);
2548 }
2549
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002550 list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) {
2551 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002552 release_sample_expr(lf->expr);
2553 free(lf->arg);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002554 free(lf);
2555 }
2556
Christopher Fauletcb550132019-12-17 11:25:46 +01002557 deinit_act_rules(&p->tcp_req.inspect_rules);
2558 deinit_act_rules(&p->tcp_rep.inspect_rules);
2559 deinit_act_rules(&p->tcp_req.l4_rules);
2560 deinit_act_rules(&p->tcp_req.l5_rules);
2561 deinit_act_rules(&p->http_req_rules);
2562 deinit_act_rules(&p->http_res_rules);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002563 deinit_act_rules(&p->http_after_res_rules);
Simon Hormanac821422011-07-15 13:14:09 +09002564
Simon Horman6fb82592011-07-15 13:14:11 +09002565 deinit_stick_rules(&p->storersp_rules);
2566 deinit_stick_rules(&p->sticking_rules);
2567
Willy Tarreaubaaee002006-06-26 02:48:02 +02002568 h = p->req_cap;
2569 while (h) {
2570 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002571 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002572 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002573 free(h);
2574 h = h_next;
2575 }/* end while(h) */
2576
2577 h = p->rsp_cap;
2578 while (h) {
2579 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002580 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002581 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002582 free(h);
2583 h = h_next;
2584 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002585
Willy Tarreaubaaee002006-06-26 02:48:02 +02002586 s = p->srv;
2587 while (s) {
2588 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002589
Willy Tarreauf6562792019-05-07 19:05:35 +02002590 task_destroy(s->check.task);
2591 task_destroy(s->agent.task);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002592
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002593 if (s->check.wait_list.tasklet)
2594 tasklet_free(s->check.wait_list.tasklet);
2595 if (s->agent.wait_list.tasklet)
2596 tasklet_free(s->agent.wait_list.tasklet);
Dragan Dosen026ef572019-04-30 00:56:20 +02002597
Willy Tarreauf6562792019-05-07 19:05:35 +02002598 task_destroy(s->warmup);
Willy Tarreau2e993902011-10-31 11:53:20 +01002599
Willy Tarreaua534fea2008-08-03 12:19:50 +02002600 free(s->id);
2601 free(s->cookie);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002602 free(s->check.bi.area);
2603 free(s->check.bo.area);
2604 free(s->agent.bi.area);
2605 free(s->agent.bo.area);
James Brown55f9ff12015-10-21 18:19:05 -07002606 free(s->agent.send_string);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002607 free(s->hostname_dn);
Sárközi, László34c01792014-09-05 10:08:23 +02002608 free((char*)s->conf.file);
Olivier Houchard7fc3be72018-11-22 18:50:54 +01002609 free(s->idle_conns);
2610 free(s->priv_conns);
2611 free(s->safe_conns);
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01002612 free(s->idle_orphan_conns);
Olivier Houchardf1314812019-02-18 16:41:17 +01002613 free(s->curr_idle_thr);
Willy Tarreau17d45382016-12-22 21:16:08 +01002614
2615 if (s->use_ssl || s->check.use_ssl) {
2616 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2617 xprt_get(XPRT_SSL)->destroy_srv(s);
2618 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002619 HA_SPIN_DESTROY(&s->lock);
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002620
2621 list_for_each_entry(srvdf, &server_deinit_list, list)
2622 srvdf->fct(s);
2623
Willy Tarreaubaaee002006-06-26 02:48:02 +02002624 free(s);
2625 s = s_next;
2626 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002627
Willy Tarreau4348fad2012-09-20 16:48:07 +02002628 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002629 /*
2630 * Zombie proxy, the listener just pretend to be up
2631 * because they still hold an opened fd.
2632 * Close it and give the listener its real state.
2633 */
2634 if (p->state == PR_STSTOPPED && l->state >= LI_ZOMBIE) {
2635 close(l->fd);
2636 l->state = LI_INIT;
2637 }
Willy Tarreauf6e2cc72010-09-03 10:38:17 +02002638 unbind_listener(l);
2639 delete_listener(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002640 LIST_DEL(&l->by_fe);
2641 LIST_DEL(&l->by_bind);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002642 free(l->name);
2643 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002644 free(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002645 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002646
Willy Tarreau4348fad2012-09-20 16:48:07 +02002647 /* Release unused SSL configs. */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002648 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01002649 if (bind_conf->xprt->destroy_bind_conf)
2650 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002651 free(bind_conf->file);
2652 free(bind_conf->arg);
2653 LIST_DEL(&bind_conf->by_fe);
2654 free(bind_conf);
2655 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02002656
Christopher Fauletd7c91962015-04-30 11:48:27 +02002657 flt_deinit(p);
2658
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002659 list_for_each_entry(pxdf, &proxy_deinit_list, list)
2660 pxdf->fct(p);
2661
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002662 free(p->desc);
2663 free(p->fwdfor_hdr_name);
2664
Olivier Houchard3f795f72019-04-17 22:51:06 +02002665 task_destroy(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002666
Willy Tarreaubafbe012017-11-24 17:34:44 +01002667 pool_destroy(p->req_cap_pool);
2668 pool_destroy(p->rsp_cap_pool);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002669 if (p->table)
2670 pool_destroy(p->table->pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002671
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002672 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002673 p = p->next;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002674 HA_SPIN_DESTROY(&p0->lbprm.lock);
2675 HA_SPIN_DESTROY(&p0->lock);
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002676 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002677 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02002678
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002679 while (ua) {
2680 uap = ua;
2681 ua = ua->next;
2682
Willy Tarreaua534fea2008-08-03 12:19:50 +02002683 free(uap->uri_prefix);
2684 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002685 free(uap->node);
2686 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002687
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002688 userlist_free(uap->userlist);
Christopher Fauletcb550132019-12-17 11:25:46 +01002689 deinit_act_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002690
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002691 free(uap);
2692 }
2693
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002694 userlist_free(userlist);
2695
David Carlier834cb2e2015-09-25 12:02:25 +01002696 cfg_unregister_sections();
2697
Christopher Faulet0132d062017-07-26 15:33:35 +02002698 deinit_log_buffers();
David Carlier834cb2e2015-09-25 12:02:25 +01002699
Willy Tarreaudd815982007-10-16 12:25:14 +02002700 protocol_unbind_all();
2701
Willy Tarreau05554e62016-12-21 20:46:26 +01002702 list_for_each_entry(pdf, &post_deinit_list, list)
2703 pdf->fct();
2704
Joe Williamsdf5b38f2010-12-29 17:05:48 +01002705 free(global.log_send_hostname); global.log_send_hostname = NULL;
Dragan Dosen43885c72015-10-01 13:18:13 +02002706 chunk_destroy(&global.log_tag);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002707 free(global.chroot); global.chroot = NULL;
2708 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002709 free(global.node); global.node = NULL;
2710 free(global.desc); global.desc = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002711 free(oldpids); oldpids = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02002712 task_destroy(idle_conn_task);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01002713 idle_conn_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002714
William Lallemand0f99e342011-10-12 17:50:54 +02002715 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
2716 LIST_DEL(&log->list);
2717 free(log);
2718 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01002719 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02002720 free(wl->s);
Willy Tarreau477ecd82010-01-03 21:12:30 +01002721 LIST_DEL(&wl->list);
2722 free(wl);
2723 }
2724
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002725 list_for_each_entry_safe(bol, bolb, &build_opts_list, list) {
2726 if (bol->must_free)
2727 free((void *)bol->str);
2728 LIST_DEL(&bol->list);
2729 free(bol);
2730 }
2731
Christopher Fauletff2613e2016-11-09 11:36:17 +01002732 vars_prune(&global.vars, NULL, NULL);
Willy Tarreau2455ceb2018-11-26 15:57:34 +01002733 pool_destroy_all();
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002734 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002735} /* end deinit() */
2736
William Lallemand72160322018-11-06 17:37:16 +01002737
Willy Tarreau918ff602011-07-25 16:33:49 +02002738/* Runs the polling loop */
Willy Tarreau3ebd55e2020-03-03 14:59:56 +01002739void run_poll_loop()
Willy Tarreau4f60f162007-04-08 16:39:58 +02002740{
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002741 int next, wake;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002742
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002743 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002744 while (1) {
Willy Tarreauc49ba522019-12-11 08:12:23 +01002745 wake_expired_tasks();
2746
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002747 /* Process a few tasks */
2748 process_runnable_tasks();
2749
William Lallemand1aab50b2018-06-07 09:46:01 +02002750 /* check if we caught some signals and process them in the
2751 first thread */
2752 if (tid == 0)
2753 signal_process_queue();
Willy Tarreau29857942009-05-10 09:01:21 +02002754
Willy Tarreau85c459d2018-08-02 10:54:31 +02002755 /* stop when there's nothing left to do */
William Lallemanda7199262018-11-16 16:57:20 +01002756 if ((jobs - unstoppable_jobs) == 0)
Willy Tarreau85c459d2018-08-02 10:54:31 +02002757 break;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002758
Willy Tarreau7067b3a2019-06-02 11:11:29 +02002759 /* also stop if we failed to cleanly stop all tasks */
2760 if (killed > 1)
2761 break;
2762
Willy Tarreau10146c92015-04-13 20:44:19 +02002763 /* expire immediately if events are pending */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002764 wake = 1;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02002765 if (thread_has_tasks())
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002766 activity[tid].wake_tasks++;
William Lallemand1aab50b2018-06-07 09:46:01 +02002767 else if (signal_queue_len && tid == 0)
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002768 activity[tid].wake_signal++;
Olivier Houchard79321b92018-07-26 17:55:11 +02002769 else {
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002770 _HA_ATOMIC_OR(&sleeping_thread_mask, tid_bit);
2771 __ha_barrier_atomic_store();
Olivier Houchardbba1a262019-09-24 14:55:28 +02002772 if ((global_tasks_mask & tid_bit) || thread_has_tasks()) {
Olivier Houchard79321b92018-07-26 17:55:11 +02002773 activity[tid].wake_tasks++;
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002774 _HA_ATOMIC_AND(&sleeping_thread_mask, ~tid_bit);
Olivier Houchard79321b92018-07-26 17:55:11 +02002775 } else
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002776 wake = 0;
Olivier Houchard79321b92018-07-26 17:55:11 +02002777 }
Willy Tarreau10146c92015-04-13 20:44:19 +02002778
Willy Tarreauc49ba522019-12-11 08:12:23 +01002779 /* If we have to sleep, measure how long */
2780 next = wake ? TICK_ETERNITY : next_timer_expiry();
2781
Willy Tarreau58b458d2008-06-29 22:40:23 +02002782 /* The poller will ensure it returns around <next> */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002783 cur_poller.poll(&cur_poller, next, wake);
Emeric Brun64cc49c2017-10-03 14:46:45 +02002784
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002785 activity[tid].loops++;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002786 }
2787}
2788
Christopher Faulet1d17c102017-08-29 15:38:48 +02002789static void *run_thread_poll_loop(void *data)
2790{
Willy Tarreau082b6282019-05-22 14:42:12 +02002791 struct per_thread_alloc_fct *ptaf;
Christopher Faulet1d17c102017-08-29 15:38:48 +02002792 struct per_thread_init_fct *ptif;
2793 struct per_thread_deinit_fct *ptdf;
Willy Tarreau082b6282019-05-22 14:42:12 +02002794 struct per_thread_free_fct *ptff;
Willy Tarreau34a150c2019-06-11 09:16:41 +02002795 static int init_left = 0;
2796 __decl_hathreads(static pthread_mutex_t init_mutex = PTHREAD_MUTEX_INITIALIZER);
2797 __decl_hathreads(static pthread_cond_t init_cond = PTHREAD_COND_INITIALIZER);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002798
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02002799 ha_set_tid((unsigned long)data);
Willy Tarreaud022e9c2019-09-24 08:25:15 +02002800 sched = &task_per_thread[tid];
Willy Tarreau91e6df02019-05-03 17:21:18 +02002801
Willy Tarreauf6178242019-05-21 19:46:58 +02002802#if (_POSIX_TIMERS > 0) && defined(_POSIX_THREAD_CPUTIME)
Willy Tarreau91e6df02019-05-03 17:21:18 +02002803#ifdef USE_THREAD
Willy Tarreau8323a372019-05-20 18:57:53 +02002804 pthread_getcpuclockid(pthread_self(), &ti->clock_id);
Willy Tarreau624dcbf2019-05-20 20:23:06 +02002805#else
Willy Tarreau8323a372019-05-20 18:57:53 +02002806 ti->clock_id = CLOCK_THREAD_CPUTIME_ID;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002807#endif
Willy Tarreau663fda42019-05-21 15:14:08 +02002808#endif
Willy Tarreau6ec902a2019-06-07 14:41:11 +02002809 /* Now, initialize one thread init at a time. This is better since
2810 * some init code is a bit tricky and may release global resources
2811 * after reallocating them locally. This will also ensure there is
2812 * no race on file descriptors allocation.
2813 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02002814#ifdef USE_THREAD
2815 pthread_mutex_lock(&init_mutex);
2816#endif
2817 /* The first thread must set the number of threads left */
2818 if (!init_left)
2819 init_left = global.nbthread;
2820 init_left--;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002821
Christopher Faulet1d17c102017-08-29 15:38:48 +02002822 tv_update_date(-1,-1);
2823
Willy Tarreau082b6282019-05-22 14:42:12 +02002824 /* per-thread alloc calls performed here are not allowed to snoop on
2825 * other threads, so they are free to initialize at their own rhythm
2826 * as long as they act as if they were alone. None of them may rely
2827 * on resources initialized by the other ones.
2828 */
2829 list_for_each_entry(ptaf, &per_thread_alloc_list, list) {
2830 if (!ptaf->fct()) {
2831 ha_alert("failed to allocate resources for thread %u.\n", tid);
2832 exit(1);
2833 }
2834 }
2835
Willy Tarreau3078e9f2019-05-20 10:50:43 +02002836 /* per-thread init calls performed here are not allowed to snoop on
2837 * other threads, so they are free to initialize at their own rhythm
2838 * as long as they act as if they were alone.
2839 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02002840 list_for_each_entry(ptif, &per_thread_init_list, list) {
2841 if (!ptif->fct()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002842 ha_alert("failed to initialize thread %u.\n", tid);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002843 exit(1);
2844 }
2845 }
2846
Willy Tarreau71092822019-06-10 09:51:04 +02002847 /* enabling protocols will result in fd_insert() calls to be performed,
2848 * we want all threads to have already allocated their local fd tables
Willy Tarreau34a150c2019-06-11 09:16:41 +02002849 * before doing so, thus only the last thread does it.
Willy Tarreau71092822019-06-10 09:51:04 +02002850 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02002851 if (init_left == 0)
Willy Tarreaue4d7c9d2019-06-10 10:14:52 +02002852 protocol_enable_all();
Willy Tarreau6ec902a2019-06-07 14:41:11 +02002853
Willy Tarreau34a150c2019-06-11 09:16:41 +02002854#ifdef USE_THREAD
2855 pthread_cond_broadcast(&init_cond);
2856 pthread_mutex_unlock(&init_mutex);
2857
2858 /* now wait for other threads to finish starting */
2859 pthread_mutex_lock(&init_mutex);
2860 while (init_left)
2861 pthread_cond_wait(&init_cond, &init_mutex);
2862 pthread_mutex_unlock(&init_mutex);
2863#endif
Willy Tarreau3078e9f2019-05-20 10:50:43 +02002864
Willy Tarreaua45a8b52019-12-06 16:31:45 +01002865#if defined(PR_SET_NO_NEW_PRIVS) && defined(USE_PRCTL)
2866 /* Let's refrain from using setuid executables. This way the impact of
2867 * an eventual vulnerability in a library remains limited. It may
2868 * impact external checks but who cares about them anyway ? In the
2869 * worst case it's possible to disable the option. Obviously we do this
2870 * in workers only. We can't hard-fail on this one as it really is
2871 * implementation dependent though we're interested in feedback, hence
2872 * the warning.
2873 */
2874 if (!(global.tune.options & GTUNE_INSECURE_SETUID) && !master) {
2875 static int warn_fail;
2876 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
2877 ha_warning("Failed to disable setuid, please report to developers with detailed "
2878 "information about your operating system. You can silence this warning "
2879 "by adding 'insecure-setuid-wanted' in the 'global' section.\n");
2880 }
2881 }
2882#endif
2883
Willy Tarreaud96f1122019-12-03 07:07:36 +01002884#if defined(RLIMIT_NPROC)
2885 /* all threads have started, it's now time to prevent any new thread
2886 * or process from starting. Obviously we do this in workers only. We
2887 * can't hard-fail on this one as it really is implementation dependent
2888 * though we're interested in feedback, hence the warning.
2889 */
2890 if (!(global.tune.options & GTUNE_INSECURE_FORK) && !master) {
2891 struct rlimit limit = { .rlim_cur = 0, .rlim_max = 0 };
2892 static int warn_fail;
2893
2894 if (setrlimit(RLIMIT_NPROC, &limit) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
2895 ha_warning("Failed to disable forks, please report to developers with detailed "
2896 "information about your operating system. You can silence this warning "
2897 "by adding 'insecure-fork-wanted' in the 'global' section.\n");
2898 }
2899 }
2900#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02002901 run_poll_loop();
2902
2903 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
2904 ptdf->fct();
2905
Willy Tarreau082b6282019-05-22 14:42:12 +02002906 list_for_each_entry(ptff, &per_thread_free_list, list)
2907 ptff->fct();
2908
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002909#ifdef USE_THREAD
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002910 _HA_ATOMIC_AND(&all_threads_mask, ~tid_bit);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002911 if (tid > 0)
2912 pthread_exit(NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002913#endif
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002914 return NULL;
2915}
Christopher Faulet1d17c102017-08-29 15:38:48 +02002916
William Dauchyf9af9d72019-11-17 15:47:16 +01002917/* set uid/gid depending on global settings */
2918static void set_identity(const char *program_name)
2919{
2920 if (global.gid) {
2921 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
2922 ha_warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
2923 " without 'uid'/'user' is generally useless.\n", program_name);
2924
2925 if (setgid(global.gid) == -1) {
2926 ha_alert("[%s.main()] Cannot set gid %d.\n", program_name, global.gid);
2927 protocol_unbind_all();
2928 exit(1);
2929 }
2930 }
2931
2932 if (global.uid && setuid(global.uid) == -1) {
2933 ha_alert("[%s.main()] Cannot set uid %d.\n", program_name, global.uid);
2934 protocol_unbind_all();
2935 exit(1);
2936 }
2937}
2938
Willy Tarreaubaaee002006-06-26 02:48:02 +02002939int main(int argc, char **argv)
2940{
2941 int err, retry;
2942 struct rlimit limit;
Emeric Bruncf20bf12010-10-22 16:06:11 +02002943 char errmsg[100];
Willy Tarreau269ab312012-09-05 08:02:48 +02002944 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002945
Olivier Houchard5fa300d2018-02-03 15:15:21 +01002946 setvbuf(stdout, NULL, _IONBF, 0);
Willy Tarreau5794fb02018-11-25 18:43:29 +01002947
Willy Tarreauff9c9142019-02-07 10:39:36 +01002948 /* this can only safely be done here, though it's optimized away by
2949 * the compiler.
2950 */
2951 if (MAX_PROCS < 1 || MAX_PROCS > LONGBITS) {
2952 ha_alert("MAX_PROCS value must be between 1 and %d inclusive; "
2953 "HAProxy was built with value %d, please fix it and rebuild.\n",
2954 LONGBITS, MAX_PROCS);
2955 exit(1);
2956 }
2957
Willy Tarreaubf696402019-03-01 10:09:28 +01002958 /* take a copy of initial limits before we possibly change them */
2959 getrlimit(RLIMIT_NOFILE, &limit);
2960 rlim_fd_cur_at_boot = limit.rlim_cur;
2961 rlim_fd_max_at_boot = limit.rlim_max;
2962
Willy Tarreau5794fb02018-11-25 18:43:29 +01002963 /* process all initcalls in order of potential dependency */
2964 RUN_INITCALLS(STG_PREPARE);
2965 RUN_INITCALLS(STG_LOCK);
2966 RUN_INITCALLS(STG_ALLOC);
2967 RUN_INITCALLS(STG_POOL);
2968 RUN_INITCALLS(STG_REGISTER);
2969 RUN_INITCALLS(STG_INIT);
2970
Emeric Bruncf20bf12010-10-22 16:06:11 +02002971 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002972 signal_register_fct(SIGQUIT, dump, SIGQUIT);
2973 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
2974 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
William Lallemand73b85e72017-06-01 17:38:51 +02002975 signal_register_fct(SIGUSR2, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002976
Willy Tarreaue437c442010-03-17 18:02:46 +01002977 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
2978 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
2979 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002980 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002981 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002982
Willy Tarreaudc23a922011-02-16 11:10:36 +01002983 /* ulimits */
2984 if (!global.rlimit_nofile)
2985 global.rlimit_nofile = global.maxsock;
2986
2987 if (global.rlimit_nofile) {
Willy Tarreaue5cfdac2019-03-01 10:32:05 +01002988 limit.rlim_cur = global.rlimit_nofile;
2989 limit.rlim_max = MAX(rlim_fd_max_at_boot, limit.rlim_cur);
2990
Willy Tarreaudc23a922011-02-16 11:10:36 +01002991 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
Willy Tarreauef635472016-06-21 11:48:18 +02002992 getrlimit(RLIMIT_NOFILE, &limit);
William Dauchy0fec3ab2019-10-27 20:08:11 +01002993 if (global.tune.options & GTUNE_STRICT_LIMITS) {
2994 ha_alert("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n",
2995 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
2996 if (!(global.mode & MODE_MWORKER))
2997 exit(1);
2998 }
2999 else {
3000 /* try to set it to the max possible at least */
3001 limit.rlim_cur = limit.rlim_max;
3002 if (setrlimit(RLIMIT_NOFILE, &limit) != -1)
3003 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau164dd0b2016-06-21 11:51:59 +02003004
William Dauchy0fec3ab2019-10-27 20:08:11 +01003005 ha_warning("[%s.main()] Cannot raise FD limit to %d, limit is %d. "
3006 "This will fail in >= v2.3\n",
3007 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
3008 global.rlimit_nofile = limit.rlim_cur;
3009 }
Willy Tarreaudc23a922011-02-16 11:10:36 +01003010 }
3011 }
3012
3013 if (global.rlimit_memmax) {
3014 limit.rlim_cur = limit.rlim_max =
Willy Tarreau70060452015-12-14 12:46:07 +01003015 global.rlimit_memmax * 1048576ULL;
Willy Tarreaudc23a922011-02-16 11:10:36 +01003016#ifdef RLIMIT_AS
3017 if (setrlimit(RLIMIT_AS, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003018 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3019 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
3020 argv[0], global.rlimit_memmax);
3021 if (!(global.mode & MODE_MWORKER))
3022 exit(1);
3023 }
3024 else
3025 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs."
3026 "This will fail in >= v2.3\n",
3027 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01003028 }
3029#else
3030 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003031 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3032 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
3033 argv[0], global.rlimit_memmax);
3034 if (!(global.mode & MODE_MWORKER))
3035 exit(1);
3036 }
3037 else
3038 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs.",
3039 "This will fail in >= v2.3\n",
3040 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01003041 }
3042#endif
3043 }
3044
Olivier Houchardf73629d2017-04-05 22:33:04 +02003045 if (old_unixsocket) {
William Lallemand85b0bd92017-06-01 17:38:53 +02003046 if (strcmp("/dev/null", old_unixsocket) != 0) {
3047 if (get_old_sockets(old_unixsocket) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003048 ha_alert("Failed to get the sockets from the old process!\n");
William Lallemand85b0bd92017-06-01 17:38:53 +02003049 if (!(global.mode & MODE_MWORKER))
3050 exit(1);
3051 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02003052 }
3053 }
William Lallemand85b0bd92017-06-01 17:38:53 +02003054 get_cur_unixsocket();
3055
Willy Tarreaubaaee002006-06-26 02:48:02 +02003056 /* We will loop at most 100 times with 10 ms delay each time.
3057 * That's at most 1 second. We only send a signal to old pids
3058 * if we cannot grab at least one port.
3059 */
3060 retry = MAX_START_RETRIES;
3061 err = ERR_NONE;
3062 while (retry >= 0) {
3063 struct timeval w;
3064 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01003065 /* exit the loop on no error or fatal error */
3066 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02003067 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02003068 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02003069 break;
3070
3071 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
3072 * listening sockets. So on those platforms, it would be wiser to
3073 * simply send SIGUSR1, which will not be undoable.
3074 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02003075 if (tell_old_pids(SIGTTOU) == 0) {
3076 /* no need to wait if we can't contact old pids */
3077 retry = 0;
3078 continue;
3079 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003080 /* give some time to old processes to stop listening */
3081 w.tv_sec = 0;
3082 w.tv_usec = 10*1000;
3083 select(0, NULL, NULL, NULL, &w);
3084 retry--;
3085 }
3086
3087 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01003088 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02003089 if (retry != MAX_START_RETRIES && nb_oldpids) {
3090 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003091 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02003092 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003093 exit(1);
3094 }
3095
William Lallemand944e6192018-11-21 15:48:31 +01003096 if (!(global.mode & MODE_MWORKER_WAIT) && listeners == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003097 ha_alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003098 /* Note: we don't have to send anything to the old pids because we
3099 * never stopped them. */
3100 exit(1);
3101 }
3102
Emeric Bruncf20bf12010-10-22 16:06:11 +02003103 err = protocol_bind_all(errmsg, sizeof(errmsg));
3104 if ((err & ~ERR_WARN) != ERR_NONE) {
3105 if ((err & ERR_ALERT) || (err & ERR_WARN))
Christopher Faulet767a84b2017-11-24 16:50:31 +01003106 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Emeric Bruncf20bf12010-10-22 16:06:11 +02003107
Christopher Faulet767a84b2017-11-24 16:50:31 +01003108 ha_alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02003109 protocol_unbind_all(); /* cleanup everything we can */
3110 if (nb_oldpids)
3111 tell_old_pids(SIGTTIN);
3112 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02003113 } else if (err & ERR_WARN) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003114 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02003115 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02003116 /* Ok, all listener should now be bound, close any leftover sockets
3117 * the previous process gave us, we don't need them anymore
3118 */
3119 while (xfer_sock_list != NULL) {
3120 struct xfer_sock_list *tmpxfer = xfer_sock_list->next;
3121 close(xfer_sock_list->fd);
3122 free(xfer_sock_list->iface);
3123 free(xfer_sock_list->namespace);
3124 free(xfer_sock_list);
3125 xfer_sock_list = tmpxfer;
3126 }
Willy Tarreaudd815982007-10-16 12:25:14 +02003127
Willy Tarreaubaaee002006-06-26 02:48:02 +02003128 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003129 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
3130 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003131
Willy Tarreaubaaee002006-06-26 02:48:02 +02003132 /* MODE_QUIET can inhibit alerts and warnings below this line */
3133
PiBa-NL149a81a2017-12-25 21:03:31 +01003134 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL) {
3135 /* either stdin/out/err are already closed or should stay as they are. */
3136 if ((global.mode & MODE_DAEMON)) {
3137 /* daemon mode re-executing, stdin/stdout/stderr are already closed so keep quiet */
3138 global.mode &= ~MODE_VERBOSE;
3139 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3140 }
3141 } else {
3142 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
3143 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003144 stdio_quiet(-1);
PiBa-NL149a81a2017-12-25 21:03:31 +01003145 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003146 }
3147
3148 /* open log & pid files before the chroot */
William Lallemand80293002017-11-06 11:00:03 +01003149 if ((global.mode & MODE_DAEMON || global.mode & MODE_MWORKER) && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003150 unlink(global.pidfile);
3151 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
3152 if (pidfd < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003153 ha_alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003154 if (nb_oldpids)
3155 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02003156 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003157 exit(1);
3158 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003159 }
3160
Willy Tarreaub38651a2007-03-24 17:24:39 +01003161 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003162 ha_alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
3163 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02003164 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01003165 exit(1);
3166 }
3167
Willy Tarreau4e30ed72009-02-04 18:02:48 +01003168 /* If the user is not root, we'll still let him try the configuration
3169 * but we inform him that unexpected behaviour may occur.
3170 */
3171 if ((global.last_checks & LSTCHK_NETADM) && getuid())
Christopher Faulet767a84b2017-11-24 16:50:31 +01003172 ha_warning("[%s.main()] Some options which require full privileges"
3173 " might not work well.\n"
3174 "", argv[0]);
Willy Tarreau4e30ed72009-02-04 18:02:48 +01003175
William Lallemand095ba4c2017-06-01 17:38:50 +02003176 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
3177
3178 /* chroot if needed */
3179 if (global.chroot != NULL) {
3180 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003181 ha_alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003182 if (nb_oldpids)
3183 tell_old_pids(SIGTTIN);
3184 protocol_unbind_all();
3185 exit(1);
3186 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02003187 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02003188 }
3189
William Lallemand944e6192018-11-21 15:48:31 +01003190 if (nb_oldpids && !(global.mode & MODE_MWORKER_WAIT))
Willy Tarreaubb545b42010-08-25 12:58:59 +02003191 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003192
William Lallemand27edc4b2019-05-07 17:49:33 +02003193 /* send a SIGTERM to workers who have a too high reloads number */
3194 if ((global.mode & MODE_MWORKER) && !(global.mode & MODE_MWORKER_WAIT))
3195 mworker_kill_max_reloads(SIGTERM);
3196
William Lallemand8a361b52017-06-20 11:20:33 +02003197 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
3198 nb_oldpids = 0;
3199 free(oldpids);
3200 oldpids = NULL;
3201 }
3202
3203
Willy Tarreaubaaee002006-06-26 02:48:02 +02003204 /* Note that any error at this stage will be fatal because we will not
3205 * be able to restart the old pids.
3206 */
3207
William Dauchyf9af9d72019-11-17 15:47:16 +01003208 if ((global.mode & (MODE_MWORKER | MODE_DAEMON)) == 0)
3209 set_identity(argv[0]);
Willy Tarreau636848a2019-04-15 19:38:50 +02003210
Willy Tarreaubaaee002006-06-26 02:48:02 +02003211 /* check ulimits */
3212 limit.rlim_cur = limit.rlim_max = 0;
3213 getrlimit(RLIMIT_NOFILE, &limit);
3214 if (limit.rlim_cur < global.maxsock) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003215 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3216 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
3217 "Please raise 'ulimit-n' to %d or more to avoid any trouble.\n",
3218 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
3219 global.maxsock);
3220 if (!(global.mode & MODE_MWORKER))
3221 exit(1);
3222 }
3223 else
3224 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
3225 "Please raise 'ulimit-n' to %d or more to avoid any trouble."
3226 "This will fail in >= v2.3\n",
3227 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
3228 global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003229 }
3230
William Lallemand944e6192018-11-21 15:48:31 +01003231 if (global.mode & (MODE_DAEMON | MODE_MWORKER | MODE_MWORKER_WAIT)) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003232 struct proxy *px;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003233 struct peers *curpeers;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003234 int ret = 0;
3235 int proc;
William Lallemande1340412017-12-28 16:09:36 +01003236 int devnullfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003237
William Lallemand095ba4c2017-06-01 17:38:50 +02003238 /*
3239 * if daemon + mworker: must fork here to let a master
3240 * process live in background before forking children
3241 */
William Lallemand73b85e72017-06-01 17:38:51 +02003242
3243 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)
3244 && (global.mode & MODE_MWORKER)
3245 && (global.mode & MODE_DAEMON)) {
William Lallemand095ba4c2017-06-01 17:38:50 +02003246 ret = fork();
3247 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003248 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003249 protocol_unbind_all();
3250 exit(1); /* there has been an error */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003251 } else if (ret > 0) { /* parent leave to daemonize */
William Lallemand095ba4c2017-06-01 17:38:50 +02003252 exit(0);
William Lallemandbfd8eb52018-07-04 15:31:23 +02003253 } else /* change the process group ID in the child (master process) */
3254 setsid();
William Lallemand095ba4c2017-06-01 17:38:50 +02003255 }
William Lallemande20b6a62017-06-01 17:38:55 +02003256
William Lallemande20b6a62017-06-01 17:38:55 +02003257
William Lallemanddeed7802017-11-06 11:00:04 +01003258 /* if in master-worker mode, write the PID of the father */
3259 if (global.mode & MODE_MWORKER) {
3260 char pidstr[100];
Willy Tarreau76a80c72019-06-22 07:41:38 +02003261 snprintf(pidstr, sizeof(pidstr), "%d\n", (int)getpid());
Willy Tarreau46ec48b2018-01-23 19:20:19 +01003262 if (pidfd >= 0)
3263 shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
William Lallemanddeed7802017-11-06 11:00:04 +01003264 }
3265
Willy Tarreaubaaee002006-06-26 02:48:02 +02003266 /* the father launches the required number of processes */
William Lallemand944e6192018-11-21 15:48:31 +01003267 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +02003268 if (global.mode & MODE_MWORKER)
3269 mworker_ext_launch_all();
William Lallemand944e6192018-11-21 15:48:31 +01003270 for (proc = 0; proc < global.nbproc; proc++) {
3271 ret = fork();
3272 if (ret < 0) {
3273 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
3274 protocol_unbind_all();
3275 exit(1); /* there has been an error */
3276 }
Willy Tarreau52bf8392020-03-08 00:42:37 +01003277 else if (ret == 0) { /* child breaks here */
3278 ha_random_jump96(relative_pid);
William Lallemand944e6192018-11-21 15:48:31 +01003279 break;
Willy Tarreau52bf8392020-03-08 00:42:37 +01003280 }
William Lallemand944e6192018-11-21 15:48:31 +01003281 if (pidfd >= 0 && !(global.mode & MODE_MWORKER)) {
3282 char pidstr[100];
3283 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
3284 shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
3285 }
3286 if (global.mode & MODE_MWORKER) {
3287 struct mworker_proc *child;
William Lallemandce83b4a2018-10-26 14:47:30 +02003288
William Lallemand220567e2018-11-21 18:04:53 +01003289 ha_notice("New worker #%d (%d) forked\n", relative_pid, ret);
William Lallemand944e6192018-11-21 15:48:31 +01003290 /* find the right mworker_proc */
3291 list_for_each_entry(child, &proc_list, list) {
3292 if (child->relative_pid == relative_pid &&
William Lallemand8f7069a2019-04-12 16:09:23 +02003293 child->reloads == 0 && child->options & PROC_O_TYPE_WORKER) {
William Lallemand944e6192018-11-21 15:48:31 +01003294 child->timestamp = now.tv_sec;
3295 child->pid = ret;
William Lallemand1dc69632019-06-12 19:11:33 +02003296 child->version = strdup(haproxy_version);
William Lallemand944e6192018-11-21 15:48:31 +01003297 break;
3298 }
William Lallemandce83b4a2018-10-26 14:47:30 +02003299 }
3300 }
William Lallemandbc193052018-09-11 10:06:26 +02003301
William Lallemand944e6192018-11-21 15:48:31 +01003302 relative_pid++; /* each child will get a different one */
3303 pid_bit <<= 1;
3304 }
3305 } else {
3306 /* wait mode */
3307 global.nbproc = 1;
3308 proc = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003309 }
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003310
3311#ifdef USE_CPU_AFFINITY
3312 if (proc < global.nbproc && /* child */
Willy Tarreauff9c9142019-02-07 10:39:36 +01003313 proc < MAX_PROCS && /* only the first 32/64 processes may be pinned */
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003314 global.cpu_map.proc[proc]) /* only do this if the process has a CPU map */
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003315#ifdef __FreeBSD__
Olivier Houchard97148f62017-08-16 17:29:11 +02003316 {
3317 cpuset_t cpuset;
3318 int i;
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003319 unsigned long cpu_map = global.cpu_map.proc[proc];
Olivier Houchard97148f62017-08-16 17:29:11 +02003320
3321 CPU_ZERO(&cpuset);
3322 while ((i = ffsl(cpu_map)) > 0) {
3323 CPU_SET(i - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003324 cpu_map &= ~(1UL << (i - 1));
Olivier Houchard97148f62017-08-16 17:29:11 +02003325 }
3326 ret = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(cpuset), &cpuset);
3327 }
David Carlier5e4c8e22019-09-13 05:12:58 +01003328#elif defined(__linux__)
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003329 sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map.proc[proc]);
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003330#endif
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003331#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02003332 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02003333 if (pidfd >= 0) {
3334 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
3335 close(pidfd);
3336 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02003337
3338 /* We won't ever use this anymore */
Willy Tarreaud137dd32010-08-25 12:49:05 +02003339 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003340
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003341 if (proc == global.nbproc) {
William Lallemand944e6192018-11-21 15:48:31 +01003342 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003343
3344 if ((!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
3345 (global.mode & MODE_DAEMON)) {
3346 /* detach from the tty, this is required to properly daemonize. */
William Lallemande1340412017-12-28 16:09:36 +01003347 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL))
3348 stdio_quiet(-1);
3349
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003350 global.mode &= ~MODE_VERBOSE;
3351 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003352 }
3353
William Lallemandb3f2be32018-09-11 10:06:18 +02003354 mworker_loop();
William Lallemand1499b9b2017-06-07 15:04:47 +02003355 /* should never get there */
3356 exit(EXIT_FAILURE);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003357 }
William Lallemandcf4e4962017-06-08 19:05:48 +02003358#if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH)
Grant Zhang872f9c22017-01-21 01:10:18 +00003359 ssl_free_dh();
3360#endif
William Lallemand1499b9b2017-06-07 15:04:47 +02003361 exit(0); /* parent must leave */
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003362 }
3363
William Lallemandcb11fd22017-06-01 17:38:52 +02003364 /* child must never use the atexit function */
3365 atexit_flag = 0;
3366
William Lallemandbc193052018-09-11 10:06:26 +02003367 /* close useless master sockets */
3368 if (global.mode & MODE_MWORKER) {
3369 struct mworker_proc *child, *it;
3370 master = 0;
3371
William Lallemand309dc9a2018-10-26 14:47:45 +02003372 mworker_cli_proxy_stop();
3373
William Lallemandbc193052018-09-11 10:06:26 +02003374 /* free proc struct of other processes */
3375 list_for_each_entry_safe(child, it, &proc_list, list) {
William Lallemandce83b4a2018-10-26 14:47:30 +02003376 /* close the FD of the master side for all
3377 * workers, we don't need to close the worker
3378 * side of other workers since it's done with
3379 * the bind_proc */
Tim Duesterhus742e0f92018-11-25 20:03:39 +01003380 if (child->ipc_fd[0] >= 0)
3381 close(child->ipc_fd[0]);
William Lallemandce83b4a2018-10-26 14:47:30 +02003382 if (child->relative_pid == relative_pid &&
3383 child->reloads == 0) {
3384 /* keep this struct if this is our pid */
3385 proc_self = child;
William Lallemandbc193052018-09-11 10:06:26 +02003386 continue;
William Lallemandce83b4a2018-10-26 14:47:30 +02003387 }
William Lallemandbc193052018-09-11 10:06:26 +02003388 LIST_DEL(&child->list);
Tim Duesterhus9b7a9762019-05-16 20:23:22 +02003389 mworker_free_child(child);
3390 child = NULL;
William Lallemandbc193052018-09-11 10:06:26 +02003391 }
3392 }
Willy Tarreau1605c7a2018-01-23 19:01:49 +01003393
William Lallemande1340412017-12-28 16:09:36 +01003394 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
3395 devnullfd = open("/dev/null", O_RDWR, 0);
3396 if (devnullfd < 0) {
3397 ha_alert("Cannot open /dev/null\n");
3398 exit(EXIT_FAILURE);
3399 }
3400 }
3401
William Lallemand095ba4c2017-06-01 17:38:50 +02003402 /* Must chroot and setgid/setuid in the children */
3403 /* chroot if needed */
3404 if (global.chroot != NULL) {
3405 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003406 ha_alert("[%s.main()] Cannot chroot1(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003407 if (nb_oldpids)
3408 tell_old_pids(SIGTTIN);
3409 protocol_unbind_all();
3410 exit(1);
3411 }
3412 }
3413
3414 free(global.chroot);
3415 global.chroot = NULL;
William Dauchyf9af9d72019-11-17 15:47:16 +01003416 set_identity(argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003417
William Lallemand7f80eb22017-05-26 18:19:55 +02003418 /* pass through every cli socket, and check if it's bound to
3419 * the current process and if it exposes listeners sockets.
3420 * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork.
3421 * */
3422
3423 if (global.stats_fe) {
3424 struct bind_conf *bind_conf;
3425
3426 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3427 if (bind_conf->level & ACCESS_FD_LISTENERS) {
3428 if (!bind_conf->bind_proc || bind_conf->bind_proc & (1UL << proc)) {
3429 global.tune.options |= GTUNE_SOCKET_TRANSFER;
3430 break;
3431 }
3432 }
3433 }
3434 }
3435
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003436 /* we might have to unbind some proxies from some processes */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003437 px = proxies_list;
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003438 while (px != NULL) {
3439 if (px->bind_proc && px->state != PR_STSTOPPED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02003440 if (!(px->bind_proc & (1UL << proc))) {
3441 if (global.tune.options & GTUNE_SOCKET_TRANSFER)
3442 zombify_proxy(px);
3443 else
3444 stop_proxy(px);
3445 }
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003446 }
3447 px = px->next;
3448 }
3449
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003450 /* we might have to unbind some peers sections from some processes */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003451 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003452 if (!curpeers->peers_fe)
3453 continue;
3454
3455 if (curpeers->peers_fe->bind_proc & (1UL << proc))
3456 continue;
3457
3458 stop_proxy(curpeers->peers_fe);
3459 /* disable this peer section so that it kills itself */
Willy Tarreau47c8c022015-09-28 16:39:25 +02003460 signal_unregister_handler(curpeers->sighandler);
Olivier Houchard3f795f72019-04-17 22:51:06 +02003461 task_destroy(curpeers->sync_task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003462 curpeers->sync_task = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02003463 task_destroy(curpeers->peers_fe->task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003464 curpeers->peers_fe->task = NULL;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003465 curpeers->peers_fe = NULL;
3466 }
3467
William Lallemand2e8fad92018-11-13 16:18:23 +01003468 /*
3469 * This is only done in daemon mode because we might want the
3470 * logs on stdout in mworker mode. If we're NOT in QUIET mode,
3471 * we should now close the 3 first FDs to ensure that we can
3472 * detach from the TTY. We MUST NOT do it in other cases since
3473 * it would have already be done, and 0-2 would have been
3474 * affected to listening sockets
Willy Tarreaubaaee002006-06-26 02:48:02 +02003475 */
William Lallemand2e8fad92018-11-13 16:18:23 +01003476 if ((global.mode & MODE_DAEMON) &&
3477 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003478 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003479 stdio_quiet(devnullfd);
Willy Tarreau106cb762008-11-16 07:40:34 +01003480 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003481 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3482 }
3483 pid = getpid(); /* update child's pid */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003484 if (!(global.mode & MODE_MWORKER)) /* in mworker mode we don't want a new pgid for the children */
3485 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02003486 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003487 }
3488
William Dauchye039f262019-11-17 15:47:15 +01003489 /* try our best to re-enable core dumps depending on system capabilities.
3490 * What is addressed here :
3491 * - remove file size limits
3492 * - remove core size limits
3493 * - mark the process dumpable again if it lost it due to user/group
3494 */
3495 if (global.tune.options & GTUNE_SET_DUMPABLE) {
3496 limit.rlim_cur = limit.rlim_max = RLIM_INFINITY;
3497
3498#if defined(RLIMIT_FSIZE)
3499 if (setrlimit(RLIMIT_FSIZE, &limit) == -1) {
3500 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3501 ha_alert("[%s.main()] Failed to set the raise the maximum "
3502 "file size.\n", argv[0]);
3503 if (!(global.mode & MODE_MWORKER))
3504 exit(1);
3505 }
3506 else
3507 ha_warning("[%s.main()] Failed to set the raise the maximum "
3508 "file size. This will fail in >= v2.3\n", argv[0]);
3509 }
3510#endif
3511
3512#if defined(RLIMIT_CORE)
3513 if (setrlimit(RLIMIT_CORE, &limit) == -1) {
3514 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3515 ha_alert("[%s.main()] Failed to set the raise the core "
3516 "dump size.\n", argv[0]);
3517 if (!(global.mode & MODE_MWORKER))
3518 exit(1);
3519 }
3520 else
3521 ha_warning("[%s.main()] Failed to set the raise the core "
3522 "dump size. This will fail in >= v2.3\n", argv[0]);
3523 }
3524#endif
3525
3526#if defined(USE_PRCTL)
3527 if (prctl(PR_SET_DUMPABLE, 1, 0, 0, 0) == -1)
3528 ha_warning("[%s.main()] Failed to set the dumpable flag, "
3529 "no core will be dumped.\n", argv[0]);
3530#endif
3531 }
3532
Christopher Faulete3a5e352017-10-24 13:53:54 +02003533 global.mode &= ~MODE_STARTING;
Willy Tarreau4f60f162007-04-08 16:39:58 +02003534 /*
3535 * That's it : the central polling loop. Run until we stop.
3536 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02003537#ifdef USE_THREAD
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003538 {
William Lallemand1aab50b2018-06-07 09:46:01 +02003539 sigset_t blocked_sig, old_sig;
Willy Tarreauc40efc12019-05-03 09:22:44 +02003540 int i;
3541
William Lallemand1aab50b2018-06-07 09:46:01 +02003542 /* ensure the signals will be blocked in every thread */
3543 sigfillset(&blocked_sig);
3544 sigdelset(&blocked_sig, SIGPROF);
3545 sigdelset(&blocked_sig, SIGBUS);
3546 sigdelset(&blocked_sig, SIGFPE);
3547 sigdelset(&blocked_sig, SIGILL);
3548 sigdelset(&blocked_sig, SIGSEGV);
3549 pthread_sigmask(SIG_SETMASK, &blocked_sig, &old_sig);
3550
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003551 /* Create nbthread-1 thread. The first thread is the current process */
David Carliera92c5ce2019-09-13 05:03:12 +01003552 ha_thread_info[0].pthread = pthread_self();
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003553 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003554 pthread_create(&ha_thread_info[i].pthread, NULL, &run_thread_poll_loop, (void *)(long)i);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003555
Christopher Faulet62519022017-10-16 15:49:32 +02003556#ifdef USE_CPU_AFFINITY
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003557 /* Now the CPU affinity for all threads */
Willy Tarreau7764a572019-07-16 15:10:34 +02003558 if (global.cpu_map.proc_t1[relative_pid-1])
3559 global.cpu_map.thread[0] &= global.cpu_map.proc_t1[relative_pid-1];
3560
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003561 for (i = 0; i < global.nbthread; i++) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003562 if (global.cpu_map.proc[relative_pid-1])
Willy Tarreau81492c92019-05-03 09:41:23 +02003563 global.cpu_map.thread[i] &= global.cpu_map.proc[relative_pid-1];
Christopher Faulet62519022017-10-16 15:49:32 +02003564
Willy Tarreau421f02e2018-01-20 18:19:22 +01003565 if (i < MAX_THREADS && /* only the first 32/64 threads may be pinned */
Willy Tarreau81492c92019-05-03 09:41:23 +02003566 global.cpu_map.thread[i]) {/* only do this if the thread has a THREAD map */
David Carlier5e4c8e22019-09-13 05:12:58 +01003567#if defined(__APPLE__)
3568 int j;
3569 unsigned long cpu_map = global.cpu_map.thread[i];
3570
3571 while ((j = ffsl(cpu_map)) > 0) {
3572 thread_affinity_policy_data_t cpu_set = { j - 1 };
3573 thread_port_t mthread = pthread_mach_thread_np(ha_thread_info[i].pthread);
3574 thread_policy_set(mthread, THREAD_AFFINITY_POLICY, (thread_policy_t)&cpu_set, 1);
3575 cpu_map &= ~(1UL << (j - 1));
3576 }
3577#else
Olivier Houchard829aa242017-12-01 18:19:43 +01003578#if defined(__FreeBSD__) || defined(__NetBSD__)
3579 cpuset_t cpuset;
3580#else
3581 cpu_set_t cpuset;
3582#endif
3583 int j;
Willy Tarreau81492c92019-05-03 09:41:23 +02003584 unsigned long cpu_map = global.cpu_map.thread[i];
Olivier Houchard829aa242017-12-01 18:19:43 +01003585
3586 CPU_ZERO(&cpuset);
3587
3588 while ((j = ffsl(cpu_map)) > 0) {
3589 CPU_SET(j - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003590 cpu_map &= ~(1UL << (j - 1));
Olivier Houchard829aa242017-12-01 18:19:43 +01003591 }
David Carliera92c5ce2019-09-13 05:03:12 +01003592 pthread_setaffinity_np(ha_thread_info[i].pthread,
Olivier Houchard829aa242017-12-01 18:19:43 +01003593 sizeof(cpuset), &cpuset);
David Carlier5e4c8e22019-09-13 05:12:58 +01003594#endif
Olivier Houchard829aa242017-12-01 18:19:43 +01003595 }
Christopher Faulet1d17c102017-08-29 15:38:48 +02003596 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003597#endif /* !USE_CPU_AFFINITY */
3598
William Lallemand1aab50b2018-06-07 09:46:01 +02003599 /* when multithreading we need to let only the thread 0 handle the signals */
William Lallemandd3801c12018-09-11 10:06:23 +02003600 haproxy_unblock_signals();
William Lallemand1aab50b2018-06-07 09:46:01 +02003601
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003602 /* Finally, start the poll loop for the first thread */
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003603 run_thread_poll_loop(0);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003604
3605 /* Wait the end of other threads */
3606 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003607 pthread_join(ha_thread_info[i].pthread, NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003608
Christopher Fauletb79a94c2017-05-30 15:34:30 +02003609#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
3610 show_lock_stats();
3611#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003612 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003613#else /* ! USE_THREAD */
William Lallemandd3801c12018-09-11 10:06:23 +02003614 haproxy_unblock_signals();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003615 run_thread_poll_loop(0);
Christopher Faulet62519022017-10-16 15:49:32 +02003616#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003617
3618 /* Do some cleanup */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003619 deinit();
Christopher Faulet1d17c102017-08-29 15:38:48 +02003620
Willy Tarreaubaaee002006-06-26 02:48:02 +02003621 exit(0);
3622}
3623
3624
3625/*
3626 * Local variables:
3627 * c-indent-level: 8
3628 * c-basic-offset: 8
3629 * End:
3630 */