blob: 7537d93f150477e5b37b5b00d78720325669fd5c [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HA-Proxy : High Availability-enabled HTTP/TCP proxy
Willy Tarreau71f95fa2020-01-22 10:34:58 +01003 * Copyright 2000-2020 Willy Tarreau <willy@haproxy.org>.
Willy Tarreaubaaee002006-06-26 02:48:02 +02004 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 *
Lukas Tribus23953682017-04-28 13:24:30 +000010 * Please refer to RFC7230 - RFC7235 informations about HTTP protocol, and
11 * RFC6265 for informations about cookies usage. More generally, the IETF HTTP
Willy Tarreaubaaee002006-06-26 02:48:02 +020012 * Working Group's web site should be consulted for protocol related changes :
13 *
14 * http://ftp.ics.uci.edu/pub/ietf/http/
15 *
16 * Pending bugs (may be not fixed because never reproduced) :
17 * - solaris only : sometimes, an HTTP proxy with only a dispatch address causes
18 * the proxy to terminate (no core) if the client breaks the connection during
19 * the response. Seen on 1.1.8pre4, but never reproduced. May not be related to
20 * the snprintf() bug since requests were simple (GET / HTTP/1.0), but may be
21 * related to missing setsid() (fixed in 1.1.15)
22 * - a proxy with an invalid config will prevent the startup even if disabled.
23 *
24 * ChangeLog has moved to the CHANGELOG file.
25 *
Willy Tarreaubaaee002006-06-26 02:48:02 +020026 */
27
David Carlier7ece0962015-12-08 21:43:09 +000028#define _GNU_SOURCE
Willy Tarreaubaaee002006-06-26 02:48:02 +020029#include <stdio.h>
30#include <stdlib.h>
31#include <unistd.h>
32#include <string.h>
33#include <ctype.h>
Maxime de Roucy379d9c72016-05-13 23:52:56 +020034#include <dirent.h>
Maxime de Roucy379d9c72016-05-13 23:52:56 +020035#include <sys/stat.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036#include <sys/time.h>
37#include <sys/types.h>
38#include <sys/socket.h>
39#include <netinet/tcp.h>
40#include <netinet/in.h>
41#include <arpa/inet.h>
Olivier Houchardf73629d2017-04-05 22:33:04 +020042#include <net/if.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020043#include <netdb.h>
44#include <fcntl.h>
45#include <errno.h>
46#include <signal.h>
47#include <stdarg.h>
48#include <sys/resource.h>
Tim Duesterhusdfad6a42020-04-18 16:02:47 +020049#include <sys/utsname.h>
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +010050#include <sys/wait.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020051#include <time.h>
52#include <syslog.h>
Michael Schererab012dd2013-01-12 18:35:19 +010053#include <grp.h>
Willy Tarreaufc6c0322012-11-16 16:12:27 +010054#ifdef USE_CPU_AFFINITY
Willy Tarreaufc6c0322012-11-16 16:12:27 +010055#include <sched.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000056#if defined(__FreeBSD__) || defined(__DragonFly__)
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020057#include <sys/param.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000058#ifdef __FreeBSD__
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020059#include <sys/cpuset.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000060#endif
David Carlier6d5c8412017-11-29 11:02:32 +000061#include <pthread_np.h>
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020062#endif
David Carlier5e4c8e22019-09-13 05:12:58 +010063#ifdef __APPLE__
64#include <mach/mach_types.h>
65#include <mach/thread_act.h>
66#include <mach/thread_policy.h>
67#endif
Willy Tarreaufc6c0322012-11-16 16:12:27 +010068#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020069
Willy Tarreau636848a2019-04-15 19:38:50 +020070#if defined(USE_PRCTL)
71#include <sys/prctl.h>
72#endif
73
Willy Tarreaubaaee002006-06-26 02:48:02 +020074#ifdef DEBUG_FULL
75#include <assert.h>
76#endif
Tim Duesterhusd6942c82017-11-20 15:58:35 +010077#if defined(USE_SYSTEMD)
78#include <systemd/sd-daemon.h>
79#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020080
Willy Tarreau6c3a6812020-03-06 18:57:15 +010081#include <import/sha1.h>
82
Willy Tarreaub2551052020-06-09 09:07:15 +020083#include <haproxy/acl.h>
84#include <haproxy/activity.h>
85#include <haproxy/api.h>
86#include <haproxy/arg.h>
87#include <haproxy/auth.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020088#include <haproxy/base64.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020089#include <haproxy/capture-t.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020090#include <haproxy/cfgparse.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020091#include <haproxy/chunk.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020092#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020093#include <haproxy/connection.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020094#include <haproxy/dns.h>
Willy Tarreau2741c8c2020-06-02 11:28:02 +020095#include <haproxy/dynbuf.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020096#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020097#include <haproxy/fd.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020098#include <haproxy/filters.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020099#include <haproxy/global.h>
Willy Tarreau86416052020-06-04 09:20:54 +0200100#include <haproxy/hlua.h>
Willy Tarreauc761f842020-06-04 11:40:28 +0200101#include <haproxy/http_rules.h>
Willy Tarreau853b2972020-05-27 18:01:47 +0200102#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +0200103#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +0200104#include <haproxy/log.h>
Willy Tarreaub5abe5b2020-06-04 14:07:37 +0200105#include <haproxy/mworker.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +0200106#include <haproxy/namespace.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +0200107#include <haproxy/net_helper.h>
Willy Tarreau6019fab2020-05-27 16:26:00 +0200108#include <haproxy/openssl-compat.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +0200109#include <haproxy/pattern.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +0200110#include <haproxy/peers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +0200111#include <haproxy/pool.h>
112#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +0200113#include <haproxy/proxy.h>
Willy Tarreau7cd8b6e2020-06-02 17:32:26 +0200114#include <haproxy/regex.h>
Willy Tarreaub2551052020-06-09 09:07:15 +0200115#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +0200116#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +0200117#include <haproxy/session.h>
Willy Tarreau3727a8a2020-06-04 17:37:26 +0200118#include <haproxy/signal.h>
Willy Tarreau209108d2020-06-04 20:30:20 +0200119#include <haproxy/ssl_sock.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +0200120#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +0200121#include <haproxy/task.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +0200122#include <haproxy/thread.h>
Willy Tarreaub2551052020-06-09 09:07:15 +0200123#include <haproxy/time.h>
124#include <haproxy/tools.h>
125#include <haproxy/uri_auth-t.h>
Willy Tarreaua1718922020-06-04 16:25:31 +0200126#include <haproxy/vars.h>
Willy Tarreaub2551052020-06-09 09:07:15 +0200127#include <haproxy/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200128
Willy Tarreaubaaee002006-06-26 02:48:02 +0200129
Willy Tarreau7b5654f2019-03-29 21:30:17 +0100130/* array of init calls for older platforms */
131DECLARE_INIT_STAGES;
132
Willy Tarreau477ecd82010-01-03 21:12:30 +0100133/* list of config files */
134static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200135int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100136int relative_pid = 1; /* process id starting at 1 */
Willy Tarreau387bd4f2017-11-10 19:08:14 +0100137unsigned long pid_bit = 1; /* bit corresponding to the process id */
Willy Tarreaua38a7172019-02-02 17:11:28 +0100138unsigned long all_proc_mask = 1; /* mask of all processes */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200139
Willy Tarreauf8ea00e2020-03-12 17:24:53 +0100140volatile unsigned long sleeping_thread_mask = 0; /* Threads that are about to sleep in poll() */
Willy Tarreau4b3f27b2020-03-12 17:28:01 +0100141volatile unsigned long stopping_thread_mask = 0; /* Threads acknowledged stopping */
Willy Tarreauf8ea00e2020-03-12 17:24:53 +0100142
Willy Tarreaubaaee002006-06-26 02:48:02 +0200143/* global options */
144struct global global = {
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100145 .hard_stop_after = TICK_ETERNITY,
Willy Tarreau247a13a2012-11-15 17:38:15 +0100146 .nbproc = 1,
Willy Tarreau149ab772019-01-26 14:27:06 +0100147 .nbthread = 0,
William Lallemand5f232402012-04-05 18:02:55 +0200148 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200149 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
William Lallemand9d5f5482012-11-07 16:12:57 +0100150 .maxzlibmem = 0,
William Lallemandd85f9172012-11-09 17:05:39 +0100151 .comp_rate_lim = 0,
Emeric Brun850efd52014-01-29 12:24:34 +0100152 .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED,
Emeric Bruned760922010-10-22 17:59:25 +0200153 .unix_bind = {
154 .ux = {
155 .uid = -1,
156 .gid = -1,
157 .mode = 0,
158 }
159 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200160 .tune = {
Willy Tarreau7ac908b2019-02-27 12:02:18 +0100161 .options = GTUNE_LISTENER_MQ,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100162 .bufsize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Christopher Faulet546c4692020-01-22 14:31:21 +0100163 .maxrewrite = MAXREWRITE,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100164 .chksize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Willy Tarreaua24adf02014-11-27 01:11:56 +0100165 .reserved_bufs = RESERVED_BUFS,
Willy Tarreauf3045d22015-04-29 16:24:50 +0200166 .pattern_cache = DEFAULT_PAT_LRU_SIZE,
Olivier Houchard88698d92019-04-16 19:07:22 +0200167 .pool_low_ratio = 20,
168 .pool_high_ratio = 25,
Christopher Faulet41ba36f2019-07-19 09:36:45 +0200169 .max_http_hdr = MAX_HTTP_HDR,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200170#ifdef USE_OPENSSL
Emeric Brun46635772012-11-14 11:32:56 +0100171 .sslcachesize = SSLCACHESIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200172#endif
William Lallemandf3747832012-11-09 12:33:10 +0100173 .comp_maxlevel = 1,
Willy Tarreau7e312732014-02-12 16:35:14 +0100174#ifdef DEFAULT_IDLE_TIMER
175 .idle_timer = DEFAULT_IDLE_TIMER,
176#else
177 .idle_timer = 1000, /* 1 second */
178#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200179 },
Emeric Brun76d88952012-10-05 15:47:31 +0200180#ifdef USE_OPENSSL
181#ifdef DEFAULT_MAXSSLCONN
Willy Tarreau403edff2012-09-06 11:58:37 +0200182 .maxsslconn = DEFAULT_MAXSSLCONN,
183#endif
Emeric Brun76d88952012-10-05 15:47:31 +0200184#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200185 /* others NULL OK */
186};
187
188/*********************************************************************/
189
190int stopping; /* non zero means stopping in progress */
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100191int killed; /* non zero means a hard-stop is triggered */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200192int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
William Lallemanda7199262018-11-16 16:57:20 +0100193int unstoppable_jobs = 0; /* number of active jobs that can't be stopped during a soft stop */
Willy Tarreau199ad242018-11-05 16:31:22 +0100194int active_peers = 0; /* number of active peers (connection attempts and connected) */
Willy Tarreau2d372c22018-11-05 17:12:27 +0100195int connected_peers = 0; /* number of connected peers (verified ones) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200196
197/* Here we store informations about the pids of the processes we may pause
198 * or kill. We will send them a signal every 10 ms until we can bind to all
199 * our ports. With 200 retries, that's about 2 seconds.
200 */
201#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200202static int *oldpids = NULL;
203static int oldpids_sig; /* use USR1 or TERM */
204
Olivier Houchardf73629d2017-04-05 22:33:04 +0200205/* Path to the unix socket we use to retrieve listener sockets from the old process */
206static const char *old_unixsocket;
207
William Lallemand85b0bd92017-06-01 17:38:53 +0200208static char *cur_unixsocket = NULL;
209
William Lallemandcb11fd22017-06-01 17:38:52 +0200210int atexit_flag = 0;
211
Willy Tarreaubb545b42010-08-25 12:58:59 +0200212int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200213const int zero = 0;
214const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200215const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200216
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100217char hostname[MAX_HOSTNAME_LEN];
Dragan Dosen4f014152020-06-18 16:56:47 +0200218char *localpeer = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200219
William Lallemand00417412020-06-05 14:08:41 +0200220static char **old_argv = NULL; /* previous argv but cleaned up */
William Lallemand73b85e72017-06-01 17:38:51 +0200221
William Lallemandbc193052018-09-11 10:06:26 +0200222struct list proc_list = LIST_HEAD_INIT(proc_list);
223
224int master = 0; /* 1 if in master, 0 if in child */
Willy Tarreaubf696402019-03-01 10:09:28 +0100225unsigned int rlim_fd_cur_at_boot = 0;
226unsigned int rlim_fd_max_at_boot = 0;
William Lallemandbc193052018-09-11 10:06:26 +0200227
Willy Tarreau6c3a6812020-03-06 18:57:15 +0100228/* per-boot randomness */
229unsigned char boot_seed[20]; /* per-boot random seed (160 bits initially) */
230
William Lallemand16dd1b32018-11-19 18:46:18 +0100231struct mworker_proc *proc_self = NULL;
William Lallemandbc193052018-09-11 10:06:26 +0200232
William Lallemandb3f2be32018-09-11 10:06:18 +0200233static void *run_thread_poll_loop(void *data);
234
Willy Tarreauff055502014-04-28 22:27:06 +0200235/* bitfield of a few warnings to emit just once (WARN_*) */
236unsigned int warned = 0;
237
William Lallemande7361152018-10-26 14:47:36 +0200238/* master CLI configuration (-S flag) */
239struct list mworker_cli_conf = LIST_HEAD_INIT(mworker_cli_conf);
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100240
241/* These are strings to be reported in the output of "haproxy -vv". They may
242 * either be constants (in which case must_free must be zero) or dynamically
243 * allocated strings to pass to free() on exit, and in this case must_free
244 * must be non-zero.
245 */
246struct list build_opts_list = LIST_HEAD_INIT(build_opts_list);
247struct build_opts_str {
248 struct list list;
249 const char *str;
250 int must_free;
251};
252
Willy Tarreaue6945732016-12-21 19:57:00 +0100253/* These functions are called just after the point where the program exits
254 * after a config validity check, so they are generally suited for resource
255 * allocation and slow initializations that should be skipped during basic
256 * config checks. The functions must return 0 on success, or a combination
257 * of ERR_* flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause
258 * and immediate exit, so the function must have emitted any useful error.
259 */
260struct list post_check_list = LIST_HEAD_INIT(post_check_list);
261struct post_check_fct {
262 struct list list;
263 int (*fct)();
264};
265
Christopher Fauletc1692962019-08-12 09:51:07 +0200266/* These functions are called for each proxy just after the config validity
267 * check. The functions must return 0 on success, or a combination of ERR_*
268 * flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause and immediate
269 * exit, so the function must have emitted any useful error.
270 */
271struct list post_proxy_check_list = LIST_HEAD_INIT(post_proxy_check_list);
272struct post_proxy_check_fct {
273 struct list list;
274 int (*fct)(struct proxy *);
275};
276
277/* These functions are called for each server just after the config validity
278 * check. The functions must return 0 on success, or a combination of ERR_*
279 * flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause and immediate
280 * exit, so the function must have emitted any useful error.
281 */
282struct list post_server_check_list = LIST_HEAD_INIT(post_server_check_list);
283struct post_server_check_fct {
284 struct list list;
285 int (*fct)(struct server *);
286};
287
Willy Tarreau082b6282019-05-22 14:42:12 +0200288/* These functions are called for each thread just after the thread creation
289 * and before running the init functions. They should be used to do per-thread
290 * (re-)allocations that are needed by subsequent functoins. They must return 0
291 * if an error occurred. */
292struct list per_thread_alloc_list = LIST_HEAD_INIT(per_thread_alloc_list);
293struct per_thread_alloc_fct {
Willy Tarreau05554e62016-12-21 20:46:26 +0100294 struct list list;
Willy Tarreau082b6282019-05-22 14:42:12 +0200295 int (*fct)();
Willy Tarreau05554e62016-12-21 20:46:26 +0100296};
297
Christopher Faulet415f6112017-07-25 16:52:58 +0200298/* These functions are called for each thread just after the thread creation
299 * and before running the scheduler. They should be used to do per-thread
300 * initializations. They must return 0 if an error occurred. */
301struct list per_thread_init_list = LIST_HEAD_INIT(per_thread_init_list);
302struct per_thread_init_fct {
303 struct list list;
304 int (*fct)();
305};
306
Willy Tarreau082b6282019-05-22 14:42:12 +0200307/* These functions are called when freeing the global sections at the end of
308 * deinit, after everything is stopped. They don't return anything. They should
309 * not release shared resources that are possibly used by other deinit
310 * functions, only close/release what is private. Use the per_thread_free_list
311 * to release shared resources.
312 */
313struct list post_deinit_list = LIST_HEAD_INIT(post_deinit_list);
314struct post_deinit_fct {
315 struct list list;
316 void (*fct)();
317};
318
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +0200319/* These functions are called when freeing a proxy during the deinit, after
320 * everything isg stopped. They don't return anything. They should not release
321 * the proxy itself or any shared resources that are possibly used by other
322 * deinit functions, only close/release what is private.
323 */
324struct list proxy_deinit_list = LIST_HEAD_INIT(proxy_deinit_list);
325struct proxy_deinit_fct {
326 struct list list;
327 void (*fct)(struct proxy *);
328};
329
330/* These functions are called when freeing a server during the deinit, after
331 * everything isg stopped. They don't return anything. They should not release
332 * the proxy itself or any shared resources that are possibly used by other
333 * deinit functions, only close/release what is private.
334 */
335struct list server_deinit_list = LIST_HEAD_INIT(server_deinit_list);
336struct server_deinit_fct {
337 struct list list;
338 void (*fct)(struct server *);
339};
340
Willy Tarreau082b6282019-05-22 14:42:12 +0200341/* These functions are called when freeing the global sections at the end of
342 * deinit, after the thread deinit functions, to release unneeded memory
343 * allocations. They don't return anything, and they work in best effort mode
344 * as their sole goal is to make valgrind mostly happy.
345 */
346struct list per_thread_free_list = LIST_HEAD_INIT(per_thread_free_list);
347struct per_thread_free_fct {
348 struct list list;
349 int (*fct)();
350};
351
Christopher Faulet415f6112017-07-25 16:52:58 +0200352/* These functions are called for each thread just after the scheduler loop and
353 * before exiting the thread. They don't return anything and, as for post-deinit
354 * functions, they work in best effort mode as their sole goal is to make
355 * valgrind mostly happy. */
356struct list per_thread_deinit_list = LIST_HEAD_INIT(per_thread_deinit_list);
357struct per_thread_deinit_fct {
358 struct list list;
359 void (*fct)();
360};
361
Willy Tarreaubaaee002006-06-26 02:48:02 +0200362/*********************************************************************/
363/* general purpose functions ***************************************/
364/*********************************************************************/
365
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100366/* used to register some build option strings at boot. Set must_free to
367 * non-zero if the string must be freed upon exit.
368 */
369void hap_register_build_opts(const char *str, int must_free)
370{
371 struct build_opts_str *b;
372
373 b = calloc(1, sizeof(*b));
374 if (!b) {
375 fprintf(stderr, "out of memory\n");
376 exit(1);
377 }
378 b->str = str;
379 b->must_free = must_free;
380 LIST_ADDQ(&build_opts_list, &b->list);
381}
382
Willy Tarreaue6945732016-12-21 19:57:00 +0100383/* used to register some initialization functions to call after the checks. */
384void hap_register_post_check(int (*fct)())
385{
386 struct post_check_fct *b;
387
388 b = calloc(1, sizeof(*b));
389 if (!b) {
390 fprintf(stderr, "out of memory\n");
391 exit(1);
392 }
393 b->fct = fct;
394 LIST_ADDQ(&post_check_list, &b->list);
395}
396
Christopher Fauletc1692962019-08-12 09:51:07 +0200397/* used to register some initialization functions to call for each proxy after
398 * the checks.
399 */
400void hap_register_post_proxy_check(int (*fct)(struct proxy *))
401{
402 struct post_proxy_check_fct *b;
403
404 b = calloc(1, sizeof(*b));
405 if (!b) {
406 fprintf(stderr, "out of memory\n");
407 exit(1);
408 }
409 b->fct = fct;
410 LIST_ADDQ(&post_proxy_check_list, &b->list);
411}
412
413/* used to register some initialization functions to call for each server after
414 * the checks.
415 */
416void hap_register_post_server_check(int (*fct)(struct server *))
417{
418 struct post_server_check_fct *b;
419
420 b = calloc(1, sizeof(*b));
421 if (!b) {
422 fprintf(stderr, "out of memory\n");
423 exit(1);
424 }
425 b->fct = fct;
426 LIST_ADDQ(&post_server_check_list, &b->list);
427}
428
Willy Tarreau05554e62016-12-21 20:46:26 +0100429/* used to register some de-initialization functions to call after everything
430 * has stopped.
431 */
432void hap_register_post_deinit(void (*fct)())
433{
434 struct post_deinit_fct *b;
435
436 b = calloc(1, sizeof(*b));
437 if (!b) {
438 fprintf(stderr, "out of memory\n");
439 exit(1);
440 }
441 b->fct = fct;
442 LIST_ADDQ(&post_deinit_list, &b->list);
443}
444
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +0200445/* used to register some per proxy de-initialization functions to call after
446 * everything has stopped.
447 */
448void hap_register_proxy_deinit(void (*fct)(struct proxy *))
449{
450 struct proxy_deinit_fct *b;
451
452 b = calloc(1, sizeof(*b));
453 if (!b) {
454 fprintf(stderr, "out of memory\n");
455 exit(1);
456 }
457 b->fct = fct;
458 LIST_ADDQ(&proxy_deinit_list, &b->list);
459}
460
461
462/* used to register some per server de-initialization functions to call after
463 * everything has stopped.
464 */
465void hap_register_server_deinit(void (*fct)(struct server *))
466{
467 struct server_deinit_fct *b;
468
469 b = calloc(1, sizeof(*b));
470 if (!b) {
471 fprintf(stderr, "out of memory\n");
472 exit(1);
473 }
474 b->fct = fct;
475 LIST_ADDQ(&server_deinit_list, &b->list);
476}
477
Willy Tarreau082b6282019-05-22 14:42:12 +0200478/* used to register some allocation functions to call for each thread. */
479void hap_register_per_thread_alloc(int (*fct)())
480{
481 struct per_thread_alloc_fct *b;
482
483 b = calloc(1, sizeof(*b));
484 if (!b) {
485 fprintf(stderr, "out of memory\n");
486 exit(1);
487 }
488 b->fct = fct;
489 LIST_ADDQ(&per_thread_alloc_list, &b->list);
490}
491
Christopher Faulet415f6112017-07-25 16:52:58 +0200492/* used to register some initialization functions to call for each thread. */
493void hap_register_per_thread_init(int (*fct)())
494{
495 struct per_thread_init_fct *b;
496
497 b = calloc(1, sizeof(*b));
498 if (!b) {
499 fprintf(stderr, "out of memory\n");
500 exit(1);
501 }
502 b->fct = fct;
503 LIST_ADDQ(&per_thread_init_list, &b->list);
504}
505
506/* used to register some de-initialization functions to call for each thread. */
507void hap_register_per_thread_deinit(void (*fct)())
508{
509 struct per_thread_deinit_fct *b;
510
511 b = calloc(1, sizeof(*b));
512 if (!b) {
513 fprintf(stderr, "out of memory\n");
514 exit(1);
515 }
516 b->fct = fct;
517 LIST_ADDQ(&per_thread_deinit_list, &b->list);
518}
519
Willy Tarreau082b6282019-05-22 14:42:12 +0200520/* used to register some free functions to call for each thread. */
521void hap_register_per_thread_free(int (*fct)())
522{
523 struct per_thread_free_fct *b;
524
525 b = calloc(1, sizeof(*b));
526 if (!b) {
527 fprintf(stderr, "out of memory\n");
528 exit(1);
529 }
530 b->fct = fct;
531 LIST_ADDQ(&per_thread_free_list, &b->list);
532}
533
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100534static void display_version()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200535{
Tim Duesterhusdfad6a42020-04-18 16:02:47 +0200536 struct utsname utsname;
537
Willy Tarreau08dd2022019-11-21 18:07:30 +0100538 printf("HA-Proxy version %s %s - https://haproxy.org/\n"
539 PRODUCT_STATUS "\n", haproxy_version, haproxy_date);
Willy Tarreau47479eb2019-11-21 18:48:20 +0100540
541 if (strlen(PRODUCT_URL_BUGS) > 0) {
542 char base_version[20];
543 int dots = 0;
544 char *del;
545
546 /* only retrieve the base version without distro-specific extensions */
547 for (del = haproxy_version; *del; del++) {
548 if (*del == '.')
549 dots++;
550 else if (*del < '0' || *del > '9')
551 break;
552 }
553
554 strlcpy2(base_version, haproxy_version, del - haproxy_version + 1);
555 if (dots < 2)
556 printf("Known bugs: https://github.com/haproxy/haproxy/issues?q=is:issue+is:open\n");
557 else
558 printf("Known bugs: " PRODUCT_URL_BUGS "\n", base_version);
559 }
Tim Duesterhusdfad6a42020-04-18 16:02:47 +0200560
561 if (uname(&utsname) == 0) {
562 printf("Running on: %s %s %s %s\n", utsname.sysname, utsname.release, utsname.version, utsname.machine);
563 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200564}
565
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100566static void display_build_opts()
Willy Tarreau7b066db2007-12-02 11:28:59 +0100567{
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100568 struct build_opts_str *item;
569
Willy Tarreau7b066db2007-12-02 11:28:59 +0100570 printf("Build options :"
571#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100572 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100573#endif
574#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100575 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100576#endif
577#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100578 "\n CC = " BUILD_CC
579#endif
580#ifdef BUILD_CFLAGS
581 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100582#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100583#ifdef BUILD_OPTIONS
584 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100585#endif
Willy Tarreau7728ed32019-03-27 13:20:08 +0100586#ifdef BUILD_FEATURES
587 "\n\nFeature list : " BUILD_FEATURES
588#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200589 "\n\nDefault settings :"
Willy Tarreauca783d42019-03-13 10:03:07 +0100590 "\n bufsize = %d, maxrewrite = %d, maxpollevents = %d"
Willy Tarreau27a674e2009-08-17 07:23:33 +0200591 "\n\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100592 BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200593
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100594 list_for_each_entry(item, &build_opts_list, list) {
595 puts(item->str);
596 }
597
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100598 putchar('\n');
599
Willy Tarreaube5b6852009-10-03 18:57:08 +0200600 list_pollers(stdout);
601 putchar('\n');
Christopher Faulet98d9fe22018-04-10 14:37:32 +0200602 list_mux_proto(stdout);
603 putchar('\n');
Willy Tarreau679bba12019-03-19 08:08:10 +0100604 list_services(stdout);
605 putchar('\n');
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100606 list_filters(stdout);
607 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100608}
609
Willy Tarreaubaaee002006-06-26 02:48:02 +0200610/*
611 * This function prints the command line usage and exits
612 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100613static void usage(char *name)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200614{
615 display_version();
616 fprintf(stderr,
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200617 "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200618 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreaua088d312015-10-08 11:58:48 +0200619 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100620 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200621 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200622 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200623 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200624 " -D goes daemon ; -C changes to <dir> before loading files.\n"
William Lallemand095ba4c2017-06-01 17:38:50 +0200625 " -W master-worker mode.\n"
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100626#if defined(USE_SYSTEMD)
627 " -Ws master-worker mode with systemd notify support.\n"
628#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200629 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200630 " -c check mode : only check config files and exit\n"
Willy Tarreauca783d42019-03-13 10:03:07 +0100631 " -n sets the maximum total # of connections (uses ulimit -n)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200632 " -m limits the usable amount of memory (in MB)\n"
633 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200634 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200635 " -p writes pids of all children to this file\n"
Willy Tarreaue5733232019-05-22 19:24:06 +0200636#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200637 " -de disables epoll() usage even when available\n"
638#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200639#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200640 " -dk disables kqueue() usage even when available\n"
641#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200642#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +0000643 " -dv disables event ports usage even when available\n"
644#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200645#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200646 " -dp disables poll() usage even when available\n"
647#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200648#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100649 " -dS disables splice usage (broken on old kernels)\n"
650#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200651#if defined(USE_GETADDRINFO)
652 " -dG disables getaddrinfo() usage\n"
653#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000654#if defined(SO_REUSEPORT)
655 " -dR disables SO_REUSEPORT usage\n"
656#endif
Willy Tarreau3eed10e2016-11-07 21:03:16 +0100657 " -dr ignores server address resolution failures\n"
Emeric Brun850efd52014-01-29 12:24:34 +0100658 " -dV disables SSL verify on servers side\n"
Willy Tarreau3eb10b82020-04-15 16:42:39 +0200659 " -dW fails if any warning is emitted\n"
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200660 " -sf/-st [pid ]* finishes/terminates old pids.\n"
Olivier Houchardf73629d2017-04-05 22:33:04 +0200661 " -x <unix_socket> get listening sockets from a unix socket\n"
William Lallemand63329e32019-06-13 17:03:37 +0200662 " -S <bind>[,<bind options>...] new master CLI\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200663 "\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100664 name, cfg_maxpconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200665 exit(1);
666}
667
668
669
670/*********************************************************************/
671/* more specific functions ***************************************/
672/*********************************************************************/
673
William Lallemand73b85e72017-06-01 17:38:51 +0200674/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
675 * pids the signal was correctly delivered to.
676 */
William Lallemande25473c2019-04-01 11:29:56 +0200677int tell_old_pids(int sig)
William Lallemand73b85e72017-06-01 17:38:51 +0200678{
679 int p;
680 int ret = 0;
681 for (p = 0; p < nb_oldpids; p++)
682 if (kill(oldpids[p], sig) == 0)
683 ret++;
684 return ret;
685}
686
William Lallemand75ea0a02017-11-15 19:02:58 +0100687/*
William Lallemand73b85e72017-06-01 17:38:51 +0200688 * remove a pid forom the olpid array and decrease nb_oldpids
689 * return 1 pid was found otherwise return 0
690 */
691
692int delete_oldpid(int pid)
693{
694 int i;
695
696 for (i = 0; i < nb_oldpids; i++) {
697 if (oldpids[i] == pid) {
698 oldpids[i] = oldpids[nb_oldpids - 1];
699 oldpids[nb_oldpids - 1] = 0;
700 nb_oldpids--;
701 return 1;
702 }
703 }
704 return 0;
705}
706
William Lallemand85b0bd92017-06-01 17:38:53 +0200707
708static void get_cur_unixsocket()
709{
710 /* if -x was used, try to update the stat socket if not available anymore */
711 if (global.stats_fe) {
712 struct bind_conf *bind_conf;
713
714 /* pass through all stats socket */
715 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
716 struct listener *l;
717
718 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
719
720 if (l->addr.ss_family == AF_UNIX &&
721 (bind_conf->level & ACCESS_FD_LISTENERS)) {
722 const struct sockaddr_un *un;
723
724 un = (struct sockaddr_un *)&l->addr;
725 /* priority to old_unixsocket */
726 if (!cur_unixsocket) {
727 cur_unixsocket = strdup(un->sun_path);
728 } else {
729 if (old_unixsocket && !strcmp(un->sun_path, old_unixsocket)) {
730 free(cur_unixsocket);
731 cur_unixsocket = strdup(old_unixsocket);
732 return;
733 }
734 }
735 }
736 }
737 }
738 }
739 if (!cur_unixsocket && old_unixsocket)
740 cur_unixsocket = strdup(old_unixsocket);
741}
742
William Lallemand73b85e72017-06-01 17:38:51 +0200743/*
744 * When called, this function reexec haproxy with -sf followed by current
Joseph Herlant03420902018-11-15 10:41:50 -0800745 * children PIDs and possibly old children PIDs if they didn't leave yet.
William Lallemand73b85e72017-06-01 17:38:51 +0200746 */
William Lallemanda57b7e32018-12-14 21:11:31 +0100747void mworker_reload()
William Lallemand73b85e72017-06-01 17:38:51 +0200748{
William Lallemand00417412020-06-05 14:08:41 +0200749 char **next_argv = NULL;
750 int old_argc = 0; /* previous number of argument */
William Lallemand73b85e72017-06-01 17:38:51 +0200751 int next_argc = 0;
William Lallemand00417412020-06-05 14:08:41 +0200752 int i = 0;
William Lallemand73b85e72017-06-01 17:38:51 +0200753 char *msg = NULL;
Willy Tarreau8dca1952019-03-01 10:21:55 +0100754 struct rlimit limit;
William Lallemand7c756a82018-11-26 11:53:40 +0100755 struct per_thread_deinit_fct *ptdf;
William Lallemand73b85e72017-06-01 17:38:51 +0200756
757 mworker_block_signals();
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100758#if defined(USE_SYSTEMD)
759 if (global.tune.options & GTUNE_USE_SYSTEMD)
760 sd_notify(0, "RELOADING=1");
761#endif
William Lallemand73b85e72017-06-01 17:38:51 +0200762 setenv("HAPROXY_MWORKER_REEXEC", "1", 1);
763
William Lallemandbc193052018-09-11 10:06:26 +0200764 mworker_proc_list_to_env(); /* put the children description in the env */
765
William Lallemand7c756a82018-11-26 11:53:40 +0100766 /* during the reload we must ensure that every FDs that can't be
767 * reuse (ie those that are not referenced in the proc_list)
768 * are closed or they will leak. */
769
770 /* close the listeners FD */
771 mworker_cli_proxy_stop();
William Lallemand16866672019-06-24 17:40:48 +0200772
773 if (getenv("HAPROXY_MWORKER_WAIT_ONLY") == NULL) {
774 /* close the poller FD and the thread waker pipe FD */
775 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
776 ptdf->fct();
777 if (fdtab)
778 deinit_pollers();
779 }
Willy Tarreau5db847a2019-05-09 14:13:35 +0200780#if defined(USE_OPENSSL) && (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
William Lallemand5fdb5b32019-10-15 14:04:08 +0200781 /* close random device FDs */
782 RAND_keep_random_devices_open(0);
Rob Allen56996da2019-05-03 09:11:32 +0100783#endif
William Lallemand7c756a82018-11-26 11:53:40 +0100784
Willy Tarreau8dca1952019-03-01 10:21:55 +0100785 /* restore the initial FD limits */
786 limit.rlim_cur = rlim_fd_cur_at_boot;
787 limit.rlim_max = rlim_fd_max_at_boot;
788 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
789 getrlimit(RLIMIT_NOFILE, &limit);
790 ha_warning("Failed to restore initial FD limits (cur=%u max=%u), using cur=%u max=%u\n",
791 rlim_fd_cur_at_boot, rlim_fd_max_at_boot,
792 (unsigned int)limit.rlim_cur, (unsigned int)limit.rlim_max);
793 }
794
William Lallemand73b85e72017-06-01 17:38:51 +0200795 /* compute length */
William Lallemand00417412020-06-05 14:08:41 +0200796 while (old_argv[old_argc])
797 old_argc++;
William Lallemand73b85e72017-06-01 17:38:51 +0200798
William Lallemand85b0bd92017-06-01 17:38:53 +0200799 /* 1 for haproxy -sf, 2 for -x /socket */
William Lallemand00417412020-06-05 14:08:41 +0200800 next_argv = calloc(old_argc + 1 + 2 + mworker_child_nb() + nb_oldpids + 1, sizeof(char *));
William Lallemand73b85e72017-06-01 17:38:51 +0200801 if (next_argv == NULL)
802 goto alloc_error;
803
William Lallemand00417412020-06-05 14:08:41 +0200804 /* copy the program name */
805 next_argv[next_argc++] = old_argv[0];
806
807 /* insert the new options just after argv[0] in case we have a -- */
808
William Lallemand73b85e72017-06-01 17:38:51 +0200809 /* add -sf <PID>* to argv */
William Lallemand3f128872019-04-01 11:29:59 +0200810 if (mworker_child_nb() > 0) {
811 struct mworker_proc *child;
812
William Lallemand73b85e72017-06-01 17:38:51 +0200813 next_argv[next_argc++] = "-sf";
William Lallemand3f128872019-04-01 11:29:59 +0200814
815 list_for_each_entry(child, &proc_list, list) {
William Lallemand677e2f22019-11-19 17:04:18 +0100816 if (!(child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) || child->pid <= -1 )
William Lallemand3f128872019-04-01 11:29:59 +0200817 continue;
William Lallemand00417412020-06-05 14:08:41 +0200818 if ((next_argv[next_argc++] = memprintf(&msg, "%d", child->pid)) == NULL)
William Lallemand73b85e72017-06-01 17:38:51 +0200819 goto alloc_error;
820 msg = NULL;
821 }
822 }
William Lallemand2bf6d622017-06-20 11:20:23 +0200823 /* add the -x option with the stat socket */
William Lallemand85b0bd92017-06-01 17:38:53 +0200824 if (cur_unixsocket) {
William Lallemand2bf6d622017-06-20 11:20:23 +0200825 next_argv[next_argc++] = "-x";
826 next_argv[next_argc++] = (char *)cur_unixsocket;
William Lallemand85b0bd92017-06-01 17:38:53 +0200827 }
828
William Lallemand00417412020-06-05 14:08:41 +0200829 /* copy the previous options */
830 for (i = 1; i < old_argc; i++)
831 next_argv[next_argc++] = old_argv[i];
832
Christopher Faulet767a84b2017-11-24 16:50:31 +0100833 ha_warning("Reexecuting Master process\n");
Willy Tarreaue0d86e22019-08-26 10:37:39 +0200834 signal(SIGPROF, SIG_IGN);
Tim Duesterhus0436ab72017-11-12 17:39:18 +0100835 execvp(next_argv[0], next_argv);
William Lallemand73b85e72017-06-01 17:38:51 +0200836
Christopher Faulet767a84b2017-11-24 16:50:31 +0100837 ha_warning("Failed to reexecute the master process [%d]: %s\n", pid, strerror(errno));
William Lallemand9fc6c972020-06-08 10:01:13 +0200838 free(next_argv);
839 next_argv = NULL;
William Lallemand722d4ca2017-11-15 19:02:55 +0100840 return;
841
William Lallemand73b85e72017-06-01 17:38:51 +0200842alloc_error:
William Lallemand00417412020-06-05 14:08:41 +0200843 free(next_argv);
844 next_argv = NULL;
Joseph Herlant07a08342018-11-15 10:43:05 -0800845 ha_warning("Failed to reexecute the master process [%d]: Cannot allocate memory\n", pid);
William Lallemand73b85e72017-06-01 17:38:51 +0200846 return;
847}
848
William Lallemandb3f2be32018-09-11 10:06:18 +0200849static void mworker_loop()
850{
851
852#if defined(USE_SYSTEMD)
853 if (global.tune.options & GTUNE_USE_SYSTEMD)
854 sd_notifyf(0, "READY=1\nMAINPID=%lu", (unsigned long)getpid());
855#endif
Willy Tarreaud83b6c12019-04-18 11:31:36 +0200856 /* Busy polling makes no sense in the master :-) */
857 global.tune.options &= ~GTUNE_BUSY_POLLING;
William Lallemandb3f2be32018-09-11 10:06:18 +0200858
William Lallemandbc193052018-09-11 10:06:26 +0200859 master = 1;
860
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100861 signal_unregister(SIGTTIN);
862 signal_unregister(SIGTTOU);
William Lallemand0564d412018-11-20 17:36:53 +0100863 signal_unregister(SIGUSR1);
864 signal_unregister(SIGHUP);
865 signal_unregister(SIGQUIT);
866
William Lallemandb3f2be32018-09-11 10:06:18 +0200867 signal_register_fct(SIGTERM, mworker_catch_sigterm, SIGTERM);
868 signal_register_fct(SIGUSR1, mworker_catch_sigterm, SIGUSR1);
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100869 signal_register_fct(SIGTTIN, mworker_broadcast_signal, SIGTTIN);
870 signal_register_fct(SIGTTOU, mworker_broadcast_signal, SIGTTOU);
William Lallemandb3f2be32018-09-11 10:06:18 +0200871 signal_register_fct(SIGINT, mworker_catch_sigterm, SIGINT);
872 signal_register_fct(SIGHUP, mworker_catch_sighup, SIGHUP);
873 signal_register_fct(SIGUSR2, mworker_catch_sighup, SIGUSR2);
874 signal_register_fct(SIGCHLD, mworker_catch_sigchld, SIGCHLD);
875
876 mworker_unblock_signals();
877 mworker_cleanlisteners();
William Lallemand27f3fa52018-12-06 14:05:20 +0100878 mworker_cleantasks();
William Lallemandb3f2be32018-09-11 10:06:18 +0200879
William Lallemandbc193052018-09-11 10:06:26 +0200880 mworker_catch_sigchld(NULL); /* ensure we clean the children in case
881 some SIGCHLD were lost */
882
William Lallemandb3f2be32018-09-11 10:06:18 +0200883 global.nbthread = 1;
884 relative_pid = 1;
885 pid_bit = 1;
Willy Tarreaua38a7172019-02-02 17:11:28 +0100886 all_proc_mask = 1;
William Lallemandb3f2be32018-09-11 10:06:18 +0200887
William Lallemand2672eb92018-12-14 15:52:39 +0100888#ifdef USE_THREAD
889 tid_bit = 1;
890 all_threads_mask = 1;
891#endif
892
William Lallemandb3f2be32018-09-11 10:06:18 +0200893 jobs++; /* this is the "master" job, we want to take care of the
894 signals even if there is no listener so the poll loop don't
895 leave */
896
897 fork_poller();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +0200898 run_thread_poll_loop(0);
William Lallemandb3f2be32018-09-11 10:06:18 +0200899}
William Lallemandcb11fd22017-06-01 17:38:52 +0200900
901/*
902 * Reexec the process in failure mode, instead of exiting
903 */
904void reexec_on_failure()
905{
906 if (!atexit_flag)
907 return;
908
909 setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1);
910
Christopher Faulet767a84b2017-11-24 16:50:31 +0100911 ha_warning("Reexecuting Master process in waitpid mode\n");
William Lallemandcb11fd22017-06-01 17:38:52 +0200912 mworker_reload();
William Lallemandcb11fd22017-06-01 17:38:52 +0200913}
William Lallemand73b85e72017-06-01 17:38:51 +0200914
915
916/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200917 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
918 * a signal zero to all subscribers. This means that it's as easy as
919 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200920 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100921static void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200922{
923 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200924 signal_unregister_handler(sh);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100925 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200926}
927
928/*
929 * upon SIGTTOU, we pause everything
930 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100931static void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200932{
933 pause_proxies();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100934 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200935}
936
937/*
938 * upon SIGTTIN, let's have a soft stop.
939 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100940static void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200941{
Willy Tarreaube58c382011-07-24 18:28:10 +0200942 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200943}
944
945/*
946 * this function dumps every server's state when the process receives SIGHUP.
947 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100948static void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200949{
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100950 struct proxy *p = proxies_list;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200951
Christopher Faulet767a84b2017-11-24 16:50:31 +0100952 ha_warning("SIGHUP received, dumping servers states.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200953 while (p) {
954 struct server *s = p->srv;
955
956 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
957 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100958 chunk_printf(&trash,
959 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
960 p->id, s->id,
Emeric Brun52a91d32017-08-31 14:41:55 +0200961 (s->cur_state != SRV_ST_STOPPED) ? "UP" : "DOWN",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100962 s->cur_sess, s->nbpend, s->counters.cum_sess);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200963 ha_warning("%s\n", trash.area);
964 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200965 s = s->next;
966 }
967
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200968 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
969 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100970 chunk_printf(&trash,
971 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
972 p->id,
973 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 +0200974 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100975 chunk_printf(&trash,
976 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
977 p->id,
978 (p->srv_bck) ? "is running on backup servers" : "has no server available",
979 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 +0200980 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100981 chunk_printf(&trash,
982 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
983 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
984 p->id, p->srv_act, p->srv_bck,
985 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 +0200986 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200987 ha_warning("%s\n", trash.area);
988 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200989
990 p = p->next;
991 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200992}
993
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100994static void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200995{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200996 /* dump memory usage then free everything possible */
997 dump_pools();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100998 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200999}
1000
William Lallemande1340412017-12-28 16:09:36 +01001001/*
1002 * This function dup2 the stdio FDs (0,1,2) with <fd>, then closes <fd>
1003 * If <fd> < 0, it opens /dev/null and use it to dup
1004 *
1005 * In the case of chrooting, you have to open /dev/null before the chroot, and
1006 * pass the <fd> to this function
1007 */
1008static void stdio_quiet(int fd)
1009{
1010 if (fd < 0)
1011 fd = open("/dev/null", O_RDWR, 0);
1012
1013 if (fd > -1) {
1014 fclose(stdin);
1015 fclose(stdout);
1016 fclose(stderr);
1017
1018 dup2(fd, 0);
1019 dup2(fd, 1);
1020 dup2(fd, 2);
1021 if (fd > 2)
1022 close(fd);
1023 return;
1024 }
1025
1026 ha_alert("Cannot open /dev/null\n");
1027 exit(EXIT_FAILURE);
1028}
1029
1030
Joseph Herlant03420902018-11-15 10:41:50 -08001031/* This function checks if cfg_cfgfiles contains directories.
1032 * If it finds one, it adds all the files (and only files) it contains
1033 * in cfg_cfgfiles in place of the directory (and removes the directory).
1034 * It adds the files in lexical order.
1035 * It adds only files with .cfg extension.
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001036 * It doesn't add files with name starting with '.'
1037 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001038static void cfgfiles_expand_directories(void)
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001039{
1040 struct wordlist *wl, *wlb;
1041 char *err = NULL;
1042
1043 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
1044 struct stat file_stat;
1045 struct dirent **dir_entries = NULL;
1046 int dir_entries_nb;
1047 int dir_entries_it;
1048
1049 if (stat(wl->s, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001050 ha_alert("Cannot open configuration file/directory %s : %s\n",
1051 wl->s,
1052 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001053 exit(1);
1054 }
1055
1056 if (!S_ISDIR(file_stat.st_mode))
1057 continue;
1058
1059 /* from this point wl->s is a directory */
1060
1061 dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort);
1062 if (dir_entries_nb < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001063 ha_alert("Cannot open configuration directory %s : %s\n",
1064 wl->s,
1065 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001066 exit(1);
1067 }
1068
1069 /* for each element in the directory wl->s */
1070 for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) {
1071 struct dirent *dir_entry = dir_entries[dir_entries_it];
1072 char *filename = NULL;
1073 char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg");
1074
1075 /* don't add filename that begin with .
Joseph Herlant03420902018-11-15 10:41:50 -08001076 * only add filename with .cfg extension
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001077 */
1078 if (dir_entry->d_name[0] == '.' ||
1079 !(d_name_cfgext && d_name_cfgext[4] == '\0'))
1080 goto next_dir_entry;
1081
1082 if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001083 ha_alert("Cannot load configuration files %s : out of memory.\n",
1084 filename);
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001085 exit(1);
1086 }
1087
1088 if (stat(filename, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001089 ha_alert("Cannot open configuration file %s : %s\n",
1090 wl->s,
1091 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001092 exit(1);
1093 }
1094
1095 /* don't add anything else than regular file in cfg_cfgfiles
1096 * this way we avoid loops
1097 */
1098 if (!S_ISREG(file_stat.st_mode))
1099 goto next_dir_entry;
1100
1101 if (!list_append_word(&wl->list, filename, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001102 ha_alert("Cannot load configuration files %s : %s\n",
1103 filename,
1104 err);
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001105 exit(1);
1106 }
1107
1108next_dir_entry:
1109 free(filename);
1110 free(dir_entry);
1111 }
1112
1113 free(dir_entries);
1114
1115 /* remove the current directory (wl) from cfg_cfgfiles */
1116 free(wl->s);
1117 LIST_DEL(&wl->list);
1118 free(wl);
1119 }
1120
1121 free(err);
1122}
1123
Olivier Houchardf73629d2017-04-05 22:33:04 +02001124static int get_old_sockets(const char *unixsocket)
1125{
1126 char *cmsgbuf = NULL, *tmpbuf = NULL;
1127 int *tmpfd = NULL;
1128 struct sockaddr_un addr;
1129 struct cmsghdr *cmsg;
1130 struct msghdr msghdr;
1131 struct iovec iov;
1132 struct xfer_sock_list *xfer_sock = NULL;
Olivier Houchard54740872017-04-06 14:45:14 +02001133 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Olivier Houchardf73629d2017-04-05 22:33:04 +02001134 int sock = -1;
1135 int ret = -1;
1136 int ret2 = -1;
1137 int fd_nb;
1138 int got_fd = 0;
1139 int i = 0;
1140 size_t maxoff = 0, curoff = 0;
1141
1142 memset(&msghdr, 0, sizeof(msghdr));
1143 cmsgbuf = malloc(CMSG_SPACE(sizeof(int)) * MAX_SEND_FD);
1144 if (!cmsgbuf) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001145 ha_warning("Failed to allocate memory to send sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001146 goto out;
1147 }
1148 sock = socket(PF_UNIX, SOCK_STREAM, 0);
1149 if (sock < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001150 ha_warning("Failed to connect to the old process socket '%s'\n",
1151 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001152 goto out;
1153 }
Willy Tarreau719e07c2019-12-11 16:29:10 +01001154 strncpy(addr.sun_path, unixsocket, sizeof(addr.sun_path) - 1);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001155 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
1156 addr.sun_family = PF_UNIX;
1157 ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr));
1158 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001159 ha_warning("Failed to connect to the old process socket '%s'\n",
1160 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001161 goto out;
1162 }
Olivier Houchard54740872017-04-06 14:45:14 +02001163 setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001164 iov.iov_base = &fd_nb;
1165 iov.iov_len = sizeof(fd_nb);
1166 msghdr.msg_iov = &iov;
1167 msghdr.msg_iovlen = 1;
1168 send(sock, "_getsocks\n", strlen("_getsocks\n"), 0);
1169 /* First, get the number of file descriptors to be received */
1170 if (recvmsg(sock, &msghdr, MSG_WAITALL) != sizeof(fd_nb)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001171 ha_warning("Failed to get the number of sockets to be transferred !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001172 goto out;
1173 }
1174 if (fd_nb == 0) {
1175 ret = 0;
1176 goto out;
1177 }
Olivier Houchardf143b802017-11-04 15:13:01 +01001178 tmpbuf = malloc(fd_nb * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001179 if (tmpbuf == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001180 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001181 goto out;
1182 }
1183 tmpfd = malloc(fd_nb * sizeof(int));
1184 if (tmpfd == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001185 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001186 goto out;
1187 }
1188 msghdr.msg_control = cmsgbuf;
1189 msghdr.msg_controllen = CMSG_SPACE(sizeof(int)) * MAX_SEND_FD;
Olivier Houchardf143b802017-11-04 15:13:01 +01001190 iov.iov_len = MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001191 do {
1192 int ret3;
1193
1194 iov.iov_base = tmpbuf + curoff;
1195 ret = recvmsg(sock, &msghdr, 0);
1196 if (ret == -1 && errno == EINTR)
1197 continue;
1198 if (ret <= 0)
1199 break;
1200 /* Send an ack to let the sender know we got the sockets
1201 * and it can send some more
1202 */
1203 do {
1204 ret3 = send(sock, &got_fd, sizeof(got_fd), 0);
1205 } while (ret3 == -1 && errno == EINTR);
1206 for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg != NULL;
1207 cmsg = CMSG_NXTHDR(&msghdr, cmsg)) {
1208 if (cmsg->cmsg_level == SOL_SOCKET &&
1209 cmsg->cmsg_type == SCM_RIGHTS) {
1210 size_t totlen = cmsg->cmsg_len -
1211 CMSG_LEN(0);
1212 if (totlen / sizeof(int) + got_fd > fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001213 ha_warning("Got to many sockets !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001214 goto out;
1215 }
1216 /*
1217 * Be paranoid and use memcpy() to avoid any
1218 * potential alignement issue.
1219 */
1220 memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen);
1221 got_fd += totlen / sizeof(int);
1222 }
1223 }
1224 curoff += ret;
1225 } while (got_fd < fd_nb);
1226
1227 if (got_fd != fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001228 ha_warning("We didn't get the expected number of sockets (expecting %d got %d)\n",
1229 fd_nb, got_fd);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001230 goto out;
1231 }
1232 maxoff = curoff;
1233 curoff = 0;
1234 for (i = 0; i < got_fd; i++) {
1235 int fd = tmpfd[i];
1236 socklen_t socklen;
1237 int len;
1238
1239 xfer_sock = calloc(1, sizeof(*xfer_sock));
1240 if (!xfer_sock) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001241 ha_warning("Failed to allocate memory in get_old_sockets() !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001242 break;
1243 }
1244 xfer_sock->fd = -1;
1245
1246 socklen = sizeof(xfer_sock->addr);
1247 if (getsockname(fd, (struct sockaddr *)&xfer_sock->addr, &socklen) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001248 ha_warning("Failed to get socket address\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001249 free(xfer_sock);
Olivier Houchardbe7b1ce2017-07-17 17:25:33 +02001250 xfer_sock = NULL;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001251 continue;
1252 }
1253 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001254 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001255 goto out;
1256 }
1257 len = tmpbuf[curoff++];
1258 if (len > 0) {
1259 /* We have a namespace */
1260 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001261 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001262 goto out;
1263 }
1264 xfer_sock->namespace = malloc(len + 1);
1265 if (!xfer_sock->namespace) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001266 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001267 goto out;
1268 }
1269 memcpy(xfer_sock->namespace, &tmpbuf[curoff], len);
1270 xfer_sock->namespace[len] = 0;
1271 curoff += len;
1272 }
1273 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001274 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001275 goto out;
1276 }
1277 len = tmpbuf[curoff++];
1278 if (len > 0) {
1279 /* We have an interface */
1280 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001281 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001282 goto out;
1283 }
1284 xfer_sock->iface = malloc(len + 1);
1285 if (!xfer_sock->iface) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001286 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001287 goto out;
1288 }
1289 memcpy(xfer_sock->iface, &tmpbuf[curoff], len);
Olivier Houchard33e083c2018-03-15 17:48:49 +01001290 xfer_sock->iface[len] = 0;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001291 curoff += len;
1292 }
1293 if (curoff + sizeof(int) > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001294 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001295 goto out;
1296 }
1297 memcpy(&xfer_sock->options, &tmpbuf[curoff],
1298 sizeof(xfer_sock->options));
1299 curoff += sizeof(xfer_sock->options);
1300
1301 xfer_sock->fd = fd;
1302 if (xfer_sock_list)
1303 xfer_sock_list->prev = xfer_sock;
1304 xfer_sock->next = xfer_sock_list;
1305 xfer_sock->prev = NULL;
1306 xfer_sock_list = xfer_sock;
1307 xfer_sock = NULL;
1308 }
1309
1310 ret2 = 0;
1311out:
1312 /* If we failed midway make sure to close the remaining
1313 * file descriptors
1314 */
1315 if (tmpfd != NULL && i < got_fd) {
1316 for (; i < got_fd; i++) {
1317 close(tmpfd[i]);
1318 }
1319 }
1320 free(tmpbuf);
1321 free(tmpfd);
1322 free(cmsgbuf);
1323 if (sock != -1)
1324 close(sock);
1325 if (xfer_sock) {
1326 free(xfer_sock->namespace);
1327 free(xfer_sock->iface);
1328 if (xfer_sock->fd != -1)
1329 close(xfer_sock->fd);
1330 free(xfer_sock);
1331 }
1332 return (ret2);
1333}
1334
Willy Tarreaubaaee002006-06-26 02:48:02 +02001335/*
William Lallemand73b85e72017-06-01 17:38:51 +02001336 * copy and cleanup the current argv
William Lallemanddf6c5a82020-06-04 17:40:23 +02001337 * Remove the -sf /-st / -x parameters
William Lallemand73b85e72017-06-01 17:38:51 +02001338 * Return an allocated copy of argv
1339 */
1340
1341static char **copy_argv(int argc, char **argv)
1342{
William Lallemanddf6c5a82020-06-04 17:40:23 +02001343 char **newargv, **retargv;
William Lallemand73b85e72017-06-01 17:38:51 +02001344
1345 newargv = calloc(argc + 2, sizeof(char *));
1346 if (newargv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001347 ha_warning("Cannot allocate memory\n");
William Lallemand73b85e72017-06-01 17:38:51 +02001348 return NULL;
1349 }
William Lallemanddf6c5a82020-06-04 17:40:23 +02001350 retargv = newargv;
William Lallemand73b85e72017-06-01 17:38:51 +02001351
William Lallemanddf6c5a82020-06-04 17:40:23 +02001352 /* first copy argv[0] */
1353 *newargv++ = *argv++;
1354 argc--;
1355
1356 while (argc > 0) {
1357 if (**argv != '-') {
1358 /* non options are copied but will fail in the argument parser */
1359 *newargv++ = *argv++;
1360 argc--;
1361
1362 } else {
1363 char *flag;
1364
1365 flag = *argv + 1;
1366
1367 if (flag[0] == '-' && flag[1] == 0) {
1368 /* "--\0" copy every arguments till the end of argv */
1369 *newargv++ = *argv++;
1370 argc--;
1371
1372 while (argc > 0) {
1373 *newargv++ = *argv++;
1374 argc--;
1375 }
1376 } else {
1377 switch (*flag) {
1378 case 's':
1379 /* -sf / -st and their parameters are ignored */
1380 if (flag[1] == 'f' || flag[1] == 't') {
1381 argc--;
1382 argv++;
1383 /* The list can't contain a negative value since the only
1384 way to know the end of this list is by looking for the
1385 next option or the end of the options */
1386 while (argc > 0 && argv[0][0] != '-') {
1387 argc--;
1388 argv++;
1389 }
1390 }
1391 break;
1392
1393 case 'x':
1394 /* this option and its parameter are ignored */
1395 argc--;
1396 argv++;
1397 if (argc > 0) {
1398 argc--;
1399 argv++;
1400 }
1401 break;
1402
1403 case 'C':
1404 case 'n':
1405 case 'm':
1406 case 'N':
1407 case 'L':
1408 case 'f':
1409 case 'p':
1410 case 'S':
1411 /* these options have only 1 parameter which must be copied and can start with a '-' */
1412 *newargv++ = *argv++;
1413 argc--;
1414 if (argc == 0)
1415 goto error;
1416 *newargv++ = *argv++;
1417 argc--;
1418 break;
1419 default:
1420 /* for other options just copy them without parameters, this is also done
1421 * for options like "--foo", but this will fail in the argument parser.
1422 * */
1423 *newargv++ = *argv++;
1424 argc--;
1425 break;
1426 }
William Lallemand73b85e72017-06-01 17:38:51 +02001427 }
1428 }
William Lallemand73b85e72017-06-01 17:38:51 +02001429 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001430
William Lallemanddf6c5a82020-06-04 17:40:23 +02001431 return retargv;
1432
1433error:
1434 free(retargv);
1435 return NULL;
William Lallemand73b85e72017-06-01 17:38:51 +02001436}
1437
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001438
1439/* Performs basic random seed initialization. The main issue with this is that
1440 * srandom_r() only takes 32 bits and purposely provides a reproducible sequence,
1441 * which means that there will only be 4 billion possible random sequences once
1442 * srandom() is called, regardless of the internal state. Not calling it is
1443 * even worse as we'll always produce the same randoms sequences. What we do
1444 * here is to create an initial sequence from various entropy sources, hash it
1445 * using SHA1 and keep the resulting 160 bits available globally.
1446 *
1447 * We initialize the current process with the first 32 bits before starting the
1448 * polling loop, where all this will be changed to have process specific and
1449 * thread specific sequences.
Willy Tarreau52bf8392020-03-08 00:42:37 +01001450 *
1451 * Before starting threads, it's still possible to call random() as srandom()
1452 * is initialized from this, but after threads and/or processes are started,
1453 * only ha_random() is expected to be used to guarantee distinct sequences.
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001454 */
1455static void ha_random_boot(char *const *argv)
1456{
1457 unsigned char message[256];
1458 unsigned char *m = message;
1459 struct timeval tv;
1460 blk_SHA_CTX ctx;
1461 unsigned long l;
1462 int fd;
1463 int i;
1464
1465 /* start with current time as pseudo-random seed */
1466 gettimeofday(&tv, NULL);
1467 write_u32(m, tv.tv_sec); m += 4;
1468 write_u32(m, tv.tv_usec); m += 4;
1469
1470 /* PID and PPID add some OS-based randomness */
1471 write_u16(m, getpid()); m += 2;
1472 write_u16(m, getppid()); m += 2;
1473
1474 /* take up to 160 bits bytes from /dev/urandom if available (non-blocking) */
1475 fd = open("/dev/urandom", O_RDONLY);
1476 if (fd >= 0) {
1477 i = read(fd, m, 20);
1478 if (i > 0)
1479 m += i;
1480 close(fd);
1481 }
1482
1483 /* take up to 160 bits bytes from openssl (non-blocking) */
1484#ifdef USE_OPENSSL
1485 if (RAND_bytes(m, 20) == 1)
1486 m += 20;
1487#endif
1488
1489 /* take 160 bits from existing random in case it was already initialized */
1490 for (i = 0; i < 5; i++) {
1491 write_u32(m, random());
1492 m += 4;
1493 }
1494
1495 /* stack address (benefit form operating system's ASLR) */
1496 l = (unsigned long)&m;
1497 memcpy(m, &l, sizeof(l)); m += sizeof(l);
1498
1499 /* argv address (benefit form operating system's ASLR) */
1500 l = (unsigned long)&argv;
1501 memcpy(m, &l, sizeof(l)); m += sizeof(l);
1502
1503 /* use tv_usec again after all the operations above */
1504 gettimeofday(&tv, NULL);
1505 write_u32(m, tv.tv_usec); m += 4;
1506
1507 /*
1508 * At this point, ~84-92 bytes have been used
1509 */
1510
1511 /* finish with the hostname */
1512 strncpy((char *)m, hostname, message + sizeof(message) - m);
1513 m += strlen(hostname);
1514
1515 /* total message length */
1516 l = m - message;
1517
1518 memset(&ctx, 0, sizeof(ctx));
1519 blk_SHA1_Init(&ctx);
1520 blk_SHA1_Update(&ctx, message, l);
1521 blk_SHA1_Final(boot_seed, &ctx);
1522
1523 srandom(read_u32(boot_seed));
Willy Tarreau52bf8392020-03-08 00:42:37 +01001524 ha_random_seed(boot_seed, sizeof(boot_seed));
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001525}
1526
Willy Tarreau5a023f02019-03-01 14:19:31 +01001527/* considers splicing proxies' maxconn, computes the ideal global.maxpipes
1528 * setting, and returns it. It may return -1 meaning "unlimited" if some
1529 * unlimited proxies have been found and the global.maxconn value is not yet
1530 * set. It may also return a value greater than maxconn if it's not yet set.
1531 * Note that a value of zero means there is no need for pipes. -1 is never
1532 * returned if global.maxconn is valid.
1533 */
1534static int compute_ideal_maxpipes()
1535{
1536 struct proxy *cur;
1537 int nbfe = 0, nbbe = 0;
1538 int unlimited = 0;
1539 int pipes;
1540 int max;
1541
1542 for (cur = proxies_list; cur; cur = cur->next) {
1543 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
1544 if (cur->cap & PR_CAP_FE) {
1545 max = cur->maxconn;
1546 nbfe += max;
1547 if (!max) {
1548 unlimited = 1;
1549 break;
1550 }
1551 }
1552 if (cur->cap & PR_CAP_BE) {
1553 max = cur->fullconn ? cur->fullconn : global.maxconn;
1554 nbbe += max;
1555 if (!max) {
1556 unlimited = 1;
1557 break;
1558 }
1559 }
1560 }
1561 }
1562
1563 pipes = MAX(nbfe, nbbe);
1564 if (global.maxconn) {
1565 if (pipes > global.maxconn || unlimited)
1566 pipes = global.maxconn;
1567 } else if (unlimited) {
1568 pipes = -1;
1569 }
1570
1571 return pipes >= 4 ? pipes / 4 : pipes;
1572}
1573
Willy Tarreauac350932019-03-01 15:43:14 +01001574/* considers global.maxsocks, global.maxpipes, async engines, SSL frontends and
1575 * rlimits and computes an ideal maxconn. It's meant to be called only when
1576 * maxsock contains the sum of listening FDs, before it is updated based on
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001577 * maxconn and pipes. If there are not enough FDs left, DEFAULT_MAXCONN (by
1578 * default 100) is returned as it is expected that it will even run on tight
1579 * environments, and will maintain compatibility with previous packages that
1580 * used to rely on this value as the default one. The system will emit a
1581 * warning indicating how many FDs are missing anyway if needed.
Willy Tarreauac350932019-03-01 15:43:14 +01001582 */
1583static int compute_ideal_maxconn()
1584{
1585 int ssl_sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1586 int engine_fds = global.ssl_used_async_engines * ssl_sides;
1587 int pipes = compute_ideal_maxpipes();
Willy Tarreaub1beaa32020-03-06 10:25:31 +01001588 int remain = MAX(rlim_fd_cur_at_boot, rlim_fd_max_at_boot);
Willy Tarreauac350932019-03-01 15:43:14 +01001589 int maxconn;
1590
1591 /* we have to take into account these elements :
1592 * - number of engine_fds, which inflates the number of FD needed per
1593 * connection by this number.
1594 * - number of pipes per connection on average : for the unlimited
1595 * case, this is 0.5 pipe FDs per connection, otherwise it's a
1596 * fixed value of 2*pipes.
1597 * - two FDs per connection
1598 */
1599
1600 /* subtract listeners and checks */
1601 remain -= global.maxsock;
1602
Willy Tarreau3f200852019-03-14 19:13:17 +01001603 /* one epoll_fd/kqueue_fd per thread */
1604 remain -= global.nbthread;
1605
1606 /* one wake-up pipe (2 fd) per thread */
1607 remain -= 2 * global.nbthread;
1608
Willy Tarreauac350932019-03-01 15:43:14 +01001609 /* Fixed pipes values : we only subtract them if they're not larger
1610 * than the remaining FDs because pipes are optional.
1611 */
1612 if (pipes >= 0 && pipes * 2 < remain)
1613 remain -= pipes * 2;
1614
1615 if (pipes < 0) {
1616 /* maxsock = maxconn * 2 + maxconn/4 * 2 + maxconn * engine_fds.
1617 * = maxconn * (2 + 0.5 + engine_fds)
1618 * = maxconn * (4 + 1 + 2*engine_fds) / 2
1619 */
1620 maxconn = 2 * remain / (5 + 2 * engine_fds);
1621 } else {
1622 /* maxsock = maxconn * 2 + maxconn * engine_fds.
1623 * = maxconn * (2 + engine_fds)
1624 */
1625 maxconn = remain / (2 + engine_fds);
1626 }
1627
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001628 return MAX(maxconn, DEFAULT_MAXCONN);
Willy Tarreauac350932019-03-01 15:43:14 +01001629}
1630
Willy Tarreaua409f302020-03-10 17:08:53 +01001631/* computes the estimated maxsock value for the given maxconn based on the
1632 * possibly set global.maxpipes and existing partial global.maxsock. It may
1633 * temporarily change global.maxconn for the time needed to propagate the
1634 * computations, and will reset it.
1635 */
1636static int compute_ideal_maxsock(int maxconn)
1637{
1638 int maxpipes = global.maxpipes;
1639 int maxsock = global.maxsock;
1640
1641
1642 if (!maxpipes) {
1643 int old_maxconn = global.maxconn;
1644
1645 global.maxconn = maxconn;
1646 maxpipes = compute_ideal_maxpipes();
1647 global.maxconn = old_maxconn;
1648 }
1649
1650 maxsock += maxconn * 2; /* each connection needs two sockets */
1651 maxsock += maxpipes * 2; /* each pipe needs two FDs */
1652 maxsock += global.nbthread; /* one epoll_fd/kqueue_fd per thread */
1653 maxsock += 2 * global.nbthread; /* one wake-up pipe (2 fd) per thread */
1654
1655 /* compute fd used by async engines */
1656 if (global.ssl_used_async_engines) {
1657 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1658
1659 maxsock += maxconn * sides * global.ssl_used_async_engines;
1660 }
1661 return maxsock;
1662}
1663
Willy Tarreau304e17e2020-03-10 17:54:54 +01001664/* Tests if it is possible to set the current process' RLIMIT_NOFILE to
1665 * <maxsock>, then sets it back to the previous value. Returns non-zero if the
1666 * value is accepted, non-zero otherwise. This is used to determine if an
1667 * automatic limit may be applied or not. When it is not, the caller knows that
1668 * the highest we can do is the rlim_max at boot. In case of error, we return
1669 * that the setting is possible, so that we defer the error processing to the
1670 * final stage in charge of enforcing this.
1671 */
1672static int check_if_maxsock_permitted(int maxsock)
1673{
1674 struct rlimit orig_limit, test_limit;
1675 int ret;
1676
1677 if (getrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1678 return 1;
1679
1680 /* don't go further if we can't even set to what we have */
1681 if (setrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1682 return 1;
1683
1684 test_limit.rlim_max = MAX(maxsock, orig_limit.rlim_max);
1685 test_limit.rlim_cur = test_limit.rlim_max;
1686 ret = setrlimit(RLIMIT_NOFILE, &test_limit);
1687
1688 if (setrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1689 return 1;
1690
1691 return ret == 0;
1692}
1693
1694
William Lallemand73b85e72017-06-01 17:38:51 +02001695/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001696 * This function initializes all the necessary variables. It only returns
1697 * if everything is OK. If something fails, it exits.
1698 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001699static void init(int argc, char **argv)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001700{
Willy Tarreaubaaee002006-06-26 02:48:02 +02001701 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001702 char *tmp;
1703 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +02001704 int err_code = 0;
Maxime de Roucy0f503922016-05-13 23:52:55 +02001705 char *err_msg = NULL;
Willy Tarreau477ecd82010-01-03 21:12:30 +01001706 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +00001707 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +02001708 char *change_dir = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001709 struct proxy *px;
Willy Tarreaue6945732016-12-21 19:57:00 +01001710 struct post_check_fct *pcf;
Willy Tarreauac350932019-03-01 15:43:14 +01001711 int ideal_maxconn;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001712
Christopher Faulete3a5e352017-10-24 13:53:54 +02001713 global.mode = MODE_STARTING;
William Lallemand00417412020-06-05 14:08:41 +02001714 old_argv = copy_argv(argc, argv);
1715 if (!old_argv) {
William Lallemanddf6c5a82020-06-04 17:40:23 +02001716 ha_alert("failed to copy argv.\n");
1717 exit(1);
1718 }
William Lallemand73b85e72017-06-01 17:38:51 +02001719
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001720 if (!init_trash_buffers(1)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001721 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet748919a2017-07-26 14:59:46 +02001722 exit(1);
1723 }
David du Colombier7af46052012-05-16 14:16:48 +02001724
Emeric Brun2b920a12010-09-23 18:30:22 +02001725 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
1726 * the string in case of truncation, and at least FreeBSD appears not to do
1727 * it.
1728 */
1729 memset(hostname, 0, sizeof(hostname));
1730 gethostname(hostname, sizeof(hostname) - 1);
Dragan Dosen4f014152020-06-18 16:56:47 +02001731
1732 if ((localpeer = strdup(hostname)) == NULL) {
1733 ha_alert("Cannot allocate memory for local peer.\n");
1734 exit(EXIT_FAILURE);
1735 }
William Lallemanddaf4cd22018-04-17 16:46:13 +02001736 setenv("HAPROXY_LOCALPEER", localpeer, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02001737
William Lallemand24c928c2020-01-14 17:58:18 +01001738 /* we were in mworker mode, we should restart in mworker mode */
1739 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL)
1740 global.mode |= MODE_MWORKER;
1741
Willy Tarreaubaaee002006-06-26 02:48:02 +02001742 /*
1743 * Initialize the previously static variables.
1744 */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001745
Willy Tarreau173d9952018-01-26 21:48:23 +01001746 totalconn = actconn = listeners = stopping = 0;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001747 killed = 0;
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001748
Willy Tarreaubaaee002006-06-26 02:48:02 +02001749
1750#ifdef HAPROXY_MEMMAX
Willy Tarreau70060452015-12-14 12:46:07 +01001751 global.rlimit_memmax_all = HAPROXY_MEMMAX;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001752#endif
1753
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001754 tzset();
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001755 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001756 start_date = now;
1757
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001758 ha_random_boot(argv);
Willy Tarreau84310e22014-02-14 11:59:04 +01001759
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001760 if (init_acl() != 0)
1761 exit(1);
Willy Tarreaub6b3df32018-11-26 16:31:20 +01001762
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001763 /* Initialise lua. */
1764 hlua_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001765
Christopher Fauletff2613e2016-11-09 11:36:17 +01001766 /* Initialize process vars */
1767 vars_init(&global.vars, SCOPE_PROC);
1768
Willy Tarreau43b78992009-01-25 15:42:27 +01001769 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaue5733232019-05-22 19:24:06 +02001770#if defined(USE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001771 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001772#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001773#if defined(USE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001774 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001775#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001776#if defined(USE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +01001777 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001778#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001779#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001780 global.tune.options |= GTUNE_USE_EVPORTS;
1781#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001782#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001783 global.tune.options |= GTUNE_USE_SPLICE;
1784#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001785#if defined(USE_GETADDRINFO)
1786 global.tune.options |= GTUNE_USE_GAI;
1787#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001788#if defined(SO_REUSEPORT)
1789 global.tune.options |= GTUNE_USE_REUSEPORT;
1790#endif
Willy Tarreau76cc6992020-07-01 18:49:24 +02001791#ifdef USE_THREAD
1792 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
1793#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02001794
1795 pid = getpid();
1796 progname = *argv;
1797 while ((tmp = strchr(progname, '/')) != NULL)
1798 progname = tmp + 1;
1799
Kevinm48936af2010-12-22 16:08:21 +00001800 /* the process name is used for the logs only */
Dragan Dosen43885c72015-10-01 13:18:13 +02001801 chunk_initstr(&global.log_tag, strdup(progname));
Kevinm48936af2010-12-22 16:08:21 +00001802
Willy Tarreaubaaee002006-06-26 02:48:02 +02001803 argc--; argv++;
1804 while (argc > 0) {
1805 char *flag;
1806
1807 if (**argv == '-') {
1808 flag = *argv+1;
1809
1810 /* 1 arg */
1811 if (*flag == 'v') {
1812 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +01001813 if (flag[1] == 'v') /* -vv */
1814 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001815 exit(0);
1816 }
Willy Tarreaue5733232019-05-22 19:24:06 +02001817#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001818 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +01001819 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001820#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001821#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001822 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +01001823 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001824#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001825#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001826 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +01001827 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001828#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001829#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001830 else if (*flag == 'd' && flag[1] == 'v')
1831 global.tune.options &= ~GTUNE_USE_EVPORTS;
1832#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001833#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001834 else if (*flag == 'd' && flag[1] == 'S')
1835 global.tune.options &= ~GTUNE_USE_SPLICE;
1836#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001837#if defined(USE_GETADDRINFO)
1838 else if (*flag == 'd' && flag[1] == 'G')
1839 global.tune.options &= ~GTUNE_USE_GAI;
1840#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001841#if defined(SO_REUSEPORT)
1842 else if (*flag == 'd' && flag[1] == 'R')
1843 global.tune.options &= ~GTUNE_USE_REUSEPORT;
1844#endif
Emeric Brun850efd52014-01-29 12:24:34 +01001845 else if (*flag == 'd' && flag[1] == 'V')
1846 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001847 else if (*flag == 'V')
1848 arg_mode |= MODE_VERBOSE;
1849 else if (*flag == 'd' && flag[1] == 'b')
1850 arg_mode |= MODE_FOREGROUND;
Willy Tarreau3eb10b82020-04-15 16:42:39 +02001851 else if (*flag == 'd' && flag[1] == 'W')
1852 arg_mode |= MODE_ZERO_WARNING;
Willy Tarreau6e064432012-05-08 15:40:42 +02001853 else if (*flag == 'd' && flag[1] == 'M')
1854 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreau3eed10e2016-11-07 21:03:16 +01001855 else if (*flag == 'd' && flag[1] == 'r')
1856 global.tune.options |= GTUNE_RESOLVE_DONTFAIL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001857 else if (*flag == 'd')
1858 arg_mode |= MODE_DEBUG;
1859 else if (*flag == 'c')
1860 arg_mode |= MODE_CHECK;
William Lallemand095ba4c2017-06-01 17:38:50 +02001861 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +02001862 arg_mode |= MODE_DAEMON;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001863 else if (*flag == 'W' && flag[1] == 's') {
Lukas Tribusf46bf952017-11-21 12:39:34 +01001864 arg_mode |= MODE_MWORKER | MODE_FOREGROUND;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001865#if defined(USE_SYSTEMD)
1866 global.tune.options |= GTUNE_USE_SYSTEMD;
1867#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001868 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 +01001869 usage(progname);
1870#endif
1871 }
William Lallemand095ba4c2017-06-01 17:38:50 +02001872 else if (*flag == 'W')
1873 arg_mode |= MODE_MWORKER;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001874 else if (*flag == 'q')
1875 arg_mode |= MODE_QUIET;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001876 else if (*flag == 'x') {
William Lallemand4f71d302020-06-04 23:41:29 +02001877 if (argc <= 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001878 ha_alert("Unix socket path expected with the -x flag\n\n");
William Lallemand45eff442017-06-19 15:57:55 +02001879 usage(progname);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001880 }
William Lallemand4fc09692017-06-19 16:37:19 +02001881 if (old_unixsocket)
Christopher Faulet767a84b2017-11-24 16:50:31 +01001882 ha_warning("-x option already set, overwriting the value\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001883 old_unixsocket = argv[1];
William Lallemand4fc09692017-06-19 16:37:19 +02001884
Olivier Houchardf73629d2017-04-05 22:33:04 +02001885 argv++;
1886 argc--;
1887 }
William Lallemande7361152018-10-26 14:47:36 +02001888 else if (*flag == 'S') {
1889 struct wordlist *c;
1890
William Lallemanda6b32492020-06-04 23:49:20 +02001891 if (argc <= 1) {
William Lallemande7361152018-10-26 14:47:36 +02001892 ha_alert("Socket and optional bind parameters expected with the -S flag\n");
1893 usage(progname);
1894 }
1895 if ((c = malloc(sizeof(*c))) == NULL || (c->s = strdup(argv[1])) == NULL) {
1896 ha_alert("Cannot allocate memory\n");
1897 exit(EXIT_FAILURE);
1898 }
1899 LIST_ADD(&mworker_cli_conf, &c->list);
1900
1901 argv++;
1902 argc--;
1903 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001904 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
1905 /* list of pids to finish ('f') or terminate ('t') */
1906
1907 if (flag[1] == 'f')
1908 oldpids_sig = SIGUSR1; /* finish then exit */
1909 else
1910 oldpids_sig = SIGTERM; /* terminate immediately */
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001911 while (argc > 1 && argv[1][0] != '-') {
Chris Lane236062f2018-02-05 23:15:44 +00001912 char * endptr = NULL;
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001913 oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int));
1914 if (!oldpids) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001915 ha_alert("Cannot allocate old pid : out of memory.\n");
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001916 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001917 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001918 argc--; argv++;
Chris Lane236062f2018-02-05 23:15:44 +00001919 errno = 0;
1920 oldpids[nb_oldpids] = strtol(*argv, &endptr, 10);
1921 if (errno) {
1922 ha_alert("-%2s option: failed to parse {%s}: %s\n",
1923 flag,
1924 *argv, strerror(errno));
1925 exit(1);
1926 } else if (endptr && strlen(endptr)) {
Willy Tarreau90807112020-02-25 08:16:33 +01001927 while (isspace((unsigned char)*endptr)) endptr++;
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001928 if (*endptr != 0) {
Chris Lane236062f2018-02-05 23:15:44 +00001929 ha_alert("-%2s option: some bytes unconsumed in PID list {%s}\n",
1930 flag, endptr);
1931 exit(1);
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001932 }
Chris Lane236062f2018-02-05 23:15:44 +00001933 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001934 if (oldpids[nb_oldpids] <= 0)
1935 usage(progname);
1936 nb_oldpids++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001937 }
1938 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001939 else if (flag[0] == '-' && flag[1] == 0) { /* "--" */
1940 /* now that's a cfgfile list */
1941 argv++; argc--;
1942 while (argc > 0) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02001943 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001944 ha_alert("Cannot load configuration file/directory %s : %s\n",
1945 *argv,
1946 err_msg);
Willy Tarreaua088d312015-10-08 11:58:48 +02001947 exit(1);
1948 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001949 argv++; argc--;
1950 }
1951 break;
1952 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001953 else { /* >=2 args */
1954 argv++; argc--;
1955 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001956 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001957
1958 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +02001959 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001960 case 'n' : cfg_maxconn = atol(*argv); break;
Willy Tarreau70060452015-12-14 12:46:07 +01001961 case 'm' : global.rlimit_memmax_all = atol(*argv); break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001962 case 'N' : cfg_maxpconn = atol(*argv); break;
William Lallemanddaf4cd22018-04-17 16:46:13 +02001963 case 'L' :
Dragan Dosen4f014152020-06-18 16:56:47 +02001964 free(localpeer);
1965 if ((localpeer = strdup(*argv)) == NULL) {
1966 ha_alert("Cannot allocate memory for local peer.\n");
1967 exit(EXIT_FAILURE);
1968 }
William Lallemanddaf4cd22018-04-17 16:46:13 +02001969 setenv("HAPROXY_LOCALPEER", localpeer, 1);
Dragan Dosen13cd54c2020-06-18 18:24:05 +02001970 global.localpeer_cmdline = 1;
William Lallemanddaf4cd22018-04-17 16:46:13 +02001971 break;
Willy Tarreau5d01a632009-06-22 16:02:30 +02001972 case 'f' :
Maxime de Roucy0f503922016-05-13 23:52:55 +02001973 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001974 ha_alert("Cannot load configuration file/directory %s : %s\n",
1975 *argv,
1976 err_msg);
Willy Tarreau5d01a632009-06-22 16:02:30 +02001977 exit(1);
1978 }
Willy Tarreau5d01a632009-06-22 16:02:30 +02001979 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001980 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001981 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001982 }
1983 }
1984 }
1985 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001986 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001987 argv++; argc--;
1988 }
1989
Christopher Faulete3a5e352017-10-24 13:53:54 +02001990 global.mode |= (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE
Willy Tarreau3eb10b82020-04-15 16:42:39 +02001991 | MODE_QUIET | MODE_CHECK | MODE_DEBUG | MODE_ZERO_WARNING));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001992
William Lallemand944e6192018-11-21 15:48:31 +01001993 if (getenv("HAPROXY_MWORKER_WAIT_ONLY")) {
William Lallemandcb11fd22017-06-01 17:38:52 +02001994 unsetenv("HAPROXY_MWORKER_WAIT_ONLY");
William Lallemand944e6192018-11-21 15:48:31 +01001995 global.mode |= MODE_MWORKER_WAIT;
1996 global.mode &= ~MODE_MWORKER;
William Lallemandcb11fd22017-06-01 17:38:52 +02001997 }
1998
1999 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) {
2000 atexit_flag = 1;
2001 atexit(reexec_on_failure);
2002 }
2003
Willy Tarreau576132e2011-09-10 19:26:56 +02002004 if (change_dir && chdir(change_dir) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002005 ha_alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
Willy Tarreau576132e2011-09-10 19:26:56 +02002006 exit(1);
2007 }
2008
Willy Tarreaubaaee002006-06-26 02:48:02 +02002009 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002010
2011 init_default_instance();
2012
William Lallemand944e6192018-11-21 15:48:31 +01002013 /* in wait mode, we don't try to read the configuration files */
2014 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand7b302d82019-05-20 11:15:37 +02002015 struct buffer *trash = get_trash_chunk();
Willy Tarreauc4382422009-12-06 13:10:44 +01002016
William Lallemand944e6192018-11-21 15:48:31 +01002017 /* handle cfgfiles that are actually directories */
2018 cfgfiles_expand_directories();
2019
2020 if (LIST_ISEMPTY(&cfg_cfgfiles))
2021 usage(progname);
2022
2023
2024 list_for_each_entry(wl, &cfg_cfgfiles, list) {
2025 int ret;
2026
William Lallemand7b302d82019-05-20 11:15:37 +02002027 if (trash->data)
2028 chunk_appendf(trash, ";");
2029
2030 chunk_appendf(trash, "%s", wl->s);
2031
William Lallemand944e6192018-11-21 15:48:31 +01002032 ret = readcfgfile(wl->s);
2033 if (ret == -1) {
2034 ha_alert("Could not open configuration file %s : %s\n",
2035 wl->s, strerror(errno));
2036 exit(1);
2037 }
2038 if (ret & (ERR_ABORT|ERR_FATAL))
2039 ha_alert("Error(s) found in configuration file : %s\n", wl->s);
2040 err_code |= ret;
2041 if (err_code & ERR_ABORT)
2042 exit(1);
Willy Tarreauc4382422009-12-06 13:10:44 +01002043 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002044
William Lallemand944e6192018-11-21 15:48:31 +01002045 /* do not try to resolve arguments nor to spot inconsistencies when
2046 * the configuration contains fatal errors caused by files not found
2047 * or failed memory allocations.
2048 */
2049 if (err_code & (ERR_ABORT|ERR_FATAL)) {
2050 ha_alert("Fatal errors found in configuration.\n");
2051 exit(1);
2052 }
William Lallemand7b302d82019-05-20 11:15:37 +02002053 if (trash->data)
2054 setenv("HAPROXY_CFGFILES", trash->area, 1);
2055
Willy Tarreaub83dc3d2017-04-19 11:24:07 +02002056 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002057 if (global.mode & MODE_MWORKER) {
2058 int proc;
William Lallemand16dd1b32018-11-19 18:46:18 +01002059 struct mworker_proc *tmproc;
2060
William Lallemand482f9a92019-04-12 16:15:00 +02002061 setenv("HAPROXY_MWORKER", "1", 1);
2062
William Lallemand16dd1b32018-11-19 18:46:18 +01002063 if (getenv("HAPROXY_MWORKER_REEXEC") == NULL) {
2064
William Lallemandf3a86832019-04-01 11:29:58 +02002065 tmproc = calloc(1, sizeof(*tmproc));
William Lallemand16dd1b32018-11-19 18:46:18 +01002066 if (!tmproc) {
2067 ha_alert("Cannot allocate process structures.\n");
2068 exit(EXIT_FAILURE);
2069 }
William Lallemand8f7069a2019-04-12 16:09:23 +02002070 tmproc->options |= PROC_O_TYPE_MASTER; /* master */
William Lallemand16dd1b32018-11-19 18:46:18 +01002071 tmproc->reloads = 0;
2072 tmproc->relative_pid = 0;
2073 tmproc->pid = pid;
2074 tmproc->timestamp = start_date.tv_sec;
2075 tmproc->ipc_fd[0] = -1;
2076 tmproc->ipc_fd[1] = -1;
2077
2078 proc_self = tmproc;
2079
2080 LIST_ADDQ(&proc_list, &tmproc->list);
2081 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002082
2083 for (proc = 0; proc < global.nbproc; proc++) {
William Lallemandce83b4a2018-10-26 14:47:30 +02002084
William Lallemandf3a86832019-04-01 11:29:58 +02002085 tmproc = calloc(1, sizeof(*tmproc));
William Lallemandce83b4a2018-10-26 14:47:30 +02002086 if (!tmproc) {
2087 ha_alert("Cannot allocate process structures.\n");
2088 exit(EXIT_FAILURE);
2089 }
2090
William Lallemand8f7069a2019-04-12 16:09:23 +02002091 tmproc->options |= PROC_O_TYPE_WORKER; /* worker */
William Lallemandce83b4a2018-10-26 14:47:30 +02002092 tmproc->pid = -1;
2093 tmproc->reloads = 0;
William Lallemande3683302018-11-19 18:46:17 +01002094 tmproc->timestamp = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02002095 tmproc->relative_pid = 1 + proc;
William Lallemand550db6d2018-11-06 17:37:12 +01002096 tmproc->ipc_fd[0] = -1;
2097 tmproc->ipc_fd[1] = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02002098
2099 if (mworker_cli_sockpair_new(tmproc, proc) < 0) {
2100 exit(EXIT_FAILURE);
2101 }
2102
2103 LIST_ADDQ(&proc_list, &tmproc->list);
2104 }
William Lallemand944e6192018-11-21 15:48:31 +01002105 }
2106 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
2107 struct wordlist *it, *c;
2108
William Lallemand1b663612018-10-26 14:47:33 +02002109 mworker_env_to_proc_list(); /* get the info of the children in the env */
William Lallemand8a022572018-10-26 14:47:35 +02002110
William Lallemande7361152018-10-26 14:47:36 +02002111
William Lallemand550db6d2018-11-06 17:37:12 +01002112 if (!LIST_ISEMPTY(&mworker_cli_conf)) {
William Lallemande7361152018-10-26 14:47:36 +02002113
William Lallemand550db6d2018-11-06 17:37:12 +01002114 if (mworker_cli_proxy_create() < 0) {
William Lallemande7361152018-10-26 14:47:36 +02002115 ha_alert("Can't create the master's CLI.\n");
2116 exit(EXIT_FAILURE);
2117 }
William Lallemande7361152018-10-26 14:47:36 +02002118
William Lallemand550db6d2018-11-06 17:37:12 +01002119 list_for_each_entry_safe(c, it, &mworker_cli_conf, list) {
2120
2121 if (mworker_cli_proxy_new_listener(c->s) < 0) {
2122 ha_alert("Can't create the master's CLI.\n");
2123 exit(EXIT_FAILURE);
2124 }
2125 LIST_DEL(&c->list);
2126 free(c->s);
2127 free(c);
2128 }
2129 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002130 }
2131
Willy Tarreaubb925012009-07-23 13:36:36 +02002132 err_code |= check_config_validity();
Christopher Fauletc1692962019-08-12 09:51:07 +02002133 for (px = proxies_list; px; px = px->next) {
2134 struct server *srv;
2135 struct post_proxy_check_fct *ppcf;
2136 struct post_server_check_fct *pscf;
2137
2138 list_for_each_entry(pscf, &post_server_check_list, list) {
2139 for (srv = px->srv; srv; srv = srv->next)
2140 err_code |= pscf->fct(srv);
2141 }
2142 list_for_each_entry(ppcf, &post_proxy_check_list, list)
2143 err_code |= ppcf->fct(px);
2144 }
Willy Tarreaubb925012009-07-23 13:36:36 +02002145 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002146 ha_alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002147 exit(1);
2148 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002149
Carl Henrik Lundef91ac192020-02-27 16:45:50 +01002150 err_code |= pattern_finalize_config();
2151 if (err_code & (ERR_ABORT|ERR_FATAL)) {
2152 ha_alert("Failed to finalize pattern config.\n");
2153 exit(1);
2154 }
Willy Tarreau0f936722019-04-11 14:47:08 +02002155
Willy Tarreau70060452015-12-14 12:46:07 +01002156 /* recompute the amount of per-process memory depending on nbproc and
2157 * the shared SSL cache size (allowed to exist in all processes).
2158 */
2159 if (global.rlimit_memmax_all) {
2160#if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE)
2161 int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL;
2162
2163 global.rlimit_memmax =
2164 ((((int64_t)global.rlimit_memmax_all * 1048576LL) -
2165 ssl_cache_bytes) / global.nbproc +
2166 ssl_cache_bytes + 1048575LL) / 1048576LL;
2167#else
2168 global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc;
2169#endif
2170 }
2171
Willy Tarreaue5733232019-05-22 19:24:06 +02002172#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002173 err_code |= netns_init();
2174 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002175 ha_alert("Failed to initialize namespace support.\n");
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002176 exit(1);
2177 }
2178#endif
2179
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01002180 /* Apply server states */
2181 apply_server_state();
2182
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002183 for (px = proxies_list; px; px = px->next)
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01002184 srv_compute_all_admin_states(px);
2185
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01002186 /* Apply servers' configured address */
2187 err_code |= srv_init_addr();
2188 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002189 ha_alert("Failed to initialize server(s) addr.\n");
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01002190 exit(1);
2191 }
2192
Willy Tarreau3eb10b82020-04-15 16:42:39 +02002193 if (warned & WARN_ANY && global.mode & MODE_ZERO_WARNING) {
2194 ha_alert("Some warnings were found and 'zero-warning' is set. Aborting.\n");
2195 exit(1);
2196 }
2197
Willy Tarreaubaaee002006-06-26 02:48:02 +02002198 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002199 struct peers *pr;
2200 struct proxy *px;
2201
Willy Tarreaubebd2122020-04-15 16:06:11 +02002202 if (warned & WARN_ANY)
2203 qfprintf(stdout, "Warnings were found.\n");
2204
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002205 for (pr = cfg_peers; pr; pr = pr->next)
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002206 if (pr->peers_fe)
2207 break;
2208
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002209 for (px = proxies_list; px; px = px->next)
Willy Tarreau4348fad2012-09-20 16:48:07 +02002210 if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002211 break;
2212
2213 if (pr || px) {
2214 /* At least one peer or one listener has been found */
2215 qfprintf(stdout, "Configuration file is valid\n");
Tim Duesterhus0a3b43d2020-06-14 00:37:42 +02002216 deinit_and_exit(0);
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002217 }
2218 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
2219 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002220 }
Willy Tarreaue9b26022011-08-01 20:57:55 +02002221
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002222 /* now we know the buffer size, we can initialize the channels and buffers */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002223 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +02002224
Willy Tarreaue6945732016-12-21 19:57:00 +01002225 list_for_each_entry(pcf, &post_check_list, list) {
2226 err_code |= pcf->fct();
2227 if (err_code & (ERR_ABORT|ERR_FATAL))
2228 exit(1);
2229 }
2230
Willy Tarreaubaaee002006-06-26 02:48:02 +02002231 if (cfg_maxconn > 0)
2232 global.maxconn = cfg_maxconn;
2233
Willy Tarreau8d687d82019-03-01 09:39:42 +01002234 if (global.stats_fe)
2235 global.maxsock += global.stats_fe->maxconn;
2236
2237 if (cfg_peers) {
2238 /* peers also need to bypass global maxconn */
2239 struct peers *p = cfg_peers;
2240
2241 for (p = cfg_peers; p; p = p->next)
2242 if (p->peers_fe)
2243 global.maxsock += p->peers_fe->maxconn;
2244 }
2245
Willy Tarreaubaaee002006-06-26 02:48:02 +02002246 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +02002247 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002248 global.pidfile = strdup(cfg_pidfile);
2249 }
2250
Willy Tarreaud0256482015-01-15 21:45:22 +01002251 /* Now we want to compute the maxconn and possibly maxsslconn values.
Willy Tarreauac350932019-03-01 15:43:14 +01002252 * It's a bit tricky. Maxconn defaults to the pre-computed value based
2253 * on rlim_fd_cur and the number of FDs in use due to the configuration,
2254 * and maxsslconn defaults to DEFAULT_MAXSSLCONN. On top of that we can
2255 * enforce a lower limit based on memmax.
Willy Tarreaud0256482015-01-15 21:45:22 +01002256 *
2257 * If memmax is set, then it depends on which values are set. If
2258 * maxsslconn is set, we use memmax to determine how many cleartext
2259 * connections may be added, and set maxconn to the sum of the two.
2260 * If maxconn is set and not maxsslconn, maxsslconn is computed from
2261 * the remaining amount of memory between memmax and the cleartext
2262 * connections. If neither are set, then it is considered that all
2263 * connections are SSL-capable, and maxconn is computed based on this,
2264 * then maxsslconn accordingly. We need to know if SSL is used on the
2265 * frontends, backends, or both, because when it's used on both sides,
2266 * we need twice the value for maxsslconn, but we only count the
2267 * handshake once since it is not performed on the two sides at the
2268 * same time (frontend-side is terminated before backend-side begins).
2269 * The SSL stack is supposed to have filled ssl_session_cost and
Willy Tarreau474b96a2015-01-28 19:03:21 +01002270 * ssl_handshake_cost during its initialization. In any case, if
2271 * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for
2272 * maxconn in order to protect the system.
Willy Tarreaud0256482015-01-15 21:45:22 +01002273 */
Willy Tarreauac350932019-03-01 15:43:14 +01002274 ideal_maxconn = compute_ideal_maxconn();
2275
Willy Tarreaud0256482015-01-15 21:45:22 +01002276 if (!global.rlimit_memmax) {
2277 if (global.maxconn == 0) {
Willy Tarreauac350932019-03-01 15:43:14 +01002278 global.maxconn = ideal_maxconn;
Willy Tarreaud0256482015-01-15 21:45:22 +01002279 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2280 fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn);
2281 }
2282 }
2283#ifdef USE_OPENSSL
2284 else if (!global.maxconn && !global.maxsslconn &&
2285 (global.ssl_used_frontend || global.ssl_used_backend)) {
2286 /* memmax is set, compute everything automatically. Here we want
2287 * to ensure that all SSL connections will be served. We take
2288 * care of the number of sides where SSL is used, and consider
2289 * the worst case : SSL used on both sides and doing a handshake
2290 * simultaneously. Note that we can't have more than maxconn
2291 * handshakes at a time by definition, so for the worst case of
2292 * two SSL conns per connection, we count a single handshake.
2293 */
2294 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2295 int64_t mem = global.rlimit_memmax * 1048576ULL;
Willy Tarreau304e17e2020-03-10 17:54:54 +01002296 int retried = 0;
Willy Tarreaud0256482015-01-15 21:45:22 +01002297
2298 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2299 mem -= global.maxzlibmem;
2300 mem = mem * MEM_USABLE_RATIO;
2301
Willy Tarreau304e17e2020-03-10 17:54:54 +01002302 /* Principle: we test once to set maxconn according to the free
2303 * memory. If it results in values the system rejects, we try a
2304 * second time by respecting rlim_fd_max. If it fails again, we
2305 * go back to the initial value and will let the final code
2306 * dealing with rlimit report the error. That's up to 3 attempts.
2307 */
2308 do {
2309 global.maxconn = mem /
2310 ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream
2311 sides * global.ssl_session_max_cost + // SSL buffers, one per side
2312 global.ssl_handshake_max_cost); // 1 handshake per connection max
Willy Tarreaud0256482015-01-15 21:45:22 +01002313
Willy Tarreau304e17e2020-03-10 17:54:54 +01002314 if (retried == 1)
2315 global.maxconn = MIN(global.maxconn, ideal_maxconn);
2316 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01002317#ifdef SYSTEM_MAXCONN
Willy Tarreau304e17e2020-03-10 17:54:54 +01002318 if (global.maxconn > SYSTEM_MAXCONN)
2319 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01002320#endif /* SYSTEM_MAXCONN */
Willy Tarreau304e17e2020-03-10 17:54:54 +01002321 global.maxsslconn = sides * global.maxconn;
2322
2323 if (check_if_maxsock_permitted(compute_ideal_maxsock(global.maxconn)))
2324 break;
2325 } while (retried++ < 2);
2326
Willy Tarreaud0256482015-01-15 21:45:22 +01002327 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2328 fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n",
2329 global.maxconn, global.maxsslconn);
2330 }
2331 else if (!global.maxsslconn &&
2332 (global.ssl_used_frontend || global.ssl_used_backend)) {
2333 /* memmax and maxconn are known, compute maxsslconn automatically.
2334 * maxsslconn being forced, we don't know how many of it will be
2335 * on each side if both sides are being used. The worst case is
2336 * when all connections use only one SSL instance because
2337 * handshakes may be on two sides at the same time.
2338 */
2339 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2340 int64_t mem = global.rlimit_memmax * 1048576ULL;
2341 int64_t sslmem;
2342
2343 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2344 mem -= global.maxzlibmem;
2345 mem = mem * MEM_USABLE_RATIO;
2346
Willy Tarreau87b09662015-04-03 00:22:06 +02002347 sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01002348 global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost);
2349 global.maxsslconn = round_2dig(global.maxsslconn);
2350
2351 if (sslmem <= 0 || global.maxsslconn < sides) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002352 ha_alert("Cannot compute the automatic maxsslconn because global.maxconn is already too "
2353 "high for the global.memmax value (%d MB). The absolute maximum possible value "
2354 "without SSL is %d, but %d was found and SSL is in use.\n",
2355 global.rlimit_memmax,
2356 (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)),
2357 global.maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01002358 exit(1);
2359 }
2360
2361 if (global.maxsslconn > sides * global.maxconn)
2362 global.maxsslconn = sides * global.maxconn;
2363
2364 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2365 fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn);
2366 }
2367#endif
2368 else if (!global.maxconn) {
2369 /* memmax and maxsslconn are known/unused, compute maxconn automatically */
2370 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2371 int64_t mem = global.rlimit_memmax * 1048576ULL;
2372 int64_t clearmem;
Willy Tarreau304e17e2020-03-10 17:54:54 +01002373 int retried = 0;
Willy Tarreaud0256482015-01-15 21:45:22 +01002374
2375 if (global.ssl_used_frontend || global.ssl_used_backend)
2376 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2377
2378 mem -= global.maxzlibmem;
2379 mem = mem * MEM_USABLE_RATIO;
2380
2381 clearmem = mem;
2382 if (sides)
2383 clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn;
2384
Willy Tarreau304e17e2020-03-10 17:54:54 +01002385 /* Principle: we test once to set maxconn according to the free
2386 * memory. If it results in values the system rejects, we try a
2387 * second time by respecting rlim_fd_max. If it fails again, we
2388 * go back to the initial value and will let the final code
2389 * dealing with rlimit report the error. That's up to 3 attempts.
2390 */
2391 do {
2392 global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize);
2393 if (retried == 1)
2394 global.maxconn = MIN(global.maxconn, ideal_maxconn);
2395 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01002396#ifdef SYSTEM_MAXCONN
Willy Tarreau304e17e2020-03-10 17:54:54 +01002397 if (global.maxconn > SYSTEM_MAXCONN)
2398 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01002399#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01002400
Willy Tarreau304e17e2020-03-10 17:54:54 +01002401 if (clearmem <= 0 || !global.maxconn) {
2402 ha_alert("Cannot compute the automatic maxconn because global.maxsslconn is already too "
2403 "high for the global.memmax value (%d MB). The absolute maximum possible value "
2404 "is %d, but %d was found.\n",
2405 global.rlimit_memmax,
Christopher Faulet767a84b2017-11-24 16:50:31 +01002406 (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)),
Willy Tarreau304e17e2020-03-10 17:54:54 +01002407 global.maxsslconn);
2408 exit(1);
2409 }
2410
2411 if (check_if_maxsock_permitted(compute_ideal_maxsock(global.maxconn)))
2412 break;
2413 } while (retried++ < 2);
Willy Tarreaud0256482015-01-15 21:45:22 +01002414
2415 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2416 if (sides && global.maxsslconn > sides * global.maxconn) {
2417 fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn "
2418 "to be limited to %d. Better reduce global.maxsslconn to get more "
2419 "room for extra connections.\n", global.maxsslconn, global.maxconn);
2420 }
2421 fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn);
2422 }
Willy Tarreau66aa61f2009-01-18 21:44:07 +01002423 }
2424
Willy Tarreaua409f302020-03-10 17:08:53 +01002425 global.maxsock = compute_ideal_maxsock(global.maxconn);
2426 global.hardmaxconn = global.maxconn;
Willy Tarreaua4818db2020-06-19 16:20:59 +02002427 if (!global.maxpipes)
2428 global.maxpipes = compute_ideal_maxpipes();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002429
Olivier Houchard88698d92019-04-16 19:07:22 +02002430 /* update connection pool thresholds */
2431 global.tune.pool_low_count = ((long long)global.maxsock * global.tune.pool_low_ratio + 99) / 100;
2432 global.tune.pool_high_count = ((long long)global.maxsock * global.tune.pool_high_ratio + 99) / 100;
2433
Willy Tarreauc8d5b952019-02-27 17:25:52 +01002434 proxy_adjust_all_maxconn();
2435
Willy Tarreau1db37712007-06-03 17:16:49 +02002436 if (global.tune.maxpollevents <= 0)
2437 global.tune.maxpollevents = MAX_POLL_EVENTS;
2438
Olivier Houchard1599b802018-05-24 18:59:04 +02002439 if (global.tune.runqueue_depth <= 0)
2440 global.tune.runqueue_depth = RUNQUEUE_DEPTH;
2441
Willy Tarreau6f4a82c2009-03-21 20:43:57 +01002442 if (global.tune.recv_enough == 0)
2443 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
2444
Willy Tarreau27a674e2009-08-17 07:23:33 +02002445 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
2446 global.tune.maxrewrite = global.tune.bufsize / 2;
2447
Willy Tarreaubaaee002006-06-26 02:48:02 +02002448 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
2449 /* command line debug mode inhibits configuration mode */
William Lallemand095ba4c2017-06-01 17:38:50 +02002450 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002451 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
2452 }
2453
William Lallemand095ba4c2017-06-01 17:38:50 +02002454 if (arg_mode & MODE_DAEMON) {
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002455 /* command line daemon mode inhibits foreground and debug modes mode */
2456 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
William Lallemand095ba4c2017-06-01 17:38:50 +02002457 global.mode |= arg_mode & MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002458 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002459
2460 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002461
William Lallemand095ba4c2017-06-01 17:38:50 +02002462 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002463 ha_warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
William Lallemand095ba4c2017-06-01 17:38:50 +02002464 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002465 }
2466
William Lallemand095ba4c2017-06-01 17:38:50 +02002467 if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002468 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
Christopher Faulet767a84b2017-11-24 16:50:31 +01002469 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 +02002470 global.nbproc = 1;
2471 }
2472
2473 if (global.nbproc < 1)
2474 global.nbproc = 1;
2475
Christopher Fauletbe0faa22017-08-29 15:37:10 +02002476 if (global.nbthread < 1)
2477 global.nbthread = 1;
2478
Christopher Faulet3ef26392017-08-29 16:46:57 +02002479 /* Realloc trash buffers because global.tune.bufsize may have changed */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002480 if (!init_trash_buffers(0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002481 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet3ef26392017-08-29 16:46:57 +02002482 exit(1);
2483 }
2484
Christopher Faulet96d44832017-11-14 22:02:30 +01002485 if (!init_log_buffers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002486 ha_alert("failed to initialize log buffers.\n");
Christopher Faulet96d44832017-11-14 22:02:30 +01002487 exit(1);
2488 }
2489
Willy Tarreauef1d1f82007-04-16 00:25:25 +02002490 /*
2491 * Note: we could register external pollers here.
2492 * Built-in pollers have been registered before main().
2493 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02002494
Willy Tarreau43b78992009-01-25 15:42:27 +01002495 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +02002496 disable_poller("kqueue");
2497
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00002498 if (!(global.tune.options & GTUNE_USE_EVPORTS))
2499 disable_poller("evports");
2500
Willy Tarreau43b78992009-01-25 15:42:27 +01002501 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002502 disable_poller("epoll");
2503
Willy Tarreau43b78992009-01-25 15:42:27 +01002504 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002505 disable_poller("poll");
2506
Willy Tarreau43b78992009-01-25 15:42:27 +01002507 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002508 disable_poller("select");
2509
2510 /* Note: we could disable any poller by name here */
2511
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002512 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02002513 list_pollers(stderr);
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002514 fprintf(stderr, "\n");
2515 list_filters(stderr);
2516 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002517
Willy Tarreau4f60f162007-04-08 16:39:58 +02002518 if (!init_pollers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002519 ha_alert("No polling mechanism available.\n"
2520 " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n"
2521 " is too low on this platform to support maxconn and the number of listeners\n"
2522 " and servers. You should rebuild haproxy specifying your system using TARGET=\n"
2523 " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n"
2524 " global maxconn setting to accommodate the system's limitation. For reference,\n"
2525 " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n"
2526 " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n"
2527 " check build settings using 'haproxy -vv'.\n\n",
2528 FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002529 exit(1);
2530 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002531 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2532 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002533 }
2534
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002535 if (!global.node)
2536 global.node = strdup(hostname);
2537
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01002538 if (!hlua_post_init())
2539 exit(1);
Thomas Holmes6abded42015-05-12 16:23:58 +01002540
Maxime de Roucy0f503922016-05-13 23:52:55 +02002541 free(err_msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002542}
2543
Simon Horman6fb82592011-07-15 13:14:11 +09002544static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +09002545{
Simon Hormanac821422011-07-15 13:14:09 +09002546 struct acl_term_suite *suite, *suiteb;
2547 struct acl_term *term, *termb;
2548
Simon Horman6fb82592011-07-15 13:14:11 +09002549 if (!cond)
2550 return;
2551
2552 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
2553 list_for_each_entry_safe(term, termb, &suite->terms, list) {
2554 LIST_DEL(&term->list);
2555 free(term);
Simon Hormanac821422011-07-15 13:14:09 +09002556 }
Simon Horman6fb82592011-07-15 13:14:11 +09002557 LIST_DEL(&suite->list);
2558 free(suite);
2559 }
2560
2561 free(cond);
2562}
2563
Christopher Fauletcb550132019-12-17 11:25:46 +01002564static void deinit_act_rules(struct list *rules)
Simon Horman6fb82592011-07-15 13:14:11 +09002565{
Christopher Fauletcb550132019-12-17 11:25:46 +01002566 struct act_rule *rule, *ruleb;
Simon Horman6fb82592011-07-15 13:14:11 +09002567
Christopher Fauletcb550132019-12-17 11:25:46 +01002568 list_for_each_entry_safe(rule, ruleb, rules, list) {
2569 LIST_DEL(&rule->list);
2570 deinit_acl_cond(rule->cond);
Christopher Faulet58b35642019-12-17 11:48:42 +01002571 if (rule->release_ptr)
2572 rule->release_ptr(rule);
Christopher Fauletcb550132019-12-17 11:25:46 +01002573 free(rule);
Simon Hormanac821422011-07-15 13:14:09 +09002574 }
2575}
2576
Simon Horman6fb82592011-07-15 13:14:11 +09002577static void deinit_stick_rules(struct list *rules)
2578{
2579 struct sticking_rule *rule, *ruleb;
2580
2581 list_for_each_entry_safe(rule, ruleb, rules, list) {
2582 LIST_DEL(&rule->list);
2583 deinit_acl_cond(rule->cond);
Christopher Faulet476e5d02016-10-26 11:34:47 +02002584 release_sample_expr(rule->expr);
Simon Horman6fb82592011-07-15 13:14:11 +09002585 free(rule);
2586 }
2587}
2588
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002589void deinit(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002590{
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002591 struct proxy *p = proxies_list, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002592 struct cap_hdr *h,*h_next;
2593 struct server *s,*s_next;
2594 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002595 struct acl_cond *cond, *condb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002596 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002597 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002598 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002599 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002600 struct wordlist *wl, *wlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002601 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +02002602 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +01002603 struct logformat_node *lf, *lfb;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002604 struct bind_conf *bind_conf, *bind_back;
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002605 struct build_opts_str *bol, *bolb;
Willy Tarreau05554e62016-12-21 20:46:26 +01002606 struct post_deinit_fct *pdf;
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002607 struct proxy_deinit_fct *pxdf;
2608 struct server_deinit_fct *srvdf;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002609
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002610 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002611 while (p) {
Willy Tarreau8113a5d2012-10-04 08:01:43 +02002612 free(p->conf.file);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002613 free(p->id);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002614 free(p->cookie_name);
2615 free(p->cookie_domain);
Christopher Faulet2f533902020-01-21 11:06:48 +01002616 free(p->cookie_attrs);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002617 free(p->lbprm.arg_str);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002618 free(p->capture_name);
2619 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +09002620 free(p->rdp_cookie_name);
Willy Tarreau62a61232013-04-12 18:13:46 +02002621 if (p->conf.logformat_string != default_http_log_format &&
2622 p->conf.logformat_string != default_tcp_log_format &&
2623 p->conf.logformat_string != clf_http_log_format)
2624 free(p->conf.logformat_string);
Willy Tarreau196729e2012-05-31 19:30:26 +02002625
Willy Tarreau62a61232013-04-12 18:13:46 +02002626 free(p->conf.lfs_file);
2627 free(p->conf.uniqueid_format_string);
2628 free(p->conf.uif_file);
Willy Tarreau0cac26c2019-01-14 16:55:42 +01002629 if ((p->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_MAP)
2630 free(p->lbprm.map.srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002631
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002632 if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2633 free(p->conf.logformat_sd_string);
2634 free(p->conf.lfsd_file);
2635
Willy Tarreaub80c2302007-11-30 20:51:32 +01002636 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
2637 LIST_DEL(&cond->list);
2638 prune_acl_cond(cond);
2639 free(cond);
2640 }
2641
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002642 /* build a list of unique uri_auths */
2643 if (!ua)
2644 ua = p->uri_auth;
2645 else {
2646 /* check if p->uri_auth is unique */
2647 for (uap = ua; uap; uap=uap->next)
2648 if (uap == p->uri_auth)
2649 break;
2650
Willy Tarreauaccc4e12008-06-24 11:14:45 +02002651 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002652 /* add it, if it is */
2653 p->uri_auth->next = ua;
2654 ua = p->uri_auth;
2655 }
2656 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002657
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002658 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
2659 LIST_DEL(&acl->list);
2660 prune_acl(acl);
2661 free(acl);
2662 }
2663
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002664 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
2665 LIST_DEL(&srule->list);
2666 prune_acl_cond(srule->cond);
2667 free(srule->cond);
2668 free(srule);
2669 }
2670
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002671 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
2672 LIST_DEL(&rule->list);
Willy Tarreauf51658d2014-04-23 01:21:56 +02002673 if (rule->cond) {
2674 prune_acl_cond(rule->cond);
2675 free(rule->cond);
2676 }
Dragan Dosen2a7c20f2019-04-30 00:38:36 +02002677 free(rule->file);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002678 free(rule);
2679 }
2680
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002681 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
2682 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +01002683 if (rdr->cond) {
2684 prune_acl_cond(rdr->cond);
2685 free(rdr->cond);
2686 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002687 free(rdr->rdr_str);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002688 list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) {
2689 LIST_DEL(&lf->list);
2690 free(lf);
2691 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002692 free(rdr);
2693 }
2694
William Lallemand0f99e342011-10-12 17:50:54 +02002695 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
2696 LIST_DEL(&log->list);
2697 free(log);
2698 }
2699
William Lallemand723b73a2012-02-08 16:37:49 +01002700 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
2701 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002702 release_sample_expr(lf->expr);
2703 free(lf->arg);
William Lallemand723b73a2012-02-08 16:37:49 +01002704 free(lf);
2705 }
2706
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002707 list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) {
2708 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002709 release_sample_expr(lf->expr);
2710 free(lf->arg);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002711 free(lf);
2712 }
2713
Christopher Fauletcb550132019-12-17 11:25:46 +01002714 deinit_act_rules(&p->tcp_req.inspect_rules);
2715 deinit_act_rules(&p->tcp_rep.inspect_rules);
2716 deinit_act_rules(&p->tcp_req.l4_rules);
2717 deinit_act_rules(&p->tcp_req.l5_rules);
2718 deinit_act_rules(&p->http_req_rules);
2719 deinit_act_rules(&p->http_res_rules);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002720 deinit_act_rules(&p->http_after_res_rules);
Simon Hormanac821422011-07-15 13:14:09 +09002721
Simon Horman6fb82592011-07-15 13:14:11 +09002722 deinit_stick_rules(&p->storersp_rules);
2723 deinit_stick_rules(&p->sticking_rules);
2724
Willy Tarreaubaaee002006-06-26 02:48:02 +02002725 h = p->req_cap;
2726 while (h) {
2727 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002728 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002729 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002730 free(h);
2731 h = h_next;
2732 }/* end while(h) */
2733
2734 h = p->rsp_cap;
2735 while (h) {
2736 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002737 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002738 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002739 free(h);
2740 h = h_next;
2741 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002742
Willy Tarreaubaaee002006-06-26 02:48:02 +02002743 s = p->srv;
2744 while (s) {
2745 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002746
Dragan Dosen026ef572019-04-30 00:56:20 +02002747
Willy Tarreauf6562792019-05-07 19:05:35 +02002748 task_destroy(s->warmup);
Willy Tarreau2e993902011-10-31 11:53:20 +01002749
Willy Tarreaua534fea2008-08-03 12:19:50 +02002750 free(s->id);
2751 free(s->cookie);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002752 free(s->hostname_dn);
Sárközi, László34c01792014-09-05 10:08:23 +02002753 free((char*)s->conf.file);
Olivier Houchard7fc3be72018-11-22 18:50:54 +01002754 free(s->idle_conns);
Olivier Houchard7fc3be72018-11-22 18:50:54 +01002755 free(s->safe_conns);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01002756 free(s->available_conns);
Olivier Houchardf1314812019-02-18 16:41:17 +01002757 free(s->curr_idle_thr);
Willy Tarreau17d45382016-12-22 21:16:08 +01002758
Christopher Fauletf61f33a2020-03-27 18:55:49 +01002759 if (s->use_ssl == 1 || s->check.use_ssl == 1 || (s->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01002760 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2761 xprt_get(XPRT_SSL)->destroy_srv(s);
2762 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002763 HA_SPIN_DESTROY(&s->lock);
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002764
2765 list_for_each_entry(srvdf, &server_deinit_list, list)
2766 srvdf->fct(s);
2767
Willy Tarreaubaaee002006-06-26 02:48:02 +02002768 free(s);
2769 s = s_next;
2770 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002771
Willy Tarreau4348fad2012-09-20 16:48:07 +02002772 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002773 /*
2774 * Zombie proxy, the listener just pretend to be up
2775 * because they still hold an opened fd.
2776 * Close it and give the listener its real state.
2777 */
2778 if (p->state == PR_STSTOPPED && l->state >= LI_ZOMBIE) {
2779 close(l->fd);
2780 l->state = LI_INIT;
2781 }
Willy Tarreauf6e2cc72010-09-03 10:38:17 +02002782 unbind_listener(l);
2783 delete_listener(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002784 LIST_DEL(&l->by_fe);
2785 LIST_DEL(&l->by_bind);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002786 free(l->name);
2787 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002788 free(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002789 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002790
Willy Tarreau4348fad2012-09-20 16:48:07 +02002791 /* Release unused SSL configs. */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002792 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01002793 if (bind_conf->xprt->destroy_bind_conf)
2794 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002795 free(bind_conf->file);
2796 free(bind_conf->arg);
2797 LIST_DEL(&bind_conf->by_fe);
2798 free(bind_conf);
2799 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02002800
Christopher Fauletd7c91962015-04-30 11:48:27 +02002801 flt_deinit(p);
2802
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002803 list_for_each_entry(pxdf, &proxy_deinit_list, list)
2804 pxdf->fct(p);
2805
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002806 free(p->desc);
2807 free(p->fwdfor_hdr_name);
2808
Olivier Houchard3f795f72019-04-17 22:51:06 +02002809 task_destroy(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002810
Willy Tarreaubafbe012017-11-24 17:34:44 +01002811 pool_destroy(p->req_cap_pool);
2812 pool_destroy(p->rsp_cap_pool);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002813 if (p->table)
2814 pool_destroy(p->table->pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002815
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002816 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002817 p = p->next;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002818 HA_SPIN_DESTROY(&p0->lbprm.lock);
2819 HA_SPIN_DESTROY(&p0->lock);
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002820 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002821 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02002822
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002823 while (ua) {
2824 uap = ua;
2825 ua = ua->next;
2826
Willy Tarreaua534fea2008-08-03 12:19:50 +02002827 free(uap->uri_prefix);
2828 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002829 free(uap->node);
2830 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002831
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002832 userlist_free(uap->userlist);
Christopher Fauletcb550132019-12-17 11:25:46 +01002833 deinit_act_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002834
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002835 free(uap);
2836 }
2837
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002838 userlist_free(userlist);
2839
David Carlier834cb2e2015-09-25 12:02:25 +01002840 cfg_unregister_sections();
2841
Christopher Faulet0132d062017-07-26 15:33:35 +02002842 deinit_log_buffers();
David Carlier834cb2e2015-09-25 12:02:25 +01002843
Willy Tarreaudd815982007-10-16 12:25:14 +02002844 protocol_unbind_all();
2845
Willy Tarreau05554e62016-12-21 20:46:26 +01002846 list_for_each_entry(pdf, &post_deinit_list, list)
2847 pdf->fct();
2848
Joe Williamsdf5b38f2010-12-29 17:05:48 +01002849 free(global.log_send_hostname); global.log_send_hostname = NULL;
Dragan Dosen43885c72015-10-01 13:18:13 +02002850 chunk_destroy(&global.log_tag);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002851 free(global.chroot); global.chroot = NULL;
2852 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002853 free(global.node); global.node = NULL;
2854 free(global.desc); global.desc = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002855 free(oldpids); oldpids = NULL;
Dragan Dosen4f014152020-06-18 16:56:47 +02002856 free(localpeer); localpeer = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02002857 task_destroy(idle_conn_task);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01002858 idle_conn_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002859
William Lallemand0f99e342011-10-12 17:50:54 +02002860 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
2861 LIST_DEL(&log->list);
2862 free(log);
2863 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01002864 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02002865 free(wl->s);
Willy Tarreau477ecd82010-01-03 21:12:30 +01002866 LIST_DEL(&wl->list);
2867 free(wl);
2868 }
2869
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002870 list_for_each_entry_safe(bol, bolb, &build_opts_list, list) {
2871 if (bol->must_free)
2872 free((void *)bol->str);
2873 LIST_DEL(&bol->list);
2874 free(bol);
2875 }
2876
Christopher Fauletff2613e2016-11-09 11:36:17 +01002877 vars_prune(&global.vars, NULL, NULL);
Willy Tarreau2455ceb2018-11-26 15:57:34 +01002878 pool_destroy_all();
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002879 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002880} /* end deinit() */
2881
Willy Tarreauf3ca5a02020-06-15 18:43:46 +02002882__attribute__((noreturn)) void deinit_and_exit(int status)
Tim Duesterhus26540552020-06-14 00:37:41 +02002883{
2884 deinit();
2885 exit(status);
2886}
William Lallemand72160322018-11-06 17:37:16 +01002887
Willy Tarreau918ff602011-07-25 16:33:49 +02002888/* Runs the polling loop */
Willy Tarreau3ebd55e2020-03-03 14:59:56 +01002889void run_poll_loop()
Willy Tarreau4f60f162007-04-08 16:39:58 +02002890{
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002891 int next, wake;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002892
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002893 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002894 while (1) {
Willy Tarreauc49ba522019-12-11 08:12:23 +01002895 wake_expired_tasks();
2896
William Lallemand1aab50b2018-06-07 09:46:01 +02002897 /* check if we caught some signals and process them in the
2898 first thread */
Willy Tarreaua7ad4ae2020-06-19 12:06:34 +02002899 if (signal_queue_len && tid == 0) {
2900 activity[tid].wake_signal++;
William Lallemand1aab50b2018-06-07 09:46:01 +02002901 signal_process_queue();
Willy Tarreaua7ad4ae2020-06-19 12:06:34 +02002902 }
2903
2904 /* Process a few tasks */
2905 process_runnable_tasks();
Willy Tarreau29857942009-05-10 09:01:21 +02002906
Willy Tarreau7067b3a2019-06-02 11:11:29 +02002907 /* also stop if we failed to cleanly stop all tasks */
2908 if (killed > 1)
2909 break;
2910
Willy Tarreau10146c92015-04-13 20:44:19 +02002911 /* expire immediately if events are pending */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002912 wake = 1;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02002913 if (thread_has_tasks())
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002914 activity[tid].wake_tasks++;
Olivier Houchard79321b92018-07-26 17:55:11 +02002915 else {
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002916 _HA_ATOMIC_OR(&sleeping_thread_mask, tid_bit);
2917 __ha_barrier_atomic_store();
Willy Tarreau95abd5b2020-03-23 09:33:32 +01002918 if (thread_has_tasks()) {
Olivier Houchard79321b92018-07-26 17:55:11 +02002919 activity[tid].wake_tasks++;
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002920 _HA_ATOMIC_AND(&sleeping_thread_mask, ~tid_bit);
Olivier Houchard79321b92018-07-26 17:55:11 +02002921 } else
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002922 wake = 0;
Olivier Houchard79321b92018-07-26 17:55:11 +02002923 }
Willy Tarreau10146c92015-04-13 20:44:19 +02002924
Willy Tarreau4f46a352020-03-23 09:27:28 +01002925 if (!wake) {
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002926 int i;
2927
2928 if (stopping) {
Willy Tarreaud6455742020-05-13 14:30:25 +02002929 if (_HA_ATOMIC_OR(&stopping_thread_mask, tid_bit) == tid_bit) {
2930 /* notify all threads that stopping was just set */
2931 for (i = 0; i < global.nbthread; i++)
Willy Tarreau369a2ef2020-06-29 19:23:19 +02002932 if (((all_threads_mask & ~stopping_thread_mask) >> i) & 1)
Willy Tarreaud6455742020-05-13 14:30:25 +02002933 wake_thread(i);
2934 }
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002935 }
Willy Tarreau4f46a352020-03-23 09:27:28 +01002936
2937 /* stop when there's nothing left to do */
2938 if ((jobs - unstoppable_jobs) == 0 &&
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002939 (stopping_thread_mask & all_threads_mask) == all_threads_mask) {
2940 /* wake all threads waiting on jobs==0 */
2941 for (i = 0; i < global.nbthread; i++)
2942 if (((all_threads_mask & ~tid_bit) >> i) & 1)
2943 wake_thread(i);
Willy Tarreau4f46a352020-03-23 09:27:28 +01002944 break;
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002945 }
Willy Tarreau4f46a352020-03-23 09:27:28 +01002946 }
2947
Willy Tarreauc49ba522019-12-11 08:12:23 +01002948 /* If we have to sleep, measure how long */
2949 next = wake ? TICK_ETERNITY : next_timer_expiry();
2950
Willy Tarreau58b458d2008-06-29 22:40:23 +02002951 /* The poller will ensure it returns around <next> */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002952 cur_poller.poll(&cur_poller, next, wake);
Emeric Brun64cc49c2017-10-03 14:46:45 +02002953
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002954 activity[tid].loops++;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002955 }
2956}
2957
Christopher Faulet1d17c102017-08-29 15:38:48 +02002958static void *run_thread_poll_loop(void *data)
2959{
Willy Tarreau082b6282019-05-22 14:42:12 +02002960 struct per_thread_alloc_fct *ptaf;
Christopher Faulet1d17c102017-08-29 15:38:48 +02002961 struct per_thread_init_fct *ptif;
2962 struct per_thread_deinit_fct *ptdf;
Willy Tarreau082b6282019-05-22 14:42:12 +02002963 struct per_thread_free_fct *ptff;
Willy Tarreau34a150c2019-06-11 09:16:41 +02002964 static int init_left = 0;
Willy Tarreauaf613e82020-06-05 08:40:51 +02002965 __decl_thread(static pthread_mutex_t init_mutex = PTHREAD_MUTEX_INITIALIZER);
2966 __decl_thread(static pthread_cond_t init_cond = PTHREAD_COND_INITIALIZER);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002967
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02002968 ha_set_tid((unsigned long)data);
Willy Tarreaud022e9c2019-09-24 08:25:15 +02002969 sched = &task_per_thread[tid];
Willy Tarreau91e6df02019-05-03 17:21:18 +02002970
Willy Tarreauf6178242019-05-21 19:46:58 +02002971#if (_POSIX_TIMERS > 0) && defined(_POSIX_THREAD_CPUTIME)
Willy Tarreau91e6df02019-05-03 17:21:18 +02002972#ifdef USE_THREAD
Willy Tarreau8323a372019-05-20 18:57:53 +02002973 pthread_getcpuclockid(pthread_self(), &ti->clock_id);
Willy Tarreau624dcbf2019-05-20 20:23:06 +02002974#else
Willy Tarreau8323a372019-05-20 18:57:53 +02002975 ti->clock_id = CLOCK_THREAD_CPUTIME_ID;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002976#endif
Willy Tarreau663fda42019-05-21 15:14:08 +02002977#endif
Willy Tarreau6ec902a2019-06-07 14:41:11 +02002978 /* Now, initialize one thread init at a time. This is better since
2979 * some init code is a bit tricky and may release global resources
2980 * after reallocating them locally. This will also ensure there is
2981 * no race on file descriptors allocation.
2982 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02002983#ifdef USE_THREAD
2984 pthread_mutex_lock(&init_mutex);
2985#endif
2986 /* The first thread must set the number of threads left */
2987 if (!init_left)
2988 init_left = global.nbthread;
2989 init_left--;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002990
Christopher Faulet1d17c102017-08-29 15:38:48 +02002991 tv_update_date(-1,-1);
2992
Willy Tarreau082b6282019-05-22 14:42:12 +02002993 /* per-thread alloc calls performed here are not allowed to snoop on
2994 * other threads, so they are free to initialize at their own rhythm
2995 * as long as they act as if they were alone. None of them may rely
2996 * on resources initialized by the other ones.
2997 */
2998 list_for_each_entry(ptaf, &per_thread_alloc_list, list) {
2999 if (!ptaf->fct()) {
3000 ha_alert("failed to allocate resources for thread %u.\n", tid);
3001 exit(1);
3002 }
3003 }
3004
Willy Tarreau3078e9f2019-05-20 10:50:43 +02003005 /* per-thread init calls performed here are not allowed to snoop on
3006 * other threads, so they are free to initialize at their own rhythm
3007 * as long as they act as if they were alone.
3008 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02003009 list_for_each_entry(ptif, &per_thread_init_list, list) {
3010 if (!ptif->fct()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003011 ha_alert("failed to initialize thread %u.\n", tid);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003012 exit(1);
3013 }
3014 }
3015
Willy Tarreau71092822019-06-10 09:51:04 +02003016 /* enabling protocols will result in fd_insert() calls to be performed,
3017 * we want all threads to have already allocated their local fd tables
Willy Tarreau34a150c2019-06-11 09:16:41 +02003018 * before doing so, thus only the last thread does it.
Willy Tarreau71092822019-06-10 09:51:04 +02003019 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02003020 if (init_left == 0)
Willy Tarreaue4d7c9d2019-06-10 10:14:52 +02003021 protocol_enable_all();
Willy Tarreau6ec902a2019-06-07 14:41:11 +02003022
Willy Tarreau34a150c2019-06-11 09:16:41 +02003023#ifdef USE_THREAD
3024 pthread_cond_broadcast(&init_cond);
3025 pthread_mutex_unlock(&init_mutex);
3026
3027 /* now wait for other threads to finish starting */
3028 pthread_mutex_lock(&init_mutex);
3029 while (init_left)
3030 pthread_cond_wait(&init_cond, &init_mutex);
3031 pthread_mutex_unlock(&init_mutex);
3032#endif
Willy Tarreau3078e9f2019-05-20 10:50:43 +02003033
Willy Tarreaua45a8b52019-12-06 16:31:45 +01003034#if defined(PR_SET_NO_NEW_PRIVS) && defined(USE_PRCTL)
3035 /* Let's refrain from using setuid executables. This way the impact of
3036 * an eventual vulnerability in a library remains limited. It may
3037 * impact external checks but who cares about them anyway ? In the
3038 * worst case it's possible to disable the option. Obviously we do this
3039 * in workers only. We can't hard-fail on this one as it really is
3040 * implementation dependent though we're interested in feedback, hence
3041 * the warning.
3042 */
3043 if (!(global.tune.options & GTUNE_INSECURE_SETUID) && !master) {
3044 static int warn_fail;
3045 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
3046 ha_warning("Failed to disable setuid, please report to developers with detailed "
3047 "information about your operating system. You can silence this warning "
3048 "by adding 'insecure-setuid-wanted' in the 'global' section.\n");
3049 }
3050 }
3051#endif
3052
Willy Tarreaud96f1122019-12-03 07:07:36 +01003053#if defined(RLIMIT_NPROC)
3054 /* all threads have started, it's now time to prevent any new thread
3055 * or process from starting. Obviously we do this in workers only. We
3056 * can't hard-fail on this one as it really is implementation dependent
3057 * though we're interested in feedback, hence the warning.
3058 */
3059 if (!(global.tune.options & GTUNE_INSECURE_FORK) && !master) {
3060 struct rlimit limit = { .rlim_cur = 0, .rlim_max = 0 };
3061 static int warn_fail;
3062
3063 if (setrlimit(RLIMIT_NPROC, &limit) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
3064 ha_warning("Failed to disable forks, please report to developers with detailed "
3065 "information about your operating system. You can silence this warning "
3066 "by adding 'insecure-fork-wanted' in the 'global' section.\n");
3067 }
3068 }
3069#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003070 run_poll_loop();
3071
3072 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
3073 ptdf->fct();
3074
Willy Tarreau082b6282019-05-22 14:42:12 +02003075 list_for_each_entry(ptff, &per_thread_free_list, list)
3076 ptff->fct();
3077
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003078#ifdef USE_THREAD
Olivier Houchardb23a61f2019-03-08 18:51:17 +01003079 _HA_ATOMIC_AND(&all_threads_mask, ~tid_bit);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003080 if (tid > 0)
3081 pthread_exit(NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003082#endif
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003083 return NULL;
3084}
Christopher Faulet1d17c102017-08-29 15:38:48 +02003085
William Dauchyf9af9d72019-11-17 15:47:16 +01003086/* set uid/gid depending on global settings */
3087static void set_identity(const char *program_name)
3088{
3089 if (global.gid) {
3090 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
3091 ha_warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
3092 " without 'uid'/'user' is generally useless.\n", program_name);
3093
3094 if (setgid(global.gid) == -1) {
3095 ha_alert("[%s.main()] Cannot set gid %d.\n", program_name, global.gid);
3096 protocol_unbind_all();
3097 exit(1);
3098 }
3099 }
3100
3101 if (global.uid && setuid(global.uid) == -1) {
3102 ha_alert("[%s.main()] Cannot set uid %d.\n", program_name, global.uid);
3103 protocol_unbind_all();
3104 exit(1);
3105 }
3106}
3107
Willy Tarreaubaaee002006-06-26 02:48:02 +02003108int main(int argc, char **argv)
3109{
3110 int err, retry;
3111 struct rlimit limit;
Emeric Bruncf20bf12010-10-22 16:06:11 +02003112 char errmsg[100];
Willy Tarreau269ab312012-09-05 08:02:48 +02003113 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003114
Olivier Houchard5fa300d2018-02-03 15:15:21 +01003115 setvbuf(stdout, NULL, _IONBF, 0);
Willy Tarreau5794fb02018-11-25 18:43:29 +01003116
Willy Tarreauff9c9142019-02-07 10:39:36 +01003117 /* this can only safely be done here, though it's optimized away by
3118 * the compiler.
3119 */
3120 if (MAX_PROCS < 1 || MAX_PROCS > LONGBITS) {
3121 ha_alert("MAX_PROCS value must be between 1 and %d inclusive; "
3122 "HAProxy was built with value %d, please fix it and rebuild.\n",
3123 LONGBITS, MAX_PROCS);
3124 exit(1);
3125 }
3126
Willy Tarreaubf696402019-03-01 10:09:28 +01003127 /* take a copy of initial limits before we possibly change them */
3128 getrlimit(RLIMIT_NOFILE, &limit);
3129 rlim_fd_cur_at_boot = limit.rlim_cur;
3130 rlim_fd_max_at_boot = limit.rlim_max;
3131
Willy Tarreau5794fb02018-11-25 18:43:29 +01003132 /* process all initcalls in order of potential dependency */
3133 RUN_INITCALLS(STG_PREPARE);
3134 RUN_INITCALLS(STG_LOCK);
3135 RUN_INITCALLS(STG_ALLOC);
3136 RUN_INITCALLS(STG_POOL);
3137 RUN_INITCALLS(STG_REGISTER);
3138 RUN_INITCALLS(STG_INIT);
3139
Emeric Bruncf20bf12010-10-22 16:06:11 +02003140 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003141 signal_register_fct(SIGQUIT, dump, SIGQUIT);
3142 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
3143 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
William Lallemand73b85e72017-06-01 17:38:51 +02003144 signal_register_fct(SIGUSR2, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003145
Willy Tarreaue437c442010-03-17 18:02:46 +01003146 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
3147 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
3148 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003149 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003150 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003151
Willy Tarreaudc23a922011-02-16 11:10:36 +01003152 /* ulimits */
3153 if (!global.rlimit_nofile)
3154 global.rlimit_nofile = global.maxsock;
3155
3156 if (global.rlimit_nofile) {
Willy Tarreaue5cfdac2019-03-01 10:32:05 +01003157 limit.rlim_cur = global.rlimit_nofile;
3158 limit.rlim_max = MAX(rlim_fd_max_at_boot, limit.rlim_cur);
3159
Willy Tarreaudc23a922011-02-16 11:10:36 +01003160 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
Willy Tarreauef635472016-06-21 11:48:18 +02003161 getrlimit(RLIMIT_NOFILE, &limit);
William Dauchy0fec3ab2019-10-27 20:08:11 +01003162 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3163 ha_alert("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n",
3164 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
3165 if (!(global.mode & MODE_MWORKER))
3166 exit(1);
3167 }
3168 else {
3169 /* try to set it to the max possible at least */
3170 limit.rlim_cur = limit.rlim_max;
3171 if (setrlimit(RLIMIT_NOFILE, &limit) != -1)
3172 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau164dd0b2016-06-21 11:51:59 +02003173
William Dauchy0fec3ab2019-10-27 20:08:11 +01003174 ha_warning("[%s.main()] Cannot raise FD limit to %d, limit is %d. "
3175 "This will fail in >= v2.3\n",
3176 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
3177 global.rlimit_nofile = limit.rlim_cur;
3178 }
Willy Tarreaudc23a922011-02-16 11:10:36 +01003179 }
3180 }
3181
3182 if (global.rlimit_memmax) {
3183 limit.rlim_cur = limit.rlim_max =
Willy Tarreau70060452015-12-14 12:46:07 +01003184 global.rlimit_memmax * 1048576ULL;
Willy Tarreaudc23a922011-02-16 11:10:36 +01003185#ifdef RLIMIT_AS
3186 if (setrlimit(RLIMIT_AS, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003187 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3188 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
3189 argv[0], global.rlimit_memmax);
3190 if (!(global.mode & MODE_MWORKER))
3191 exit(1);
3192 }
3193 else
3194 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs."
3195 "This will fail in >= v2.3\n",
3196 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01003197 }
3198#else
3199 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003200 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3201 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
3202 argv[0], global.rlimit_memmax);
3203 if (!(global.mode & MODE_MWORKER))
3204 exit(1);
3205 }
3206 else
Willy Tarreauab8b6a42020-07-02 15:38:35 +02003207 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs."
William Dauchy0fec3ab2019-10-27 20:08:11 +01003208 "This will fail in >= v2.3\n",
3209 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01003210 }
3211#endif
3212 }
3213
Olivier Houchardf73629d2017-04-05 22:33:04 +02003214 if (old_unixsocket) {
William Lallemand85b0bd92017-06-01 17:38:53 +02003215 if (strcmp("/dev/null", old_unixsocket) != 0) {
3216 if (get_old_sockets(old_unixsocket) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003217 ha_alert("Failed to get the sockets from the old process!\n");
William Lallemand85b0bd92017-06-01 17:38:53 +02003218 if (!(global.mode & MODE_MWORKER))
3219 exit(1);
3220 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02003221 }
3222 }
William Lallemand85b0bd92017-06-01 17:38:53 +02003223 get_cur_unixsocket();
3224
Willy Tarreaubaaee002006-06-26 02:48:02 +02003225 /* We will loop at most 100 times with 10 ms delay each time.
3226 * That's at most 1 second. We only send a signal to old pids
3227 * if we cannot grab at least one port.
3228 */
3229 retry = MAX_START_RETRIES;
3230 err = ERR_NONE;
3231 while (retry >= 0) {
3232 struct timeval w;
3233 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01003234 /* exit the loop on no error or fatal error */
3235 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02003236 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02003237 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02003238 break;
3239
3240 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
3241 * listening sockets. So on those platforms, it would be wiser to
3242 * simply send SIGUSR1, which will not be undoable.
3243 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02003244 if (tell_old_pids(SIGTTOU) == 0) {
3245 /* no need to wait if we can't contact old pids */
3246 retry = 0;
3247 continue;
3248 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003249 /* give some time to old processes to stop listening */
3250 w.tv_sec = 0;
3251 w.tv_usec = 10*1000;
3252 select(0, NULL, NULL, NULL, &w);
3253 retry--;
3254 }
3255
3256 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01003257 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02003258 if (retry != MAX_START_RETRIES && nb_oldpids) {
3259 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003260 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02003261 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003262 exit(1);
3263 }
3264
William Lallemand944e6192018-11-21 15:48:31 +01003265 if (!(global.mode & MODE_MWORKER_WAIT) && listeners == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003266 ha_alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003267 /* Note: we don't have to send anything to the old pids because we
3268 * never stopped them. */
3269 exit(1);
3270 }
3271
Emeric Bruncf20bf12010-10-22 16:06:11 +02003272 err = protocol_bind_all(errmsg, sizeof(errmsg));
3273 if ((err & ~ERR_WARN) != ERR_NONE) {
3274 if ((err & ERR_ALERT) || (err & ERR_WARN))
Christopher Faulet767a84b2017-11-24 16:50:31 +01003275 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Emeric Bruncf20bf12010-10-22 16:06:11 +02003276
Christopher Faulet767a84b2017-11-24 16:50:31 +01003277 ha_alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02003278 protocol_unbind_all(); /* cleanup everything we can */
3279 if (nb_oldpids)
3280 tell_old_pids(SIGTTIN);
3281 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02003282 } else if (err & ERR_WARN) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003283 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02003284 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02003285 /* Ok, all listener should now be bound, close any leftover sockets
3286 * the previous process gave us, we don't need them anymore
3287 */
3288 while (xfer_sock_list != NULL) {
3289 struct xfer_sock_list *tmpxfer = xfer_sock_list->next;
3290 close(xfer_sock_list->fd);
3291 free(xfer_sock_list->iface);
3292 free(xfer_sock_list->namespace);
3293 free(xfer_sock_list);
3294 xfer_sock_list = tmpxfer;
3295 }
Willy Tarreaudd815982007-10-16 12:25:14 +02003296
Willy Tarreaubaaee002006-06-26 02:48:02 +02003297 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003298 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
3299 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003300
Willy Tarreaubaaee002006-06-26 02:48:02 +02003301 /* MODE_QUIET can inhibit alerts and warnings below this line */
3302
PiBa-NL149a81a2017-12-25 21:03:31 +01003303 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL) {
3304 /* either stdin/out/err are already closed or should stay as they are. */
3305 if ((global.mode & MODE_DAEMON)) {
3306 /* daemon mode re-executing, stdin/stdout/stderr are already closed so keep quiet */
3307 global.mode &= ~MODE_VERBOSE;
3308 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3309 }
3310 } else {
3311 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
3312 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003313 stdio_quiet(-1);
PiBa-NL149a81a2017-12-25 21:03:31 +01003314 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003315 }
3316
3317 /* open log & pid files before the chroot */
William Lallemand80293002017-11-06 11:00:03 +01003318 if ((global.mode & MODE_DAEMON || global.mode & MODE_MWORKER) && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003319 unlink(global.pidfile);
3320 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
3321 if (pidfd < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003322 ha_alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003323 if (nb_oldpids)
3324 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02003325 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003326 exit(1);
3327 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003328 }
3329
Willy Tarreaub38651a2007-03-24 17:24:39 +01003330 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003331 ha_alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
3332 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02003333 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01003334 exit(1);
3335 }
3336
Willy Tarreau4e30ed72009-02-04 18:02:48 +01003337 /* If the user is not root, we'll still let him try the configuration
3338 * but we inform him that unexpected behaviour may occur.
3339 */
3340 if ((global.last_checks & LSTCHK_NETADM) && getuid())
Christopher Faulet767a84b2017-11-24 16:50:31 +01003341 ha_warning("[%s.main()] Some options which require full privileges"
3342 " might not work well.\n"
3343 "", argv[0]);
Willy Tarreau4e30ed72009-02-04 18:02:48 +01003344
William Lallemand095ba4c2017-06-01 17:38:50 +02003345 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
3346
3347 /* chroot if needed */
3348 if (global.chroot != NULL) {
3349 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003350 ha_alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003351 if (nb_oldpids)
3352 tell_old_pids(SIGTTIN);
3353 protocol_unbind_all();
3354 exit(1);
3355 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02003356 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02003357 }
3358
William Lallemand944e6192018-11-21 15:48:31 +01003359 if (nb_oldpids && !(global.mode & MODE_MWORKER_WAIT))
Willy Tarreaubb545b42010-08-25 12:58:59 +02003360 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003361
William Lallemand27edc4b2019-05-07 17:49:33 +02003362 /* send a SIGTERM to workers who have a too high reloads number */
3363 if ((global.mode & MODE_MWORKER) && !(global.mode & MODE_MWORKER_WAIT))
3364 mworker_kill_max_reloads(SIGTERM);
3365
William Lallemand8a361b52017-06-20 11:20:33 +02003366 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
3367 nb_oldpids = 0;
3368 free(oldpids);
3369 oldpids = NULL;
3370 }
3371
3372
Willy Tarreaubaaee002006-06-26 02:48:02 +02003373 /* Note that any error at this stage will be fatal because we will not
3374 * be able to restart the old pids.
3375 */
3376
William Dauchyf9af9d72019-11-17 15:47:16 +01003377 if ((global.mode & (MODE_MWORKER | MODE_DAEMON)) == 0)
3378 set_identity(argv[0]);
Willy Tarreau636848a2019-04-15 19:38:50 +02003379
Willy Tarreaubaaee002006-06-26 02:48:02 +02003380 /* check ulimits */
3381 limit.rlim_cur = limit.rlim_max = 0;
3382 getrlimit(RLIMIT_NOFILE, &limit);
3383 if (limit.rlim_cur < global.maxsock) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003384 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3385 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
3386 "Please raise 'ulimit-n' to %d or more to avoid any trouble.\n",
3387 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
3388 global.maxsock);
3389 if (!(global.mode & MODE_MWORKER))
3390 exit(1);
3391 }
3392 else
3393 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
3394 "Please raise 'ulimit-n' to %d or more to avoid any trouble."
3395 "This will fail in >= v2.3\n",
3396 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
3397 global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003398 }
3399
William Lallemand944e6192018-11-21 15:48:31 +01003400 if (global.mode & (MODE_DAEMON | MODE_MWORKER | MODE_MWORKER_WAIT)) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003401 struct proxy *px;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003402 struct peers *curpeers;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003403 int ret = 0;
3404 int proc;
William Lallemande1340412017-12-28 16:09:36 +01003405 int devnullfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003406
William Lallemand095ba4c2017-06-01 17:38:50 +02003407 /*
3408 * if daemon + mworker: must fork here to let a master
3409 * process live in background before forking children
3410 */
William Lallemand73b85e72017-06-01 17:38:51 +02003411
3412 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)
3413 && (global.mode & MODE_MWORKER)
3414 && (global.mode & MODE_DAEMON)) {
William Lallemand095ba4c2017-06-01 17:38:50 +02003415 ret = fork();
3416 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003417 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003418 protocol_unbind_all();
3419 exit(1); /* there has been an error */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003420 } else if (ret > 0) { /* parent leave to daemonize */
William Lallemand095ba4c2017-06-01 17:38:50 +02003421 exit(0);
William Lallemandbfd8eb52018-07-04 15:31:23 +02003422 } else /* change the process group ID in the child (master process) */
3423 setsid();
William Lallemand095ba4c2017-06-01 17:38:50 +02003424 }
William Lallemande20b6a62017-06-01 17:38:55 +02003425
William Lallemande20b6a62017-06-01 17:38:55 +02003426
William Lallemanddeed7802017-11-06 11:00:04 +01003427 /* if in master-worker mode, write the PID of the father */
3428 if (global.mode & MODE_MWORKER) {
3429 char pidstr[100];
Willy Tarreau76a80c72019-06-22 07:41:38 +02003430 snprintf(pidstr, sizeof(pidstr), "%d\n", (int)getpid());
Willy Tarreau46ec48b2018-01-23 19:20:19 +01003431 if (pidfd >= 0)
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01003432 DISGUISE(write(pidfd, pidstr, strlen(pidstr)));
William Lallemanddeed7802017-11-06 11:00:04 +01003433 }
3434
Willy Tarreaubaaee002006-06-26 02:48:02 +02003435 /* the father launches the required number of processes */
William Lallemand944e6192018-11-21 15:48:31 +01003436 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +02003437 if (global.mode & MODE_MWORKER)
3438 mworker_ext_launch_all();
William Lallemand944e6192018-11-21 15:48:31 +01003439 for (proc = 0; proc < global.nbproc; proc++) {
3440 ret = fork();
3441 if (ret < 0) {
3442 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
3443 protocol_unbind_all();
3444 exit(1); /* there has been an error */
3445 }
Willy Tarreau52bf8392020-03-08 00:42:37 +01003446 else if (ret == 0) { /* child breaks here */
3447 ha_random_jump96(relative_pid);
William Lallemand944e6192018-11-21 15:48:31 +01003448 break;
Willy Tarreau52bf8392020-03-08 00:42:37 +01003449 }
William Lallemand944e6192018-11-21 15:48:31 +01003450 if (pidfd >= 0 && !(global.mode & MODE_MWORKER)) {
3451 char pidstr[100];
3452 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01003453 DISGUISE(write(pidfd, pidstr, strlen(pidstr)));
William Lallemand944e6192018-11-21 15:48:31 +01003454 }
3455 if (global.mode & MODE_MWORKER) {
3456 struct mworker_proc *child;
William Lallemandce83b4a2018-10-26 14:47:30 +02003457
William Lallemand220567e2018-11-21 18:04:53 +01003458 ha_notice("New worker #%d (%d) forked\n", relative_pid, ret);
William Lallemand944e6192018-11-21 15:48:31 +01003459 /* find the right mworker_proc */
3460 list_for_each_entry(child, &proc_list, list) {
3461 if (child->relative_pid == relative_pid &&
William Lallemand8f7069a2019-04-12 16:09:23 +02003462 child->reloads == 0 && child->options & PROC_O_TYPE_WORKER) {
William Lallemand944e6192018-11-21 15:48:31 +01003463 child->timestamp = now.tv_sec;
3464 child->pid = ret;
William Lallemand1dc69632019-06-12 19:11:33 +02003465 child->version = strdup(haproxy_version);
William Lallemand944e6192018-11-21 15:48:31 +01003466 break;
3467 }
William Lallemandce83b4a2018-10-26 14:47:30 +02003468 }
3469 }
William Lallemandbc193052018-09-11 10:06:26 +02003470
William Lallemand944e6192018-11-21 15:48:31 +01003471 relative_pid++; /* each child will get a different one */
3472 pid_bit <<= 1;
3473 }
3474 } else {
3475 /* wait mode */
3476 global.nbproc = 1;
3477 proc = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003478 }
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003479
3480#ifdef USE_CPU_AFFINITY
3481 if (proc < global.nbproc && /* child */
Willy Tarreauff9c9142019-02-07 10:39:36 +01003482 proc < MAX_PROCS && /* only the first 32/64 processes may be pinned */
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003483 global.cpu_map.proc[proc]) /* only do this if the process has a CPU map */
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003484#ifdef __FreeBSD__
Olivier Houchard97148f62017-08-16 17:29:11 +02003485 {
3486 cpuset_t cpuset;
3487 int i;
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003488 unsigned long cpu_map = global.cpu_map.proc[proc];
Olivier Houchard97148f62017-08-16 17:29:11 +02003489
3490 CPU_ZERO(&cpuset);
3491 while ((i = ffsl(cpu_map)) > 0) {
3492 CPU_SET(i - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003493 cpu_map &= ~(1UL << (i - 1));
Olivier Houchard97148f62017-08-16 17:29:11 +02003494 }
3495 ret = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(cpuset), &cpuset);
3496 }
David Carlier5e4c8e22019-09-13 05:12:58 +01003497#elif defined(__linux__)
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003498 sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map.proc[proc]);
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003499#endif
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003500#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02003501 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02003502 if (pidfd >= 0) {
3503 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
3504 close(pidfd);
3505 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02003506
3507 /* We won't ever use this anymore */
Willy Tarreaud137dd32010-08-25 12:49:05 +02003508 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003509
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003510 if (proc == global.nbproc) {
William Lallemand944e6192018-11-21 15:48:31 +01003511 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003512
3513 if ((!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
3514 (global.mode & MODE_DAEMON)) {
3515 /* detach from the tty, this is required to properly daemonize. */
William Lallemande1340412017-12-28 16:09:36 +01003516 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL))
3517 stdio_quiet(-1);
3518
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003519 global.mode &= ~MODE_VERBOSE;
3520 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003521 }
3522
William Lallemandb3f2be32018-09-11 10:06:18 +02003523 mworker_loop();
William Lallemand1499b9b2017-06-07 15:04:47 +02003524 /* should never get there */
3525 exit(EXIT_FAILURE);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003526 }
William Lallemandcf4e4962017-06-08 19:05:48 +02003527#if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH)
Grant Zhang872f9c22017-01-21 01:10:18 +00003528 ssl_free_dh();
3529#endif
William Lallemand1499b9b2017-06-07 15:04:47 +02003530 exit(0); /* parent must leave */
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003531 }
3532
William Lallemandcb11fd22017-06-01 17:38:52 +02003533 /* child must never use the atexit function */
3534 atexit_flag = 0;
3535
William Lallemandbc193052018-09-11 10:06:26 +02003536 /* close useless master sockets */
3537 if (global.mode & MODE_MWORKER) {
3538 struct mworker_proc *child, *it;
3539 master = 0;
3540
William Lallemand309dc9a2018-10-26 14:47:45 +02003541 mworker_cli_proxy_stop();
3542
William Lallemandbc193052018-09-11 10:06:26 +02003543 /* free proc struct of other processes */
3544 list_for_each_entry_safe(child, it, &proc_list, list) {
William Lallemandce83b4a2018-10-26 14:47:30 +02003545 /* close the FD of the master side for all
3546 * workers, we don't need to close the worker
3547 * side of other workers since it's done with
3548 * the bind_proc */
Tim Duesterhus742e0f92018-11-25 20:03:39 +01003549 if (child->ipc_fd[0] >= 0)
3550 close(child->ipc_fd[0]);
William Lallemandce83b4a2018-10-26 14:47:30 +02003551 if (child->relative_pid == relative_pid &&
3552 child->reloads == 0) {
3553 /* keep this struct if this is our pid */
3554 proc_self = child;
William Lallemandbc193052018-09-11 10:06:26 +02003555 continue;
William Lallemandce83b4a2018-10-26 14:47:30 +02003556 }
William Lallemandbc193052018-09-11 10:06:26 +02003557 LIST_DEL(&child->list);
Tim Duesterhus9b7a9762019-05-16 20:23:22 +02003558 mworker_free_child(child);
3559 child = NULL;
William Lallemandbc193052018-09-11 10:06:26 +02003560 }
3561 }
Willy Tarreau1605c7a2018-01-23 19:01:49 +01003562
William Lallemande1340412017-12-28 16:09:36 +01003563 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
3564 devnullfd = open("/dev/null", O_RDWR, 0);
3565 if (devnullfd < 0) {
3566 ha_alert("Cannot open /dev/null\n");
3567 exit(EXIT_FAILURE);
3568 }
3569 }
3570
William Lallemand095ba4c2017-06-01 17:38:50 +02003571 /* Must chroot and setgid/setuid in the children */
3572 /* chroot if needed */
3573 if (global.chroot != NULL) {
3574 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003575 ha_alert("[%s.main()] Cannot chroot1(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003576 if (nb_oldpids)
3577 tell_old_pids(SIGTTIN);
3578 protocol_unbind_all();
3579 exit(1);
3580 }
3581 }
3582
3583 free(global.chroot);
3584 global.chroot = NULL;
William Dauchyf9af9d72019-11-17 15:47:16 +01003585 set_identity(argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003586
William Lallemand7f80eb22017-05-26 18:19:55 +02003587 /* pass through every cli socket, and check if it's bound to
3588 * the current process and if it exposes listeners sockets.
3589 * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork.
3590 * */
3591
3592 if (global.stats_fe) {
3593 struct bind_conf *bind_conf;
3594
3595 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3596 if (bind_conf->level & ACCESS_FD_LISTENERS) {
3597 if (!bind_conf->bind_proc || bind_conf->bind_proc & (1UL << proc)) {
3598 global.tune.options |= GTUNE_SOCKET_TRANSFER;
3599 break;
3600 }
3601 }
3602 }
3603 }
3604
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003605 /* we might have to unbind some proxies from some processes */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003606 px = proxies_list;
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003607 while (px != NULL) {
3608 if (px->bind_proc && px->state != PR_STSTOPPED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02003609 if (!(px->bind_proc & (1UL << proc))) {
3610 if (global.tune.options & GTUNE_SOCKET_TRANSFER)
3611 zombify_proxy(px);
3612 else
3613 stop_proxy(px);
3614 }
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003615 }
3616 px = px->next;
3617 }
3618
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003619 /* we might have to unbind some peers sections from some processes */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003620 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003621 if (!curpeers->peers_fe)
3622 continue;
3623
3624 if (curpeers->peers_fe->bind_proc & (1UL << proc))
3625 continue;
3626
3627 stop_proxy(curpeers->peers_fe);
3628 /* disable this peer section so that it kills itself */
Willy Tarreau47c8c022015-09-28 16:39:25 +02003629 signal_unregister_handler(curpeers->sighandler);
Olivier Houchard3f795f72019-04-17 22:51:06 +02003630 task_destroy(curpeers->sync_task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003631 curpeers->sync_task = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02003632 task_destroy(curpeers->peers_fe->task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003633 curpeers->peers_fe->task = NULL;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003634 curpeers->peers_fe = NULL;
3635 }
3636
William Lallemand2e8fad92018-11-13 16:18:23 +01003637 /*
3638 * This is only done in daemon mode because we might want the
3639 * logs on stdout in mworker mode. If we're NOT in QUIET mode,
3640 * we should now close the 3 first FDs to ensure that we can
3641 * detach from the TTY. We MUST NOT do it in other cases since
3642 * it would have already be done, and 0-2 would have been
3643 * affected to listening sockets
Willy Tarreaubaaee002006-06-26 02:48:02 +02003644 */
William Lallemand2e8fad92018-11-13 16:18:23 +01003645 if ((global.mode & MODE_DAEMON) &&
3646 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003647 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003648 stdio_quiet(devnullfd);
Willy Tarreau106cb762008-11-16 07:40:34 +01003649 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003650 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3651 }
3652 pid = getpid(); /* update child's pid */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003653 if (!(global.mode & MODE_MWORKER)) /* in mworker mode we don't want a new pgid for the children */
3654 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02003655 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003656 }
3657
William Dauchye039f262019-11-17 15:47:15 +01003658 /* try our best to re-enable core dumps depending on system capabilities.
3659 * What is addressed here :
3660 * - remove file size limits
3661 * - remove core size limits
3662 * - mark the process dumpable again if it lost it due to user/group
3663 */
3664 if (global.tune.options & GTUNE_SET_DUMPABLE) {
3665 limit.rlim_cur = limit.rlim_max = RLIM_INFINITY;
3666
3667#if defined(RLIMIT_FSIZE)
3668 if (setrlimit(RLIMIT_FSIZE, &limit) == -1) {
3669 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3670 ha_alert("[%s.main()] Failed to set the raise the maximum "
3671 "file size.\n", argv[0]);
3672 if (!(global.mode & MODE_MWORKER))
3673 exit(1);
3674 }
3675 else
3676 ha_warning("[%s.main()] Failed to set the raise the maximum "
3677 "file size. This will fail in >= v2.3\n", argv[0]);
3678 }
3679#endif
3680
3681#if defined(RLIMIT_CORE)
3682 if (setrlimit(RLIMIT_CORE, &limit) == -1) {
3683 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3684 ha_alert("[%s.main()] Failed to set the raise the core "
3685 "dump size.\n", argv[0]);
3686 if (!(global.mode & MODE_MWORKER))
3687 exit(1);
3688 }
3689 else
3690 ha_warning("[%s.main()] Failed to set the raise the core "
3691 "dump size. This will fail in >= v2.3\n", argv[0]);
3692 }
3693#endif
3694
3695#if defined(USE_PRCTL)
3696 if (prctl(PR_SET_DUMPABLE, 1, 0, 0, 0) == -1)
3697 ha_warning("[%s.main()] Failed to set the dumpable flag, "
3698 "no core will be dumped.\n", argv[0]);
3699#endif
3700 }
3701
Christopher Faulete3a5e352017-10-24 13:53:54 +02003702 global.mode &= ~MODE_STARTING;
Willy Tarreau4f60f162007-04-08 16:39:58 +02003703 /*
3704 * That's it : the central polling loop. Run until we stop.
3705 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02003706#ifdef USE_THREAD
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003707 {
William Lallemand1aab50b2018-06-07 09:46:01 +02003708 sigset_t blocked_sig, old_sig;
Willy Tarreauc40efc12019-05-03 09:22:44 +02003709 int i;
3710
William Lallemand1aab50b2018-06-07 09:46:01 +02003711 /* ensure the signals will be blocked in every thread */
3712 sigfillset(&blocked_sig);
3713 sigdelset(&blocked_sig, SIGPROF);
3714 sigdelset(&blocked_sig, SIGBUS);
3715 sigdelset(&blocked_sig, SIGFPE);
3716 sigdelset(&blocked_sig, SIGILL);
3717 sigdelset(&blocked_sig, SIGSEGV);
3718 pthread_sigmask(SIG_SETMASK, &blocked_sig, &old_sig);
3719
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003720 /* Create nbthread-1 thread. The first thread is the current process */
David Carliera92c5ce2019-09-13 05:03:12 +01003721 ha_thread_info[0].pthread = pthread_self();
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003722 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003723 pthread_create(&ha_thread_info[i].pthread, NULL, &run_thread_poll_loop, (void *)(long)i);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003724
Christopher Faulet62519022017-10-16 15:49:32 +02003725#ifdef USE_CPU_AFFINITY
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003726 /* Now the CPU affinity for all threads */
Willy Tarreau7764a572019-07-16 15:10:34 +02003727 if (global.cpu_map.proc_t1[relative_pid-1])
3728 global.cpu_map.thread[0] &= global.cpu_map.proc_t1[relative_pid-1];
3729
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003730 for (i = 0; i < global.nbthread; i++) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003731 if (global.cpu_map.proc[relative_pid-1])
Willy Tarreau81492c92019-05-03 09:41:23 +02003732 global.cpu_map.thread[i] &= global.cpu_map.proc[relative_pid-1];
Christopher Faulet62519022017-10-16 15:49:32 +02003733
Willy Tarreau421f02e2018-01-20 18:19:22 +01003734 if (i < MAX_THREADS && /* only the first 32/64 threads may be pinned */
Willy Tarreau81492c92019-05-03 09:41:23 +02003735 global.cpu_map.thread[i]) {/* only do this if the thread has a THREAD map */
David Carlier5e4c8e22019-09-13 05:12:58 +01003736#if defined(__APPLE__)
3737 int j;
3738 unsigned long cpu_map = global.cpu_map.thread[i];
3739
3740 while ((j = ffsl(cpu_map)) > 0) {
3741 thread_affinity_policy_data_t cpu_set = { j - 1 };
3742 thread_port_t mthread = pthread_mach_thread_np(ha_thread_info[i].pthread);
3743 thread_policy_set(mthread, THREAD_AFFINITY_POLICY, (thread_policy_t)&cpu_set, 1);
3744 cpu_map &= ~(1UL << (j - 1));
3745 }
3746#else
Olivier Houchard829aa242017-12-01 18:19:43 +01003747#if defined(__FreeBSD__) || defined(__NetBSD__)
3748 cpuset_t cpuset;
3749#else
3750 cpu_set_t cpuset;
3751#endif
3752 int j;
Willy Tarreau81492c92019-05-03 09:41:23 +02003753 unsigned long cpu_map = global.cpu_map.thread[i];
Olivier Houchard829aa242017-12-01 18:19:43 +01003754
3755 CPU_ZERO(&cpuset);
3756
3757 while ((j = ffsl(cpu_map)) > 0) {
3758 CPU_SET(j - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003759 cpu_map &= ~(1UL << (j - 1));
Olivier Houchard829aa242017-12-01 18:19:43 +01003760 }
David Carliera92c5ce2019-09-13 05:03:12 +01003761 pthread_setaffinity_np(ha_thread_info[i].pthread,
Olivier Houchard829aa242017-12-01 18:19:43 +01003762 sizeof(cpuset), &cpuset);
David Carlier5e4c8e22019-09-13 05:12:58 +01003763#endif
Olivier Houchard829aa242017-12-01 18:19:43 +01003764 }
Christopher Faulet1d17c102017-08-29 15:38:48 +02003765 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003766#endif /* !USE_CPU_AFFINITY */
3767
William Lallemand1aab50b2018-06-07 09:46:01 +02003768 /* when multithreading we need to let only the thread 0 handle the signals */
William Lallemandd3801c12018-09-11 10:06:23 +02003769 haproxy_unblock_signals();
William Lallemand1aab50b2018-06-07 09:46:01 +02003770
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003771 /* Finally, start the poll loop for the first thread */
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003772 run_thread_poll_loop(0);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003773
3774 /* Wait the end of other threads */
3775 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003776 pthread_join(ha_thread_info[i].pthread, NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003777
Christopher Fauletb79a94c2017-05-30 15:34:30 +02003778#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
3779 show_lock_stats();
3780#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003781 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003782#else /* ! USE_THREAD */
William Lallemandd3801c12018-09-11 10:06:23 +02003783 haproxy_unblock_signals();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003784 run_thread_poll_loop(0);
Christopher Faulet62519022017-10-16 15:49:32 +02003785#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003786
Tim Duesterhus0a3b43d2020-06-14 00:37:42 +02003787 deinit_and_exit(0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003788}
3789
Willy Tarreaubaaee002006-06-26 02:48:02 +02003790/*
3791 * Local variables:
3792 * c-indent-level: 8
3793 * c-basic-offset: 8
3794 * End:
3795 */