blob: 44e4ff32b0ce4b39533e57f63f97f352afdb2394 [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 Tarreaudcc048a2020-06-04 19:11:43 +020081#include <haproxy/acl.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020082#include <haproxy/auth.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020083#include <haproxy/api.h>
Willy Tarreau6c3a6812020-03-06 18:57:15 +010084#include <import/sha1.h>
85
Willy Tarreau8d366972020-05-27 16:10:29 +020086#include <haproxy/base64.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020087#include <common/cfgparse.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020088#include <haproxy/chunk.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020089#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020090#include <haproxy/connection.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020091#include <haproxy/dns.h>
Willy Tarreau2741c8c2020-06-02 11:28:02 +020092#include <haproxy/dynbuf.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020093#include <haproxy/errors.h>
Willy Tarreau86416052020-06-04 09:20:54 +020094#include <haproxy/hlua.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020095#include <haproxy/http_rules.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020096#include <haproxy/pool.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020097#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020098#include <haproxy/listener.h>
Willy Tarreaub5abe5b2020-06-04 14:07:37 +020099#include <haproxy/mworker.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +0200100#include <haproxy/namespace.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +0200101#include <haproxy/net_helper.h>
Willy Tarreau6019fab2020-05-27 16:26:00 +0200102#include <haproxy/openssl-compat.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +0200103#include <haproxy/pattern.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +0200104#include <haproxy/peers.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +0200105#include <haproxy/sample.h>
Willy Tarreau7cd8b6e2020-06-02 17:32:26 +0200106#include <haproxy/regex.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +0200107#include <haproxy/session.h>
Willy Tarreau3727a8a2020-06-04 17:37:26 +0200108#include <haproxy/signal.h>
Willy Tarreau209108d2020-06-04 20:30:20 +0200109#include <haproxy/ssl_sock.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +0200110#include <haproxy/tools.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +0200111#include <haproxy/time.h>
Willy Tarreau8c42b8a2020-06-04 19:27:34 +0200112#include <haproxy/uri_auth-t.h>
Willy Tarreaud6788052020-05-27 15:59:00 +0200113#include <haproxy/version.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +0200114#include <haproxy/task.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +0200115#include <haproxy/thread.h>
Willy Tarreaua1718922020-06-04 16:25:31 +0200116#include <haproxy/vars.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200117
Willy Tarreau278161c2020-06-04 11:18:28 +0200118#include <haproxy/capture-t.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +0200119#include <types/filters.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +0200120#include <haproxy/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200121
Willy Tarreaua04ded52020-06-02 10:29:48 +0200122#include <haproxy/activity.h>
Willy Tarreauaa74c4e2020-06-04 10:19:23 +0200123#include <haproxy/arg.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200124#include <proto/backend.h>
Willy Tarreau0f6ffd62020-06-03 19:33:00 +0200125#include <haproxy/fd.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +0200126#include <proto/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200127#include <proto/log.h>
Willy Tarreau2dd7c352020-06-03 15:26:55 +0200128#include <haproxy/protocol.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +0200129#include <proto/http_ana.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200130#include <proto/proxy.h>
131#include <proto/queue.h>
132#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +0200133#include <proto/stream.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200134
Willy Tarreau7b5654f2019-03-29 21:30:17 +0100135/* array of init calls for older platforms */
136DECLARE_INIT_STAGES;
137
Willy Tarreau477ecd82010-01-03 21:12:30 +0100138/* list of config files */
139static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200140int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100141int relative_pid = 1; /* process id starting at 1 */
Willy Tarreau387bd4f2017-11-10 19:08:14 +0100142unsigned long pid_bit = 1; /* bit corresponding to the process id */
Willy Tarreaua38a7172019-02-02 17:11:28 +0100143unsigned long all_proc_mask = 1; /* mask of all processes */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200144
Willy Tarreauf8ea00e2020-03-12 17:24:53 +0100145volatile unsigned long sleeping_thread_mask = 0; /* Threads that are about to sleep in poll() */
Willy Tarreau4b3f27b2020-03-12 17:28:01 +0100146volatile unsigned long stopping_thread_mask = 0; /* Threads acknowledged stopping */
Willy Tarreauf8ea00e2020-03-12 17:24:53 +0100147
Willy Tarreaubaaee002006-06-26 02:48:02 +0200148/* global options */
149struct global global = {
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100150 .hard_stop_after = TICK_ETERNITY,
Willy Tarreau247a13a2012-11-15 17:38:15 +0100151 .nbproc = 1,
Willy Tarreau149ab772019-01-26 14:27:06 +0100152 .nbthread = 0,
William Lallemand5f232402012-04-05 18:02:55 +0200153 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200154 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
William Lallemand9d5f5482012-11-07 16:12:57 +0100155 .maxzlibmem = 0,
William Lallemandd85f9172012-11-09 17:05:39 +0100156 .comp_rate_lim = 0,
Emeric Brun850efd52014-01-29 12:24:34 +0100157 .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED,
Emeric Bruned760922010-10-22 17:59:25 +0200158 .unix_bind = {
159 .ux = {
160 .uid = -1,
161 .gid = -1,
162 .mode = 0,
163 }
164 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200165 .tune = {
Willy Tarreau7ac908b2019-02-27 12:02:18 +0100166 .options = GTUNE_LISTENER_MQ,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100167 .bufsize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Christopher Faulet546c4692020-01-22 14:31:21 +0100168 .maxrewrite = MAXREWRITE,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100169 .chksize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Willy Tarreaua24adf02014-11-27 01:11:56 +0100170 .reserved_bufs = RESERVED_BUFS,
Willy Tarreauf3045d22015-04-29 16:24:50 +0200171 .pattern_cache = DEFAULT_PAT_LRU_SIZE,
Olivier Houchard88698d92019-04-16 19:07:22 +0200172 .pool_low_ratio = 20,
173 .pool_high_ratio = 25,
Christopher Faulet41ba36f2019-07-19 09:36:45 +0200174 .max_http_hdr = MAX_HTTP_HDR,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200175#ifdef USE_OPENSSL
Emeric Brun46635772012-11-14 11:32:56 +0100176 .sslcachesize = SSLCACHESIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200177#endif
William Lallemandf3747832012-11-09 12:33:10 +0100178 .comp_maxlevel = 1,
Willy Tarreau7e312732014-02-12 16:35:14 +0100179#ifdef DEFAULT_IDLE_TIMER
180 .idle_timer = DEFAULT_IDLE_TIMER,
181#else
182 .idle_timer = 1000, /* 1 second */
183#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200184 },
Emeric Brun76d88952012-10-05 15:47:31 +0200185#ifdef USE_OPENSSL
186#ifdef DEFAULT_MAXSSLCONN
Willy Tarreau403edff2012-09-06 11:58:37 +0200187 .maxsslconn = DEFAULT_MAXSSLCONN,
188#endif
Emeric Brun76d88952012-10-05 15:47:31 +0200189#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200190 /* others NULL OK */
191};
192
193/*********************************************************************/
194
195int stopping; /* non zero means stopping in progress */
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100196int killed; /* non zero means a hard-stop is triggered */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200197int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
William Lallemanda7199262018-11-16 16:57:20 +0100198int unstoppable_jobs = 0; /* number of active jobs that can't be stopped during a soft stop */
Willy Tarreau199ad242018-11-05 16:31:22 +0100199int active_peers = 0; /* number of active peers (connection attempts and connected) */
Willy Tarreau2d372c22018-11-05 17:12:27 +0100200int connected_peers = 0; /* number of connected peers (verified ones) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200201
202/* Here we store informations about the pids of the processes we may pause
203 * or kill. We will send them a signal every 10 ms until we can bind to all
204 * our ports. With 200 retries, that's about 2 seconds.
205 */
206#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200207static int *oldpids = NULL;
208static int oldpids_sig; /* use USR1 or TERM */
209
Olivier Houchardf73629d2017-04-05 22:33:04 +0200210/* Path to the unix socket we use to retrieve listener sockets from the old process */
211static const char *old_unixsocket;
212
William Lallemand85b0bd92017-06-01 17:38:53 +0200213static char *cur_unixsocket = NULL;
214
William Lallemandcb11fd22017-06-01 17:38:52 +0200215int atexit_flag = 0;
216
Willy Tarreaubb545b42010-08-25 12:58:59 +0200217int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200218const int zero = 0;
219const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200220const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200221
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100222char hostname[MAX_HOSTNAME_LEN];
Emeric Brun2b920a12010-09-23 18:30:22 +0200223char localpeer[MAX_HOSTNAME_LEN];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200224
William Lallemand00417412020-06-05 14:08:41 +0200225static char **old_argv = NULL; /* previous argv but cleaned up */
William Lallemand73b85e72017-06-01 17:38:51 +0200226
William Lallemandbc193052018-09-11 10:06:26 +0200227struct list proc_list = LIST_HEAD_INIT(proc_list);
228
229int master = 0; /* 1 if in master, 0 if in child */
Willy Tarreaubf696402019-03-01 10:09:28 +0100230unsigned int rlim_fd_cur_at_boot = 0;
231unsigned int rlim_fd_max_at_boot = 0;
William Lallemandbc193052018-09-11 10:06:26 +0200232
Willy Tarreau6c3a6812020-03-06 18:57:15 +0100233/* per-boot randomness */
234unsigned char boot_seed[20]; /* per-boot random seed (160 bits initially) */
235
William Lallemand16dd1b32018-11-19 18:46:18 +0100236struct mworker_proc *proc_self = NULL;
William Lallemandbc193052018-09-11 10:06:26 +0200237
William Lallemandb3f2be32018-09-11 10:06:18 +0200238static void *run_thread_poll_loop(void *data);
239
Willy Tarreauff055502014-04-28 22:27:06 +0200240/* bitfield of a few warnings to emit just once (WARN_*) */
241unsigned int warned = 0;
242
William Lallemande7361152018-10-26 14:47:36 +0200243/* master CLI configuration (-S flag) */
244struct list mworker_cli_conf = LIST_HEAD_INIT(mworker_cli_conf);
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100245
246/* These are strings to be reported in the output of "haproxy -vv". They may
247 * either be constants (in which case must_free must be zero) or dynamically
248 * allocated strings to pass to free() on exit, and in this case must_free
249 * must be non-zero.
250 */
251struct list build_opts_list = LIST_HEAD_INIT(build_opts_list);
252struct build_opts_str {
253 struct list list;
254 const char *str;
255 int must_free;
256};
257
Willy Tarreaue6945732016-12-21 19:57:00 +0100258/* These functions are called just after the point where the program exits
259 * after a config validity check, so they are generally suited for resource
260 * allocation and slow initializations that should be skipped during basic
261 * config checks. The functions must return 0 on success, or a combination
262 * of ERR_* flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause
263 * and immediate exit, so the function must have emitted any useful error.
264 */
265struct list post_check_list = LIST_HEAD_INIT(post_check_list);
266struct post_check_fct {
267 struct list list;
268 int (*fct)();
269};
270
Christopher Fauletc1692962019-08-12 09:51:07 +0200271/* These functions are called for each proxy just after the config validity
272 * check. The functions must return 0 on success, or a combination of ERR_*
273 * flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause and immediate
274 * exit, so the function must have emitted any useful error.
275 */
276struct list post_proxy_check_list = LIST_HEAD_INIT(post_proxy_check_list);
277struct post_proxy_check_fct {
278 struct list list;
279 int (*fct)(struct proxy *);
280};
281
282/* These functions are called for each server just after the config validity
283 * check. The functions must return 0 on success, or a combination of ERR_*
284 * flags (ERR_WARN, ERR_ABORT, ERR_FATAL, ...). The 2 latter cause and immediate
285 * exit, so the function must have emitted any useful error.
286 */
287struct list post_server_check_list = LIST_HEAD_INIT(post_server_check_list);
288struct post_server_check_fct {
289 struct list list;
290 int (*fct)(struct server *);
291};
292
Willy Tarreau082b6282019-05-22 14:42:12 +0200293/* These functions are called for each thread just after the thread creation
294 * and before running the init functions. They should be used to do per-thread
295 * (re-)allocations that are needed by subsequent functoins. They must return 0
296 * if an error occurred. */
297struct list per_thread_alloc_list = LIST_HEAD_INIT(per_thread_alloc_list);
298struct per_thread_alloc_fct {
Willy Tarreau05554e62016-12-21 20:46:26 +0100299 struct list list;
Willy Tarreau082b6282019-05-22 14:42:12 +0200300 int (*fct)();
Willy Tarreau05554e62016-12-21 20:46:26 +0100301};
302
Christopher Faulet415f6112017-07-25 16:52:58 +0200303/* These functions are called for each thread just after the thread creation
304 * and before running the scheduler. They should be used to do per-thread
305 * initializations. They must return 0 if an error occurred. */
306struct list per_thread_init_list = LIST_HEAD_INIT(per_thread_init_list);
307struct per_thread_init_fct {
308 struct list list;
309 int (*fct)();
310};
311
Willy Tarreau082b6282019-05-22 14:42:12 +0200312/* These functions are called when freeing the global sections at the end of
313 * deinit, after everything is stopped. They don't return anything. They should
314 * not release shared resources that are possibly used by other deinit
315 * functions, only close/release what is private. Use the per_thread_free_list
316 * to release shared resources.
317 */
318struct list post_deinit_list = LIST_HEAD_INIT(post_deinit_list);
319struct post_deinit_fct {
320 struct list list;
321 void (*fct)();
322};
323
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +0200324/* These functions are called when freeing a proxy during the deinit, after
325 * everything isg stopped. They don't return anything. They should not release
326 * the proxy itself or any shared resources that are possibly used by other
327 * deinit functions, only close/release what is private.
328 */
329struct list proxy_deinit_list = LIST_HEAD_INIT(proxy_deinit_list);
330struct proxy_deinit_fct {
331 struct list list;
332 void (*fct)(struct proxy *);
333};
334
335/* These functions are called when freeing a server during the deinit, after
336 * everything isg stopped. They don't return anything. They should not release
337 * the proxy itself or any shared resources that are possibly used by other
338 * deinit functions, only close/release what is private.
339 */
340struct list server_deinit_list = LIST_HEAD_INIT(server_deinit_list);
341struct server_deinit_fct {
342 struct list list;
343 void (*fct)(struct server *);
344};
345
Willy Tarreau082b6282019-05-22 14:42:12 +0200346/* These functions are called when freeing the global sections at the end of
347 * deinit, after the thread deinit functions, to release unneeded memory
348 * allocations. They don't return anything, and they work in best effort mode
349 * as their sole goal is to make valgrind mostly happy.
350 */
351struct list per_thread_free_list = LIST_HEAD_INIT(per_thread_free_list);
352struct per_thread_free_fct {
353 struct list list;
354 int (*fct)();
355};
356
Christopher Faulet415f6112017-07-25 16:52:58 +0200357/* These functions are called for each thread just after the scheduler loop and
358 * before exiting the thread. They don't return anything and, as for post-deinit
359 * functions, they work in best effort mode as their sole goal is to make
360 * valgrind mostly happy. */
361struct list per_thread_deinit_list = LIST_HEAD_INIT(per_thread_deinit_list);
362struct per_thread_deinit_fct {
363 struct list list;
364 void (*fct)();
365};
366
Willy Tarreaubaaee002006-06-26 02:48:02 +0200367/*********************************************************************/
368/* general purpose functions ***************************************/
369/*********************************************************************/
370
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100371/* used to register some build option strings at boot. Set must_free to
372 * non-zero if the string must be freed upon exit.
373 */
374void hap_register_build_opts(const char *str, int must_free)
375{
376 struct build_opts_str *b;
377
378 b = calloc(1, sizeof(*b));
379 if (!b) {
380 fprintf(stderr, "out of memory\n");
381 exit(1);
382 }
383 b->str = str;
384 b->must_free = must_free;
385 LIST_ADDQ(&build_opts_list, &b->list);
386}
387
Willy Tarreaue6945732016-12-21 19:57:00 +0100388/* used to register some initialization functions to call after the checks. */
389void hap_register_post_check(int (*fct)())
390{
391 struct post_check_fct *b;
392
393 b = calloc(1, sizeof(*b));
394 if (!b) {
395 fprintf(stderr, "out of memory\n");
396 exit(1);
397 }
398 b->fct = fct;
399 LIST_ADDQ(&post_check_list, &b->list);
400}
401
Christopher Fauletc1692962019-08-12 09:51:07 +0200402/* used to register some initialization functions to call for each proxy after
403 * the checks.
404 */
405void hap_register_post_proxy_check(int (*fct)(struct proxy *))
406{
407 struct post_proxy_check_fct *b;
408
409 b = calloc(1, sizeof(*b));
410 if (!b) {
411 fprintf(stderr, "out of memory\n");
412 exit(1);
413 }
414 b->fct = fct;
415 LIST_ADDQ(&post_proxy_check_list, &b->list);
416}
417
418/* used to register some initialization functions to call for each server after
419 * the checks.
420 */
421void hap_register_post_server_check(int (*fct)(struct server *))
422{
423 struct post_server_check_fct *b;
424
425 b = calloc(1, sizeof(*b));
426 if (!b) {
427 fprintf(stderr, "out of memory\n");
428 exit(1);
429 }
430 b->fct = fct;
431 LIST_ADDQ(&post_server_check_list, &b->list);
432}
433
Willy Tarreau05554e62016-12-21 20:46:26 +0100434/* used to register some de-initialization functions to call after everything
435 * has stopped.
436 */
437void hap_register_post_deinit(void (*fct)())
438{
439 struct post_deinit_fct *b;
440
441 b = calloc(1, sizeof(*b));
442 if (!b) {
443 fprintf(stderr, "out of memory\n");
444 exit(1);
445 }
446 b->fct = fct;
447 LIST_ADDQ(&post_deinit_list, &b->list);
448}
449
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +0200450/* used to register some per proxy de-initialization functions to call after
451 * everything has stopped.
452 */
453void hap_register_proxy_deinit(void (*fct)(struct proxy *))
454{
455 struct proxy_deinit_fct *b;
456
457 b = calloc(1, sizeof(*b));
458 if (!b) {
459 fprintf(stderr, "out of memory\n");
460 exit(1);
461 }
462 b->fct = fct;
463 LIST_ADDQ(&proxy_deinit_list, &b->list);
464}
465
466
467/* used to register some per server de-initialization functions to call after
468 * everything has stopped.
469 */
470void hap_register_server_deinit(void (*fct)(struct server *))
471{
472 struct server_deinit_fct *b;
473
474 b = calloc(1, sizeof(*b));
475 if (!b) {
476 fprintf(stderr, "out of memory\n");
477 exit(1);
478 }
479 b->fct = fct;
480 LIST_ADDQ(&server_deinit_list, &b->list);
481}
482
Willy Tarreau082b6282019-05-22 14:42:12 +0200483/* used to register some allocation functions to call for each thread. */
484void hap_register_per_thread_alloc(int (*fct)())
485{
486 struct per_thread_alloc_fct *b;
487
488 b = calloc(1, sizeof(*b));
489 if (!b) {
490 fprintf(stderr, "out of memory\n");
491 exit(1);
492 }
493 b->fct = fct;
494 LIST_ADDQ(&per_thread_alloc_list, &b->list);
495}
496
Christopher Faulet415f6112017-07-25 16:52:58 +0200497/* used to register some initialization functions to call for each thread. */
498void hap_register_per_thread_init(int (*fct)())
499{
500 struct per_thread_init_fct *b;
501
502 b = calloc(1, sizeof(*b));
503 if (!b) {
504 fprintf(stderr, "out of memory\n");
505 exit(1);
506 }
507 b->fct = fct;
508 LIST_ADDQ(&per_thread_init_list, &b->list);
509}
510
511/* used to register some de-initialization functions to call for each thread. */
512void hap_register_per_thread_deinit(void (*fct)())
513{
514 struct per_thread_deinit_fct *b;
515
516 b = calloc(1, sizeof(*b));
517 if (!b) {
518 fprintf(stderr, "out of memory\n");
519 exit(1);
520 }
521 b->fct = fct;
522 LIST_ADDQ(&per_thread_deinit_list, &b->list);
523}
524
Willy Tarreau082b6282019-05-22 14:42:12 +0200525/* used to register some free functions to call for each thread. */
526void hap_register_per_thread_free(int (*fct)())
527{
528 struct per_thread_free_fct *b;
529
530 b = calloc(1, sizeof(*b));
531 if (!b) {
532 fprintf(stderr, "out of memory\n");
533 exit(1);
534 }
535 b->fct = fct;
536 LIST_ADDQ(&per_thread_free_list, &b->list);
537}
538
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100539static void display_version()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200540{
Tim Duesterhusdfad6a42020-04-18 16:02:47 +0200541 struct utsname utsname;
542
Willy Tarreau08dd2022019-11-21 18:07:30 +0100543 printf("HA-Proxy version %s %s - https://haproxy.org/\n"
544 PRODUCT_STATUS "\n", haproxy_version, haproxy_date);
Willy Tarreau47479eb2019-11-21 18:48:20 +0100545
546 if (strlen(PRODUCT_URL_BUGS) > 0) {
547 char base_version[20];
548 int dots = 0;
549 char *del;
550
551 /* only retrieve the base version without distro-specific extensions */
552 for (del = haproxy_version; *del; del++) {
553 if (*del == '.')
554 dots++;
555 else if (*del < '0' || *del > '9')
556 break;
557 }
558
559 strlcpy2(base_version, haproxy_version, del - haproxy_version + 1);
560 if (dots < 2)
561 printf("Known bugs: https://github.com/haproxy/haproxy/issues?q=is:issue+is:open\n");
562 else
563 printf("Known bugs: " PRODUCT_URL_BUGS "\n", base_version);
564 }
Tim Duesterhusdfad6a42020-04-18 16:02:47 +0200565
566 if (uname(&utsname) == 0) {
567 printf("Running on: %s %s %s %s\n", utsname.sysname, utsname.release, utsname.version, utsname.machine);
568 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200569}
570
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100571static void display_build_opts()
Willy Tarreau7b066db2007-12-02 11:28:59 +0100572{
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100573 struct build_opts_str *item;
574
Willy Tarreau7b066db2007-12-02 11:28:59 +0100575 printf("Build options :"
576#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100577 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100578#endif
579#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100580 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100581#endif
582#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100583 "\n CC = " BUILD_CC
584#endif
585#ifdef BUILD_CFLAGS
586 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100587#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100588#ifdef BUILD_OPTIONS
589 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100590#endif
Willy Tarreau7728ed32019-03-27 13:20:08 +0100591#ifdef BUILD_FEATURES
592 "\n\nFeature list : " BUILD_FEATURES
593#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200594 "\n\nDefault settings :"
Willy Tarreauca783d42019-03-13 10:03:07 +0100595 "\n bufsize = %d, maxrewrite = %d, maxpollevents = %d"
Willy Tarreau27a674e2009-08-17 07:23:33 +0200596 "\n\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100597 BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200598
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100599 list_for_each_entry(item, &build_opts_list, list) {
600 puts(item->str);
601 }
602
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100603 putchar('\n');
604
Willy Tarreaube5b6852009-10-03 18:57:08 +0200605 list_pollers(stdout);
606 putchar('\n');
Christopher Faulet98d9fe22018-04-10 14:37:32 +0200607 list_mux_proto(stdout);
608 putchar('\n');
Willy Tarreau679bba12019-03-19 08:08:10 +0100609 list_services(stdout);
610 putchar('\n');
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100611 list_filters(stdout);
612 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100613}
614
Willy Tarreaubaaee002006-06-26 02:48:02 +0200615/*
616 * This function prints the command line usage and exits
617 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100618static void usage(char *name)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200619{
620 display_version();
621 fprintf(stderr,
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200622 "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200623 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreaua088d312015-10-08 11:58:48 +0200624 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100625 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200626 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200627 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200628 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200629 " -D goes daemon ; -C changes to <dir> before loading files.\n"
William Lallemand095ba4c2017-06-01 17:38:50 +0200630 " -W master-worker mode.\n"
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100631#if defined(USE_SYSTEMD)
632 " -Ws master-worker mode with systemd notify support.\n"
633#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200634 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200635 " -c check mode : only check config files and exit\n"
Willy Tarreauca783d42019-03-13 10:03:07 +0100636 " -n sets the maximum total # of connections (uses ulimit -n)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200637 " -m limits the usable amount of memory (in MB)\n"
638 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200639 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200640 " -p writes pids of all children to this file\n"
Willy Tarreaue5733232019-05-22 19:24:06 +0200641#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200642 " -de disables epoll() usage even when available\n"
643#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200644#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200645 " -dk disables kqueue() usage even when available\n"
646#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200647#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +0000648 " -dv disables event ports usage even when available\n"
649#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200650#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200651 " -dp disables poll() usage even when available\n"
652#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200653#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100654 " -dS disables splice usage (broken on old kernels)\n"
655#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200656#if defined(USE_GETADDRINFO)
657 " -dG disables getaddrinfo() usage\n"
658#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000659#if defined(SO_REUSEPORT)
660 " -dR disables SO_REUSEPORT usage\n"
661#endif
Willy Tarreau3eed10e2016-11-07 21:03:16 +0100662 " -dr ignores server address resolution failures\n"
Emeric Brun850efd52014-01-29 12:24:34 +0100663 " -dV disables SSL verify on servers side\n"
Willy Tarreau3eb10b82020-04-15 16:42:39 +0200664 " -dW fails if any warning is emitted\n"
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200665 " -sf/-st [pid ]* finishes/terminates old pids.\n"
Olivier Houchardf73629d2017-04-05 22:33:04 +0200666 " -x <unix_socket> get listening sockets from a unix socket\n"
William Lallemand63329e32019-06-13 17:03:37 +0200667 " -S <bind>[,<bind options>...] new master CLI\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200668 "\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100669 name, cfg_maxpconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200670 exit(1);
671}
672
673
674
675/*********************************************************************/
676/* more specific functions ***************************************/
677/*********************************************************************/
678
William Lallemand73b85e72017-06-01 17:38:51 +0200679/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
680 * pids the signal was correctly delivered to.
681 */
William Lallemande25473c2019-04-01 11:29:56 +0200682int tell_old_pids(int sig)
William Lallemand73b85e72017-06-01 17:38:51 +0200683{
684 int p;
685 int ret = 0;
686 for (p = 0; p < nb_oldpids; p++)
687 if (kill(oldpids[p], sig) == 0)
688 ret++;
689 return ret;
690}
691
William Lallemand75ea0a02017-11-15 19:02:58 +0100692/*
William Lallemand73b85e72017-06-01 17:38:51 +0200693 * remove a pid forom the olpid array and decrease nb_oldpids
694 * return 1 pid was found otherwise return 0
695 */
696
697int delete_oldpid(int pid)
698{
699 int i;
700
701 for (i = 0; i < nb_oldpids; i++) {
702 if (oldpids[i] == pid) {
703 oldpids[i] = oldpids[nb_oldpids - 1];
704 oldpids[nb_oldpids - 1] = 0;
705 nb_oldpids--;
706 return 1;
707 }
708 }
709 return 0;
710}
711
William Lallemand85b0bd92017-06-01 17:38:53 +0200712
713static void get_cur_unixsocket()
714{
715 /* if -x was used, try to update the stat socket if not available anymore */
716 if (global.stats_fe) {
717 struct bind_conf *bind_conf;
718
719 /* pass through all stats socket */
720 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
721 struct listener *l;
722
723 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
724
725 if (l->addr.ss_family == AF_UNIX &&
726 (bind_conf->level & ACCESS_FD_LISTENERS)) {
727 const struct sockaddr_un *un;
728
729 un = (struct sockaddr_un *)&l->addr;
730 /* priority to old_unixsocket */
731 if (!cur_unixsocket) {
732 cur_unixsocket = strdup(un->sun_path);
733 } else {
734 if (old_unixsocket && !strcmp(un->sun_path, old_unixsocket)) {
735 free(cur_unixsocket);
736 cur_unixsocket = strdup(old_unixsocket);
737 return;
738 }
739 }
740 }
741 }
742 }
743 }
744 if (!cur_unixsocket && old_unixsocket)
745 cur_unixsocket = strdup(old_unixsocket);
746}
747
William Lallemand73b85e72017-06-01 17:38:51 +0200748/*
749 * When called, this function reexec haproxy with -sf followed by current
Joseph Herlant03420902018-11-15 10:41:50 -0800750 * children PIDs and possibly old children PIDs if they didn't leave yet.
William Lallemand73b85e72017-06-01 17:38:51 +0200751 */
William Lallemanda57b7e32018-12-14 21:11:31 +0100752void mworker_reload()
William Lallemand73b85e72017-06-01 17:38:51 +0200753{
William Lallemand00417412020-06-05 14:08:41 +0200754 char **next_argv = NULL;
755 int old_argc = 0; /* previous number of argument */
William Lallemand73b85e72017-06-01 17:38:51 +0200756 int next_argc = 0;
William Lallemand00417412020-06-05 14:08:41 +0200757 int i = 0;
William Lallemand73b85e72017-06-01 17:38:51 +0200758 char *msg = NULL;
Willy Tarreau8dca1952019-03-01 10:21:55 +0100759 struct rlimit limit;
William Lallemand7c756a82018-11-26 11:53:40 +0100760 struct per_thread_deinit_fct *ptdf;
William Lallemand73b85e72017-06-01 17:38:51 +0200761
762 mworker_block_signals();
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100763#if defined(USE_SYSTEMD)
764 if (global.tune.options & GTUNE_USE_SYSTEMD)
765 sd_notify(0, "RELOADING=1");
766#endif
William Lallemand73b85e72017-06-01 17:38:51 +0200767 setenv("HAPROXY_MWORKER_REEXEC", "1", 1);
768
William Lallemandbc193052018-09-11 10:06:26 +0200769 mworker_proc_list_to_env(); /* put the children description in the env */
770
William Lallemand7c756a82018-11-26 11:53:40 +0100771 /* during the reload we must ensure that every FDs that can't be
772 * reuse (ie those that are not referenced in the proc_list)
773 * are closed or they will leak. */
774
775 /* close the listeners FD */
776 mworker_cli_proxy_stop();
William Lallemand16866672019-06-24 17:40:48 +0200777
778 if (getenv("HAPROXY_MWORKER_WAIT_ONLY") == NULL) {
779 /* close the poller FD and the thread waker pipe FD */
780 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
781 ptdf->fct();
782 if (fdtab)
783 deinit_pollers();
784 }
Willy Tarreau5db847a2019-05-09 14:13:35 +0200785#if defined(USE_OPENSSL) && (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
William Lallemand5fdb5b32019-10-15 14:04:08 +0200786 /* close random device FDs */
787 RAND_keep_random_devices_open(0);
Rob Allen56996da2019-05-03 09:11:32 +0100788#endif
William Lallemand7c756a82018-11-26 11:53:40 +0100789
Willy Tarreau8dca1952019-03-01 10:21:55 +0100790 /* restore the initial FD limits */
791 limit.rlim_cur = rlim_fd_cur_at_boot;
792 limit.rlim_max = rlim_fd_max_at_boot;
793 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
794 getrlimit(RLIMIT_NOFILE, &limit);
795 ha_warning("Failed to restore initial FD limits (cur=%u max=%u), using cur=%u max=%u\n",
796 rlim_fd_cur_at_boot, rlim_fd_max_at_boot,
797 (unsigned int)limit.rlim_cur, (unsigned int)limit.rlim_max);
798 }
799
William Lallemand73b85e72017-06-01 17:38:51 +0200800 /* compute length */
William Lallemand00417412020-06-05 14:08:41 +0200801 while (old_argv[old_argc])
802 old_argc++;
William Lallemand73b85e72017-06-01 17:38:51 +0200803
William Lallemand85b0bd92017-06-01 17:38:53 +0200804 /* 1 for haproxy -sf, 2 for -x /socket */
William Lallemand00417412020-06-05 14:08:41 +0200805 next_argv = calloc(old_argc + 1 + 2 + mworker_child_nb() + nb_oldpids + 1, sizeof(char *));
William Lallemand73b85e72017-06-01 17:38:51 +0200806 if (next_argv == NULL)
807 goto alloc_error;
808
William Lallemand00417412020-06-05 14:08:41 +0200809 /* copy the program name */
810 next_argv[next_argc++] = old_argv[0];
811
812 /* insert the new options just after argv[0] in case we have a -- */
813
William Lallemand73b85e72017-06-01 17:38:51 +0200814 /* add -sf <PID>* to argv */
William Lallemand3f128872019-04-01 11:29:59 +0200815 if (mworker_child_nb() > 0) {
816 struct mworker_proc *child;
817
William Lallemand73b85e72017-06-01 17:38:51 +0200818 next_argv[next_argc++] = "-sf";
William Lallemand3f128872019-04-01 11:29:59 +0200819
820 list_for_each_entry(child, &proc_list, list) {
William Lallemand677e2f22019-11-19 17:04:18 +0100821 if (!(child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) || child->pid <= -1 )
William Lallemand3f128872019-04-01 11:29:59 +0200822 continue;
William Lallemand00417412020-06-05 14:08:41 +0200823 if ((next_argv[next_argc++] = memprintf(&msg, "%d", child->pid)) == NULL)
William Lallemand73b85e72017-06-01 17:38:51 +0200824 goto alloc_error;
825 msg = NULL;
826 }
827 }
William Lallemand2bf6d622017-06-20 11:20:23 +0200828 /* add the -x option with the stat socket */
William Lallemand85b0bd92017-06-01 17:38:53 +0200829 if (cur_unixsocket) {
William Lallemand2bf6d622017-06-20 11:20:23 +0200830 next_argv[next_argc++] = "-x";
831 next_argv[next_argc++] = (char *)cur_unixsocket;
William Lallemand85b0bd92017-06-01 17:38:53 +0200832 }
833
William Lallemand00417412020-06-05 14:08:41 +0200834 /* copy the previous options */
835 for (i = 1; i < old_argc; i++)
836 next_argv[next_argc++] = old_argv[i];
837
Christopher Faulet767a84b2017-11-24 16:50:31 +0100838 ha_warning("Reexecuting Master process\n");
Willy Tarreaue0d86e22019-08-26 10:37:39 +0200839 signal(SIGPROF, SIG_IGN);
Tim Duesterhus0436ab72017-11-12 17:39:18 +0100840 execvp(next_argv[0], next_argv);
William Lallemand73b85e72017-06-01 17:38:51 +0200841
Christopher Faulet767a84b2017-11-24 16:50:31 +0100842 ha_warning("Failed to reexecute the master process [%d]: %s\n", pid, strerror(errno));
William Lallemand9fc6c972020-06-08 10:01:13 +0200843 free(next_argv);
844 next_argv = NULL;
William Lallemand722d4ca2017-11-15 19:02:55 +0100845 return;
846
William Lallemand73b85e72017-06-01 17:38:51 +0200847alloc_error:
William Lallemand00417412020-06-05 14:08:41 +0200848 free(next_argv);
849 next_argv = NULL;
Joseph Herlant07a08342018-11-15 10:43:05 -0800850 ha_warning("Failed to reexecute the master process [%d]: Cannot allocate memory\n", pid);
William Lallemand73b85e72017-06-01 17:38:51 +0200851 return;
852}
853
William Lallemandb3f2be32018-09-11 10:06:18 +0200854static void mworker_loop()
855{
856
857#if defined(USE_SYSTEMD)
858 if (global.tune.options & GTUNE_USE_SYSTEMD)
859 sd_notifyf(0, "READY=1\nMAINPID=%lu", (unsigned long)getpid());
860#endif
Willy Tarreaud83b6c12019-04-18 11:31:36 +0200861 /* Busy polling makes no sense in the master :-) */
862 global.tune.options &= ~GTUNE_BUSY_POLLING;
William Lallemandb3f2be32018-09-11 10:06:18 +0200863
William Lallemandbc193052018-09-11 10:06:26 +0200864 master = 1;
865
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100866 signal_unregister(SIGTTIN);
867 signal_unregister(SIGTTOU);
William Lallemand0564d412018-11-20 17:36:53 +0100868 signal_unregister(SIGUSR1);
869 signal_unregister(SIGHUP);
870 signal_unregister(SIGQUIT);
871
William Lallemandb3f2be32018-09-11 10:06:18 +0200872 signal_register_fct(SIGTERM, mworker_catch_sigterm, SIGTERM);
873 signal_register_fct(SIGUSR1, mworker_catch_sigterm, SIGUSR1);
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100874 signal_register_fct(SIGTTIN, mworker_broadcast_signal, SIGTTIN);
875 signal_register_fct(SIGTTOU, mworker_broadcast_signal, SIGTTOU);
William Lallemandb3f2be32018-09-11 10:06:18 +0200876 signal_register_fct(SIGINT, mworker_catch_sigterm, SIGINT);
877 signal_register_fct(SIGHUP, mworker_catch_sighup, SIGHUP);
878 signal_register_fct(SIGUSR2, mworker_catch_sighup, SIGUSR2);
879 signal_register_fct(SIGCHLD, mworker_catch_sigchld, SIGCHLD);
880
881 mworker_unblock_signals();
882 mworker_cleanlisteners();
William Lallemand27f3fa52018-12-06 14:05:20 +0100883 mworker_cleantasks();
William Lallemandb3f2be32018-09-11 10:06:18 +0200884
William Lallemandbc193052018-09-11 10:06:26 +0200885 mworker_catch_sigchld(NULL); /* ensure we clean the children in case
886 some SIGCHLD were lost */
887
William Lallemandb3f2be32018-09-11 10:06:18 +0200888 global.nbthread = 1;
889 relative_pid = 1;
890 pid_bit = 1;
Willy Tarreaua38a7172019-02-02 17:11:28 +0100891 all_proc_mask = 1;
William Lallemandb3f2be32018-09-11 10:06:18 +0200892
William Lallemand2672eb92018-12-14 15:52:39 +0100893#ifdef USE_THREAD
894 tid_bit = 1;
895 all_threads_mask = 1;
896#endif
897
William Lallemandb3f2be32018-09-11 10:06:18 +0200898 jobs++; /* this is the "master" job, we want to take care of the
899 signals even if there is no listener so the poll loop don't
900 leave */
901
902 fork_poller();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +0200903 run_thread_poll_loop(0);
William Lallemandb3f2be32018-09-11 10:06:18 +0200904}
William Lallemandcb11fd22017-06-01 17:38:52 +0200905
906/*
907 * Reexec the process in failure mode, instead of exiting
908 */
909void reexec_on_failure()
910{
911 if (!atexit_flag)
912 return;
913
914 setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1);
915
Christopher Faulet767a84b2017-11-24 16:50:31 +0100916 ha_warning("Reexecuting Master process in waitpid mode\n");
William Lallemandcb11fd22017-06-01 17:38:52 +0200917 mworker_reload();
William Lallemandcb11fd22017-06-01 17:38:52 +0200918}
William Lallemand73b85e72017-06-01 17:38:51 +0200919
920
921/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200922 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
923 * a signal zero to all subscribers. This means that it's as easy as
924 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200925 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100926static void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200927{
928 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200929 signal_unregister_handler(sh);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100930 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200931}
932
933/*
934 * upon SIGTTOU, we pause everything
935 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100936static void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200937{
938 pause_proxies();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100939 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200940}
941
942/*
943 * upon SIGTTIN, let's have a soft stop.
944 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100945static void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200946{
Willy Tarreaube58c382011-07-24 18:28:10 +0200947 resume_proxies();
Willy Tarreaubaaee002006-06-26 02:48:02 +0200948}
949
950/*
951 * this function dumps every server's state when the process receives SIGHUP.
952 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100953static void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200954{
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100955 struct proxy *p = proxies_list;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200956
Christopher Faulet767a84b2017-11-24 16:50:31 +0100957 ha_warning("SIGHUP received, dumping servers states.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200958 while (p) {
959 struct server *s = p->srv;
960
961 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
962 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100963 chunk_printf(&trash,
964 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
965 p->id, s->id,
Emeric Brun52a91d32017-08-31 14:41:55 +0200966 (s->cur_state != SRV_ST_STOPPED) ? "UP" : "DOWN",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100967 s->cur_sess, s->nbpend, s->counters.cum_sess);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200968 ha_warning("%s\n", trash.area);
969 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200970 s = s->next;
971 }
972
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200973 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
974 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100975 chunk_printf(&trash,
976 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
977 p->id,
978 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 +0200979 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100980 chunk_printf(&trash,
981 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
982 p->id,
983 (p->srv_bck) ? "is running on backup servers" : "has no server available",
984 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 +0200985 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100986 chunk_printf(&trash,
987 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
988 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
989 p->id, p->srv_act, p->srv_bck,
990 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 +0200991 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200992 ha_warning("%s\n", trash.area);
993 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200994
995 p = p->next;
996 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200997}
998
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100999static void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001000{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +02001001 /* dump memory usage then free everything possible */
1002 dump_pools();
Willy Tarreaubafbe012017-11-24 17:34:44 +01001003 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001004}
1005
William Lallemande1340412017-12-28 16:09:36 +01001006/*
1007 * This function dup2 the stdio FDs (0,1,2) with <fd>, then closes <fd>
1008 * If <fd> < 0, it opens /dev/null and use it to dup
1009 *
1010 * In the case of chrooting, you have to open /dev/null before the chroot, and
1011 * pass the <fd> to this function
1012 */
1013static void stdio_quiet(int fd)
1014{
1015 if (fd < 0)
1016 fd = open("/dev/null", O_RDWR, 0);
1017
1018 if (fd > -1) {
1019 fclose(stdin);
1020 fclose(stdout);
1021 fclose(stderr);
1022
1023 dup2(fd, 0);
1024 dup2(fd, 1);
1025 dup2(fd, 2);
1026 if (fd > 2)
1027 close(fd);
1028 return;
1029 }
1030
1031 ha_alert("Cannot open /dev/null\n");
1032 exit(EXIT_FAILURE);
1033}
1034
1035
Joseph Herlant03420902018-11-15 10:41:50 -08001036/* This function checks if cfg_cfgfiles contains directories.
1037 * If it finds one, it adds all the files (and only files) it contains
1038 * in cfg_cfgfiles in place of the directory (and removes the directory).
1039 * It adds the files in lexical order.
1040 * It adds only files with .cfg extension.
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001041 * It doesn't add files with name starting with '.'
1042 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001043static void cfgfiles_expand_directories(void)
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001044{
1045 struct wordlist *wl, *wlb;
1046 char *err = NULL;
1047
1048 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
1049 struct stat file_stat;
1050 struct dirent **dir_entries = NULL;
1051 int dir_entries_nb;
1052 int dir_entries_it;
1053
1054 if (stat(wl->s, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001055 ha_alert("Cannot open configuration file/directory %s : %s\n",
1056 wl->s,
1057 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001058 exit(1);
1059 }
1060
1061 if (!S_ISDIR(file_stat.st_mode))
1062 continue;
1063
1064 /* from this point wl->s is a directory */
1065
1066 dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort);
1067 if (dir_entries_nb < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001068 ha_alert("Cannot open configuration directory %s : %s\n",
1069 wl->s,
1070 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001071 exit(1);
1072 }
1073
1074 /* for each element in the directory wl->s */
1075 for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) {
1076 struct dirent *dir_entry = dir_entries[dir_entries_it];
1077 char *filename = NULL;
1078 char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg");
1079
1080 /* don't add filename that begin with .
Joseph Herlant03420902018-11-15 10:41:50 -08001081 * only add filename with .cfg extension
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001082 */
1083 if (dir_entry->d_name[0] == '.' ||
1084 !(d_name_cfgext && d_name_cfgext[4] == '\0'))
1085 goto next_dir_entry;
1086
1087 if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001088 ha_alert("Cannot load configuration files %s : out of memory.\n",
1089 filename);
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001090 exit(1);
1091 }
1092
1093 if (stat(filename, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001094 ha_alert("Cannot open configuration file %s : %s\n",
1095 wl->s,
1096 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001097 exit(1);
1098 }
1099
1100 /* don't add anything else than regular file in cfg_cfgfiles
1101 * this way we avoid loops
1102 */
1103 if (!S_ISREG(file_stat.st_mode))
1104 goto next_dir_entry;
1105
1106 if (!list_append_word(&wl->list, filename, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001107 ha_alert("Cannot load configuration files %s : %s\n",
1108 filename,
1109 err);
Maxime de Roucy379d9c72016-05-13 23:52:56 +02001110 exit(1);
1111 }
1112
1113next_dir_entry:
1114 free(filename);
1115 free(dir_entry);
1116 }
1117
1118 free(dir_entries);
1119
1120 /* remove the current directory (wl) from cfg_cfgfiles */
1121 free(wl->s);
1122 LIST_DEL(&wl->list);
1123 free(wl);
1124 }
1125
1126 free(err);
1127}
1128
Olivier Houchardf73629d2017-04-05 22:33:04 +02001129static int get_old_sockets(const char *unixsocket)
1130{
1131 char *cmsgbuf = NULL, *tmpbuf = NULL;
1132 int *tmpfd = NULL;
1133 struct sockaddr_un addr;
1134 struct cmsghdr *cmsg;
1135 struct msghdr msghdr;
1136 struct iovec iov;
1137 struct xfer_sock_list *xfer_sock = NULL;
Olivier Houchard54740872017-04-06 14:45:14 +02001138 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Olivier Houchardf73629d2017-04-05 22:33:04 +02001139 int sock = -1;
1140 int ret = -1;
1141 int ret2 = -1;
1142 int fd_nb;
1143 int got_fd = 0;
1144 int i = 0;
1145 size_t maxoff = 0, curoff = 0;
1146
1147 memset(&msghdr, 0, sizeof(msghdr));
1148 cmsgbuf = malloc(CMSG_SPACE(sizeof(int)) * MAX_SEND_FD);
1149 if (!cmsgbuf) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001150 ha_warning("Failed to allocate memory to send sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001151 goto out;
1152 }
1153 sock = socket(PF_UNIX, SOCK_STREAM, 0);
1154 if (sock < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001155 ha_warning("Failed to connect to the old process socket '%s'\n",
1156 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001157 goto out;
1158 }
Willy Tarreau719e07c2019-12-11 16:29:10 +01001159 strncpy(addr.sun_path, unixsocket, sizeof(addr.sun_path) - 1);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001160 addr.sun_path[sizeof(addr.sun_path) - 1] = 0;
1161 addr.sun_family = PF_UNIX;
1162 ret = connect(sock, (struct sockaddr *)&addr, sizeof(addr));
1163 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001164 ha_warning("Failed to connect to the old process socket '%s'\n",
1165 unixsocket);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001166 goto out;
1167 }
Olivier Houchard54740872017-04-06 14:45:14 +02001168 setsockopt(sock, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001169 iov.iov_base = &fd_nb;
1170 iov.iov_len = sizeof(fd_nb);
1171 msghdr.msg_iov = &iov;
1172 msghdr.msg_iovlen = 1;
1173 send(sock, "_getsocks\n", strlen("_getsocks\n"), 0);
1174 /* First, get the number of file descriptors to be received */
1175 if (recvmsg(sock, &msghdr, MSG_WAITALL) != sizeof(fd_nb)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001176 ha_warning("Failed to get the number of sockets to be transferred !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001177 goto out;
1178 }
1179 if (fd_nb == 0) {
1180 ret = 0;
1181 goto out;
1182 }
Olivier Houchardf143b802017-11-04 15:13:01 +01001183 tmpbuf = malloc(fd_nb * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001184 if (tmpbuf == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001185 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001186 goto out;
1187 }
1188 tmpfd = malloc(fd_nb * sizeof(int));
1189 if (tmpfd == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001190 ha_warning("Failed to allocate memory while receiving sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001191 goto out;
1192 }
1193 msghdr.msg_control = cmsgbuf;
1194 msghdr.msg_controllen = CMSG_SPACE(sizeof(int)) * MAX_SEND_FD;
Olivier Houchardf143b802017-11-04 15:13:01 +01001195 iov.iov_len = MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int));
Olivier Houchardf73629d2017-04-05 22:33:04 +02001196 do {
1197 int ret3;
1198
1199 iov.iov_base = tmpbuf + curoff;
1200 ret = recvmsg(sock, &msghdr, 0);
1201 if (ret == -1 && errno == EINTR)
1202 continue;
1203 if (ret <= 0)
1204 break;
1205 /* Send an ack to let the sender know we got the sockets
1206 * and it can send some more
1207 */
1208 do {
1209 ret3 = send(sock, &got_fd, sizeof(got_fd), 0);
1210 } while (ret3 == -1 && errno == EINTR);
1211 for (cmsg = CMSG_FIRSTHDR(&msghdr); cmsg != NULL;
1212 cmsg = CMSG_NXTHDR(&msghdr, cmsg)) {
1213 if (cmsg->cmsg_level == SOL_SOCKET &&
1214 cmsg->cmsg_type == SCM_RIGHTS) {
1215 size_t totlen = cmsg->cmsg_len -
1216 CMSG_LEN(0);
1217 if (totlen / sizeof(int) + got_fd > fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001218 ha_warning("Got to many sockets !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001219 goto out;
1220 }
1221 /*
1222 * Be paranoid and use memcpy() to avoid any
1223 * potential alignement issue.
1224 */
1225 memcpy(&tmpfd[got_fd], CMSG_DATA(cmsg), totlen);
1226 got_fd += totlen / sizeof(int);
1227 }
1228 }
1229 curoff += ret;
1230 } while (got_fd < fd_nb);
1231
1232 if (got_fd != fd_nb) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001233 ha_warning("We didn't get the expected number of sockets (expecting %d got %d)\n",
1234 fd_nb, got_fd);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001235 goto out;
1236 }
1237 maxoff = curoff;
1238 curoff = 0;
1239 for (i = 0; i < got_fd; i++) {
1240 int fd = tmpfd[i];
1241 socklen_t socklen;
1242 int len;
1243
1244 xfer_sock = calloc(1, sizeof(*xfer_sock));
1245 if (!xfer_sock) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001246 ha_warning("Failed to allocate memory in get_old_sockets() !\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001247 break;
1248 }
1249 xfer_sock->fd = -1;
1250
1251 socklen = sizeof(xfer_sock->addr);
1252 if (getsockname(fd, (struct sockaddr *)&xfer_sock->addr, &socklen) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001253 ha_warning("Failed to get socket address\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001254 free(xfer_sock);
Olivier Houchardbe7b1ce2017-07-17 17:25:33 +02001255 xfer_sock = NULL;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001256 continue;
1257 }
1258 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001259 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001260 goto out;
1261 }
1262 len = tmpbuf[curoff++];
1263 if (len > 0) {
1264 /* We have a namespace */
1265 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001266 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001267 goto out;
1268 }
1269 xfer_sock->namespace = malloc(len + 1);
1270 if (!xfer_sock->namespace) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001271 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001272 goto out;
1273 }
1274 memcpy(xfer_sock->namespace, &tmpbuf[curoff], len);
1275 xfer_sock->namespace[len] = 0;
1276 curoff += len;
1277 }
1278 if (curoff >= maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001279 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001280 goto out;
1281 }
1282 len = tmpbuf[curoff++];
1283 if (len > 0) {
1284 /* We have an interface */
1285 if (curoff + len > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001286 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001287 goto out;
1288 }
1289 xfer_sock->iface = malloc(len + 1);
1290 if (!xfer_sock->iface) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001291 ha_warning("Failed to allocate memory while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001292 goto out;
1293 }
1294 memcpy(xfer_sock->iface, &tmpbuf[curoff], len);
Olivier Houchard33e083c2018-03-15 17:48:49 +01001295 xfer_sock->iface[len] = 0;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001296 curoff += len;
1297 }
1298 if (curoff + sizeof(int) > maxoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001299 ha_warning("Inconsistency while transferring sockets\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001300 goto out;
1301 }
1302 memcpy(&xfer_sock->options, &tmpbuf[curoff],
1303 sizeof(xfer_sock->options));
1304 curoff += sizeof(xfer_sock->options);
1305
1306 xfer_sock->fd = fd;
1307 if (xfer_sock_list)
1308 xfer_sock_list->prev = xfer_sock;
1309 xfer_sock->next = xfer_sock_list;
1310 xfer_sock->prev = NULL;
1311 xfer_sock_list = xfer_sock;
1312 xfer_sock = NULL;
1313 }
1314
1315 ret2 = 0;
1316out:
1317 /* If we failed midway make sure to close the remaining
1318 * file descriptors
1319 */
1320 if (tmpfd != NULL && i < got_fd) {
1321 for (; i < got_fd; i++) {
1322 close(tmpfd[i]);
1323 }
1324 }
1325 free(tmpbuf);
1326 free(tmpfd);
1327 free(cmsgbuf);
1328 if (sock != -1)
1329 close(sock);
1330 if (xfer_sock) {
1331 free(xfer_sock->namespace);
1332 free(xfer_sock->iface);
1333 if (xfer_sock->fd != -1)
1334 close(xfer_sock->fd);
1335 free(xfer_sock);
1336 }
1337 return (ret2);
1338}
1339
Willy Tarreaubaaee002006-06-26 02:48:02 +02001340/*
William Lallemand73b85e72017-06-01 17:38:51 +02001341 * copy and cleanup the current argv
William Lallemanddf6c5a82020-06-04 17:40:23 +02001342 * Remove the -sf /-st / -x parameters
William Lallemand73b85e72017-06-01 17:38:51 +02001343 * Return an allocated copy of argv
1344 */
1345
1346static char **copy_argv(int argc, char **argv)
1347{
William Lallemanddf6c5a82020-06-04 17:40:23 +02001348 char **newargv, **retargv;
William Lallemand73b85e72017-06-01 17:38:51 +02001349
1350 newargv = calloc(argc + 2, sizeof(char *));
1351 if (newargv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001352 ha_warning("Cannot allocate memory\n");
William Lallemand73b85e72017-06-01 17:38:51 +02001353 return NULL;
1354 }
William Lallemanddf6c5a82020-06-04 17:40:23 +02001355 retargv = newargv;
William Lallemand73b85e72017-06-01 17:38:51 +02001356
William Lallemanddf6c5a82020-06-04 17:40:23 +02001357 /* first copy argv[0] */
1358 *newargv++ = *argv++;
1359 argc--;
1360
1361 while (argc > 0) {
1362 if (**argv != '-') {
1363 /* non options are copied but will fail in the argument parser */
1364 *newargv++ = *argv++;
1365 argc--;
1366
1367 } else {
1368 char *flag;
1369
1370 flag = *argv + 1;
1371
1372 if (flag[0] == '-' && flag[1] == 0) {
1373 /* "--\0" copy every arguments till the end of argv */
1374 *newargv++ = *argv++;
1375 argc--;
1376
1377 while (argc > 0) {
1378 *newargv++ = *argv++;
1379 argc--;
1380 }
1381 } else {
1382 switch (*flag) {
1383 case 's':
1384 /* -sf / -st and their parameters are ignored */
1385 if (flag[1] == 'f' || flag[1] == 't') {
1386 argc--;
1387 argv++;
1388 /* The list can't contain a negative value since the only
1389 way to know the end of this list is by looking for the
1390 next option or the end of the options */
1391 while (argc > 0 && argv[0][0] != '-') {
1392 argc--;
1393 argv++;
1394 }
1395 }
1396 break;
1397
1398 case 'x':
1399 /* this option and its parameter are ignored */
1400 argc--;
1401 argv++;
1402 if (argc > 0) {
1403 argc--;
1404 argv++;
1405 }
1406 break;
1407
1408 case 'C':
1409 case 'n':
1410 case 'm':
1411 case 'N':
1412 case 'L':
1413 case 'f':
1414 case 'p':
1415 case 'S':
1416 /* these options have only 1 parameter which must be copied and can start with a '-' */
1417 *newargv++ = *argv++;
1418 argc--;
1419 if (argc == 0)
1420 goto error;
1421 *newargv++ = *argv++;
1422 argc--;
1423 break;
1424 default:
1425 /* for other options just copy them without parameters, this is also done
1426 * for options like "--foo", but this will fail in the argument parser.
1427 * */
1428 *newargv++ = *argv++;
1429 argc--;
1430 break;
1431 }
William Lallemand73b85e72017-06-01 17:38:51 +02001432 }
1433 }
William Lallemand73b85e72017-06-01 17:38:51 +02001434 }
William Lallemand2bf6d622017-06-20 11:20:23 +02001435
William Lallemanddf6c5a82020-06-04 17:40:23 +02001436 return retargv;
1437
1438error:
1439 free(retargv);
1440 return NULL;
William Lallemand73b85e72017-06-01 17:38:51 +02001441}
1442
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001443
1444/* Performs basic random seed initialization. The main issue with this is that
1445 * srandom_r() only takes 32 bits and purposely provides a reproducible sequence,
1446 * which means that there will only be 4 billion possible random sequences once
1447 * srandom() is called, regardless of the internal state. Not calling it is
1448 * even worse as we'll always produce the same randoms sequences. What we do
1449 * here is to create an initial sequence from various entropy sources, hash it
1450 * using SHA1 and keep the resulting 160 bits available globally.
1451 *
1452 * We initialize the current process with the first 32 bits before starting the
1453 * polling loop, where all this will be changed to have process specific and
1454 * thread specific sequences.
Willy Tarreau52bf8392020-03-08 00:42:37 +01001455 *
1456 * Before starting threads, it's still possible to call random() as srandom()
1457 * is initialized from this, but after threads and/or processes are started,
1458 * only ha_random() is expected to be used to guarantee distinct sequences.
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001459 */
1460static void ha_random_boot(char *const *argv)
1461{
1462 unsigned char message[256];
1463 unsigned char *m = message;
1464 struct timeval tv;
1465 blk_SHA_CTX ctx;
1466 unsigned long l;
1467 int fd;
1468 int i;
1469
1470 /* start with current time as pseudo-random seed */
1471 gettimeofday(&tv, NULL);
1472 write_u32(m, tv.tv_sec); m += 4;
1473 write_u32(m, tv.tv_usec); m += 4;
1474
1475 /* PID and PPID add some OS-based randomness */
1476 write_u16(m, getpid()); m += 2;
1477 write_u16(m, getppid()); m += 2;
1478
1479 /* take up to 160 bits bytes from /dev/urandom if available (non-blocking) */
1480 fd = open("/dev/urandom", O_RDONLY);
1481 if (fd >= 0) {
1482 i = read(fd, m, 20);
1483 if (i > 0)
1484 m += i;
1485 close(fd);
1486 }
1487
1488 /* take up to 160 bits bytes from openssl (non-blocking) */
1489#ifdef USE_OPENSSL
1490 if (RAND_bytes(m, 20) == 1)
1491 m += 20;
1492#endif
1493
1494 /* take 160 bits from existing random in case it was already initialized */
1495 for (i = 0; i < 5; i++) {
1496 write_u32(m, random());
1497 m += 4;
1498 }
1499
1500 /* stack address (benefit form operating system's ASLR) */
1501 l = (unsigned long)&m;
1502 memcpy(m, &l, sizeof(l)); m += sizeof(l);
1503
1504 /* argv address (benefit form operating system's ASLR) */
1505 l = (unsigned long)&argv;
1506 memcpy(m, &l, sizeof(l)); m += sizeof(l);
1507
1508 /* use tv_usec again after all the operations above */
1509 gettimeofday(&tv, NULL);
1510 write_u32(m, tv.tv_usec); m += 4;
1511
1512 /*
1513 * At this point, ~84-92 bytes have been used
1514 */
1515
1516 /* finish with the hostname */
1517 strncpy((char *)m, hostname, message + sizeof(message) - m);
1518 m += strlen(hostname);
1519
1520 /* total message length */
1521 l = m - message;
1522
1523 memset(&ctx, 0, sizeof(ctx));
1524 blk_SHA1_Init(&ctx);
1525 blk_SHA1_Update(&ctx, message, l);
1526 blk_SHA1_Final(boot_seed, &ctx);
1527
1528 srandom(read_u32(boot_seed));
Willy Tarreau52bf8392020-03-08 00:42:37 +01001529 ha_random_seed(boot_seed, sizeof(boot_seed));
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001530}
1531
Willy Tarreau5a023f02019-03-01 14:19:31 +01001532/* considers splicing proxies' maxconn, computes the ideal global.maxpipes
1533 * setting, and returns it. It may return -1 meaning "unlimited" if some
1534 * unlimited proxies have been found and the global.maxconn value is not yet
1535 * set. It may also return a value greater than maxconn if it's not yet set.
1536 * Note that a value of zero means there is no need for pipes. -1 is never
1537 * returned if global.maxconn is valid.
1538 */
1539static int compute_ideal_maxpipes()
1540{
1541 struct proxy *cur;
1542 int nbfe = 0, nbbe = 0;
1543 int unlimited = 0;
1544 int pipes;
1545 int max;
1546
1547 for (cur = proxies_list; cur; cur = cur->next) {
1548 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
1549 if (cur->cap & PR_CAP_FE) {
1550 max = cur->maxconn;
1551 nbfe += max;
1552 if (!max) {
1553 unlimited = 1;
1554 break;
1555 }
1556 }
1557 if (cur->cap & PR_CAP_BE) {
1558 max = cur->fullconn ? cur->fullconn : global.maxconn;
1559 nbbe += max;
1560 if (!max) {
1561 unlimited = 1;
1562 break;
1563 }
1564 }
1565 }
1566 }
1567
1568 pipes = MAX(nbfe, nbbe);
1569 if (global.maxconn) {
1570 if (pipes > global.maxconn || unlimited)
1571 pipes = global.maxconn;
1572 } else if (unlimited) {
1573 pipes = -1;
1574 }
1575
1576 return pipes >= 4 ? pipes / 4 : pipes;
1577}
1578
Willy Tarreauac350932019-03-01 15:43:14 +01001579/* considers global.maxsocks, global.maxpipes, async engines, SSL frontends and
1580 * rlimits and computes an ideal maxconn. It's meant to be called only when
1581 * maxsock contains the sum of listening FDs, before it is updated based on
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001582 * maxconn and pipes. If there are not enough FDs left, DEFAULT_MAXCONN (by
1583 * default 100) is returned as it is expected that it will even run on tight
1584 * environments, and will maintain compatibility with previous packages that
1585 * used to rely on this value as the default one. The system will emit a
1586 * warning indicating how many FDs are missing anyway if needed.
Willy Tarreauac350932019-03-01 15:43:14 +01001587 */
1588static int compute_ideal_maxconn()
1589{
1590 int ssl_sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1591 int engine_fds = global.ssl_used_async_engines * ssl_sides;
1592 int pipes = compute_ideal_maxpipes();
Willy Tarreaub1beaa32020-03-06 10:25:31 +01001593 int remain = MAX(rlim_fd_cur_at_boot, rlim_fd_max_at_boot);
Willy Tarreauac350932019-03-01 15:43:14 +01001594 int maxconn;
1595
1596 /* we have to take into account these elements :
1597 * - number of engine_fds, which inflates the number of FD needed per
1598 * connection by this number.
1599 * - number of pipes per connection on average : for the unlimited
1600 * case, this is 0.5 pipe FDs per connection, otherwise it's a
1601 * fixed value of 2*pipes.
1602 * - two FDs per connection
1603 */
1604
1605 /* subtract listeners and checks */
1606 remain -= global.maxsock;
1607
Willy Tarreau3f200852019-03-14 19:13:17 +01001608 /* one epoll_fd/kqueue_fd per thread */
1609 remain -= global.nbthread;
1610
1611 /* one wake-up pipe (2 fd) per thread */
1612 remain -= 2 * global.nbthread;
1613
Willy Tarreauac350932019-03-01 15:43:14 +01001614 /* Fixed pipes values : we only subtract them if they're not larger
1615 * than the remaining FDs because pipes are optional.
1616 */
1617 if (pipes >= 0 && pipes * 2 < remain)
1618 remain -= pipes * 2;
1619
1620 if (pipes < 0) {
1621 /* maxsock = maxconn * 2 + maxconn/4 * 2 + maxconn * engine_fds.
1622 * = maxconn * (2 + 0.5 + engine_fds)
1623 * = maxconn * (4 + 1 + 2*engine_fds) / 2
1624 */
1625 maxconn = 2 * remain / (5 + 2 * engine_fds);
1626 } else {
1627 /* maxsock = maxconn * 2 + maxconn * engine_fds.
1628 * = maxconn * (2 + engine_fds)
1629 */
1630 maxconn = remain / (2 + engine_fds);
1631 }
1632
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001633 return MAX(maxconn, DEFAULT_MAXCONN);
Willy Tarreauac350932019-03-01 15:43:14 +01001634}
1635
Willy Tarreaua409f302020-03-10 17:08:53 +01001636/* computes the estimated maxsock value for the given maxconn based on the
1637 * possibly set global.maxpipes and existing partial global.maxsock. It may
1638 * temporarily change global.maxconn for the time needed to propagate the
1639 * computations, and will reset it.
1640 */
1641static int compute_ideal_maxsock(int maxconn)
1642{
1643 int maxpipes = global.maxpipes;
1644 int maxsock = global.maxsock;
1645
1646
1647 if (!maxpipes) {
1648 int old_maxconn = global.maxconn;
1649
1650 global.maxconn = maxconn;
1651 maxpipes = compute_ideal_maxpipes();
1652 global.maxconn = old_maxconn;
1653 }
1654
1655 maxsock += maxconn * 2; /* each connection needs two sockets */
1656 maxsock += maxpipes * 2; /* each pipe needs two FDs */
1657 maxsock += global.nbthread; /* one epoll_fd/kqueue_fd per thread */
1658 maxsock += 2 * global.nbthread; /* one wake-up pipe (2 fd) per thread */
1659
1660 /* compute fd used by async engines */
1661 if (global.ssl_used_async_engines) {
1662 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1663
1664 maxsock += maxconn * sides * global.ssl_used_async_engines;
1665 }
1666 return maxsock;
1667}
1668
Willy Tarreau304e17e2020-03-10 17:54:54 +01001669/* Tests if it is possible to set the current process' RLIMIT_NOFILE to
1670 * <maxsock>, then sets it back to the previous value. Returns non-zero if the
1671 * value is accepted, non-zero otherwise. This is used to determine if an
1672 * automatic limit may be applied or not. When it is not, the caller knows that
1673 * the highest we can do is the rlim_max at boot. In case of error, we return
1674 * that the setting is possible, so that we defer the error processing to the
1675 * final stage in charge of enforcing this.
1676 */
1677static int check_if_maxsock_permitted(int maxsock)
1678{
1679 struct rlimit orig_limit, test_limit;
1680 int ret;
1681
1682 if (getrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1683 return 1;
1684
1685 /* don't go further if we can't even set to what we have */
1686 if (setrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1687 return 1;
1688
1689 test_limit.rlim_max = MAX(maxsock, orig_limit.rlim_max);
1690 test_limit.rlim_cur = test_limit.rlim_max;
1691 ret = setrlimit(RLIMIT_NOFILE, &test_limit);
1692
1693 if (setrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1694 return 1;
1695
1696 return ret == 0;
1697}
1698
1699
William Lallemand73b85e72017-06-01 17:38:51 +02001700/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001701 * This function initializes all the necessary variables. It only returns
1702 * if everything is OK. If something fails, it exits.
1703 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001704static void init(int argc, char **argv)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001705{
Willy Tarreaubaaee002006-06-26 02:48:02 +02001706 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001707 char *tmp;
1708 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +02001709 int err_code = 0;
Maxime de Roucy0f503922016-05-13 23:52:55 +02001710 char *err_msg = NULL;
Willy Tarreau477ecd82010-01-03 21:12:30 +01001711 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +00001712 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +02001713 char *change_dir = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001714 struct proxy *px;
Willy Tarreaue6945732016-12-21 19:57:00 +01001715 struct post_check_fct *pcf;
Willy Tarreauac350932019-03-01 15:43:14 +01001716 int ideal_maxconn;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001717
Christopher Faulete3a5e352017-10-24 13:53:54 +02001718 global.mode = MODE_STARTING;
William Lallemand00417412020-06-05 14:08:41 +02001719 old_argv = copy_argv(argc, argv);
1720 if (!old_argv) {
William Lallemanddf6c5a82020-06-04 17:40:23 +02001721 ha_alert("failed to copy argv.\n");
1722 exit(1);
1723 }
William Lallemand73b85e72017-06-01 17:38:51 +02001724
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001725 if (!init_trash_buffers(1)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001726 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet748919a2017-07-26 14:59:46 +02001727 exit(1);
1728 }
David du Colombier7af46052012-05-16 14:16:48 +02001729
Emeric Brun2b920a12010-09-23 18:30:22 +02001730 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
1731 * the string in case of truncation, and at least FreeBSD appears not to do
1732 * it.
1733 */
1734 memset(hostname, 0, sizeof(hostname));
1735 gethostname(hostname, sizeof(hostname) - 1);
1736 memset(localpeer, 0, sizeof(localpeer));
1737 memcpy(localpeer, hostname, (sizeof(hostname) > sizeof(localpeer) ? sizeof(localpeer) : sizeof(hostname)) - 1);
William Lallemanddaf4cd22018-04-17 16:46:13 +02001738 setenv("HAPROXY_LOCALPEER", localpeer, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02001739
William Lallemand24c928c2020-01-14 17:58:18 +01001740 /* we were in mworker mode, we should restart in mworker mode */
1741 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL)
1742 global.mode |= MODE_MWORKER;
1743
Willy Tarreaubaaee002006-06-26 02:48:02 +02001744 /*
1745 * Initialize the previously static variables.
1746 */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001747
Willy Tarreau173d9952018-01-26 21:48:23 +01001748 totalconn = actconn = listeners = stopping = 0;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001749 killed = 0;
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001750
Willy Tarreaubaaee002006-06-26 02:48:02 +02001751
1752#ifdef HAPROXY_MEMMAX
Willy Tarreau70060452015-12-14 12:46:07 +01001753 global.rlimit_memmax_all = HAPROXY_MEMMAX;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001754#endif
1755
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001756 tzset();
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001757 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001758 start_date = now;
1759
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001760 ha_random_boot(argv);
Willy Tarreau84310e22014-02-14 11:59:04 +01001761
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001762 if (init_acl() != 0)
1763 exit(1);
Willy Tarreaub6b3df32018-11-26 16:31:20 +01001764
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001765 /* Initialise lua. */
1766 hlua_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001767
Christopher Fauletff2613e2016-11-09 11:36:17 +01001768 /* Initialize process vars */
1769 vars_init(&global.vars, SCOPE_PROC);
1770
Willy Tarreau43b78992009-01-25 15:42:27 +01001771 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaue5733232019-05-22 19:24:06 +02001772#if defined(USE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001773 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001774#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001775#if defined(USE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001776 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001777#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001778#if defined(USE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +01001779 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001780#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001781#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001782 global.tune.options |= GTUNE_USE_EVPORTS;
1783#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001784#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001785 global.tune.options |= GTUNE_USE_SPLICE;
1786#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001787#if defined(USE_GETADDRINFO)
1788 global.tune.options |= GTUNE_USE_GAI;
1789#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001790#if defined(SO_REUSEPORT)
1791 global.tune.options |= GTUNE_USE_REUSEPORT;
1792#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02001793
1794 pid = getpid();
1795 progname = *argv;
1796 while ((tmp = strchr(progname, '/')) != NULL)
1797 progname = tmp + 1;
1798
Kevinm48936af2010-12-22 16:08:21 +00001799 /* the process name is used for the logs only */
Dragan Dosen43885c72015-10-01 13:18:13 +02001800 chunk_initstr(&global.log_tag, strdup(progname));
Kevinm48936af2010-12-22 16:08:21 +00001801
Willy Tarreaubaaee002006-06-26 02:48:02 +02001802 argc--; argv++;
1803 while (argc > 0) {
1804 char *flag;
1805
1806 if (**argv == '-') {
1807 flag = *argv+1;
1808
1809 /* 1 arg */
1810 if (*flag == 'v') {
1811 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +01001812 if (flag[1] == 'v') /* -vv */
1813 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001814 exit(0);
1815 }
Willy Tarreaue5733232019-05-22 19:24:06 +02001816#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001817 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +01001818 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001819#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001820#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001821 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +01001822 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001823#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001824#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001825 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +01001826 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001827#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001828#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001829 else if (*flag == 'd' && flag[1] == 'v')
1830 global.tune.options &= ~GTUNE_USE_EVPORTS;
1831#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001832#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001833 else if (*flag == 'd' && flag[1] == 'S')
1834 global.tune.options &= ~GTUNE_USE_SPLICE;
1835#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001836#if defined(USE_GETADDRINFO)
1837 else if (*flag == 'd' && flag[1] == 'G')
1838 global.tune.options &= ~GTUNE_USE_GAI;
1839#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001840#if defined(SO_REUSEPORT)
1841 else if (*flag == 'd' && flag[1] == 'R')
1842 global.tune.options &= ~GTUNE_USE_REUSEPORT;
1843#endif
Emeric Brun850efd52014-01-29 12:24:34 +01001844 else if (*flag == 'd' && flag[1] == 'V')
1845 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001846 else if (*flag == 'V')
1847 arg_mode |= MODE_VERBOSE;
1848 else if (*flag == 'd' && flag[1] == 'b')
1849 arg_mode |= MODE_FOREGROUND;
Willy Tarreau3eb10b82020-04-15 16:42:39 +02001850 else if (*flag == 'd' && flag[1] == 'W')
1851 arg_mode |= MODE_ZERO_WARNING;
Willy Tarreau6e064432012-05-08 15:40:42 +02001852 else if (*flag == 'd' && flag[1] == 'M')
1853 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreau3eed10e2016-11-07 21:03:16 +01001854 else if (*flag == 'd' && flag[1] == 'r')
1855 global.tune.options |= GTUNE_RESOLVE_DONTFAIL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001856 else if (*flag == 'd')
1857 arg_mode |= MODE_DEBUG;
1858 else if (*flag == 'c')
1859 arg_mode |= MODE_CHECK;
William Lallemand095ba4c2017-06-01 17:38:50 +02001860 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +02001861 arg_mode |= MODE_DAEMON;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001862 else if (*flag == 'W' && flag[1] == 's') {
Lukas Tribusf46bf952017-11-21 12:39:34 +01001863 arg_mode |= MODE_MWORKER | MODE_FOREGROUND;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001864#if defined(USE_SYSTEMD)
1865 global.tune.options |= GTUNE_USE_SYSTEMD;
1866#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001867 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 +01001868 usage(progname);
1869#endif
1870 }
William Lallemand095ba4c2017-06-01 17:38:50 +02001871 else if (*flag == 'W')
1872 arg_mode |= MODE_MWORKER;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001873 else if (*flag == 'q')
1874 arg_mode |= MODE_QUIET;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001875 else if (*flag == 'x') {
William Lallemand4f71d302020-06-04 23:41:29 +02001876 if (argc <= 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001877 ha_alert("Unix socket path expected with the -x flag\n\n");
William Lallemand45eff442017-06-19 15:57:55 +02001878 usage(progname);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001879 }
William Lallemand4fc09692017-06-19 16:37:19 +02001880 if (old_unixsocket)
Christopher Faulet767a84b2017-11-24 16:50:31 +01001881 ha_warning("-x option already set, overwriting the value\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001882 old_unixsocket = argv[1];
William Lallemand4fc09692017-06-19 16:37:19 +02001883
Olivier Houchardf73629d2017-04-05 22:33:04 +02001884 argv++;
1885 argc--;
1886 }
William Lallemande7361152018-10-26 14:47:36 +02001887 else if (*flag == 'S') {
1888 struct wordlist *c;
1889
William Lallemanda6b32492020-06-04 23:49:20 +02001890 if (argc <= 1) {
William Lallemande7361152018-10-26 14:47:36 +02001891 ha_alert("Socket and optional bind parameters expected with the -S flag\n");
1892 usage(progname);
1893 }
1894 if ((c = malloc(sizeof(*c))) == NULL || (c->s = strdup(argv[1])) == NULL) {
1895 ha_alert("Cannot allocate memory\n");
1896 exit(EXIT_FAILURE);
1897 }
1898 LIST_ADD(&mworker_cli_conf, &c->list);
1899
1900 argv++;
1901 argc--;
1902 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001903 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
1904 /* list of pids to finish ('f') or terminate ('t') */
1905
1906 if (flag[1] == 'f')
1907 oldpids_sig = SIGUSR1; /* finish then exit */
1908 else
1909 oldpids_sig = SIGTERM; /* terminate immediately */
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001910 while (argc > 1 && argv[1][0] != '-') {
Chris Lane236062f2018-02-05 23:15:44 +00001911 char * endptr = NULL;
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001912 oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int));
1913 if (!oldpids) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001914 ha_alert("Cannot allocate old pid : out of memory.\n");
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001915 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001916 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001917 argc--; argv++;
Chris Lane236062f2018-02-05 23:15:44 +00001918 errno = 0;
1919 oldpids[nb_oldpids] = strtol(*argv, &endptr, 10);
1920 if (errno) {
1921 ha_alert("-%2s option: failed to parse {%s}: %s\n",
1922 flag,
1923 *argv, strerror(errno));
1924 exit(1);
1925 } else if (endptr && strlen(endptr)) {
Willy Tarreau90807112020-02-25 08:16:33 +01001926 while (isspace((unsigned char)*endptr)) endptr++;
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001927 if (*endptr != 0) {
Chris Lane236062f2018-02-05 23:15:44 +00001928 ha_alert("-%2s option: some bytes unconsumed in PID list {%s}\n",
1929 flag, endptr);
1930 exit(1);
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001931 }
Chris Lane236062f2018-02-05 23:15:44 +00001932 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001933 if (oldpids[nb_oldpids] <= 0)
1934 usage(progname);
1935 nb_oldpids++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001936 }
1937 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001938 else if (flag[0] == '-' && flag[1] == 0) { /* "--" */
1939 /* now that's a cfgfile list */
1940 argv++; argc--;
1941 while (argc > 0) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02001942 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001943 ha_alert("Cannot load configuration file/directory %s : %s\n",
1944 *argv,
1945 err_msg);
Willy Tarreaua088d312015-10-08 11:58:48 +02001946 exit(1);
1947 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001948 argv++; argc--;
1949 }
1950 break;
1951 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001952 else { /* >=2 args */
1953 argv++; argc--;
1954 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001955 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001956
1957 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +02001958 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001959 case 'n' : cfg_maxconn = atol(*argv); break;
Willy Tarreau70060452015-12-14 12:46:07 +01001960 case 'm' : global.rlimit_memmax_all = atol(*argv); break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001961 case 'N' : cfg_maxpconn = atol(*argv); break;
William Lallemanddaf4cd22018-04-17 16:46:13 +02001962 case 'L' :
1963 strncpy(localpeer, *argv, sizeof(localpeer) - 1);
1964 setenv("HAPROXY_LOCALPEER", localpeer, 1);
1965 break;
Willy Tarreau5d01a632009-06-22 16:02:30 +02001966 case 'f' :
Maxime de Roucy0f503922016-05-13 23:52:55 +02001967 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001968 ha_alert("Cannot load configuration file/directory %s : %s\n",
1969 *argv,
1970 err_msg);
Willy Tarreau5d01a632009-06-22 16:02:30 +02001971 exit(1);
1972 }
Willy Tarreau5d01a632009-06-22 16:02:30 +02001973 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001974 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001975 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001976 }
1977 }
1978 }
1979 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001980 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001981 argv++; argc--;
1982 }
1983
Christopher Faulete3a5e352017-10-24 13:53:54 +02001984 global.mode |= (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE
Willy Tarreau3eb10b82020-04-15 16:42:39 +02001985 | MODE_QUIET | MODE_CHECK | MODE_DEBUG | MODE_ZERO_WARNING));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001986
William Lallemand944e6192018-11-21 15:48:31 +01001987 if (getenv("HAPROXY_MWORKER_WAIT_ONLY")) {
William Lallemandcb11fd22017-06-01 17:38:52 +02001988 unsetenv("HAPROXY_MWORKER_WAIT_ONLY");
William Lallemand944e6192018-11-21 15:48:31 +01001989 global.mode |= MODE_MWORKER_WAIT;
1990 global.mode &= ~MODE_MWORKER;
William Lallemandcb11fd22017-06-01 17:38:52 +02001991 }
1992
1993 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) {
1994 atexit_flag = 1;
1995 atexit(reexec_on_failure);
1996 }
1997
Willy Tarreau576132e2011-09-10 19:26:56 +02001998 if (change_dir && chdir(change_dir) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001999 ha_alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
Willy Tarreau576132e2011-09-10 19:26:56 +02002000 exit(1);
2001 }
2002
Willy Tarreaubaaee002006-06-26 02:48:02 +02002003 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002004
2005 init_default_instance();
2006
William Lallemand944e6192018-11-21 15:48:31 +01002007 /* in wait mode, we don't try to read the configuration files */
2008 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand7b302d82019-05-20 11:15:37 +02002009 struct buffer *trash = get_trash_chunk();
Willy Tarreauc4382422009-12-06 13:10:44 +01002010
William Lallemand944e6192018-11-21 15:48:31 +01002011 /* handle cfgfiles that are actually directories */
2012 cfgfiles_expand_directories();
2013
2014 if (LIST_ISEMPTY(&cfg_cfgfiles))
2015 usage(progname);
2016
2017
2018 list_for_each_entry(wl, &cfg_cfgfiles, list) {
2019 int ret;
2020
William Lallemand7b302d82019-05-20 11:15:37 +02002021 if (trash->data)
2022 chunk_appendf(trash, ";");
2023
2024 chunk_appendf(trash, "%s", wl->s);
2025
William Lallemand944e6192018-11-21 15:48:31 +01002026 ret = readcfgfile(wl->s);
2027 if (ret == -1) {
2028 ha_alert("Could not open configuration file %s : %s\n",
2029 wl->s, strerror(errno));
2030 exit(1);
2031 }
2032 if (ret & (ERR_ABORT|ERR_FATAL))
2033 ha_alert("Error(s) found in configuration file : %s\n", wl->s);
2034 err_code |= ret;
2035 if (err_code & ERR_ABORT)
2036 exit(1);
Willy Tarreauc4382422009-12-06 13:10:44 +01002037 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02002038
William Lallemand944e6192018-11-21 15:48:31 +01002039 /* do not try to resolve arguments nor to spot inconsistencies when
2040 * the configuration contains fatal errors caused by files not found
2041 * or failed memory allocations.
2042 */
2043 if (err_code & (ERR_ABORT|ERR_FATAL)) {
2044 ha_alert("Fatal errors found in configuration.\n");
2045 exit(1);
2046 }
William Lallemand7b302d82019-05-20 11:15:37 +02002047 if (trash->data)
2048 setenv("HAPROXY_CFGFILES", trash->area, 1);
2049
Willy Tarreaub83dc3d2017-04-19 11:24:07 +02002050 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002051 if (global.mode & MODE_MWORKER) {
2052 int proc;
William Lallemand16dd1b32018-11-19 18:46:18 +01002053 struct mworker_proc *tmproc;
2054
William Lallemand482f9a92019-04-12 16:15:00 +02002055 setenv("HAPROXY_MWORKER", "1", 1);
2056
William Lallemand16dd1b32018-11-19 18:46:18 +01002057 if (getenv("HAPROXY_MWORKER_REEXEC") == NULL) {
2058
William Lallemandf3a86832019-04-01 11:29:58 +02002059 tmproc = calloc(1, sizeof(*tmproc));
William Lallemand16dd1b32018-11-19 18:46:18 +01002060 if (!tmproc) {
2061 ha_alert("Cannot allocate process structures.\n");
2062 exit(EXIT_FAILURE);
2063 }
William Lallemand8f7069a2019-04-12 16:09:23 +02002064 tmproc->options |= PROC_O_TYPE_MASTER; /* master */
William Lallemand16dd1b32018-11-19 18:46:18 +01002065 tmproc->reloads = 0;
2066 tmproc->relative_pid = 0;
2067 tmproc->pid = pid;
2068 tmproc->timestamp = start_date.tv_sec;
2069 tmproc->ipc_fd[0] = -1;
2070 tmproc->ipc_fd[1] = -1;
2071
2072 proc_self = tmproc;
2073
2074 LIST_ADDQ(&proc_list, &tmproc->list);
2075 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002076
2077 for (proc = 0; proc < global.nbproc; proc++) {
William Lallemandce83b4a2018-10-26 14:47:30 +02002078
William Lallemandf3a86832019-04-01 11:29:58 +02002079 tmproc = calloc(1, sizeof(*tmproc));
William Lallemandce83b4a2018-10-26 14:47:30 +02002080 if (!tmproc) {
2081 ha_alert("Cannot allocate process structures.\n");
2082 exit(EXIT_FAILURE);
2083 }
2084
William Lallemand8f7069a2019-04-12 16:09:23 +02002085 tmproc->options |= PROC_O_TYPE_WORKER; /* worker */
William Lallemandce83b4a2018-10-26 14:47:30 +02002086 tmproc->pid = -1;
2087 tmproc->reloads = 0;
William Lallemande3683302018-11-19 18:46:17 +01002088 tmproc->timestamp = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02002089 tmproc->relative_pid = 1 + proc;
William Lallemand550db6d2018-11-06 17:37:12 +01002090 tmproc->ipc_fd[0] = -1;
2091 tmproc->ipc_fd[1] = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02002092
2093 if (mworker_cli_sockpair_new(tmproc, proc) < 0) {
2094 exit(EXIT_FAILURE);
2095 }
2096
2097 LIST_ADDQ(&proc_list, &tmproc->list);
2098 }
William Lallemand944e6192018-11-21 15:48:31 +01002099 }
2100 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
2101 struct wordlist *it, *c;
2102
William Lallemand1b663612018-10-26 14:47:33 +02002103 mworker_env_to_proc_list(); /* get the info of the children in the env */
William Lallemand8a022572018-10-26 14:47:35 +02002104
William Lallemande7361152018-10-26 14:47:36 +02002105
William Lallemand550db6d2018-11-06 17:37:12 +01002106 if (!LIST_ISEMPTY(&mworker_cli_conf)) {
William Lallemande7361152018-10-26 14:47:36 +02002107
William Lallemand550db6d2018-11-06 17:37:12 +01002108 if (mworker_cli_proxy_create() < 0) {
William Lallemande7361152018-10-26 14:47:36 +02002109 ha_alert("Can't create the master's CLI.\n");
2110 exit(EXIT_FAILURE);
2111 }
William Lallemande7361152018-10-26 14:47:36 +02002112
William Lallemand550db6d2018-11-06 17:37:12 +01002113 list_for_each_entry_safe(c, it, &mworker_cli_conf, list) {
2114
2115 if (mworker_cli_proxy_new_listener(c->s) < 0) {
2116 ha_alert("Can't create the master's CLI.\n");
2117 exit(EXIT_FAILURE);
2118 }
2119 LIST_DEL(&c->list);
2120 free(c->s);
2121 free(c);
2122 }
2123 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002124 }
2125
Willy Tarreaubb925012009-07-23 13:36:36 +02002126 err_code |= check_config_validity();
Christopher Fauletc1692962019-08-12 09:51:07 +02002127 for (px = proxies_list; px; px = px->next) {
2128 struct server *srv;
2129 struct post_proxy_check_fct *ppcf;
2130 struct post_server_check_fct *pscf;
2131
2132 list_for_each_entry(pscf, &post_server_check_list, list) {
2133 for (srv = px->srv; srv; srv = srv->next)
2134 err_code |= pscf->fct(srv);
2135 }
2136 list_for_each_entry(ppcf, &post_proxy_check_list, list)
2137 err_code |= ppcf->fct(px);
2138 }
Willy Tarreaubb925012009-07-23 13:36:36 +02002139 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002140 ha_alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002141 exit(1);
2142 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002143
Carl Henrik Lundef91ac192020-02-27 16:45:50 +01002144 err_code |= pattern_finalize_config();
2145 if (err_code & (ERR_ABORT|ERR_FATAL)) {
2146 ha_alert("Failed to finalize pattern config.\n");
2147 exit(1);
2148 }
Willy Tarreau0f936722019-04-11 14:47:08 +02002149
Willy Tarreau70060452015-12-14 12:46:07 +01002150 /* recompute the amount of per-process memory depending on nbproc and
2151 * the shared SSL cache size (allowed to exist in all processes).
2152 */
2153 if (global.rlimit_memmax_all) {
2154#if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE)
2155 int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL;
2156
2157 global.rlimit_memmax =
2158 ((((int64_t)global.rlimit_memmax_all * 1048576LL) -
2159 ssl_cache_bytes) / global.nbproc +
2160 ssl_cache_bytes + 1048575LL) / 1048576LL;
2161#else
2162 global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc;
2163#endif
2164 }
2165
Willy Tarreaue5733232019-05-22 19:24:06 +02002166#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002167 err_code |= netns_init();
2168 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002169 ha_alert("Failed to initialize namespace support.\n");
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01002170 exit(1);
2171 }
2172#endif
2173
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01002174 /* Apply server states */
2175 apply_server_state();
2176
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002177 for (px = proxies_list; px; px = px->next)
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01002178 srv_compute_all_admin_states(px);
2179
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01002180 /* Apply servers' configured address */
2181 err_code |= srv_init_addr();
2182 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002183 ha_alert("Failed to initialize server(s) addr.\n");
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01002184 exit(1);
2185 }
2186
Willy Tarreau3eb10b82020-04-15 16:42:39 +02002187 if (warned & WARN_ANY && global.mode & MODE_ZERO_WARNING) {
2188 ha_alert("Some warnings were found and 'zero-warning' is set. Aborting.\n");
2189 exit(1);
2190 }
2191
Willy Tarreaubaaee002006-06-26 02:48:02 +02002192 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002193 struct peers *pr;
2194 struct proxy *px;
2195
Willy Tarreaubebd2122020-04-15 16:06:11 +02002196 if (warned & WARN_ANY)
2197 qfprintf(stdout, "Warnings were found.\n");
2198
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002199 for (pr = cfg_peers; pr; pr = pr->next)
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002200 if (pr->peers_fe)
2201 break;
2202
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002203 for (px = proxies_list; px; px = px->next)
Willy Tarreau4348fad2012-09-20 16:48:07 +02002204 if (px->state == PR_STNEW && !LIST_ISEMPTY(&px->conf.listeners))
Willy Tarreau8b15ba12012-02-02 17:48:18 +01002205 break;
2206
2207 if (pr || px) {
2208 /* At least one peer or one listener has been found */
2209 qfprintf(stdout, "Configuration file is valid\n");
2210 exit(0);
2211 }
2212 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
2213 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002214 }
Willy Tarreaue9b26022011-08-01 20:57:55 +02002215
Willy Tarreau8263d2b2012-08-28 00:06:31 +02002216 /* now we know the buffer size, we can initialize the channels and buffers */
Willy Tarreau9b28e032012-10-12 23:49:43 +02002217 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +02002218
Willy Tarreaue6945732016-12-21 19:57:00 +01002219 list_for_each_entry(pcf, &post_check_list, list) {
2220 err_code |= pcf->fct();
2221 if (err_code & (ERR_ABORT|ERR_FATAL))
2222 exit(1);
2223 }
2224
Willy Tarreaubaaee002006-06-26 02:48:02 +02002225 if (cfg_maxconn > 0)
2226 global.maxconn = cfg_maxconn;
2227
Willy Tarreau8d687d82019-03-01 09:39:42 +01002228 if (global.stats_fe)
2229 global.maxsock += global.stats_fe->maxconn;
2230
2231 if (cfg_peers) {
2232 /* peers also need to bypass global maxconn */
2233 struct peers *p = cfg_peers;
2234
2235 for (p = cfg_peers; p; p = p->next)
2236 if (p->peers_fe)
2237 global.maxsock += p->peers_fe->maxconn;
2238 }
2239
Willy Tarreaubaaee002006-06-26 02:48:02 +02002240 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +02002241 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002242 global.pidfile = strdup(cfg_pidfile);
2243 }
2244
Willy Tarreaud0256482015-01-15 21:45:22 +01002245 /* Now we want to compute the maxconn and possibly maxsslconn values.
Willy Tarreauac350932019-03-01 15:43:14 +01002246 * It's a bit tricky. Maxconn defaults to the pre-computed value based
2247 * on rlim_fd_cur and the number of FDs in use due to the configuration,
2248 * and maxsslconn defaults to DEFAULT_MAXSSLCONN. On top of that we can
2249 * enforce a lower limit based on memmax.
Willy Tarreaud0256482015-01-15 21:45:22 +01002250 *
2251 * If memmax is set, then it depends on which values are set. If
2252 * maxsslconn is set, we use memmax to determine how many cleartext
2253 * connections may be added, and set maxconn to the sum of the two.
2254 * If maxconn is set and not maxsslconn, maxsslconn is computed from
2255 * the remaining amount of memory between memmax and the cleartext
2256 * connections. If neither are set, then it is considered that all
2257 * connections are SSL-capable, and maxconn is computed based on this,
2258 * then maxsslconn accordingly. We need to know if SSL is used on the
2259 * frontends, backends, or both, because when it's used on both sides,
2260 * we need twice the value for maxsslconn, but we only count the
2261 * handshake once since it is not performed on the two sides at the
2262 * same time (frontend-side is terminated before backend-side begins).
2263 * The SSL stack is supposed to have filled ssl_session_cost and
Willy Tarreau474b96a2015-01-28 19:03:21 +01002264 * ssl_handshake_cost during its initialization. In any case, if
2265 * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for
2266 * maxconn in order to protect the system.
Willy Tarreaud0256482015-01-15 21:45:22 +01002267 */
Willy Tarreauac350932019-03-01 15:43:14 +01002268 ideal_maxconn = compute_ideal_maxconn();
2269
Willy Tarreaud0256482015-01-15 21:45:22 +01002270 if (!global.rlimit_memmax) {
2271 if (global.maxconn == 0) {
Willy Tarreauac350932019-03-01 15:43:14 +01002272 global.maxconn = ideal_maxconn;
Willy Tarreaud0256482015-01-15 21:45:22 +01002273 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2274 fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn);
2275 }
2276 }
2277#ifdef USE_OPENSSL
2278 else if (!global.maxconn && !global.maxsslconn &&
2279 (global.ssl_used_frontend || global.ssl_used_backend)) {
2280 /* memmax is set, compute everything automatically. Here we want
2281 * to ensure that all SSL connections will be served. We take
2282 * care of the number of sides where SSL is used, and consider
2283 * the worst case : SSL used on both sides and doing a handshake
2284 * simultaneously. Note that we can't have more than maxconn
2285 * handshakes at a time by definition, so for the worst case of
2286 * two SSL conns per connection, we count a single handshake.
2287 */
2288 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2289 int64_t mem = global.rlimit_memmax * 1048576ULL;
Willy Tarreau304e17e2020-03-10 17:54:54 +01002290 int retried = 0;
Willy Tarreaud0256482015-01-15 21:45:22 +01002291
2292 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2293 mem -= global.maxzlibmem;
2294 mem = mem * MEM_USABLE_RATIO;
2295
Willy Tarreau304e17e2020-03-10 17:54:54 +01002296 /* Principle: we test once to set maxconn according to the free
2297 * memory. If it results in values the system rejects, we try a
2298 * second time by respecting rlim_fd_max. If it fails again, we
2299 * go back to the initial value and will let the final code
2300 * dealing with rlimit report the error. That's up to 3 attempts.
2301 */
2302 do {
2303 global.maxconn = mem /
2304 ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream
2305 sides * global.ssl_session_max_cost + // SSL buffers, one per side
2306 global.ssl_handshake_max_cost); // 1 handshake per connection max
Willy Tarreaud0256482015-01-15 21:45:22 +01002307
Willy Tarreau304e17e2020-03-10 17:54:54 +01002308 if (retried == 1)
2309 global.maxconn = MIN(global.maxconn, ideal_maxconn);
2310 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01002311#ifdef SYSTEM_MAXCONN
Willy Tarreau304e17e2020-03-10 17:54:54 +01002312 if (global.maxconn > SYSTEM_MAXCONN)
2313 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01002314#endif /* SYSTEM_MAXCONN */
Willy Tarreau304e17e2020-03-10 17:54:54 +01002315 global.maxsslconn = sides * global.maxconn;
2316
2317 if (check_if_maxsock_permitted(compute_ideal_maxsock(global.maxconn)))
2318 break;
2319 } while (retried++ < 2);
2320
Willy Tarreaud0256482015-01-15 21:45:22 +01002321 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2322 fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n",
2323 global.maxconn, global.maxsslconn);
2324 }
2325 else if (!global.maxsslconn &&
2326 (global.ssl_used_frontend || global.ssl_used_backend)) {
2327 /* memmax and maxconn are known, compute maxsslconn automatically.
2328 * maxsslconn being forced, we don't know how many of it will be
2329 * on each side if both sides are being used. The worst case is
2330 * when all connections use only one SSL instance because
2331 * handshakes may be on two sides at the same time.
2332 */
2333 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2334 int64_t mem = global.rlimit_memmax * 1048576ULL;
2335 int64_t sslmem;
2336
2337 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2338 mem -= global.maxzlibmem;
2339 mem = mem * MEM_USABLE_RATIO;
2340
Willy Tarreau87b09662015-04-03 00:22:06 +02002341 sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01002342 global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost);
2343 global.maxsslconn = round_2dig(global.maxsslconn);
2344
2345 if (sslmem <= 0 || global.maxsslconn < sides) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002346 ha_alert("Cannot compute the automatic maxsslconn because global.maxconn is already too "
2347 "high for the global.memmax value (%d MB). The absolute maximum possible value "
2348 "without SSL is %d, but %d was found and SSL is in use.\n",
2349 global.rlimit_memmax,
2350 (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)),
2351 global.maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01002352 exit(1);
2353 }
2354
2355 if (global.maxsslconn > sides * global.maxconn)
2356 global.maxsslconn = sides * global.maxconn;
2357
2358 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
2359 fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn);
2360 }
2361#endif
2362 else if (!global.maxconn) {
2363 /* memmax and maxsslconn are known/unused, compute maxconn automatically */
2364 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
2365 int64_t mem = global.rlimit_memmax * 1048576ULL;
2366 int64_t clearmem;
Willy Tarreau304e17e2020-03-10 17:54:54 +01002367 int retried = 0;
Willy Tarreaud0256482015-01-15 21:45:22 +01002368
2369 if (global.ssl_used_frontend || global.ssl_used_backend)
2370 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
2371
2372 mem -= global.maxzlibmem;
2373 mem = mem * MEM_USABLE_RATIO;
2374
2375 clearmem = mem;
2376 if (sides)
2377 clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn;
2378
Willy Tarreau304e17e2020-03-10 17:54:54 +01002379 /* Principle: we test once to set maxconn according to the free
2380 * memory. If it results in values the system rejects, we try a
2381 * second time by respecting rlim_fd_max. If it fails again, we
2382 * go back to the initial value and will let the final code
2383 * dealing with rlimit report the error. That's up to 3 attempts.
2384 */
2385 do {
2386 global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize);
2387 if (retried == 1)
2388 global.maxconn = MIN(global.maxconn, ideal_maxconn);
2389 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01002390#ifdef SYSTEM_MAXCONN
Willy Tarreau304e17e2020-03-10 17:54:54 +01002391 if (global.maxconn > SYSTEM_MAXCONN)
2392 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01002393#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01002394
Willy Tarreau304e17e2020-03-10 17:54:54 +01002395 if (clearmem <= 0 || !global.maxconn) {
2396 ha_alert("Cannot compute the automatic maxconn because global.maxsslconn is already too "
2397 "high for the global.memmax value (%d MB). The absolute maximum possible value "
2398 "is %d, but %d was found.\n",
2399 global.rlimit_memmax,
Christopher Faulet767a84b2017-11-24 16:50:31 +01002400 (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)),
Willy Tarreau304e17e2020-03-10 17:54:54 +01002401 global.maxsslconn);
2402 exit(1);
2403 }
2404
2405 if (check_if_maxsock_permitted(compute_ideal_maxsock(global.maxconn)))
2406 break;
2407 } while (retried++ < 2);
Willy Tarreaud0256482015-01-15 21:45:22 +01002408
2409 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2410 if (sides && global.maxsslconn > sides * global.maxconn) {
2411 fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn "
2412 "to be limited to %d. Better reduce global.maxsslconn to get more "
2413 "room for extra connections.\n", global.maxsslconn, global.maxconn);
2414 }
2415 fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn);
2416 }
Willy Tarreau66aa61f2009-01-18 21:44:07 +01002417 }
2418
Willy Tarreaua409f302020-03-10 17:08:53 +01002419 global.maxsock = compute_ideal_maxsock(global.maxconn);
2420 global.hardmaxconn = global.maxconn;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002421
Olivier Houchard88698d92019-04-16 19:07:22 +02002422 /* update connection pool thresholds */
2423 global.tune.pool_low_count = ((long long)global.maxsock * global.tune.pool_low_ratio + 99) / 100;
2424 global.tune.pool_high_count = ((long long)global.maxsock * global.tune.pool_high_ratio + 99) / 100;
2425
Willy Tarreauc8d5b952019-02-27 17:25:52 +01002426 proxy_adjust_all_maxconn();
2427
Willy Tarreau1db37712007-06-03 17:16:49 +02002428 if (global.tune.maxpollevents <= 0)
2429 global.tune.maxpollevents = MAX_POLL_EVENTS;
2430
Olivier Houchard1599b802018-05-24 18:59:04 +02002431 if (global.tune.runqueue_depth <= 0)
2432 global.tune.runqueue_depth = RUNQUEUE_DEPTH;
2433
Willy Tarreau6f4a82c2009-03-21 20:43:57 +01002434 if (global.tune.recv_enough == 0)
2435 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
2436
Willy Tarreau27a674e2009-08-17 07:23:33 +02002437 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
2438 global.tune.maxrewrite = global.tune.bufsize / 2;
2439
Willy Tarreaubaaee002006-06-26 02:48:02 +02002440 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
2441 /* command line debug mode inhibits configuration mode */
William Lallemand095ba4c2017-06-01 17:38:50 +02002442 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002443 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
2444 }
2445
William Lallemand095ba4c2017-06-01 17:38:50 +02002446 if (arg_mode & MODE_DAEMON) {
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002447 /* command line daemon mode inhibits foreground and debug modes mode */
2448 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
William Lallemand095ba4c2017-06-01 17:38:50 +02002449 global.mode |= arg_mode & MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002450 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002451
2452 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002453
William Lallemand095ba4c2017-06-01 17:38:50 +02002454 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002455 ha_warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
William Lallemand095ba4c2017-06-01 17:38:50 +02002456 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002457 }
2458
William Lallemand095ba4c2017-06-01 17:38:50 +02002459 if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002460 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
Christopher Faulet767a84b2017-11-24 16:50:31 +01002461 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 +02002462 global.nbproc = 1;
2463 }
2464
2465 if (global.nbproc < 1)
2466 global.nbproc = 1;
2467
Christopher Fauletbe0faa22017-08-29 15:37:10 +02002468 if (global.nbthread < 1)
2469 global.nbthread = 1;
2470
Christopher Faulet3ef26392017-08-29 16:46:57 +02002471 /* Realloc trash buffers because global.tune.bufsize may have changed */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002472 if (!init_trash_buffers(0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002473 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet3ef26392017-08-29 16:46:57 +02002474 exit(1);
2475 }
2476
Christopher Faulet96d44832017-11-14 22:02:30 +01002477 if (!init_log_buffers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002478 ha_alert("failed to initialize log buffers.\n");
Christopher Faulet96d44832017-11-14 22:02:30 +01002479 exit(1);
2480 }
2481
Willy Tarreauef1d1f82007-04-16 00:25:25 +02002482 /*
2483 * Note: we could register external pollers here.
2484 * Built-in pollers have been registered before main().
2485 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02002486
Willy Tarreau43b78992009-01-25 15:42:27 +01002487 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +02002488 disable_poller("kqueue");
2489
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00002490 if (!(global.tune.options & GTUNE_USE_EVPORTS))
2491 disable_poller("evports");
2492
Willy Tarreau43b78992009-01-25 15:42:27 +01002493 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002494 disable_poller("epoll");
2495
Willy Tarreau43b78992009-01-25 15:42:27 +01002496 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002497 disable_poller("poll");
2498
Willy Tarreau43b78992009-01-25 15:42:27 +01002499 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002500 disable_poller("select");
2501
2502 /* Note: we could disable any poller by name here */
2503
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002504 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02002505 list_pollers(stderr);
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002506 fprintf(stderr, "\n");
2507 list_filters(stderr);
2508 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002509
Willy Tarreau4f60f162007-04-08 16:39:58 +02002510 if (!init_pollers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002511 ha_alert("No polling mechanism available.\n"
2512 " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n"
2513 " is too low on this platform to support maxconn and the number of listeners\n"
2514 " and servers. You should rebuild haproxy specifying your system using TARGET=\n"
2515 " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n"
2516 " global maxconn setting to accommodate the system's limitation. For reference,\n"
2517 " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n"
2518 " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n"
2519 " check build settings using 'haproxy -vv'.\n\n",
2520 FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002521 exit(1);
2522 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002523 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2524 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002525 }
2526
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002527 if (!global.node)
2528 global.node = strdup(hostname);
2529
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01002530 if (!hlua_post_init())
2531 exit(1);
Thomas Holmes6abded42015-05-12 16:23:58 +01002532
Maxime de Roucy0f503922016-05-13 23:52:55 +02002533 free(err_msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002534}
2535
Simon Horman6fb82592011-07-15 13:14:11 +09002536static void deinit_acl_cond(struct acl_cond *cond)
Simon Hormanac821422011-07-15 13:14:09 +09002537{
Simon Hormanac821422011-07-15 13:14:09 +09002538 struct acl_term_suite *suite, *suiteb;
2539 struct acl_term *term, *termb;
2540
Simon Horman6fb82592011-07-15 13:14:11 +09002541 if (!cond)
2542 return;
2543
2544 list_for_each_entry_safe(suite, suiteb, &cond->suites, list) {
2545 list_for_each_entry_safe(term, termb, &suite->terms, list) {
2546 LIST_DEL(&term->list);
2547 free(term);
Simon Hormanac821422011-07-15 13:14:09 +09002548 }
Simon Horman6fb82592011-07-15 13:14:11 +09002549 LIST_DEL(&suite->list);
2550 free(suite);
2551 }
2552
2553 free(cond);
2554}
2555
Christopher Fauletcb550132019-12-17 11:25:46 +01002556static void deinit_act_rules(struct list *rules)
Simon Horman6fb82592011-07-15 13:14:11 +09002557{
Christopher Fauletcb550132019-12-17 11:25:46 +01002558 struct act_rule *rule, *ruleb;
Simon Horman6fb82592011-07-15 13:14:11 +09002559
Christopher Fauletcb550132019-12-17 11:25:46 +01002560 list_for_each_entry_safe(rule, ruleb, rules, list) {
2561 LIST_DEL(&rule->list);
2562 deinit_acl_cond(rule->cond);
Christopher Faulet58b35642019-12-17 11:48:42 +01002563 if (rule->release_ptr)
2564 rule->release_ptr(rule);
Christopher Fauletcb550132019-12-17 11:25:46 +01002565 free(rule);
Simon Hormanac821422011-07-15 13:14:09 +09002566 }
2567}
2568
Simon Horman6fb82592011-07-15 13:14:11 +09002569static void deinit_stick_rules(struct list *rules)
2570{
2571 struct sticking_rule *rule, *ruleb;
2572
2573 list_for_each_entry_safe(rule, ruleb, rules, list) {
2574 LIST_DEL(&rule->list);
2575 deinit_acl_cond(rule->cond);
Christopher Faulet476e5d02016-10-26 11:34:47 +02002576 release_sample_expr(rule->expr);
Simon Horman6fb82592011-07-15 13:14:11 +09002577 free(rule);
2578 }
2579}
2580
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002581void deinit(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002582{
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002583 struct proxy *p = proxies_list, *p0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002584 struct cap_hdr *h,*h_next;
2585 struct server *s,*s_next;
2586 struct listener *l,*l_next;
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002587 struct acl_cond *cond, *condb;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002588 struct acl *acl, *aclb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002589 struct switching_rule *rule, *ruleb;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002590 struct server_rule *srule, *sruleb;
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002591 struct redirect_rule *rdr, *rdrb;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002592 struct wordlist *wl, *wlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002593 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +02002594 struct logsrv *log, *logb;
William Lallemand723b73a2012-02-08 16:37:49 +01002595 struct logformat_node *lf, *lfb;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002596 struct bind_conf *bind_conf, *bind_back;
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002597 struct build_opts_str *bol, *bolb;
Willy Tarreau05554e62016-12-21 20:46:26 +01002598 struct post_deinit_fct *pdf;
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002599 struct proxy_deinit_fct *pxdf;
2600 struct server_deinit_fct *srvdf;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002601
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002602 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002603 while (p) {
Willy Tarreau8113a5d2012-10-04 08:01:43 +02002604 free(p->conf.file);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002605 free(p->id);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002606 free(p->cookie_name);
2607 free(p->cookie_domain);
Christopher Faulet2f533902020-01-21 11:06:48 +01002608 free(p->cookie_attrs);
Willy Tarreau4c03d1c2019-01-14 15:23:54 +01002609 free(p->lbprm.arg_str);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002610 free(p->capture_name);
2611 free(p->monitor_uri);
Simon Hormana31c7f72011-07-15 13:14:08 +09002612 free(p->rdp_cookie_name);
Willy Tarreau62a61232013-04-12 18:13:46 +02002613 if (p->conf.logformat_string != default_http_log_format &&
2614 p->conf.logformat_string != default_tcp_log_format &&
2615 p->conf.logformat_string != clf_http_log_format)
2616 free(p->conf.logformat_string);
Willy Tarreau196729e2012-05-31 19:30:26 +02002617
Willy Tarreau62a61232013-04-12 18:13:46 +02002618 free(p->conf.lfs_file);
2619 free(p->conf.uniqueid_format_string);
2620 free(p->conf.uif_file);
Willy Tarreau0cac26c2019-01-14 16:55:42 +01002621 if ((p->lbprm.algo & BE_LB_LKUP) == BE_LB_LKUP_MAP)
2622 free(p->lbprm.map.srv);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002623
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002624 if (p->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2625 free(p->conf.logformat_sd_string);
2626 free(p->conf.lfsd_file);
2627
Willy Tarreaub80c2302007-11-30 20:51:32 +01002628 list_for_each_entry_safe(cond, condb, &p->mon_fail_cond, list) {
2629 LIST_DEL(&cond->list);
2630 prune_acl_cond(cond);
2631 free(cond);
2632 }
2633
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002634 /* build a list of unique uri_auths */
2635 if (!ua)
2636 ua = p->uri_auth;
2637 else {
2638 /* check if p->uri_auth is unique */
2639 for (uap = ua; uap; uap=uap->next)
2640 if (uap == p->uri_auth)
2641 break;
2642
Willy Tarreauaccc4e12008-06-24 11:14:45 +02002643 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002644 /* add it, if it is */
2645 p->uri_auth->next = ua;
2646 ua = p->uri_auth;
2647 }
2648 }
Willy Tarreau0fc45a72007-06-17 00:36:03 +02002649
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002650 list_for_each_entry_safe(acl, aclb, &p->acl, list) {
2651 LIST_DEL(&acl->list);
2652 prune_acl(acl);
2653 free(acl);
2654 }
2655
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002656 list_for_each_entry_safe(srule, sruleb, &p->server_rules, list) {
2657 LIST_DEL(&srule->list);
2658 prune_acl_cond(srule->cond);
2659 free(srule->cond);
2660 free(srule);
2661 }
2662
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002663 list_for_each_entry_safe(rule, ruleb, &p->switching_rules, list) {
2664 LIST_DEL(&rule->list);
Willy Tarreauf51658d2014-04-23 01:21:56 +02002665 if (rule->cond) {
2666 prune_acl_cond(rule->cond);
2667 free(rule->cond);
2668 }
Dragan Dosen2a7c20f2019-04-30 00:38:36 +02002669 free(rule->file);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002670 free(rule);
2671 }
2672
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002673 list_for_each_entry_safe(rdr, rdrb, &p->redirect_rules, list) {
2674 LIST_DEL(&rdr->list);
Willy Tarreauf285f542010-01-03 20:03:03 +01002675 if (rdr->cond) {
2676 prune_acl_cond(rdr->cond);
2677 free(rdr->cond);
2678 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002679 free(rdr->rdr_str);
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +01002680 list_for_each_entry_safe(lf, lfb, &rdr->rdr_fmt, list) {
2681 LIST_DEL(&lf->list);
2682 free(lf);
2683 }
Willy Tarreaub463dfb2008-06-07 23:08:56 +02002684 free(rdr);
2685 }
2686
William Lallemand0f99e342011-10-12 17:50:54 +02002687 list_for_each_entry_safe(log, logb, &p->logsrvs, list) {
2688 LIST_DEL(&log->list);
2689 free(log);
2690 }
2691
William Lallemand723b73a2012-02-08 16:37:49 +01002692 list_for_each_entry_safe(lf, lfb, &p->logformat, list) {
2693 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002694 release_sample_expr(lf->expr);
2695 free(lf->arg);
William Lallemand723b73a2012-02-08 16:37:49 +01002696 free(lf);
2697 }
2698
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002699 list_for_each_entry_safe(lf, lfb, &p->logformat_sd, list) {
2700 LIST_DEL(&lf->list);
Dragan Dosen61302da2019-04-30 00:40:02 +02002701 release_sample_expr(lf->expr);
2702 free(lf->arg);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002703 free(lf);
2704 }
2705
Christopher Fauletcb550132019-12-17 11:25:46 +01002706 deinit_act_rules(&p->tcp_req.inspect_rules);
2707 deinit_act_rules(&p->tcp_rep.inspect_rules);
2708 deinit_act_rules(&p->tcp_req.l4_rules);
2709 deinit_act_rules(&p->tcp_req.l5_rules);
2710 deinit_act_rules(&p->http_req_rules);
2711 deinit_act_rules(&p->http_res_rules);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002712 deinit_act_rules(&p->http_after_res_rules);
Simon Hormanac821422011-07-15 13:14:09 +09002713
Simon Horman6fb82592011-07-15 13:14:11 +09002714 deinit_stick_rules(&p->storersp_rules);
2715 deinit_stick_rules(&p->sticking_rules);
2716
Willy Tarreaubaaee002006-06-26 02:48:02 +02002717 h = p->req_cap;
2718 while (h) {
2719 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002720 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002721 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002722 free(h);
2723 h = h_next;
2724 }/* end while(h) */
2725
2726 h = p->rsp_cap;
2727 while (h) {
2728 h_next = h->next;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002729 free(h->name);
Willy Tarreaubafbe012017-11-24 17:34:44 +01002730 pool_destroy(h->pool);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002731 free(h);
2732 h = h_next;
2733 }/* end while(h) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002734
Willy Tarreaubaaee002006-06-26 02:48:02 +02002735 s = p->srv;
2736 while (s) {
2737 s_next = s->next;
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002738
Dragan Dosen026ef572019-04-30 00:56:20 +02002739
Willy Tarreauf6562792019-05-07 19:05:35 +02002740 task_destroy(s->warmup);
Willy Tarreau2e993902011-10-31 11:53:20 +01002741
Willy Tarreaua534fea2008-08-03 12:19:50 +02002742 free(s->id);
2743 free(s->cookie);
Christopher Faulet67957bd2017-09-27 11:00:59 +02002744 free(s->hostname_dn);
Sárközi, László34c01792014-09-05 10:08:23 +02002745 free((char*)s->conf.file);
Olivier Houchard7fc3be72018-11-22 18:50:54 +01002746 free(s->idle_conns);
Olivier Houchard7fc3be72018-11-22 18:50:54 +01002747 free(s->safe_conns);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01002748 free(s->available_conns);
Olivier Houchardf1314812019-02-18 16:41:17 +01002749 free(s->curr_idle_thr);
Willy Tarreau17d45382016-12-22 21:16:08 +01002750
Christopher Fauletf61f33a2020-03-27 18:55:49 +01002751 if (s->use_ssl == 1 || s->check.use_ssl == 1 || (s->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01002752 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->destroy_srv)
2753 xprt_get(XPRT_SSL)->destroy_srv(s);
2754 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002755 HA_SPIN_DESTROY(&s->lock);
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002756
2757 list_for_each_entry(srvdf, &server_deinit_list, list)
2758 srvdf->fct(s);
2759
Willy Tarreaubaaee002006-06-26 02:48:02 +02002760 free(s);
2761 s = s_next;
2762 }/* end while(s) */
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002763
Willy Tarreau4348fad2012-09-20 16:48:07 +02002764 list_for_each_entry_safe(l, l_next, &p->conf.listeners, by_fe) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02002765 /*
2766 * Zombie proxy, the listener just pretend to be up
2767 * because they still hold an opened fd.
2768 * Close it and give the listener its real state.
2769 */
2770 if (p->state == PR_STSTOPPED && l->state >= LI_ZOMBIE) {
2771 close(l->fd);
2772 l->state = LI_INIT;
2773 }
Willy Tarreauf6e2cc72010-09-03 10:38:17 +02002774 unbind_listener(l);
2775 delete_listener(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002776 LIST_DEL(&l->by_fe);
2777 LIST_DEL(&l->by_bind);
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002778 free(l->name);
2779 free(l->counters);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002780 free(l);
Willy Tarreau4348fad2012-09-20 16:48:07 +02002781 }
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002782
Willy Tarreau4348fad2012-09-20 16:48:07 +02002783 /* Release unused SSL configs. */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002784 list_for_each_entry_safe(bind_conf, bind_back, &p->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01002785 if (bind_conf->xprt->destroy_bind_conf)
2786 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002787 free(bind_conf->file);
2788 free(bind_conf->arg);
2789 LIST_DEL(&bind_conf->by_fe);
2790 free(bind_conf);
2791 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02002792
Christopher Fauletd7c91962015-04-30 11:48:27 +02002793 flt_deinit(p);
2794
Christopher Faulet3ea5cbe2019-07-31 08:44:12 +02002795 list_for_each_entry(pxdf, &proxy_deinit_list, list)
2796 pxdf->fct(p);
2797
Krzysztof Piotr Oledzkiaff01ea2010-02-05 20:31:44 +01002798 free(p->desc);
2799 free(p->fwdfor_hdr_name);
2800
Olivier Houchard3f795f72019-04-17 22:51:06 +02002801 task_destroy(p->task);
Krzysztof Piotr Oledzki59bb2182010-01-29 17:58:21 +01002802
Willy Tarreaubafbe012017-11-24 17:34:44 +01002803 pool_destroy(p->req_cap_pool);
2804 pool_destroy(p->rsp_cap_pool);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002805 if (p->table)
2806 pool_destroy(p->table->pool);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002807
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002808 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002809 p = p->next;
Christopher Faulet2a944ee2017-11-07 10:42:54 +01002810 HA_SPIN_DESTROY(&p0->lbprm.lock);
2811 HA_SPIN_DESTROY(&p0->lock);
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002812 free(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002813 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02002814
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002815 while (ua) {
2816 uap = ua;
2817 ua = ua->next;
2818
Willy Tarreaua534fea2008-08-03 12:19:50 +02002819 free(uap->uri_prefix);
2820 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002821 free(uap->node);
2822 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002823
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002824 userlist_free(uap->userlist);
Christopher Fauletcb550132019-12-17 11:25:46 +01002825 deinit_act_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002826
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002827 free(uap);
2828 }
2829
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002830 userlist_free(userlist);
2831
David Carlier834cb2e2015-09-25 12:02:25 +01002832 cfg_unregister_sections();
2833
Christopher Faulet0132d062017-07-26 15:33:35 +02002834 deinit_log_buffers();
David Carlier834cb2e2015-09-25 12:02:25 +01002835
Willy Tarreaudd815982007-10-16 12:25:14 +02002836 protocol_unbind_all();
2837
Willy Tarreau05554e62016-12-21 20:46:26 +01002838 list_for_each_entry(pdf, &post_deinit_list, list)
2839 pdf->fct();
2840
Joe Williamsdf5b38f2010-12-29 17:05:48 +01002841 free(global.log_send_hostname); global.log_send_hostname = NULL;
Dragan Dosen43885c72015-10-01 13:18:13 +02002842 chunk_destroy(&global.log_tag);
Willy Tarreaua534fea2008-08-03 12:19:50 +02002843 free(global.chroot); global.chroot = NULL;
2844 free(global.pidfile); global.pidfile = NULL;
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002845 free(global.node); global.node = NULL;
2846 free(global.desc); global.desc = NULL;
Willy Tarreaua534fea2008-08-03 12:19:50 +02002847 free(oldpids); oldpids = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02002848 task_destroy(idle_conn_task);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01002849 idle_conn_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002850
William Lallemand0f99e342011-10-12 17:50:54 +02002851 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
2852 LIST_DEL(&log->list);
2853 free(log);
2854 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01002855 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02002856 free(wl->s);
Willy Tarreau477ecd82010-01-03 21:12:30 +01002857 LIST_DEL(&wl->list);
2858 free(wl);
2859 }
2860
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002861 list_for_each_entry_safe(bol, bolb, &build_opts_list, list) {
2862 if (bol->must_free)
2863 free((void *)bol->str);
2864 LIST_DEL(&bol->list);
2865 free(bol);
2866 }
2867
Christopher Fauletff2613e2016-11-09 11:36:17 +01002868 vars_prune(&global.vars, NULL, NULL);
Willy Tarreau2455ceb2018-11-26 15:57:34 +01002869 pool_destroy_all();
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002870 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002871} /* end deinit() */
2872
William Lallemand72160322018-11-06 17:37:16 +01002873
Willy Tarreau918ff602011-07-25 16:33:49 +02002874/* Runs the polling loop */
Willy Tarreau3ebd55e2020-03-03 14:59:56 +01002875void run_poll_loop()
Willy Tarreau4f60f162007-04-08 16:39:58 +02002876{
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002877 int next, wake;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002878
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002879 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002880 while (1) {
Willy Tarreauc49ba522019-12-11 08:12:23 +01002881 wake_expired_tasks();
2882
Thierry FOURNIER9cf7c4b2014-12-15 13:26:01 +01002883 /* Process a few tasks */
2884 process_runnable_tasks();
2885
William Lallemand1aab50b2018-06-07 09:46:01 +02002886 /* check if we caught some signals and process them in the
2887 first thread */
2888 if (tid == 0)
2889 signal_process_queue();
Willy Tarreau29857942009-05-10 09:01:21 +02002890
Willy Tarreau7067b3a2019-06-02 11:11:29 +02002891 /* also stop if we failed to cleanly stop all tasks */
2892 if (killed > 1)
2893 break;
2894
Willy Tarreau10146c92015-04-13 20:44:19 +02002895 /* expire immediately if events are pending */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002896 wake = 1;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02002897 if (thread_has_tasks())
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002898 activity[tid].wake_tasks++;
William Lallemand1aab50b2018-06-07 09:46:01 +02002899 else if (signal_queue_len && tid == 0)
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002900 activity[tid].wake_signal++;
Olivier Houchard79321b92018-07-26 17:55:11 +02002901 else {
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002902 _HA_ATOMIC_OR(&sleeping_thread_mask, tid_bit);
2903 __ha_barrier_atomic_store();
Willy Tarreau95abd5b2020-03-23 09:33:32 +01002904 if (thread_has_tasks()) {
Olivier Houchard79321b92018-07-26 17:55:11 +02002905 activity[tid].wake_tasks++;
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002906 _HA_ATOMIC_AND(&sleeping_thread_mask, ~tid_bit);
Olivier Houchard79321b92018-07-26 17:55:11 +02002907 } else
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002908 wake = 0;
Olivier Houchard79321b92018-07-26 17:55:11 +02002909 }
Willy Tarreau10146c92015-04-13 20:44:19 +02002910
Willy Tarreau4f46a352020-03-23 09:27:28 +01002911 if (!wake) {
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002912 int i;
2913
2914 if (stopping) {
Willy Tarreaud6455742020-05-13 14:30:25 +02002915 if (_HA_ATOMIC_OR(&stopping_thread_mask, tid_bit) == tid_bit) {
2916 /* notify all threads that stopping was just set */
2917 for (i = 0; i < global.nbthread; i++)
2918 if ((all_threads_mask >> i) & 1)
2919 wake_thread(i);
2920 }
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002921 }
Willy Tarreau4f46a352020-03-23 09:27:28 +01002922
2923 /* stop when there's nothing left to do */
2924 if ((jobs - unstoppable_jobs) == 0 &&
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002925 (stopping_thread_mask & all_threads_mask) == all_threads_mask) {
2926 /* wake all threads waiting on jobs==0 */
2927 for (i = 0; i < global.nbthread; i++)
2928 if (((all_threads_mask & ~tid_bit) >> i) & 1)
2929 wake_thread(i);
Willy Tarreau4f46a352020-03-23 09:27:28 +01002930 break;
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002931 }
Willy Tarreau4f46a352020-03-23 09:27:28 +01002932 }
2933
Willy Tarreauc49ba522019-12-11 08:12:23 +01002934 /* If we have to sleep, measure how long */
2935 next = wake ? TICK_ETERNITY : next_timer_expiry();
2936
Willy Tarreau58b458d2008-06-29 22:40:23 +02002937 /* The poller will ensure it returns around <next> */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002938 cur_poller.poll(&cur_poller, next, wake);
Emeric Brun64cc49c2017-10-03 14:46:45 +02002939
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002940 activity[tid].loops++;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002941 }
2942}
2943
Christopher Faulet1d17c102017-08-29 15:38:48 +02002944static void *run_thread_poll_loop(void *data)
2945{
Willy Tarreau082b6282019-05-22 14:42:12 +02002946 struct per_thread_alloc_fct *ptaf;
Christopher Faulet1d17c102017-08-29 15:38:48 +02002947 struct per_thread_init_fct *ptif;
2948 struct per_thread_deinit_fct *ptdf;
Willy Tarreau082b6282019-05-22 14:42:12 +02002949 struct per_thread_free_fct *ptff;
Willy Tarreau34a150c2019-06-11 09:16:41 +02002950 static int init_left = 0;
Willy Tarreauaf613e82020-06-05 08:40:51 +02002951 __decl_thread(static pthread_mutex_t init_mutex = PTHREAD_MUTEX_INITIALIZER);
2952 __decl_thread(static pthread_cond_t init_cond = PTHREAD_COND_INITIALIZER);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002953
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02002954 ha_set_tid((unsigned long)data);
Willy Tarreaud022e9c2019-09-24 08:25:15 +02002955 sched = &task_per_thread[tid];
Willy Tarreau91e6df02019-05-03 17:21:18 +02002956
Willy Tarreauf6178242019-05-21 19:46:58 +02002957#if (_POSIX_TIMERS > 0) && defined(_POSIX_THREAD_CPUTIME)
Willy Tarreau91e6df02019-05-03 17:21:18 +02002958#ifdef USE_THREAD
Willy Tarreau8323a372019-05-20 18:57:53 +02002959 pthread_getcpuclockid(pthread_self(), &ti->clock_id);
Willy Tarreau624dcbf2019-05-20 20:23:06 +02002960#else
Willy Tarreau8323a372019-05-20 18:57:53 +02002961 ti->clock_id = CLOCK_THREAD_CPUTIME_ID;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002962#endif
Willy Tarreau663fda42019-05-21 15:14:08 +02002963#endif
Willy Tarreau6ec902a2019-06-07 14:41:11 +02002964 /* Now, initialize one thread init at a time. This is better since
2965 * some init code is a bit tricky and may release global resources
2966 * after reallocating them locally. This will also ensure there is
2967 * no race on file descriptors allocation.
2968 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02002969#ifdef USE_THREAD
2970 pthread_mutex_lock(&init_mutex);
2971#endif
2972 /* The first thread must set the number of threads left */
2973 if (!init_left)
2974 init_left = global.nbthread;
2975 init_left--;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002976
Christopher Faulet1d17c102017-08-29 15:38:48 +02002977 tv_update_date(-1,-1);
2978
Willy Tarreau082b6282019-05-22 14:42:12 +02002979 /* per-thread alloc calls performed here are not allowed to snoop on
2980 * other threads, so they are free to initialize at their own rhythm
2981 * as long as they act as if they were alone. None of them may rely
2982 * on resources initialized by the other ones.
2983 */
2984 list_for_each_entry(ptaf, &per_thread_alloc_list, list) {
2985 if (!ptaf->fct()) {
2986 ha_alert("failed to allocate resources for thread %u.\n", tid);
2987 exit(1);
2988 }
2989 }
2990
Willy Tarreau3078e9f2019-05-20 10:50:43 +02002991 /* per-thread init calls performed here are not allowed to snoop on
2992 * other threads, so they are free to initialize at their own rhythm
2993 * as long as they act as if they were alone.
2994 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02002995 list_for_each_entry(ptif, &per_thread_init_list, list) {
2996 if (!ptif->fct()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002997 ha_alert("failed to initialize thread %u.\n", tid);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002998 exit(1);
2999 }
3000 }
3001
Willy Tarreau71092822019-06-10 09:51:04 +02003002 /* enabling protocols will result in fd_insert() calls to be performed,
3003 * we want all threads to have already allocated their local fd tables
Willy Tarreau34a150c2019-06-11 09:16:41 +02003004 * before doing so, thus only the last thread does it.
Willy Tarreau71092822019-06-10 09:51:04 +02003005 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02003006 if (init_left == 0)
Willy Tarreaue4d7c9d2019-06-10 10:14:52 +02003007 protocol_enable_all();
Willy Tarreau6ec902a2019-06-07 14:41:11 +02003008
Willy Tarreau34a150c2019-06-11 09:16:41 +02003009#ifdef USE_THREAD
3010 pthread_cond_broadcast(&init_cond);
3011 pthread_mutex_unlock(&init_mutex);
3012
3013 /* now wait for other threads to finish starting */
3014 pthread_mutex_lock(&init_mutex);
3015 while (init_left)
3016 pthread_cond_wait(&init_cond, &init_mutex);
3017 pthread_mutex_unlock(&init_mutex);
3018#endif
Willy Tarreau3078e9f2019-05-20 10:50:43 +02003019
Willy Tarreaua45a8b52019-12-06 16:31:45 +01003020#if defined(PR_SET_NO_NEW_PRIVS) && defined(USE_PRCTL)
3021 /* Let's refrain from using setuid executables. This way the impact of
3022 * an eventual vulnerability in a library remains limited. It may
3023 * impact external checks but who cares about them anyway ? In the
3024 * worst case it's possible to disable the option. Obviously we do this
3025 * in workers only. We can't hard-fail on this one as it really is
3026 * implementation dependent though we're interested in feedback, hence
3027 * the warning.
3028 */
3029 if (!(global.tune.options & GTUNE_INSECURE_SETUID) && !master) {
3030 static int warn_fail;
3031 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
3032 ha_warning("Failed to disable setuid, please report to developers with detailed "
3033 "information about your operating system. You can silence this warning "
3034 "by adding 'insecure-setuid-wanted' in the 'global' section.\n");
3035 }
3036 }
3037#endif
3038
Willy Tarreaud96f1122019-12-03 07:07:36 +01003039#if defined(RLIMIT_NPROC)
3040 /* all threads have started, it's now time to prevent any new thread
3041 * or process from starting. Obviously we do this in workers only. We
3042 * can't hard-fail on this one as it really is implementation dependent
3043 * though we're interested in feedback, hence the warning.
3044 */
3045 if (!(global.tune.options & GTUNE_INSECURE_FORK) && !master) {
3046 struct rlimit limit = { .rlim_cur = 0, .rlim_max = 0 };
3047 static int warn_fail;
3048
3049 if (setrlimit(RLIMIT_NPROC, &limit) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
3050 ha_warning("Failed to disable forks, please report to developers with detailed "
3051 "information about your operating system. You can silence this warning "
3052 "by adding 'insecure-fork-wanted' in the 'global' section.\n");
3053 }
3054 }
3055#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003056 run_poll_loop();
3057
3058 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
3059 ptdf->fct();
3060
Willy Tarreau082b6282019-05-22 14:42:12 +02003061 list_for_each_entry(ptff, &per_thread_free_list, list)
3062 ptff->fct();
3063
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003064#ifdef USE_THREAD
Olivier Houchardb23a61f2019-03-08 18:51:17 +01003065 _HA_ATOMIC_AND(&all_threads_mask, ~tid_bit);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003066 if (tid > 0)
3067 pthread_exit(NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003068#endif
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003069 return NULL;
3070}
Christopher Faulet1d17c102017-08-29 15:38:48 +02003071
William Dauchyf9af9d72019-11-17 15:47:16 +01003072/* set uid/gid depending on global settings */
3073static void set_identity(const char *program_name)
3074{
3075 if (global.gid) {
3076 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
3077 ha_warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
3078 " without 'uid'/'user' is generally useless.\n", program_name);
3079
3080 if (setgid(global.gid) == -1) {
3081 ha_alert("[%s.main()] Cannot set gid %d.\n", program_name, global.gid);
3082 protocol_unbind_all();
3083 exit(1);
3084 }
3085 }
3086
3087 if (global.uid && setuid(global.uid) == -1) {
3088 ha_alert("[%s.main()] Cannot set uid %d.\n", program_name, global.uid);
3089 protocol_unbind_all();
3090 exit(1);
3091 }
3092}
3093
Willy Tarreaubaaee002006-06-26 02:48:02 +02003094int main(int argc, char **argv)
3095{
3096 int err, retry;
3097 struct rlimit limit;
Emeric Bruncf20bf12010-10-22 16:06:11 +02003098 char errmsg[100];
Willy Tarreau269ab312012-09-05 08:02:48 +02003099 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003100
Olivier Houchard5fa300d2018-02-03 15:15:21 +01003101 setvbuf(stdout, NULL, _IONBF, 0);
Willy Tarreau5794fb02018-11-25 18:43:29 +01003102
Willy Tarreauff9c9142019-02-07 10:39:36 +01003103 /* this can only safely be done here, though it's optimized away by
3104 * the compiler.
3105 */
3106 if (MAX_PROCS < 1 || MAX_PROCS > LONGBITS) {
3107 ha_alert("MAX_PROCS value must be between 1 and %d inclusive; "
3108 "HAProxy was built with value %d, please fix it and rebuild.\n",
3109 LONGBITS, MAX_PROCS);
3110 exit(1);
3111 }
3112
Willy Tarreaubf696402019-03-01 10:09:28 +01003113 /* take a copy of initial limits before we possibly change them */
3114 getrlimit(RLIMIT_NOFILE, &limit);
3115 rlim_fd_cur_at_boot = limit.rlim_cur;
3116 rlim_fd_max_at_boot = limit.rlim_max;
3117
Willy Tarreau5794fb02018-11-25 18:43:29 +01003118 /* process all initcalls in order of potential dependency */
3119 RUN_INITCALLS(STG_PREPARE);
3120 RUN_INITCALLS(STG_LOCK);
3121 RUN_INITCALLS(STG_ALLOC);
3122 RUN_INITCALLS(STG_POOL);
3123 RUN_INITCALLS(STG_REGISTER);
3124 RUN_INITCALLS(STG_INIT);
3125
Emeric Bruncf20bf12010-10-22 16:06:11 +02003126 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003127 signal_register_fct(SIGQUIT, dump, SIGQUIT);
3128 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
3129 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
William Lallemand73b85e72017-06-01 17:38:51 +02003130 signal_register_fct(SIGUSR2, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003131
Willy Tarreaue437c442010-03-17 18:02:46 +01003132 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
3133 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
3134 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02003135 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003136 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003137
Willy Tarreaudc23a922011-02-16 11:10:36 +01003138 /* ulimits */
3139 if (!global.rlimit_nofile)
3140 global.rlimit_nofile = global.maxsock;
3141
3142 if (global.rlimit_nofile) {
Willy Tarreaue5cfdac2019-03-01 10:32:05 +01003143 limit.rlim_cur = global.rlimit_nofile;
3144 limit.rlim_max = MAX(rlim_fd_max_at_boot, limit.rlim_cur);
3145
Willy Tarreaudc23a922011-02-16 11:10:36 +01003146 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
Willy Tarreauef635472016-06-21 11:48:18 +02003147 getrlimit(RLIMIT_NOFILE, &limit);
William Dauchy0fec3ab2019-10-27 20:08:11 +01003148 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3149 ha_alert("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n",
3150 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
3151 if (!(global.mode & MODE_MWORKER))
3152 exit(1);
3153 }
3154 else {
3155 /* try to set it to the max possible at least */
3156 limit.rlim_cur = limit.rlim_max;
3157 if (setrlimit(RLIMIT_NOFILE, &limit) != -1)
3158 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau164dd0b2016-06-21 11:51:59 +02003159
William Dauchy0fec3ab2019-10-27 20:08:11 +01003160 ha_warning("[%s.main()] Cannot raise FD limit to %d, limit is %d. "
3161 "This will fail in >= v2.3\n",
3162 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
3163 global.rlimit_nofile = limit.rlim_cur;
3164 }
Willy Tarreaudc23a922011-02-16 11:10:36 +01003165 }
3166 }
3167
3168 if (global.rlimit_memmax) {
3169 limit.rlim_cur = limit.rlim_max =
Willy Tarreau70060452015-12-14 12:46:07 +01003170 global.rlimit_memmax * 1048576ULL;
Willy Tarreaudc23a922011-02-16 11:10:36 +01003171#ifdef RLIMIT_AS
3172 if (setrlimit(RLIMIT_AS, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003173 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3174 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
3175 argv[0], global.rlimit_memmax);
3176 if (!(global.mode & MODE_MWORKER))
3177 exit(1);
3178 }
3179 else
3180 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs."
3181 "This will fail in >= v2.3\n",
3182 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01003183 }
3184#else
3185 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003186 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3187 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
3188 argv[0], global.rlimit_memmax);
3189 if (!(global.mode & MODE_MWORKER))
3190 exit(1);
3191 }
3192 else
3193 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs.",
3194 "This will fail in >= v2.3\n",
3195 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01003196 }
3197#endif
3198 }
3199
Olivier Houchardf73629d2017-04-05 22:33:04 +02003200 if (old_unixsocket) {
William Lallemand85b0bd92017-06-01 17:38:53 +02003201 if (strcmp("/dev/null", old_unixsocket) != 0) {
3202 if (get_old_sockets(old_unixsocket) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003203 ha_alert("Failed to get the sockets from the old process!\n");
William Lallemand85b0bd92017-06-01 17:38:53 +02003204 if (!(global.mode & MODE_MWORKER))
3205 exit(1);
3206 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02003207 }
3208 }
William Lallemand85b0bd92017-06-01 17:38:53 +02003209 get_cur_unixsocket();
3210
Willy Tarreaubaaee002006-06-26 02:48:02 +02003211 /* We will loop at most 100 times with 10 ms delay each time.
3212 * That's at most 1 second. We only send a signal to old pids
3213 * if we cannot grab at least one port.
3214 */
3215 retry = MAX_START_RETRIES;
3216 err = ERR_NONE;
3217 while (retry >= 0) {
3218 struct timeval w;
3219 err = start_proxies(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01003220 /* exit the loop on no error or fatal error */
3221 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02003222 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02003223 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02003224 break;
3225
3226 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
3227 * listening sockets. So on those platforms, it would be wiser to
3228 * simply send SIGUSR1, which will not be undoable.
3229 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02003230 if (tell_old_pids(SIGTTOU) == 0) {
3231 /* no need to wait if we can't contact old pids */
3232 retry = 0;
3233 continue;
3234 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003235 /* give some time to old processes to stop listening */
3236 w.tv_sec = 0;
3237 w.tv_usec = 10*1000;
3238 select(0, NULL, NULL, NULL, &w);
3239 retry--;
3240 }
3241
3242 /* Note: start_proxies() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01003243 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreauf68da462009-06-09 14:36:00 +02003244 if (retry != MAX_START_RETRIES && nb_oldpids) {
3245 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003246 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02003247 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003248 exit(1);
3249 }
3250
William Lallemand944e6192018-11-21 15:48:31 +01003251 if (!(global.mode & MODE_MWORKER_WAIT) && listeners == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003252 ha_alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003253 /* Note: we don't have to send anything to the old pids because we
3254 * never stopped them. */
3255 exit(1);
3256 }
3257
Emeric Bruncf20bf12010-10-22 16:06:11 +02003258 err = protocol_bind_all(errmsg, sizeof(errmsg));
3259 if ((err & ~ERR_WARN) != ERR_NONE) {
3260 if ((err & ERR_ALERT) || (err & ERR_WARN))
Christopher Faulet767a84b2017-11-24 16:50:31 +01003261 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Emeric Bruncf20bf12010-10-22 16:06:11 +02003262
Christopher Faulet767a84b2017-11-24 16:50:31 +01003263 ha_alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02003264 protocol_unbind_all(); /* cleanup everything we can */
3265 if (nb_oldpids)
3266 tell_old_pids(SIGTTIN);
3267 exit(1);
Emeric Bruncf20bf12010-10-22 16:06:11 +02003268 } else if (err & ERR_WARN) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003269 ha_alert("[%s.main()] %s.\n", argv[0], errmsg);
Willy Tarreaudd815982007-10-16 12:25:14 +02003270 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02003271 /* Ok, all listener should now be bound, close any leftover sockets
3272 * the previous process gave us, we don't need them anymore
3273 */
3274 while (xfer_sock_list != NULL) {
3275 struct xfer_sock_list *tmpxfer = xfer_sock_list->next;
3276 close(xfer_sock_list->fd);
3277 free(xfer_sock_list->iface);
3278 free(xfer_sock_list->namespace);
3279 free(xfer_sock_list);
3280 xfer_sock_list = tmpxfer;
3281 }
Willy Tarreaudd815982007-10-16 12:25:14 +02003282
Willy Tarreaubaaee002006-06-26 02:48:02 +02003283 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02003284 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
3285 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003286
Willy Tarreaubaaee002006-06-26 02:48:02 +02003287 /* MODE_QUIET can inhibit alerts and warnings below this line */
3288
PiBa-NL149a81a2017-12-25 21:03:31 +01003289 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL) {
3290 /* either stdin/out/err are already closed or should stay as they are. */
3291 if ((global.mode & MODE_DAEMON)) {
3292 /* daemon mode re-executing, stdin/stdout/stderr are already closed so keep quiet */
3293 global.mode &= ~MODE_VERBOSE;
3294 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3295 }
3296 } else {
3297 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
3298 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003299 stdio_quiet(-1);
PiBa-NL149a81a2017-12-25 21:03:31 +01003300 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003301 }
3302
3303 /* open log & pid files before the chroot */
William Lallemand80293002017-11-06 11:00:03 +01003304 if ((global.mode & MODE_DAEMON || global.mode & MODE_MWORKER) && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003305 unlink(global.pidfile);
3306 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
3307 if (pidfd < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003308 ha_alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003309 if (nb_oldpids)
3310 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02003311 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003312 exit(1);
3313 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003314 }
3315
Willy Tarreaub38651a2007-03-24 17:24:39 +01003316 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003317 ha_alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
3318 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02003319 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01003320 exit(1);
3321 }
3322
Willy Tarreau4e30ed72009-02-04 18:02:48 +01003323 /* If the user is not root, we'll still let him try the configuration
3324 * but we inform him that unexpected behaviour may occur.
3325 */
3326 if ((global.last_checks & LSTCHK_NETADM) && getuid())
Christopher Faulet767a84b2017-11-24 16:50:31 +01003327 ha_warning("[%s.main()] Some options which require full privileges"
3328 " might not work well.\n"
3329 "", argv[0]);
Willy Tarreau4e30ed72009-02-04 18:02:48 +01003330
William Lallemand095ba4c2017-06-01 17:38:50 +02003331 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
3332
3333 /* chroot if needed */
3334 if (global.chroot != NULL) {
3335 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003336 ha_alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003337 if (nb_oldpids)
3338 tell_old_pids(SIGTTIN);
3339 protocol_unbind_all();
3340 exit(1);
3341 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02003342 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02003343 }
3344
William Lallemand944e6192018-11-21 15:48:31 +01003345 if (nb_oldpids && !(global.mode & MODE_MWORKER_WAIT))
Willy Tarreaubb545b42010-08-25 12:58:59 +02003346 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003347
William Lallemand27edc4b2019-05-07 17:49:33 +02003348 /* send a SIGTERM to workers who have a too high reloads number */
3349 if ((global.mode & MODE_MWORKER) && !(global.mode & MODE_MWORKER_WAIT))
3350 mworker_kill_max_reloads(SIGTERM);
3351
William Lallemand8a361b52017-06-20 11:20:33 +02003352 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
3353 nb_oldpids = 0;
3354 free(oldpids);
3355 oldpids = NULL;
3356 }
3357
3358
Willy Tarreaubaaee002006-06-26 02:48:02 +02003359 /* Note that any error at this stage will be fatal because we will not
3360 * be able to restart the old pids.
3361 */
3362
William Dauchyf9af9d72019-11-17 15:47:16 +01003363 if ((global.mode & (MODE_MWORKER | MODE_DAEMON)) == 0)
3364 set_identity(argv[0]);
Willy Tarreau636848a2019-04-15 19:38:50 +02003365
Willy Tarreaubaaee002006-06-26 02:48:02 +02003366 /* check ulimits */
3367 limit.rlim_cur = limit.rlim_max = 0;
3368 getrlimit(RLIMIT_NOFILE, &limit);
3369 if (limit.rlim_cur < global.maxsock) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01003370 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3371 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
3372 "Please raise 'ulimit-n' to %d or more to avoid any trouble.\n",
3373 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
3374 global.maxsock);
3375 if (!(global.mode & MODE_MWORKER))
3376 exit(1);
3377 }
3378 else
3379 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
3380 "Please raise 'ulimit-n' to %d or more to avoid any trouble."
3381 "This will fail in >= v2.3\n",
3382 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
3383 global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003384 }
3385
William Lallemand944e6192018-11-21 15:48:31 +01003386 if (global.mode & (MODE_DAEMON | MODE_MWORKER | MODE_MWORKER_WAIT)) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003387 struct proxy *px;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003388 struct peers *curpeers;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003389 int ret = 0;
3390 int proc;
William Lallemande1340412017-12-28 16:09:36 +01003391 int devnullfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003392
William Lallemand095ba4c2017-06-01 17:38:50 +02003393 /*
3394 * if daemon + mworker: must fork here to let a master
3395 * process live in background before forking children
3396 */
William Lallemand73b85e72017-06-01 17:38:51 +02003397
3398 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)
3399 && (global.mode & MODE_MWORKER)
3400 && (global.mode & MODE_DAEMON)) {
William Lallemand095ba4c2017-06-01 17:38:50 +02003401 ret = fork();
3402 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003403 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003404 protocol_unbind_all();
3405 exit(1); /* there has been an error */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003406 } else if (ret > 0) { /* parent leave to daemonize */
William Lallemand095ba4c2017-06-01 17:38:50 +02003407 exit(0);
William Lallemandbfd8eb52018-07-04 15:31:23 +02003408 } else /* change the process group ID in the child (master process) */
3409 setsid();
William Lallemand095ba4c2017-06-01 17:38:50 +02003410 }
William Lallemande20b6a62017-06-01 17:38:55 +02003411
William Lallemande20b6a62017-06-01 17:38:55 +02003412
William Lallemanddeed7802017-11-06 11:00:04 +01003413 /* if in master-worker mode, write the PID of the father */
3414 if (global.mode & MODE_MWORKER) {
3415 char pidstr[100];
Willy Tarreau76a80c72019-06-22 07:41:38 +02003416 snprintf(pidstr, sizeof(pidstr), "%d\n", (int)getpid());
Willy Tarreau46ec48b2018-01-23 19:20:19 +01003417 if (pidfd >= 0)
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01003418 DISGUISE(write(pidfd, pidstr, strlen(pidstr)));
William Lallemanddeed7802017-11-06 11:00:04 +01003419 }
3420
Willy Tarreaubaaee002006-06-26 02:48:02 +02003421 /* the father launches the required number of processes */
William Lallemand944e6192018-11-21 15:48:31 +01003422 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +02003423 if (global.mode & MODE_MWORKER)
3424 mworker_ext_launch_all();
William Lallemand944e6192018-11-21 15:48:31 +01003425 for (proc = 0; proc < global.nbproc; proc++) {
3426 ret = fork();
3427 if (ret < 0) {
3428 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
3429 protocol_unbind_all();
3430 exit(1); /* there has been an error */
3431 }
Willy Tarreau52bf8392020-03-08 00:42:37 +01003432 else if (ret == 0) { /* child breaks here */
3433 ha_random_jump96(relative_pid);
William Lallemand944e6192018-11-21 15:48:31 +01003434 break;
Willy Tarreau52bf8392020-03-08 00:42:37 +01003435 }
William Lallemand944e6192018-11-21 15:48:31 +01003436 if (pidfd >= 0 && !(global.mode & MODE_MWORKER)) {
3437 char pidstr[100];
3438 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01003439 DISGUISE(write(pidfd, pidstr, strlen(pidstr)));
William Lallemand944e6192018-11-21 15:48:31 +01003440 }
3441 if (global.mode & MODE_MWORKER) {
3442 struct mworker_proc *child;
William Lallemandce83b4a2018-10-26 14:47:30 +02003443
William Lallemand220567e2018-11-21 18:04:53 +01003444 ha_notice("New worker #%d (%d) forked\n", relative_pid, ret);
William Lallemand944e6192018-11-21 15:48:31 +01003445 /* find the right mworker_proc */
3446 list_for_each_entry(child, &proc_list, list) {
3447 if (child->relative_pid == relative_pid &&
William Lallemand8f7069a2019-04-12 16:09:23 +02003448 child->reloads == 0 && child->options & PROC_O_TYPE_WORKER) {
William Lallemand944e6192018-11-21 15:48:31 +01003449 child->timestamp = now.tv_sec;
3450 child->pid = ret;
William Lallemand1dc69632019-06-12 19:11:33 +02003451 child->version = strdup(haproxy_version);
William Lallemand944e6192018-11-21 15:48:31 +01003452 break;
3453 }
William Lallemandce83b4a2018-10-26 14:47:30 +02003454 }
3455 }
William Lallemandbc193052018-09-11 10:06:26 +02003456
William Lallemand944e6192018-11-21 15:48:31 +01003457 relative_pid++; /* each child will get a different one */
3458 pid_bit <<= 1;
3459 }
3460 } else {
3461 /* wait mode */
3462 global.nbproc = 1;
3463 proc = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003464 }
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003465
3466#ifdef USE_CPU_AFFINITY
3467 if (proc < global.nbproc && /* child */
Willy Tarreauff9c9142019-02-07 10:39:36 +01003468 proc < MAX_PROCS && /* only the first 32/64 processes may be pinned */
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003469 global.cpu_map.proc[proc]) /* only do this if the process has a CPU map */
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003470#ifdef __FreeBSD__
Olivier Houchard97148f62017-08-16 17:29:11 +02003471 {
3472 cpuset_t cpuset;
3473 int i;
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003474 unsigned long cpu_map = global.cpu_map.proc[proc];
Olivier Houchard97148f62017-08-16 17:29:11 +02003475
3476 CPU_ZERO(&cpuset);
3477 while ((i = ffsl(cpu_map)) > 0) {
3478 CPU_SET(i - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003479 cpu_map &= ~(1UL << (i - 1));
Olivier Houchard97148f62017-08-16 17:29:11 +02003480 }
3481 ret = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(cpuset), &cpuset);
3482 }
David Carlier5e4c8e22019-09-13 05:12:58 +01003483#elif defined(__linux__)
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003484 sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map.proc[proc]);
Willy Tarreaufc6c0322012-11-16 16:12:27 +01003485#endif
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02003486#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02003487 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02003488 if (pidfd >= 0) {
3489 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
3490 close(pidfd);
3491 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02003492
3493 /* We won't ever use this anymore */
Willy Tarreaud137dd32010-08-25 12:49:05 +02003494 free(global.pidfile); global.pidfile = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003495
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003496 if (proc == global.nbproc) {
William Lallemand944e6192018-11-21 15:48:31 +01003497 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003498
3499 if ((!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
3500 (global.mode & MODE_DAEMON)) {
3501 /* detach from the tty, this is required to properly daemonize. */
William Lallemande1340412017-12-28 16:09:36 +01003502 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL))
3503 stdio_quiet(-1);
3504
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003505 global.mode &= ~MODE_VERBOSE;
3506 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
PiBa-NLbaf6ea42017-11-28 23:26:08 +01003507 }
3508
William Lallemandb3f2be32018-09-11 10:06:18 +02003509 mworker_loop();
William Lallemand1499b9b2017-06-07 15:04:47 +02003510 /* should never get there */
3511 exit(EXIT_FAILURE);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003512 }
William Lallemandcf4e4962017-06-08 19:05:48 +02003513#if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH)
Grant Zhang872f9c22017-01-21 01:10:18 +00003514 ssl_free_dh();
3515#endif
William Lallemand1499b9b2017-06-07 15:04:47 +02003516 exit(0); /* parent must leave */
Willy Tarreauedaff0a2015-05-01 17:01:08 +02003517 }
3518
William Lallemandcb11fd22017-06-01 17:38:52 +02003519 /* child must never use the atexit function */
3520 atexit_flag = 0;
3521
William Lallemandbc193052018-09-11 10:06:26 +02003522 /* close useless master sockets */
3523 if (global.mode & MODE_MWORKER) {
3524 struct mworker_proc *child, *it;
3525 master = 0;
3526
William Lallemand309dc9a2018-10-26 14:47:45 +02003527 mworker_cli_proxy_stop();
3528
William Lallemandbc193052018-09-11 10:06:26 +02003529 /* free proc struct of other processes */
3530 list_for_each_entry_safe(child, it, &proc_list, list) {
William Lallemandce83b4a2018-10-26 14:47:30 +02003531 /* close the FD of the master side for all
3532 * workers, we don't need to close the worker
3533 * side of other workers since it's done with
3534 * the bind_proc */
Tim Duesterhus742e0f92018-11-25 20:03:39 +01003535 if (child->ipc_fd[0] >= 0)
3536 close(child->ipc_fd[0]);
William Lallemandce83b4a2018-10-26 14:47:30 +02003537 if (child->relative_pid == relative_pid &&
3538 child->reloads == 0) {
3539 /* keep this struct if this is our pid */
3540 proc_self = child;
William Lallemandbc193052018-09-11 10:06:26 +02003541 continue;
William Lallemandce83b4a2018-10-26 14:47:30 +02003542 }
William Lallemandbc193052018-09-11 10:06:26 +02003543 LIST_DEL(&child->list);
Tim Duesterhus9b7a9762019-05-16 20:23:22 +02003544 mworker_free_child(child);
3545 child = NULL;
William Lallemandbc193052018-09-11 10:06:26 +02003546 }
3547 }
Willy Tarreau1605c7a2018-01-23 19:01:49 +01003548
William Lallemande1340412017-12-28 16:09:36 +01003549 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
3550 devnullfd = open("/dev/null", O_RDWR, 0);
3551 if (devnullfd < 0) {
3552 ha_alert("Cannot open /dev/null\n");
3553 exit(EXIT_FAILURE);
3554 }
3555 }
3556
William Lallemand095ba4c2017-06-01 17:38:50 +02003557 /* Must chroot and setgid/setuid in the children */
3558 /* chroot if needed */
3559 if (global.chroot != NULL) {
3560 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003561 ha_alert("[%s.main()] Cannot chroot1(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003562 if (nb_oldpids)
3563 tell_old_pids(SIGTTIN);
3564 protocol_unbind_all();
3565 exit(1);
3566 }
3567 }
3568
3569 free(global.chroot);
3570 global.chroot = NULL;
William Dauchyf9af9d72019-11-17 15:47:16 +01003571 set_identity(argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003572
William Lallemand7f80eb22017-05-26 18:19:55 +02003573 /* pass through every cli socket, and check if it's bound to
3574 * the current process and if it exposes listeners sockets.
3575 * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork.
3576 * */
3577
3578 if (global.stats_fe) {
3579 struct bind_conf *bind_conf;
3580
3581 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3582 if (bind_conf->level & ACCESS_FD_LISTENERS) {
3583 if (!bind_conf->bind_proc || bind_conf->bind_proc & (1UL << proc)) {
3584 global.tune.options |= GTUNE_SOCKET_TRANSFER;
3585 break;
3586 }
3587 }
3588 }
3589 }
3590
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003591 /* we might have to unbind some proxies from some processes */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003592 px = proxies_list;
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003593 while (px != NULL) {
3594 if (px->bind_proc && px->state != PR_STSTOPPED) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02003595 if (!(px->bind_proc & (1UL << proc))) {
3596 if (global.tune.options & GTUNE_SOCKET_TRANSFER)
3597 zombify_proxy(px);
3598 else
3599 stop_proxy(px);
3600 }
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003601 }
3602 px = px->next;
3603 }
3604
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003605 /* we might have to unbind some peers sections from some processes */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003606 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003607 if (!curpeers->peers_fe)
3608 continue;
3609
3610 if (curpeers->peers_fe->bind_proc & (1UL << proc))
3611 continue;
3612
3613 stop_proxy(curpeers->peers_fe);
3614 /* disable this peer section so that it kills itself */
Willy Tarreau47c8c022015-09-28 16:39:25 +02003615 signal_unregister_handler(curpeers->sighandler);
Olivier Houchard3f795f72019-04-17 22:51:06 +02003616 task_destroy(curpeers->sync_task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003617 curpeers->sync_task = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02003618 task_destroy(curpeers->peers_fe->task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003619 curpeers->peers_fe->task = NULL;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003620 curpeers->peers_fe = NULL;
3621 }
3622
William Lallemand2e8fad92018-11-13 16:18:23 +01003623 /*
3624 * This is only done in daemon mode because we might want the
3625 * logs on stdout in mworker mode. If we're NOT in QUIET mode,
3626 * we should now close the 3 first FDs to ensure that we can
3627 * detach from the TTY. We MUST NOT do it in other cases since
3628 * it would have already be done, and 0-2 would have been
3629 * affected to listening sockets
Willy Tarreaubaaee002006-06-26 02:48:02 +02003630 */
William Lallemand2e8fad92018-11-13 16:18:23 +01003631 if ((global.mode & MODE_DAEMON) &&
3632 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003633 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003634 stdio_quiet(devnullfd);
Willy Tarreau106cb762008-11-16 07:40:34 +01003635 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003636 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3637 }
3638 pid = getpid(); /* update child's pid */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003639 if (!(global.mode & MODE_MWORKER)) /* in mworker mode we don't want a new pgid for the children */
3640 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02003641 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003642 }
3643
William Dauchye039f262019-11-17 15:47:15 +01003644 /* try our best to re-enable core dumps depending on system capabilities.
3645 * What is addressed here :
3646 * - remove file size limits
3647 * - remove core size limits
3648 * - mark the process dumpable again if it lost it due to user/group
3649 */
3650 if (global.tune.options & GTUNE_SET_DUMPABLE) {
3651 limit.rlim_cur = limit.rlim_max = RLIM_INFINITY;
3652
3653#if defined(RLIMIT_FSIZE)
3654 if (setrlimit(RLIMIT_FSIZE, &limit) == -1) {
3655 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3656 ha_alert("[%s.main()] Failed to set the raise the maximum "
3657 "file size.\n", argv[0]);
3658 if (!(global.mode & MODE_MWORKER))
3659 exit(1);
3660 }
3661 else
3662 ha_warning("[%s.main()] Failed to set the raise the maximum "
3663 "file size. This will fail in >= v2.3\n", argv[0]);
3664 }
3665#endif
3666
3667#if defined(RLIMIT_CORE)
3668 if (setrlimit(RLIMIT_CORE, &limit) == -1) {
3669 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3670 ha_alert("[%s.main()] Failed to set the raise the core "
3671 "dump 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 core "
3677 "dump size. This will fail in >= v2.3\n", argv[0]);
3678 }
3679#endif
3680
3681#if defined(USE_PRCTL)
3682 if (prctl(PR_SET_DUMPABLE, 1, 0, 0, 0) == -1)
3683 ha_warning("[%s.main()] Failed to set the dumpable flag, "
3684 "no core will be dumped.\n", argv[0]);
3685#endif
3686 }
3687
Christopher Faulete3a5e352017-10-24 13:53:54 +02003688 global.mode &= ~MODE_STARTING;
Willy Tarreau4f60f162007-04-08 16:39:58 +02003689 /*
3690 * That's it : the central polling loop. Run until we stop.
3691 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02003692#ifdef USE_THREAD
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003693 {
William Lallemand1aab50b2018-06-07 09:46:01 +02003694 sigset_t blocked_sig, old_sig;
Willy Tarreauc40efc12019-05-03 09:22:44 +02003695 int i;
3696
William Lallemand1aab50b2018-06-07 09:46:01 +02003697 /* ensure the signals will be blocked in every thread */
3698 sigfillset(&blocked_sig);
3699 sigdelset(&blocked_sig, SIGPROF);
3700 sigdelset(&blocked_sig, SIGBUS);
3701 sigdelset(&blocked_sig, SIGFPE);
3702 sigdelset(&blocked_sig, SIGILL);
3703 sigdelset(&blocked_sig, SIGSEGV);
3704 pthread_sigmask(SIG_SETMASK, &blocked_sig, &old_sig);
3705
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003706 /* Create nbthread-1 thread. The first thread is the current process */
David Carliera92c5ce2019-09-13 05:03:12 +01003707 ha_thread_info[0].pthread = pthread_self();
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003708 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003709 pthread_create(&ha_thread_info[i].pthread, NULL, &run_thread_poll_loop, (void *)(long)i);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003710
Christopher Faulet62519022017-10-16 15:49:32 +02003711#ifdef USE_CPU_AFFINITY
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003712 /* Now the CPU affinity for all threads */
Willy Tarreau7764a572019-07-16 15:10:34 +02003713 if (global.cpu_map.proc_t1[relative_pid-1])
3714 global.cpu_map.thread[0] &= global.cpu_map.proc_t1[relative_pid-1];
3715
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003716 for (i = 0; i < global.nbthread; i++) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003717 if (global.cpu_map.proc[relative_pid-1])
Willy Tarreau81492c92019-05-03 09:41:23 +02003718 global.cpu_map.thread[i] &= global.cpu_map.proc[relative_pid-1];
Christopher Faulet62519022017-10-16 15:49:32 +02003719
Willy Tarreau421f02e2018-01-20 18:19:22 +01003720 if (i < MAX_THREADS && /* only the first 32/64 threads may be pinned */
Willy Tarreau81492c92019-05-03 09:41:23 +02003721 global.cpu_map.thread[i]) {/* only do this if the thread has a THREAD map */
David Carlier5e4c8e22019-09-13 05:12:58 +01003722#if defined(__APPLE__)
3723 int j;
3724 unsigned long cpu_map = global.cpu_map.thread[i];
3725
3726 while ((j = ffsl(cpu_map)) > 0) {
3727 thread_affinity_policy_data_t cpu_set = { j - 1 };
3728 thread_port_t mthread = pthread_mach_thread_np(ha_thread_info[i].pthread);
3729 thread_policy_set(mthread, THREAD_AFFINITY_POLICY, (thread_policy_t)&cpu_set, 1);
3730 cpu_map &= ~(1UL << (j - 1));
3731 }
3732#else
Olivier Houchard829aa242017-12-01 18:19:43 +01003733#if defined(__FreeBSD__) || defined(__NetBSD__)
3734 cpuset_t cpuset;
3735#else
3736 cpu_set_t cpuset;
3737#endif
3738 int j;
Willy Tarreau81492c92019-05-03 09:41:23 +02003739 unsigned long cpu_map = global.cpu_map.thread[i];
Olivier Houchard829aa242017-12-01 18:19:43 +01003740
3741 CPU_ZERO(&cpuset);
3742
3743 while ((j = ffsl(cpu_map)) > 0) {
3744 CPU_SET(j - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003745 cpu_map &= ~(1UL << (j - 1));
Olivier Houchard829aa242017-12-01 18:19:43 +01003746 }
David Carliera92c5ce2019-09-13 05:03:12 +01003747 pthread_setaffinity_np(ha_thread_info[i].pthread,
Olivier Houchard829aa242017-12-01 18:19:43 +01003748 sizeof(cpuset), &cpuset);
David Carlier5e4c8e22019-09-13 05:12:58 +01003749#endif
Olivier Houchard829aa242017-12-01 18:19:43 +01003750 }
Christopher Faulet1d17c102017-08-29 15:38:48 +02003751 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003752#endif /* !USE_CPU_AFFINITY */
3753
William Lallemand1aab50b2018-06-07 09:46:01 +02003754 /* when multithreading we need to let only the thread 0 handle the signals */
William Lallemandd3801c12018-09-11 10:06:23 +02003755 haproxy_unblock_signals();
William Lallemand1aab50b2018-06-07 09:46:01 +02003756
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003757 /* Finally, start the poll loop for the first thread */
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003758 run_thread_poll_loop(0);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003759
3760 /* Wait the end of other threads */
3761 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003762 pthread_join(ha_thread_info[i].pthread, NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003763
Christopher Fauletb79a94c2017-05-30 15:34:30 +02003764#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
3765 show_lock_stats();
3766#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003767 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003768#else /* ! USE_THREAD */
William Lallemandd3801c12018-09-11 10:06:23 +02003769 haproxy_unblock_signals();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003770 run_thread_poll_loop(0);
Christopher Faulet62519022017-10-16 15:49:32 +02003771#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003772
3773 /* Do some cleanup */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003774 deinit();
Christopher Faulet1d17c102017-08-29 15:38:48 +02003775
Willy Tarreaubaaee002006-06-26 02:48:02 +02003776 exit(0);
3777}
3778
Willy Tarreaubb1b63c2020-04-15 17:00:03 +02003779#if defined(__clang_version__)
3780REGISTER_BUILD_OPTS("Built with clang compiler version " __clang_version__);
3781#elif defined(__VERSION__)
3782REGISTER_BUILD_OPTS("Built with gcc compiler version " __VERSION__);
3783#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02003784
3785/*
3786 * Local variables:
3787 * c-indent-level: 8
3788 * c-basic-offset: 8
3789 * End:
3790 */