blob: 03a05cdd489ce5e277ee144bede4b29666865e19 [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 *
Ilya Shipitsin46a030c2020-07-05 16:36:08 +050010 * Please refer to RFC7230 - RFC7235 information about HTTP protocol, and
11 * RFC6265 for information 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>
Tim Duesterhusdfad6a42020-04-18 16:02:47 +020049#include <sys/utsname.h>
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +010050#include <sys/wait.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020051#include <time.h>
52#include <syslog.h>
Michael Schererab012dd2013-01-12 18:35:19 +010053#include <grp.h>
Willy Tarreaufc6c0322012-11-16 16:12:27 +010054#ifdef USE_CPU_AFFINITY
Willy Tarreaufc6c0322012-11-16 16:12:27 +010055#include <sched.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000056#if defined(__FreeBSD__) || defined(__DragonFly__)
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020057#include <sys/param.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000058#ifdef __FreeBSD__
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020059#include <sys/cpuset.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000060#endif
David Carlier6d5c8412017-11-29 11:02:32 +000061#include <pthread_np.h>
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020062#endif
David Carlier5e4c8e22019-09-13 05:12:58 +010063#ifdef __APPLE__
64#include <mach/mach_types.h>
65#include <mach/thread_act.h>
66#include <mach/thread_policy.h>
67#endif
Willy Tarreaufc6c0322012-11-16 16:12:27 +010068#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020069
Willy Tarreau636848a2019-04-15 19:38:50 +020070#if defined(USE_PRCTL)
71#include <sys/prctl.h>
72#endif
73
Willy Tarreaubaaee002006-06-26 02:48:02 +020074#ifdef DEBUG_FULL
75#include <assert.h>
76#endif
Tim Duesterhusd6942c82017-11-20 15:58:35 +010077#if defined(USE_SYSTEMD)
78#include <systemd/sd-daemon.h>
79#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020080
Willy Tarreau6c3a6812020-03-06 18:57:15 +010081#include <import/sha1.h>
82
Willy Tarreaub2551052020-06-09 09:07:15 +020083#include <haproxy/acl.h>
84#include <haproxy/activity.h>
85#include <haproxy/api.h>
86#include <haproxy/arg.h>
87#include <haproxy/auth.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020088#include <haproxy/base64.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020089#include <haproxy/capture-t.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020090#include <haproxy/cfgparse.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020091#include <haproxy/chunk.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020092#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020093#include <haproxy/connection.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020094#include <haproxy/dns.h>
Willy Tarreau2741c8c2020-06-02 11:28:02 +020095#include <haproxy/dynbuf.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020096#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020097#include <haproxy/fd.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020098#include <haproxy/filters.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020099#include <haproxy/global.h>
Willy Tarreau86416052020-06-04 09:20:54 +0200100#include <haproxy/hlua.h>
Willy Tarreauc761f842020-06-04 11:40:28 +0200101#include <haproxy/http_rules.h>
Willy Tarreau853b2972020-05-27 18:01:47 +0200102#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +0200103#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +0200104#include <haproxy/log.h>
Willy Tarreaub5abe5b2020-06-04 14:07:37 +0200105#include <haproxy/mworker.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +0200106#include <haproxy/namespace.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +0200107#include <haproxy/net_helper.h>
Willy Tarreau6019fab2020-05-27 16:26:00 +0200108#include <haproxy/openssl-compat.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +0200109#include <haproxy/pattern.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +0200110#include <haproxy/peers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +0200111#include <haproxy/pool.h>
112#include <haproxy/protocol.h>
Willy Tarreaubf3b06b2020-08-26 10:23:40 +0200113#include <haproxy/proto_tcp.h>
Willy Tarreaua264d962020-06-04 22:29:18 +0200114#include <haproxy/proxy.h>
Willy Tarreau7cd8b6e2020-06-02 17:32:26 +0200115#include <haproxy/regex.h>
Willy Tarreaub2551052020-06-09 09:07:15 +0200116#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +0200117#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +0200118#include <haproxy/session.h>
Willy Tarreau3727a8a2020-06-04 17:37:26 +0200119#include <haproxy/signal.h>
Willy Tarreau209108d2020-06-04 20:30:20 +0200120#include <haproxy/ssl_sock.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +0200121#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +0200122#include <haproxy/task.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +0200123#include <haproxy/thread.h>
Willy Tarreaub2551052020-06-09 09:07:15 +0200124#include <haproxy/time.h>
125#include <haproxy/tools.h>
126#include <haproxy/uri_auth-t.h>
Willy Tarreaua1718922020-06-04 16:25:31 +0200127#include <haproxy/vars.h>
Willy Tarreaub2551052020-06-09 09:07:15 +0200128#include <haproxy/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200129
Willy Tarreaubaaee002006-06-26 02:48:02 +0200130
Willy Tarreau7b5654f2019-03-29 21:30:17 +0100131/* array of init calls for older platforms */
132DECLARE_INIT_STAGES;
133
Willy Tarreau477ecd82010-01-03 21:12:30 +0100134/* list of config files */
135static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200136int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100137int relative_pid = 1; /* process id starting at 1 */
Willy Tarreau387bd4f2017-11-10 19:08:14 +0100138unsigned long pid_bit = 1; /* bit corresponding to the process id */
Willy Tarreaua38a7172019-02-02 17:11:28 +0100139unsigned long all_proc_mask = 1; /* mask of all processes */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200140
Willy Tarreauf8ea00e2020-03-12 17:24:53 +0100141volatile unsigned long sleeping_thread_mask = 0; /* Threads that are about to sleep in poll() */
Willy Tarreau4b3f27b2020-03-12 17:28:01 +0100142volatile unsigned long stopping_thread_mask = 0; /* Threads acknowledged stopping */
Willy Tarreauf8ea00e2020-03-12 17:24:53 +0100143
Willy Tarreaubaaee002006-06-26 02:48:02 +0200144/* global options */
145struct global global = {
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100146 .hard_stop_after = TICK_ETERNITY,
Willy Tarreau247a13a2012-11-15 17:38:15 +0100147 .nbproc = 1,
Willy Tarreau149ab772019-01-26 14:27:06 +0100148 .nbthread = 0,
William Lallemand5f232402012-04-05 18:02:55 +0200149 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200150 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
William Lallemand9d5f5482012-11-07 16:12:57 +0100151 .maxzlibmem = 0,
William Lallemandd85f9172012-11-09 17:05:39 +0100152 .comp_rate_lim = 0,
Emeric Brun850efd52014-01-29 12:24:34 +0100153 .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED,
Emeric Bruned760922010-10-22 17:59:25 +0200154 .unix_bind = {
155 .ux = {
156 .uid = -1,
157 .gid = -1,
158 .mode = 0,
159 }
160 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200161 .tune = {
Willy Tarreau7ac908b2019-02-27 12:02:18 +0100162 .options = GTUNE_LISTENER_MQ,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100163 .bufsize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Christopher Faulet546c4692020-01-22 14:31:21 +0100164 .maxrewrite = MAXREWRITE,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100165 .chksize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Willy Tarreaua24adf02014-11-27 01:11:56 +0100166 .reserved_bufs = RESERVED_BUFS,
Willy Tarreauf3045d22015-04-29 16:24:50 +0200167 .pattern_cache = DEFAULT_PAT_LRU_SIZE,
Olivier Houchard88698d92019-04-16 19:07:22 +0200168 .pool_low_ratio = 20,
169 .pool_high_ratio = 25,
Christopher Faulet41ba36f2019-07-19 09:36:45 +0200170 .max_http_hdr = MAX_HTTP_HDR,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200171#ifdef USE_OPENSSL
Emeric Brun46635772012-11-14 11:32:56 +0100172 .sslcachesize = SSLCACHESIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200173#endif
William Lallemandf3747832012-11-09 12:33:10 +0100174 .comp_maxlevel = 1,
Willy Tarreau7e312732014-02-12 16:35:14 +0100175#ifdef DEFAULT_IDLE_TIMER
176 .idle_timer = DEFAULT_IDLE_TIMER,
177#else
178 .idle_timer = 1000, /* 1 second */
179#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200180 },
Emeric Brun76d88952012-10-05 15:47:31 +0200181#ifdef USE_OPENSSL
182#ifdef DEFAULT_MAXSSLCONN
Willy Tarreau403edff2012-09-06 11:58:37 +0200183 .maxsslconn = DEFAULT_MAXSSLCONN,
184#endif
Emeric Brun76d88952012-10-05 15:47:31 +0200185#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200186 /* others NULL OK */
187};
188
189/*********************************************************************/
190
191int stopping; /* non zero means stopping in progress */
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100192int killed; /* non zero means a hard-stop is triggered */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200193int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
William Lallemanda7199262018-11-16 16:57:20 +0100194int unstoppable_jobs = 0; /* number of active jobs that can't be stopped during a soft stop */
Willy Tarreau199ad242018-11-05 16:31:22 +0100195int active_peers = 0; /* number of active peers (connection attempts and connected) */
Willy Tarreau2d372c22018-11-05 17:12:27 +0100196int connected_peers = 0; /* number of connected peers (verified ones) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200197
Ilya Shipitsin46a030c2020-07-05 16:36:08 +0500198/* Here we store information about the pids of the processes we may pause
Willy Tarreaubaaee002006-06-26 02:48:02 +0200199 * or kill. We will send them a signal every 10 ms until we can bind to all
200 * our ports. With 200 retries, that's about 2 seconds.
201 */
202#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200203static int *oldpids = NULL;
204static int oldpids_sig; /* use USR1 or TERM */
205
Olivier Houchardf73629d2017-04-05 22:33:04 +0200206/* Path to the unix socket we use to retrieve listener sockets from the old process */
207static const char *old_unixsocket;
208
William Lallemand85b0bd92017-06-01 17:38:53 +0200209static char *cur_unixsocket = NULL;
210
William Lallemandcb11fd22017-06-01 17:38:52 +0200211int atexit_flag = 0;
212
Willy Tarreaubb545b42010-08-25 12:58:59 +0200213int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200214const int zero = 0;
215const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200216const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200217
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100218char hostname[MAX_HOSTNAME_LEN];
Dragan Dosen4f014152020-06-18 16:56:47 +0200219char *localpeer = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200220
William Lallemand00417412020-06-05 14:08:41 +0200221static char **old_argv = NULL; /* previous argv but cleaned up */
William Lallemand73b85e72017-06-01 17:38:51 +0200222
William Lallemandbc193052018-09-11 10:06:26 +0200223struct list proc_list = LIST_HEAD_INIT(proc_list);
224
225int master = 0; /* 1 if in master, 0 if in child */
Willy Tarreaubf696402019-03-01 10:09:28 +0100226unsigned int rlim_fd_cur_at_boot = 0;
227unsigned int rlim_fd_max_at_boot = 0;
William Lallemandbc193052018-09-11 10:06:26 +0200228
Willy Tarreau6c3a6812020-03-06 18:57:15 +0100229/* per-boot randomness */
230unsigned char boot_seed[20]; /* per-boot random seed (160 bits initially) */
231
William Lallemand16dd1b32018-11-19 18:46:18 +0100232struct mworker_proc *proc_self = NULL;
William Lallemandbc193052018-09-11 10:06:26 +0200233
William Lallemandb3f2be32018-09-11 10:06:18 +0200234static void *run_thread_poll_loop(void *data);
235
Willy Tarreauff055502014-04-28 22:27:06 +0200236/* bitfield of a few warnings to emit just once (WARN_*) */
237unsigned int warned = 0;
238
William Lallemande7361152018-10-26 14:47:36 +0200239/* master CLI configuration (-S flag) */
240struct list mworker_cli_conf = LIST_HEAD_INIT(mworker_cli_conf);
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100241
242/* These are strings to be reported in the output of "haproxy -vv". They may
243 * either be constants (in which case must_free must be zero) or dynamically
244 * allocated strings to pass to free() on exit, and in this case must_free
245 * must be non-zero.
246 */
247struct list build_opts_list = LIST_HEAD_INIT(build_opts_list);
248struct build_opts_str {
249 struct list list;
250 const char *str;
251 int must_free;
252};
253
Willy Tarreaue6945732016-12-21 19:57:00 +0100254/* These functions are called just after the point where the program exits
255 * after a config validity check, so they are generally suited for resource
256 * allocation and slow initializations that should be skipped during basic
257 * config checks. The functions must return 0 on success, or a combination
258 * of ERR_* flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause
259 * and immediate exit, so the function must have emitted any useful error.
260 */
261struct list post_check_list = LIST_HEAD_INIT(post_check_list);
262struct post_check_fct {
263 struct list list;
264 int (*fct)();
265};
266
Christopher Fauletc1692962019-08-12 09:51:07 +0200267/* These functions are called for each proxy just after the config validity
268 * check. The functions must return 0 on success, or a combination of ERR_*
269 * flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause and immediate
270 * exit, so the function must have emitted any useful error.
271 */
272struct list post_proxy_check_list = LIST_HEAD_INIT(post_proxy_check_list);
273struct post_proxy_check_fct {
274 struct list list;
275 int (*fct)(struct proxy *);
276};
277
278/* These functions are called for each server just after the config validity
279 * check. The functions must return 0 on success, or a combination of ERR_*
280 * flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause and immediate
281 * exit, so the function must have emitted any useful error.
282 */
283struct list post_server_check_list = LIST_HEAD_INIT(post_server_check_list);
284struct post_server_check_fct {
285 struct list list;
286 int (*fct)(struct server *);
287};
288
Willy Tarreau082b6282019-05-22 14:42:12 +0200289/* These functions are called for each thread just after the thread creation
290 * and before running the init functions. They should be used to do per-thread
291 * (re-)allocations that are needed by subsequent functoins. They must return 0
292 * if an error occurred. */
293struct list per_thread_alloc_list = LIST_HEAD_INIT(per_thread_alloc_list);
294struct per_thread_alloc_fct {
Willy Tarreau05554e62016-12-21 20:46:26 +0100295 struct list list;
Willy Tarreau082b6282019-05-22 14:42:12 +0200296 int (*fct)();
Willy Tarreau05554e62016-12-21 20:46:26 +0100297};
298
Christopher Faulet415f6112017-07-25 16:52:58 +0200299/* These functions are called for each thread just after the thread creation
300 * and before running the scheduler. They should be used to do per-thread
301 * initializations. They must return 0 if an error occurred. */
302struct list per_thread_init_list = LIST_HEAD_INIT(per_thread_init_list);
303struct per_thread_init_fct {
304 struct list list;
305 int (*fct)();
306};
307
Willy Tarreau082b6282019-05-22 14:42:12 +0200308/* These functions are called when freeing the global sections at the end of
309 * deinit, after everything is stopped. They don't return anything. They should
310 * not release shared resources that are possibly used by other deinit
311 * functions, only close/release what is private. Use the per_thread_free_list
312 * to release shared resources.
313 */
314struct list post_deinit_list = LIST_HEAD_INIT(post_deinit_list);
315struct post_deinit_fct {
316 struct list list;
317 void (*fct)();
318};
319
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +0200320/* These functions are called when freeing a proxy during the deinit, after
321 * everything isg stopped. They don't return anything. They should not release
322 * the proxy itself or any shared resources that are possibly used by other
323 * deinit functions, only close/release what is private.
324 */
325struct list proxy_deinit_list = LIST_HEAD_INIT(proxy_deinit_list);
326struct proxy_deinit_fct {
327 struct list list;
328 void (*fct)(struct proxy *);
329};
330
331/* These functions are called when freeing a server during the deinit, after
332 * everything isg stopped. They don't return anything. They should not release
333 * the proxy itself or any shared resources that are possibly used by other
334 * deinit functions, only close/release what is private.
335 */
336struct list server_deinit_list = LIST_HEAD_INIT(server_deinit_list);
337struct server_deinit_fct {
338 struct list list;
339 void (*fct)(struct server *);
340};
341
Willy Tarreau082b6282019-05-22 14:42:12 +0200342/* These functions are called when freeing the global sections at the end of
343 * deinit, after the thread deinit functions, to release unneeded memory
344 * allocations. They don't return anything, and they work in best effort mode
345 * as their sole goal is to make valgrind mostly happy.
346 */
347struct list per_thread_free_list = LIST_HEAD_INIT(per_thread_free_list);
348struct per_thread_free_fct {
349 struct list list;
350 int (*fct)();
351};
352
Christopher Faulet415f6112017-07-25 16:52:58 +0200353/* These functions are called for each thread just after the scheduler loop and
354 * before exiting the thread. They don't return anything and, as for post-deinit
355 * functions, they work in best effort mode as their sole goal is to make
356 * valgrind mostly happy. */
357struct list per_thread_deinit_list = LIST_HEAD_INIT(per_thread_deinit_list);
358struct per_thread_deinit_fct {
359 struct list list;
360 void (*fct)();
361};
362
Willy Tarreaubaaee002006-06-26 02:48:02 +0200363/*********************************************************************/
364/* general purpose functions ***************************************/
365/*********************************************************************/
366
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100367/* used to register some build option strings at boot. Set must_free to
368 * non-zero if the string must be freed upon exit.
369 */
370void hap_register_build_opts(const char *str, int must_free)
371{
372 struct build_opts_str *b;
373
374 b = calloc(1, sizeof(*b));
375 if (!b) {
376 fprintf(stderr, "out of memory\n");
377 exit(1);
378 }
379 b->str = str;
380 b->must_free = must_free;
381 LIST_ADDQ(&build_opts_list, &b->list);
382}
383
Willy Tarreaue6945732016-12-21 19:57:00 +0100384/* used to register some initialization functions to call after the checks. */
385void hap_register_post_check(int (*fct)())
386{
387 struct post_check_fct *b;
388
389 b = calloc(1, sizeof(*b));
390 if (!b) {
391 fprintf(stderr, "out of memory\n");
392 exit(1);
393 }
394 b->fct = fct;
395 LIST_ADDQ(&post_check_list, &b->list);
396}
397
Christopher Fauletc1692962019-08-12 09:51:07 +0200398/* used to register some initialization functions to call for each proxy after
399 * the checks.
400 */
401void hap_register_post_proxy_check(int (*fct)(struct proxy *))
402{
403 struct post_proxy_check_fct *b;
404
405 b = calloc(1, sizeof(*b));
406 if (!b) {
407 fprintf(stderr, "out of memory\n");
408 exit(1);
409 }
410 b->fct = fct;
411 LIST_ADDQ(&post_proxy_check_list, &b->list);
412}
413
414/* used to register some initialization functions to call for each server after
415 * the checks.
416 */
417void hap_register_post_server_check(int (*fct)(struct server *))
418{
419 struct post_server_check_fct *b;
420
421 b = calloc(1, sizeof(*b));
422 if (!b) {
423 fprintf(stderr, "out of memory\n");
424 exit(1);
425 }
426 b->fct = fct;
427 LIST_ADDQ(&post_server_check_list, &b->list);
428}
429
Willy Tarreau05554e62016-12-21 20:46:26 +0100430/* used to register some de-initialization functions to call after everything
431 * has stopped.
432 */
433void hap_register_post_deinit(void (*fct)())
434{
435 struct post_deinit_fct *b;
436
437 b = calloc(1, sizeof(*b));
438 if (!b) {
439 fprintf(stderr, "out of memory\n");
440 exit(1);
441 }
442 b->fct = fct;
443 LIST_ADDQ(&post_deinit_list, &b->list);
444}
445
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +0200446/* used to register some per proxy de-initialization functions to call after
447 * everything has stopped.
448 */
449void hap_register_proxy_deinit(void (*fct)(struct proxy *))
450{
451 struct proxy_deinit_fct *b;
452
453 b = calloc(1, sizeof(*b));
454 if (!b) {
455 fprintf(stderr, "out of memory\n");
456 exit(1);
457 }
458 b->fct = fct;
459 LIST_ADDQ(&proxy_deinit_list, &b->list);
460}
461
462
463/* used to register some per server de-initialization functions to call after
464 * everything has stopped.
465 */
466void hap_register_server_deinit(void (*fct)(struct server *))
467{
468 struct server_deinit_fct *b;
469
470 b = calloc(1, sizeof(*b));
471 if (!b) {
472 fprintf(stderr, "out of memory\n");
473 exit(1);
474 }
475 b->fct = fct;
476 LIST_ADDQ(&server_deinit_list, &b->list);
477}
478
Willy Tarreau082b6282019-05-22 14:42:12 +0200479/* used to register some allocation functions to call for each thread. */
480void hap_register_per_thread_alloc(int (*fct)())
481{
482 struct per_thread_alloc_fct *b;
483
484 b = calloc(1, sizeof(*b));
485 if (!b) {
486 fprintf(stderr, "out of memory\n");
487 exit(1);
488 }
489 b->fct = fct;
490 LIST_ADDQ(&per_thread_alloc_list, &b->list);
491}
492
Christopher Faulet415f6112017-07-25 16:52:58 +0200493/* used to register some initialization functions to call for each thread. */
494void hap_register_per_thread_init(int (*fct)())
495{
496 struct per_thread_init_fct *b;
497
498 b = calloc(1, sizeof(*b));
499 if (!b) {
500 fprintf(stderr, "out of memory\n");
501 exit(1);
502 }
503 b->fct = fct;
504 LIST_ADDQ(&per_thread_init_list, &b->list);
505}
506
507/* used to register some de-initialization functions to call for each thread. */
508void hap_register_per_thread_deinit(void (*fct)())
509{
510 struct per_thread_deinit_fct *b;
511
512 b = calloc(1, sizeof(*b));
513 if (!b) {
514 fprintf(stderr, "out of memory\n");
515 exit(1);
516 }
517 b->fct = fct;
518 LIST_ADDQ(&per_thread_deinit_list, &b->list);
519}
520
Willy Tarreau082b6282019-05-22 14:42:12 +0200521/* used to register some free functions to call for each thread. */
522void hap_register_per_thread_free(int (*fct)())
523{
524 struct per_thread_free_fct *b;
525
526 b = calloc(1, sizeof(*b));
527 if (!b) {
528 fprintf(stderr, "out of memory\n");
529 exit(1);
530 }
531 b->fct = fct;
532 LIST_ADDQ(&per_thread_free_list, &b->list);
533}
534
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100535static void display_version()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200536{
Tim Duesterhusdfad6a42020-04-18 16:02:47 +0200537 struct utsname utsname;
538
Willy Tarreau08dd2022019-11-21 18:07:30 +0100539 printf("HA-Proxy version %s %s - https://haproxy.org/\n"
540 PRODUCT_STATUS "\n", haproxy_version, haproxy_date);
Willy Tarreau47479eb2019-11-21 18:48:20 +0100541
542 if (strlen(PRODUCT_URL_BUGS) > 0) {
543 char base_version[20];
544 int dots = 0;
545 char *del;
546
547 /* only retrieve the base version without distro-specific extensions */
548 for (del = haproxy_version; *del; del++) {
549 if (*del == '.')
550 dots++;
551 else if (*del < '0' || *del > '9')
552 break;
553 }
554
555 strlcpy2(base_version, haproxy_version, del - haproxy_version + 1);
556 if (dots < 2)
557 printf("Known bugs: https://github.com/haproxy/haproxy/issues?q=is:issue+is:open\n");
558 else
559 printf("Known bugs: " PRODUCT_URL_BUGS "\n", base_version);
560 }
Tim Duesterhusdfad6a42020-04-18 16:02:47 +0200561
562 if (uname(&utsname) == 0) {
563 printf("Running on: %s %s %s %s\n", utsname.sysname, utsname.release, utsname.version, utsname.machine);
564 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200565}
566
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100567static void display_build_opts()
Willy Tarreau7b066db2007-12-02 11:28:59 +0100568{
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100569 struct build_opts_str *item;
570
Willy Tarreau7b066db2007-12-02 11:28:59 +0100571 printf("Build options :"
572#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100573 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100574#endif
575#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100576 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100577#endif
578#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100579 "\n CC = " BUILD_CC
580#endif
581#ifdef BUILD_CFLAGS
582 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100583#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100584#ifdef BUILD_OPTIONS
585 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100586#endif
Willy Tarreau7728ed32019-03-27 13:20:08 +0100587#ifdef BUILD_FEATURES
588 "\n\nFeature list : " BUILD_FEATURES
589#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200590 "\n\nDefault settings :"
Willy Tarreauca783d42019-03-13 10:03:07 +0100591 "\n bufsize = %d, maxrewrite = %d, maxpollevents = %d"
Willy Tarreau27a674e2009-08-17 07:23:33 +0200592 "\n\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100593 BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200594
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100595 list_for_each_entry(item, &build_opts_list, list) {
596 puts(item->str);
597 }
598
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100599 putchar('\n');
600
Willy Tarreaube5b6852009-10-03 18:57:08 +0200601 list_pollers(stdout);
602 putchar('\n');
Christopher Faulet98d9fe22018-04-10 14:37:32 +0200603 list_mux_proto(stdout);
604 putchar('\n');
Willy Tarreau679bba12019-03-19 08:08:10 +0100605 list_services(stdout);
606 putchar('\n');
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100607 list_filters(stdout);
608 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100609}
610
Willy Tarreaubaaee002006-06-26 02:48:02 +0200611/*
612 * This function prints the command line usage and exits
613 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100614static void usage(char *name)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200615{
616 display_version();
617 fprintf(stderr,
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200618 "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200619 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreaua088d312015-10-08 11:58:48 +0200620 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100621 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200622 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200623 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200624 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200625 " -D goes daemon ; -C changes to <dir> before loading files.\n"
William Lallemand095ba4c2017-06-01 17:38:50 +0200626 " -W master-worker mode.\n"
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100627#if defined(USE_SYSTEMD)
628 " -Ws master-worker mode with systemd notify support.\n"
629#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200630 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200631 " -c check mode : only check config files and exit\n"
Willy Tarreauca783d42019-03-13 10:03:07 +0100632 " -n sets the maximum total # of connections (uses ulimit -n)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200633 " -m limits the usable amount of memory (in MB)\n"
634 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200635 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200636 " -p writes pids of all children to this file\n"
Willy Tarreaue5733232019-05-22 19:24:06 +0200637#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200638 " -de disables epoll() usage even when available\n"
639#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200640#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200641 " -dk disables kqueue() usage even when available\n"
642#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200643#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +0000644 " -dv disables event ports usage even when available\n"
645#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200646#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200647 " -dp disables poll() usage even when available\n"
648#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200649#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100650 " -dS disables splice usage (broken on old kernels)\n"
651#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200652#if defined(USE_GETADDRINFO)
653 " -dG disables getaddrinfo() usage\n"
654#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000655#if defined(SO_REUSEPORT)
656 " -dR disables SO_REUSEPORT usage\n"
657#endif
Willy Tarreau3eed10e2016-11-07 21:03:16 +0100658 " -dr ignores server address resolution failures\n"
Emeric Brun850efd52014-01-29 12:24:34 +0100659 " -dV disables SSL verify on servers side\n"
Willy Tarreau3eb10b82020-04-15 16:42:39 +0200660 " -dW fails if any warning is emitted\n"
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200661 " -sf/-st [pid ]* finishes/terminates old pids.\n"
Olivier Houchardf73629d2017-04-05 22:33:04 +0200662 " -x <unix_socket> get listening sockets from a unix socket\n"
William Lallemand63329e32019-06-13 17:03:37 +0200663 " -S <bind>[,<bind options>...] new master CLI\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200664 "\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100665 name, cfg_maxpconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200666 exit(1);
667}
668
669
670
671/*********************************************************************/
672/* more specific functions ***************************************/
673/*********************************************************************/
674
William Lallemand73b85e72017-06-01 17:38:51 +0200675/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
676 * pids the signal was correctly delivered to.
677 */
William Lallemande25473c2019-04-01 11:29:56 +0200678int tell_old_pids(int sig)
William Lallemand73b85e72017-06-01 17:38:51 +0200679{
680 int p;
681 int ret = 0;
682 for (p = 0; p < nb_oldpids; p++)
683 if (kill(oldpids[p], sig) == 0)
684 ret++;
685 return ret;
686}
687
William Lallemand75ea0a02017-11-15 19:02:58 +0100688/*
William Lallemand73b85e72017-06-01 17:38:51 +0200689 * remove a pid forom the olpid array and decrease nb_oldpids
690 * return 1 pid was found otherwise return 0
691 */
692
693int delete_oldpid(int pid)
694{
695 int i;
696
697 for (i = 0; i < nb_oldpids; i++) {
698 if (oldpids[i] == pid) {
699 oldpids[i] = oldpids[nb_oldpids - 1];
700 oldpids[nb_oldpids - 1] = 0;
701 nb_oldpids--;
702 return 1;
703 }
704 }
705 return 0;
706}
707
William Lallemand85b0bd92017-06-01 17:38:53 +0200708
709static void get_cur_unixsocket()
710{
711 /* if -x was used, try to update the stat socket if not available anymore */
712 if (global.stats_fe) {
713 struct bind_conf *bind_conf;
714
715 /* pass through all stats socket */
716 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
717 struct listener *l;
718
719 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
720
721 if (l->addr.ss_family == AF_UNIX &&
722 (bind_conf->level & ACCESS_FD_LISTENERS)) {
723 const struct sockaddr_un *un;
724
725 un = (struct sockaddr_un *)&l->addr;
726 /* priority to old_unixsocket */
727 if (!cur_unixsocket) {
728 cur_unixsocket = strdup(un->sun_path);
729 } else {
730 if (old_unixsocket && !strcmp(un->sun_path, old_unixsocket)) {
731 free(cur_unixsocket);
732 cur_unixsocket = strdup(old_unixsocket);
733 return;
734 }
735 }
736 }
737 }
738 }
739 }
740 if (!cur_unixsocket && old_unixsocket)
741 cur_unixsocket = strdup(old_unixsocket);
742}
743
William Lallemand73b85e72017-06-01 17:38:51 +0200744/*
745 * When called, this function reexec haproxy with -sf followed by current
Joseph Herlant03420902018-11-15 10:41:50 -0800746 * children PIDs and possibly old children PIDs if they didn't leave yet.
William Lallemand73b85e72017-06-01 17:38:51 +0200747 */
William Lallemanda57b7e32018-12-14 21:11:31 +0100748void mworker_reload()
William Lallemand73b85e72017-06-01 17:38:51 +0200749{
William Lallemand00417412020-06-05 14:08:41 +0200750 char **next_argv = NULL;
751 int old_argc = 0; /* previous number of argument */
William Lallemand73b85e72017-06-01 17:38:51 +0200752 int next_argc = 0;
William Lallemand00417412020-06-05 14:08:41 +0200753 int i = 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 */
William Lallemand00417412020-06-05 14:08:41 +0200797 while (old_argv[old_argc])
798 old_argc++;
William Lallemand73b85e72017-06-01 17:38:51 +0200799
William Lallemand85b0bd92017-06-01 17:38:53 +0200800 /* 1 for haproxy -sf, 2 for -x /socket */
William Lallemand00417412020-06-05 14:08:41 +0200801 next_argv = calloc(old_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 Lallemand00417412020-06-05 14:08:41 +0200805 /* copy the program name */
806 next_argv[next_argc++] = old_argv[0];
807
808 /* insert the new options just after argv[0] in case we have a -- */
809
William Lallemand73b85e72017-06-01 17:38:51 +0200810 /* add -sf <PID>* to argv */
William Lallemand3f128872019-04-01 11:29:59 +0200811 if (mworker_child_nb() > 0) {
812 struct mworker_proc *child;
813
William Lallemand73b85e72017-06-01 17:38:51 +0200814 next_argv[next_argc++] = "-sf";
William Lallemand3f128872019-04-01 11:29:59 +0200815
816 list_for_each_entry(child, &proc_list, list) {
William Lallemand677e2f22019-11-19 17:04:18 +0100817 if (!(child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) || child->pid <= -1 )
William Lallemand3f128872019-04-01 11:29:59 +0200818 continue;
William Lallemand00417412020-06-05 14:08:41 +0200819 if ((next_argv[next_argc++] = memprintf(&msg, "%d", child->pid)) == NULL)
William Lallemand73b85e72017-06-01 17:38:51 +0200820 goto alloc_error;
821 msg = NULL;
822 }
823 }
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) {
William Lallemand2bf6d622017-06-20 11:20:23 +0200826 next_argv[next_argc++] = "-x";
827 next_argv[next_argc++] = (char *)cur_unixsocket;
William Lallemand85b0bd92017-06-01 17:38:53 +0200828 }
829
William Lallemand00417412020-06-05 14:08:41 +0200830 /* copy the previous options */
831 for (i = 1; i < old_argc; i++)
832 next_argv[next_argc++] = old_argv[i];
833
Christopher Faulet767a84b2017-11-24 16:50:31 +0100834 ha_warning("Reexecuting Master process\n");
Willy Tarreaue0d86e22019-08-26 10:37:39 +0200835 signal(SIGPROF, SIG_IGN);
Tim Duesterhus0436ab72017-11-12 17:39:18 +0100836 execvp(next_argv[0], next_argv);
William Lallemand73b85e72017-06-01 17:38:51 +0200837
Christopher Faulet767a84b2017-11-24 16:50:31 +0100838 ha_warning("Failed to reexecute the master process [%d]: %s\n", pid, strerror(errno));
William Lallemand9fc6c972020-06-08 10:01:13 +0200839 free(next_argv);
840 next_argv = NULL;
William Lallemand722d4ca2017-11-15 19:02:55 +0100841 return;
842
William Lallemand73b85e72017-06-01 17:38:51 +0200843alloc_error:
William Lallemand00417412020-06-05 14:08:41 +0200844 free(next_argv);
845 next_argv = NULL;
Joseph Herlant07a08342018-11-15 10:43:05 -0800846 ha_warning("Failed to reexecute the master process [%d]: Cannot allocate memory\n", pid);
William Lallemand73b85e72017-06-01 17:38:51 +0200847 return;
848}
849
William Lallemandb3f2be32018-09-11 10:06:18 +0200850static void mworker_loop()
851{
852
853#if defined(USE_SYSTEMD)
854 if (global.tune.options & GTUNE_USE_SYSTEMD)
855 sd_notifyf(0, "READY=1\nMAINPID=%lu", (unsigned long)getpid());
856#endif
Willy Tarreaud83b6c12019-04-18 11:31:36 +0200857 /* Busy polling makes no sense in the master :-) */
858 global.tune.options &= ~GTUNE_BUSY_POLLING;
William Lallemandb3f2be32018-09-11 10:06:18 +0200859
William Lallemandbc193052018-09-11 10:06:26 +0200860 master = 1;
861
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100862 signal_unregister(SIGTTIN);
863 signal_unregister(SIGTTOU);
William Lallemand0564d412018-11-20 17:36:53 +0100864 signal_unregister(SIGUSR1);
865 signal_unregister(SIGHUP);
866 signal_unregister(SIGQUIT);
867
William Lallemandb3f2be32018-09-11 10:06:18 +0200868 signal_register_fct(SIGTERM, mworker_catch_sigterm, SIGTERM);
869 signal_register_fct(SIGUSR1, mworker_catch_sigterm, SIGUSR1);
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100870 signal_register_fct(SIGTTIN, mworker_broadcast_signal, SIGTTIN);
871 signal_register_fct(SIGTTOU, mworker_broadcast_signal, SIGTTOU);
William Lallemandb3f2be32018-09-11 10:06:18 +0200872 signal_register_fct(SIGINT, mworker_catch_sigterm, SIGINT);
873 signal_register_fct(SIGHUP, mworker_catch_sighup, SIGHUP);
874 signal_register_fct(SIGUSR2, mworker_catch_sighup, SIGUSR2);
875 signal_register_fct(SIGCHLD, mworker_catch_sigchld, SIGCHLD);
876
877 mworker_unblock_signals();
878 mworker_cleanlisteners();
William Lallemand27f3fa52018-12-06 14:05:20 +0100879 mworker_cleantasks();
William Lallemandb3f2be32018-09-11 10:06:18 +0200880
William Lallemandbc193052018-09-11 10:06:26 +0200881 mworker_catch_sigchld(NULL); /* ensure we clean the children in case
882 some SIGCHLD were lost */
883
William Lallemandb3f2be32018-09-11 10:06:18 +0200884 global.nbthread = 1;
885 relative_pid = 1;
886 pid_bit = 1;
Willy Tarreaua38a7172019-02-02 17:11:28 +0100887 all_proc_mask = 1;
William Lallemandb3f2be32018-09-11 10:06:18 +0200888
William Lallemand2672eb92018-12-14 15:52:39 +0100889#ifdef USE_THREAD
890 tid_bit = 1;
891 all_threads_mask = 1;
892#endif
893
William Lallemandb3f2be32018-09-11 10:06:18 +0200894 jobs++; /* this is the "master" job, we want to take care of the
895 signals even if there is no listener so the poll loop don't
896 leave */
897
898 fork_poller();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +0200899 run_thread_poll_loop(0);
William Lallemandb3f2be32018-09-11 10:06:18 +0200900}
William Lallemandcb11fd22017-06-01 17:38:52 +0200901
902/*
903 * Reexec the process in failure mode, instead of exiting
904 */
905void reexec_on_failure()
906{
907 if (!atexit_flag)
908 return;
909
910 setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1);
911
Christopher Faulet767a84b2017-11-24 16:50:31 +0100912 ha_warning("Reexecuting Master process in waitpid mode\n");
William Lallemandcb11fd22017-06-01 17:38:52 +0200913 mworker_reload();
William Lallemandcb11fd22017-06-01 17:38:52 +0200914}
William Lallemand73b85e72017-06-01 17:38:51 +0200915
916
917/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200918 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
919 * a signal zero to all subscribers. This means that it's as easy as
920 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200921 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100922static void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200923{
924 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200925 signal_unregister_handler(sh);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100926 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200927}
928
929/*
930 * upon SIGTTOU, we pause everything
931 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100932static void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200933{
934 pause_proxies();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100935 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200936}
937
938/*
939 * upon SIGTTIN, let's have a soft stop.
940 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100941static void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200942{
Willy Tarreaube58c382011-07-24 18:28:10 +0200943 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200944}
945
946/*
947 * this function dumps every server's state when the process receives SIGHUP.
948 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100949static void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200950{
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100951 struct proxy *p = proxies_list;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200952
Christopher Faulet767a84b2017-11-24 16:50:31 +0100953 ha_warning("SIGHUP received, dumping servers states.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200954 while (p) {
955 struct server *s = p->srv;
956
957 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
958 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100959 chunk_printf(&trash,
960 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
961 p->id, s->id,
Emeric Brun52a91d32017-08-31 14:41:55 +0200962 (s->cur_state != SRV_ST_STOPPED) ? "UP" : "DOWN",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100963 s->cur_sess, s->nbpend, s->counters.cum_sess);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200964 ha_warning("%s\n", trash.area);
965 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200966 s = s->next;
967 }
968
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200969 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
970 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100971 chunk_printf(&trash,
972 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
973 p->id,
974 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 +0200975 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100976 chunk_printf(&trash,
977 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
978 p->id,
979 (p->srv_bck) ? "is running on backup servers" : "has no server available",
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 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100982 chunk_printf(&trash,
983 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
984 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
985 p->id, p->srv_act, p->srv_bck,
986 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 +0200987 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200988 ha_warning("%s\n", trash.area);
989 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200990
991 p = p->next;
992 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200993}
994
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100995static void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200996{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200997 /* dump memory usage then free everything possible */
998 dump_pools();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100999 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001000}
1001
William Lallemande1340412017-12-28 16:09:36 +01001002/*
1003 * This function dup2 the stdio FDs (0,1,2) with <fd>, then closes <fd>
1004 * If <fd> < 0, it opens /dev/null and use it to dup
1005 *
1006 * In the case of chrooting, you have to open /dev/null before the chroot, and
1007 * pass the <fd> to this function
1008 */
1009static void stdio_quiet(int fd)
1010{
1011 if (fd < 0)
1012 fd = open("/dev/null", O_RDWR, 0);
1013
1014 if (fd > -1) {
1015 fclose(stdin);
1016 fclose(stdout);
1017 fclose(stderr);
1018
1019 dup2(fd, 0);
1020 dup2(fd, 1);
1021 dup2(fd, 2);
1022 if (fd > 2)
1023 close(fd);
1024 return;
1025 }
1026
1027 ha_alert("Cannot open /dev/null\n");
1028 exit(EXIT_FAILURE);
1029}
1030
1031
Joseph Herlant03420902018-11-15 10:41:50 -08001032/* This function checks if cfg_cfgfiles contains directories.
1033 * If it finds one, it adds all the files (and only files) it contains
1034 * in cfg_cfgfiles in place of the directory (and removes the directory).
1035 * It adds the files in lexical order.
1036 * It adds only files with .cfg extension.
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001037 * It doesn't add files with name starting with '.'
1038 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001039static void cfgfiles_expand_directories(void)
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001040{
1041 struct wordlist *wl, *wlb;
1042 char *err = NULL;
1043
1044 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
1045 struct stat file_stat;
1046 struct dirent **dir_entries = NULL;
1047 int dir_entries_nb;
1048 int dir_entries_it;
1049
1050 if (stat(wl->s, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001051 ha_alert("Cannot open configuration file/directory %s : %s\n",
1052 wl->s,
1053 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001054 exit(1);
1055 }
1056
1057 if (!S_ISDIR(file_stat.st_mode))
1058 continue;
1059
1060 /* from this point wl->s is a directory */
1061
1062 dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort);
1063 if (dir_entries_nb < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001064 ha_alert("Cannot open configuration directory %s : %s\n",
1065 wl->s,
1066 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001067 exit(1);
1068 }
1069
1070 /* for each element in the directory wl->s */
1071 for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) {
1072 struct dirent *dir_entry = dir_entries[dir_entries_it];
1073 char *filename = NULL;
1074 char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg");
1075
1076 /* don't add filename that begin with .
Joseph Herlant03420902018-11-15 10:41:50 -08001077 * only add filename with .cfg extension
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001078 */
1079 if (dir_entry->d_name[0] == '.' ||
1080 !(d_name_cfgext && d_name_cfgext[4] == '\0'))
1081 goto next_dir_entry;
1082
1083 if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001084 ha_alert("Cannot load configuration files %s : out of memory.\n",
1085 filename);
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001086 exit(1);
1087 }
1088
1089 if (stat(filename, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001090 ha_alert("Cannot open configuration file %s : %s\n",
1091 wl->s,
1092 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001093 exit(1);
1094 }
1095
1096 /* don't add anything else than regular file in cfg_cfgfiles
1097 * this way we avoid loops
1098 */
1099 if (!S_ISREG(file_stat.st_mode))
1100 goto next_dir_entry;
1101
1102 if (!list_append_word(&wl->list, filename, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001103 ha_alert("Cannot load configuration files %s : %s\n",
1104 filename,
1105 err);
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001106 exit(1);
1107 }
1108
1109next_dir_entry:
1110 free(filename);
1111 free(dir_entry);
1112 }
1113
1114 free(dir_entries);
1115
1116 /* remove the current directory (wl) from cfg_cfgfiles */
1117 free(wl->s);
1118 LIST_DEL(&wl->list);
1119 free(wl);
1120 }
1121
1122 free(err);
1123}
1124
Willy Tarreaufebbce82020-08-28 18:45:01 +02001125/* Retrieves old sockets from worker process running the CLI at address
1126 * <unixsocket>. Fills xfer_sock_list with what is found. Returns 0 on
1127 * success, -1 on failure.
1128 */
Olivier Houchardf73629d2017-04-05 22:33:04 +02001129static int get_old_sockets(const char *unixsocket)
1130{
1131 char *cmsgbuf = NULL, *tmpbuf = NULL;
1132 int *tmpfd = NULL;
1133 struct sockaddr_un addr;
1134 struct cmsghdr *cmsg;
1135 struct msghdr msghdr;
1136 struct iovec iov;
1137 struct xfer_sock_list *xfer_sock = NULL;
Olivier Houchard54740872017-04-06 14:45:14 +02001138 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Olivier Houchardf73629d2017-04-05 22:33:04 +02001139 int sock = -1;
1140 int ret = -1;
1141 int ret2 = -1;
1142 int fd_nb;
1143 int got_fd = 0;
1144 int i = 0;
1145 size_t maxoff = 0, curoff = 0;
1146
1147 memset(&msghdr, 0, sizeof(msghdr));
1148 cmsgbuf = malloc(CMSG_SPACE(sizeof(int)) * MAX_SEND_FD);
1149 if (!cmsgbuf) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001150 ha_warning("Failed to allocate memory to send sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001151 goto out;
1152 }
1153 sock = socket(PF_UNIX, SOCK_STREAM, 0);
1154 if (sock < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001155 ha_warning("Failed to connect to the old process socket '%s'\n",
1156 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001157 goto out;
1158 }
Willy Tarreau719e07c2019-12-11 16:29:10 +01001159 strncpy(addr.sun_path, unixsocket, sizeof(addr.sun_path) - 1);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001160 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
1161 addr.sun_family = PF_UNIX;
1162 ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr));
1163 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001164 ha_warning("Failed to connect to the old process socket '%s'\n",
1165 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001166 goto out;
1167 }
Olivier Houchard54740872017-04-06 14:45:14 +02001168 setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001169 iov.iov_base = &fd_nb;
1170 iov.iov_len = sizeof(fd_nb);
1171 msghdr.msg_iov = &iov;
1172 msghdr.msg_iovlen = 1;
1173 send(sock, "_getsocks\n", strlen("_getsocks\n"), 0);
1174 /* First, get the number of file descriptors to be received */
1175 if (recvmsg(sock, &msghdr, MSG_WAITALL) != sizeof(fd_nb)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001176 ha_warning("Failed to get the number of sockets to be transferred !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001177 goto out;
1178 }
1179 if (fd_nb == 0) {
Willy Tarreaufebbce82020-08-28 18:45:01 +02001180 ret2 = 0;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001181 goto out;
1182 }
Olivier Houchardf143b802017-11-04 15:13:01 +01001183 tmpbuf = malloc(fd_nb * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001184 if (tmpbuf == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001185 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001186 goto out;
1187 }
1188 tmpfd = malloc(fd_nb * sizeof(int));
1189 if (tmpfd == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001190 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001191 goto out;
1192 }
1193 msghdr.msg_control = cmsgbuf;
1194 msghdr.msg_controllen = CMSG_SPACE(sizeof(int)) * MAX_SEND_FD;
Olivier Houchardf143b802017-11-04 15:13:01 +01001195 iov.iov_len = MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001196 do {
1197 int ret3;
1198
1199 iov.iov_base = tmpbuf + curoff;
1200 ret = recvmsg(sock, &msghdr, 0);
1201 if (ret == -1 && errno == EINTR)
1202 continue;
1203 if (ret <= 0)
1204 break;
1205 /* Send an ack to let the sender know we got the sockets
1206 * and it can send some more
1207 */
1208 do {
1209 ret3 = send(sock, &got_fd, sizeof(got_fd), 0);
1210 } while (ret3 == -1 && errno == EINTR);
1211 for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg != NULL;
1212 cmsg = CMSG_NXTHDR(&msghdr, cmsg)) {
1213 if (cmsg->cmsg_level == SOL_SOCKET &&
1214 cmsg->cmsg_type == SCM_RIGHTS) {
1215 size_t totlen = cmsg->cmsg_len -
1216 CMSG_LEN(0);
1217 if (totlen / sizeof(int) + got_fd > fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001218 ha_warning("Got to many sockets !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001219 goto out;
1220 }
1221 /*
1222 * Be paranoid and use memcpy() to avoid any
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05001223 * potential alignment issue.
Olivier Houchardf73629d2017-04-05 22:33:04 +02001224 */
1225 memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen);
1226 got_fd += totlen / sizeof(int);
1227 }
1228 }
1229 curoff += ret;
1230 } while (got_fd < fd_nb);
1231
1232 if (got_fd != fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001233 ha_warning("We didn't get the expected number of sockets (expecting %d got %d)\n",
1234 fd_nb, got_fd);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001235 goto out;
1236 }
1237 maxoff = curoff;
1238 curoff = 0;
1239 for (i = 0; i < got_fd; i++) {
1240 int fd = tmpfd[i];
1241 socklen_t socklen;
1242 int len;
1243
1244 xfer_sock = calloc(1, sizeof(*xfer_sock));
1245 if (!xfer_sock) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001246 ha_warning("Failed to allocate memory in get_old_sockets() !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001247 break;
1248 }
1249 xfer_sock->fd = -1;
1250
1251 socklen = sizeof(xfer_sock->addr);
1252 if (getsockname(fd, (struct sockaddr *)&xfer_sock->addr, &socklen) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001253 ha_warning("Failed to get socket address\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001254 free(xfer_sock);
Olivier Houchardbe7b1ce2017-07-17 17:25:33 +02001255 xfer_sock = NULL;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001256 continue;
1257 }
1258 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001259 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001260 goto out;
1261 }
1262 len = tmpbuf[curoff++];
1263 if (len > 0) {
1264 /* We have a namespace */
1265 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001266 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001267 goto out;
1268 }
1269 xfer_sock->namespace = malloc(len + 1);
1270 if (!xfer_sock->namespace) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001271 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001272 goto out;
1273 }
1274 memcpy(xfer_sock->namespace, &tmpbuf[curoff], len);
1275 xfer_sock->namespace[len] = 0;
1276 curoff += len;
1277 }
1278 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001279 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001280 goto out;
1281 }
1282 len = tmpbuf[curoff++];
1283 if (len > 0) {
1284 /* We have an interface */
1285 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001286 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001287 goto out;
1288 }
1289 xfer_sock->iface = malloc(len + 1);
1290 if (!xfer_sock->iface) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001291 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001292 goto out;
1293 }
1294 memcpy(xfer_sock->iface, &tmpbuf[curoff], len);
Olivier Houchard33e083c2018-03-15 17:48:49 +01001295 xfer_sock->iface[len] = 0;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001296 curoff += len;
1297 }
1298 if (curoff + sizeof(int) > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001299 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001300 goto out;
1301 }
Willy Tarreaucf1f1932020-08-26 10:30:09 +02001302
1303 /* we used to have 32 bits of listener options here but we don't
1304 * use them anymore.
1305 */
1306 curoff += sizeof(int);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001307
Willy Tarreaubf3b06b2020-08-26 10:23:40 +02001308 /* determine the foreign status directly from the socket itself */
Willy Tarreaubf3b06b2020-08-26 10:23:40 +02001309 if (tcp_is_foreign(fd, xfer_sock->addr.ss_family))
1310 xfer_sock->options |= LI_O_FOREIGN;
1311
Willy Tarreaubca5a4e2020-08-26 09:29:21 +02001312 /* keep only the v6only flag depending on what's currently
1313 * active on the socket, and always drop the v4v6 one.
1314 */
Willy Tarreaucf1f1932020-08-26 10:30:09 +02001315#if defined(IPV6_V6ONLY)
Willy Tarreaubca5a4e2020-08-26 09:29:21 +02001316 {
1317 int val = 0;
Willy Tarreaubca5a4e2020-08-26 09:29:21 +02001318 socklen_t len = sizeof(val);
1319
1320 if (xfer_sock->addr.ss_family == AF_INET6 &&
Willy Tarreaucf1f1932020-08-26 10:30:09 +02001321 getsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &val, &len) == 0 &&
1322 val > 0)
Willy Tarreaubca5a4e2020-08-26 09:29:21 +02001323 xfer_sock->options |= LI_O_V6ONLY;
Willy Tarreaubca5a4e2020-08-26 09:29:21 +02001324 }
Willy Tarreaucf1f1932020-08-26 10:30:09 +02001325#endif
Willy Tarreaubca5a4e2020-08-26 09:29:21 +02001326
Olivier Houchardf73629d2017-04-05 22:33:04 +02001327 xfer_sock->fd = fd;
1328 if (xfer_sock_list)
1329 xfer_sock_list->prev = xfer_sock;
1330 xfer_sock->next = xfer_sock_list;
1331 xfer_sock->prev = NULL;
1332 xfer_sock_list = xfer_sock;
1333 xfer_sock = NULL;
1334 }
1335
1336 ret2 = 0;
1337out:
1338 /* If we failed midway make sure to close the remaining
1339 * file descriptors
1340 */
1341 if (tmpfd != NULL && i < got_fd) {
1342 for (; i < got_fd; i++) {
1343 close(tmpfd[i]);
1344 }
1345 }
1346 free(tmpbuf);
1347 free(tmpfd);
1348 free(cmsgbuf);
1349 if (sock != -1)
1350 close(sock);
1351 if (xfer_sock) {
1352 free(xfer_sock->namespace);
1353 free(xfer_sock->iface);
1354 if (xfer_sock->fd != -1)
1355 close(xfer_sock->fd);
1356 free(xfer_sock);
1357 }
1358 return (ret2);
1359}
1360
Willy Tarreaubaaee002006-06-26 02:48:02 +02001361/*
William Lallemand73b85e72017-06-01 17:38:51 +02001362 * copy and cleanup the current argv
William Lallemanddf6c5a82020-06-04 17:40:23 +02001363 * Remove the -sf /-st / -x parameters
William Lallemand73b85e72017-06-01 17:38:51 +02001364 * Return an allocated copy of argv
1365 */
1366
1367static char **copy_argv(int argc, char **argv)
1368{
William Lallemanddf6c5a82020-06-04 17:40:23 +02001369 char **newargv, **retargv;
William Lallemand73b85e72017-06-01 17:38:51 +02001370
1371 newargv = calloc(argc + 2, sizeof(char *));
1372 if (newargv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001373 ha_warning("Cannot allocate memory\n");
William Lallemand73b85e72017-06-01 17:38:51 +02001374 return NULL;
1375 }
William Lallemanddf6c5a82020-06-04 17:40:23 +02001376 retargv = newargv;
William Lallemand73b85e72017-06-01 17:38:51 +02001377
William Lallemanddf6c5a82020-06-04 17:40:23 +02001378 /* first copy argv[0] */
1379 *newargv++ = *argv++;
1380 argc--;
1381
1382 while (argc > 0) {
1383 if (**argv != '-') {
1384 /* non options are copied but will fail in the argument parser */
1385 *newargv++ = *argv++;
1386 argc--;
1387
1388 } else {
1389 char *flag;
1390
1391 flag = *argv + 1;
1392
1393 if (flag[0] == '-' && flag[1] == 0) {
1394 /* "--\0" copy every arguments till the end of argv */
1395 *newargv++ = *argv++;
1396 argc--;
1397
1398 while (argc > 0) {
1399 *newargv++ = *argv++;
1400 argc--;
1401 }
1402 } else {
1403 switch (*flag) {
1404 case 's':
1405 /* -sf / -st and their parameters are ignored */
1406 if (flag[1] == 'f' || flag[1] == 't') {
1407 argc--;
1408 argv++;
1409 /* The list can't contain a negative value since the only
1410 way to know the end of this list is by looking for the
1411 next option or the end of the options */
1412 while (argc > 0 && argv[0][0] != '-') {
1413 argc--;
1414 argv++;
1415 }
1416 }
1417 break;
1418
1419 case 'x':
1420 /* this option and its parameter are ignored */
1421 argc--;
1422 argv++;
1423 if (argc > 0) {
1424 argc--;
1425 argv++;
1426 }
1427 break;
1428
1429 case 'C':
1430 case 'n':
1431 case 'm':
1432 case 'N':
1433 case 'L':
1434 case 'f':
1435 case 'p':
1436 case 'S':
1437 /* these options have only 1 parameter which must be copied and can start with a '-' */
1438 *newargv++ = *argv++;
1439 argc--;
1440 if (argc == 0)
1441 goto error;
1442 *newargv++ = *argv++;
1443 argc--;
1444 break;
1445 default:
1446 /* for other options just copy them without parameters, this is also done
1447 * for options like "--foo", but this will fail in the argument parser.
1448 * */
1449 *newargv++ = *argv++;
1450 argc--;
1451 break;
1452 }
William Lallemand73b85e72017-06-01 17:38:51 +02001453 }
1454 }
William Lallemand73b85e72017-06-01 17:38:51 +02001455 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001456
William Lallemanddf6c5a82020-06-04 17:40:23 +02001457 return retargv;
1458
1459error:
1460 free(retargv);
1461 return NULL;
William Lallemand73b85e72017-06-01 17:38:51 +02001462}
1463
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001464
1465/* Performs basic random seed initialization. The main issue with this is that
1466 * srandom_r() only takes 32 bits and purposely provides a reproducible sequence,
1467 * which means that there will only be 4 billion possible random sequences once
1468 * srandom() is called, regardless of the internal state. Not calling it is
1469 * even worse as we'll always produce the same randoms sequences. What we do
1470 * here is to create an initial sequence from various entropy sources, hash it
1471 * using SHA1 and keep the resulting 160 bits available globally.
1472 *
1473 * We initialize the current process with the first 32 bits before starting the
1474 * polling loop, where all this will be changed to have process specific and
1475 * thread specific sequences.
Willy Tarreau52bf8392020-03-08 00:42:37 +01001476 *
1477 * Before starting threads, it's still possible to call random() as srandom()
1478 * is initialized from this, but after threads and/or processes are started,
1479 * only ha_random() is expected to be used to guarantee distinct sequences.
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001480 */
1481static void ha_random_boot(char *const *argv)
1482{
1483 unsigned char message[256];
1484 unsigned char *m = message;
1485 struct timeval tv;
1486 blk_SHA_CTX ctx;
1487 unsigned long l;
1488 int fd;
1489 int i;
1490
1491 /* start with current time as pseudo-random seed */
1492 gettimeofday(&tv, NULL);
1493 write_u32(m, tv.tv_sec); m += 4;
1494 write_u32(m, tv.tv_usec); m += 4;
1495
1496 /* PID and PPID add some OS-based randomness */
1497 write_u16(m, getpid()); m += 2;
1498 write_u16(m, getppid()); m += 2;
1499
1500 /* take up to 160 bits bytes from /dev/urandom if available (non-blocking) */
1501 fd = open("/dev/urandom", O_RDONLY);
1502 if (fd >= 0) {
1503 i = read(fd, m, 20);
1504 if (i > 0)
1505 m += i;
1506 close(fd);
1507 }
1508
1509 /* take up to 160 bits bytes from openssl (non-blocking) */
1510#ifdef USE_OPENSSL
1511 if (RAND_bytes(m, 20) == 1)
1512 m += 20;
1513#endif
1514
1515 /* take 160 bits from existing random in case it was already initialized */
1516 for (i = 0; i < 5; i++) {
1517 write_u32(m, random());
1518 m += 4;
1519 }
1520
1521 /* stack address (benefit form operating system's ASLR) */
1522 l = (unsigned long)&m;
1523 memcpy(m, &l, sizeof(l)); m += sizeof(l);
1524
1525 /* argv address (benefit form operating system's ASLR) */
1526 l = (unsigned long)&argv;
1527 memcpy(m, &l, sizeof(l)); m += sizeof(l);
1528
1529 /* use tv_usec again after all the operations above */
1530 gettimeofday(&tv, NULL);
1531 write_u32(m, tv.tv_usec); m += 4;
1532
1533 /*
1534 * At this point, ~84-92 bytes have been used
1535 */
1536
1537 /* finish with the hostname */
1538 strncpy((char *)m, hostname, message + sizeof(message) - m);
1539 m += strlen(hostname);
1540
1541 /* total message length */
1542 l = m - message;
1543
1544 memset(&ctx, 0, sizeof(ctx));
1545 blk_SHA1_Init(&ctx);
1546 blk_SHA1_Update(&ctx, message, l);
1547 blk_SHA1_Final(boot_seed, &ctx);
1548
1549 srandom(read_u32(boot_seed));
Willy Tarreau52bf8392020-03-08 00:42:37 +01001550 ha_random_seed(boot_seed, sizeof(boot_seed));
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001551}
1552
Willy Tarreau5a023f02019-03-01 14:19:31 +01001553/* considers splicing proxies' maxconn, computes the ideal global.maxpipes
1554 * setting, and returns it. It may return -1 meaning "unlimited" if some
1555 * unlimited proxies have been found and the global.maxconn value is not yet
1556 * set. It may also return a value greater than maxconn if it's not yet set.
1557 * Note that a value of zero means there is no need for pipes. -1 is never
1558 * returned if global.maxconn is valid.
1559 */
1560static int compute_ideal_maxpipes()
1561{
1562 struct proxy *cur;
1563 int nbfe = 0, nbbe = 0;
1564 int unlimited = 0;
1565 int pipes;
1566 int max;
1567
1568 for (cur = proxies_list; cur; cur = cur->next) {
1569 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
1570 if (cur->cap & PR_CAP_FE) {
1571 max = cur->maxconn;
1572 nbfe += max;
1573 if (!max) {
1574 unlimited = 1;
1575 break;
1576 }
1577 }
1578 if (cur->cap & PR_CAP_BE) {
1579 max = cur->fullconn ? cur->fullconn : global.maxconn;
1580 nbbe += max;
1581 if (!max) {
1582 unlimited = 1;
1583 break;
1584 }
1585 }
1586 }
1587 }
1588
1589 pipes = MAX(nbfe, nbbe);
1590 if (global.maxconn) {
1591 if (pipes > global.maxconn || unlimited)
1592 pipes = global.maxconn;
1593 } else if (unlimited) {
1594 pipes = -1;
1595 }
1596
1597 return pipes >= 4 ? pipes / 4 : pipes;
1598}
1599
Willy Tarreauac350932019-03-01 15:43:14 +01001600/* considers global.maxsocks, global.maxpipes, async engines, SSL frontends and
1601 * rlimits and computes an ideal maxconn. It's meant to be called only when
1602 * maxsock contains the sum of listening FDs, before it is updated based on
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001603 * maxconn and pipes. If there are not enough FDs left, DEFAULT_MAXCONN (by
1604 * default 100) is returned as it is expected that it will even run on tight
1605 * environments, and will maintain compatibility with previous packages that
1606 * used to rely on this value as the default one. The system will emit a
1607 * warning indicating how many FDs are missing anyway if needed.
Willy Tarreauac350932019-03-01 15:43:14 +01001608 */
1609static int compute_ideal_maxconn()
1610{
1611 int ssl_sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1612 int engine_fds = global.ssl_used_async_engines * ssl_sides;
1613 int pipes = compute_ideal_maxpipes();
Willy Tarreaub1beaa32020-03-06 10:25:31 +01001614 int remain = MAX(rlim_fd_cur_at_boot, rlim_fd_max_at_boot);
Willy Tarreauac350932019-03-01 15:43:14 +01001615 int maxconn;
1616
1617 /* we have to take into account these elements :
1618 * - number of engine_fds, which inflates the number of FD needed per
1619 * connection by this number.
1620 * - number of pipes per connection on average : for the unlimited
1621 * case, this is 0.5 pipe FDs per connection, otherwise it's a
1622 * fixed value of 2*pipes.
1623 * - two FDs per connection
1624 */
1625
1626 /* subtract listeners and checks */
1627 remain -= global.maxsock;
1628
Willy Tarreau3f200852019-03-14 19:13:17 +01001629 /* one epoll_fd/kqueue_fd per thread */
1630 remain -= global.nbthread;
1631
1632 /* one wake-up pipe (2 fd) per thread */
1633 remain -= 2 * global.nbthread;
1634
Willy Tarreauac350932019-03-01 15:43:14 +01001635 /* Fixed pipes values : we only subtract them if they're not larger
1636 * than the remaining FDs because pipes are optional.
1637 */
1638 if (pipes >= 0 && pipes * 2 < remain)
1639 remain -= pipes * 2;
1640
1641 if (pipes < 0) {
1642 /* maxsock = maxconn * 2 + maxconn/4 * 2 + maxconn * engine_fds.
1643 * = maxconn * (2 + 0.5 + engine_fds)
1644 * = maxconn * (4 + 1 + 2*engine_fds) / 2
1645 */
1646 maxconn = 2 * remain / (5 + 2 * engine_fds);
1647 } else {
1648 /* maxsock = maxconn * 2 + maxconn * engine_fds.
1649 * = maxconn * (2 + engine_fds)
1650 */
1651 maxconn = remain / (2 + engine_fds);
1652 }
1653
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001654 return MAX(maxconn, DEFAULT_MAXCONN);
Willy Tarreauac350932019-03-01 15:43:14 +01001655}
1656
Willy Tarreaua409f302020-03-10 17:08:53 +01001657/* computes the estimated maxsock value for the given maxconn based on the
1658 * possibly set global.maxpipes and existing partial global.maxsock. It may
1659 * temporarily change global.maxconn for the time needed to propagate the
1660 * computations, and will reset it.
1661 */
1662static int compute_ideal_maxsock(int maxconn)
1663{
1664 int maxpipes = global.maxpipes;
1665 int maxsock = global.maxsock;
1666
1667
1668 if (!maxpipes) {
1669 int old_maxconn = global.maxconn;
1670
1671 global.maxconn = maxconn;
1672 maxpipes = compute_ideal_maxpipes();
1673 global.maxconn = old_maxconn;
1674 }
1675
1676 maxsock += maxconn * 2; /* each connection needs two sockets */
1677 maxsock += maxpipes * 2; /* each pipe needs two FDs */
1678 maxsock += global.nbthread; /* one epoll_fd/kqueue_fd per thread */
1679 maxsock += 2 * global.nbthread; /* one wake-up pipe (2 fd) per thread */
1680
1681 /* compute fd used by async engines */
1682 if (global.ssl_used_async_engines) {
1683 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1684
1685 maxsock += maxconn * sides * global.ssl_used_async_engines;
1686 }
1687 return maxsock;
1688}
1689
Willy Tarreau304e17e2020-03-10 17:54:54 +01001690/* Tests if it is possible to set the current process' RLIMIT_NOFILE to
1691 * <maxsock>, then sets it back to the previous value. Returns non-zero if the
1692 * value is accepted, non-zero otherwise. This is used to determine if an
1693 * automatic limit may be applied or not. When it is not, the caller knows that
1694 * the highest we can do is the rlim_max at boot. In case of error, we return
1695 * that the setting is possible, so that we defer the error processing to the
1696 * final stage in charge of enforcing this.
1697 */
1698static int check_if_maxsock_permitted(int maxsock)
1699{
1700 struct rlimit orig_limit, test_limit;
1701 int ret;
1702
1703 if (getrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1704 return 1;
1705
1706 /* don't go further if we can't even set to what we have */
1707 if (setrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1708 return 1;
1709
1710 test_limit.rlim_max = MAX(maxsock, orig_limit.rlim_max);
1711 test_limit.rlim_cur = test_limit.rlim_max;
1712 ret = setrlimit(RLIMIT_NOFILE, &test_limit);
1713
1714 if (setrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1715 return 1;
1716
1717 return ret == 0;
1718}
1719
1720
William Lallemand73b85e72017-06-01 17:38:51 +02001721/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001722 * This function initializes all the necessary variables. It only returns
1723 * if everything is OK. If something fails, it exits.
1724 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001725static void init(int argc, char **argv)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001726{
Willy Tarreaubaaee002006-06-26 02:48:02 +02001727 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001728 char *tmp;
1729 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +02001730 int err_code = 0;
Maxime de Roucy0f503922016-05-13 23:52:55 +02001731 char *err_msg = NULL;
Willy Tarreau477ecd82010-01-03 21:12:30 +01001732 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +00001733 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +02001734 char *change_dir = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001735 struct proxy *px;
Willy Tarreaue6945732016-12-21 19:57:00 +01001736 struct post_check_fct *pcf;
Willy Tarreauac350932019-03-01 15:43:14 +01001737 int ideal_maxconn;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001738
Christopher Faulete3a5e352017-10-24 13:53:54 +02001739 global.mode = MODE_STARTING;
William Lallemand00417412020-06-05 14:08:41 +02001740 old_argv = copy_argv(argc, argv);
1741 if (!old_argv) {
William Lallemanddf6c5a82020-06-04 17:40:23 +02001742 ha_alert("failed to copy argv.\n");
1743 exit(1);
1744 }
William Lallemand73b85e72017-06-01 17:38:51 +02001745
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001746 if (!init_trash_buffers(1)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001747 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet748919a2017-07-26 14:59:46 +02001748 exit(1);
1749 }
David du Colombier7af46052012-05-16 14:16:48 +02001750
Emeric Brun2b920a12010-09-23 18:30:22 +02001751 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
1752 * the string in case of truncation, and at least FreeBSD appears not to do
1753 * it.
1754 */
1755 memset(hostname, 0, sizeof(hostname));
1756 gethostname(hostname, sizeof(hostname) - 1);
Dragan Dosen4f014152020-06-18 16:56:47 +02001757
1758 if ((localpeer = strdup(hostname)) == NULL) {
1759 ha_alert("Cannot allocate memory for local peer.\n");
1760 exit(EXIT_FAILURE);
1761 }
William Lallemanddaf4cd22018-04-17 16:46:13 +02001762 setenv("HAPROXY_LOCALPEER", localpeer, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02001763
William Lallemand24c928c2020-01-14 17:58:18 +01001764 /* we were in mworker mode, we should restart in mworker mode */
1765 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL)
1766 global.mode |= MODE_MWORKER;
1767
Willy Tarreaubaaee002006-06-26 02:48:02 +02001768 /*
1769 * Initialize the previously static variables.
1770 */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001771
Willy Tarreau173d9952018-01-26 21:48:23 +01001772 totalconn = actconn = listeners = stopping = 0;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001773 killed = 0;
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001774
Willy Tarreaubaaee002006-06-26 02:48:02 +02001775
1776#ifdef HAPROXY_MEMMAX
Willy Tarreau70060452015-12-14 12:46:07 +01001777 global.rlimit_memmax_all = HAPROXY_MEMMAX;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001778#endif
1779
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001780 tzset();
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001781 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001782 start_date = now;
1783
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001784 ha_random_boot(argv);
Willy Tarreau84310e22014-02-14 11:59:04 +01001785
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001786 if (init_acl() != 0)
1787 exit(1);
Willy Tarreaub6b3df32018-11-26 16:31:20 +01001788
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001789 /* Initialise lua. */
1790 hlua_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001791
Christopher Fauletff2613e2016-11-09 11:36:17 +01001792 /* Initialize process vars */
1793 vars_init(&global.vars, SCOPE_PROC);
1794
Willy Tarreau43b78992009-01-25 15:42:27 +01001795 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaue5733232019-05-22 19:24:06 +02001796#if defined(USE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001797 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001798#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001799#if defined(USE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001800 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001801#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001802#if defined(USE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +01001803 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001804#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001805#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001806 global.tune.options |= GTUNE_USE_EVPORTS;
1807#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001808#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001809 global.tune.options |= GTUNE_USE_SPLICE;
1810#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001811#if defined(USE_GETADDRINFO)
1812 global.tune.options |= GTUNE_USE_GAI;
1813#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001814#if defined(SO_REUSEPORT)
1815 global.tune.options |= GTUNE_USE_REUSEPORT;
1816#endif
Willy Tarreau76cc6992020-07-01 18:49:24 +02001817#ifdef USE_THREAD
1818 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
1819#endif
William Dauchya5194602020-03-28 19:29:58 +01001820 global.tune.options |= GTUNE_STRICT_LIMITS;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001821
1822 pid = getpid();
1823 progname = *argv;
1824 while ((tmp = strchr(progname, '/')) != NULL)
1825 progname = tmp + 1;
1826
Kevinm48936af2010-12-22 16:08:21 +00001827 /* the process name is used for the logs only */
Dragan Dosen43885c72015-10-01 13:18:13 +02001828 chunk_initstr(&global.log_tag, strdup(progname));
Kevinm48936af2010-12-22 16:08:21 +00001829
Willy Tarreaubaaee002006-06-26 02:48:02 +02001830 argc--; argv++;
1831 while (argc > 0) {
1832 char *flag;
1833
1834 if (**argv == '-') {
1835 flag = *argv+1;
1836
1837 /* 1 arg */
1838 if (*flag == 'v') {
1839 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +01001840 if (flag[1] == 'v') /* -vv */
1841 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001842 exit(0);
1843 }
Willy Tarreaue5733232019-05-22 19:24:06 +02001844#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001845 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +01001846 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001847#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001848#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001849 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +01001850 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001851#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001852#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001853 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +01001854 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001855#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001856#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001857 else if (*flag == 'd' && flag[1] == 'v')
1858 global.tune.options &= ~GTUNE_USE_EVPORTS;
1859#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001860#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001861 else if (*flag == 'd' && flag[1] == 'S')
1862 global.tune.options &= ~GTUNE_USE_SPLICE;
1863#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001864#if defined(USE_GETADDRINFO)
1865 else if (*flag == 'd' && flag[1] == 'G')
1866 global.tune.options &= ~GTUNE_USE_GAI;
1867#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001868#if defined(SO_REUSEPORT)
1869 else if (*flag == 'd' && flag[1] == 'R')
1870 global.tune.options &= ~GTUNE_USE_REUSEPORT;
1871#endif
Emeric Brun850efd52014-01-29 12:24:34 +01001872 else if (*flag == 'd' && flag[1] == 'V')
1873 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001874 else if (*flag == 'V')
1875 arg_mode |= MODE_VERBOSE;
1876 else if (*flag == 'd' && flag[1] == 'b')
1877 arg_mode |= MODE_FOREGROUND;
Willy Tarreau3eb10b82020-04-15 16:42:39 +02001878 else if (*flag == 'd' && flag[1] == 'W')
1879 arg_mode |= MODE_ZERO_WARNING;
Willy Tarreau6e064432012-05-08 15:40:42 +02001880 else if (*flag == 'd' && flag[1] == 'M')
1881 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreau3eed10e2016-11-07 21:03:16 +01001882 else if (*flag == 'd' && flag[1] == 'r')
1883 global.tune.options |= GTUNE_RESOLVE_DONTFAIL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001884 else if (*flag == 'd')
1885 arg_mode |= MODE_DEBUG;
1886 else if (*flag == 'c')
1887 arg_mode |= MODE_CHECK;
William Lallemand095ba4c2017-06-01 17:38:50 +02001888 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +02001889 arg_mode |= MODE_DAEMON;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001890 else if (*flag == 'W' && flag[1] == 's') {
Lukas Tribusf46bf952017-11-21 12:39:34 +01001891 arg_mode |= MODE_MWORKER | MODE_FOREGROUND;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001892#if defined(USE_SYSTEMD)
1893 global.tune.options |= GTUNE_USE_SYSTEMD;
1894#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001895 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 +01001896 usage(progname);
1897#endif
1898 }
William Lallemand095ba4c2017-06-01 17:38:50 +02001899 else if (*flag == 'W')
1900 arg_mode |= MODE_MWORKER;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001901 else if (*flag == 'q')
1902 arg_mode |= MODE_QUIET;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001903 else if (*flag == 'x') {
William Lallemand4f71d302020-06-04 23:41:29 +02001904 if (argc <= 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001905 ha_alert("Unix socket path expected with the -x flag\n\n");
William Lallemand45eff442017-06-19 15:57:55 +02001906 usage(progname);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001907 }
William Lallemand4fc09692017-06-19 16:37:19 +02001908 if (old_unixsocket)
Christopher Faulet767a84b2017-11-24 16:50:31 +01001909 ha_warning("-x option already set, overwriting the value\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001910 old_unixsocket = argv[1];
William Lallemand4fc09692017-06-19 16:37:19 +02001911
Olivier Houchardf73629d2017-04-05 22:33:04 +02001912 argv++;
1913 argc--;
1914 }
William Lallemande7361152018-10-26 14:47:36 +02001915 else if (*flag == 'S') {
1916 struct wordlist *c;
1917
William Lallemanda6b32492020-06-04 23:49:20 +02001918 if (argc <= 1) {
William Lallemande7361152018-10-26 14:47:36 +02001919 ha_alert("Socket and optional bind parameters expected with the -S flag\n");
1920 usage(progname);
1921 }
1922 if ((c = malloc(sizeof(*c))) == NULL || (c->s = strdup(argv[1])) == NULL) {
1923 ha_alert("Cannot allocate memory\n");
1924 exit(EXIT_FAILURE);
1925 }
1926 LIST_ADD(&mworker_cli_conf, &c->list);
1927
1928 argv++;
1929 argc--;
1930 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001931 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
1932 /* list of pids to finish ('f') or terminate ('t') */
1933
1934 if (flag[1] == 'f')
1935 oldpids_sig = SIGUSR1; /* finish then exit */
1936 else
1937 oldpids_sig = SIGTERM; /* terminate immediately */
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001938 while (argc > 1 && argv[1][0] != '-') {
Chris Lane236062f2018-02-05 23:15:44 +00001939 char * endptr = NULL;
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001940 oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int));
1941 if (!oldpids) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001942 ha_alert("Cannot allocate old pid : out of memory.\n");
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001943 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001944 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001945 argc--; argv++;
Chris Lane236062f2018-02-05 23:15:44 +00001946 errno = 0;
1947 oldpids[nb_oldpids] = strtol(*argv, &endptr, 10);
1948 if (errno) {
1949 ha_alert("-%2s option: failed to parse {%s}: %s\n",
1950 flag,
1951 *argv, strerror(errno));
1952 exit(1);
1953 } else if (endptr && strlen(endptr)) {
Willy Tarreau90807112020-02-25 08:16:33 +01001954 while (isspace((unsigned char)*endptr)) endptr++;
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001955 if (*endptr != 0) {
Chris Lane236062f2018-02-05 23:15:44 +00001956 ha_alert("-%2s option: some bytes unconsumed in PID list {%s}\n",
1957 flag, endptr);
1958 exit(1);
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001959 }
Chris Lane236062f2018-02-05 23:15:44 +00001960 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001961 if (oldpids[nb_oldpids] <= 0)
1962 usage(progname);
1963 nb_oldpids++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001964 }
1965 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001966 else if (flag[0] == '-' && flag[1] == 0) { /* "--" */
1967 /* now that's a cfgfile list */
1968 argv++; argc--;
1969 while (argc > 0) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02001970 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001971 ha_alert("Cannot load configuration file/directory %s : %s\n",
1972 *argv,
1973 err_msg);
Willy Tarreaua088d312015-10-08 11:58:48 +02001974 exit(1);
1975 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001976 argv++; argc--;
1977 }
1978 break;
1979 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001980 else { /* >=2 args */
1981 argv++; argc--;
1982 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001983 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001984
1985 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +02001986 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001987 case 'n' : cfg_maxconn = atol(*argv); break;
Willy Tarreau70060452015-12-14 12:46:07 +01001988 case 'm' : global.rlimit_memmax_all = atol(*argv); break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001989 case 'N' : cfg_maxpconn = atol(*argv); break;
William Lallemanddaf4cd22018-04-17 16:46:13 +02001990 case 'L' :
Dragan Dosen4f014152020-06-18 16:56:47 +02001991 free(localpeer);
1992 if ((localpeer = strdup(*argv)) == NULL) {
1993 ha_alert("Cannot allocate memory for local peer.\n");
1994 exit(EXIT_FAILURE);
1995 }
William Lallemanddaf4cd22018-04-17 16:46:13 +02001996 setenv("HAPROXY_LOCALPEER", localpeer, 1);
Dragan Dosen13cd54c2020-06-18 18:24:05 +02001997 global.localpeer_cmdline = 1;
William Lallemanddaf4cd22018-04-17 16:46:13 +02001998 break;
Willy Tarreau5d01a632009-06-22 16:02:30 +02001999 case 'f' :
Maxime de Roucy0f503922016-05-13 23:52:55 +02002000 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002001 ha_alert("Cannot load configuration file/directory %s : %s\n",
2002 *argv,
2003 err_msg);
Willy Tarreau5d01a632009-06-22 16:02:30 +02002004 exit(1);
2005 }
Willy Tarreau5d01a632009-06-22 16:02:30 +02002006 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002007 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02002008 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002009 }
2010 }
2011 }
2012 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02002013 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002014 argv++; argc--;
2015 }
2016
Christopher Faulete3a5e352017-10-24 13:53:54 +02002017 global.mode |= (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE
Willy Tarreau3eb10b82020-04-15 16:42:39 +02002018 | MODE_QUIET | MODE_CHECK | MODE_DEBUG | MODE_ZERO_WARNING));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002019
William Lallemand944e6192018-11-21 15:48:31 +01002020 if (getenv("HAPROXY_MWORKER_WAIT_ONLY")) {
William Lallemandcb11fd22017-06-01 17:38:52 +02002021 unsetenv("HAPROXY_MWORKER_WAIT_ONLY");
William Lallemand944e6192018-11-21 15:48:31 +01002022 global.mode |= MODE_MWORKER_WAIT;
2023 global.mode &= ~MODE_MWORKER;
William Lallemandcb11fd22017-06-01 17:38:52 +02002024 }
2025
2026 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) {
2027 atexit_flag = 1;
2028 atexit(reexec_on_failure);
2029 }
2030
Willy Tarreau576132e2011-09-10 19:26:56 +02002031 if (change_dir && chdir(change_dir) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002032 ha_alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
Willy Tarreau576132e2011-09-10 19:26:56 +02002033 exit(1);
2034 }
2035
Willy Tarreaubaaee002006-06-26 02:48:02 +02002036 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002037
2038 init_default_instance();
2039
William Lallemand944e6192018-11-21 15:48:31 +01002040 /* in wait mode, we don't try to read the configuration files */
2041 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand7b302d82019-05-20 11:15:37 +02002042 struct buffer *trash = get_trash_chunk();
Willy Tarreauc4382422009-12-06 13:10:44 +01002043
William Lallemand944e6192018-11-21 15:48:31 +01002044 /* handle cfgfiles that are actually directories */
2045 cfgfiles_expand_directories();
2046
2047 if (LIST_ISEMPTY(&cfg_cfgfiles))
2048 usage(progname);
2049
2050
2051 list_for_each_entry(wl, &cfg_cfgfiles, list) {
2052 int ret;
2053
William Lallemand7b302d82019-05-20 11:15:37 +02002054 if (trash->data)
2055 chunk_appendf(trash, ";");
2056
2057 chunk_appendf(trash, "%s", wl->s);
2058
William Lallemand944e6192018-11-21 15:48:31 +01002059 ret = readcfgfile(wl->s);
2060 if (ret == -1) {
2061 ha_alert("Could not open configuration file %s : %s\n",
2062 wl->s, strerror(errno));
2063 exit(1);
2064 }
2065 if (ret & (ERR_ABORT|ERR_FATAL))
2066 ha_alert("Error(s) found in configuration file : %s\n", wl->s);
2067 err_code |= ret;
2068 if (err_code & ERR_ABORT)
2069 exit(1);
Willy Tarreauc4382422009-12-06 13:10:44 +01002070 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002071
William Lallemand944e6192018-11-21 15:48:31 +01002072 /* do not try to resolve arguments nor to spot inconsistencies when
2073 * the configuration contains fatal errors caused by files not found
2074 * or failed memory allocations.
2075 */
2076 if (err_code & (ERR_ABORT|ERR_FATAL)) {
2077 ha_alert("Fatal errors found in configuration.\n");
2078 exit(1);
2079 }
William Lallemand7b302d82019-05-20 11:15:37 +02002080 if (trash->data)
2081 setenv("HAPROXY_CFGFILES", trash->area, 1);
2082
Willy Tarreaub83dc3d2017-04-19 11:24:07 +02002083 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002084 if (global.mode & MODE_MWORKER) {
2085 int proc;
William Lallemand16dd1b32018-11-19 18:46:18 +01002086 struct mworker_proc *tmproc;
2087
William Lallemand482f9a92019-04-12 16:15:00 +02002088 setenv("HAPROXY_MWORKER", "1", 1);
2089
William Lallemand16dd1b32018-11-19 18:46:18 +01002090 if (getenv("HAPROXY_MWORKER_REEXEC") == NULL) {
2091
William Lallemandf3a86832019-04-01 11:29:58 +02002092 tmproc = calloc(1, sizeof(*tmproc));
William Lallemand16dd1b32018-11-19 18:46:18 +01002093 if (!tmproc) {
2094 ha_alert("Cannot allocate process structures.\n");
2095 exit(EXIT_FAILURE);
2096 }
William Lallemand8f7069a2019-04-12 16:09:23 +02002097 tmproc->options |= PROC_O_TYPE_MASTER; /* master */
William Lallemand16dd1b32018-11-19 18:46:18 +01002098 tmproc->reloads = 0;
2099 tmproc->relative_pid = 0;
2100 tmproc->pid = pid;
2101 tmproc->timestamp = start_date.tv_sec;
2102 tmproc->ipc_fd[0] = -1;
2103 tmproc->ipc_fd[1] = -1;
2104
2105 proc_self = tmproc;
2106
2107 LIST_ADDQ(&proc_list, &tmproc->list);
2108 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002109
2110 for (proc = 0; proc < global.nbproc; proc++) {
William Lallemandce83b4a2018-10-26 14:47:30 +02002111
William Lallemandf3a86832019-04-01 11:29:58 +02002112 tmproc = calloc(1, sizeof(*tmproc));
William Lallemandce83b4a2018-10-26 14:47:30 +02002113 if (!tmproc) {
2114 ha_alert("Cannot allocate process structures.\n");
2115 exit(EXIT_FAILURE);
2116 }
2117
William Lallemand8f7069a2019-04-12 16:09:23 +02002118 tmproc->options |= PROC_O_TYPE_WORKER; /* worker */
William Lallemandce83b4a2018-10-26 14:47:30 +02002119 tmproc->pid = -1;
2120 tmproc->reloads = 0;
William Lallemande3683302018-11-19 18:46:17 +01002121 tmproc->timestamp = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02002122 tmproc->relative_pid = 1 + proc;
William Lallemand550db6d2018-11-06 17:37:12 +01002123 tmproc->ipc_fd[0] = -1;
2124 tmproc->ipc_fd[1] = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02002125
2126 if (mworker_cli_sockpair_new(tmproc, proc) < 0) {
2127 exit(EXIT_FAILURE);
2128 }
2129
2130 LIST_ADDQ(&proc_list, &tmproc->list);
2131 }
William Lallemand944e6192018-11-21 15:48:31 +01002132 }
2133 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
2134 struct wordlist *it, *c;
2135
William Lallemand1b663612018-10-26 14:47:33 +02002136 mworker_env_to_proc_list(); /* get the info of the children in the env */
William Lallemand8a022572018-10-26 14:47:35 +02002137
William Lallemande7361152018-10-26 14:47:36 +02002138
William Lallemand550db6d2018-11-06 17:37:12 +01002139 if (!LIST_ISEMPTY(&mworker_cli_conf)) {
William Lallemande7361152018-10-26 14:47:36 +02002140
William Lallemand550db6d2018-11-06 17:37:12 +01002141 if (mworker_cli_proxy_create() < 0) {
William Lallemande7361152018-10-26 14:47:36 +02002142 ha_alert("Can't create the master's CLI.\n");
2143 exit(EXIT_FAILURE);
2144 }
William Lallemande7361152018-10-26 14:47:36 +02002145
William Lallemand550db6d2018-11-06 17:37:12 +01002146 list_for_each_entry_safe(c, it, &mworker_cli_conf, list) {
2147
2148 if (mworker_cli_proxy_new_listener(c->s) < 0) {
2149 ha_alert("Can't create the master's CLI.\n");
2150 exit(EXIT_FAILURE);
2151 }
2152 LIST_DEL(&c->list);
2153 free(c->s);
2154 free(c);
2155 }
2156 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002157 }
2158
Willy Tarreaubb925012009-07-23 13:36:36 +02002159 err_code |= check_config_validity();
Christopher Fauletc1692962019-08-12 09:51:07 +02002160 for (px = proxies_list; px; px = px->next) {
2161 struct server *srv;
2162 struct post_proxy_check_fct *ppcf;
2163 struct post_server_check_fct *pscf;
2164
2165 list_for_each_entry(pscf, &post_server_check_list, list) {
2166 for (srv = px->srv; srv; srv = srv->next)
2167 err_code |= pscf->fct(srv);
2168 }
2169 list_for_each_entry(ppcf, &post_proxy_check_list, list)
2170 err_code |= ppcf->fct(px);
2171 }
Willy Tarreaubb925012009-07-23 13:36:36 +02002172 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002173 ha_alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002174 exit(1);
2175 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002176
Carl Henrik Lundef91ac192020-02-27 16:45:50 +01002177 err_code |= pattern_finalize_config();
2178 if (err_code & (ERR_ABORT|ERR_FATAL)) {
2179 ha_alert("Failed to finalize pattern config.\n");
2180 exit(1);
2181 }
Willy Tarreau0f936722019-04-11 14:47:08 +02002182
Willy Tarreau70060452015-12-14 12:46:07 +01002183 /* recompute the amount of per-process memory depending on nbproc and
2184 * the shared SSL cache size (allowed to exist in all processes).
2185 */
2186 if (global.rlimit_memmax_all) {
2187#if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE)
2188 int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL;
2189
2190 global.rlimit_memmax =
2191 ((((int64_t)global.rlimit_memmax_all * 1048576LL) -
2192 ssl_cache_bytes) / global.nbproc +
2193 ssl_cache_bytes + 1048575LL) / 1048576LL;
2194#else
2195 global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc;
2196#endif
2197 }
2198
Willy Tarreaue5733232019-05-22 19:24:06 +02002199#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002200 err_code |= netns_init();
2201 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002202 ha_alert("Failed to initialize namespace support.\n");
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002203 exit(1);
2204 }
2205#endif
2206
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01002207 /* Apply server states */
2208 apply_server_state();
2209
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002210 for (px = proxies_list; px; px = px->next)
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01002211 srv_compute_all_admin_states(px);
2212
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01002213 /* Apply servers' configured address */
2214 err_code |= srv_init_addr();
2215 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002216 ha_alert("Failed to initialize server(s) addr.\n");
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01002217 exit(1);
2218 }
2219
Willy Tarreau3eb10b82020-04-15 16:42:39 +02002220 if (warned & WARN_ANY && global.mode & MODE_ZERO_WARNING) {
2221 ha_alert("Some warnings were found and 'zero-warning' is set. Aborting.\n");
2222 exit(1);
2223 }
2224
Willy Tarreaubaaee002006-06-26 02:48:02 +02002225 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002226 struct peers *pr;
2227 struct proxy *px;
2228
Willy Tarreaubebd2122020-04-15 16:06:11 +02002229 if (warned & WARN_ANY)
2230 qfprintf(stdout, "Warnings were found.\n");
2231
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002232 for (pr = cfg_peers; pr; pr = pr->next)
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002233 if (pr->peers_fe)
2234 break;
2235
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002236 for (px = proxies_list; px; px = px->next)
Willy Tarreau4348fad2012-09-20 16:48:07 +02002237 if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002238 break;
2239
2240 if (pr || px) {
2241 /* At least one peer or one listener has been found */
2242 qfprintf(stdout, "Configuration file is valid\n");
Tim Duesterhus0a3b43d2020-06-14 00:37:42 +02002243 deinit_and_exit(0);
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002244 }
2245 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
2246 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002247 }
Willy Tarreaue9b26022011-08-01 20:57:55 +02002248
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002249 /* now we know the buffer size, we can initialize the channels and buffers */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002250 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +02002251
Willy Tarreaue6945732016-12-21 19:57:00 +01002252 list_for_each_entry(pcf, &post_check_list, list) {
2253 err_code |= pcf->fct();
2254 if (err_code & (ERR_ABORT|ERR_FATAL))
2255 exit(1);
2256 }
2257
Willy Tarreaubaaee002006-06-26 02:48:02 +02002258 if (cfg_maxconn > 0)
2259 global.maxconn = cfg_maxconn;
2260
Willy Tarreau8d687d82019-03-01 09:39:42 +01002261 if (global.stats_fe)
2262 global.maxsock += global.stats_fe->maxconn;
2263
2264 if (cfg_peers) {
2265 /* peers also need to bypass global maxconn */
2266 struct peers *p = cfg_peers;
2267
2268 for (p = cfg_peers; p; p = p->next)
2269 if (p->peers_fe)
2270 global.maxsock += p->peers_fe->maxconn;
2271 }
2272
Willy Tarreaubaaee002006-06-26 02:48:02 +02002273 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +02002274 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002275 global.pidfile = strdup(cfg_pidfile);
2276 }
2277
Willy Tarreaud0256482015-01-15 21:45:22 +01002278 /* Now we want to compute the maxconn and possibly maxsslconn values.
Willy Tarreauac350932019-03-01 15:43:14 +01002279 * It's a bit tricky. Maxconn defaults to the pre-computed value based
2280 * on rlim_fd_cur and the number of FDs in use due to the configuration,
2281 * and maxsslconn defaults to DEFAULT_MAXSSLCONN. On top of that we can
2282 * enforce a lower limit based on memmax.
Willy Tarreaud0256482015-01-15 21:45:22 +01002283 *
2284 * If memmax is set, then it depends on which values are set. If
2285 * maxsslconn is set, we use memmax to determine how many cleartext
2286 * connections may be added, and set maxconn to the sum of the two.
2287 * If maxconn is set and not maxsslconn, maxsslconn is computed from
2288 * the remaining amount of memory between memmax and the cleartext
2289 * connections. If neither are set, then it is considered that all
2290 * connections are SSL-capable, and maxconn is computed based on this,
2291 * then maxsslconn accordingly. We need to know if SSL is used on the
2292 * frontends, backends, or both, because when it's used on both sides,
2293 * we need twice the value for maxsslconn, but we only count the
2294 * handshake once since it is not performed on the two sides at the
2295 * same time (frontend-side is terminated before backend-side begins).
2296 * The SSL stack is supposed to have filled ssl_session_cost and
Willy Tarreau474b96a2015-01-28 19:03:21 +01002297 * ssl_handshake_cost during its initialization. In any case, if
2298 * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for
2299 * maxconn in order to protect the system.
Willy Tarreaud0256482015-01-15 21:45:22 +01002300 */
Willy Tarreauac350932019-03-01 15:43:14 +01002301 ideal_maxconn = compute_ideal_maxconn();
2302
Willy Tarreaud0256482015-01-15 21:45:22 +01002303 if (!global.rlimit_memmax) {
2304 if (global.maxconn == 0) {
Willy Tarreauac350932019-03-01 15:43:14 +01002305 global.maxconn = ideal_maxconn;
Willy Tarreaud0256482015-01-15 21:45:22 +01002306 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2307 fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn);
2308 }
2309 }
2310#ifdef USE_OPENSSL
2311 else if (!global.maxconn && !global.maxsslconn &&
2312 (global.ssl_used_frontend || global.ssl_used_backend)) {
2313 /* memmax is set, compute everything automatically. Here we want
2314 * to ensure that all SSL connections will be served. We take
2315 * care of the number of sides where SSL is used, and consider
2316 * the worst case : SSL used on both sides and doing a handshake
2317 * simultaneously. Note that we can't have more than maxconn
2318 * handshakes at a time by definition, so for the worst case of
2319 * two SSL conns per connection, we count a single handshake.
2320 */
2321 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2322 int64_t mem = global.rlimit_memmax * 1048576ULL;
Willy Tarreau304e17e2020-03-10 17:54:54 +01002323 int retried = 0;
Willy Tarreaud0256482015-01-15 21:45:22 +01002324
2325 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2326 mem -= global.maxzlibmem;
2327 mem = mem * MEM_USABLE_RATIO;
2328
Willy Tarreau304e17e2020-03-10 17:54:54 +01002329 /* Principle: we test once to set maxconn according to the free
2330 * memory. If it results in values the system rejects, we try a
2331 * second time by respecting rlim_fd_max. If it fails again, we
2332 * go back to the initial value and will let the final code
2333 * dealing with rlimit report the error. That's up to 3 attempts.
2334 */
2335 do {
2336 global.maxconn = mem /
2337 ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream
2338 sides * global.ssl_session_max_cost + // SSL buffers, one per side
2339 global.ssl_handshake_max_cost); // 1 handshake per connection max
Willy Tarreaud0256482015-01-15 21:45:22 +01002340
Willy Tarreau304e17e2020-03-10 17:54:54 +01002341 if (retried == 1)
2342 global.maxconn = MIN(global.maxconn, ideal_maxconn);
2343 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01002344#ifdef SYSTEM_MAXCONN
Willy Tarreau304e17e2020-03-10 17:54:54 +01002345 if (global.maxconn > SYSTEM_MAXCONN)
2346 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01002347#endif /* SYSTEM_MAXCONN */
Willy Tarreau304e17e2020-03-10 17:54:54 +01002348 global.maxsslconn = sides * global.maxconn;
2349
2350 if (check_if_maxsock_permitted(compute_ideal_maxsock(global.maxconn)))
2351 break;
2352 } while (retried++ < 2);
2353
Willy Tarreaud0256482015-01-15 21:45:22 +01002354 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2355 fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n",
2356 global.maxconn, global.maxsslconn);
2357 }
2358 else if (!global.maxsslconn &&
2359 (global.ssl_used_frontend || global.ssl_used_backend)) {
2360 /* memmax and maxconn are known, compute maxsslconn automatically.
2361 * maxsslconn being forced, we don't know how many of it will be
2362 * on each side if both sides are being used. The worst case is
2363 * when all connections use only one SSL instance because
2364 * handshakes may be on two sides at the same time.
2365 */
2366 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2367 int64_t mem = global.rlimit_memmax * 1048576ULL;
2368 int64_t sslmem;
2369
2370 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2371 mem -= global.maxzlibmem;
2372 mem = mem * MEM_USABLE_RATIO;
2373
Willy Tarreau87b09662015-04-03 00:22:06 +02002374 sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01002375 global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost);
2376 global.maxsslconn = round_2dig(global.maxsslconn);
2377
2378 if (sslmem <= 0 || global.maxsslconn < sides) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002379 ha_alert("Cannot compute the automatic maxsslconn because global.maxconn is already too "
2380 "high for the global.memmax value (%d MB). The absolute maximum possible value "
2381 "without SSL is %d, but %d was found and SSL is in use.\n",
2382 global.rlimit_memmax,
2383 (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)),
2384 global.maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01002385 exit(1);
2386 }
2387
2388 if (global.maxsslconn > sides * global.maxconn)
2389 global.maxsslconn = sides * global.maxconn;
2390
2391 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2392 fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn);
2393 }
2394#endif
2395 else if (!global.maxconn) {
2396 /* memmax and maxsslconn are known/unused, compute maxconn automatically */
2397 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2398 int64_t mem = global.rlimit_memmax * 1048576ULL;
2399 int64_t clearmem;
Willy Tarreau304e17e2020-03-10 17:54:54 +01002400 int retried = 0;
Willy Tarreaud0256482015-01-15 21:45:22 +01002401
2402 if (global.ssl_used_frontend || global.ssl_used_backend)
2403 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2404
2405 mem -= global.maxzlibmem;
2406 mem = mem * MEM_USABLE_RATIO;
2407
2408 clearmem = mem;
2409 if (sides)
2410 clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn;
2411
Willy Tarreau304e17e2020-03-10 17:54:54 +01002412 /* Principle: we test once to set maxconn according to the free
2413 * memory. If it results in values the system rejects, we try a
2414 * second time by respecting rlim_fd_max. If it fails again, we
2415 * go back to the initial value and will let the final code
2416 * dealing with rlimit report the error. That's up to 3 attempts.
2417 */
2418 do {
2419 global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize);
2420 if (retried == 1)
2421 global.maxconn = MIN(global.maxconn, ideal_maxconn);
2422 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01002423#ifdef SYSTEM_MAXCONN
Willy Tarreau304e17e2020-03-10 17:54:54 +01002424 if (global.maxconn > SYSTEM_MAXCONN)
2425 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01002426#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01002427
Willy Tarreau304e17e2020-03-10 17:54:54 +01002428 if (clearmem <= 0 || !global.maxconn) {
2429 ha_alert("Cannot compute the automatic maxconn because global.maxsslconn is already too "
2430 "high for the global.memmax value (%d MB). The absolute maximum possible value "
2431 "is %d, but %d was found.\n",
2432 global.rlimit_memmax,
Christopher Faulet767a84b2017-11-24 16:50:31 +01002433 (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)),
Willy Tarreau304e17e2020-03-10 17:54:54 +01002434 global.maxsslconn);
2435 exit(1);
2436 }
2437
2438 if (check_if_maxsock_permitted(compute_ideal_maxsock(global.maxconn)))
2439 break;
2440 } while (retried++ < 2);
Willy Tarreaud0256482015-01-15 21:45:22 +01002441
2442 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2443 if (sides && global.maxsslconn > sides * global.maxconn) {
2444 fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn "
2445 "to be limited to %d. Better reduce global.maxsslconn to get more "
2446 "room for extra connections.\n", global.maxsslconn, global.maxconn);
2447 }
2448 fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn);
2449 }
Willy Tarreau66aa61f2009-01-18 21:44:07 +01002450 }
2451
Willy Tarreaua409f302020-03-10 17:08:53 +01002452 global.maxsock = compute_ideal_maxsock(global.maxconn);
2453 global.hardmaxconn = global.maxconn;
Willy Tarreaua4818db2020-06-19 16:20:59 +02002454 if (!global.maxpipes)
2455 global.maxpipes = compute_ideal_maxpipes();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002456
Olivier Houchard88698d92019-04-16 19:07:22 +02002457 /* update connection pool thresholds */
2458 global.tune.pool_low_count = ((long long)global.maxsock * global.tune.pool_low_ratio + 99) / 100;
2459 global.tune.pool_high_count = ((long long)global.maxsock * global.tune.pool_high_ratio + 99) / 100;
2460
Willy Tarreauc8d5b952019-02-27 17:25:52 +01002461 proxy_adjust_all_maxconn();
2462
Willy Tarreau1db37712007-06-03 17:16:49 +02002463 if (global.tune.maxpollevents <= 0)
2464 global.tune.maxpollevents = MAX_POLL_EVENTS;
2465
Olivier Houchard1599b802018-05-24 18:59:04 +02002466 if (global.tune.runqueue_depth <= 0)
2467 global.tune.runqueue_depth = RUNQUEUE_DEPTH;
2468
Willy Tarreau6f4a82c2009-03-21 20:43:57 +01002469 if (global.tune.recv_enough == 0)
2470 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
2471
Willy Tarreau27a674e2009-08-17 07:23:33 +02002472 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
2473 global.tune.maxrewrite = global.tune.bufsize / 2;
2474
Willy Tarreaubaaee002006-06-26 02:48:02 +02002475 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
2476 /* command line debug mode inhibits configuration mode */
William Lallemand095ba4c2017-06-01 17:38:50 +02002477 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002478 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
2479 }
2480
William Lallemand095ba4c2017-06-01 17:38:50 +02002481 if (arg_mode & MODE_DAEMON) {
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002482 /* command line daemon mode inhibits foreground and debug modes mode */
2483 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
William Lallemand095ba4c2017-06-01 17:38:50 +02002484 global.mode |= arg_mode & MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002485 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002486
2487 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002488
William Lallemand095ba4c2017-06-01 17:38:50 +02002489 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002490 ha_warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
William Lallemand095ba4c2017-06-01 17:38:50 +02002491 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002492 }
2493
William Lallemand095ba4c2017-06-01 17:38:50 +02002494 if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002495 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
Christopher Faulet767a84b2017-11-24 16:50:31 +01002496 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 +02002497 global.nbproc = 1;
2498 }
2499
2500 if (global.nbproc < 1)
2501 global.nbproc = 1;
2502
Christopher Fauletbe0faa22017-08-29 15:37:10 +02002503 if (global.nbthread < 1)
2504 global.nbthread = 1;
2505
Christopher Faulet3ef26392017-08-29 16:46:57 +02002506 /* Realloc trash buffers because global.tune.bufsize may have changed */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002507 if (!init_trash_buffers(0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002508 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet3ef26392017-08-29 16:46:57 +02002509 exit(1);
2510 }
2511
Christopher Faulet96d44832017-11-14 22:02:30 +01002512 if (!init_log_buffers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002513 ha_alert("failed to initialize log buffers.\n");
Christopher Faulet96d44832017-11-14 22:02:30 +01002514 exit(1);
2515 }
2516
Willy Tarreauef1d1f82007-04-16 00:25:25 +02002517 /*
2518 * Note: we could register external pollers here.
2519 * Built-in pollers have been registered before main().
2520 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02002521
Willy Tarreau43b78992009-01-25 15:42:27 +01002522 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +02002523 disable_poller("kqueue");
2524
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00002525 if (!(global.tune.options & GTUNE_USE_EVPORTS))
2526 disable_poller("evports");
2527
Willy Tarreau43b78992009-01-25 15:42:27 +01002528 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002529 disable_poller("epoll");
2530
Willy Tarreau43b78992009-01-25 15:42:27 +01002531 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002532 disable_poller("poll");
2533
Willy Tarreau43b78992009-01-25 15:42:27 +01002534 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002535 disable_poller("select");
2536
2537 /* Note: we could disable any poller by name here */
2538
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002539 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02002540 list_pollers(stderr);
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002541 fprintf(stderr, "\n");
2542 list_filters(stderr);
2543 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002544
Willy Tarreau4f60f162007-04-08 16:39:58 +02002545 if (!init_pollers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002546 ha_alert("No polling mechanism available.\n"
2547 " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n"
2548 " is too low on this platform to support maxconn and the number of listeners\n"
2549 " and servers. You should rebuild haproxy specifying your system using TARGET=\n"
2550 " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n"
2551 " global maxconn setting to accommodate the system's limitation. For reference,\n"
2552 " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n"
2553 " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n"
2554 " check build settings using 'haproxy -vv'.\n\n",
2555 FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002556 exit(1);
2557 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002558 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2559 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002560 }
2561
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002562 if (!global.node)
2563 global.node = strdup(hostname);
2564
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01002565 if (!hlua_post_init())
2566 exit(1);
Thomas Holmes6abded42015-05-12 16:23:58 +01002567
Maxime de Roucy0f503922016-05-13 23:52:55 +02002568 free(err_msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002569}
2570
Simon Horman6fb82592011-07-15 13:14:11 +09002571static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +09002572{
Simon Hormanac821422011-07-15 13:14:09 +09002573 struct acl_term_suite *suite, *suiteb;
2574 struct acl_term *term, *termb;
2575
Simon Horman6fb82592011-07-15 13:14:11 +09002576 if (!cond)
2577 return;
2578
2579 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
2580 list_for_each_entry_safe(term, termb, &suite->terms, list) {
2581 LIST_DEL(&term->list);
2582 free(term);
Simon Hormanac821422011-07-15 13:14:09 +09002583 }
Simon Horman6fb82592011-07-15 13:14:11 +09002584 LIST_DEL(&suite->list);
2585 free(suite);
2586 }
2587
2588 free(cond);
2589}
2590
Christopher Fauletcb550132019-12-17 11:25:46 +01002591static void deinit_act_rules(struct list *rules)
Simon Horman6fb82592011-07-15 13:14:11 +09002592{
Christopher Fauletcb550132019-12-17 11:25:46 +01002593 struct act_rule *rule, *ruleb;
Simon Horman6fb82592011-07-15 13:14:11 +09002594
Christopher Fauletcb550132019-12-17 11:25:46 +01002595 list_for_each_entry_safe(rule, ruleb, rules, list) {
2596 LIST_DEL(&rule->list);
2597 deinit_acl_cond(rule->cond);
Christopher Faulet58b35642019-12-17 11:48:42 +01002598 if (rule->release_ptr)
2599 rule->release_ptr(rule);
Christopher Fauletcb550132019-12-17 11:25:46 +01002600 free(rule);
Simon Hormanac821422011-07-15 13:14:09 +09002601 }
2602}
2603
Simon Horman6fb82592011-07-15 13:14:11 +09002604static void deinit_stick_rules(struct list *rules)
2605{
2606 struct sticking_rule *rule, *ruleb;
2607
2608 list_for_each_entry_safe(rule, ruleb, rules, list) {
2609 LIST_DEL(&rule->list);
2610 deinit_acl_cond(rule->cond);
Christopher Faulet476e5d02016-10-26 11:34:47 +02002611 release_sample_expr(rule->expr);
Simon Horman6fb82592011-07-15 13:14:11 +09002612 free(rule);
2613 }
2614}
2615
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002616void deinit(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002617{
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002618 struct proxy *p = proxies_list, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002619 struct cap_hdr *h,*h_next;
2620 struct server *s,*s_next;
2621 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002622 struct acl_cond *cond, *condb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002623 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002624 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002625 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002626 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002627 struct wordlist *wl, *wlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002628 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +02002629 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +01002630 struct logformat_node *lf, *lfb;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002631 struct bind_conf *bind_conf, *bind_back;
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002632 struct build_opts_str *bol, *bolb;
Tim Duesterhusfdf904a2020-07-04 11:49:48 +02002633 struct post_deinit_fct *pdf, *pdfb;
Tim Duesterhus17e363f2020-07-04 11:49:47 +02002634 struct proxy_deinit_fct *pxdf, *pxdfb;
Tim Duesterhus0837eb12020-07-04 11:49:49 +02002635 struct server_deinit_fct *srvdf, *srvdfb;
Tim Duesterhus34bef072020-07-04 11:49:50 +02002636 struct post_server_check_fct *pscf, *pscfb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002637
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002638 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002639 while (p) {
Willy Tarreau8113a5d2012-10-04 08:01:43 +02002640 free(p->conf.file);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002641 free(p->id);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002642 free(p->cookie_name);
2643 free(p->cookie_domain);
Christopher Faulet2f533902020-01-21 11:06:48 +01002644 free(p->cookie_attrs);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002645 free(p->lbprm.arg_str);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002646 free(p->capture_name);
2647 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +09002648 free(p->rdp_cookie_name);
William Lallemandefc5a9d2020-08-07 14:48:37 +02002649 free(p->invalid_rep);
2650 free(p->invalid_req);
Willy Tarreau62a61232013-04-12 18:13:46 +02002651 if (p->conf.logformat_string != default_http_log_format &&
2652 p->conf.logformat_string != default_tcp_log_format &&
2653 p->conf.logformat_string != clf_http_log_format)
2654 free(p->conf.logformat_string);
Willy Tarreau196729e2012-05-31 19:30:26 +02002655
Willy Tarreau62a61232013-04-12 18:13:46 +02002656 free(p->conf.lfs_file);
2657 free(p->conf.uniqueid_format_string);
Tim Duesterhus18c63592020-07-04 11:49:42 +02002658 istfree(&p->header_unique_id);
Willy Tarreau62a61232013-04-12 18:13:46 +02002659 free(p->conf.uif_file);
Willy Tarreau0cac26c2019-01-14 16:55:42 +01002660 if ((p->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_MAP)
2661 free(p->lbprm.map.srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002662
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002663 if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2664 free(p->conf.logformat_sd_string);
2665 free(p->conf.lfsd_file);
2666
Willy Tarreaub80c2302007-11-30 20:51:32 +01002667 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
2668 LIST_DEL(&cond->list);
2669 prune_acl_cond(cond);
2670 free(cond);
2671 }
2672
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002673 /* build a list of unique uri_auths */
2674 if (!ua)
2675 ua = p->uri_auth;
2676 else {
2677 /* check if p->uri_auth is unique */
2678 for (uap = ua; uap; uap=uap->next)
2679 if (uap == p->uri_auth)
2680 break;
2681
Willy Tarreauaccc4e12008-06-24 11:14:45 +02002682 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002683 /* add it, if it is */
2684 p->uri_auth->next = ua;
2685 ua = p->uri_auth;
2686 }
2687 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002688
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002689 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
2690 LIST_DEL(&acl->list);
2691 prune_acl(acl);
2692 free(acl);
2693 }
2694
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002695 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
2696 LIST_DEL(&srule->list);
2697 prune_acl_cond(srule->cond);
Tim Duesterhus826cf072020-07-04 11:49:44 +02002698 list_for_each_entry_safe(lf, lfb, &srule->expr, list) {
2699 LIST_DEL(&lf->list);
2700 release_sample_expr(lf->expr);
2701 free(lf->arg);
2702 free(lf);
2703 }
Tim Duesterhus6fb74a12020-07-04 11:49:43 +02002704 free(srule->file);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002705 free(srule->cond);
2706 free(srule);
2707 }
2708
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002709 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
2710 LIST_DEL(&rule->list);
Willy Tarreauf51658d2014-04-23 01:21:56 +02002711 if (rule->cond) {
2712 prune_acl_cond(rule->cond);
2713 free(rule->cond);
2714 }
Dragan Dosen2a7c20f2019-04-30 00:38:36 +02002715 free(rule->file);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002716 free(rule);
2717 }
2718
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002719 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
2720 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +01002721 if (rdr->cond) {
2722 prune_acl_cond(rdr->cond);
2723 free(rdr->cond);
2724 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002725 free(rdr->rdr_str);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002726 list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) {
2727 LIST_DEL(&lf->list);
2728 free(lf);
2729 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002730 free(rdr);
2731 }
2732
William Lallemand0f99e342011-10-12 17:50:54 +02002733 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
2734 LIST_DEL(&log->list);
2735 free(log);
2736 }
2737
William Lallemand723b73a2012-02-08 16:37:49 +01002738 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
2739 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002740 release_sample_expr(lf->expr);
2741 free(lf->arg);
William Lallemand723b73a2012-02-08 16:37:49 +01002742 free(lf);
2743 }
2744
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002745 list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) {
2746 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002747 release_sample_expr(lf->expr);
2748 free(lf->arg);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002749 free(lf);
2750 }
2751
Tim Duesterhus79765782020-07-04 11:49:40 +02002752 list_for_each_entry_safe(lf, lfb, &p->format_unique_id, list) {
2753 LIST_DEL(&lf->list);
2754 release_sample_expr(lf->expr);
2755 free(lf->arg);
2756 free(lf);
2757 }
2758
Christopher Fauletcb550132019-12-17 11:25:46 +01002759 deinit_act_rules(&p->tcp_req.inspect_rules);
2760 deinit_act_rules(&p->tcp_rep.inspect_rules);
2761 deinit_act_rules(&p->tcp_req.l4_rules);
2762 deinit_act_rules(&p->tcp_req.l5_rules);
2763 deinit_act_rules(&p->http_req_rules);
2764 deinit_act_rules(&p->http_res_rules);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002765 deinit_act_rules(&p->http_after_res_rules);
Simon Hormanac821422011-07-15 13:14:09 +09002766
Simon Horman6fb82592011-07-15 13:14:11 +09002767 deinit_stick_rules(&p->storersp_rules);
2768 deinit_stick_rules(&p->sticking_rules);
2769
Willy Tarreaubaaee002006-06-26 02:48:02 +02002770 h = p->req_cap;
2771 while (h) {
2772 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002773 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002774 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002775 free(h);
2776 h = h_next;
2777 }/* end while(h) */
2778
2779 h = p->rsp_cap;
2780 while (h) {
2781 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002782 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002783 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002784 free(h);
2785 h = h_next;
2786 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002787
Willy Tarreaubaaee002006-06-26 02:48:02 +02002788 s = p->srv;
2789 while (s) {
2790 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002791
Dragan Dosen026ef572019-04-30 00:56:20 +02002792
Willy Tarreauf6562792019-05-07 19:05:35 +02002793 task_destroy(s->warmup);
Willy Tarreau2e993902011-10-31 11:53:20 +01002794
Willy Tarreaua534fea2008-08-03 12:19:50 +02002795 free(s->id);
2796 free(s->cookie);
Tim Duesterhuscb8f13c2020-07-04 11:49:41 +02002797 free(s->hostname);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002798 free(s->hostname_dn);
Sárközi, László34c01792014-09-05 10:08:23 +02002799 free((char*)s->conf.file);
Olivier Houchard7fc3be72018-11-22 18:50:54 +01002800 free(s->idle_conns);
Olivier Houchard7fc3be72018-11-22 18:50:54 +01002801 free(s->safe_conns);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01002802 free(s->available_conns);
Olivier Houchardf1314812019-02-18 16:41:17 +01002803 free(s->curr_idle_thr);
Tim Duesterhuscb8f13c2020-07-04 11:49:41 +02002804 free(s->resolvers_id);
Willy Tarreau17d45382016-12-22 21:16:08 +01002805
Christopher Fauletf61f33a2020-03-27 18:55:49 +01002806 if (s->use_ssl == 1 || s->check.use_ssl == 1 || (s->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01002807 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2808 xprt_get(XPRT_SSL)->destroy_srv(s);
2809 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002810 HA_SPIN_DESTROY(&s->lock);
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002811
2812 list_for_each_entry(srvdf, &server_deinit_list, list)
2813 srvdf->fct(s);
2814
Willy Tarreaubaaee002006-06-26 02:48:02 +02002815 free(s);
2816 s = s_next;
2817 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002818
Willy Tarreau4348fad2012-09-20 16:48:07 +02002819 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002820 /*
2821 * Zombie proxy, the listener just pretend to be up
2822 * because they still hold an opened fd.
2823 * Close it and give the listener its real state.
2824 */
2825 if (p->state == PR_STSTOPPED && l->state >= LI_ZOMBIE) {
2826 close(l->fd);
2827 l->state = LI_INIT;
2828 }
Willy Tarreauf6e2cc72010-09-03 10:38:17 +02002829 unbind_listener(l);
2830 delete_listener(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002831 LIST_DEL(&l->by_fe);
2832 LIST_DEL(&l->by_bind);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002833 free(l->name);
2834 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002835 free(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002836 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002837
Willy Tarreau4348fad2012-09-20 16:48:07 +02002838 /* Release unused SSL configs. */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002839 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01002840 if (bind_conf->xprt->destroy_bind_conf)
2841 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002842 free(bind_conf->file);
2843 free(bind_conf->arg);
2844 LIST_DEL(&bind_conf->by_fe);
2845 free(bind_conf);
2846 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02002847
Christopher Fauletd7c91962015-04-30 11:48:27 +02002848 flt_deinit(p);
2849
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002850 list_for_each_entry(pxdf, &proxy_deinit_list, list)
2851 pxdf->fct(p);
2852
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002853 free(p->desc);
2854 free(p->fwdfor_hdr_name);
2855
Olivier Houchard3f795f72019-04-17 22:51:06 +02002856 task_destroy(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002857
Willy Tarreaubafbe012017-11-24 17:34:44 +01002858 pool_destroy(p->req_cap_pool);
2859 pool_destroy(p->rsp_cap_pool);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002860 if (p->table)
2861 pool_destroy(p->table->pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002862
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002863 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002864 p = p->next;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002865 HA_SPIN_DESTROY(&p0->lbprm.lock);
2866 HA_SPIN_DESTROY(&p0->lock);
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002867 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002868 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02002869
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002870 while (ua) {
2871 uap = ua;
2872 ua = ua->next;
2873
Willy Tarreaua534fea2008-08-03 12:19:50 +02002874 free(uap->uri_prefix);
2875 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002876 free(uap->node);
2877 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002878
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002879 userlist_free(uap->userlist);
Christopher Fauletcb550132019-12-17 11:25:46 +01002880 deinit_act_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002881
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002882 free(uap);
2883 }
2884
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002885 userlist_free(userlist);
2886
David Carlier834cb2e2015-09-25 12:02:25 +01002887 cfg_unregister_sections();
2888
Christopher Faulet0132d062017-07-26 15:33:35 +02002889 deinit_log_buffers();
David Carlier834cb2e2015-09-25 12:02:25 +01002890
Willy Tarreaudd815982007-10-16 12:25:14 +02002891 protocol_unbind_all();
2892
Willy Tarreau05554e62016-12-21 20:46:26 +01002893 list_for_each_entry(pdf, &post_deinit_list, list)
2894 pdf->fct();
2895
Joe Williamsdf5b38f2010-12-29 17:05:48 +01002896 free(global.log_send_hostname); global.log_send_hostname = NULL;
Dragan Dosen43885c72015-10-01 13:18:13 +02002897 chunk_destroy(&global.log_tag);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002898 free(global.chroot); global.chroot = NULL;
2899 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002900 free(global.node); global.node = NULL;
2901 free(global.desc); global.desc = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002902 free(oldpids); oldpids = NULL;
Dragan Dosen4f014152020-06-18 16:56:47 +02002903 free(localpeer); localpeer = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02002904 task_destroy(idle_conn_task);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01002905 idle_conn_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002906
William Lallemand0f99e342011-10-12 17:50:54 +02002907 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
2908 LIST_DEL(&log->list);
2909 free(log);
2910 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01002911 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02002912 free(wl->s);
Willy Tarreau477ecd82010-01-03 21:12:30 +01002913 LIST_DEL(&wl->list);
2914 free(wl);
2915 }
2916
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002917 list_for_each_entry_safe(bol, bolb, &build_opts_list, list) {
2918 if (bol->must_free)
2919 free((void *)bol->str);
2920 LIST_DEL(&bol->list);
2921 free(bol);
2922 }
2923
Tim Duesterhus17e363f2020-07-04 11:49:47 +02002924 list_for_each_entry_safe(pxdf, pxdfb, &proxy_deinit_list, list) {
2925 LIST_DEL(&pxdf->list);
2926 free(pxdf);
2927 }
2928
Tim Duesterhusfdf904a2020-07-04 11:49:48 +02002929 list_for_each_entry_safe(pdf, pdfb, &post_deinit_list, list) {
2930 LIST_DEL(&pdf->list);
2931 free(pdf);
2932 }
2933
Tim Duesterhus0837eb12020-07-04 11:49:49 +02002934 list_for_each_entry_safe(srvdf, srvdfb, &server_deinit_list, list) {
2935 LIST_DEL(&srvdf->list);
2936 free(srvdf);
2937 }
2938
Tim Duesterhus34bef072020-07-04 11:49:50 +02002939 list_for_each_entry_safe(pscf, pscfb, &post_server_check_list, list) {
2940 LIST_DEL(&pscf->list);
2941 free(pscf);
2942 }
2943
Christopher Fauletff2613e2016-11-09 11:36:17 +01002944 vars_prune(&global.vars, NULL, NULL);
Willy Tarreau2455ceb2018-11-26 15:57:34 +01002945 pool_destroy_all();
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002946 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002947} /* end deinit() */
2948
Willy Tarreauf3ca5a02020-06-15 18:43:46 +02002949__attribute__((noreturn)) void deinit_and_exit(int status)
Tim Duesterhus26540552020-06-14 00:37:41 +02002950{
2951 deinit();
2952 exit(status);
2953}
William Lallemand72160322018-11-06 17:37:16 +01002954
Willy Tarreau918ff602011-07-25 16:33:49 +02002955/* Runs the polling loop */
Willy Tarreau3ebd55e2020-03-03 14:59:56 +01002956void run_poll_loop()
Willy Tarreau4f60f162007-04-08 16:39:58 +02002957{
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002958 int next, wake;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002959
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002960 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002961 while (1) {
Willy Tarreauc49ba522019-12-11 08:12:23 +01002962 wake_expired_tasks();
2963
William Lallemand1aab50b2018-06-07 09:46:01 +02002964 /* check if we caught some signals and process them in the
2965 first thread */
Willy Tarreaua7ad4ae2020-06-19 12:06:34 +02002966 if (signal_queue_len && tid == 0) {
2967 activity[tid].wake_signal++;
William Lallemand1aab50b2018-06-07 09:46:01 +02002968 signal_process_queue();
Willy Tarreaua7ad4ae2020-06-19 12:06:34 +02002969 }
2970
2971 /* Process a few tasks */
2972 process_runnable_tasks();
Willy Tarreau29857942009-05-10 09:01:21 +02002973
Willy Tarreau7067b3a2019-06-02 11:11:29 +02002974 /* also stop if we failed to cleanly stop all tasks */
2975 if (killed > 1)
2976 break;
2977
Willy Tarreau10146c92015-04-13 20:44:19 +02002978 /* expire immediately if events are pending */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002979 wake = 1;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02002980 if (thread_has_tasks())
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002981 activity[tid].wake_tasks++;
Olivier Houchard79321b92018-07-26 17:55:11 +02002982 else {
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002983 _HA_ATOMIC_OR(&sleeping_thread_mask, tid_bit);
2984 __ha_barrier_atomic_store();
Willy Tarreau95abd5b2020-03-23 09:33:32 +01002985 if (thread_has_tasks()) {
Olivier Houchard79321b92018-07-26 17:55:11 +02002986 activity[tid].wake_tasks++;
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002987 _HA_ATOMIC_AND(&sleeping_thread_mask, ~tid_bit);
Olivier Houchard79321b92018-07-26 17:55:11 +02002988 } else
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002989 wake = 0;
Olivier Houchard79321b92018-07-26 17:55:11 +02002990 }
Willy Tarreau10146c92015-04-13 20:44:19 +02002991
Willy Tarreau4f46a352020-03-23 09:27:28 +01002992 if (!wake) {
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002993 int i;
2994
2995 if (stopping) {
Willy Tarreaud6455742020-05-13 14:30:25 +02002996 if (_HA_ATOMIC_OR(&stopping_thread_mask, tid_bit) == tid_bit) {
2997 /* notify all threads that stopping was just set */
2998 for (i = 0; i < global.nbthread; i++)
Willy Tarreau369a2ef2020-06-29 19:23:19 +02002999 if (((all_threads_mask & ~stopping_thread_mask) >> i) & 1)
Willy Tarreaud6455742020-05-13 14:30:25 +02003000 wake_thread(i);
3001 }
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02003002 }
Willy Tarreau4f46a352020-03-23 09:27:28 +01003003
3004 /* stop when there's nothing left to do */
3005 if ((jobs - unstoppable_jobs) == 0 &&
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02003006 (stopping_thread_mask & all_threads_mask) == all_threads_mask) {
3007 /* wake all threads waiting on jobs==0 */
3008 for (i = 0; i < global.nbthread; i++)
3009 if (((all_threads_mask & ~tid_bit) >> i) & 1)
3010 wake_thread(i);
Willy Tarreau4f46a352020-03-23 09:27:28 +01003011 break;
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02003012 }
Willy Tarreau4f46a352020-03-23 09:27:28 +01003013 }
3014
Willy Tarreauc49ba522019-12-11 08:12:23 +01003015 /* If we have to sleep, measure how long */
3016 next = wake ? TICK_ETERNITY : next_timer_expiry();
3017
Willy Tarreau58b458d2008-06-29 22:40:23 +02003018 /* The poller will ensure it returns around <next> */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02003019 cur_poller.poll(&cur_poller, next, wake);
Emeric Brun64cc49c2017-10-03 14:46:45 +02003020
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01003021 activity[tid].loops++;
Willy Tarreau4f60f162007-04-08 16:39:58 +02003022 }
3023}
3024
Christopher Faulet1d17c102017-08-29 15:38:48 +02003025static void *run_thread_poll_loop(void *data)
3026{
Willy Tarreau082b6282019-05-22 14:42:12 +02003027 struct per_thread_alloc_fct *ptaf;
Christopher Faulet1d17c102017-08-29 15:38:48 +02003028 struct per_thread_init_fct *ptif;
3029 struct per_thread_deinit_fct *ptdf;
Willy Tarreau082b6282019-05-22 14:42:12 +02003030 struct per_thread_free_fct *ptff;
Willy Tarreau34a150c2019-06-11 09:16:41 +02003031 static int init_left = 0;
Willy Tarreauaf613e82020-06-05 08:40:51 +02003032 __decl_thread(static pthread_mutex_t init_mutex = PTHREAD_MUTEX_INITIALIZER);
3033 __decl_thread(static pthread_cond_t init_cond = PTHREAD_COND_INITIALIZER);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003034
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003035 ha_set_tid((unsigned long)data);
Willy Tarreaud022e9c2019-09-24 08:25:15 +02003036 sched = &task_per_thread[tid];
Willy Tarreau91e6df02019-05-03 17:21:18 +02003037
Willy Tarreauf6178242019-05-21 19:46:58 +02003038#if (_POSIX_TIMERS > 0) && defined(_POSIX_THREAD_CPUTIME)
Willy Tarreau91e6df02019-05-03 17:21:18 +02003039#ifdef USE_THREAD
Willy Tarreau8323a372019-05-20 18:57:53 +02003040 pthread_getcpuclockid(pthread_self(), &ti->clock_id);
Willy Tarreau624dcbf2019-05-20 20:23:06 +02003041#else
Willy Tarreau8323a372019-05-20 18:57:53 +02003042 ti->clock_id = CLOCK_THREAD_CPUTIME_ID;
Willy Tarreau91e6df02019-05-03 17:21:18 +02003043#endif
Willy Tarreau663fda42019-05-21 15:14:08 +02003044#endif
Willy Tarreau6ec902a2019-06-07 14:41:11 +02003045 /* Now, initialize one thread init at a time. This is better since
3046 * some init code is a bit tricky and may release global resources
3047 * after reallocating them locally. This will also ensure there is
3048 * no race on file descriptors allocation.
3049 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02003050#ifdef USE_THREAD
3051 pthread_mutex_lock(&init_mutex);
3052#endif
3053 /* The first thread must set the number of threads left */
3054 if (!init_left)
3055 init_left = global.nbthread;
3056 init_left--;
Willy Tarreau91e6df02019-05-03 17:21:18 +02003057
Christopher Faulet1d17c102017-08-29 15:38:48 +02003058 tv_update_date(-1,-1);
3059
Willy Tarreau082b6282019-05-22 14:42:12 +02003060 /* per-thread alloc calls performed here are not allowed to snoop on
3061 * other threads, so they are free to initialize at their own rhythm
3062 * as long as they act as if they were alone. None of them may rely
3063 * on resources initialized by the other ones.
3064 */
3065 list_for_each_entry(ptaf, &per_thread_alloc_list, list) {
3066 if (!ptaf->fct()) {
3067 ha_alert("failed to allocate resources for thread %u.\n", tid);
3068 exit(1);
3069 }
3070 }
3071
Willy Tarreau3078e9f2019-05-20 10:50:43 +02003072 /* per-thread init calls performed here are not allowed to snoop on
3073 * other threads, so they are free to initialize at their own rhythm
3074 * as long as they act as if they were alone.
3075 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02003076 list_for_each_entry(ptif, &per_thread_init_list, list) {
3077 if (!ptif->fct()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003078 ha_alert("failed to initialize thread %u.\n", tid);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003079 exit(1);
3080 }
3081 }
3082
Willy Tarreau71092822019-06-10 09:51:04 +02003083 /* enabling protocols will result in fd_insert() calls to be performed,
3084 * we want all threads to have already allocated their local fd tables
Willy Tarreau34a150c2019-06-11 09:16:41 +02003085 * before doing so, thus only the last thread does it.
Willy Tarreau71092822019-06-10 09:51:04 +02003086 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02003087 if (init_left == 0)
Willy Tarreaue4d7c9d2019-06-10 10:14:52 +02003088 protocol_enable_all();
Willy Tarreau6ec902a2019-06-07 14:41:11 +02003089
Willy Tarreau34a150c2019-06-11 09:16:41 +02003090#ifdef USE_THREAD
3091 pthread_cond_broadcast(&init_cond);
3092 pthread_mutex_unlock(&init_mutex);
3093
3094 /* now wait for other threads to finish starting */
3095 pthread_mutex_lock(&init_mutex);
3096 while (init_left)
3097 pthread_cond_wait(&init_cond, &init_mutex);
3098 pthread_mutex_unlock(&init_mutex);
3099#endif
Willy Tarreau3078e9f2019-05-20 10:50:43 +02003100
Willy Tarreaua45a8b52019-12-06 16:31:45 +01003101#if defined(PR_SET_NO_NEW_PRIVS) && defined(USE_PRCTL)
3102 /* Let's refrain from using setuid executables. This way the impact of
3103 * an eventual vulnerability in a library remains limited. It may
3104 * impact external checks but who cares about them anyway ? In the
3105 * worst case it's possible to disable the option. Obviously we do this
3106 * in workers only. We can't hard-fail on this one as it really is
3107 * implementation dependent though we're interested in feedback, hence
3108 * the warning.
3109 */
3110 if (!(global.tune.options & GTUNE_INSECURE_SETUID) && !master) {
3111 static int warn_fail;
3112 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
3113 ha_warning("Failed to disable setuid, please report to developers with detailed "
3114 "information about your operating system. You can silence this warning "
3115 "by adding 'insecure-setuid-wanted' in the 'global' section.\n");
3116 }
3117 }
3118#endif
3119
Willy Tarreaud96f1122019-12-03 07:07:36 +01003120#if defined(RLIMIT_NPROC)
3121 /* all threads have started, it's now time to prevent any new thread
3122 * or process from starting. Obviously we do this in workers only. We
3123 * can't hard-fail on this one as it really is implementation dependent
3124 * though we're interested in feedback, hence the warning.
3125 */
3126 if (!(global.tune.options & GTUNE_INSECURE_FORK) && !master) {
3127 struct rlimit limit = { .rlim_cur = 0, .rlim_max = 0 };
3128 static int warn_fail;
3129
3130 if (setrlimit(RLIMIT_NPROC, &limit) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
3131 ha_warning("Failed to disable forks, please report to developers with detailed "
3132 "information about your operating system. You can silence this warning "
3133 "by adding 'insecure-fork-wanted' in the 'global' section.\n");
3134 }
3135 }
3136#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003137 run_poll_loop();
3138
3139 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
3140 ptdf->fct();
3141
Willy Tarreau082b6282019-05-22 14:42:12 +02003142 list_for_each_entry(ptff, &per_thread_free_list, list)
3143 ptff->fct();
3144
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003145#ifdef USE_THREAD
Olivier Houchardb23a61f2019-03-08 18:51:17 +01003146 _HA_ATOMIC_AND(&all_threads_mask, ~tid_bit);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003147 if (tid > 0)
3148 pthread_exit(NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003149#endif
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003150 return NULL;
3151}
Christopher Faulet1d17c102017-08-29 15:38:48 +02003152
William Dauchyf9af9d72019-11-17 15:47:16 +01003153/* set uid/gid depending on global settings */
3154static void set_identity(const char *program_name)
3155{
3156 if (global.gid) {
3157 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
3158 ha_warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
3159 " without 'uid'/'user' is generally useless.\n", program_name);
3160
3161 if (setgid(global.gid) == -1) {
3162 ha_alert("[%s.main()] Cannot set gid %d.\n", program_name, global.gid);
3163 protocol_unbind_all();
3164 exit(1);
3165 }
3166 }
3167
3168 if (global.uid && setuid(global.uid) == -1) {
3169 ha_alert("[%s.main()] Cannot set uid %d.\n", program_name, global.uid);
3170 protocol_unbind_all();
3171 exit(1);
3172 }
3173}
3174
Willy Tarreaubaaee002006-06-26 02:48:02 +02003175int main(int argc, char **argv)
3176{
3177 int err, retry;
3178 struct rlimit limit;
Emeric Bruncf20bf12010-10-22 16:06:11 +02003179 char errmsg[100];
Willy Tarreau269ab312012-09-05 08:02:48 +02003180 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003181
Olivier Houchard5fa300d2018-02-03 15:15:21 +01003182 setvbuf(stdout, NULL, _IONBF, 0);
Willy Tarreau5794fb02018-11-25 18:43:29 +01003183
Willy Tarreauff9c9142019-02-07 10:39:36 +01003184 /* this can only safely be done here, though it's optimized away by
3185 * the compiler.
3186 */
3187 if (MAX_PROCS < 1 || MAX_PROCS > LONGBITS) {
3188 ha_alert("MAX_PROCS value must be between 1 and %d inclusive; "
3189 "HAProxy was built with value %d, please fix it and rebuild.\n",
3190 LONGBITS, MAX_PROCS);
3191 exit(1);
3192 }
3193
Willy Tarreaubf696402019-03-01 10:09:28 +01003194 /* take a copy of initial limits before we possibly change them */
3195 getrlimit(RLIMIT_NOFILE, &limit);
3196 rlim_fd_cur_at_boot = limit.rlim_cur;
3197 rlim_fd_max_at_boot = limit.rlim_max;
3198
Willy Tarreau5794fb02018-11-25 18:43:29 +01003199 /* process all initcalls in order of potential dependency */
3200 RUN_INITCALLS(STG_PREPARE);
3201 RUN_INITCALLS(STG_LOCK);
3202 RUN_INITCALLS(STG_ALLOC);
3203 RUN_INITCALLS(STG_POOL);
3204 RUN_INITCALLS(STG_REGISTER);
3205 RUN_INITCALLS(STG_INIT);
3206
Emeric Bruncf20bf12010-10-22 16:06:11 +02003207 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003208 signal_register_fct(SIGQUIT, dump, SIGQUIT);
3209 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
3210 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
William Lallemand73b85e72017-06-01 17:38:51 +02003211 signal_register_fct(SIGUSR2, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003212
Willy Tarreaue437c442010-03-17 18:02:46 +01003213 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
3214 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
3215 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003216 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003217 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003218
Willy Tarreaudc23a922011-02-16 11:10:36 +01003219 /* ulimits */
3220 if (!global.rlimit_nofile)
3221 global.rlimit_nofile = global.maxsock;
3222
3223 if (global.rlimit_nofile) {
Willy Tarreaue5cfdac2019-03-01 10:32:05 +01003224 limit.rlim_cur = global.rlimit_nofile;
3225 limit.rlim_max = MAX(rlim_fd_max_at_boot, limit.rlim_cur);
3226
Willy Tarreaudc23a922011-02-16 11:10:36 +01003227 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
Willy Tarreauef635472016-06-21 11:48:18 +02003228 getrlimit(RLIMIT_NOFILE, &limit);
William Dauchy0fec3ab2019-10-27 20:08:11 +01003229 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3230 ha_alert("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n",
3231 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
3232 if (!(global.mode & MODE_MWORKER))
3233 exit(1);
3234 }
3235 else {
3236 /* try to set it to the max possible at least */
3237 limit.rlim_cur = limit.rlim_max;
3238 if (setrlimit(RLIMIT_NOFILE, &limit) != -1)
3239 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau164dd0b2016-06-21 11:51:59 +02003240
William Dauchya5194602020-03-28 19:29:58 +01003241 ha_warning("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n",
William Dauchy0fec3ab2019-10-27 20:08:11 +01003242 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
3243 global.rlimit_nofile = limit.rlim_cur;
3244 }
Willy Tarreaudc23a922011-02-16 11:10:36 +01003245 }
3246 }
3247
3248 if (global.rlimit_memmax) {
3249 limit.rlim_cur = limit.rlim_max =
Willy Tarreau70060452015-12-14 12:46:07 +01003250 global.rlimit_memmax * 1048576ULL;
Willy Tarreaudc23a922011-02-16 11:10:36 +01003251#ifdef RLIMIT_AS
3252 if (setrlimit(RLIMIT_AS, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003253 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3254 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
3255 argv[0], global.rlimit_memmax);
3256 if (!(global.mode & MODE_MWORKER))
3257 exit(1);
3258 }
3259 else
William Dauchya5194602020-03-28 19:29:58 +01003260 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
William Dauchy0fec3ab2019-10-27 20:08:11 +01003261 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01003262 }
3263#else
3264 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003265 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3266 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
3267 argv[0], global.rlimit_memmax);
3268 if (!(global.mode & MODE_MWORKER))
3269 exit(1);
3270 }
3271 else
William Dauchya5194602020-03-28 19:29:58 +01003272 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
William Dauchy0fec3ab2019-10-27 20:08:11 +01003273 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01003274 }
3275#endif
3276 }
3277
Olivier Houchardf73629d2017-04-05 22:33:04 +02003278 if (old_unixsocket) {
William Lallemand85b0bd92017-06-01 17:38:53 +02003279 if (strcmp("/dev/null", old_unixsocket) != 0) {
3280 if (get_old_sockets(old_unixsocket) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003281 ha_alert("Failed to get the sockets from the old process!\n");
William Lallemand85b0bd92017-06-01 17:38:53 +02003282 if (!(global.mode & MODE_MWORKER))
3283 exit(1);
3284 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02003285 }
3286 }
William Lallemand85b0bd92017-06-01 17:38:53 +02003287 get_cur_unixsocket();
3288
Willy Tarreaubaaee002006-06-26 02:48:02 +02003289 /* We will loop at most 100 times with 10 ms delay each time.
3290 * That's at most 1 second. We only send a signal to old pids
3291 * if we cannot grab at least one port.
3292 */
3293 retry = MAX_START_RETRIES;
3294 err = ERR_NONE;
3295 while (retry >= 0) {
3296 struct timeval w;
3297 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01003298 /* exit the loop on no error or fatal error */
3299 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02003300 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02003301 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02003302 break;
3303
3304 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
3305 * listening sockets. So on those platforms, it would be wiser to
3306 * simply send SIGUSR1, which will not be undoable.
3307 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02003308 if (tell_old_pids(SIGTTOU) == 0) {
3309 /* no need to wait if we can't contact old pids */
3310 retry = 0;
3311 continue;
3312 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003313 /* give some time to old processes to stop listening */
3314 w.tv_sec = 0;
3315 w.tv_usec = 10*1000;
3316 select(0, NULL, NULL, NULL, &w);
3317 retry--;
3318 }
3319
3320 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01003321 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02003322 if (retry != MAX_START_RETRIES && nb_oldpids) {
3323 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003324 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02003325 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003326 exit(1);
3327 }
3328
William Lallemand944e6192018-11-21 15:48:31 +01003329 if (!(global.mode & MODE_MWORKER_WAIT) && listeners == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003330 ha_alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003331 /* Note: we don't have to send anything to the old pids because we
3332 * never stopped them. */
3333 exit(1);
3334 }
3335
Emeric Bruncf20bf12010-10-22 16:06:11 +02003336 err = protocol_bind_all(errmsg, sizeof(errmsg));
3337 if ((err & ~ERR_WARN) != ERR_NONE) {
3338 if ((err & ERR_ALERT) || (err & ERR_WARN))
Christopher Faulet767a84b2017-11-24 16:50:31 +01003339 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Emeric Bruncf20bf12010-10-22 16:06:11 +02003340
Christopher Faulet767a84b2017-11-24 16:50:31 +01003341 ha_alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02003342 protocol_unbind_all(); /* cleanup everything we can */
3343 if (nb_oldpids)
3344 tell_old_pids(SIGTTIN);
3345 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02003346 } else if (err & ERR_WARN) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003347 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02003348 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02003349 /* Ok, all listener should now be bound, close any leftover sockets
3350 * the previous process gave us, we don't need them anymore
3351 */
3352 while (xfer_sock_list != NULL) {
3353 struct xfer_sock_list *tmpxfer = xfer_sock_list->next;
3354 close(xfer_sock_list->fd);
3355 free(xfer_sock_list->iface);
3356 free(xfer_sock_list->namespace);
3357 free(xfer_sock_list);
3358 xfer_sock_list = tmpxfer;
3359 }
Willy Tarreaudd815982007-10-16 12:25:14 +02003360
Willy Tarreaubaaee002006-06-26 02:48:02 +02003361 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003362 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
3363 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003364
Willy Tarreaubaaee002006-06-26 02:48:02 +02003365 /* MODE_QUIET can inhibit alerts and warnings below this line */
3366
PiBa-NL149a81a2017-12-25 21:03:31 +01003367 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL) {
3368 /* either stdin/out/err are already closed or should stay as they are. */
3369 if ((global.mode & MODE_DAEMON)) {
3370 /* daemon mode re-executing, stdin/stdout/stderr are already closed so keep quiet */
3371 global.mode &= ~MODE_VERBOSE;
3372 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3373 }
3374 } else {
3375 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
3376 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003377 stdio_quiet(-1);
PiBa-NL149a81a2017-12-25 21:03:31 +01003378 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003379 }
3380
3381 /* open log & pid files before the chroot */
William Lallemand80293002017-11-06 11:00:03 +01003382 if ((global.mode & MODE_DAEMON || global.mode & MODE_MWORKER) && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003383 unlink(global.pidfile);
3384 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
3385 if (pidfd < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003386 ha_alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003387 if (nb_oldpids)
3388 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02003389 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003390 exit(1);
3391 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003392 }
3393
Willy Tarreaub38651a2007-03-24 17:24:39 +01003394 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003395 ha_alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
3396 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02003397 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01003398 exit(1);
3399 }
3400
Jackie Tapia749f74c2020-07-22 18:59:40 -05003401 /* If the user is not root, we'll still let them try the configuration
3402 * but we inform them that unexpected behaviour may occur.
Willy Tarreau4e30ed72009-02-04 18:02:48 +01003403 */
3404 if ((global.last_checks & LSTCHK_NETADM) && getuid())
Christopher Faulet767a84b2017-11-24 16:50:31 +01003405 ha_warning("[%s.main()] Some options which require full privileges"
3406 " might not work well.\n"
3407 "", argv[0]);
Willy Tarreau4e30ed72009-02-04 18:02:48 +01003408
William Lallemand095ba4c2017-06-01 17:38:50 +02003409 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
3410
3411 /* chroot if needed */
3412 if (global.chroot != NULL) {
3413 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003414 ha_alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003415 if (nb_oldpids)
3416 tell_old_pids(SIGTTIN);
3417 protocol_unbind_all();
3418 exit(1);
3419 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02003420 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02003421 }
3422
William Lallemand944e6192018-11-21 15:48:31 +01003423 if (nb_oldpids && !(global.mode & MODE_MWORKER_WAIT))
Willy Tarreaubb545b42010-08-25 12:58:59 +02003424 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003425
William Lallemand27edc4b2019-05-07 17:49:33 +02003426 /* send a SIGTERM to workers who have a too high reloads number */
3427 if ((global.mode & MODE_MWORKER) && !(global.mode & MODE_MWORKER_WAIT))
3428 mworker_kill_max_reloads(SIGTERM);
3429
William Lallemand8a361b52017-06-20 11:20:33 +02003430 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
3431 nb_oldpids = 0;
3432 free(oldpids);
3433 oldpids = NULL;
3434 }
3435
3436
Willy Tarreaubaaee002006-06-26 02:48:02 +02003437 /* Note that any error at this stage will be fatal because we will not
3438 * be able to restart the old pids.
3439 */
3440
William Dauchyf9af9d72019-11-17 15:47:16 +01003441 if ((global.mode & (MODE_MWORKER | MODE_DAEMON)) == 0)
3442 set_identity(argv[0]);
Willy Tarreau636848a2019-04-15 19:38:50 +02003443
Willy Tarreaubaaee002006-06-26 02:48:02 +02003444 /* check ulimits */
3445 limit.rlim_cur = limit.rlim_max = 0;
3446 getrlimit(RLIMIT_NOFILE, &limit);
3447 if (limit.rlim_cur < global.maxsock) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003448 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3449 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
3450 "Please raise 'ulimit-n' to %d or more to avoid any trouble.\n",
3451 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
3452 global.maxsock);
3453 if (!(global.mode & MODE_MWORKER))
3454 exit(1);
3455 }
3456 else
3457 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
William Dauchya5194602020-03-28 19:29:58 +01003458 "Please raise 'ulimit-n' to %d or more to avoid any trouble.\n",
William Dauchy0fec3ab2019-10-27 20:08:11 +01003459 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
3460 global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003461 }
3462
William Lallemand944e6192018-11-21 15:48:31 +01003463 if (global.mode & (MODE_DAEMON | MODE_MWORKER | MODE_MWORKER_WAIT)) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003464 struct proxy *px;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003465 struct peers *curpeers;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003466 int ret = 0;
3467 int proc;
William Lallemande1340412017-12-28 16:09:36 +01003468 int devnullfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003469
William Lallemand095ba4c2017-06-01 17:38:50 +02003470 /*
3471 * if daemon + mworker: must fork here to let a master
3472 * process live in background before forking children
3473 */
William Lallemand73b85e72017-06-01 17:38:51 +02003474
3475 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)
3476 && (global.mode & MODE_MWORKER)
3477 && (global.mode & MODE_DAEMON)) {
William Lallemand095ba4c2017-06-01 17:38:50 +02003478 ret = fork();
3479 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003480 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003481 protocol_unbind_all();
3482 exit(1); /* there has been an error */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003483 } else if (ret > 0) { /* parent leave to daemonize */
William Lallemand095ba4c2017-06-01 17:38:50 +02003484 exit(0);
William Lallemandbfd8eb52018-07-04 15:31:23 +02003485 } else /* change the process group ID in the child (master process) */
3486 setsid();
William Lallemand095ba4c2017-06-01 17:38:50 +02003487 }
William Lallemande20b6a62017-06-01 17:38:55 +02003488
William Lallemande20b6a62017-06-01 17:38:55 +02003489
William Lallemanddeed7802017-11-06 11:00:04 +01003490 /* if in master-worker mode, write the PID of the father */
3491 if (global.mode & MODE_MWORKER) {
3492 char pidstr[100];
Willy Tarreau76a80c72019-06-22 07:41:38 +02003493 snprintf(pidstr, sizeof(pidstr), "%d\n", (int)getpid());
Willy Tarreau46ec48b2018-01-23 19:20:19 +01003494 if (pidfd >= 0)
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01003495 DISGUISE(write(pidfd, pidstr, strlen(pidstr)));
William Lallemanddeed7802017-11-06 11:00:04 +01003496 }
3497
Willy Tarreaubaaee002006-06-26 02:48:02 +02003498 /* the father launches the required number of processes */
William Lallemand944e6192018-11-21 15:48:31 +01003499 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +02003500 if (global.mode & MODE_MWORKER)
3501 mworker_ext_launch_all();
William Lallemand944e6192018-11-21 15:48:31 +01003502 for (proc = 0; proc < global.nbproc; proc++) {
3503 ret = fork();
3504 if (ret < 0) {
3505 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
3506 protocol_unbind_all();
3507 exit(1); /* there has been an error */
3508 }
Willy Tarreau52bf8392020-03-08 00:42:37 +01003509 else if (ret == 0) { /* child breaks here */
3510 ha_random_jump96(relative_pid);
William Lallemand944e6192018-11-21 15:48:31 +01003511 break;
Willy Tarreau52bf8392020-03-08 00:42:37 +01003512 }
William Lallemand944e6192018-11-21 15:48:31 +01003513 if (pidfd >= 0 && !(global.mode & MODE_MWORKER)) {
3514 char pidstr[100];
3515 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01003516 DISGUISE(write(pidfd, pidstr, strlen(pidstr)));
William Lallemand944e6192018-11-21 15:48:31 +01003517 }
3518 if (global.mode & MODE_MWORKER) {
3519 struct mworker_proc *child;
William Lallemandce83b4a2018-10-26 14:47:30 +02003520
William Lallemand220567e2018-11-21 18:04:53 +01003521 ha_notice("New worker #%d (%d) forked\n", relative_pid, ret);
William Lallemand944e6192018-11-21 15:48:31 +01003522 /* find the right mworker_proc */
3523 list_for_each_entry(child, &proc_list, list) {
3524 if (child->relative_pid == relative_pid &&
William Lallemand8f7069a2019-04-12 16:09:23 +02003525 child->reloads == 0 && child->options & PROC_O_TYPE_WORKER) {
William Lallemand944e6192018-11-21 15:48:31 +01003526 child->timestamp = now.tv_sec;
3527 child->pid = ret;
William Lallemand1dc69632019-06-12 19:11:33 +02003528 child->version = strdup(haproxy_version);
William Lallemand944e6192018-11-21 15:48:31 +01003529 break;
3530 }
William Lallemandce83b4a2018-10-26 14:47:30 +02003531 }
3532 }
William Lallemandbc193052018-09-11 10:06:26 +02003533
William Lallemand944e6192018-11-21 15:48:31 +01003534 relative_pid++; /* each child will get a different one */
3535 pid_bit <<= 1;
3536 }
3537 } else {
3538 /* wait mode */
3539 global.nbproc = 1;
3540 proc = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003541 }
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003542
3543#ifdef USE_CPU_AFFINITY
3544 if (proc < global.nbproc && /* child */
Willy Tarreauff9c9142019-02-07 10:39:36 +01003545 proc < MAX_PROCS && /* only the first 32/64 processes may be pinned */
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003546 global.cpu_map.proc[proc]) /* only do this if the process has a CPU map */
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003547#ifdef __FreeBSD__
Olivier Houchard97148f62017-08-16 17:29:11 +02003548 {
3549 cpuset_t cpuset;
3550 int i;
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003551 unsigned long cpu_map = global.cpu_map.proc[proc];
Olivier Houchard97148f62017-08-16 17:29:11 +02003552
3553 CPU_ZERO(&cpuset);
3554 while ((i = ffsl(cpu_map)) > 0) {
3555 CPU_SET(i - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003556 cpu_map &= ~(1UL << (i - 1));
Olivier Houchard97148f62017-08-16 17:29:11 +02003557 }
3558 ret = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(cpuset), &cpuset);
3559 }
David Carlier5e4c8e22019-09-13 05:12:58 +01003560#elif defined(__linux__)
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003561 sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map.proc[proc]);
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003562#endif
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003563#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02003564 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02003565 if (pidfd >= 0) {
3566 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
3567 close(pidfd);
3568 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02003569
3570 /* We won't ever use this anymore */
Willy Tarreaud137dd32010-08-25 12:49:05 +02003571 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003572
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003573 if (proc == global.nbproc) {
William Lallemand944e6192018-11-21 15:48:31 +01003574 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003575
3576 if ((!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
3577 (global.mode & MODE_DAEMON)) {
3578 /* detach from the tty, this is required to properly daemonize. */
William Lallemande1340412017-12-28 16:09:36 +01003579 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL))
3580 stdio_quiet(-1);
3581
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003582 global.mode &= ~MODE_VERBOSE;
3583 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003584 }
3585
William Lallemandb3f2be32018-09-11 10:06:18 +02003586 mworker_loop();
William Lallemand1499b9b2017-06-07 15:04:47 +02003587 /* should never get there */
3588 exit(EXIT_FAILURE);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003589 }
William Lallemandcf4e4962017-06-08 19:05:48 +02003590#if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH)
Grant Zhang872f9c22017-01-21 01:10:18 +00003591 ssl_free_dh();
3592#endif
William Lallemand1499b9b2017-06-07 15:04:47 +02003593 exit(0); /* parent must leave */
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003594 }
3595
William Lallemandcb11fd22017-06-01 17:38:52 +02003596 /* child must never use the atexit function */
3597 atexit_flag = 0;
3598
William Lallemandbc193052018-09-11 10:06:26 +02003599 /* close useless master sockets */
3600 if (global.mode & MODE_MWORKER) {
3601 struct mworker_proc *child, *it;
3602 master = 0;
3603
William Lallemand309dc9a2018-10-26 14:47:45 +02003604 mworker_cli_proxy_stop();
3605
William Lallemandbc193052018-09-11 10:06:26 +02003606 /* free proc struct of other processes */
3607 list_for_each_entry_safe(child, it, &proc_list, list) {
William Lallemandce83b4a2018-10-26 14:47:30 +02003608 /* close the FD of the master side for all
3609 * workers, we don't need to close the worker
3610 * side of other workers since it's done with
3611 * the bind_proc */
Tim Duesterhus742e0f92018-11-25 20:03:39 +01003612 if (child->ipc_fd[0] >= 0)
3613 close(child->ipc_fd[0]);
William Lallemandce83b4a2018-10-26 14:47:30 +02003614 if (child->relative_pid == relative_pid &&
3615 child->reloads == 0) {
3616 /* keep this struct if this is our pid */
3617 proc_self = child;
William Lallemandbc193052018-09-11 10:06:26 +02003618 continue;
William Lallemandce83b4a2018-10-26 14:47:30 +02003619 }
William Lallemandbc193052018-09-11 10:06:26 +02003620 LIST_DEL(&child->list);
Tim Duesterhus9b7a9762019-05-16 20:23:22 +02003621 mworker_free_child(child);
3622 child = NULL;
William Lallemandbc193052018-09-11 10:06:26 +02003623 }
3624 }
Willy Tarreau1605c7a2018-01-23 19:01:49 +01003625
William Lallemande1340412017-12-28 16:09:36 +01003626 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
3627 devnullfd = open("/dev/null", O_RDWR, 0);
3628 if (devnullfd < 0) {
3629 ha_alert("Cannot open /dev/null\n");
3630 exit(EXIT_FAILURE);
3631 }
3632 }
3633
William Lallemand095ba4c2017-06-01 17:38:50 +02003634 /* Must chroot and setgid/setuid in the children */
3635 /* chroot if needed */
3636 if (global.chroot != NULL) {
3637 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003638 ha_alert("[%s.main()] Cannot chroot1(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003639 if (nb_oldpids)
3640 tell_old_pids(SIGTTIN);
3641 protocol_unbind_all();
3642 exit(1);
3643 }
3644 }
3645
3646 free(global.chroot);
3647 global.chroot = NULL;
William Dauchyf9af9d72019-11-17 15:47:16 +01003648 set_identity(argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003649
William Lallemand7f80eb22017-05-26 18:19:55 +02003650 /* pass through every cli socket, and check if it's bound to
3651 * the current process and if it exposes listeners sockets.
3652 * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork.
3653 * */
3654
3655 if (global.stats_fe) {
3656 struct bind_conf *bind_conf;
3657
3658 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3659 if (bind_conf->level & ACCESS_FD_LISTENERS) {
3660 if (!bind_conf->bind_proc || bind_conf->bind_proc & (1UL << proc)) {
3661 global.tune.options |= GTUNE_SOCKET_TRANSFER;
3662 break;
3663 }
3664 }
3665 }
3666 }
3667
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003668 /* we might have to unbind some proxies from some processes */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003669 px = proxies_list;
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003670 while (px != NULL) {
3671 if (px->bind_proc && px->state != PR_STSTOPPED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02003672 if (!(px->bind_proc & (1UL << proc))) {
3673 if (global.tune.options & GTUNE_SOCKET_TRANSFER)
3674 zombify_proxy(px);
3675 else
3676 stop_proxy(px);
3677 }
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003678 }
3679 px = px->next;
3680 }
3681
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003682 /* we might have to unbind some peers sections from some processes */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003683 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003684 if (!curpeers->peers_fe)
3685 continue;
3686
3687 if (curpeers->peers_fe->bind_proc & (1UL << proc))
3688 continue;
3689
3690 stop_proxy(curpeers->peers_fe);
3691 /* disable this peer section so that it kills itself */
Willy Tarreau47c8c022015-09-28 16:39:25 +02003692 signal_unregister_handler(curpeers->sighandler);
Olivier Houchard3f795f72019-04-17 22:51:06 +02003693 task_destroy(curpeers->sync_task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003694 curpeers->sync_task = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02003695 task_destroy(curpeers->peers_fe->task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003696 curpeers->peers_fe->task = NULL;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003697 curpeers->peers_fe = NULL;
3698 }
3699
William Lallemand2e8fad92018-11-13 16:18:23 +01003700 /*
3701 * This is only done in daemon mode because we might want the
3702 * logs on stdout in mworker mode. If we're NOT in QUIET mode,
3703 * we should now close the 3 first FDs to ensure that we can
3704 * detach from the TTY. We MUST NOT do it in other cases since
3705 * it would have already be done, and 0-2 would have been
3706 * affected to listening sockets
Willy Tarreaubaaee002006-06-26 02:48:02 +02003707 */
William Lallemand2e8fad92018-11-13 16:18:23 +01003708 if ((global.mode & MODE_DAEMON) &&
3709 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003710 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003711 stdio_quiet(devnullfd);
Willy Tarreau106cb762008-11-16 07:40:34 +01003712 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003713 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3714 }
3715 pid = getpid(); /* update child's pid */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003716 if (!(global.mode & MODE_MWORKER)) /* in mworker mode we don't want a new pgid for the children */
3717 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02003718 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003719 }
3720
William Dauchye039f262019-11-17 15:47:15 +01003721 /* try our best to re-enable core dumps depending on system capabilities.
3722 * What is addressed here :
3723 * - remove file size limits
3724 * - remove core size limits
3725 * - mark the process dumpable again if it lost it due to user/group
3726 */
3727 if (global.tune.options & GTUNE_SET_DUMPABLE) {
3728 limit.rlim_cur = limit.rlim_max = RLIM_INFINITY;
3729
3730#if defined(RLIMIT_FSIZE)
3731 if (setrlimit(RLIMIT_FSIZE, &limit) == -1) {
3732 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3733 ha_alert("[%s.main()] Failed to set the raise the maximum "
3734 "file size.\n", argv[0]);
3735 if (!(global.mode & MODE_MWORKER))
3736 exit(1);
3737 }
3738 else
3739 ha_warning("[%s.main()] Failed to set the raise the maximum "
William Dauchya5194602020-03-28 19:29:58 +01003740 "file size.\n", argv[0]);
William Dauchye039f262019-11-17 15:47:15 +01003741 }
3742#endif
3743
3744#if defined(RLIMIT_CORE)
3745 if (setrlimit(RLIMIT_CORE, &limit) == -1) {
3746 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3747 ha_alert("[%s.main()] Failed to set the raise the core "
3748 "dump size.\n", argv[0]);
3749 if (!(global.mode & MODE_MWORKER))
3750 exit(1);
3751 }
3752 else
3753 ha_warning("[%s.main()] Failed to set the raise the core "
William Dauchya5194602020-03-28 19:29:58 +01003754 "dump size.\n", argv[0]);
William Dauchye039f262019-11-17 15:47:15 +01003755 }
3756#endif
3757
3758#if defined(USE_PRCTL)
3759 if (prctl(PR_SET_DUMPABLE, 1, 0, 0, 0) == -1)
3760 ha_warning("[%s.main()] Failed to set the dumpable flag, "
3761 "no core will be dumped.\n", argv[0]);
3762#endif
3763 }
3764
Christopher Faulete3a5e352017-10-24 13:53:54 +02003765 global.mode &= ~MODE_STARTING;
Willy Tarreau4f60f162007-04-08 16:39:58 +02003766 /*
3767 * That's it : the central polling loop. Run until we stop.
3768 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02003769#ifdef USE_THREAD
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003770 {
William Lallemand1aab50b2018-06-07 09:46:01 +02003771 sigset_t blocked_sig, old_sig;
Willy Tarreauc40efc12019-05-03 09:22:44 +02003772 int i;
3773
William Lallemand1aab50b2018-06-07 09:46:01 +02003774 /* ensure the signals will be blocked in every thread */
3775 sigfillset(&blocked_sig);
3776 sigdelset(&blocked_sig, SIGPROF);
3777 sigdelset(&blocked_sig, SIGBUS);
3778 sigdelset(&blocked_sig, SIGFPE);
3779 sigdelset(&blocked_sig, SIGILL);
3780 sigdelset(&blocked_sig, SIGSEGV);
3781 pthread_sigmask(SIG_SETMASK, &blocked_sig, &old_sig);
3782
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003783 /* Create nbthread-1 thread. The first thread is the current process */
David Carliera92c5ce2019-09-13 05:03:12 +01003784 ha_thread_info[0].pthread = pthread_self();
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003785 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003786 pthread_create(&ha_thread_info[i].pthread, NULL, &run_thread_poll_loop, (void *)(long)i);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003787
Christopher Faulet62519022017-10-16 15:49:32 +02003788#ifdef USE_CPU_AFFINITY
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003789 /* Now the CPU affinity for all threads */
Willy Tarreau7764a572019-07-16 15:10:34 +02003790 if (global.cpu_map.proc_t1[relative_pid-1])
3791 global.cpu_map.thread[0] &= global.cpu_map.proc_t1[relative_pid-1];
3792
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003793 for (i = 0; i < global.nbthread; i++) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003794 if (global.cpu_map.proc[relative_pid-1])
Willy Tarreau81492c92019-05-03 09:41:23 +02003795 global.cpu_map.thread[i] &= global.cpu_map.proc[relative_pid-1];
Christopher Faulet62519022017-10-16 15:49:32 +02003796
Willy Tarreau421f02e2018-01-20 18:19:22 +01003797 if (i < MAX_THREADS && /* only the first 32/64 threads may be pinned */
Willy Tarreau81492c92019-05-03 09:41:23 +02003798 global.cpu_map.thread[i]) {/* only do this if the thread has a THREAD map */
David Carlier5e4c8e22019-09-13 05:12:58 +01003799#if defined(__APPLE__)
3800 int j;
3801 unsigned long cpu_map = global.cpu_map.thread[i];
3802
3803 while ((j = ffsl(cpu_map)) > 0) {
3804 thread_affinity_policy_data_t cpu_set = { j - 1 };
3805 thread_port_t mthread = pthread_mach_thread_np(ha_thread_info[i].pthread);
3806 thread_policy_set(mthread, THREAD_AFFINITY_POLICY, (thread_policy_t)&cpu_set, 1);
3807 cpu_map &= ~(1UL << (j - 1));
3808 }
3809#else
Olivier Houchard829aa242017-12-01 18:19:43 +01003810#if defined(__FreeBSD__) || defined(__NetBSD__)
3811 cpuset_t cpuset;
3812#else
3813 cpu_set_t cpuset;
3814#endif
3815 int j;
Willy Tarreau81492c92019-05-03 09:41:23 +02003816 unsigned long cpu_map = global.cpu_map.thread[i];
Olivier Houchard829aa242017-12-01 18:19:43 +01003817
3818 CPU_ZERO(&cpuset);
3819
3820 while ((j = ffsl(cpu_map)) > 0) {
3821 CPU_SET(j - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003822 cpu_map &= ~(1UL << (j - 1));
Olivier Houchard829aa242017-12-01 18:19:43 +01003823 }
David Carliera92c5ce2019-09-13 05:03:12 +01003824 pthread_setaffinity_np(ha_thread_info[i].pthread,
Olivier Houchard829aa242017-12-01 18:19:43 +01003825 sizeof(cpuset), &cpuset);
David Carlier5e4c8e22019-09-13 05:12:58 +01003826#endif
Olivier Houchard829aa242017-12-01 18:19:43 +01003827 }
Christopher Faulet1d17c102017-08-29 15:38:48 +02003828 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003829#endif /* !USE_CPU_AFFINITY */
3830
William Lallemand1aab50b2018-06-07 09:46:01 +02003831 /* when multithreading we need to let only the thread 0 handle the signals */
William Lallemandd3801c12018-09-11 10:06:23 +02003832 haproxy_unblock_signals();
William Lallemand1aab50b2018-06-07 09:46:01 +02003833
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003834 /* Finally, start the poll loop for the first thread */
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003835 run_thread_poll_loop(0);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003836
3837 /* Wait the end of other threads */
3838 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003839 pthread_join(ha_thread_info[i].pthread, NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003840
Christopher Fauletb79a94c2017-05-30 15:34:30 +02003841#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
3842 show_lock_stats();
3843#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003844 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003845#else /* ! USE_THREAD */
William Lallemandd3801c12018-09-11 10:06:23 +02003846 haproxy_unblock_signals();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003847 run_thread_poll_loop(0);
Christopher Faulet62519022017-10-16 15:49:32 +02003848#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003849
Tim Duesterhus0a3b43d2020-06-14 00:37:42 +02003850 deinit_and_exit(0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003851}
3852
Willy Tarreaubaaee002006-06-26 02:48:02 +02003853/*
3854 * Local variables:
3855 * c-indent-level: 8
3856 * c-basic-offset: 8
3857 * End:
3858 */