blob: a628c4043a304eeb36b92150b29e29354d41783e [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HA-Proxy : High Availability-enabled HTTP/TCP proxy
Willy Tarreau6c1b6672019-02-26 16:43:49 +01003 * Copyright 2000-2019 Willy Tarreau <willy@haproxy.org>.
Willy Tarreaubaaee002006-06-26 02:48:02 +02004 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 *
Lukas Tribus23953682017-04-28 13:24:30 +000010 * Please refer to RFC7230 - RFC7235 informations about HTTP protocol, and
11 * RFC6265 for informations about cookies usage. More generally, the IETF HTTP
Willy Tarreaubaaee002006-06-26 02:48:02 +020012 * Working Group's web site should be consulted for protocol related changes :
13 *
14 * http://ftp.ics.uci.edu/pub/ietf/http/
15 *
16 * Pending bugs (may be not fixed because never reproduced) :
17 * - solaris only : sometimes, an HTTP proxy with only a dispatch address causes
18 * the proxy to terminate (no core) if the client breaks the connection during
19 * the response. Seen on 1.1.8pre4, but never reproduced. May not be related to
20 * the snprintf() bug since requests were simple (GET / HTTP/1.0), but may be
21 * related to missing setsid() (fixed in 1.1.15)
22 * - a proxy with an invalid config will prevent the startup even if disabled.
23 *
24 * ChangeLog has moved to the CHANGELOG file.
25 *
Willy Tarreaubaaee002006-06-26 02:48:02 +020026 */
27
David Carlier7ece0962015-12-08 21:43:09 +000028#define _GNU_SOURCE
Willy Tarreaubaaee002006-06-26 02:48:02 +020029#include <stdio.h>
30#include <stdlib.h>
31#include <unistd.h>
32#include <string.h>
33#include <ctype.h>
Maxime de Roucy379d9c72016-05-13 23:52:56 +020034#include <dirent.h>
Maxime de Roucy379d9c72016-05-13 23:52:56 +020035#include <sys/stat.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036#include <sys/time.h>
37#include <sys/types.h>
38#include <sys/socket.h>
39#include <netinet/tcp.h>
40#include <netinet/in.h>
41#include <arpa/inet.h>
Olivier Houchardf73629d2017-04-05 22:33:04 +020042#include <net/if.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043#include <netdb.h>
44#include <fcntl.h>
45#include <errno.h>
46#include <signal.h>
47#include <stdarg.h>
48#include <sys/resource.h>
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +010049#include <sys/wait.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020050#include <time.h>
51#include <syslog.h>
Michael Schererab012dd2013-01-12 18:35:19 +010052#include <grp.h>
Willy Tarreaufc6c0322012-11-16 16:12:27 +010053#ifdef USE_CPU_AFFINITY
Willy Tarreaufc6c0322012-11-16 16:12:27 +010054#include <sched.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000055#if defined(__FreeBSD__) || defined(__DragonFly__)
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020056#include <sys/param.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000057#ifdef __FreeBSD__
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020058#include <sys/cpuset.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000059#endif
David Carlier6d5c8412017-11-29 11:02:32 +000060#include <pthread_np.h>
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020061#endif
David Carlier5e4c8e22019-09-13 05:12:58 +010062#ifdef __APPLE__
63#include <mach/mach_types.h>
64#include <mach/thread_act.h>
65#include <mach/thread_policy.h>
66#endif
Willy Tarreaufc6c0322012-11-16 16:12:27 +010067#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020068
Willy Tarreau636848a2019-04-15 19:38:50 +020069#if defined(USE_PRCTL)
70#include <sys/prctl.h>
71#endif
72
Willy Tarreaubaaee002006-06-26 02:48:02 +020073#ifdef DEBUG_FULL
74#include <assert.h>
75#endif
Tim Duesterhusd6942c82017-11-20 15:58:35 +010076#if defined(USE_SYSTEMD)
77#include <systemd/sd-daemon.h>
78#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020079
Willy Tarreau2dd0d472006-06-29 17:53:05 +020080#include <common/base64.h>
81#include <common/cfgparse.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020082#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020083#include <common/compat.h>
84#include <common/config.h>
85#include <common/defaults.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010086#include <common/errors.h>
Willy Tarreau5794fb02018-11-25 18:43:29 +010087#include <common/initcall.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020088#include <common/memory.h>
89#include <common/mini-clist.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010090#include <common/namespace.h>
Willy Tarreauc125cef2019-05-10 09:58:43 +020091#include <common/openssl-compat.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020092#include <common/regex.h>
93#include <common/standard.h>
94#include <common/time.h>
95#include <common/uri_auth.h>
96#include <common/version.h>
Christopher Fauletbe0faa22017-08-29 15:37:10 +020097#include <common/hathreads.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020098
99#include <types/capture.h>
William Lallemandce83b4a2018-10-26 14:47:30 +0200100#include <types/cli.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +0200101#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200102#include <types/global.h>
Simon Hormanac821422011-07-15 13:14:09 +0900103#include <types/acl.h>
Willy Tarreau3c63fd82011-09-07 18:00:47 +0200104#include <types/peers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200105
Willy Tarreau0fc45a72007-06-17 00:36:03 +0200106#include <proto/acl.h>
Willy Tarreau609aad92018-11-22 08:31:09 +0100107#include <proto/activity.h>
Willy Tarreau2e845be2012-10-19 19:49:09 +0200108#include <proto/arg.h>
Willy Tarreau3c595ac2015-04-19 09:59:31 +0200109#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200110#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +0200111#include <proto/channel.h>
William Lallemandce83b4a2018-10-26 14:47:30 +0200112#include <proto/cli.h>
Willy Tarreauf2943dc2012-10-26 20:10:28 +0200113#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200114#include <proto/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +0200115#include <proto/filters.h>
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +0100116#include <proto/hlua.h>
Willy Tarreau61c112a2018-10-02 16:43:32 +0200117#include <proto/http_rules.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +0200118#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200119#include <proto/log.h>
William Lallemand48dfbbd2019-04-01 11:29:53 +0200120#include <proto/mworker.h>
Thierry FOURNIERaf5a29d2014-03-11 14:29:22 +0100121#include <proto/pattern.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +0200122#include <proto/protocol.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200123#include <proto/http_ana.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200124#include <proto/proxy.h>
125#include <proto/queue.h>
126#include <proto/server.h>
Willy Tarreaub1ec8c42015-04-03 13:53:24 +0200127#include <proto/session.h>
Willy Tarreau87b09662015-04-03 00:22:06 +0200128#include <proto/stream.h>
Willy Tarreau29857942009-05-10 09:01:21 +0200129#include <proto/signal.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200130#include <proto/task.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +0200131#include <proto/dns.h>
Christopher Fauletff2613e2016-11-09 11:36:17 +0100132#include <proto/vars.h>
Grant Zhang872f9c22017-01-21 01:10:18 +0000133#include <proto/ssl_sock.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200134
Willy Tarreau7b5654f2019-03-29 21:30:17 +0100135/* array of init calls for older platforms */
136DECLARE_INIT_STAGES;
137
Willy Tarreau477ecd82010-01-03 21:12:30 +0100138/* list of config files */
139static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200140int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100141int relative_pid = 1; /* process id starting at 1 */
Willy Tarreau387bd4f2017-11-10 19:08:14 +0100142unsigned long pid_bit = 1; /* bit corresponding to the process id */
Willy Tarreaua38a7172019-02-02 17:11:28 +0100143unsigned long all_proc_mask = 1; /* mask of all processes */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200144
Olivier Houchard79321b92018-07-26 17:55:11 +0200145volatile unsigned long sleeping_thread_mask; /* Threads that are about to sleep in poll() */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200146/* global options */
147struct global global = {
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100148 .hard_stop_after = TICK_ETERNITY,
Willy Tarreau247a13a2012-11-15 17:38:15 +0100149 .nbproc = 1,
Willy Tarreau149ab772019-01-26 14:27:06 +0100150 .nbthread = 0,
William Lallemand5f232402012-04-05 18:02:55 +0200151 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200152 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
William Lallemand9d5f5482012-11-07 16:12:57 +0100153 .maxzlibmem = 0,
William Lallemandd85f9172012-11-09 17:05:39 +0100154 .comp_rate_lim = 0,
Emeric Brun850efd52014-01-29 12:24:34 +0100155 .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED,
Emeric Bruned760922010-10-22 17:59:25 +0200156 .unix_bind = {
157 .ux = {
158 .uid = -1,
159 .gid = -1,
160 .mode = 0,
161 }
162 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200163 .tune = {
Willy Tarreau7ac908b2019-02-27 12:02:18 +0100164 .options = GTUNE_LISTENER_MQ,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100165 .bufsize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Willy Tarreau27097842015-09-28 13:53:23 +0200166 .maxrewrite = -1,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100167 .chksize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Willy Tarreaua24adf02014-11-27 01:11:56 +0100168 .reserved_bufs = RESERVED_BUFS,
Willy Tarreauf3045d22015-04-29 16:24:50 +0200169 .pattern_cache = DEFAULT_PAT_LRU_SIZE,
Olivier Houchard88698d92019-04-16 19:07:22 +0200170 .pool_low_ratio = 20,
171 .pool_high_ratio = 25,
Christopher Faulet41ba36f2019-07-19 09:36:45 +0200172 .max_http_hdr = MAX_HTTP_HDR,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200173#ifdef USE_OPENSSL
Emeric Brun46635772012-11-14 11:32:56 +0100174 .sslcachesize = SSLCACHESIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200175#endif
William Lallemandf3747832012-11-09 12:33:10 +0100176 .comp_maxlevel = 1,
Willy Tarreau7e312732014-02-12 16:35:14 +0100177#ifdef DEFAULT_IDLE_TIMER
178 .idle_timer = DEFAULT_IDLE_TIMER,
179#else
180 .idle_timer = 1000, /* 1 second */
181#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200182 },
Emeric Brun76d88952012-10-05 15:47:31 +0200183#ifdef USE_OPENSSL
184#ifdef DEFAULT_MAXSSLCONN
Willy Tarreau403edff2012-09-06 11:58:37 +0200185 .maxsslconn = DEFAULT_MAXSSLCONN,
186#endif
Emeric Brun76d88952012-10-05 15:47:31 +0200187#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200188 /* others NULL OK */
189};
190
191/*********************************************************************/
192
193int stopping; /* non zero means stopping in progress */
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100194int killed; /* non zero means a hard-stop is triggered */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200195int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
William Lallemanda7199262018-11-16 16:57:20 +0100196int unstoppable_jobs = 0; /* number of active jobs that can't be stopped during a soft stop */
Willy Tarreau199ad242018-11-05 16:31:22 +0100197int active_peers = 0; /* number of active peers (connection attempts and connected) */
Willy Tarreau2d372c22018-11-05 17:12:27 +0100198int connected_peers = 0; /* number of connected peers (verified ones) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200199
200/* Here we store informations about the pids of the processes we may pause
201 * or kill. We will send them a signal every 10 ms until we can bind to all
202 * our ports. With 200 retries, that's about 2 seconds.
203 */
204#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200205static int *oldpids = NULL;
206static int oldpids_sig; /* use USR1 or TERM */
207
Olivier Houchardf73629d2017-04-05 22:33:04 +0200208/* Path to the unix socket we use to retrieve listener sockets from the old process */
209static const char *old_unixsocket;
210
William Lallemand85b0bd92017-06-01 17:38:53 +0200211static char *cur_unixsocket = NULL;
212
William Lallemandcb11fd22017-06-01 17:38:52 +0200213int atexit_flag = 0;
214
Willy Tarreaubb545b42010-08-25 12:58:59 +0200215int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200216const int zero = 0;
217const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200218const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200219
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100220char hostname[MAX_HOSTNAME_LEN];
Emeric Brun2b920a12010-09-23 18:30:22 +0200221char localpeer[MAX_HOSTNAME_LEN];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200222
Willy Tarreau89efaed2013-12-13 15:14:55 +0100223/* used from everywhere just to drain results we don't want to read and which
224 * recent versions of gcc increasingly and annoyingly complain about.
225 */
226int shut_your_big_mouth_gcc_int = 0;
227
William Lallemand73b85e72017-06-01 17:38:51 +0200228static char **next_argv = NULL;
229
William Lallemandbc193052018-09-11 10:06:26 +0200230struct list proc_list = LIST_HEAD_INIT(proc_list);
231
232int master = 0; /* 1 if in master, 0 if in child */
Willy Tarreaubf696402019-03-01 10:09:28 +0100233unsigned int rlim_fd_cur_at_boot = 0;
234unsigned int rlim_fd_max_at_boot = 0;
William Lallemandbc193052018-09-11 10:06:26 +0200235
William Lallemand16dd1b32018-11-19 18:46:18 +0100236struct mworker_proc *proc_self = NULL;
William Lallemandbc193052018-09-11 10:06:26 +0200237
William Lallemandb3f2be32018-09-11 10:06:18 +0200238static void *run_thread_poll_loop(void *data);
239
Willy Tarreauff055502014-04-28 22:27:06 +0200240/* bitfield of a few warnings to emit just once (WARN_*) */
241unsigned int warned = 0;
242
William Lallemande7361152018-10-26 14:47:36 +0200243/* master CLI configuration (-S flag) */
244struct list mworker_cli_conf = LIST_HEAD_INIT(mworker_cli_conf);
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100245
246/* These are strings to be reported in the output of "haproxy -vv". They may
247 * either be constants (in which case must_free must be zero) or dynamically
248 * allocated strings to pass to free() on exit, and in this case must_free
249 * must be non-zero.
250 */
251struct list build_opts_list = LIST_HEAD_INIT(build_opts_list);
252struct build_opts_str {
253 struct list list;
254 const char *str;
255 int must_free;
256};
257
Willy Tarreaue6945732016-12-21 19:57:00 +0100258/* These functions are called just after the point where the program exits
259 * after a config validity check, so they are generally suited for resource
260 * allocation and slow initializations that should be skipped during basic
261 * config checks. The functions must return 0 on success, or a combination
262 * of ERR_* flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause
263 * and immediate exit, so the function must have emitted any useful error.
264 */
265struct list post_check_list = LIST_HEAD_INIT(post_check_list);
266struct post_check_fct {
267 struct list list;
268 int (*fct)();
269};
270
Christopher Fauletc1692962019-08-12 09:51:07 +0200271/* These functions are called for each proxy just after the config validity
272 * check. The functions must return 0 on success, or a combination of ERR_*
273 * flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause and immediate
274 * exit, so the function must have emitted any useful error.
275 */
276struct list post_proxy_check_list = LIST_HEAD_INIT(post_proxy_check_list);
277struct post_proxy_check_fct {
278 struct list list;
279 int (*fct)(struct proxy *);
280};
281
282/* These functions are called for each server just after the config validity
283 * check. The functions must return 0 on success, or a combination of ERR_*
284 * flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause and immediate
285 * exit, so the function must have emitted any useful error.
286 */
287struct list post_server_check_list = LIST_HEAD_INIT(post_server_check_list);
288struct post_server_check_fct {
289 struct list list;
290 int (*fct)(struct server *);
291};
292
Willy Tarreau082b6282019-05-22 14:42:12 +0200293/* These functions are called for each thread just after the thread creation
294 * and before running the init functions. They should be used to do per-thread
295 * (re-)allocations that are needed by subsequent functoins. They must return 0
296 * if an error occurred. */
297struct list per_thread_alloc_list = LIST_HEAD_INIT(per_thread_alloc_list);
298struct per_thread_alloc_fct {
Willy Tarreau05554e62016-12-21 20:46:26 +0100299 struct list list;
Willy Tarreau082b6282019-05-22 14:42:12 +0200300 int (*fct)();
Willy Tarreau05554e62016-12-21 20:46:26 +0100301};
302
Christopher Faulet415f6112017-07-25 16:52:58 +0200303/* These functions are called for each thread just after the thread creation
304 * and before running the scheduler. They should be used to do per-thread
305 * initializations. They must return 0 if an error occurred. */
306struct list per_thread_init_list = LIST_HEAD_INIT(per_thread_init_list);
307struct per_thread_init_fct {
308 struct list list;
309 int (*fct)();
310};
311
Willy Tarreau082b6282019-05-22 14:42:12 +0200312/* These functions are called when freeing the global sections at the end of
313 * deinit, after everything is stopped. They don't return anything. They should
314 * not release shared resources that are possibly used by other deinit
315 * functions, only close/release what is private. Use the per_thread_free_list
316 * to release shared resources.
317 */
318struct list post_deinit_list = LIST_HEAD_INIT(post_deinit_list);
319struct post_deinit_fct {
320 struct list list;
321 void (*fct)();
322};
323
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +0200324/* These functions are called when freeing a proxy during the deinit, after
325 * everything isg stopped. They don't return anything. They should not release
326 * the proxy itself or any shared resources that are possibly used by other
327 * deinit functions, only close/release what is private.
328 */
329struct list proxy_deinit_list = LIST_HEAD_INIT(proxy_deinit_list);
330struct proxy_deinit_fct {
331 struct list list;
332 void (*fct)(struct proxy *);
333};
334
335/* These functions are called when freeing a server during the deinit, after
336 * everything isg stopped. They don't return anything. They should not release
337 * the proxy itself or any shared resources that are possibly used by other
338 * deinit functions, only close/release what is private.
339 */
340struct list server_deinit_list = LIST_HEAD_INIT(server_deinit_list);
341struct server_deinit_fct {
342 struct list list;
343 void (*fct)(struct server *);
344};
345
Willy Tarreau082b6282019-05-22 14:42:12 +0200346/* These functions are called when freeing the global sections at the end of
347 * deinit, after the thread deinit functions, to release unneeded memory
348 * allocations. They don't return anything, and they work in best effort mode
349 * as their sole goal is to make valgrind mostly happy.
350 */
351struct list per_thread_free_list = LIST_HEAD_INIT(per_thread_free_list);
352struct per_thread_free_fct {
353 struct list list;
354 int (*fct)();
355};
356
Christopher Faulet415f6112017-07-25 16:52:58 +0200357/* These functions are called for each thread just after the scheduler loop and
358 * before exiting the thread. They don't return anything and, as for post-deinit
359 * functions, they work in best effort mode as their sole goal is to make
360 * valgrind mostly happy. */
361struct list per_thread_deinit_list = LIST_HEAD_INIT(per_thread_deinit_list);
362struct per_thread_deinit_fct {
363 struct list list;
364 void (*fct)();
365};
366
Willy Tarreaubaaee002006-06-26 02:48:02 +0200367/*********************************************************************/
368/* general purpose functions ***************************************/
369/*********************************************************************/
370
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100371/* used to register some build option strings at boot. Set must_free to
372 * non-zero if the string must be freed upon exit.
373 */
374void hap_register_build_opts(const char *str, int must_free)
375{
376 struct build_opts_str *b;
377
378 b = calloc(1, sizeof(*b));
379 if (!b) {
380 fprintf(stderr, "out of memory\n");
381 exit(1);
382 }
383 b->str = str;
384 b->must_free = must_free;
385 LIST_ADDQ(&build_opts_list, &b->list);
386}
387
Willy Tarreaue6945732016-12-21 19:57:00 +0100388/* used to register some initialization functions to call after the checks. */
389void hap_register_post_check(int (*fct)())
390{
391 struct post_check_fct *b;
392
393 b = calloc(1, sizeof(*b));
394 if (!b) {
395 fprintf(stderr, "out of memory\n");
396 exit(1);
397 }
398 b->fct = fct;
399 LIST_ADDQ(&post_check_list, &b->list);
400}
401
Christopher Fauletc1692962019-08-12 09:51:07 +0200402/* used to register some initialization functions to call for each proxy after
403 * the checks.
404 */
405void hap_register_post_proxy_check(int (*fct)(struct proxy *))
406{
407 struct post_proxy_check_fct *b;
408
409 b = calloc(1, sizeof(*b));
410 if (!b) {
411 fprintf(stderr, "out of memory\n");
412 exit(1);
413 }
414 b->fct = fct;
415 LIST_ADDQ(&post_proxy_check_list, &b->list);
416}
417
418/* used to register some initialization functions to call for each server after
419 * the checks.
420 */
421void hap_register_post_server_check(int (*fct)(struct server *))
422{
423 struct post_server_check_fct *b;
424
425 b = calloc(1, sizeof(*b));
426 if (!b) {
427 fprintf(stderr, "out of memory\n");
428 exit(1);
429 }
430 b->fct = fct;
431 LIST_ADDQ(&post_server_check_list, &b->list);
432}
433
Willy Tarreau05554e62016-12-21 20:46:26 +0100434/* used to register some de-initialization functions to call after everything
435 * has stopped.
436 */
437void hap_register_post_deinit(void (*fct)())
438{
439 struct post_deinit_fct *b;
440
441 b = calloc(1, sizeof(*b));
442 if (!b) {
443 fprintf(stderr, "out of memory\n");
444 exit(1);
445 }
446 b->fct = fct;
447 LIST_ADDQ(&post_deinit_list, &b->list);
448}
449
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +0200450/* used to register some per proxy de-initialization functions to call after
451 * everything has stopped.
452 */
453void hap_register_proxy_deinit(void (*fct)(struct proxy *))
454{
455 struct proxy_deinit_fct *b;
456
457 b = calloc(1, sizeof(*b));
458 if (!b) {
459 fprintf(stderr, "out of memory\n");
460 exit(1);
461 }
462 b->fct = fct;
463 LIST_ADDQ(&proxy_deinit_list, &b->list);
464}
465
466
467/* used to register some per server de-initialization functions to call after
468 * everything has stopped.
469 */
470void hap_register_server_deinit(void (*fct)(struct server *))
471{
472 struct server_deinit_fct *b;
473
474 b = calloc(1, sizeof(*b));
475 if (!b) {
476 fprintf(stderr, "out of memory\n");
477 exit(1);
478 }
479 b->fct = fct;
480 LIST_ADDQ(&server_deinit_list, &b->list);
481}
482
Willy Tarreau082b6282019-05-22 14:42:12 +0200483/* used to register some allocation functions to call for each thread. */
484void hap_register_per_thread_alloc(int (*fct)())
485{
486 struct per_thread_alloc_fct *b;
487
488 b = calloc(1, sizeof(*b));
489 if (!b) {
490 fprintf(stderr, "out of memory\n");
491 exit(1);
492 }
493 b->fct = fct;
494 LIST_ADDQ(&per_thread_alloc_list, &b->list);
495}
496
Christopher Faulet415f6112017-07-25 16:52:58 +0200497/* used to register some initialization functions to call for each thread. */
498void hap_register_per_thread_init(int (*fct)())
499{
500 struct per_thread_init_fct *b;
501
502 b = calloc(1, sizeof(*b));
503 if (!b) {
504 fprintf(stderr, "out of memory\n");
505 exit(1);
506 }
507 b->fct = fct;
508 LIST_ADDQ(&per_thread_init_list, &b->list);
509}
510
511/* used to register some de-initialization functions to call for each thread. */
512void hap_register_per_thread_deinit(void (*fct)())
513{
514 struct per_thread_deinit_fct *b;
515
516 b = calloc(1, sizeof(*b));
517 if (!b) {
518 fprintf(stderr, "out of memory\n");
519 exit(1);
520 }
521 b->fct = fct;
522 LIST_ADDQ(&per_thread_deinit_list, &b->list);
523}
524
Willy Tarreau082b6282019-05-22 14:42:12 +0200525/* used to register some free functions to call for each thread. */
526void hap_register_per_thread_free(int (*fct)())
527{
528 struct per_thread_free_fct *b;
529
530 b = calloc(1, sizeof(*b));
531 if (!b) {
532 fprintf(stderr, "out of memory\n");
533 exit(1);
534 }
535 b->fct = fct;
536 LIST_ADDQ(&per_thread_free_list, &b->list);
537}
538
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100539static void display_version()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200540{
Willy Tarreau08dd2022019-11-21 18:07:30 +0100541 printf("HA-Proxy version %s %s - https://haproxy.org/\n"
542 PRODUCT_STATUS "\n", haproxy_version, haproxy_date);
Willy Tarreau47479eb2019-11-21 18:48:20 +0100543
544 if (strlen(PRODUCT_URL_BUGS) > 0) {
545 char base_version[20];
546 int dots = 0;
547 char *del;
548
549 /* only retrieve the base version without distro-specific extensions */
550 for (del = haproxy_version; *del; del++) {
551 if (*del == '.')
552 dots++;
553 else if (*del < '0' || *del > '9')
554 break;
555 }
556
557 strlcpy2(base_version, haproxy_version, del - haproxy_version + 1);
558 if (dots < 2)
559 printf("Known bugs: https://github.com/haproxy/haproxy/issues?q=is:issue+is:open\n");
560 else
561 printf("Known bugs: " PRODUCT_URL_BUGS "\n", base_version);
562 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200563}
564
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100565static void display_build_opts()
Willy Tarreau7b066db2007-12-02 11:28:59 +0100566{
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100567 struct build_opts_str *item;
568
Willy Tarreau7b066db2007-12-02 11:28:59 +0100569 printf("Build options :"
570#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100571 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100572#endif
573#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100574 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100575#endif
576#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100577 "\n CC = " BUILD_CC
578#endif
579#ifdef BUILD_CFLAGS
580 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100581#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100582#ifdef BUILD_OPTIONS
583 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100584#endif
Willy Tarreau7728ed32019-03-27 13:20:08 +0100585#ifdef BUILD_FEATURES
586 "\n\nFeature list : " BUILD_FEATURES
587#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200588 "\n\nDefault settings :"
Willy Tarreauca783d42019-03-13 10:03:07 +0100589 "\n bufsize = %d, maxrewrite = %d, maxpollevents = %d"
Willy Tarreau27a674e2009-08-17 07:23:33 +0200590 "\n\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100591 BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200592
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100593 list_for_each_entry(item, &build_opts_list, list) {
594 puts(item->str);
595 }
596
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100597 putchar('\n');
598
Willy Tarreaube5b6852009-10-03 18:57:08 +0200599 list_pollers(stdout);
600 putchar('\n');
Christopher Faulet98d9fe22018-04-10 14:37:32 +0200601 list_mux_proto(stdout);
602 putchar('\n');
Willy Tarreau679bba12019-03-19 08:08:10 +0100603 list_services(stdout);
604 putchar('\n');
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100605 list_filters(stdout);
606 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100607}
608
Willy Tarreaubaaee002006-06-26 02:48:02 +0200609/*
610 * This function prints the command line usage and exits
611 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100612static void usage(char *name)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200613{
614 display_version();
615 fprintf(stderr,
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200616 "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200617 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreaua088d312015-10-08 11:58:48 +0200618 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100619 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200620 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200621 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200622 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200623 " -D goes daemon ; -C changes to <dir> before loading files.\n"
William Lallemand095ba4c2017-06-01 17:38:50 +0200624 " -W master-worker mode.\n"
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100625#if defined(USE_SYSTEMD)
626 " -Ws master-worker mode with systemd notify support.\n"
627#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200628 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200629 " -c check mode : only check config files and exit\n"
Willy Tarreauca783d42019-03-13 10:03:07 +0100630 " -n sets the maximum total # of connections (uses ulimit -n)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200631 " -m limits the usable amount of memory (in MB)\n"
632 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200633 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200634 " -p writes pids of all children to this file\n"
Willy Tarreaue5733232019-05-22 19:24:06 +0200635#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200636 " -de disables epoll() usage even when available\n"
637#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200638#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200639 " -dk disables kqueue() usage even when available\n"
640#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200641#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +0000642 " -dv disables event ports usage even when available\n"
643#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200644#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200645 " -dp disables poll() usage even when available\n"
646#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200647#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100648 " -dS disables splice usage (broken on old kernels)\n"
649#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200650#if defined(USE_GETADDRINFO)
651 " -dG disables getaddrinfo() usage\n"
652#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000653#if defined(SO_REUSEPORT)
654 " -dR disables SO_REUSEPORT usage\n"
655#endif
Willy Tarreau3eed10e2016-11-07 21:03:16 +0100656 " -dr ignores server address resolution failures\n"
Emeric Brun850efd52014-01-29 12:24:34 +0100657 " -dV disables SSL verify on servers side\n"
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200658 " -sf/-st [pid ]* finishes/terminates old pids.\n"
Olivier Houchardf73629d2017-04-05 22:33:04 +0200659 " -x <unix_socket> get listening sockets from a unix socket\n"
William Lallemand63329e32019-06-13 17:03:37 +0200660 " -S <bind>[,<bind options>...] new master CLI\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200661 "\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100662 name, cfg_maxpconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200663 exit(1);
664}
665
666
667
668/*********************************************************************/
669/* more specific functions ***************************************/
670/*********************************************************************/
671
William Lallemand73b85e72017-06-01 17:38:51 +0200672/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
673 * pids the signal was correctly delivered to.
674 */
William Lallemande25473c2019-04-01 11:29:56 +0200675int tell_old_pids(int sig)
William Lallemand73b85e72017-06-01 17:38:51 +0200676{
677 int p;
678 int ret = 0;
679 for (p = 0; p < nb_oldpids; p++)
680 if (kill(oldpids[p], sig) == 0)
681 ret++;
682 return ret;
683}
684
William Lallemand75ea0a02017-11-15 19:02:58 +0100685/*
William Lallemand73b85e72017-06-01 17:38:51 +0200686 * remove a pid forom the olpid array and decrease nb_oldpids
687 * return 1 pid was found otherwise return 0
688 */
689
690int delete_oldpid(int pid)
691{
692 int i;
693
694 for (i = 0; i < nb_oldpids; i++) {
695 if (oldpids[i] == pid) {
696 oldpids[i] = oldpids[nb_oldpids - 1];
697 oldpids[nb_oldpids - 1] = 0;
698 nb_oldpids--;
699 return 1;
700 }
701 }
702 return 0;
703}
704
William Lallemand85b0bd92017-06-01 17:38:53 +0200705
706static void get_cur_unixsocket()
707{
708 /* if -x was used, try to update the stat socket if not available anymore */
709 if (global.stats_fe) {
710 struct bind_conf *bind_conf;
711
712 /* pass through all stats socket */
713 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
714 struct listener *l;
715
716 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
717
718 if (l->addr.ss_family == AF_UNIX &&
719 (bind_conf->level & ACCESS_FD_LISTENERS)) {
720 const struct sockaddr_un *un;
721
722 un = (struct sockaddr_un *)&l->addr;
723 /* priority to old_unixsocket */
724 if (!cur_unixsocket) {
725 cur_unixsocket = strdup(un->sun_path);
726 } else {
727 if (old_unixsocket && !strcmp(un->sun_path, old_unixsocket)) {
728 free(cur_unixsocket);
729 cur_unixsocket = strdup(old_unixsocket);
730 return;
731 }
732 }
733 }
734 }
735 }
736 }
737 if (!cur_unixsocket && old_unixsocket)
738 cur_unixsocket = strdup(old_unixsocket);
739}
740
William Lallemand73b85e72017-06-01 17:38:51 +0200741/*
742 * When called, this function reexec haproxy with -sf followed by current
Joseph Herlant03420902018-11-15 10:41:50 -0800743 * children PIDs and possibly old children PIDs if they didn't leave yet.
William Lallemand73b85e72017-06-01 17:38:51 +0200744 */
William Lallemanda57b7e32018-12-14 21:11:31 +0100745void mworker_reload()
William Lallemand73b85e72017-06-01 17:38:51 +0200746{
747 int next_argc = 0;
William Lallemand73b85e72017-06-01 17:38:51 +0200748 char *msg = NULL;
Willy Tarreau8dca1952019-03-01 10:21:55 +0100749 struct rlimit limit;
William Lallemand7c756a82018-11-26 11:53:40 +0100750 struct per_thread_deinit_fct *ptdf;
William Lallemand73b85e72017-06-01 17:38:51 +0200751
752 mworker_block_signals();
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100753#if defined(USE_SYSTEMD)
754 if (global.tune.options & GTUNE_USE_SYSTEMD)
755 sd_notify(0, "RELOADING=1");
756#endif
William Lallemand73b85e72017-06-01 17:38:51 +0200757 setenv("HAPROXY_MWORKER_REEXEC", "1", 1);
758
William Lallemandbc193052018-09-11 10:06:26 +0200759 mworker_proc_list_to_env(); /* put the children description in the env */
760
William Lallemand7c756a82018-11-26 11:53:40 +0100761 /* during the reload we must ensure that every FDs that can't be
762 * reuse (ie those that are not referenced in the proc_list)
763 * are closed or they will leak. */
764
765 /* close the listeners FD */
766 mworker_cli_proxy_stop();
William Lallemand16866672019-06-24 17:40:48 +0200767
768 if (getenv("HAPROXY_MWORKER_WAIT_ONLY") == NULL) {
769 /* close the poller FD and the thread waker pipe FD */
770 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
771 ptdf->fct();
772 if (fdtab)
773 deinit_pollers();
774 }
Willy Tarreau5db847a2019-05-09 14:13:35 +0200775#if defined(USE_OPENSSL) && (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
William Lallemand5fdb5b32019-10-15 14:04:08 +0200776 /* close random device FDs */
777 RAND_keep_random_devices_open(0);
Rob Allen56996da2019-05-03 09:11:32 +0100778#endif
William Lallemand7c756a82018-11-26 11:53:40 +0100779
Willy Tarreau8dca1952019-03-01 10:21:55 +0100780 /* restore the initial FD limits */
781 limit.rlim_cur = rlim_fd_cur_at_boot;
782 limit.rlim_max = rlim_fd_max_at_boot;
783 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
784 getrlimit(RLIMIT_NOFILE, &limit);
785 ha_warning("Failed to restore initial FD limits (cur=%u max=%u), using cur=%u max=%u\n",
786 rlim_fd_cur_at_boot, rlim_fd_max_at_boot,
787 (unsigned int)limit.rlim_cur, (unsigned int)limit.rlim_max);
788 }
789
William Lallemand73b85e72017-06-01 17:38:51 +0200790 /* compute length */
791 while (next_argv[next_argc])
792 next_argc++;
793
William Lallemand85b0bd92017-06-01 17:38:53 +0200794 /* 1 for haproxy -sf, 2 for -x /socket */
William Lallemand3f128872019-04-01 11:29:59 +0200795 next_argv = realloc(next_argv, (next_argc + 1 + 2 + mworker_child_nb() + nb_oldpids + 1) * sizeof(char *));
William Lallemand73b85e72017-06-01 17:38:51 +0200796 if (next_argv == NULL)
797 goto alloc_error;
798
William Lallemand73b85e72017-06-01 17:38:51 +0200799 /* add -sf <PID>* to argv */
William Lallemand3f128872019-04-01 11:29:59 +0200800 if (mworker_child_nb() > 0) {
801 struct mworker_proc *child;
802
William Lallemand73b85e72017-06-01 17:38:51 +0200803 next_argv[next_argc++] = "-sf";
William Lallemand3f128872019-04-01 11:29:59 +0200804
805 list_for_each_entry(child, &proc_list, list) {
William Lallemand677e2f22019-11-19 17:04:18 +0100806 if (!(child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) || child->pid <= -1 )
William Lallemand3f128872019-04-01 11:29:59 +0200807 continue;
808 next_argv[next_argc] = memprintf(&msg, "%d", child->pid);
William Lallemand73b85e72017-06-01 17:38:51 +0200809 if (next_argv[next_argc] == NULL)
810 goto alloc_error;
811 msg = NULL;
William Lallemand3f128872019-04-01 11:29:59 +0200812 next_argc++;
William Lallemand73b85e72017-06-01 17:38:51 +0200813 }
814 }
William Lallemand3f128872019-04-01 11:29:59 +0200815
William Lallemand73b85e72017-06-01 17:38:51 +0200816 next_argv[next_argc] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200817
William Lallemand2bf6d622017-06-20 11:20:23 +0200818 /* add the -x option with the stat socket */
William Lallemand85b0bd92017-06-01 17:38:53 +0200819 if (cur_unixsocket) {
820
William Lallemand2bf6d622017-06-20 11:20:23 +0200821 next_argv[next_argc++] = "-x";
822 next_argv[next_argc++] = (char *)cur_unixsocket;
823 next_argv[next_argc++] = NULL;
William Lallemand85b0bd92017-06-01 17:38:53 +0200824 }
825
Christopher Faulet767a84b2017-11-24 16:50:31 +0100826 ha_warning("Reexecuting Master process\n");
Willy Tarreaue0d86e22019-08-26 10:37:39 +0200827 signal(SIGPROF, SIG_IGN);
Tim Duesterhus0436ab72017-11-12 17:39:18 +0100828 execvp(next_argv[0], next_argv);
William Lallemand73b85e72017-06-01 17:38:51 +0200829
Christopher Faulet767a84b2017-11-24 16:50:31 +0100830 ha_warning("Failed to reexecute the master process [%d]: %s\n", pid, strerror(errno));
William Lallemand722d4ca2017-11-15 19:02:55 +0100831 return;
832
William Lallemand73b85e72017-06-01 17:38:51 +0200833alloc_error:
Joseph Herlant07a08342018-11-15 10:43:05 -0800834 ha_warning("Failed to reexecute the master process [%d]: Cannot allocate memory\n", pid);
William Lallemand73b85e72017-06-01 17:38:51 +0200835 return;
836}
837
William Lallemandb3f2be32018-09-11 10:06:18 +0200838static void mworker_loop()
839{
840
841#if defined(USE_SYSTEMD)
842 if (global.tune.options & GTUNE_USE_SYSTEMD)
843 sd_notifyf(0, "READY=1\nMAINPID=%lu", (unsigned long)getpid());
844#endif
Willy Tarreaud83b6c12019-04-18 11:31:36 +0200845 /* Busy polling makes no sense in the master :-) */
846 global.tune.options &= ~GTUNE_BUSY_POLLING;
William Lallemandb3f2be32018-09-11 10:06:18 +0200847
William Lallemandbc193052018-09-11 10:06:26 +0200848 master = 1;
849
William Lallemand0564d412018-11-20 17:36:53 +0100850 signal_unregister(SIGUSR1);
851 signal_unregister(SIGHUP);
852 signal_unregister(SIGQUIT);
853
William Lallemandb3f2be32018-09-11 10:06:18 +0200854 signal_register_fct(SIGTERM, mworker_catch_sigterm, SIGTERM);
855 signal_register_fct(SIGUSR1, mworker_catch_sigterm, SIGUSR1);
856 signal_register_fct(SIGINT, mworker_catch_sigterm, SIGINT);
857 signal_register_fct(SIGHUP, mworker_catch_sighup, SIGHUP);
858 signal_register_fct(SIGUSR2, mworker_catch_sighup, SIGUSR2);
859 signal_register_fct(SIGCHLD, mworker_catch_sigchld, SIGCHLD);
860
861 mworker_unblock_signals();
862 mworker_cleanlisteners();
William Lallemand27f3fa52018-12-06 14:05:20 +0100863 mworker_cleantasks();
William Lallemandb3f2be32018-09-11 10:06:18 +0200864
William Lallemandbc193052018-09-11 10:06:26 +0200865 mworker_catch_sigchld(NULL); /* ensure we clean the children in case
866 some SIGCHLD were lost */
867
William Lallemandb3f2be32018-09-11 10:06:18 +0200868 global.nbthread = 1;
869 relative_pid = 1;
870 pid_bit = 1;
Willy Tarreaua38a7172019-02-02 17:11:28 +0100871 all_proc_mask = 1;
William Lallemandb3f2be32018-09-11 10:06:18 +0200872
William Lallemand2672eb92018-12-14 15:52:39 +0100873#ifdef USE_THREAD
874 tid_bit = 1;
875 all_threads_mask = 1;
876#endif
877
William Lallemandb3f2be32018-09-11 10:06:18 +0200878 jobs++; /* this is the "master" job, we want to take care of the
879 signals even if there is no listener so the poll loop don't
880 leave */
881
882 fork_poller();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +0200883 run_thread_poll_loop(0);
William Lallemandb3f2be32018-09-11 10:06:18 +0200884}
William Lallemandcb11fd22017-06-01 17:38:52 +0200885
886/*
887 * Reexec the process in failure mode, instead of exiting
888 */
889void reexec_on_failure()
890{
891 if (!atexit_flag)
892 return;
893
894 setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1);
895
Christopher Faulet767a84b2017-11-24 16:50:31 +0100896 ha_warning("Reexecuting Master process in waitpid mode\n");
William Lallemandcb11fd22017-06-01 17:38:52 +0200897 mworker_reload();
William Lallemandcb11fd22017-06-01 17:38:52 +0200898}
William Lallemand73b85e72017-06-01 17:38:51 +0200899
900
901/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200902 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
903 * a signal zero to all subscribers. This means that it's as easy as
904 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200905 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100906static void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200907{
908 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200909 signal_unregister_handler(sh);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100910 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200911}
912
913/*
914 * upon SIGTTOU, we pause everything
915 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100916static void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200917{
918 pause_proxies();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100919 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200920}
921
922/*
923 * upon SIGTTIN, let's have a soft stop.
924 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100925static void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200926{
Willy Tarreaube58c382011-07-24 18:28:10 +0200927 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200928}
929
930/*
931 * this function dumps every server's state when the process receives SIGHUP.
932 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100933static void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200934{
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100935 struct proxy *p = proxies_list;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200936
Christopher Faulet767a84b2017-11-24 16:50:31 +0100937 ha_warning("SIGHUP received, dumping servers states.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200938 while (p) {
939 struct server *s = p->srv;
940
941 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
942 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100943 chunk_printf(&trash,
944 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
945 p->id, s->id,
Emeric Brun52a91d32017-08-31 14:41:55 +0200946 (s->cur_state != SRV_ST_STOPPED) ? "UP" : "DOWN",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100947 s->cur_sess, s->nbpend, s->counters.cum_sess);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200948 ha_warning("%s\n", trash.area);
949 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200950 s = s->next;
951 }
952
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200953 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
954 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100955 chunk_printf(&trash,
956 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
957 p->id,
958 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 +0200959 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100960 chunk_printf(&trash,
961 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
962 p->id,
963 (p->srv_bck) ? "is running on backup servers" : "has no server available",
964 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 +0200965 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100966 chunk_printf(&trash,
967 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
968 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
969 p->id, p->srv_act, p->srv_bck,
970 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 +0200971 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200972 ha_warning("%s\n", trash.area);
973 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200974
975 p = p->next;
976 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200977}
978
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100979static void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200980{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200981 /* dump memory usage then free everything possible */
982 dump_pools();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100983 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200984}
985
William Lallemande1340412017-12-28 16:09:36 +0100986/*
987 * This function dup2 the stdio FDs (0,1,2) with <fd>, then closes <fd>
988 * If <fd> < 0, it opens /dev/null and use it to dup
989 *
990 * In the case of chrooting, you have to open /dev/null before the chroot, and
991 * pass the <fd> to this function
992 */
993static void stdio_quiet(int fd)
994{
995 if (fd < 0)
996 fd = open("/dev/null", O_RDWR, 0);
997
998 if (fd > -1) {
999 fclose(stdin);
1000 fclose(stdout);
1001 fclose(stderr);
1002
1003 dup2(fd, 0);
1004 dup2(fd, 1);
1005 dup2(fd, 2);
1006 if (fd > 2)
1007 close(fd);
1008 return;
1009 }
1010
1011 ha_alert("Cannot open /dev/null\n");
1012 exit(EXIT_FAILURE);
1013}
1014
1015
Joseph Herlant03420902018-11-15 10:41:50 -08001016/* This function checks if cfg_cfgfiles contains directories.
1017 * If it finds one, it adds all the files (and only files) it contains
1018 * in cfg_cfgfiles in place of the directory (and removes the directory).
1019 * It adds the files in lexical order.
1020 * It adds only files with .cfg extension.
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001021 * It doesn't add files with name starting with '.'
1022 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001023static void cfgfiles_expand_directories(void)
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001024{
1025 struct wordlist *wl, *wlb;
1026 char *err = NULL;
1027
1028 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
1029 struct stat file_stat;
1030 struct dirent **dir_entries = NULL;
1031 int dir_entries_nb;
1032 int dir_entries_it;
1033
1034 if (stat(wl->s, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001035 ha_alert("Cannot open configuration file/directory %s : %s\n",
1036 wl->s,
1037 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001038 exit(1);
1039 }
1040
1041 if (!S_ISDIR(file_stat.st_mode))
1042 continue;
1043
1044 /* from this point wl->s is a directory */
1045
1046 dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort);
1047 if (dir_entries_nb < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001048 ha_alert("Cannot open configuration directory %s : %s\n",
1049 wl->s,
1050 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001051 exit(1);
1052 }
1053
1054 /* for each element in the directory wl->s */
1055 for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) {
1056 struct dirent *dir_entry = dir_entries[dir_entries_it];
1057 char *filename = NULL;
1058 char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg");
1059
1060 /* don't add filename that begin with .
Joseph Herlant03420902018-11-15 10:41:50 -08001061 * only add filename with .cfg extension
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001062 */
1063 if (dir_entry->d_name[0] == '.' ||
1064 !(d_name_cfgext && d_name_cfgext[4] == '\0'))
1065 goto next_dir_entry;
1066
1067 if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001068 ha_alert("Cannot load configuration files %s : out of memory.\n",
1069 filename);
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001070 exit(1);
1071 }
1072
1073 if (stat(filename, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001074 ha_alert("Cannot open configuration file %s : %s\n",
1075 wl->s,
1076 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001077 exit(1);
1078 }
1079
1080 /* don't add anything else than regular file in cfg_cfgfiles
1081 * this way we avoid loops
1082 */
1083 if (!S_ISREG(file_stat.st_mode))
1084 goto next_dir_entry;
1085
1086 if (!list_append_word(&wl->list, filename, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001087 ha_alert("Cannot load configuration files %s : %s\n",
1088 filename,
1089 err);
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001090 exit(1);
1091 }
1092
1093next_dir_entry:
1094 free(filename);
1095 free(dir_entry);
1096 }
1097
1098 free(dir_entries);
1099
1100 /* remove the current directory (wl) from cfg_cfgfiles */
1101 free(wl->s);
1102 LIST_DEL(&wl->list);
1103 free(wl);
1104 }
1105
1106 free(err);
1107}
1108
Olivier Houchardf73629d2017-04-05 22:33:04 +02001109static int get_old_sockets(const char *unixsocket)
1110{
1111 char *cmsgbuf = NULL, *tmpbuf = NULL;
1112 int *tmpfd = NULL;
1113 struct sockaddr_un addr;
1114 struct cmsghdr *cmsg;
1115 struct msghdr msghdr;
1116 struct iovec iov;
1117 struct xfer_sock_list *xfer_sock = NULL;
Olivier Houchard54740872017-04-06 14:45:14 +02001118 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Olivier Houchardf73629d2017-04-05 22:33:04 +02001119 int sock = -1;
1120 int ret = -1;
1121 int ret2 = -1;
1122 int fd_nb;
1123 int got_fd = 0;
1124 int i = 0;
1125 size_t maxoff = 0, curoff = 0;
1126
1127 memset(&msghdr, 0, sizeof(msghdr));
1128 cmsgbuf = malloc(CMSG_SPACE(sizeof(int)) * MAX_SEND_FD);
1129 if (!cmsgbuf) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001130 ha_warning("Failed to allocate memory to send sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001131 goto out;
1132 }
1133 sock = socket(PF_UNIX, SOCK_STREAM, 0);
1134 if (sock < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001135 ha_warning("Failed to connect to the old process socket '%s'\n",
1136 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001137 goto out;
1138 }
1139 strncpy(addr.sun_path, unixsocket, sizeof(addr.sun_path));
1140 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
1141 addr.sun_family = PF_UNIX;
1142 ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr));
1143 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001144 ha_warning("Failed to connect to the old process socket '%s'\n",
1145 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001146 goto out;
1147 }
Olivier Houchard54740872017-04-06 14:45:14 +02001148 setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001149 iov.iov_base = &fd_nb;
1150 iov.iov_len = sizeof(fd_nb);
1151 msghdr.msg_iov = &iov;
1152 msghdr.msg_iovlen = 1;
1153 send(sock, "_getsocks\n", strlen("_getsocks\n"), 0);
1154 /* First, get the number of file descriptors to be received */
1155 if (recvmsg(sock, &msghdr, MSG_WAITALL) != sizeof(fd_nb)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001156 ha_warning("Failed to get the number of sockets to be transferred !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001157 goto out;
1158 }
1159 if (fd_nb == 0) {
1160 ret = 0;
1161 goto out;
1162 }
Olivier Houchardf143b802017-11-04 15:13:01 +01001163 tmpbuf = malloc(fd_nb * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001164 if (tmpbuf == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001165 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001166 goto out;
1167 }
1168 tmpfd = malloc(fd_nb * sizeof(int));
1169 if (tmpfd == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001170 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001171 goto out;
1172 }
1173 msghdr.msg_control = cmsgbuf;
1174 msghdr.msg_controllen = CMSG_SPACE(sizeof(int)) * MAX_SEND_FD;
Olivier Houchardf143b802017-11-04 15:13:01 +01001175 iov.iov_len = MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001176 do {
1177 int ret3;
1178
1179 iov.iov_base = tmpbuf + curoff;
1180 ret = recvmsg(sock, &msghdr, 0);
1181 if (ret == -1 && errno == EINTR)
1182 continue;
1183 if (ret <= 0)
1184 break;
1185 /* Send an ack to let the sender know we got the sockets
1186 * and it can send some more
1187 */
1188 do {
1189 ret3 = send(sock, &got_fd, sizeof(got_fd), 0);
1190 } while (ret3 == -1 && errno == EINTR);
1191 for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg != NULL;
1192 cmsg = CMSG_NXTHDR(&msghdr, cmsg)) {
1193 if (cmsg->cmsg_level == SOL_SOCKET &&
1194 cmsg->cmsg_type == SCM_RIGHTS) {
1195 size_t totlen = cmsg->cmsg_len -
1196 CMSG_LEN(0);
1197 if (totlen / sizeof(int) + got_fd > fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001198 ha_warning("Got to many sockets !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001199 goto out;
1200 }
1201 /*
1202 * Be paranoid and use memcpy() to avoid any
1203 * potential alignement issue.
1204 */
1205 memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen);
1206 got_fd += totlen / sizeof(int);
1207 }
1208 }
1209 curoff += ret;
1210 } while (got_fd < fd_nb);
1211
1212 if (got_fd != fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001213 ha_warning("We didn't get the expected number of sockets (expecting %d got %d)\n",
1214 fd_nb, got_fd);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001215 goto out;
1216 }
1217 maxoff = curoff;
1218 curoff = 0;
1219 for (i = 0; i < got_fd; i++) {
1220 int fd = tmpfd[i];
1221 socklen_t socklen;
1222 int len;
1223
1224 xfer_sock = calloc(1, sizeof(*xfer_sock));
1225 if (!xfer_sock) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001226 ha_warning("Failed to allocate memory in get_old_sockets() !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001227 break;
1228 }
1229 xfer_sock->fd = -1;
1230
1231 socklen = sizeof(xfer_sock->addr);
1232 if (getsockname(fd, (struct sockaddr *)&xfer_sock->addr, &socklen) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001233 ha_warning("Failed to get socket address\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001234 free(xfer_sock);
Olivier Houchardbe7b1ce2017-07-17 17:25:33 +02001235 xfer_sock = NULL;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001236 continue;
1237 }
1238 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001239 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001240 goto out;
1241 }
1242 len = tmpbuf[curoff++];
1243 if (len > 0) {
1244 /* We have a namespace */
1245 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001246 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001247 goto out;
1248 }
1249 xfer_sock->namespace = malloc(len + 1);
1250 if (!xfer_sock->namespace) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001251 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001252 goto out;
1253 }
1254 memcpy(xfer_sock->namespace, &tmpbuf[curoff], len);
1255 xfer_sock->namespace[len] = 0;
1256 curoff += len;
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 an interface */
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->iface = malloc(len + 1);
1270 if (!xfer_sock->iface) {
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->iface, &tmpbuf[curoff], len);
Olivier Houchard33e083c2018-03-15 17:48:49 +01001275 xfer_sock->iface[len] = 0;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001276 curoff += len;
1277 }
1278 if (curoff + sizeof(int) > 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 memcpy(&xfer_sock->options, &tmpbuf[curoff],
1283 sizeof(xfer_sock->options));
1284 curoff += sizeof(xfer_sock->options);
1285
1286 xfer_sock->fd = fd;
1287 if (xfer_sock_list)
1288 xfer_sock_list->prev = xfer_sock;
1289 xfer_sock->next = xfer_sock_list;
1290 xfer_sock->prev = NULL;
1291 xfer_sock_list = xfer_sock;
1292 xfer_sock = NULL;
1293 }
1294
1295 ret2 = 0;
1296out:
1297 /* If we failed midway make sure to close the remaining
1298 * file descriptors
1299 */
1300 if (tmpfd != NULL && i < got_fd) {
1301 for (; i < got_fd; i++) {
1302 close(tmpfd[i]);
1303 }
1304 }
1305 free(tmpbuf);
1306 free(tmpfd);
1307 free(cmsgbuf);
1308 if (sock != -1)
1309 close(sock);
1310 if (xfer_sock) {
1311 free(xfer_sock->namespace);
1312 free(xfer_sock->iface);
1313 if (xfer_sock->fd != -1)
1314 close(xfer_sock->fd);
1315 free(xfer_sock);
1316 }
1317 return (ret2);
1318}
1319
Willy Tarreaubaaee002006-06-26 02:48:02 +02001320/*
William Lallemand73b85e72017-06-01 17:38:51 +02001321 * copy and cleanup the current argv
1322 * Remove the -sf /-st parameters
1323 * Return an allocated copy of argv
1324 */
1325
1326static char **copy_argv(int argc, char **argv)
1327{
1328 char **newargv;
William Lallemand2bf6d622017-06-20 11:20:23 +02001329 int i = 0, j = 0;
William Lallemand73b85e72017-06-01 17:38:51 +02001330
1331 newargv = calloc(argc + 2, sizeof(char *));
1332 if (newargv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001333 ha_warning("Cannot allocate memory\n");
William Lallemand73b85e72017-06-01 17:38:51 +02001334 return NULL;
1335 }
1336
William Lallemand2bf6d622017-06-20 11:20:23 +02001337 while (i < argc) {
1338 /* -sf or -st or -x */
William Lallemand29f690c2018-01-09 23:12:27 +01001339 if (i > 0 && argv[i][0] == '-' &&
1340 ((argv[i][1] == 's' && (argv[i][2] == 'f' || argv[i][2] == 't')) || argv[i][1] == 'x' )) {
William Lallemand2bf6d622017-06-20 11:20:23 +02001341 /* list of pids to finish ('f') or terminate ('t') or unix socket (-x) */
William Lallemand73b85e72017-06-01 17:38:51 +02001342 i++;
1343 while (i < argc && argv[i][0] != '-') {
1344 i++;
1345 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001346 continue;
William Lallemand73b85e72017-06-01 17:38:51 +02001347 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001348
1349 newargv[j++] = argv[i++];
William Lallemand73b85e72017-06-01 17:38:51 +02001350 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001351
William Lallemand73b85e72017-06-01 17:38:51 +02001352 return newargv;
1353}
1354
Willy Tarreau5a023f02019-03-01 14:19:31 +01001355/* considers splicing proxies' maxconn, computes the ideal global.maxpipes
1356 * setting, and returns it. It may return -1 meaning "unlimited" if some
1357 * unlimited proxies have been found and the global.maxconn value is not yet
1358 * set. It may also return a value greater than maxconn if it's not yet set.
1359 * Note that a value of zero means there is no need for pipes. -1 is never
1360 * returned if global.maxconn is valid.
1361 */
1362static int compute_ideal_maxpipes()
1363{
1364 struct proxy *cur;
1365 int nbfe = 0, nbbe = 0;
1366 int unlimited = 0;
1367 int pipes;
1368 int max;
1369
1370 for (cur = proxies_list; cur; cur = cur->next) {
1371 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
1372 if (cur->cap & PR_CAP_FE) {
1373 max = cur->maxconn;
1374 nbfe += max;
1375 if (!max) {
1376 unlimited = 1;
1377 break;
1378 }
1379 }
1380 if (cur->cap & PR_CAP_BE) {
1381 max = cur->fullconn ? cur->fullconn : global.maxconn;
1382 nbbe += max;
1383 if (!max) {
1384 unlimited = 1;
1385 break;
1386 }
1387 }
1388 }
1389 }
1390
1391 pipes = MAX(nbfe, nbbe);
1392 if (global.maxconn) {
1393 if (pipes > global.maxconn || unlimited)
1394 pipes = global.maxconn;
1395 } else if (unlimited) {
1396 pipes = -1;
1397 }
1398
1399 return pipes >= 4 ? pipes / 4 : pipes;
1400}
1401
Willy Tarreauac350932019-03-01 15:43:14 +01001402/* considers global.maxsocks, global.maxpipes, async engines, SSL frontends and
1403 * rlimits and computes an ideal maxconn. It's meant to be called only when
1404 * maxsock contains the sum of listening FDs, before it is updated based on
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001405 * maxconn and pipes. If there are not enough FDs left, DEFAULT_MAXCONN (by
1406 * default 100) is returned as it is expected that it will even run on tight
1407 * environments, and will maintain compatibility with previous packages that
1408 * used to rely on this value as the default one. The system will emit a
1409 * warning indicating how many FDs are missing anyway if needed.
Willy Tarreauac350932019-03-01 15:43:14 +01001410 */
1411static int compute_ideal_maxconn()
1412{
1413 int ssl_sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1414 int engine_fds = global.ssl_used_async_engines * ssl_sides;
1415 int pipes = compute_ideal_maxpipes();
1416 int remain = rlim_fd_cur_at_boot;
1417 int maxconn;
1418
1419 /* we have to take into account these elements :
1420 * - number of engine_fds, which inflates the number of FD needed per
1421 * connection by this number.
1422 * - number of pipes per connection on average : for the unlimited
1423 * case, this is 0.5 pipe FDs per connection, otherwise it's a
1424 * fixed value of 2*pipes.
1425 * - two FDs per connection
1426 */
1427
1428 /* subtract listeners and checks */
1429 remain -= global.maxsock;
1430
Willy Tarreau3f200852019-03-14 19:13:17 +01001431 /* one epoll_fd/kqueue_fd per thread */
1432 remain -= global.nbthread;
1433
1434 /* one wake-up pipe (2 fd) per thread */
1435 remain -= 2 * global.nbthread;
1436
Willy Tarreauac350932019-03-01 15:43:14 +01001437 /* Fixed pipes values : we only subtract them if they're not larger
1438 * than the remaining FDs because pipes are optional.
1439 */
1440 if (pipes >= 0 && pipes * 2 < remain)
1441 remain -= pipes * 2;
1442
1443 if (pipes < 0) {
1444 /* maxsock = maxconn * 2 + maxconn/4 * 2 + maxconn * engine_fds.
1445 * = maxconn * (2 + 0.5 + engine_fds)
1446 * = maxconn * (4 + 1 + 2*engine_fds) / 2
1447 */
1448 maxconn = 2 * remain / (5 + 2 * engine_fds);
1449 } else {
1450 /* maxsock = maxconn * 2 + maxconn * engine_fds.
1451 * = maxconn * (2 + engine_fds)
1452 */
1453 maxconn = remain / (2 + engine_fds);
1454 }
1455
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001456 return MAX(maxconn, DEFAULT_MAXCONN);
Willy Tarreauac350932019-03-01 15:43:14 +01001457}
1458
William Lallemand73b85e72017-06-01 17:38:51 +02001459/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001460 * This function initializes all the necessary variables. It only returns
1461 * if everything is OK. If something fails, it exits.
1462 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001463static void init(int argc, char **argv)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001464{
Willy Tarreaubaaee002006-06-26 02:48:02 +02001465 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001466 char *tmp;
1467 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +02001468 int err_code = 0;
Maxime de Roucy0f503922016-05-13 23:52:55 +02001469 char *err_msg = NULL;
Willy Tarreau477ecd82010-01-03 21:12:30 +01001470 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +00001471 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +02001472 char *change_dir = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001473 struct proxy *px;
Willy Tarreaue6945732016-12-21 19:57:00 +01001474 struct post_check_fct *pcf;
Willy Tarreauac350932019-03-01 15:43:14 +01001475 int ideal_maxconn;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001476
Christopher Faulete3a5e352017-10-24 13:53:54 +02001477 global.mode = MODE_STARTING;
William Lallemand73b85e72017-06-01 17:38:51 +02001478 next_argv = copy_argv(argc, argv);
1479
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001480 if (!init_trash_buffers(1)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001481 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet748919a2017-07-26 14:59:46 +02001482 exit(1);
1483 }
David du Colombier7af46052012-05-16 14:16:48 +02001484
Emeric Brun2b920a12010-09-23 18:30:22 +02001485 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
1486 * the string in case of truncation, and at least FreeBSD appears not to do
1487 * it.
1488 */
1489 memset(hostname, 0, sizeof(hostname));
1490 gethostname(hostname, sizeof(hostname) - 1);
1491 memset(localpeer, 0, sizeof(localpeer));
1492 memcpy(localpeer, hostname, (sizeof(hostname) > sizeof(localpeer) ? sizeof(localpeer) : sizeof(hostname)) - 1);
William Lallemanddaf4cd22018-04-17 16:46:13 +02001493 setenv("HAPROXY_LOCALPEER", localpeer, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02001494
Willy Tarreaubaaee002006-06-26 02:48:02 +02001495 /*
1496 * Initialize the previously static variables.
1497 */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001498
Willy Tarreau173d9952018-01-26 21:48:23 +01001499 totalconn = actconn = listeners = stopping = 0;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001500 killed = 0;
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001501
Willy Tarreaubaaee002006-06-26 02:48:02 +02001502
1503#ifdef HAPROXY_MEMMAX
Willy Tarreau70060452015-12-14 12:46:07 +01001504 global.rlimit_memmax_all = HAPROXY_MEMMAX;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001505#endif
1506
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001507 tzset();
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001508 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001509 start_date = now;
1510
Willy Tarreau84310e22014-02-14 11:59:04 +01001511 srandom(now_ms - getpid());
1512
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001513 if (init_acl() != 0)
1514 exit(1);
Willy Tarreaub6b3df32018-11-26 16:31:20 +01001515
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001516 /* Initialise lua. */
1517 hlua_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001518
Christopher Fauletff2613e2016-11-09 11:36:17 +01001519 /* Initialize process vars */
1520 vars_init(&global.vars, SCOPE_PROC);
1521
Willy Tarreau43b78992009-01-25 15:42:27 +01001522 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaue5733232019-05-22 19:24:06 +02001523#if defined(USE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001524 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001525#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001526#if defined(USE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001527 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001528#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001529#if defined(USE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +01001530 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001531#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001532#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001533 global.tune.options |= GTUNE_USE_EVPORTS;
1534#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001535#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001536 global.tune.options |= GTUNE_USE_SPLICE;
1537#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001538#if defined(USE_GETADDRINFO)
1539 global.tune.options |= GTUNE_USE_GAI;
1540#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001541#if defined(SO_REUSEPORT)
1542 global.tune.options |= GTUNE_USE_REUSEPORT;
1543#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02001544
1545 pid = getpid();
1546 progname = *argv;
1547 while ((tmp = strchr(progname, '/')) != NULL)
1548 progname = tmp + 1;
1549
Kevinm48936af2010-12-22 16:08:21 +00001550 /* the process name is used for the logs only */
Dragan Dosen43885c72015-10-01 13:18:13 +02001551 chunk_initstr(&global.log_tag, strdup(progname));
Kevinm48936af2010-12-22 16:08:21 +00001552
Willy Tarreaubaaee002006-06-26 02:48:02 +02001553 argc--; argv++;
1554 while (argc > 0) {
1555 char *flag;
1556
1557 if (**argv == '-') {
1558 flag = *argv+1;
1559
1560 /* 1 arg */
1561 if (*flag == 'v') {
1562 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +01001563 if (flag[1] == 'v') /* -vv */
1564 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001565 exit(0);
1566 }
Willy Tarreaue5733232019-05-22 19:24:06 +02001567#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001568 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +01001569 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001570#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001571#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001572 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +01001573 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001574#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001575#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001576 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +01001577 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001578#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001579#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001580 else if (*flag == 'd' && flag[1] == 'v')
1581 global.tune.options &= ~GTUNE_USE_EVPORTS;
1582#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001583#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001584 else if (*flag == 'd' && flag[1] == 'S')
1585 global.tune.options &= ~GTUNE_USE_SPLICE;
1586#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001587#if defined(USE_GETADDRINFO)
1588 else if (*flag == 'd' && flag[1] == 'G')
1589 global.tune.options &= ~GTUNE_USE_GAI;
1590#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001591#if defined(SO_REUSEPORT)
1592 else if (*flag == 'd' && flag[1] == 'R')
1593 global.tune.options &= ~GTUNE_USE_REUSEPORT;
1594#endif
Emeric Brun850efd52014-01-29 12:24:34 +01001595 else if (*flag == 'd' && flag[1] == 'V')
1596 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001597 else if (*flag == 'V')
1598 arg_mode |= MODE_VERBOSE;
1599 else if (*flag == 'd' && flag[1] == 'b')
1600 arg_mode |= MODE_FOREGROUND;
Willy Tarreau6e064432012-05-08 15:40:42 +02001601 else if (*flag == 'd' && flag[1] == 'M')
1602 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreau3eed10e2016-11-07 21:03:16 +01001603 else if (*flag == 'd' && flag[1] == 'r')
1604 global.tune.options |= GTUNE_RESOLVE_DONTFAIL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001605 else if (*flag == 'd')
1606 arg_mode |= MODE_DEBUG;
1607 else if (*flag == 'c')
1608 arg_mode |= MODE_CHECK;
William Lallemand095ba4c2017-06-01 17:38:50 +02001609 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +02001610 arg_mode |= MODE_DAEMON;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001611 else if (*flag == 'W' && flag[1] == 's') {
Lukas Tribusf46bf952017-11-21 12:39:34 +01001612 arg_mode |= MODE_MWORKER | MODE_FOREGROUND;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001613#if defined(USE_SYSTEMD)
1614 global.tune.options |= GTUNE_USE_SYSTEMD;
1615#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001616 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 +01001617 usage(progname);
1618#endif
1619 }
William Lallemand095ba4c2017-06-01 17:38:50 +02001620 else if (*flag == 'W')
1621 arg_mode |= MODE_MWORKER;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001622 else if (*flag == 'q')
1623 arg_mode |= MODE_QUIET;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001624 else if (*flag == 'x') {
William Lallemand45eff442017-06-19 15:57:55 +02001625 if (argc <= 1 || argv[1][0] == '-') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001626 ha_alert("Unix socket path expected with the -x flag\n\n");
William Lallemand45eff442017-06-19 15:57:55 +02001627 usage(progname);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001628 }
William Lallemand4fc09692017-06-19 16:37:19 +02001629 if (old_unixsocket)
Christopher Faulet767a84b2017-11-24 16:50:31 +01001630 ha_warning("-x option already set, overwriting the value\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001631 old_unixsocket = argv[1];
William Lallemand4fc09692017-06-19 16:37:19 +02001632
Olivier Houchardf73629d2017-04-05 22:33:04 +02001633 argv++;
1634 argc--;
1635 }
William Lallemande7361152018-10-26 14:47:36 +02001636 else if (*flag == 'S') {
1637 struct wordlist *c;
1638
1639 if (argc <= 1 || argv[1][0] == '-') {
1640 ha_alert("Socket and optional bind parameters expected with the -S flag\n");
1641 usage(progname);
1642 }
1643 if ((c = malloc(sizeof(*c))) == NULL || (c->s = strdup(argv[1])) == NULL) {
1644 ha_alert("Cannot allocate memory\n");
1645 exit(EXIT_FAILURE);
1646 }
1647 LIST_ADD(&mworker_cli_conf, &c->list);
1648
1649 argv++;
1650 argc--;
1651 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001652 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
1653 /* list of pids to finish ('f') or terminate ('t') */
1654
1655 if (flag[1] == 'f')
1656 oldpids_sig = SIGUSR1; /* finish then exit */
1657 else
1658 oldpids_sig = SIGTERM; /* terminate immediately */
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001659 while (argc > 1 && argv[1][0] != '-') {
Chris Lane236062f2018-02-05 23:15:44 +00001660 char * endptr = NULL;
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001661 oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int));
1662 if (!oldpids) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001663 ha_alert("Cannot allocate old pid : out of memory.\n");
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001664 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001665 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001666 argc--; argv++;
Chris Lane236062f2018-02-05 23:15:44 +00001667 errno = 0;
1668 oldpids[nb_oldpids] = strtol(*argv, &endptr, 10);
1669 if (errno) {
1670 ha_alert("-%2s option: failed to parse {%s}: %s\n",
1671 flag,
1672 *argv, strerror(errno));
1673 exit(1);
1674 } else if (endptr && strlen(endptr)) {
1675 while (isspace(*endptr)) endptr++;
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001676 if (*endptr != 0) {
Chris Lane236062f2018-02-05 23:15:44 +00001677 ha_alert("-%2s option: some bytes unconsumed in PID list {%s}\n",
1678 flag, endptr);
1679 exit(1);
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001680 }
Chris Lane236062f2018-02-05 23:15:44 +00001681 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001682 if (oldpids[nb_oldpids] <= 0)
1683 usage(progname);
1684 nb_oldpids++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001685 }
1686 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001687 else if (flag[0] == '-' && flag[1] == 0) { /* "--" */
1688 /* now that's a cfgfile list */
1689 argv++; argc--;
1690 while (argc > 0) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02001691 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001692 ha_alert("Cannot load configuration file/directory %s : %s\n",
1693 *argv,
1694 err_msg);
Willy Tarreaua088d312015-10-08 11:58:48 +02001695 exit(1);
1696 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001697 argv++; argc--;
1698 }
1699 break;
1700 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001701 else { /* >=2 args */
1702 argv++; argc--;
1703 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001704 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001705
1706 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +02001707 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001708 case 'n' : cfg_maxconn = atol(*argv); break;
Willy Tarreau70060452015-12-14 12:46:07 +01001709 case 'm' : global.rlimit_memmax_all = atol(*argv); break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001710 case 'N' : cfg_maxpconn = atol(*argv); break;
William Lallemanddaf4cd22018-04-17 16:46:13 +02001711 case 'L' :
1712 strncpy(localpeer, *argv, sizeof(localpeer) - 1);
1713 setenv("HAPROXY_LOCALPEER", localpeer, 1);
1714 break;
Willy Tarreau5d01a632009-06-22 16:02:30 +02001715 case 'f' :
Maxime de Roucy0f503922016-05-13 23:52:55 +02001716 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001717 ha_alert("Cannot load configuration file/directory %s : %s\n",
1718 *argv,
1719 err_msg);
Willy Tarreau5d01a632009-06-22 16:02:30 +02001720 exit(1);
1721 }
Willy Tarreau5d01a632009-06-22 16:02:30 +02001722 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001723 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001724 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001725 }
1726 }
1727 }
1728 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001729 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001730 argv++; argc--;
1731 }
1732
Christopher Faulete3a5e352017-10-24 13:53:54 +02001733 global.mode |= (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE
1734 | MODE_QUIET | MODE_CHECK | MODE_DEBUG));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001735
William Lallemand944e6192018-11-21 15:48:31 +01001736 if (getenv("HAPROXY_MWORKER_WAIT_ONLY")) {
William Lallemandcb11fd22017-06-01 17:38:52 +02001737 unsetenv("HAPROXY_MWORKER_WAIT_ONLY");
William Lallemand944e6192018-11-21 15:48:31 +01001738 global.mode |= MODE_MWORKER_WAIT;
1739 global.mode &= ~MODE_MWORKER;
William Lallemandcb11fd22017-06-01 17:38:52 +02001740 }
1741
1742 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) {
1743 atexit_flag = 1;
1744 atexit(reexec_on_failure);
1745 }
1746
Willy Tarreau576132e2011-09-10 19:26:56 +02001747 if (change_dir && chdir(change_dir) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001748 ha_alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
Willy Tarreau576132e2011-09-10 19:26:56 +02001749 exit(1);
1750 }
1751
Willy Tarreaubaaee002006-06-26 02:48:02 +02001752 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001753
1754 init_default_instance();
1755
William Lallemand944e6192018-11-21 15:48:31 +01001756 /* in wait mode, we don't try to read the configuration files */
1757 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand7b302d82019-05-20 11:15:37 +02001758 struct buffer *trash = get_trash_chunk();
Willy Tarreauc4382422009-12-06 13:10:44 +01001759
William Lallemand944e6192018-11-21 15:48:31 +01001760 /* handle cfgfiles that are actually directories */
1761 cfgfiles_expand_directories();
1762
1763 if (LIST_ISEMPTY(&cfg_cfgfiles))
1764 usage(progname);
1765
1766
1767 list_for_each_entry(wl, &cfg_cfgfiles, list) {
1768 int ret;
1769
William Lallemand7b302d82019-05-20 11:15:37 +02001770 if (trash->data)
1771 chunk_appendf(trash, ";");
1772
1773 chunk_appendf(trash, "%s", wl->s);
1774
William Lallemand944e6192018-11-21 15:48:31 +01001775 ret = readcfgfile(wl->s);
1776 if (ret == -1) {
1777 ha_alert("Could not open configuration file %s : %s\n",
1778 wl->s, strerror(errno));
1779 exit(1);
1780 }
1781 if (ret & (ERR_ABORT|ERR_FATAL))
1782 ha_alert("Error(s) found in configuration file : %s\n", wl->s);
1783 err_code |= ret;
1784 if (err_code & ERR_ABORT)
1785 exit(1);
Willy Tarreauc4382422009-12-06 13:10:44 +01001786 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001787
William Lallemand944e6192018-11-21 15:48:31 +01001788 /* do not try to resolve arguments nor to spot inconsistencies when
1789 * the configuration contains fatal errors caused by files not found
1790 * or failed memory allocations.
1791 */
1792 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1793 ha_alert("Fatal errors found in configuration.\n");
1794 exit(1);
1795 }
William Lallemand7b302d82019-05-20 11:15:37 +02001796 if (trash->data)
1797 setenv("HAPROXY_CFGFILES", trash->area, 1);
1798
Willy Tarreaub83dc3d2017-04-19 11:24:07 +02001799 }
William Lallemandce83b4a2018-10-26 14:47:30 +02001800 if (global.mode & MODE_MWORKER) {
1801 int proc;
William Lallemand16dd1b32018-11-19 18:46:18 +01001802 struct mworker_proc *tmproc;
1803
William Lallemand482f9a92019-04-12 16:15:00 +02001804 setenv("HAPROXY_MWORKER", "1", 1);
1805
William Lallemand16dd1b32018-11-19 18:46:18 +01001806 if (getenv("HAPROXY_MWORKER_REEXEC") == NULL) {
1807
William Lallemandf3a86832019-04-01 11:29:58 +02001808 tmproc = calloc(1, sizeof(*tmproc));
William Lallemand16dd1b32018-11-19 18:46:18 +01001809 if (!tmproc) {
1810 ha_alert("Cannot allocate process structures.\n");
1811 exit(EXIT_FAILURE);
1812 }
William Lallemand8f7069a2019-04-12 16:09:23 +02001813 tmproc->options |= PROC_O_TYPE_MASTER; /* master */
William Lallemand16dd1b32018-11-19 18:46:18 +01001814 tmproc->reloads = 0;
1815 tmproc->relative_pid = 0;
1816 tmproc->pid = pid;
1817 tmproc->timestamp = start_date.tv_sec;
1818 tmproc->ipc_fd[0] = -1;
1819 tmproc->ipc_fd[1] = -1;
1820
1821 proc_self = tmproc;
1822
1823 LIST_ADDQ(&proc_list, &tmproc->list);
1824 }
William Lallemandce83b4a2018-10-26 14:47:30 +02001825
1826 for (proc = 0; proc < global.nbproc; proc++) {
William Lallemandce83b4a2018-10-26 14:47:30 +02001827
William Lallemandf3a86832019-04-01 11:29:58 +02001828 tmproc = calloc(1, sizeof(*tmproc));
William Lallemandce83b4a2018-10-26 14:47:30 +02001829 if (!tmproc) {
1830 ha_alert("Cannot allocate process structures.\n");
1831 exit(EXIT_FAILURE);
1832 }
1833
William Lallemand8f7069a2019-04-12 16:09:23 +02001834 tmproc->options |= PROC_O_TYPE_WORKER; /* worker */
William Lallemandce83b4a2018-10-26 14:47:30 +02001835 tmproc->pid = -1;
1836 tmproc->reloads = 0;
William Lallemande3683302018-11-19 18:46:17 +01001837 tmproc->timestamp = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02001838 tmproc->relative_pid = 1 + proc;
William Lallemand550db6d2018-11-06 17:37:12 +01001839 tmproc->ipc_fd[0] = -1;
1840 tmproc->ipc_fd[1] = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02001841
1842 if (mworker_cli_sockpair_new(tmproc, proc) < 0) {
1843 exit(EXIT_FAILURE);
1844 }
1845
1846 LIST_ADDQ(&proc_list, &tmproc->list);
1847 }
William Lallemand944e6192018-11-21 15:48:31 +01001848 }
1849 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
1850 struct wordlist *it, *c;
1851
William Lallemand1b663612018-10-26 14:47:33 +02001852 mworker_env_to_proc_list(); /* get the info of the children in the env */
William Lallemand8a022572018-10-26 14:47:35 +02001853
William Lallemande7361152018-10-26 14:47:36 +02001854
William Lallemand550db6d2018-11-06 17:37:12 +01001855 if (!LIST_ISEMPTY(&mworker_cli_conf)) {
William Lallemande7361152018-10-26 14:47:36 +02001856
William Lallemand550db6d2018-11-06 17:37:12 +01001857 if (mworker_cli_proxy_create() < 0) {
William Lallemande7361152018-10-26 14:47:36 +02001858 ha_alert("Can't create the master's CLI.\n");
1859 exit(EXIT_FAILURE);
1860 }
William Lallemande7361152018-10-26 14:47:36 +02001861
William Lallemand550db6d2018-11-06 17:37:12 +01001862 list_for_each_entry_safe(c, it, &mworker_cli_conf, list) {
1863
1864 if (mworker_cli_proxy_new_listener(c->s) < 0) {
1865 ha_alert("Can't create the master's CLI.\n");
1866 exit(EXIT_FAILURE);
1867 }
1868 LIST_DEL(&c->list);
1869 free(c->s);
1870 free(c);
1871 }
1872 }
William Lallemandce83b4a2018-10-26 14:47:30 +02001873 }
1874
Willy Tarreaubb925012009-07-23 13:36:36 +02001875 err_code |= check_config_validity();
Christopher Fauletc1692962019-08-12 09:51:07 +02001876 for (px = proxies_list; px; px = px->next) {
1877 struct server *srv;
1878 struct post_proxy_check_fct *ppcf;
1879 struct post_server_check_fct *pscf;
1880
1881 list_for_each_entry(pscf, &post_server_check_list, list) {
1882 for (srv = px->srv; srv; srv = srv->next)
1883 err_code |= pscf->fct(srv);
1884 }
1885 list_for_each_entry(ppcf, &post_proxy_check_list, list)
1886 err_code |= ppcf->fct(px);
1887 }
Willy Tarreaubb925012009-07-23 13:36:36 +02001888 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001889 ha_alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001890 exit(1);
1891 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001892
Willy Tarreau0f936722019-04-11 14:47:08 +02001893 pattern_finalize_config();
1894
Willy Tarreau70060452015-12-14 12:46:07 +01001895 /* recompute the amount of per-process memory depending on nbproc and
1896 * the shared SSL cache size (allowed to exist in all processes).
1897 */
1898 if (global.rlimit_memmax_all) {
1899#if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE)
1900 int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL;
1901
1902 global.rlimit_memmax =
1903 ((((int64_t)global.rlimit_memmax_all * 1048576LL) -
1904 ssl_cache_bytes) / global.nbproc +
1905 ssl_cache_bytes + 1048575LL) / 1048576LL;
1906#else
1907 global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc;
1908#endif
1909 }
1910
Willy Tarreaue5733232019-05-22 19:24:06 +02001911#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001912 err_code |= netns_init();
1913 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001914 ha_alert("Failed to initialize namespace support.\n");
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001915 exit(1);
1916 }
1917#endif
1918
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01001919 /* Apply server states */
1920 apply_server_state();
1921
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001922 for (px = proxies_list; px; px = px->next)
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01001923 srv_compute_all_admin_states(px);
1924
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01001925 /* Apply servers' configured address */
1926 err_code |= srv_init_addr();
1927 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001928 ha_alert("Failed to initialize server(s) addr.\n");
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01001929 exit(1);
1930 }
1931
Willy Tarreaubaaee002006-06-26 02:48:02 +02001932 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001933 struct peers *pr;
1934 struct proxy *px;
1935
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001936 for (pr = cfg_peers; pr; pr = pr->next)
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001937 if (pr->peers_fe)
1938 break;
1939
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001940 for (px = proxies_list; px; px = px->next)
Willy Tarreau4348fad2012-09-20 16:48:07 +02001941 if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001942 break;
1943
1944 if (pr || px) {
1945 /* At least one peer or one listener has been found */
1946 qfprintf(stdout, "Configuration file is valid\n");
1947 exit(0);
1948 }
1949 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
1950 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001951 }
Willy Tarreaue9b26022011-08-01 20:57:55 +02001952
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001953 /* now we know the buffer size, we can initialize the channels and buffers */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001954 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +02001955
Willy Tarreaue6945732016-12-21 19:57:00 +01001956 list_for_each_entry(pcf, &post_check_list, list) {
1957 err_code |= pcf->fct();
1958 if (err_code & (ERR_ABORT|ERR_FATAL))
1959 exit(1);
1960 }
1961
Willy Tarreaubaaee002006-06-26 02:48:02 +02001962 if (cfg_maxconn > 0)
1963 global.maxconn = cfg_maxconn;
1964
Willy Tarreau8d687d82019-03-01 09:39:42 +01001965 if (global.stats_fe)
1966 global.maxsock += global.stats_fe->maxconn;
1967
1968 if (cfg_peers) {
1969 /* peers also need to bypass global maxconn */
1970 struct peers *p = cfg_peers;
1971
1972 for (p = cfg_peers; p; p = p->next)
1973 if (p->peers_fe)
1974 global.maxsock += p->peers_fe->maxconn;
1975 }
1976
Willy Tarreaubaaee002006-06-26 02:48:02 +02001977 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +02001978 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001979 global.pidfile = strdup(cfg_pidfile);
1980 }
1981
Willy Tarreaud0256482015-01-15 21:45:22 +01001982 /* Now we want to compute the maxconn and possibly maxsslconn values.
Willy Tarreauac350932019-03-01 15:43:14 +01001983 * It's a bit tricky. Maxconn defaults to the pre-computed value based
1984 * on rlim_fd_cur and the number of FDs in use due to the configuration,
1985 * and maxsslconn defaults to DEFAULT_MAXSSLCONN. On top of that we can
1986 * enforce a lower limit based on memmax.
Willy Tarreaud0256482015-01-15 21:45:22 +01001987 *
1988 * If memmax is set, then it depends on which values are set. If
1989 * maxsslconn is set, we use memmax to determine how many cleartext
1990 * connections may be added, and set maxconn to the sum of the two.
1991 * If maxconn is set and not maxsslconn, maxsslconn is computed from
1992 * the remaining amount of memory between memmax and the cleartext
1993 * connections. If neither are set, then it is considered that all
1994 * connections are SSL-capable, and maxconn is computed based on this,
1995 * then maxsslconn accordingly. We need to know if SSL is used on the
1996 * frontends, backends, or both, because when it's used on both sides,
1997 * we need twice the value for maxsslconn, but we only count the
1998 * handshake once since it is not performed on the two sides at the
1999 * same time (frontend-side is terminated before backend-side begins).
2000 * The SSL stack is supposed to have filled ssl_session_cost and
Willy Tarreau474b96a2015-01-28 19:03:21 +01002001 * ssl_handshake_cost during its initialization. In any case, if
2002 * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for
2003 * maxconn in order to protect the system.
Willy Tarreaud0256482015-01-15 21:45:22 +01002004 */
Willy Tarreauac350932019-03-01 15:43:14 +01002005 ideal_maxconn = compute_ideal_maxconn();
2006
Willy Tarreaud0256482015-01-15 21:45:22 +01002007 if (!global.rlimit_memmax) {
2008 if (global.maxconn == 0) {
Willy Tarreauac350932019-03-01 15:43:14 +01002009 global.maxconn = ideal_maxconn;
Willy Tarreaud0256482015-01-15 21:45:22 +01002010 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2011 fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn);
2012 }
2013 }
2014#ifdef USE_OPENSSL
2015 else if (!global.maxconn && !global.maxsslconn &&
2016 (global.ssl_used_frontend || global.ssl_used_backend)) {
2017 /* memmax is set, compute everything automatically. Here we want
2018 * to ensure that all SSL connections will be served. We take
2019 * care of the number of sides where SSL is used, and consider
2020 * the worst case : SSL used on both sides and doing a handshake
2021 * simultaneously. Note that we can't have more than maxconn
2022 * handshakes at a time by definition, so for the worst case of
2023 * two SSL conns per connection, we count a single handshake.
2024 */
2025 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2026 int64_t mem = global.rlimit_memmax * 1048576ULL;
2027
2028 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2029 mem -= global.maxzlibmem;
2030 mem = mem * MEM_USABLE_RATIO;
2031
2032 global.maxconn = mem /
Willy Tarreau87b09662015-04-03 00:22:06 +02002033 ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream
Willy Tarreaud0256482015-01-15 21:45:22 +01002034 sides * global.ssl_session_max_cost + // SSL buffers, one per side
2035 global.ssl_handshake_max_cost); // 1 handshake per connection max
2036
Willy Tarreauac350932019-03-01 15:43:14 +01002037 global.maxconn = MIN(global.maxconn, ideal_maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01002038 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01002039#ifdef SYSTEM_MAXCONN
Willy Tarreauca783d42019-03-13 10:03:07 +01002040 if (global.maxconn > SYSTEM_MAXCONN)
2041 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01002042#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01002043 global.maxsslconn = sides * global.maxconn;
2044 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2045 fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n",
2046 global.maxconn, global.maxsslconn);
2047 }
2048 else if (!global.maxsslconn &&
2049 (global.ssl_used_frontend || global.ssl_used_backend)) {
2050 /* memmax and maxconn are known, compute maxsslconn automatically.
2051 * maxsslconn being forced, we don't know how many of it will be
2052 * on each side if both sides are being used. The worst case is
2053 * when all connections use only one SSL instance because
2054 * handshakes may be on two sides at the same time.
2055 */
2056 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2057 int64_t mem = global.rlimit_memmax * 1048576ULL;
2058 int64_t sslmem;
2059
2060 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2061 mem -= global.maxzlibmem;
2062 mem = mem * MEM_USABLE_RATIO;
2063
Willy Tarreau87b09662015-04-03 00:22:06 +02002064 sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01002065 global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost);
2066 global.maxsslconn = round_2dig(global.maxsslconn);
2067
2068 if (sslmem <= 0 || global.maxsslconn < sides) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002069 ha_alert("Cannot compute the automatic maxsslconn because global.maxconn is already too "
2070 "high for the global.memmax value (%d MB). The absolute maximum possible value "
2071 "without SSL is %d, but %d was found and SSL is in use.\n",
2072 global.rlimit_memmax,
2073 (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)),
2074 global.maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01002075 exit(1);
2076 }
2077
2078 if (global.maxsslconn > sides * global.maxconn)
2079 global.maxsslconn = sides * global.maxconn;
2080
2081 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2082 fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn);
2083 }
2084#endif
2085 else if (!global.maxconn) {
2086 /* memmax and maxsslconn are known/unused, compute maxconn automatically */
2087 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2088 int64_t mem = global.rlimit_memmax * 1048576ULL;
2089 int64_t clearmem;
2090
2091 if (global.ssl_used_frontend || global.ssl_used_backend)
2092 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2093
2094 mem -= global.maxzlibmem;
2095 mem = mem * MEM_USABLE_RATIO;
2096
2097 clearmem = mem;
2098 if (sides)
2099 clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn;
2100
Willy Tarreau87b09662015-04-03 00:22:06 +02002101 global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreauac350932019-03-01 15:43:14 +01002102 global.maxconn = MIN(global.maxconn, ideal_maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01002103 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01002104#ifdef SYSTEM_MAXCONN
Willy Tarreauca783d42019-03-13 10:03:07 +01002105 if (global.maxconn > SYSTEM_MAXCONN)
2106 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01002107#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01002108
2109 if (clearmem <= 0 || !global.maxconn) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002110 ha_alert("Cannot compute the automatic maxconn because global.maxsslconn is already too "
2111 "high for the global.memmax value (%d MB). The absolute maximum possible value "
2112 "is %d, but %d was found.\n",
2113 global.rlimit_memmax,
2114 (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)),
2115 global.maxsslconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01002116 exit(1);
2117 }
2118
2119 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2120 if (sides && global.maxsslconn > sides * global.maxconn) {
2121 fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn "
2122 "to be limited to %d. Better reduce global.maxsslconn to get more "
2123 "room for extra connections.\n", global.maxsslconn, global.maxconn);
2124 }
2125 fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn);
2126 }
Willy Tarreau66aa61f2009-01-18 21:44:07 +01002127 }
2128
Willy Tarreau5a023f02019-03-01 14:19:31 +01002129 if (!global.maxpipes)
2130 global.maxpipes = compute_ideal_maxpipes();
Willy Tarreau66aa61f2009-01-18 21:44:07 +01002131
Willy Tarreauabacc2c2011-09-07 14:26:33 +02002132 global.hardmaxconn = global.maxconn; /* keep this max value */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002133 global.maxsock += global.maxconn * 2; /* each connection needs two sockets */
Willy Tarreau3ec79b92009-01-18 20:39:42 +01002134 global.maxsock += global.maxpipes * 2; /* each pipe needs two FDs */
Willy Tarreau2c58b412019-03-14 19:10:55 +01002135 global.maxsock += global.nbthread; /* one epoll_fd/kqueue_fd per thread */
2136 global.maxsock += 2 * global.nbthread; /* one wake-up pipe (2 fd) per thread */
2137
Emeric Brunece0c332017-12-06 13:51:49 +01002138 /* compute fd used by async engines */
2139 if (global.ssl_used_async_engines) {
2140 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2141 global.maxsock += global.maxconn * sides * global.ssl_used_async_engines;
2142 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002143
Olivier Houchard88698d92019-04-16 19:07:22 +02002144 /* update connection pool thresholds */
2145 global.tune.pool_low_count = ((long long)global.maxsock * global.tune.pool_low_ratio + 99) / 100;
2146 global.tune.pool_high_count = ((long long)global.maxsock * global.tune.pool_high_ratio + 99) / 100;
2147
Willy Tarreauc8d5b952019-02-27 17:25:52 +01002148 proxy_adjust_all_maxconn();
2149
Willy Tarreau1db37712007-06-03 17:16:49 +02002150 if (global.tune.maxpollevents <= 0)
2151 global.tune.maxpollevents = MAX_POLL_EVENTS;
2152
Olivier Houchard1599b802018-05-24 18:59:04 +02002153 if (global.tune.runqueue_depth <= 0)
2154 global.tune.runqueue_depth = RUNQUEUE_DEPTH;
2155
Willy Tarreau6f4a82c2009-03-21 20:43:57 +01002156 if (global.tune.recv_enough == 0)
2157 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
2158
Willy Tarreau27097842015-09-28 13:53:23 +02002159 if (global.tune.maxrewrite < 0)
2160 global.tune.maxrewrite = MAXREWRITE;
2161
Willy Tarreau27a674e2009-08-17 07:23:33 +02002162 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
2163 global.tune.maxrewrite = global.tune.bufsize / 2;
2164
Willy Tarreaubaaee002006-06-26 02:48:02 +02002165 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
2166 /* command line debug mode inhibits configuration mode */
William Lallemand095ba4c2017-06-01 17:38:50 +02002167 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002168 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
2169 }
2170
William Lallemand095ba4c2017-06-01 17:38:50 +02002171 if (arg_mode & MODE_DAEMON) {
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002172 /* command line daemon mode inhibits foreground and debug modes mode */
2173 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
William Lallemand095ba4c2017-06-01 17:38:50 +02002174 global.mode |= arg_mode & MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002175 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002176
2177 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002178
William Lallemand095ba4c2017-06-01 17:38:50 +02002179 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002180 ha_warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
William Lallemand095ba4c2017-06-01 17:38:50 +02002181 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002182 }
2183
William Lallemand095ba4c2017-06-01 17:38:50 +02002184 if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002185 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
Christopher Faulet767a84b2017-11-24 16:50:31 +01002186 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 +02002187 global.nbproc = 1;
2188 }
2189
2190 if (global.nbproc < 1)
2191 global.nbproc = 1;
2192
Christopher Fauletbe0faa22017-08-29 15:37:10 +02002193 if (global.nbthread < 1)
2194 global.nbthread = 1;
2195
Christopher Faulet3ef26392017-08-29 16:46:57 +02002196 /* Realloc trash buffers because global.tune.bufsize may have changed */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002197 if (!init_trash_buffers(0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002198 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet3ef26392017-08-29 16:46:57 +02002199 exit(1);
2200 }
2201
Christopher Faulet96d44832017-11-14 22:02:30 +01002202 if (!init_log_buffers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002203 ha_alert("failed to initialize log buffers.\n");
Christopher Faulet96d44832017-11-14 22:02:30 +01002204 exit(1);
2205 }
2206
Willy Tarreauef1d1f82007-04-16 00:25:25 +02002207 /*
2208 * Note: we could register external pollers here.
2209 * Built-in pollers have been registered before main().
2210 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02002211
Willy Tarreau43b78992009-01-25 15:42:27 +01002212 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +02002213 disable_poller("kqueue");
2214
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00002215 if (!(global.tune.options & GTUNE_USE_EVPORTS))
2216 disable_poller("evports");
2217
Willy Tarreau43b78992009-01-25 15:42:27 +01002218 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002219 disable_poller("epoll");
2220
Willy Tarreau43b78992009-01-25 15:42:27 +01002221 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002222 disable_poller("poll");
2223
Willy Tarreau43b78992009-01-25 15:42:27 +01002224 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002225 disable_poller("select");
2226
2227 /* Note: we could disable any poller by name here */
2228
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002229 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02002230 list_pollers(stderr);
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002231 fprintf(stderr, "\n");
2232 list_filters(stderr);
2233 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002234
Willy Tarreau4f60f162007-04-08 16:39:58 +02002235 if (!init_pollers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002236 ha_alert("No polling mechanism available.\n"
2237 " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n"
2238 " is too low on this platform to support maxconn and the number of listeners\n"
2239 " and servers. You should rebuild haproxy specifying your system using TARGET=\n"
2240 " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n"
2241 " global maxconn setting to accommodate the system's limitation. For reference,\n"
2242 " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n"
2243 " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n"
2244 " check build settings using 'haproxy -vv'.\n\n",
2245 FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002246 exit(1);
2247 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002248 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2249 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002250 }
2251
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002252 if (!global.node)
2253 global.node = strdup(hostname);
2254
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01002255 if (!hlua_post_init())
2256 exit(1);
Thomas Holmes6abded42015-05-12 16:23:58 +01002257
Maxime de Roucy0f503922016-05-13 23:52:55 +02002258 free(err_msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002259}
2260
Simon Horman6fb82592011-07-15 13:14:11 +09002261static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +09002262{
Simon Hormanac821422011-07-15 13:14:09 +09002263 struct acl_term_suite *suite, *suiteb;
2264 struct acl_term *term, *termb;
2265
Simon Horman6fb82592011-07-15 13:14:11 +09002266 if (!cond)
2267 return;
2268
2269 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
2270 list_for_each_entry_safe(term, termb, &suite->terms, list) {
2271 LIST_DEL(&term->list);
2272 free(term);
Simon Hormanac821422011-07-15 13:14:09 +09002273 }
Simon Horman6fb82592011-07-15 13:14:11 +09002274 LIST_DEL(&suite->list);
2275 free(suite);
2276 }
2277
2278 free(cond);
2279}
2280
2281static void deinit_tcp_rules(struct list *rules)
2282{
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002283 struct act_rule *trule, *truleb;
Simon Horman6fb82592011-07-15 13:14:11 +09002284
2285 list_for_each_entry_safe(trule, truleb, rules, list) {
Simon Hormanac821422011-07-15 13:14:09 +09002286 LIST_DEL(&trule->list);
Simon Horman6fb82592011-07-15 13:14:11 +09002287 deinit_acl_cond(trule->cond);
Simon Hormanac821422011-07-15 13:14:09 +09002288 free(trule);
2289 }
2290}
2291
Simon Horman6fb82592011-07-15 13:14:11 +09002292static void deinit_stick_rules(struct list *rules)
2293{
2294 struct sticking_rule *rule, *ruleb;
2295
2296 list_for_each_entry_safe(rule, ruleb, rules, list) {
2297 LIST_DEL(&rule->list);
2298 deinit_acl_cond(rule->cond);
Christopher Faulet476e5d02016-10-26 11:34:47 +02002299 release_sample_expr(rule->expr);
Simon Horman6fb82592011-07-15 13:14:11 +09002300 free(rule);
2301 }
2302}
2303
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002304void deinit(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002305{
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002306 struct proxy *p = proxies_list, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002307 struct cap_hdr *h,*h_next;
2308 struct server *s,*s_next;
2309 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002310 struct acl_cond *cond, *condb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002311 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002312 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002313 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002314 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002315 struct wordlist *wl, *wlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002316 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +02002317 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +01002318 struct logformat_node *lf, *lfb;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002319 struct bind_conf *bind_conf, *bind_back;
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002320 struct build_opts_str *bol, *bolb;
Willy Tarreau05554e62016-12-21 20:46:26 +01002321 struct post_deinit_fct *pdf;
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002322 struct proxy_deinit_fct *pxdf;
2323 struct server_deinit_fct *srvdf;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002324 int i;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002325
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002326 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002327 while (p) {
Willy Tarreau8113a5d2012-10-04 08:01:43 +02002328 free(p->conf.file);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002329 free(p->id);
2330 free(p->check_req);
2331 free(p->cookie_name);
2332 free(p->cookie_domain);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002333 free(p->lbprm.arg_str);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002334 free(p->capture_name);
2335 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +09002336 free(p->rdp_cookie_name);
Willy Tarreau62a61232013-04-12 18:13:46 +02002337 if (p->conf.logformat_string != default_http_log_format &&
2338 p->conf.logformat_string != default_tcp_log_format &&
2339 p->conf.logformat_string != clf_http_log_format)
2340 free(p->conf.logformat_string);
Willy Tarreau196729e2012-05-31 19:30:26 +02002341
Willy Tarreau62a61232013-04-12 18:13:46 +02002342 free(p->conf.lfs_file);
2343 free(p->conf.uniqueid_format_string);
2344 free(p->conf.uif_file);
Willy Tarreau0cac26c2019-01-14 16:55:42 +01002345 if ((p->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_MAP)
2346 free(p->lbprm.map.srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002347
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002348 if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2349 free(p->conf.logformat_sd_string);
2350 free(p->conf.lfsd_file);
2351
Willy Tarreaua534fea2008-08-03 12:19:50 +02002352 for (i = 0; i < HTTP_ERR_SIZE; i++)
Krzysztof Piotr Oledzki78abe612009-09-27 13:23:20 +02002353 chunk_destroy(&p->errmsg[i]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002354
Willy Tarreaub80c2302007-11-30 20:51:32 +01002355 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
2356 LIST_DEL(&cond->list);
2357 prune_acl_cond(cond);
2358 free(cond);
2359 }
2360
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002361 /* build a list of unique uri_auths */
2362 if (!ua)
2363 ua = p->uri_auth;
2364 else {
2365 /* check if p->uri_auth is unique */
2366 for (uap = ua; uap; uap=uap->next)
2367 if (uap == p->uri_auth)
2368 break;
2369
Willy Tarreauaccc4e12008-06-24 11:14:45 +02002370 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002371 /* add it, if it is */
2372 p->uri_auth->next = ua;
2373 ua = p->uri_auth;
2374 }
2375 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002376
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002377 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
2378 LIST_DEL(&acl->list);
2379 prune_acl(acl);
2380 free(acl);
2381 }
2382
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002383 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
2384 LIST_DEL(&srule->list);
2385 prune_acl_cond(srule->cond);
2386 free(srule->cond);
2387 free(srule);
2388 }
2389
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002390 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
2391 LIST_DEL(&rule->list);
Willy Tarreauf51658d2014-04-23 01:21:56 +02002392 if (rule->cond) {
2393 prune_acl_cond(rule->cond);
2394 free(rule->cond);
2395 }
Dragan Dosen2a7c20f2019-04-30 00:38:36 +02002396 free(rule->file);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002397 free(rule);
2398 }
2399
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002400 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
2401 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +01002402 if (rdr->cond) {
2403 prune_acl_cond(rdr->cond);
2404 free(rdr->cond);
2405 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002406 free(rdr->rdr_str);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002407 list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) {
2408 LIST_DEL(&lf->list);
2409 free(lf);
2410 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002411 free(rdr);
2412 }
2413
William Lallemand0f99e342011-10-12 17:50:54 +02002414 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
2415 LIST_DEL(&log->list);
2416 free(log);
2417 }
2418
William Lallemand723b73a2012-02-08 16:37:49 +01002419 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
2420 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002421 release_sample_expr(lf->expr);
2422 free(lf->arg);
William Lallemand723b73a2012-02-08 16:37:49 +01002423 free(lf);
2424 }
2425
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002426 list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) {
2427 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002428 release_sample_expr(lf->expr);
2429 free(lf->arg);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002430 free(lf);
2431 }
2432
Simon Hormanac821422011-07-15 13:14:09 +09002433 deinit_tcp_rules(&p->tcp_req.inspect_rules);
Kevin Zhu13ebef72019-01-30 16:01:21 +08002434 deinit_tcp_rules(&p->tcp_rep.inspect_rules);
Simon Hormanac821422011-07-15 13:14:09 +09002435 deinit_tcp_rules(&p->tcp_req.l4_rules);
2436
Simon Horman6fb82592011-07-15 13:14:11 +09002437 deinit_stick_rules(&p->storersp_rules);
2438 deinit_stick_rules(&p->sticking_rules);
2439
Willy Tarreaubaaee002006-06-26 02:48:02 +02002440 h = p->req_cap;
2441 while (h) {
2442 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002443 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002444 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002445 free(h);
2446 h = h_next;
2447 }/* end while(h) */
2448
2449 h = p->rsp_cap;
2450 while (h) {
2451 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002452 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002453 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002454 free(h);
2455 h = h_next;
2456 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002457
Willy Tarreaubaaee002006-06-26 02:48:02 +02002458 s = p->srv;
2459 while (s) {
2460 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002461
Willy Tarreauf6562792019-05-07 19:05:35 +02002462 task_destroy(s->check.task);
2463 task_destroy(s->agent.task);
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002464
Willy Tarreau3c39a7d2019-06-14 14:42:29 +02002465 if (s->check.wait_list.tasklet)
2466 tasklet_free(s->check.wait_list.tasklet);
2467 if (s->agent.wait_list.tasklet)
2468 tasklet_free(s->agent.wait_list.tasklet);
Dragan Dosen026ef572019-04-30 00:56:20 +02002469
Willy Tarreauf6562792019-05-07 19:05:35 +02002470 task_destroy(s->warmup);
Willy Tarreau2e993902011-10-31 11:53:20 +01002471
Willy Tarreaua534fea2008-08-03 12:19:50 +02002472 free(s->id);
2473 free(s->cookie);
Willy Tarreauc9fa0482018-07-10 17:43:27 +02002474 free(s->check.bi.area);
2475 free(s->check.bo.area);
2476 free(s->agent.bi.area);
2477 free(s->agent.bo.area);
James Brown55f9ff12015-10-21 18:19:05 -07002478 free(s->agent.send_string);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002479 free(s->hostname_dn);
Sárközi, László34c01792014-09-05 10:08:23 +02002480 free((char*)s->conf.file);
Olivier Houchard7fc3be72018-11-22 18:50:54 +01002481 free(s->idle_conns);
2482 free(s->priv_conns);
2483 free(s->safe_conns);
Olivier Houchard0c18a6f2018-12-02 14:11:41 +01002484 free(s->idle_orphan_conns);
Olivier Houchardf1314812019-02-18 16:41:17 +01002485 free(s->curr_idle_thr);
Willy Tarreau17d45382016-12-22 21:16:08 +01002486
2487 if (s->use_ssl || s->check.use_ssl) {
2488 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2489 xprt_get(XPRT_SSL)->destroy_srv(s);
2490 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002491 HA_SPIN_DESTROY(&s->lock);
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002492
2493 list_for_each_entry(srvdf, &server_deinit_list, list)
2494 srvdf->fct(s);
2495
Willy Tarreaubaaee002006-06-26 02:48:02 +02002496 free(s);
2497 s = s_next;
2498 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002499
Willy Tarreau4348fad2012-09-20 16:48:07 +02002500 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002501 /*
2502 * Zombie proxy, the listener just pretend to be up
2503 * because they still hold an opened fd.
2504 * Close it and give the listener its real state.
2505 */
2506 if (p->state == PR_STSTOPPED && l->state >= LI_ZOMBIE) {
2507 close(l->fd);
2508 l->state = LI_INIT;
2509 }
Willy Tarreauf6e2cc72010-09-03 10:38:17 +02002510 unbind_listener(l);
2511 delete_listener(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002512 LIST_DEL(&l->by_fe);
2513 LIST_DEL(&l->by_bind);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002514 free(l->name);
2515 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002516 free(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002517 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002518
Willy Tarreau4348fad2012-09-20 16:48:07 +02002519 /* Release unused SSL configs. */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002520 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01002521 if (bind_conf->xprt->destroy_bind_conf)
2522 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002523 free(bind_conf->file);
2524 free(bind_conf->arg);
2525 LIST_DEL(&bind_conf->by_fe);
2526 free(bind_conf);
2527 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02002528
Christopher Fauletd7c91962015-04-30 11:48:27 +02002529 flt_deinit(p);
2530
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002531 list_for_each_entry(pxdf, &proxy_deinit_list, list)
2532 pxdf->fct(p);
2533
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002534 free(p->desc);
2535 free(p->fwdfor_hdr_name);
2536
Willy Tarreauff011f22011-01-06 17:51:27 +01002537 free_http_req_rules(&p->http_req_rules);
Sasha Pachev218f0642014-06-16 12:05:59 -06002538 free_http_res_rules(&p->http_res_rules);
Olivier Houchard3f795f72019-04-17 22:51:06 +02002539 task_destroy(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002540
Willy Tarreaubafbe012017-11-24 17:34:44 +01002541 pool_destroy(p->req_cap_pool);
2542 pool_destroy(p->rsp_cap_pool);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002543 if (p->table)
2544 pool_destroy(p->table->pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002545
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002546 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002547 p = p->next;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002548 HA_SPIN_DESTROY(&p0->lbprm.lock);
2549 HA_SPIN_DESTROY(&p0->lock);
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002550 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002551 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02002552
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002553 while (ua) {
2554 uap = ua;
2555 ua = ua->next;
2556
Willy Tarreaua534fea2008-08-03 12:19:50 +02002557 free(uap->uri_prefix);
2558 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002559 free(uap->node);
2560 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002561
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002562 userlist_free(uap->userlist);
Willy Tarreauff011f22011-01-06 17:51:27 +01002563 free_http_req_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002564
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002565 free(uap);
2566 }
2567
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002568 userlist_free(userlist);
2569
David Carlier834cb2e2015-09-25 12:02:25 +01002570 cfg_unregister_sections();
2571
Christopher Faulet0132d062017-07-26 15:33:35 +02002572 deinit_log_buffers();
David Carlier834cb2e2015-09-25 12:02:25 +01002573
Willy Tarreaudd815982007-10-16 12:25:14 +02002574 protocol_unbind_all();
2575
Willy Tarreau05554e62016-12-21 20:46:26 +01002576 list_for_each_entry(pdf, &post_deinit_list, list)
2577 pdf->fct();
2578
Joe Williamsdf5b38f2010-12-29 17:05:48 +01002579 free(global.log_send_hostname); global.log_send_hostname = NULL;
Dragan Dosen43885c72015-10-01 13:18:13 +02002580 chunk_destroy(&global.log_tag);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002581 free(global.chroot); global.chroot = NULL;
2582 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002583 free(global.node); global.node = NULL;
2584 free(global.desc); global.desc = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002585 free(oldpids); oldpids = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02002586 task_destroy(idle_conn_task);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01002587 idle_conn_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002588
William Lallemand0f99e342011-10-12 17:50:54 +02002589 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
2590 LIST_DEL(&log->list);
2591 free(log);
2592 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01002593 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02002594 free(wl->s);
Willy Tarreau477ecd82010-01-03 21:12:30 +01002595 LIST_DEL(&wl->list);
2596 free(wl);
2597 }
2598
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002599 list_for_each_entry_safe(bol, bolb, &build_opts_list, list) {
2600 if (bol->must_free)
2601 free((void *)bol->str);
2602 LIST_DEL(&bol->list);
2603 free(bol);
2604 }
2605
Christopher Fauletff2613e2016-11-09 11:36:17 +01002606 vars_prune(&global.vars, NULL, NULL);
Willy Tarreau2455ceb2018-11-26 15:57:34 +01002607 pool_destroy_all();
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002608 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002609} /* end deinit() */
2610
William Lallemand72160322018-11-06 17:37:16 +01002611
Willy Tarreau918ff602011-07-25 16:33:49 +02002612/* Runs the polling loop */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01002613static void run_poll_loop()
Willy Tarreau4f60f162007-04-08 16:39:58 +02002614{
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002615 int next, wake;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002616
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002617 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002618 while (1) {
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002619 /* Process a few tasks */
2620 process_runnable_tasks();
2621
William Lallemand1aab50b2018-06-07 09:46:01 +02002622 /* check if we caught some signals and process them in the
2623 first thread */
2624 if (tid == 0)
2625 signal_process_queue();
Willy Tarreau29857942009-05-10 09:01:21 +02002626
Willy Tarreau58b458d2008-06-29 22:40:23 +02002627 /* Check if we can expire some tasks */
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002628 next = wake_expired_tasks();
Willy Tarreau4f60f162007-04-08 16:39:58 +02002629
Willy Tarreau85c459d2018-08-02 10:54:31 +02002630 /* stop when there's nothing left to do */
William Lallemanda7199262018-11-16 16:57:20 +01002631 if ((jobs - unstoppable_jobs) == 0)
Willy Tarreau85c459d2018-08-02 10:54:31 +02002632 break;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002633
Willy Tarreau7067b3a2019-06-02 11:11:29 +02002634 /* also stop if we failed to cleanly stop all tasks */
2635 if (killed > 1)
2636 break;
2637
Willy Tarreau10146c92015-04-13 20:44:19 +02002638 /* expire immediately if events are pending */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002639 wake = 1;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02002640 if (thread_has_tasks())
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002641 activity[tid].wake_tasks++;
William Lallemand1aab50b2018-06-07 09:46:01 +02002642 else if (signal_queue_len && tid == 0)
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002643 activity[tid].wake_signal++;
Olivier Houchard79321b92018-07-26 17:55:11 +02002644 else {
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002645 _HA_ATOMIC_OR(&sleeping_thread_mask, tid_bit);
2646 __ha_barrier_atomic_store();
Olivier Houchardbba1a262019-09-24 14:55:28 +02002647 if ((global_tasks_mask & tid_bit) || thread_has_tasks()) {
Olivier Houchard79321b92018-07-26 17:55:11 +02002648 activity[tid].wake_tasks++;
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002649 _HA_ATOMIC_AND(&sleeping_thread_mask, ~tid_bit);
Olivier Houchard79321b92018-07-26 17:55:11 +02002650 } else
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002651 wake = 0;
Olivier Houchard79321b92018-07-26 17:55:11 +02002652 }
Willy Tarreau10146c92015-04-13 20:44:19 +02002653
Willy Tarreau58b458d2008-06-29 22:40:23 +02002654 /* The poller will ensure it returns around <next> */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002655 cur_poller.poll(&cur_poller, next, wake);
Emeric Brun64cc49c2017-10-03 14:46:45 +02002656
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002657 activity[tid].loops++;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002658 }
2659}
2660
Christopher Faulet1d17c102017-08-29 15:38:48 +02002661static void *run_thread_poll_loop(void *data)
2662{
Willy Tarreau082b6282019-05-22 14:42:12 +02002663 struct per_thread_alloc_fct *ptaf;
Christopher Faulet1d17c102017-08-29 15:38:48 +02002664 struct per_thread_init_fct *ptif;
2665 struct per_thread_deinit_fct *ptdf;
Willy Tarreau082b6282019-05-22 14:42:12 +02002666 struct per_thread_free_fct *ptff;
Willy Tarreau34a150c2019-06-11 09:16:41 +02002667 static int init_left = 0;
2668 __decl_hathreads(static pthread_mutex_t init_mutex = PTHREAD_MUTEX_INITIALIZER);
2669 __decl_hathreads(static pthread_cond_t init_cond = PTHREAD_COND_INITIALIZER);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002670
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02002671 ha_set_tid((unsigned long)data);
Willy Tarreaud022e9c2019-09-24 08:25:15 +02002672 sched = &task_per_thread[tid];
Willy Tarreau91e6df02019-05-03 17:21:18 +02002673
Willy Tarreauf6178242019-05-21 19:46:58 +02002674#if (_POSIX_TIMERS > 0) && defined(_POSIX_THREAD_CPUTIME)
Willy Tarreau91e6df02019-05-03 17:21:18 +02002675#ifdef USE_THREAD
Willy Tarreau8323a372019-05-20 18:57:53 +02002676 pthread_getcpuclockid(pthread_self(), &ti->clock_id);
Willy Tarreau624dcbf2019-05-20 20:23:06 +02002677#else
Willy Tarreau8323a372019-05-20 18:57:53 +02002678 ti->clock_id = CLOCK_THREAD_CPUTIME_ID;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002679#endif
Willy Tarreau663fda42019-05-21 15:14:08 +02002680#endif
Willy Tarreau6ec902a2019-06-07 14:41:11 +02002681 /* Now, initialize one thread init at a time. This is better since
2682 * some init code is a bit tricky and may release global resources
2683 * after reallocating them locally. This will also ensure there is
2684 * no race on file descriptors allocation.
2685 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02002686#ifdef USE_THREAD
2687 pthread_mutex_lock(&init_mutex);
2688#endif
2689 /* The first thread must set the number of threads left */
2690 if (!init_left)
2691 init_left = global.nbthread;
2692 init_left--;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002693
Christopher Faulet1d17c102017-08-29 15:38:48 +02002694 tv_update_date(-1,-1);
2695
Willy Tarreau082b6282019-05-22 14:42:12 +02002696 /* per-thread alloc calls performed here are not allowed to snoop on
2697 * other threads, so they are free to initialize at their own rhythm
2698 * as long as they act as if they were alone. None of them may rely
2699 * on resources initialized by the other ones.
2700 */
2701 list_for_each_entry(ptaf, &per_thread_alloc_list, list) {
2702 if (!ptaf->fct()) {
2703 ha_alert("failed to allocate resources for thread %u.\n", tid);
2704 exit(1);
2705 }
2706 }
2707
Willy Tarreau3078e9f2019-05-20 10:50:43 +02002708 /* per-thread init calls performed here are not allowed to snoop on
2709 * other threads, so they are free to initialize at their own rhythm
2710 * as long as they act as if they were alone.
2711 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02002712 list_for_each_entry(ptif, &per_thread_init_list, list) {
2713 if (!ptif->fct()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002714 ha_alert("failed to initialize thread %u.\n", tid);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002715 exit(1);
2716 }
2717 }
2718
Willy Tarreau71092822019-06-10 09:51:04 +02002719 /* enabling protocols will result in fd_insert() calls to be performed,
2720 * we want all threads to have already allocated their local fd tables
Willy Tarreau34a150c2019-06-11 09:16:41 +02002721 * before doing so, thus only the last thread does it.
Willy Tarreau71092822019-06-10 09:51:04 +02002722 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02002723 if (init_left == 0)
Willy Tarreaue4d7c9d2019-06-10 10:14:52 +02002724 protocol_enable_all();
Willy Tarreau6ec902a2019-06-07 14:41:11 +02002725
Willy Tarreau34a150c2019-06-11 09:16:41 +02002726#ifdef USE_THREAD
2727 pthread_cond_broadcast(&init_cond);
2728 pthread_mutex_unlock(&init_mutex);
2729
2730 /* now wait for other threads to finish starting */
2731 pthread_mutex_lock(&init_mutex);
2732 while (init_left)
2733 pthread_cond_wait(&init_cond, &init_mutex);
2734 pthread_mutex_unlock(&init_mutex);
2735#endif
Willy Tarreau3078e9f2019-05-20 10:50:43 +02002736
Willy Tarreaua45a8b52019-12-06 16:31:45 +01002737#if defined(PR_SET_NO_NEW_PRIVS) && defined(USE_PRCTL)
2738 /* Let's refrain from using setuid executables. This way the impact of
2739 * an eventual vulnerability in a library remains limited. It may
2740 * impact external checks but who cares about them anyway ? In the
2741 * worst case it's possible to disable the option. Obviously we do this
2742 * in workers only. We can't hard-fail on this one as it really is
2743 * implementation dependent though we're interested in feedback, hence
2744 * the warning.
2745 */
2746 if (!(global.tune.options & GTUNE_INSECURE_SETUID) && !master) {
2747 static int warn_fail;
2748 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
2749 ha_warning("Failed to disable setuid, please report to developers with detailed "
2750 "information about your operating system. You can silence this warning "
2751 "by adding 'insecure-setuid-wanted' in the 'global' section.\n");
2752 }
2753 }
2754#endif
2755
Willy Tarreaud96f1122019-12-03 07:07:36 +01002756#if defined(RLIMIT_NPROC)
2757 /* all threads have started, it's now time to prevent any new thread
2758 * or process from starting. Obviously we do this in workers only. We
2759 * can't hard-fail on this one as it really is implementation dependent
2760 * though we're interested in feedback, hence the warning.
2761 */
2762 if (!(global.tune.options & GTUNE_INSECURE_FORK) && !master) {
2763 struct rlimit limit = { .rlim_cur = 0, .rlim_max = 0 };
2764 static int warn_fail;
2765
2766 if (setrlimit(RLIMIT_NPROC, &limit) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
2767 ha_warning("Failed to disable forks, please report to developers with detailed "
2768 "information about your operating system. You can silence this warning "
2769 "by adding 'insecure-fork-wanted' in the 'global' section.\n");
2770 }
2771 }
2772#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02002773 run_poll_loop();
2774
2775 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
2776 ptdf->fct();
2777
Willy Tarreau082b6282019-05-22 14:42:12 +02002778 list_for_each_entry(ptff, &per_thread_free_list, list)
2779 ptff->fct();
2780
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002781#ifdef USE_THREAD
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002782 _HA_ATOMIC_AND(&all_threads_mask, ~tid_bit);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002783 if (tid > 0)
2784 pthread_exit(NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002785#endif
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002786 return NULL;
2787}
Christopher Faulet1d17c102017-08-29 15:38:48 +02002788
William Dauchyf9af9d72019-11-17 15:47:16 +01002789/* set uid/gid depending on global settings */
2790static void set_identity(const char *program_name)
2791{
2792 if (global.gid) {
2793 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
2794 ha_warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
2795 " without 'uid'/'user' is generally useless.\n", program_name);
2796
2797 if (setgid(global.gid) == -1) {
2798 ha_alert("[%s.main()] Cannot set gid %d.\n", program_name, global.gid);
2799 protocol_unbind_all();
2800 exit(1);
2801 }
2802 }
2803
2804 if (global.uid && setuid(global.uid) == -1) {
2805 ha_alert("[%s.main()] Cannot set uid %d.\n", program_name, global.uid);
2806 protocol_unbind_all();
2807 exit(1);
2808 }
2809}
2810
Willy Tarreaubaaee002006-06-26 02:48:02 +02002811int main(int argc, char **argv)
2812{
2813 int err, retry;
2814 struct rlimit limit;
Emeric Bruncf20bf12010-10-22 16:06:11 +02002815 char errmsg[100];
Willy Tarreau269ab312012-09-05 08:02:48 +02002816 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002817
Olivier Houchard5fa300d2018-02-03 15:15:21 +01002818 setvbuf(stdout, NULL, _IONBF, 0);
Willy Tarreau5794fb02018-11-25 18:43:29 +01002819
Willy Tarreauff9c9142019-02-07 10:39:36 +01002820 /* this can only safely be done here, though it's optimized away by
2821 * the compiler.
2822 */
2823 if (MAX_PROCS < 1 || MAX_PROCS > LONGBITS) {
2824 ha_alert("MAX_PROCS value must be between 1 and %d inclusive; "
2825 "HAProxy was built with value %d, please fix it and rebuild.\n",
2826 LONGBITS, MAX_PROCS);
2827 exit(1);
2828 }
2829
Willy Tarreaubf696402019-03-01 10:09:28 +01002830 /* take a copy of initial limits before we possibly change them */
2831 getrlimit(RLIMIT_NOFILE, &limit);
2832 rlim_fd_cur_at_boot = limit.rlim_cur;
2833 rlim_fd_max_at_boot = limit.rlim_max;
2834
Willy Tarreau5794fb02018-11-25 18:43:29 +01002835 /* process all initcalls in order of potential dependency */
2836 RUN_INITCALLS(STG_PREPARE);
2837 RUN_INITCALLS(STG_LOCK);
2838 RUN_INITCALLS(STG_ALLOC);
2839 RUN_INITCALLS(STG_POOL);
2840 RUN_INITCALLS(STG_REGISTER);
2841 RUN_INITCALLS(STG_INIT);
2842
Emeric Bruncf20bf12010-10-22 16:06:11 +02002843 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002844 signal_register_fct(SIGQUIT, dump, SIGQUIT);
2845 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
2846 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
William Lallemand73b85e72017-06-01 17:38:51 +02002847 signal_register_fct(SIGUSR2, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002848
Willy Tarreaue437c442010-03-17 18:02:46 +01002849 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
2850 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
2851 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002852 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002853 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002854
Willy Tarreaudc23a922011-02-16 11:10:36 +01002855 /* ulimits */
2856 if (!global.rlimit_nofile)
2857 global.rlimit_nofile = global.maxsock;
2858
2859 if (global.rlimit_nofile) {
Willy Tarreaue5cfdac2019-03-01 10:32:05 +01002860 limit.rlim_cur = global.rlimit_nofile;
2861 limit.rlim_max = MAX(rlim_fd_max_at_boot, limit.rlim_cur);
2862
Willy Tarreaudc23a922011-02-16 11:10:36 +01002863 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
Willy Tarreauef635472016-06-21 11:48:18 +02002864 getrlimit(RLIMIT_NOFILE, &limit);
William Dauchy0fec3ab2019-10-27 20:08:11 +01002865 if (global.tune.options & GTUNE_STRICT_LIMITS) {
2866 ha_alert("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n",
2867 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
2868 if (!(global.mode & MODE_MWORKER))
2869 exit(1);
2870 }
2871 else {
2872 /* try to set it to the max possible at least */
2873 limit.rlim_cur = limit.rlim_max;
2874 if (setrlimit(RLIMIT_NOFILE, &limit) != -1)
2875 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau164dd0b2016-06-21 11:51:59 +02002876
William Dauchy0fec3ab2019-10-27 20:08:11 +01002877 ha_warning("[%s.main()] Cannot raise FD limit to %d, limit is %d. "
2878 "This will fail in >= v2.3\n",
2879 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
2880 global.rlimit_nofile = limit.rlim_cur;
2881 }
Willy Tarreaudc23a922011-02-16 11:10:36 +01002882 }
2883 }
2884
2885 if (global.rlimit_memmax) {
2886 limit.rlim_cur = limit.rlim_max =
Willy Tarreau70060452015-12-14 12:46:07 +01002887 global.rlimit_memmax * 1048576ULL;
Willy Tarreaudc23a922011-02-16 11:10:36 +01002888#ifdef RLIMIT_AS
2889 if (setrlimit(RLIMIT_AS, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01002890 if (global.tune.options & GTUNE_STRICT_LIMITS) {
2891 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2892 argv[0], global.rlimit_memmax);
2893 if (!(global.mode & MODE_MWORKER))
2894 exit(1);
2895 }
2896 else
2897 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs."
2898 "This will fail in >= v2.3\n",
2899 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01002900 }
2901#else
2902 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01002903 if (global.tune.options & GTUNE_STRICT_LIMITS) {
2904 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2905 argv[0], global.rlimit_memmax);
2906 if (!(global.mode & MODE_MWORKER))
2907 exit(1);
2908 }
2909 else
2910 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs.",
2911 "This will fail in >= v2.3\n",
2912 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01002913 }
2914#endif
2915 }
2916
Olivier Houchardf73629d2017-04-05 22:33:04 +02002917 if (old_unixsocket) {
William Lallemand85b0bd92017-06-01 17:38:53 +02002918 if (strcmp("/dev/null", old_unixsocket) != 0) {
2919 if (get_old_sockets(old_unixsocket) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002920 ha_alert("Failed to get the sockets from the old process!\n");
William Lallemand85b0bd92017-06-01 17:38:53 +02002921 if (!(global.mode & MODE_MWORKER))
2922 exit(1);
2923 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02002924 }
2925 }
William Lallemand85b0bd92017-06-01 17:38:53 +02002926 get_cur_unixsocket();
2927
Willy Tarreaubaaee002006-06-26 02:48:02 +02002928 /* We will loop at most 100 times with 10 ms delay each time.
2929 * That's at most 1 second. We only send a signal to old pids
2930 * if we cannot grab at least one port.
2931 */
2932 retry = MAX_START_RETRIES;
2933 err = ERR_NONE;
2934 while (retry >= 0) {
2935 struct timeval w;
2936 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01002937 /* exit the loop on no error or fatal error */
2938 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002939 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02002940 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002941 break;
2942
2943 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
2944 * listening sockets. So on those platforms, it would be wiser to
2945 * simply send SIGUSR1, which will not be undoable.
2946 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02002947 if (tell_old_pids(SIGTTOU) == 0) {
2948 /* no need to wait if we can't contact old pids */
2949 retry = 0;
2950 continue;
2951 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002952 /* give some time to old processes to stop listening */
2953 w.tv_sec = 0;
2954 w.tv_usec = 10*1000;
2955 select(0, NULL, NULL, NULL, &w);
2956 retry--;
2957 }
2958
2959 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01002960 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02002961 if (retry != MAX_START_RETRIES && nb_oldpids) {
2962 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002963 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02002964 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002965 exit(1);
2966 }
2967
William Lallemand944e6192018-11-21 15:48:31 +01002968 if (!(global.mode & MODE_MWORKER_WAIT) && listeners == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002969 ha_alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002970 /* Note: we don't have to send anything to the old pids because we
2971 * never stopped them. */
2972 exit(1);
2973 }
2974
Emeric Bruncf20bf12010-10-22 16:06:11 +02002975 err = protocol_bind_all(errmsg, sizeof(errmsg));
2976 if ((err & ~ERR_WARN) != ERR_NONE) {
2977 if ((err & ERR_ALERT) || (err & ERR_WARN))
Christopher Faulet767a84b2017-11-24 16:50:31 +01002978 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Emeric Bruncf20bf12010-10-22 16:06:11 +02002979
Christopher Faulet767a84b2017-11-24 16:50:31 +01002980 ha_alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002981 protocol_unbind_all(); /* cleanup everything we can */
2982 if (nb_oldpids)
2983 tell_old_pids(SIGTTIN);
2984 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02002985 } else if (err & ERR_WARN) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002986 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02002987 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02002988 /* Ok, all listener should now be bound, close any leftover sockets
2989 * the previous process gave us, we don't need them anymore
2990 */
2991 while (xfer_sock_list != NULL) {
2992 struct xfer_sock_list *tmpxfer = xfer_sock_list->next;
2993 close(xfer_sock_list->fd);
2994 free(xfer_sock_list->iface);
2995 free(xfer_sock_list->namespace);
2996 free(xfer_sock_list);
2997 xfer_sock_list = tmpxfer;
2998 }
Willy Tarreaudd815982007-10-16 12:25:14 +02002999
Willy Tarreaubaaee002006-06-26 02:48:02 +02003000 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003001 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
3002 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003003
Willy Tarreaubaaee002006-06-26 02:48:02 +02003004 /* MODE_QUIET can inhibit alerts and warnings below this line */
3005
PiBa-NL149a81a2017-12-25 21:03:31 +01003006 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL) {
3007 /* either stdin/out/err are already closed or should stay as they are. */
3008 if ((global.mode & MODE_DAEMON)) {
3009 /* daemon mode re-executing, stdin/stdout/stderr are already closed so keep quiet */
3010 global.mode &= ~MODE_VERBOSE;
3011 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3012 }
3013 } else {
3014 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
3015 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003016 stdio_quiet(-1);
PiBa-NL149a81a2017-12-25 21:03:31 +01003017 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003018 }
3019
3020 /* open log & pid files before the chroot */
William Lallemand80293002017-11-06 11:00:03 +01003021 if ((global.mode & MODE_DAEMON || global.mode & MODE_MWORKER) && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003022 unlink(global.pidfile);
3023 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
3024 if (pidfd < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003025 ha_alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003026 if (nb_oldpids)
3027 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02003028 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003029 exit(1);
3030 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003031 }
3032
Willy Tarreaub38651a2007-03-24 17:24:39 +01003033 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003034 ha_alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
3035 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02003036 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01003037 exit(1);
3038 }
3039
Willy Tarreau4e30ed72009-02-04 18:02:48 +01003040 /* If the user is not root, we'll still let him try the configuration
3041 * but we inform him that unexpected behaviour may occur.
3042 */
3043 if ((global.last_checks & LSTCHK_NETADM) && getuid())
Christopher Faulet767a84b2017-11-24 16:50:31 +01003044 ha_warning("[%s.main()] Some options which require full privileges"
3045 " might not work well.\n"
3046 "", argv[0]);
Willy Tarreau4e30ed72009-02-04 18:02:48 +01003047
William Lallemand095ba4c2017-06-01 17:38:50 +02003048 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
3049
3050 /* chroot if needed */
3051 if (global.chroot != NULL) {
3052 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003053 ha_alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003054 if (nb_oldpids)
3055 tell_old_pids(SIGTTIN);
3056 protocol_unbind_all();
3057 exit(1);
3058 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02003059 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02003060 }
3061
William Lallemand944e6192018-11-21 15:48:31 +01003062 if (nb_oldpids && !(global.mode & MODE_MWORKER_WAIT))
Willy Tarreaubb545b42010-08-25 12:58:59 +02003063 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003064
William Lallemand27edc4b2019-05-07 17:49:33 +02003065 /* send a SIGTERM to workers who have a too high reloads number */
3066 if ((global.mode & MODE_MWORKER) && !(global.mode & MODE_MWORKER_WAIT))
3067 mworker_kill_max_reloads(SIGTERM);
3068
William Lallemand8a361b52017-06-20 11:20:33 +02003069 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
3070 nb_oldpids = 0;
3071 free(oldpids);
3072 oldpids = NULL;
3073 }
3074
3075
Willy Tarreaubaaee002006-06-26 02:48:02 +02003076 /* Note that any error at this stage will be fatal because we will not
3077 * be able to restart the old pids.
3078 */
3079
William Dauchyf9af9d72019-11-17 15:47:16 +01003080 if ((global.mode & (MODE_MWORKER | MODE_DAEMON)) == 0)
3081 set_identity(argv[0]);
Willy Tarreau636848a2019-04-15 19:38:50 +02003082
Willy Tarreaubaaee002006-06-26 02:48:02 +02003083 /* check ulimits */
3084 limit.rlim_cur = limit.rlim_max = 0;
3085 getrlimit(RLIMIT_NOFILE, &limit);
3086 if (limit.rlim_cur < global.maxsock) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003087 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3088 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
3089 "Please raise 'ulimit-n' to %d or more to avoid any trouble.\n",
3090 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
3091 global.maxsock);
3092 if (!(global.mode & MODE_MWORKER))
3093 exit(1);
3094 }
3095 else
3096 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
3097 "Please raise 'ulimit-n' to %d or more to avoid any trouble."
3098 "This will fail in >= v2.3\n",
3099 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
3100 global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003101 }
3102
William Lallemand944e6192018-11-21 15:48:31 +01003103 if (global.mode & (MODE_DAEMON | MODE_MWORKER | MODE_MWORKER_WAIT)) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003104 struct proxy *px;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003105 struct peers *curpeers;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003106 int ret = 0;
3107 int proc;
William Lallemande1340412017-12-28 16:09:36 +01003108 int devnullfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003109
William Lallemand095ba4c2017-06-01 17:38:50 +02003110 /*
3111 * if daemon + mworker: must fork here to let a master
3112 * process live in background before forking children
3113 */
William Lallemand73b85e72017-06-01 17:38:51 +02003114
3115 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)
3116 && (global.mode & MODE_MWORKER)
3117 && (global.mode & MODE_DAEMON)) {
William Lallemand095ba4c2017-06-01 17:38:50 +02003118 ret = fork();
3119 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003120 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003121 protocol_unbind_all();
3122 exit(1); /* there has been an error */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003123 } else if (ret > 0) { /* parent leave to daemonize */
William Lallemand095ba4c2017-06-01 17:38:50 +02003124 exit(0);
William Lallemandbfd8eb52018-07-04 15:31:23 +02003125 } else /* change the process group ID in the child (master process) */
3126 setsid();
William Lallemand095ba4c2017-06-01 17:38:50 +02003127 }
William Lallemande20b6a62017-06-01 17:38:55 +02003128
William Lallemande20b6a62017-06-01 17:38:55 +02003129
William Lallemanddeed7802017-11-06 11:00:04 +01003130 /* if in master-worker mode, write the PID of the father */
3131 if (global.mode & MODE_MWORKER) {
3132 char pidstr[100];
Willy Tarreau76a80c72019-06-22 07:41:38 +02003133 snprintf(pidstr, sizeof(pidstr), "%d\n", (int)getpid());
Willy Tarreau46ec48b2018-01-23 19:20:19 +01003134 if (pidfd >= 0)
3135 shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
William Lallemanddeed7802017-11-06 11:00:04 +01003136 }
3137
Willy Tarreaubaaee002006-06-26 02:48:02 +02003138 /* the father launches the required number of processes */
William Lallemand944e6192018-11-21 15:48:31 +01003139 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +02003140 if (global.mode & MODE_MWORKER)
3141 mworker_ext_launch_all();
William Lallemand944e6192018-11-21 15:48:31 +01003142 for (proc = 0; proc < global.nbproc; proc++) {
3143 ret = fork();
3144 if (ret < 0) {
3145 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
3146 protocol_unbind_all();
3147 exit(1); /* there has been an error */
3148 }
3149 else if (ret == 0) /* child breaks here */
3150 break;
William Lallemand944e6192018-11-21 15:48:31 +01003151 if (pidfd >= 0 && !(global.mode & MODE_MWORKER)) {
3152 char pidstr[100];
3153 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
3154 shut_your_big_mouth_gcc(write(pidfd, pidstr, strlen(pidstr)));
3155 }
3156 if (global.mode & MODE_MWORKER) {
3157 struct mworker_proc *child;
William Lallemandce83b4a2018-10-26 14:47:30 +02003158
William Lallemand220567e2018-11-21 18:04:53 +01003159 ha_notice("New worker #%d (%d) forked\n", relative_pid, ret);
William Lallemand944e6192018-11-21 15:48:31 +01003160 /* find the right mworker_proc */
3161 list_for_each_entry(child, &proc_list, list) {
3162 if (child->relative_pid == relative_pid &&
William Lallemand8f7069a2019-04-12 16:09:23 +02003163 child->reloads == 0 && child->options & PROC_O_TYPE_WORKER) {
William Lallemand944e6192018-11-21 15:48:31 +01003164 child->timestamp = now.tv_sec;
3165 child->pid = ret;
William Lallemand1dc69632019-06-12 19:11:33 +02003166 child->version = strdup(haproxy_version);
William Lallemand944e6192018-11-21 15:48:31 +01003167 break;
3168 }
William Lallemandce83b4a2018-10-26 14:47:30 +02003169 }
3170 }
William Lallemandbc193052018-09-11 10:06:26 +02003171
William Lallemand944e6192018-11-21 15:48:31 +01003172 relative_pid++; /* each child will get a different one */
3173 pid_bit <<= 1;
3174 }
3175 } else {
3176 /* wait mode */
3177 global.nbproc = 1;
3178 proc = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003179 }
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003180
3181#ifdef USE_CPU_AFFINITY
3182 if (proc < global.nbproc && /* child */
Willy Tarreauff9c9142019-02-07 10:39:36 +01003183 proc < MAX_PROCS && /* only the first 32/64 processes may be pinned */
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003184 global.cpu_map.proc[proc]) /* only do this if the process has a CPU map */
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003185#ifdef __FreeBSD__
Olivier Houchard97148f62017-08-16 17:29:11 +02003186 {
3187 cpuset_t cpuset;
3188 int i;
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003189 unsigned long cpu_map = global.cpu_map.proc[proc];
Olivier Houchard97148f62017-08-16 17:29:11 +02003190
3191 CPU_ZERO(&cpuset);
3192 while ((i = ffsl(cpu_map)) > 0) {
3193 CPU_SET(i - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003194 cpu_map &= ~(1UL << (i - 1));
Olivier Houchard97148f62017-08-16 17:29:11 +02003195 }
3196 ret = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(cpuset), &cpuset);
3197 }
David Carlier5e4c8e22019-09-13 05:12:58 +01003198#elif defined(__linux__)
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003199 sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map.proc[proc]);
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003200#endif
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003201#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02003202 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02003203 if (pidfd >= 0) {
3204 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
3205 close(pidfd);
3206 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02003207
3208 /* We won't ever use this anymore */
Willy Tarreaud137dd32010-08-25 12:49:05 +02003209 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003210
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003211 if (proc == global.nbproc) {
William Lallemand944e6192018-11-21 15:48:31 +01003212 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003213
3214 if ((!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
3215 (global.mode & MODE_DAEMON)) {
3216 /* detach from the tty, this is required to properly daemonize. */
William Lallemande1340412017-12-28 16:09:36 +01003217 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL))
3218 stdio_quiet(-1);
3219
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003220 global.mode &= ~MODE_VERBOSE;
3221 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003222 }
3223
William Lallemandb3f2be32018-09-11 10:06:18 +02003224 mworker_loop();
William Lallemand1499b9b2017-06-07 15:04:47 +02003225 /* should never get there */
3226 exit(EXIT_FAILURE);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003227 }
William Lallemandcf4e4962017-06-08 19:05:48 +02003228#if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH)
Grant Zhang872f9c22017-01-21 01:10:18 +00003229 ssl_free_dh();
3230#endif
William Lallemand1499b9b2017-06-07 15:04:47 +02003231 exit(0); /* parent must leave */
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003232 }
3233
William Lallemandcb11fd22017-06-01 17:38:52 +02003234 /* child must never use the atexit function */
3235 atexit_flag = 0;
3236
William Lallemandbc193052018-09-11 10:06:26 +02003237 /* close useless master sockets */
3238 if (global.mode & MODE_MWORKER) {
3239 struct mworker_proc *child, *it;
3240 master = 0;
3241
William Lallemand309dc9a2018-10-26 14:47:45 +02003242 mworker_cli_proxy_stop();
3243
William Lallemandbc193052018-09-11 10:06:26 +02003244 /* free proc struct of other processes */
3245 list_for_each_entry_safe(child, it, &proc_list, list) {
William Lallemandce83b4a2018-10-26 14:47:30 +02003246 /* close the FD of the master side for all
3247 * workers, we don't need to close the worker
3248 * side of other workers since it's done with
3249 * the bind_proc */
Tim Duesterhus742e0f92018-11-25 20:03:39 +01003250 if (child->ipc_fd[0] >= 0)
3251 close(child->ipc_fd[0]);
William Lallemandce83b4a2018-10-26 14:47:30 +02003252 if (child->relative_pid == relative_pid &&
3253 child->reloads == 0) {
3254 /* keep this struct if this is our pid */
3255 proc_self = child;
William Lallemandbc193052018-09-11 10:06:26 +02003256 continue;
William Lallemandce83b4a2018-10-26 14:47:30 +02003257 }
William Lallemandbc193052018-09-11 10:06:26 +02003258 LIST_DEL(&child->list);
Tim Duesterhus9b7a9762019-05-16 20:23:22 +02003259 mworker_free_child(child);
3260 child = NULL;
William Lallemandbc193052018-09-11 10:06:26 +02003261 }
3262 }
Willy Tarreau1605c7a2018-01-23 19:01:49 +01003263
William Lallemande1340412017-12-28 16:09:36 +01003264 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
3265 devnullfd = open("/dev/null", O_RDWR, 0);
3266 if (devnullfd < 0) {
3267 ha_alert("Cannot open /dev/null\n");
3268 exit(EXIT_FAILURE);
3269 }
3270 }
3271
William Lallemand095ba4c2017-06-01 17:38:50 +02003272 /* Must chroot and setgid/setuid in the children */
3273 /* chroot if needed */
3274 if (global.chroot != NULL) {
3275 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003276 ha_alert("[%s.main()] Cannot chroot1(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003277 if (nb_oldpids)
3278 tell_old_pids(SIGTTIN);
3279 protocol_unbind_all();
3280 exit(1);
3281 }
3282 }
3283
3284 free(global.chroot);
3285 global.chroot = NULL;
William Dauchyf9af9d72019-11-17 15:47:16 +01003286 set_identity(argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003287
William Lallemand7f80eb22017-05-26 18:19:55 +02003288 /* pass through every cli socket, and check if it's bound to
3289 * the current process and if it exposes listeners sockets.
3290 * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork.
3291 * */
3292
3293 if (global.stats_fe) {
3294 struct bind_conf *bind_conf;
3295
3296 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3297 if (bind_conf->level & ACCESS_FD_LISTENERS) {
3298 if (!bind_conf->bind_proc || bind_conf->bind_proc & (1UL << proc)) {
3299 global.tune.options |= GTUNE_SOCKET_TRANSFER;
3300 break;
3301 }
3302 }
3303 }
3304 }
3305
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003306 /* we might have to unbind some proxies from some processes */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003307 px = proxies_list;
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003308 while (px != NULL) {
3309 if (px->bind_proc && px->state != PR_STSTOPPED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02003310 if (!(px->bind_proc & (1UL << proc))) {
3311 if (global.tune.options & GTUNE_SOCKET_TRANSFER)
3312 zombify_proxy(px);
3313 else
3314 stop_proxy(px);
3315 }
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003316 }
3317 px = px->next;
3318 }
3319
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003320 /* we might have to unbind some peers sections from some processes */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003321 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003322 if (!curpeers->peers_fe)
3323 continue;
3324
3325 if (curpeers->peers_fe->bind_proc & (1UL << proc))
3326 continue;
3327
3328 stop_proxy(curpeers->peers_fe);
3329 /* disable this peer section so that it kills itself */
Willy Tarreau47c8c022015-09-28 16:39:25 +02003330 signal_unregister_handler(curpeers->sighandler);
Olivier Houchard3f795f72019-04-17 22:51:06 +02003331 task_destroy(curpeers->sync_task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003332 curpeers->sync_task = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02003333 task_destroy(curpeers->peers_fe->task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003334 curpeers->peers_fe->task = NULL;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003335 curpeers->peers_fe = NULL;
3336 }
3337
William Lallemand2e8fad92018-11-13 16:18:23 +01003338 /*
3339 * This is only done in daemon mode because we might want the
3340 * logs on stdout in mworker mode. If we're NOT in QUIET mode,
3341 * we should now close the 3 first FDs to ensure that we can
3342 * detach from the TTY. We MUST NOT do it in other cases since
3343 * it would have already be done, and 0-2 would have been
3344 * affected to listening sockets
Willy Tarreaubaaee002006-06-26 02:48:02 +02003345 */
William Lallemand2e8fad92018-11-13 16:18:23 +01003346 if ((global.mode & MODE_DAEMON) &&
3347 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003348 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003349 stdio_quiet(devnullfd);
Willy Tarreau106cb762008-11-16 07:40:34 +01003350 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003351 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3352 }
3353 pid = getpid(); /* update child's pid */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003354 if (!(global.mode & MODE_MWORKER)) /* in mworker mode we don't want a new pgid for the children */
3355 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02003356 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003357 }
3358
William Dauchye039f262019-11-17 15:47:15 +01003359 /* try our best to re-enable core dumps depending on system capabilities.
3360 * What is addressed here :
3361 * - remove file size limits
3362 * - remove core size limits
3363 * - mark the process dumpable again if it lost it due to user/group
3364 */
3365 if (global.tune.options & GTUNE_SET_DUMPABLE) {
3366 limit.rlim_cur = limit.rlim_max = RLIM_INFINITY;
3367
3368#if defined(RLIMIT_FSIZE)
3369 if (setrlimit(RLIMIT_FSIZE, &limit) == -1) {
3370 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3371 ha_alert("[%s.main()] Failed to set the raise the maximum "
3372 "file size.\n", argv[0]);
3373 if (!(global.mode & MODE_MWORKER))
3374 exit(1);
3375 }
3376 else
3377 ha_warning("[%s.main()] Failed to set the raise the maximum "
3378 "file size. This will fail in >= v2.3\n", argv[0]);
3379 }
3380#endif
3381
3382#if defined(RLIMIT_CORE)
3383 if (setrlimit(RLIMIT_CORE, &limit) == -1) {
3384 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3385 ha_alert("[%s.main()] Failed to set the raise the core "
3386 "dump size.\n", argv[0]);
3387 if (!(global.mode & MODE_MWORKER))
3388 exit(1);
3389 }
3390 else
3391 ha_warning("[%s.main()] Failed to set the raise the core "
3392 "dump size. This will fail in >= v2.3\n", argv[0]);
3393 }
3394#endif
3395
3396#if defined(USE_PRCTL)
3397 if (prctl(PR_SET_DUMPABLE, 1, 0, 0, 0) == -1)
3398 ha_warning("[%s.main()] Failed to set the dumpable flag, "
3399 "no core will be dumped.\n", argv[0]);
3400#endif
3401 }
3402
Christopher Faulete3a5e352017-10-24 13:53:54 +02003403 global.mode &= ~MODE_STARTING;
Willy Tarreau4f60f162007-04-08 16:39:58 +02003404 /*
3405 * That's it : the central polling loop. Run until we stop.
3406 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02003407#ifdef USE_THREAD
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003408 {
William Lallemand1aab50b2018-06-07 09:46:01 +02003409 sigset_t blocked_sig, old_sig;
Willy Tarreauc40efc12019-05-03 09:22:44 +02003410 int i;
3411
William Lallemand1aab50b2018-06-07 09:46:01 +02003412 /* ensure the signals will be blocked in every thread */
3413 sigfillset(&blocked_sig);
3414 sigdelset(&blocked_sig, SIGPROF);
3415 sigdelset(&blocked_sig, SIGBUS);
3416 sigdelset(&blocked_sig, SIGFPE);
3417 sigdelset(&blocked_sig, SIGILL);
3418 sigdelset(&blocked_sig, SIGSEGV);
3419 pthread_sigmask(SIG_SETMASK, &blocked_sig, &old_sig);
3420
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003421 /* Create nbthread-1 thread. The first thread is the current process */
David Carliera92c5ce2019-09-13 05:03:12 +01003422 ha_thread_info[0].pthread = pthread_self();
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003423 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003424 pthread_create(&ha_thread_info[i].pthread, NULL, &run_thread_poll_loop, (void *)(long)i);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003425
Christopher Faulet62519022017-10-16 15:49:32 +02003426#ifdef USE_CPU_AFFINITY
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003427 /* Now the CPU affinity for all threads */
Willy Tarreau7764a572019-07-16 15:10:34 +02003428 if (global.cpu_map.proc_t1[relative_pid-1])
3429 global.cpu_map.thread[0] &= global.cpu_map.proc_t1[relative_pid-1];
3430
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003431 for (i = 0; i < global.nbthread; i++) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003432 if (global.cpu_map.proc[relative_pid-1])
Willy Tarreau81492c92019-05-03 09:41:23 +02003433 global.cpu_map.thread[i] &= global.cpu_map.proc[relative_pid-1];
Christopher Faulet62519022017-10-16 15:49:32 +02003434
Willy Tarreau421f02e2018-01-20 18:19:22 +01003435 if (i < MAX_THREADS && /* only the first 32/64 threads may be pinned */
Willy Tarreau81492c92019-05-03 09:41:23 +02003436 global.cpu_map.thread[i]) {/* only do this if the thread has a THREAD map */
David Carlier5e4c8e22019-09-13 05:12:58 +01003437#if defined(__APPLE__)
3438 int j;
3439 unsigned long cpu_map = global.cpu_map.thread[i];
3440
3441 while ((j = ffsl(cpu_map)) > 0) {
3442 thread_affinity_policy_data_t cpu_set = { j - 1 };
3443 thread_port_t mthread = pthread_mach_thread_np(ha_thread_info[i].pthread);
3444 thread_policy_set(mthread, THREAD_AFFINITY_POLICY, (thread_policy_t)&cpu_set, 1);
3445 cpu_map &= ~(1UL << (j - 1));
3446 }
3447#else
Olivier Houchard829aa242017-12-01 18:19:43 +01003448#if defined(__FreeBSD__) || defined(__NetBSD__)
3449 cpuset_t cpuset;
3450#else
3451 cpu_set_t cpuset;
3452#endif
3453 int j;
Willy Tarreau81492c92019-05-03 09:41:23 +02003454 unsigned long cpu_map = global.cpu_map.thread[i];
Olivier Houchard829aa242017-12-01 18:19:43 +01003455
3456 CPU_ZERO(&cpuset);
3457
3458 while ((j = ffsl(cpu_map)) > 0) {
3459 CPU_SET(j - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003460 cpu_map &= ~(1UL << (j - 1));
Olivier Houchard829aa242017-12-01 18:19:43 +01003461 }
David Carliera92c5ce2019-09-13 05:03:12 +01003462 pthread_setaffinity_np(ha_thread_info[i].pthread,
Olivier Houchard829aa242017-12-01 18:19:43 +01003463 sizeof(cpuset), &cpuset);
David Carlier5e4c8e22019-09-13 05:12:58 +01003464#endif
Olivier Houchard829aa242017-12-01 18:19:43 +01003465 }
Christopher Faulet1d17c102017-08-29 15:38:48 +02003466 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003467#endif /* !USE_CPU_AFFINITY */
3468
William Lallemand1aab50b2018-06-07 09:46:01 +02003469 /* when multithreading we need to let only the thread 0 handle the signals */
William Lallemandd3801c12018-09-11 10:06:23 +02003470 haproxy_unblock_signals();
William Lallemand1aab50b2018-06-07 09:46:01 +02003471
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003472 /* Finally, start the poll loop for the first thread */
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003473 run_thread_poll_loop(0);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003474
3475 /* Wait the end of other threads */
3476 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003477 pthread_join(ha_thread_info[i].pthread, NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003478
Christopher Fauletb79a94c2017-05-30 15:34:30 +02003479#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
3480 show_lock_stats();
3481#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003482 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003483#else /* ! USE_THREAD */
William Lallemandd3801c12018-09-11 10:06:23 +02003484 haproxy_unblock_signals();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003485 run_thread_poll_loop(0);
Christopher Faulet62519022017-10-16 15:49:32 +02003486#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003487
3488 /* Do some cleanup */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003489 deinit();
Christopher Faulet1d17c102017-08-29 15:38:48 +02003490
Willy Tarreaubaaee002006-06-26 02:48:02 +02003491 exit(0);
3492}
3493
3494
3495/*
3496 * Local variables:
3497 * c-indent-level: 8
3498 * c-basic-offset: 8
3499 * End:
3500 */