blob: 50d91f770ac86501b6f0822f97ae9691809578bf [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * HA-Proxy : High Availability-enabled HTTP/TCP proxy
Willy Tarreau421ed392021-01-06 17:41:32 +01003 * Copyright 2000-2021 Willy Tarreau <willy@haproxy.org>.
Willy Tarreaubaaee002006-06-26 02:48:02 +02004 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License
7 * as published by the Free Software Foundation; either version
8 * 2 of the License, or (at your option) any later version.
9 *
Ilya Shipitsin46a030c2020-07-05 16:36:08 +050010 * Please refer to RFC7230 - RFC7235 information about HTTP protocol, and
11 * RFC6265 for information about cookies usage. More generally, the IETF HTTP
Willy Tarreaubaaee002006-06-26 02:48:02 +020012 * Working Group's web site should be consulted for protocol related changes :
13 *
14 * http://ftp.ics.uci.edu/pub/ietf/http/
15 *
16 * Pending bugs (may be not fixed because never reproduced) :
17 * - solaris only : sometimes, an HTTP proxy with only a dispatch address causes
18 * the proxy to terminate (no core) if the client breaks the connection during
19 * the response. Seen on 1.1.8pre4, but never reproduced. May not be related to
20 * the snprintf() bug since requests were simple (GET / HTTP/1.0), but may be
21 * related to missing setsid() (fixed in 1.1.15)
22 * - a proxy with an invalid config will prevent the startup even if disabled.
23 *
24 * ChangeLog has moved to the CHANGELOG file.
25 *
Willy Tarreaubaaee002006-06-26 02:48:02 +020026 */
27
David Carlier7ece0962015-12-08 21:43:09 +000028#define _GNU_SOURCE
Willy Tarreaubaaee002006-06-26 02:48:02 +020029#include <stdio.h>
30#include <stdlib.h>
31#include <unistd.h>
32#include <string.h>
33#include <ctype.h>
Maxime de Roucy379d9c72016-05-13 23:52:56 +020034#include <dirent.h>
Maxime de Roucy379d9c72016-05-13 23:52:56 +020035#include <sys/stat.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036#include <sys/time.h>
37#include <sys/types.h>
38#include <sys/socket.h>
39#include <netinet/tcp.h>
40#include <netinet/in.h>
41#include <arpa/inet.h>
42#include <netdb.h>
43#include <fcntl.h>
44#include <errno.h>
45#include <signal.h>
46#include <stdarg.h>
47#include <sys/resource.h>
Tim Duesterhusdfad6a42020-04-18 16:02:47 +020048#include <sys/utsname.h>
Marc-Antoine Perennou992709b2013-02-12 10:53:52 +010049#include <sys/wait.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020050#include <time.h>
51#include <syslog.h>
Michael Schererab012dd2013-01-12 18:35:19 +010052#include <grp.h>
Willy Tarreaufc6c0322012-11-16 16:12:27 +010053#ifdef USE_CPU_AFFINITY
Willy Tarreaufc6c0322012-11-16 16:12:27 +010054#include <sched.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000055#if defined(__FreeBSD__) || defined(__DragonFly__)
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020056#include <sys/param.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000057#ifdef __FreeBSD__
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020058#include <sys/cpuset.h>
David Carlier42d9e5a2018-11-12 16:22:19 +000059#endif
David Carlier6d5c8412017-11-29 11:02:32 +000060#include <pthread_np.h>
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +020061#endif
David Carlier5e4c8e22019-09-13 05:12:58 +010062#ifdef __APPLE__
63#include <mach/mach_types.h>
64#include <mach/thread_act.h>
65#include <mach/thread_policy.h>
66#endif
Willy Tarreaufc6c0322012-11-16 16:12:27 +010067#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020068
Willy Tarreau636848a2019-04-15 19:38:50 +020069#if defined(USE_PRCTL)
70#include <sys/prctl.h>
71#endif
72
Willy Tarreaubaaee002006-06-26 02:48:02 +020073#ifdef DEBUG_FULL
74#include <assert.h>
75#endif
Tim Duesterhusd6942c82017-11-20 15:58:35 +010076#if defined(USE_SYSTEMD)
77#include <systemd/sd-daemon.h>
78#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +020079
Willy Tarreau6c3a6812020-03-06 18:57:15 +010080#include <import/sha1.h>
81
Willy Tarreaub2551052020-06-09 09:07:15 +020082#include <haproxy/acl.h>
Amaury Denoyelle68fd7e42021-03-25 17:15:52 +010083#include <haproxy/action.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020084#include <haproxy/activity.h>
85#include <haproxy/api.h>
86#include <haproxy/arg.h>
87#include <haproxy/auth.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020088#include <haproxy/base64.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020089#include <haproxy/capture-t.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020090#include <haproxy/cfgparse.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020091#include <haproxy/chunk.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020092#include <haproxy/cli.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020093#include <haproxy/connection.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020094#include <haproxy/dns.h>
Willy Tarreau2741c8c2020-06-02 11:28:02 +020095#include <haproxy/dynbuf.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020096#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020097#include <haproxy/fd.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020098#include <haproxy/filters.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020099#include <haproxy/global.h>
Willy Tarreau86416052020-06-04 09:20:54 +0200100#include <haproxy/hlua.h>
Willy Tarreauc761f842020-06-04 11:40:28 +0200101#include <haproxy/http_rules.h>
Willy Tarreau853b2972020-05-27 18:01:47 +0200102#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +0200103#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +0200104#include <haproxy/log.h>
Willy Tarreaub5abe5b2020-06-04 14:07:37 +0200105#include <haproxy/mworker.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +0200106#include <haproxy/namespace.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +0200107#include <haproxy/net_helper.h>
Willy Tarreau6019fab2020-05-27 16:26:00 +0200108#include <haproxy/openssl-compat.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +0200109#include <haproxy/pattern.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +0200110#include <haproxy/peers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +0200111#include <haproxy/pool.h>
112#include <haproxy/protocol.h>
Willy Tarreaubf3b06b2020-08-26 10:23:40 +0200113#include <haproxy/proto_tcp.h>
Willy Tarreaua264d962020-06-04 22:29:18 +0200114#include <haproxy/proxy.h>
Willy Tarreau7cd8b6e2020-06-02 17:32:26 +0200115#include <haproxy/regex.h>
Willy Tarreaub2551052020-06-09 09:07:15 +0200116#include <haproxy/sample.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +0200117#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +0200118#include <haproxy/session.h>
Willy Tarreau3727a8a2020-06-04 17:37:26 +0200119#include <haproxy/signal.h>
Willy Tarreau063d47d2020-08-28 16:29:53 +0200120#include <haproxy/sock.h>
Willy Tarreau25140cc2020-08-28 15:40:33 +0200121#include <haproxy/sock_inet.h>
Willy Tarreau209108d2020-06-04 20:30:20 +0200122#include <haproxy/ssl_sock.h>
Amaury Denoyelleee63d4b2020-10-05 11:49:42 +0200123#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +0200124#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +0200125#include <haproxy/task.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +0200126#include <haproxy/thread.h>
Willy Tarreaub2551052020-06-09 09:07:15 +0200127#include <haproxy/time.h>
128#include <haproxy/tools.h>
129#include <haproxy/uri_auth-t.h>
Willy Tarreaua1718922020-06-04 16:25:31 +0200130#include <haproxy/vars.h>
Willy Tarreaub2551052020-06-09 09:07:15 +0200131#include <haproxy/version.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +0200132
Willy Tarreaubaaee002006-06-26 02:48:02 +0200133
Willy Tarreau7b5654f2019-03-29 21:30:17 +0100134/* array of init calls for older platforms */
135DECLARE_INIT_STAGES;
136
Willy Tarreau477ecd82010-01-03 21:12:30 +0100137/* list of config files */
138static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200139int pid; /* current process id */
Willy Tarreau28156642007-11-26 16:13:36 +0100140int relative_pid = 1; /* process id starting at 1 */
Willy Tarreau387bd4f2017-11-10 19:08:14 +0100141unsigned long pid_bit = 1; /* bit corresponding to the process id */
Willy Tarreaua38a7172019-02-02 17:11:28 +0100142unsigned long all_proc_mask = 1; /* mask of all processes */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200143
Willy Tarreauf8ea00e2020-03-12 17:24:53 +0100144volatile unsigned long sleeping_thread_mask = 0; /* Threads that are about to sleep in poll() */
Willy Tarreau4b3f27b2020-03-12 17:28:01 +0100145volatile unsigned long stopping_thread_mask = 0; /* Threads acknowledged stopping */
Willy Tarreauf8ea00e2020-03-12 17:24:53 +0100146
Willy Tarreaubaaee002006-06-26 02:48:02 +0200147/* global options */
148struct global global = {
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100149 .hard_stop_after = TICK_ETERNITY,
Willy Tarreau247a13a2012-11-15 17:38:15 +0100150 .nbproc = 1,
Willy Tarreau149ab772019-01-26 14:27:06 +0100151 .nbthread = 0,
William Lallemand5f232402012-04-05 18:02:55 +0200152 .req_count = 0,
William Lallemand0f99e342011-10-12 17:50:54 +0200153 .logsrvs = LIST_HEAD_INIT(global.logsrvs),
William Lallemand9d5f5482012-11-07 16:12:57 +0100154 .maxzlibmem = 0,
William Lallemandd85f9172012-11-09 17:05:39 +0100155 .comp_rate_lim = 0,
Emeric Brun850efd52014-01-29 12:24:34 +0100156 .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED,
Emeric Bruned760922010-10-22 17:59:25 +0200157 .unix_bind = {
158 .ux = {
159 .uid = -1,
160 .gid = -1,
161 .mode = 0,
162 }
163 },
Willy Tarreau27a674e2009-08-17 07:23:33 +0200164 .tune = {
Willy Tarreau7ac908b2019-02-27 12:02:18 +0100165 .options = GTUNE_LISTENER_MQ,
Willy Tarreauc77d3642018-12-12 06:19:42 +0100166 .bufsize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)),
Christopher Faulet546c4692020-01-22 14:31:21 +0100167 .maxrewrite = MAXREWRITE,
Willy Tarreaua24adf02014-11-27 01:11:56 +0100168 .reserved_bufs = RESERVED_BUFS,
Willy Tarreauf3045d22015-04-29 16:24:50 +0200169 .pattern_cache = DEFAULT_PAT_LRU_SIZE,
Olivier Houchard88698d92019-04-16 19:07:22 +0200170 .pool_low_ratio = 20,
171 .pool_high_ratio = 25,
Christopher Faulet41ba36f2019-07-19 09:36:45 +0200172 .max_http_hdr = MAX_HTTP_HDR,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200173#ifdef USE_OPENSSL
Emeric Brun46635772012-11-14 11:32:56 +0100174 .sslcachesize = SSLCACHESIZE,
Emeric Brunfc32aca2012-09-03 12:10:29 +0200175#endif
William Lallemandf3747832012-11-09 12:33:10 +0100176 .comp_maxlevel = 1,
Willy Tarreau7e312732014-02-12 16:35:14 +0100177#ifdef DEFAULT_IDLE_TIMER
178 .idle_timer = DEFAULT_IDLE_TIMER,
179#else
180 .idle_timer = 1000, /* 1 second */
181#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200182 },
Emeric Brun76d88952012-10-05 15:47:31 +0200183#ifdef USE_OPENSSL
184#ifdef DEFAULT_MAXSSLCONN
Willy Tarreau403edff2012-09-06 11:58:37 +0200185 .maxsslconn = DEFAULT_MAXSSLCONN,
186#endif
Emeric Brun76d88952012-10-05 15:47:31 +0200187#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200188 /* others NULL OK */
189};
190
191/*********************************************************************/
192
193int stopping; /* non zero means stopping in progress */
Cyril Bonté203ec5a2017-03-23 22:44:13 +0100194int killed; /* non zero means a hard-stop is triggered */
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200195int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */
William Lallemanda7199262018-11-16 16:57:20 +0100196int unstoppable_jobs = 0; /* number of active jobs that can't be stopped during a soft stop */
Willy Tarreau199ad242018-11-05 16:31:22 +0100197int active_peers = 0; /* number of active peers (connection attempts and connected) */
Willy Tarreau2d372c22018-11-05 17:12:27 +0100198int connected_peers = 0; /* number of connected peers (verified ones) */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200199
Ilya Shipitsin46a030c2020-07-05 16:36:08 +0500200/* Here we store information about the pids of the processes we may pause
Willy Tarreaubaaee002006-06-26 02:48:02 +0200201 * or kill. We will send them a signal every 10 ms until we can bind to all
202 * our ports. With 200 retries, that's about 2 seconds.
203 */
204#define MAX_START_RETRIES 200
Willy Tarreaubaaee002006-06-26 02:48:02 +0200205static int *oldpids = NULL;
206static int oldpids_sig; /* use USR1 or TERM */
207
Olivier Houchardf73629d2017-04-05 22:33:04 +0200208/* Path to the unix socket we use to retrieve listener sockets from the old process */
209static const char *old_unixsocket;
210
William Lallemand85b0bd92017-06-01 17:38:53 +0200211static char *cur_unixsocket = NULL;
212
William Lallemandcb11fd22017-06-01 17:38:52 +0200213int atexit_flag = 0;
214
Willy Tarreaubb545b42010-08-25 12:58:59 +0200215int nb_oldpids = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200216const int zero = 0;
217const int one = 1;
Alexandre Cassen87ea5482007-10-11 20:48:58 +0200218const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 };
Willy Tarreaubaaee002006-06-26 02:48:02 +0200219
Willy Tarreau1d21e0a2010-03-12 21:58:54 +0100220char hostname[MAX_HOSTNAME_LEN];
Dragan Dosen4f014152020-06-18 16:56:47 +0200221char *localpeer = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200222
William Lallemand00417412020-06-05 14:08:41 +0200223static char **old_argv = NULL; /* previous argv but cleaned up */
William Lallemand73b85e72017-06-01 17:38:51 +0200224
William Lallemandbc193052018-09-11 10:06:26 +0200225struct list proc_list = LIST_HEAD_INIT(proc_list);
226
227int master = 0; /* 1 if in master, 0 if in child */
Willy Tarreaubf696402019-03-01 10:09:28 +0100228unsigned int rlim_fd_cur_at_boot = 0;
229unsigned int rlim_fd_max_at_boot = 0;
William Lallemandbc193052018-09-11 10:06:26 +0200230
Willy Tarreau6c3a6812020-03-06 18:57:15 +0100231/* per-boot randomness */
232unsigned char boot_seed[20]; /* per-boot random seed (160 bits initially) */
233
William Lallemand16dd1b32018-11-19 18:46:18 +0100234struct mworker_proc *proc_self = NULL;
William Lallemandbc193052018-09-11 10:06:26 +0200235
William Lallemandb3f2be32018-09-11 10:06:18 +0200236static void *run_thread_poll_loop(void *data);
237
Willy Tarreauff055502014-04-28 22:27:06 +0200238/* bitfield of a few warnings to emit just once (WARN_*) */
239unsigned int warned = 0;
240
William Lallemande7361152018-10-26 14:47:36 +0200241/* master CLI configuration (-S flag) */
242struct list mworker_cli_conf = LIST_HEAD_INIT(mworker_cli_conf);
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100243
244/* These are strings to be reported in the output of "haproxy -vv". They may
245 * either be constants (in which case must_free must be zero) or dynamically
246 * allocated strings to pass to free() on exit, and in this case must_free
247 * must be non-zero.
248 */
249struct list build_opts_list = LIST_HEAD_INIT(build_opts_list);
250struct build_opts_str {
251 struct list list;
252 const char *str;
253 int must_free;
254};
255
Willy Tarreaubaaee002006-06-26 02:48:02 +0200256/*********************************************************************/
257/* general purpose functions ***************************************/
258/*********************************************************************/
259
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100260/* used to register some build option strings at boot. Set must_free to
261 * non-zero if the string must be freed upon exit.
262 */
263void hap_register_build_opts(const char *str, int must_free)
264{
265 struct build_opts_str *b;
266
267 b = calloc(1, sizeof(*b));
268 if (!b) {
269 fprintf(stderr, "out of memory\n");
270 exit(1);
271 }
272 b->str = str;
273 b->must_free = must_free;
274 LIST_ADDQ(&build_opts_list, &b->list);
275}
276
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100277static void display_version()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200278{
Tim Duesterhusdfad6a42020-04-18 16:02:47 +0200279 struct utsname utsname;
280
Willy Tarreau08dd2022019-11-21 18:07:30 +0100281 printf("HA-Proxy version %s %s - https://haproxy.org/\n"
282 PRODUCT_STATUS "\n", haproxy_version, haproxy_date);
Willy Tarreau47479eb2019-11-21 18:48:20 +0100283
284 if (strlen(PRODUCT_URL_BUGS) > 0) {
285 char base_version[20];
286 int dots = 0;
287 char *del;
288
289 /* only retrieve the base version without distro-specific extensions */
290 for (del = haproxy_version; *del; del++) {
291 if (*del == '.')
292 dots++;
293 else if (*del < '0' || *del > '9')
294 break;
295 }
296
297 strlcpy2(base_version, haproxy_version, del - haproxy_version + 1);
298 if (dots < 2)
299 printf("Known bugs: https://github.com/haproxy/haproxy/issues?q=is:issue+is:open\n");
300 else
301 printf("Known bugs: " PRODUCT_URL_BUGS "\n", base_version);
302 }
Tim Duesterhusdfad6a42020-04-18 16:02:47 +0200303
304 if (uname(&utsname) == 0) {
305 printf("Running on: %s %s %s %s\n", utsname.sysname, utsname.release, utsname.version, utsname.machine);
306 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200307}
308
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100309static void display_build_opts()
Willy Tarreau7b066db2007-12-02 11:28:59 +0100310{
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100311 struct build_opts_str *item;
312
Willy Tarreau7b066db2007-12-02 11:28:59 +0100313 printf("Build options :"
314#ifdef BUILD_TARGET
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100315 "\n TARGET = " BUILD_TARGET
Willy Tarreau7b066db2007-12-02 11:28:59 +0100316#endif
317#ifdef BUILD_CPU
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100318 "\n CPU = " BUILD_CPU
Willy Tarreau7b066db2007-12-02 11:28:59 +0100319#endif
320#ifdef BUILD_CC
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100321 "\n CC = " BUILD_CC
322#endif
323#ifdef BUILD_CFLAGS
324 "\n CFLAGS = " BUILD_CFLAGS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100325#endif
Willy Tarreau9f2b7302008-01-02 20:48:34 +0100326#ifdef BUILD_OPTIONS
327 "\n OPTIONS = " BUILD_OPTIONS
Willy Tarreau7b066db2007-12-02 11:28:59 +0100328#endif
Tim Duesterhusc8d19702020-11-21 18:07:59 +0100329#ifdef BUILD_DEBUG
330 "\n DEBUG = " BUILD_DEBUG
331#endif
Willy Tarreau7728ed32019-03-27 13:20:08 +0100332#ifdef BUILD_FEATURES
333 "\n\nFeature list : " BUILD_FEATURES
334#endif
Willy Tarreau27a674e2009-08-17 07:23:33 +0200335 "\n\nDefault settings :"
Willy Tarreauca783d42019-03-13 10:03:07 +0100336 "\n bufsize = %d, maxrewrite = %d, maxpollevents = %d"
Willy Tarreau27a674e2009-08-17 07:23:33 +0200337 "\n\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100338 BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS);
Willy Tarreaube5b6852009-10-03 18:57:08 +0200339
Willy Tarreaucdb737e2016-12-21 18:43:10 +0100340 list_for_each_entry(item, &build_opts_list, list) {
341 puts(item->str);
342 }
343
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +0100344 putchar('\n');
345
Willy Tarreaube5b6852009-10-03 18:57:08 +0200346 list_pollers(stdout);
347 putchar('\n');
Christopher Faulet98d9fe22018-04-10 14:37:32 +0200348 list_mux_proto(stdout);
349 putchar('\n');
Willy Tarreau679bba12019-03-19 08:08:10 +0100350 list_services(stdout);
351 putchar('\n');
Christopher Fauletb3f4e142016-03-07 12:46:38 +0100352 list_filters(stdout);
353 putchar('\n');
Willy Tarreau7b066db2007-12-02 11:28:59 +0100354}
355
Willy Tarreaubaaee002006-06-26 02:48:02 +0200356/*
357 * This function prints the command line usage and exits
358 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100359static void usage(char *name)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200360{
361 display_version();
362 fprintf(stderr,
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200363 "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200364 "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n"
Willy Tarreaua088d312015-10-08 11:58:48 +0200365 " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n"
Willy Tarreau7b066db2007-12-02 11:28:59 +0100366 " -v displays version ; -vv shows known build options.\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200367 " -d enters debug mode ; -db only disables background mode.\n"
Willy Tarreau6e064432012-05-08 15:40:42 +0200368 " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200369 " -V enters verbose mode (disables quiet mode)\n"
Willy Tarreau576132e2011-09-10 19:26:56 +0200370 " -D goes daemon ; -C changes to <dir> before loading files.\n"
William Lallemand095ba4c2017-06-01 17:38:50 +0200371 " -W master-worker mode.\n"
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100372#if defined(USE_SYSTEMD)
373 " -Ws master-worker mode with systemd notify support.\n"
374#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +0200375 " -q quiet mode : don't display messages\n"
Willy Tarreau5d01a632009-06-22 16:02:30 +0200376 " -c check mode : only check config files and exit\n"
Willy Tarreauca783d42019-03-13 10:03:07 +0100377 " -n sets the maximum total # of connections (uses ulimit -n)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200378 " -m limits the usable amount of memory (in MB)\n"
379 " -N sets the default, per-proxy maximum # of connections (%d)\n"
Emeric Brun2b920a12010-09-23 18:30:22 +0200380 " -L set local peer name (default to hostname)\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200381 " -p writes pids of all children to this file\n"
Willy Tarreaue5733232019-05-22 19:24:06 +0200382#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200383 " -de disables epoll() usage even when available\n"
384#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200385#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +0200386 " -dk disables kqueue() usage even when available\n"
387#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200388#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +0000389 " -dv disables event ports usage even when available\n"
390#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200391#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200392 " -dp disables poll() usage even when available\n"
393#endif
Willy Tarreaue5733232019-05-22 19:24:06 +0200394#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +0100395 " -dS disables splice usage (broken on old kernels)\n"
396#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +0200397#if defined(USE_GETADDRINFO)
398 " -dG disables getaddrinfo() usage\n"
399#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +0000400#if defined(SO_REUSEPORT)
401 " -dR disables SO_REUSEPORT usage\n"
402#endif
Willy Tarreau3eed10e2016-11-07 21:03:16 +0100403 " -dr ignores server address resolution failures\n"
Emeric Brun850efd52014-01-29 12:24:34 +0100404 " -dV disables SSL verify on servers side\n"
Willy Tarreau3eb10b82020-04-15 16:42:39 +0200405 " -dW fails if any warning is emitted\n"
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +0200406 " -sf/-st [pid ]* finishes/terminates old pids.\n"
Olivier Houchardf73629d2017-04-05 22:33:04 +0200407 " -x <unix_socket> get listening sockets from a unix socket\n"
William Lallemand63329e32019-06-13 17:03:37 +0200408 " -S <bind>[,<bind options>...] new master CLI\n"
Willy Tarreaubaaee002006-06-26 02:48:02 +0200409 "\n",
Willy Tarreauca783d42019-03-13 10:03:07 +0100410 name, cfg_maxpconn);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200411 exit(1);
412}
413
414
415
416/*********************************************************************/
417/* more specific functions ***************************************/
418/*********************************************************************/
419
William Lallemand73b85e72017-06-01 17:38:51 +0200420/* sends the signal <sig> to all pids found in <oldpids>. Returns the number of
421 * pids the signal was correctly delivered to.
422 */
William Lallemande25473c2019-04-01 11:29:56 +0200423int tell_old_pids(int sig)
William Lallemand73b85e72017-06-01 17:38:51 +0200424{
425 int p;
426 int ret = 0;
427 for (p = 0; p < nb_oldpids; p++)
428 if (kill(oldpids[p], sig) == 0)
429 ret++;
430 return ret;
431}
432
William Lallemand75ea0a02017-11-15 19:02:58 +0100433/*
William Lallemand73b85e72017-06-01 17:38:51 +0200434 * remove a pid forom the olpid array and decrease nb_oldpids
435 * return 1 pid was found otherwise return 0
436 */
437
438int delete_oldpid(int pid)
439{
440 int i;
441
442 for (i = 0; i < nb_oldpids; i++) {
443 if (oldpids[i] == pid) {
444 oldpids[i] = oldpids[nb_oldpids - 1];
445 oldpids[nb_oldpids - 1] = 0;
446 nb_oldpids--;
447 return 1;
448 }
449 }
450 return 0;
451}
452
William Lallemand85b0bd92017-06-01 17:38:53 +0200453
454static void get_cur_unixsocket()
455{
456 /* if -x was used, try to update the stat socket if not available anymore */
Willy Tarreau4975d142021-03-13 11:00:33 +0100457 if (global.cli_fe) {
William Lallemand85b0bd92017-06-01 17:38:53 +0200458 struct bind_conf *bind_conf;
459
460 /* pass through all stats socket */
Willy Tarreau4975d142021-03-13 11:00:33 +0100461 list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) {
William Lallemand85b0bd92017-06-01 17:38:53 +0200462 struct listener *l;
463
464 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
465
Willy Tarreau37159062020-08-27 07:48:42 +0200466 if (l->rx.addr.ss_family == AF_UNIX &&
William Lallemand85b0bd92017-06-01 17:38:53 +0200467 (bind_conf->level & ACCESS_FD_LISTENERS)) {
468 const struct sockaddr_un *un;
469
Willy Tarreau37159062020-08-27 07:48:42 +0200470 un = (struct sockaddr_un *)&l->rx.addr;
William Lallemand85b0bd92017-06-01 17:38:53 +0200471 /* priority to old_unixsocket */
472 if (!cur_unixsocket) {
473 cur_unixsocket = strdup(un->sun_path);
474 } else {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100475 if (old_unixsocket && strcmp(un->sun_path, old_unixsocket) == 0) {
William Lallemand85b0bd92017-06-01 17:38:53 +0200476 free(cur_unixsocket);
477 cur_unixsocket = strdup(old_unixsocket);
478 return;
479 }
480 }
481 }
482 }
483 }
484 }
485 if (!cur_unixsocket && old_unixsocket)
486 cur_unixsocket = strdup(old_unixsocket);
487}
488
William Lallemand73b85e72017-06-01 17:38:51 +0200489/*
490 * When called, this function reexec haproxy with -sf followed by current
Joseph Herlant03420902018-11-15 10:41:50 -0800491 * children PIDs and possibly old children PIDs if they didn't leave yet.
William Lallemand73b85e72017-06-01 17:38:51 +0200492 */
William Lallemanda57b7e32018-12-14 21:11:31 +0100493void mworker_reload()
William Lallemand73b85e72017-06-01 17:38:51 +0200494{
William Lallemand00417412020-06-05 14:08:41 +0200495 char **next_argv = NULL;
496 int old_argc = 0; /* previous number of argument */
William Lallemand73b85e72017-06-01 17:38:51 +0200497 int next_argc = 0;
William Lallemand00417412020-06-05 14:08:41 +0200498 int i = 0;
William Lallemand73b85e72017-06-01 17:38:51 +0200499 char *msg = NULL;
Willy Tarreau8dca1952019-03-01 10:21:55 +0100500 struct rlimit limit;
William Lallemand7c756a82018-11-26 11:53:40 +0100501 struct per_thread_deinit_fct *ptdf;
William Lallemand73b85e72017-06-01 17:38:51 +0200502
503 mworker_block_signals();
Tim Duesterhusd6942c82017-11-20 15:58:35 +0100504#if defined(USE_SYSTEMD)
505 if (global.tune.options & GTUNE_USE_SYSTEMD)
506 sd_notify(0, "RELOADING=1");
507#endif
William Lallemand73b85e72017-06-01 17:38:51 +0200508 setenv("HAPROXY_MWORKER_REEXEC", "1", 1);
509
William Lallemandbc193052018-09-11 10:06:26 +0200510 mworker_proc_list_to_env(); /* put the children description in the env */
511
William Lallemand7c756a82018-11-26 11:53:40 +0100512 /* during the reload we must ensure that every FDs that can't be
513 * reuse (ie those that are not referenced in the proc_list)
514 * are closed or they will leak. */
515
516 /* close the listeners FD */
517 mworker_cli_proxy_stop();
William Lallemand16866672019-06-24 17:40:48 +0200518
519 if (getenv("HAPROXY_MWORKER_WAIT_ONLY") == NULL) {
520 /* close the poller FD and the thread waker pipe FD */
521 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
522 ptdf->fct();
523 if (fdtab)
524 deinit_pollers();
525 }
Ilya Shipitsin98a9e1b2021-02-19 23:42:53 +0500526#ifdef HAVE_SSL_RAND_KEEP_RANDOM_DEVICES_OPEN
William Lallemand5fdb5b32019-10-15 14:04:08 +0200527 /* close random device FDs */
528 RAND_keep_random_devices_open(0);
Rob Allen56996da2019-05-03 09:11:32 +0100529#endif
William Lallemand7c756a82018-11-26 11:53:40 +0100530
Willy Tarreau8dca1952019-03-01 10:21:55 +0100531 /* restore the initial FD limits */
532 limit.rlim_cur = rlim_fd_cur_at_boot;
533 limit.rlim_max = rlim_fd_max_at_boot;
534 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
535 getrlimit(RLIMIT_NOFILE, &limit);
536 ha_warning("Failed to restore initial FD limits (cur=%u max=%u), using cur=%u max=%u\n",
537 rlim_fd_cur_at_boot, rlim_fd_max_at_boot,
538 (unsigned int)limit.rlim_cur, (unsigned int)limit.rlim_max);
539 }
540
William Lallemand73b85e72017-06-01 17:38:51 +0200541 /* compute length */
William Lallemand00417412020-06-05 14:08:41 +0200542 while (old_argv[old_argc])
543 old_argc++;
William Lallemand73b85e72017-06-01 17:38:51 +0200544
William Lallemand85b0bd92017-06-01 17:38:53 +0200545 /* 1 for haproxy -sf, 2 for -x /socket */
Tim Duesterhuse52b6e52020-09-12 20:26:43 +0200546 next_argv = calloc(old_argc + 1 + 2 + mworker_child_nb() + nb_oldpids + 1,
547 sizeof(*next_argv));
William Lallemand73b85e72017-06-01 17:38:51 +0200548 if (next_argv == NULL)
549 goto alloc_error;
550
William Lallemand00417412020-06-05 14:08:41 +0200551 /* copy the program name */
552 next_argv[next_argc++] = old_argv[0];
553
554 /* insert the new options just after argv[0] in case we have a -- */
555
William Lallemand73b85e72017-06-01 17:38:51 +0200556 /* add -sf <PID>* to argv */
William Lallemand3f128872019-04-01 11:29:59 +0200557 if (mworker_child_nb() > 0) {
558 struct mworker_proc *child;
559
William Lallemand73b85e72017-06-01 17:38:51 +0200560 next_argv[next_argc++] = "-sf";
William Lallemand3f128872019-04-01 11:29:59 +0200561
562 list_for_each_entry(child, &proc_list, list) {
William Lallemand677e2f22019-11-19 17:04:18 +0100563 if (!(child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) || child->pid <= -1 )
William Lallemand3f128872019-04-01 11:29:59 +0200564 continue;
William Lallemand00417412020-06-05 14:08:41 +0200565 if ((next_argv[next_argc++] = memprintf(&msg, "%d", child->pid)) == NULL)
William Lallemand73b85e72017-06-01 17:38:51 +0200566 goto alloc_error;
567 msg = NULL;
568 }
569 }
William Lallemand2bf6d622017-06-20 11:20:23 +0200570 /* add the -x option with the stat socket */
William Lallemand85b0bd92017-06-01 17:38:53 +0200571 if (cur_unixsocket) {
William Lallemand2bf6d622017-06-20 11:20:23 +0200572 next_argv[next_argc++] = "-x";
573 next_argv[next_argc++] = (char *)cur_unixsocket;
William Lallemand85b0bd92017-06-01 17:38:53 +0200574 }
575
William Lallemand00417412020-06-05 14:08:41 +0200576 /* copy the previous options */
577 for (i = 1; i < old_argc; i++)
578 next_argv[next_argc++] = old_argv[i];
579
Christopher Faulet767a84b2017-11-24 16:50:31 +0100580 ha_warning("Reexecuting Master process\n");
Willy Tarreaue0d86e22019-08-26 10:37:39 +0200581 signal(SIGPROF, SIG_IGN);
Tim Duesterhus0436ab72017-11-12 17:39:18 +0100582 execvp(next_argv[0], next_argv);
William Lallemand73b85e72017-06-01 17:38:51 +0200583
Christopher Faulet767a84b2017-11-24 16:50:31 +0100584 ha_warning("Failed to reexecute the master process [%d]: %s\n", pid, strerror(errno));
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100585 ha_free(&next_argv);
William Lallemand722d4ca2017-11-15 19:02:55 +0100586 return;
587
William Lallemand73b85e72017-06-01 17:38:51 +0200588alloc_error:
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100589 ha_free(&next_argv);
Joseph Herlant07a08342018-11-15 10:43:05 -0800590 ha_warning("Failed to reexecute the master process [%d]: Cannot allocate memory\n", pid);
William Lallemand73b85e72017-06-01 17:38:51 +0200591 return;
592}
593
William Lallemandb3f2be32018-09-11 10:06:18 +0200594static void mworker_loop()
595{
596
597#if defined(USE_SYSTEMD)
598 if (global.tune.options & GTUNE_USE_SYSTEMD)
599 sd_notifyf(0, "READY=1\nMAINPID=%lu", (unsigned long)getpid());
600#endif
Willy Tarreaud83b6c12019-04-18 11:31:36 +0200601 /* Busy polling makes no sense in the master :-) */
602 global.tune.options &= ~GTUNE_BUSY_POLLING;
William Lallemandb3f2be32018-09-11 10:06:18 +0200603
William Lallemandbc193052018-09-11 10:06:26 +0200604 master = 1;
605
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100606 signal_unregister(SIGTTIN);
607 signal_unregister(SIGTTOU);
William Lallemand0564d412018-11-20 17:36:53 +0100608 signal_unregister(SIGUSR1);
609 signal_unregister(SIGHUP);
610 signal_unregister(SIGQUIT);
611
William Lallemandb3f2be32018-09-11 10:06:18 +0200612 signal_register_fct(SIGTERM, mworker_catch_sigterm, SIGTERM);
613 signal_register_fct(SIGUSR1, mworker_catch_sigterm, SIGUSR1);
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100614 signal_register_fct(SIGTTIN, mworker_broadcast_signal, SIGTTIN);
615 signal_register_fct(SIGTTOU, mworker_broadcast_signal, SIGTTOU);
William Lallemandb3f2be32018-09-11 10:06:18 +0200616 signal_register_fct(SIGINT, mworker_catch_sigterm, SIGINT);
617 signal_register_fct(SIGHUP, mworker_catch_sighup, SIGHUP);
618 signal_register_fct(SIGUSR2, mworker_catch_sighup, SIGUSR2);
619 signal_register_fct(SIGCHLD, mworker_catch_sigchld, SIGCHLD);
620
621 mworker_unblock_signals();
622 mworker_cleanlisteners();
William Lallemand27f3fa52018-12-06 14:05:20 +0100623 mworker_cleantasks();
William Lallemandb3f2be32018-09-11 10:06:18 +0200624
William Lallemandbc193052018-09-11 10:06:26 +0200625 mworker_catch_sigchld(NULL); /* ensure we clean the children in case
626 some SIGCHLD were lost */
627
William Lallemandb3f2be32018-09-11 10:06:18 +0200628 global.nbthread = 1;
629 relative_pid = 1;
630 pid_bit = 1;
Willy Tarreaua38a7172019-02-02 17:11:28 +0100631 all_proc_mask = 1;
William Lallemandb3f2be32018-09-11 10:06:18 +0200632
William Lallemand2672eb92018-12-14 15:52:39 +0100633#ifdef USE_THREAD
634 tid_bit = 1;
635 all_threads_mask = 1;
636#endif
637
William Lallemandb3f2be32018-09-11 10:06:18 +0200638 jobs++; /* this is the "master" job, we want to take care of the
639 signals even if there is no listener so the poll loop don't
640 leave */
641
642 fork_poller();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +0200643 run_thread_poll_loop(0);
William Lallemandb3f2be32018-09-11 10:06:18 +0200644}
William Lallemandcb11fd22017-06-01 17:38:52 +0200645
646/*
647 * Reexec the process in failure mode, instead of exiting
648 */
649void reexec_on_failure()
650{
651 if (!atexit_flag)
652 return;
653
654 setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1);
655
Christopher Faulet767a84b2017-11-24 16:50:31 +0100656 ha_warning("Reexecuting Master process in waitpid mode\n");
William Lallemandcb11fd22017-06-01 17:38:52 +0200657 mworker_reload();
William Lallemandcb11fd22017-06-01 17:38:52 +0200658}
William Lallemand73b85e72017-06-01 17:38:51 +0200659
660
661/*
Willy Tarreaud0807c32010-08-27 18:26:11 +0200662 * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts
663 * a signal zero to all subscribers. This means that it's as easy as
664 * subscribing to signal 0 to get informed about an imminent shutdown.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200665 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100666static void sig_soft_stop(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200667{
668 soft_stop();
Willy Tarreau24f4efa2010-08-27 17:56:48 +0200669 signal_unregister_handler(sh);
Willy Tarreaubafbe012017-11-24 17:34:44 +0100670 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200671}
672
673/*
674 * upon SIGTTOU, we pause everything
675 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100676static void sig_pause(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200677{
Willy Tarreau775e0012020-09-24 16:36:26 +0200678 if (protocol_pause_all() & ERR_FATAL) {
679 const char *msg = "Some proxies refused to pause, performing soft stop now.\n";
Willy Tarreau0a002df2020-10-09 19:26:27 +0200680 ha_warning("%s", msg);
681 send_log(NULL, LOG_WARNING, "%s", msg);
Willy Tarreau775e0012020-09-24 16:36:26 +0200682 soft_stop();
683 }
Willy Tarreaubafbe012017-11-24 17:34:44 +0100684 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200685}
686
687/*
688 * upon SIGTTIN, let's have a soft stop.
689 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100690static void sig_listen(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200691{
Willy Tarreau775e0012020-09-24 16:36:26 +0200692 if (protocol_resume_all() & ERR_FATAL) {
693 const char *msg = "Some proxies refused to resume, probably due to a conflict on a listening port. You may want to try again after the conflicting application is stopped, otherwise a restart might be needed to resume safe operations.\n";
Willy Tarreau0a002df2020-10-09 19:26:27 +0200694 ha_warning("%s", msg);
695 send_log(NULL, LOG_WARNING, "%s", msg);
Willy Tarreau775e0012020-09-24 16:36:26 +0200696 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200697}
698
699/*
700 * this function dumps every server's state when the process receives SIGHUP.
701 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100702static void sig_dump_state(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200703{
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100704 struct proxy *p = proxies_list;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200705
Christopher Faulet767a84b2017-11-24 16:50:31 +0100706 ha_warning("SIGHUP received, dumping servers states.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +0200707 while (p) {
708 struct server *s = p->srv;
709
710 send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id);
711 while (s) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100712 chunk_printf(&trash,
713 "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.",
714 p->id, s->id,
Emeric Brun52a91d32017-08-31 14:41:55 +0200715 (s->cur_state != SRV_ST_STOPPED) ? "UP" : "DOWN",
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100716 s->cur_sess, s->nbpend, s->counters.cum_sess);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200717 ha_warning("%s\n", trash.area);
718 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200719 s = s->next;
720 }
721
Willy Tarreau5fcc8f12007-09-17 11:27:09 +0200722 /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */
723 if (!p->srv) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100724 chunk_printf(&trash,
725 "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
726 p->id,
727 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 +0200728 } else if (p->srv_act == 0) {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100729 chunk_printf(&trash,
730 "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
731 p->id,
732 (p->srv_bck) ? "is running on backup servers" : "has no server available",
733 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 +0200734 } else {
Willy Tarreau19d14ef2012-10-29 16:51:55 +0100735 chunk_printf(&trash,
736 "SIGHUP: Proxy %s has %d active servers and %d backup servers available."
737 " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.",
738 p->id, p->srv_act, p->srv_bck,
739 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 +0200740 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200741 ha_warning("%s\n", trash.area);
742 send_log(p, LOG_NOTICE, "%s\n", trash.area);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200743
744 p = p->next;
745 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200746}
747
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100748static void dump(struct sig_handler *sh)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200749{
Willy Tarreauc6ca1a02007-05-13 19:43:47 +0200750 /* dump memory usage then free everything possible */
751 dump_pools();
Willy Tarreaubafbe012017-11-24 17:34:44 +0100752 pool_gc(NULL);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200753}
754
William Lallemande1340412017-12-28 16:09:36 +0100755/*
756 * This function dup2 the stdio FDs (0,1,2) with <fd>, then closes <fd>
757 * If <fd> < 0, it opens /dev/null and use it to dup
758 *
759 * In the case of chrooting, you have to open /dev/null before the chroot, and
760 * pass the <fd> to this function
761 */
762static void stdio_quiet(int fd)
763{
764 if (fd < 0)
765 fd = open("/dev/null", O_RDWR, 0);
766
767 if (fd > -1) {
768 fclose(stdin);
769 fclose(stdout);
770 fclose(stderr);
771
772 dup2(fd, 0);
773 dup2(fd, 1);
774 dup2(fd, 2);
775 if (fd > 2)
776 close(fd);
777 return;
778 }
779
780 ha_alert("Cannot open /dev/null\n");
781 exit(EXIT_FAILURE);
782}
783
784
Joseph Herlant03420902018-11-15 10:41:50 -0800785/* This function checks if cfg_cfgfiles contains directories.
786 * If it finds one, it adds all the files (and only files) it contains
787 * in cfg_cfgfiles in place of the directory (and removes the directory).
788 * It adds the files in lexical order.
789 * It adds only files with .cfg extension.
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200790 * It doesn't add files with name starting with '.'
791 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +0100792static void cfgfiles_expand_directories(void)
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200793{
794 struct wordlist *wl, *wlb;
795 char *err = NULL;
796
797 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
798 struct stat file_stat;
799 struct dirent **dir_entries = NULL;
800 int dir_entries_nb;
801 int dir_entries_it;
802
803 if (stat(wl->s, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100804 ha_alert("Cannot open configuration file/directory %s : %s\n",
805 wl->s,
806 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200807 exit(1);
808 }
809
810 if (!S_ISDIR(file_stat.st_mode))
811 continue;
812
813 /* from this point wl->s is a directory */
814
815 dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort);
816 if (dir_entries_nb < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100817 ha_alert("Cannot open configuration directory %s : %s\n",
818 wl->s,
819 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200820 exit(1);
821 }
822
823 /* for each element in the directory wl->s */
824 for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) {
825 struct dirent *dir_entry = dir_entries[dir_entries_it];
826 char *filename = NULL;
827 char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg");
828
829 /* don't add filename that begin with .
Joseph Herlant03420902018-11-15 10:41:50 -0800830 * only add filename with .cfg extension
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200831 */
832 if (dir_entry->d_name[0] == '.' ||
833 !(d_name_cfgext && d_name_cfgext[4] == '\0'))
834 goto next_dir_entry;
835
836 if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100837 ha_alert("Cannot load configuration files %s : out of memory.\n",
838 filename);
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200839 exit(1);
840 }
841
842 if (stat(filename, &file_stat)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100843 ha_alert("Cannot open configuration file %s : %s\n",
844 wl->s,
845 strerror(errno));
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200846 exit(1);
847 }
848
849 /* don't add anything else than regular file in cfg_cfgfiles
850 * this way we avoid loops
851 */
852 if (!S_ISREG(file_stat.st_mode))
853 goto next_dir_entry;
854
855 if (!list_append_word(&wl->list, filename, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100856 ha_alert("Cannot load configuration files %s : %s\n",
857 filename,
858 err);
Maxime de Roucy379d9c72016-05-13 23:52:56 +0200859 exit(1);
860 }
861
862next_dir_entry:
863 free(filename);
864 free(dir_entry);
865 }
866
867 free(dir_entries);
868
869 /* remove the current directory (wl) from cfg_cfgfiles */
870 free(wl->s);
871 LIST_DEL(&wl->list);
872 free(wl);
873 }
874
875 free(err);
876}
877
Willy Tarreaubaaee002006-06-26 02:48:02 +0200878/*
William Lallemand73b85e72017-06-01 17:38:51 +0200879 * copy and cleanup the current argv
William Lallemanddf6c5a82020-06-04 17:40:23 +0200880 * Remove the -sf /-st / -x parameters
William Lallemand73b85e72017-06-01 17:38:51 +0200881 * Return an allocated copy of argv
882 */
883
884static char **copy_argv(int argc, char **argv)
885{
William Lallemanddf6c5a82020-06-04 17:40:23 +0200886 char **newargv, **retargv;
William Lallemand73b85e72017-06-01 17:38:51 +0200887
Tim Duesterhuse52b6e52020-09-12 20:26:43 +0200888 newargv = calloc(argc + 2, sizeof(*newargv));
William Lallemand73b85e72017-06-01 17:38:51 +0200889 if (newargv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100890 ha_warning("Cannot allocate memory\n");
William Lallemand73b85e72017-06-01 17:38:51 +0200891 return NULL;
892 }
William Lallemanddf6c5a82020-06-04 17:40:23 +0200893 retargv = newargv;
William Lallemand73b85e72017-06-01 17:38:51 +0200894
William Lallemanddf6c5a82020-06-04 17:40:23 +0200895 /* first copy argv[0] */
896 *newargv++ = *argv++;
897 argc--;
898
899 while (argc > 0) {
900 if (**argv != '-') {
901 /* non options are copied but will fail in the argument parser */
902 *newargv++ = *argv++;
903 argc--;
904
905 } else {
906 char *flag;
907
908 flag = *argv + 1;
909
910 if (flag[0] == '-' && flag[1] == 0) {
911 /* "--\0" copy every arguments till the end of argv */
912 *newargv++ = *argv++;
913 argc--;
914
915 while (argc > 0) {
916 *newargv++ = *argv++;
917 argc--;
918 }
919 } else {
920 switch (*flag) {
921 case 's':
922 /* -sf / -st and their parameters are ignored */
923 if (flag[1] == 'f' || flag[1] == 't') {
924 argc--;
925 argv++;
926 /* The list can't contain a negative value since the only
927 way to know the end of this list is by looking for the
928 next option or the end of the options */
929 while (argc > 0 && argv[0][0] != '-') {
930 argc--;
931 argv++;
932 }
William Lallemand398da622020-09-02 16:12:23 +0200933 } else {
934 argc--;
935 argv++;
936
William Lallemanddf6c5a82020-06-04 17:40:23 +0200937 }
938 break;
939
940 case 'x':
941 /* this option and its parameter are ignored */
942 argc--;
943 argv++;
944 if (argc > 0) {
945 argc--;
946 argv++;
947 }
948 break;
949
950 case 'C':
951 case 'n':
952 case 'm':
953 case 'N':
954 case 'L':
955 case 'f':
956 case 'p':
957 case 'S':
958 /* these options have only 1 parameter which must be copied and can start with a '-' */
959 *newargv++ = *argv++;
960 argc--;
961 if (argc == 0)
962 goto error;
963 *newargv++ = *argv++;
964 argc--;
965 break;
966 default:
967 /* for other options just copy them without parameters, this is also done
968 * for options like "--foo", but this will fail in the argument parser.
969 * */
970 *newargv++ = *argv++;
971 argc--;
972 break;
973 }
William Lallemand73b85e72017-06-01 17:38:51 +0200974 }
975 }
William Lallemand73b85e72017-06-01 17:38:51 +0200976 }
William Lallemand2bf6d622017-06-20 11:20:23 +0200977
William Lallemanddf6c5a82020-06-04 17:40:23 +0200978 return retargv;
979
980error:
981 free(retargv);
982 return NULL;
William Lallemand73b85e72017-06-01 17:38:51 +0200983}
984
Willy Tarreau6c3a6812020-03-06 18:57:15 +0100985
986/* Performs basic random seed initialization. The main issue with this is that
987 * srandom_r() only takes 32 bits and purposely provides a reproducible sequence,
988 * which means that there will only be 4 billion possible random sequences once
989 * srandom() is called, regardless of the internal state. Not calling it is
990 * even worse as we'll always produce the same randoms sequences. What we do
991 * here is to create an initial sequence from various entropy sources, hash it
992 * using SHA1 and keep the resulting 160 bits available globally.
993 *
994 * We initialize the current process with the first 32 bits before starting the
995 * polling loop, where all this will be changed to have process specific and
996 * thread specific sequences.
Willy Tarreau52bf8392020-03-08 00:42:37 +0100997 *
998 * Before starting threads, it's still possible to call random() as srandom()
999 * is initialized from this, but after threads and/or processes are started,
1000 * only ha_random() is expected to be used to guarantee distinct sequences.
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001001 */
1002static void ha_random_boot(char *const *argv)
1003{
1004 unsigned char message[256];
1005 unsigned char *m = message;
1006 struct timeval tv;
1007 blk_SHA_CTX ctx;
1008 unsigned long l;
1009 int fd;
1010 int i;
1011
1012 /* start with current time as pseudo-random seed */
1013 gettimeofday(&tv, NULL);
1014 write_u32(m, tv.tv_sec); m += 4;
1015 write_u32(m, tv.tv_usec); m += 4;
1016
1017 /* PID and PPID add some OS-based randomness */
1018 write_u16(m, getpid()); m += 2;
1019 write_u16(m, getppid()); m += 2;
1020
1021 /* take up to 160 bits bytes from /dev/urandom if available (non-blocking) */
1022 fd = open("/dev/urandom", O_RDONLY);
1023 if (fd >= 0) {
1024 i = read(fd, m, 20);
1025 if (i > 0)
1026 m += i;
1027 close(fd);
1028 }
1029
1030 /* take up to 160 bits bytes from openssl (non-blocking) */
1031#ifdef USE_OPENSSL
1032 if (RAND_bytes(m, 20) == 1)
1033 m += 20;
1034#endif
1035
1036 /* take 160 bits from existing random in case it was already initialized */
1037 for (i = 0; i < 5; i++) {
1038 write_u32(m, random());
1039 m += 4;
1040 }
1041
1042 /* stack address (benefit form operating system's ASLR) */
1043 l = (unsigned long)&m;
1044 memcpy(m, &l, sizeof(l)); m += sizeof(l);
1045
1046 /* argv address (benefit form operating system's ASLR) */
1047 l = (unsigned long)&argv;
1048 memcpy(m, &l, sizeof(l)); m += sizeof(l);
1049
1050 /* use tv_usec again after all the operations above */
1051 gettimeofday(&tv, NULL);
1052 write_u32(m, tv.tv_usec); m += 4;
1053
1054 /*
1055 * At this point, ~84-92 bytes have been used
1056 */
1057
1058 /* finish with the hostname */
1059 strncpy((char *)m, hostname, message + sizeof(message) - m);
1060 m += strlen(hostname);
1061
1062 /* total message length */
1063 l = m - message;
1064
1065 memset(&ctx, 0, sizeof(ctx));
1066 blk_SHA1_Init(&ctx);
1067 blk_SHA1_Update(&ctx, message, l);
1068 blk_SHA1_Final(boot_seed, &ctx);
1069
1070 srandom(read_u32(boot_seed));
Willy Tarreau52bf8392020-03-08 00:42:37 +01001071 ha_random_seed(boot_seed, sizeof(boot_seed));
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001072}
1073
Willy Tarreau5a023f02019-03-01 14:19:31 +01001074/* considers splicing proxies' maxconn, computes the ideal global.maxpipes
1075 * setting, and returns it. It may return -1 meaning "unlimited" if some
1076 * unlimited proxies have been found and the global.maxconn value is not yet
1077 * set. It may also return a value greater than maxconn if it's not yet set.
1078 * Note that a value of zero means there is no need for pipes. -1 is never
1079 * returned if global.maxconn is valid.
1080 */
1081static int compute_ideal_maxpipes()
1082{
1083 struct proxy *cur;
1084 int nbfe = 0, nbbe = 0;
1085 int unlimited = 0;
1086 int pipes;
1087 int max;
1088
1089 for (cur = proxies_list; cur; cur = cur->next) {
1090 if (cur->options2 & (PR_O2_SPLIC_ANY)) {
1091 if (cur->cap & PR_CAP_FE) {
1092 max = cur->maxconn;
1093 nbfe += max;
1094 if (!max) {
1095 unlimited = 1;
1096 break;
1097 }
1098 }
1099 if (cur->cap & PR_CAP_BE) {
1100 max = cur->fullconn ? cur->fullconn : global.maxconn;
1101 nbbe += max;
1102 if (!max) {
1103 unlimited = 1;
1104 break;
1105 }
1106 }
1107 }
1108 }
1109
1110 pipes = MAX(nbfe, nbbe);
1111 if (global.maxconn) {
1112 if (pipes > global.maxconn || unlimited)
1113 pipes = global.maxconn;
1114 } else if (unlimited) {
1115 pipes = -1;
1116 }
1117
1118 return pipes >= 4 ? pipes / 4 : pipes;
1119}
1120
Willy Tarreauac350932019-03-01 15:43:14 +01001121/* considers global.maxsocks, global.maxpipes, async engines, SSL frontends and
1122 * rlimits and computes an ideal maxconn. It's meant to be called only when
1123 * maxsock contains the sum of listening FDs, before it is updated based on
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001124 * maxconn and pipes. If there are not enough FDs left, DEFAULT_MAXCONN (by
1125 * default 100) is returned as it is expected that it will even run on tight
1126 * environments, and will maintain compatibility with previous packages that
1127 * used to rely on this value as the default one. The system will emit a
1128 * warning indicating how many FDs are missing anyway if needed.
Willy Tarreauac350932019-03-01 15:43:14 +01001129 */
1130static int compute_ideal_maxconn()
1131{
1132 int ssl_sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1133 int engine_fds = global.ssl_used_async_engines * ssl_sides;
1134 int pipes = compute_ideal_maxpipes();
Willy Tarreaub1beaa32020-03-06 10:25:31 +01001135 int remain = MAX(rlim_fd_cur_at_boot, rlim_fd_max_at_boot);
Willy Tarreauac350932019-03-01 15:43:14 +01001136 int maxconn;
1137
1138 /* we have to take into account these elements :
1139 * - number of engine_fds, which inflates the number of FD needed per
1140 * connection by this number.
1141 * - number of pipes per connection on average : for the unlimited
1142 * case, this is 0.5 pipe FDs per connection, otherwise it's a
1143 * fixed value of 2*pipes.
1144 * - two FDs per connection
1145 */
1146
1147 /* subtract listeners and checks */
1148 remain -= global.maxsock;
1149
Willy Tarreau3f200852019-03-14 19:13:17 +01001150 /* one epoll_fd/kqueue_fd per thread */
1151 remain -= global.nbthread;
1152
1153 /* one wake-up pipe (2 fd) per thread */
1154 remain -= 2 * global.nbthread;
1155
Willy Tarreauac350932019-03-01 15:43:14 +01001156 /* Fixed pipes values : we only subtract them if they're not larger
1157 * than the remaining FDs because pipes are optional.
1158 */
1159 if (pipes >= 0 && pipes * 2 < remain)
1160 remain -= pipes * 2;
1161
1162 if (pipes < 0) {
1163 /* maxsock = maxconn * 2 + maxconn/4 * 2 + maxconn * engine_fds.
1164 * = maxconn * (2 + 0.5 + engine_fds)
1165 * = maxconn * (4 + 1 + 2*engine_fds) / 2
1166 */
1167 maxconn = 2 * remain / (5 + 2 * engine_fds);
1168 } else {
1169 /* maxsock = maxconn * 2 + maxconn * engine_fds.
1170 * = maxconn * (2 + engine_fds)
1171 */
1172 maxconn = remain / (2 + engine_fds);
1173 }
1174
Willy Tarreaudf23c0c2019-03-13 10:10:49 +01001175 return MAX(maxconn, DEFAULT_MAXCONN);
Willy Tarreauac350932019-03-01 15:43:14 +01001176}
1177
Willy Tarreaua409f302020-03-10 17:08:53 +01001178/* computes the estimated maxsock value for the given maxconn based on the
1179 * possibly set global.maxpipes and existing partial global.maxsock. It may
1180 * temporarily change global.maxconn for the time needed to propagate the
1181 * computations, and will reset it.
1182 */
1183static int compute_ideal_maxsock(int maxconn)
1184{
1185 int maxpipes = global.maxpipes;
1186 int maxsock = global.maxsock;
1187
1188
1189 if (!maxpipes) {
1190 int old_maxconn = global.maxconn;
1191
1192 global.maxconn = maxconn;
1193 maxpipes = compute_ideal_maxpipes();
1194 global.maxconn = old_maxconn;
1195 }
1196
1197 maxsock += maxconn * 2; /* each connection needs two sockets */
1198 maxsock += maxpipes * 2; /* each pipe needs two FDs */
1199 maxsock += global.nbthread; /* one epoll_fd/kqueue_fd per thread */
1200 maxsock += 2 * global.nbthread; /* one wake-up pipe (2 fd) per thread */
1201
1202 /* compute fd used by async engines */
1203 if (global.ssl_used_async_engines) {
1204 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1205
1206 maxsock += maxconn * sides * global.ssl_used_async_engines;
1207 }
1208 return maxsock;
1209}
1210
Thayne McCombs8f0cc5c2021-01-07 21:35:52 -07001211/* Tests if it is possible to set the current process's RLIMIT_NOFILE to
Willy Tarreau304e17e2020-03-10 17:54:54 +01001212 * <maxsock>, then sets it back to the previous value. Returns non-zero if the
1213 * value is accepted, non-zero otherwise. This is used to determine if an
1214 * automatic limit may be applied or not. When it is not, the caller knows that
1215 * the highest we can do is the rlim_max at boot. In case of error, we return
1216 * that the setting is possible, so that we defer the error processing to the
1217 * final stage in charge of enforcing this.
1218 */
1219static int check_if_maxsock_permitted(int maxsock)
1220{
1221 struct rlimit orig_limit, test_limit;
1222 int ret;
1223
1224 if (getrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1225 return 1;
1226
1227 /* don't go further if we can't even set to what we have */
1228 if (setrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1229 return 1;
1230
1231 test_limit.rlim_max = MAX(maxsock, orig_limit.rlim_max);
1232 test_limit.rlim_cur = test_limit.rlim_max;
1233 ret = setrlimit(RLIMIT_NOFILE, &test_limit);
1234
1235 if (setrlimit(RLIMIT_NOFILE, &orig_limit) != 0)
1236 return 1;
1237
1238 return ret == 0;
1239}
1240
1241
William Lallemand73b85e72017-06-01 17:38:51 +02001242/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001243 * This function initializes all the necessary variables. It only returns
1244 * if everything is OK. If something fails, it exits.
1245 */
Willy Tarreau1b5af7c2016-12-21 18:19:57 +01001246static void init(int argc, char **argv)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001247{
Willy Tarreaubaaee002006-06-26 02:48:02 +02001248 int arg_mode = 0; /* MODE_DEBUG, ... */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001249 char *tmp;
1250 char *cfg_pidfile = NULL;
Willy Tarreau058e9072009-07-20 09:30:05 +02001251 int err_code = 0;
Maxime de Roucy0f503922016-05-13 23:52:55 +02001252 char *err_msg = NULL;
Willy Tarreau477ecd82010-01-03 21:12:30 +01001253 struct wordlist *wl;
Kevinm48936af2010-12-22 16:08:21 +00001254 char *progname;
Willy Tarreau576132e2011-09-10 19:26:56 +02001255 char *change_dir = NULL;
Christopher Fauletd7c91962015-04-30 11:48:27 +02001256 struct proxy *px;
Willy Tarreaue6945732016-12-21 19:57:00 +01001257 struct post_check_fct *pcf;
Willy Tarreauac350932019-03-01 15:43:14 +01001258 int ideal_maxconn;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001259
Christopher Faulete3a5e352017-10-24 13:53:54 +02001260 global.mode = MODE_STARTING;
William Lallemand00417412020-06-05 14:08:41 +02001261 old_argv = copy_argv(argc, argv);
1262 if (!old_argv) {
William Lallemanddf6c5a82020-06-04 17:40:23 +02001263 ha_alert("failed to copy argv.\n");
1264 exit(1);
1265 }
William Lallemand73b85e72017-06-01 17:38:51 +02001266
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001267 if (!init_trash_buffers(1)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001268 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet748919a2017-07-26 14:59:46 +02001269 exit(1);
1270 }
David du Colombier7af46052012-05-16 14:16:48 +02001271
Emeric Brun2b920a12010-09-23 18:30:22 +02001272 /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate
1273 * the string in case of truncation, and at least FreeBSD appears not to do
1274 * it.
1275 */
1276 memset(hostname, 0, sizeof(hostname));
1277 gethostname(hostname, sizeof(hostname) - 1);
Dragan Dosen4f014152020-06-18 16:56:47 +02001278
1279 if ((localpeer = strdup(hostname)) == NULL) {
1280 ha_alert("Cannot allocate memory for local peer.\n");
1281 exit(EXIT_FAILURE);
1282 }
William Lallemanddaf4cd22018-04-17 16:46:13 +02001283 setenv("HAPROXY_LOCALPEER", localpeer, 1);
Emeric Brun2b920a12010-09-23 18:30:22 +02001284
William Lallemand24c928c2020-01-14 17:58:18 +01001285 /* we were in mworker mode, we should restart in mworker mode */
1286 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL)
1287 global.mode |= MODE_MWORKER;
1288
Willy Tarreaubaaee002006-06-26 02:48:02 +02001289 /*
1290 * Initialize the previously static variables.
1291 */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001292
Willy Tarreau173d9952018-01-26 21:48:23 +01001293 totalconn = actconn = listeners = stopping = 0;
Cyril Bonté203ec5a2017-03-23 22:44:13 +01001294 killed = 0;
Christopher Fauletcd7879a2017-10-27 13:53:47 +02001295
Willy Tarreaubaaee002006-06-26 02:48:02 +02001296
1297#ifdef HAPROXY_MEMMAX
Willy Tarreau70060452015-12-14 12:46:07 +01001298 global.rlimit_memmax_all = HAPROXY_MEMMAX;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001299#endif
1300
Benoit GARNIERb413c2a2016-03-27 11:08:03 +02001301 tzset();
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001302 tv_update_date(-1,-1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001303 start_date = now;
1304
Willy Tarreau6c3a6812020-03-06 18:57:15 +01001305 ha_random_boot(argv);
Willy Tarreau84310e22014-02-14 11:59:04 +01001306
Willy Tarreau8ed669b2013-01-11 15:49:37 +01001307 if (init_acl() != 0)
1308 exit(1);
Willy Tarreaub6b3df32018-11-26 16:31:20 +01001309
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001310 /* Initialise lua. */
1311 hlua_init();
Thierry FOURNIER6f1fd482015-01-23 14:06:13 +01001312
Christopher Fauletff2613e2016-11-09 11:36:17 +01001313 /* Initialize process vars */
1314 vars_init(&global.vars, SCOPE_PROC);
1315
Willy Tarreau43b78992009-01-25 15:42:27 +01001316 global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */
Willy Tarreaue5733232019-05-22 19:24:06 +02001317#if defined(USE_POLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001318 global.tune.options |= GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001319#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001320#if defined(USE_EPOLL)
Willy Tarreau43b78992009-01-25 15:42:27 +01001321 global.tune.options |= GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001322#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001323#if defined(USE_KQUEUE)
Willy Tarreau43b78992009-01-25 15:42:27 +01001324 global.tune.options |= GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001325#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001326#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001327 global.tune.options |= GTUNE_USE_EVPORTS;
1328#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001329#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001330 global.tune.options |= GTUNE_USE_SPLICE;
1331#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001332#if defined(USE_GETADDRINFO)
1333 global.tune.options |= GTUNE_USE_GAI;
1334#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001335#if defined(SO_REUSEPORT)
1336 global.tune.options |= GTUNE_USE_REUSEPORT;
1337#endif
Willy Tarreau76cc6992020-07-01 18:49:24 +02001338#ifdef USE_THREAD
1339 global.tune.options |= GTUNE_IDLE_POOL_SHARED;
1340#endif
William Dauchya5194602020-03-28 19:29:58 +01001341 global.tune.options |= GTUNE_STRICT_LIMITS;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001342
1343 pid = getpid();
1344 progname = *argv;
1345 while ((tmp = strchr(progname, '/')) != NULL)
1346 progname = tmp + 1;
1347
Kevinm48936af2010-12-22 16:08:21 +00001348 /* the process name is used for the logs only */
Eric Salama7cea6062020-10-02 11:58:19 +02001349 chunk_initlen(&global.log_tag, strdup(progname), strlen(progname), strlen(progname));
1350 if (b_orig(&global.log_tag) == NULL) {
1351 chunk_destroy(&global.log_tag);
1352 ha_alert("Cannot allocate memory for log_tag.\n");
1353 exit(EXIT_FAILURE);
1354 }
Kevinm48936af2010-12-22 16:08:21 +00001355
Willy Tarreaubaaee002006-06-26 02:48:02 +02001356 argc--; argv++;
1357 while (argc > 0) {
1358 char *flag;
1359
1360 if (**argv == '-') {
1361 flag = *argv+1;
1362
1363 /* 1 arg */
1364 if (*flag == 'v') {
1365 display_version();
Willy Tarreau7b066db2007-12-02 11:28:59 +01001366 if (flag[1] == 'v') /* -vv */
1367 display_build_opts();
Willy Tarreaubaaee002006-06-26 02:48:02 +02001368 exit(0);
1369 }
Willy Tarreaue5733232019-05-22 19:24:06 +02001370#if defined(USE_EPOLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001371 else if (*flag == 'd' && flag[1] == 'e')
Willy Tarreau43b78992009-01-25 15:42:27 +01001372 global.tune.options &= ~GTUNE_USE_EPOLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001373#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001374#if defined(USE_POLL)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001375 else if (*flag == 'd' && flag[1] == 'p')
Willy Tarreau43b78992009-01-25 15:42:27 +01001376 global.tune.options &= ~GTUNE_USE_POLL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001377#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001378#if defined(USE_KQUEUE)
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001379 else if (*flag == 'd' && flag[1] == 'k')
Willy Tarreau43b78992009-01-25 15:42:27 +01001380 global.tune.options &= ~GTUNE_USE_KQUEUE;
Willy Tarreau1e63130a2007-04-09 12:03:06 +02001381#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001382#if defined(USE_EVPORTS)
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00001383 else if (*flag == 'd' && flag[1] == 'v')
1384 global.tune.options &= ~GTUNE_USE_EVPORTS;
1385#endif
Willy Tarreaue5733232019-05-22 19:24:06 +02001386#if defined(USE_LINUX_SPLICE)
Willy Tarreau3ab68cf2009-01-25 16:03:28 +01001387 else if (*flag == 'd' && flag[1] == 'S')
1388 global.tune.options &= ~GTUNE_USE_SPLICE;
1389#endif
Nenad Merdanovic88afe032014-04-14 15:56:58 +02001390#if defined(USE_GETADDRINFO)
1391 else if (*flag == 'd' && flag[1] == 'G')
1392 global.tune.options &= ~GTUNE_USE_GAI;
1393#endif
Lukas Tribusa0bcbdc2016-09-12 21:42:20 +00001394#if defined(SO_REUSEPORT)
1395 else if (*flag == 'd' && flag[1] == 'R')
1396 global.tune.options &= ~GTUNE_USE_REUSEPORT;
1397#endif
Emeric Brun850efd52014-01-29 12:24:34 +01001398 else if (*flag == 'd' && flag[1] == 'V')
1399 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001400 else if (*flag == 'V')
1401 arg_mode |= MODE_VERBOSE;
1402 else if (*flag == 'd' && flag[1] == 'b')
1403 arg_mode |= MODE_FOREGROUND;
Willy Tarreau3eb10b82020-04-15 16:42:39 +02001404 else if (*flag == 'd' && flag[1] == 'W')
1405 arg_mode |= MODE_ZERO_WARNING;
Willy Tarreau6e064432012-05-08 15:40:42 +02001406 else if (*flag == 'd' && flag[1] == 'M')
1407 mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P';
Willy Tarreau3eed10e2016-11-07 21:03:16 +01001408 else if (*flag == 'd' && flag[1] == 'r')
1409 global.tune.options |= GTUNE_RESOLVE_DONTFAIL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001410 else if (*flag == 'd')
1411 arg_mode |= MODE_DEBUG;
1412 else if (*flag == 'c')
1413 arg_mode |= MODE_CHECK;
William Lallemand095ba4c2017-06-01 17:38:50 +02001414 else if (*flag == 'D')
Willy Tarreau6bde87b2009-05-18 16:29:51 +02001415 arg_mode |= MODE_DAEMON;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001416 else if (*flag == 'W' && flag[1] == 's') {
Lukas Tribusf46bf952017-11-21 12:39:34 +01001417 arg_mode |= MODE_MWORKER | MODE_FOREGROUND;
Tim Duesterhusd6942c82017-11-20 15:58:35 +01001418#if defined(USE_SYSTEMD)
1419 global.tune.options |= GTUNE_USE_SYSTEMD;
1420#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001421 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 +01001422 usage(progname);
1423#endif
1424 }
William Lallemand095ba4c2017-06-01 17:38:50 +02001425 else if (*flag == 'W')
1426 arg_mode |= MODE_MWORKER;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001427 else if (*flag == 'q')
1428 arg_mode |= MODE_QUIET;
Olivier Houchardf73629d2017-04-05 22:33:04 +02001429 else if (*flag == 'x') {
William Lallemand4f71d302020-06-04 23:41:29 +02001430 if (argc <= 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001431 ha_alert("Unix socket path expected with the -x flag\n\n");
William Lallemand45eff442017-06-19 15:57:55 +02001432 usage(progname);
Olivier Houchardf73629d2017-04-05 22:33:04 +02001433 }
William Lallemand4fc09692017-06-19 16:37:19 +02001434 if (old_unixsocket)
Christopher Faulet767a84b2017-11-24 16:50:31 +01001435 ha_warning("-x option already set, overwriting the value\n");
Olivier Houchardf73629d2017-04-05 22:33:04 +02001436 old_unixsocket = argv[1];
William Lallemand4fc09692017-06-19 16:37:19 +02001437
Olivier Houchardf73629d2017-04-05 22:33:04 +02001438 argv++;
1439 argc--;
1440 }
William Lallemande7361152018-10-26 14:47:36 +02001441 else if (*flag == 'S') {
1442 struct wordlist *c;
1443
William Lallemanda6b32492020-06-04 23:49:20 +02001444 if (argc <= 1) {
William Lallemande7361152018-10-26 14:47:36 +02001445 ha_alert("Socket and optional bind parameters expected with the -S flag\n");
1446 usage(progname);
1447 }
1448 if ((c = malloc(sizeof(*c))) == NULL || (c->s = strdup(argv[1])) == NULL) {
1449 ha_alert("Cannot allocate memory\n");
1450 exit(EXIT_FAILURE);
1451 }
1452 LIST_ADD(&mworker_cli_conf, &c->list);
1453
1454 argv++;
1455 argc--;
1456 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001457 else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) {
1458 /* list of pids to finish ('f') or terminate ('t') */
1459
1460 if (flag[1] == 'f')
1461 oldpids_sig = SIGUSR1; /* finish then exit */
1462 else
1463 oldpids_sig = SIGTERM; /* terminate immediately */
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001464 while (argc > 1 && argv[1][0] != '-') {
Chris Lane236062f2018-02-05 23:15:44 +00001465 char * endptr = NULL;
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001466 oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int));
1467 if (!oldpids) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001468 ha_alert("Cannot allocate old pid : out of memory.\n");
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001469 exit(1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001470 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001471 argc--; argv++;
Chris Lane236062f2018-02-05 23:15:44 +00001472 errno = 0;
1473 oldpids[nb_oldpids] = strtol(*argv, &endptr, 10);
1474 if (errno) {
1475 ha_alert("-%2s option: failed to parse {%s}: %s\n",
1476 flag,
1477 *argv, strerror(errno));
1478 exit(1);
1479 } else if (endptr && strlen(endptr)) {
Willy Tarreau90807112020-02-25 08:16:33 +01001480 while (isspace((unsigned char)*endptr)) endptr++;
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001481 if (*endptr != 0) {
Chris Lane236062f2018-02-05 23:15:44 +00001482 ha_alert("-%2s option: some bytes unconsumed in PID list {%s}\n",
1483 flag, endptr);
1484 exit(1);
Aurélien Nephtali39b89882018-02-17 20:53:11 +01001485 }
Chris Lane236062f2018-02-05 23:15:44 +00001486 }
Willy Tarreauc6ca1aa2015-10-08 11:32:32 +02001487 if (oldpids[nb_oldpids] <= 0)
1488 usage(progname);
1489 nb_oldpids++;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001490 }
1491 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001492 else if (flag[0] == '-' && flag[1] == 0) { /* "--" */
1493 /* now that's a cfgfile list */
1494 argv++; argc--;
1495 while (argc > 0) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02001496 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001497 ha_alert("Cannot load configuration file/directory %s : %s\n",
1498 *argv,
1499 err_msg);
Willy Tarreaua088d312015-10-08 11:58:48 +02001500 exit(1);
1501 }
Willy Tarreaua088d312015-10-08 11:58:48 +02001502 argv++; argc--;
1503 }
1504 break;
1505 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001506 else { /* >=2 args */
1507 argv++; argc--;
1508 if (argc == 0)
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001509 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001510
1511 switch (*flag) {
Willy Tarreau576132e2011-09-10 19:26:56 +02001512 case 'C' : change_dir = *argv; break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001513 case 'n' : cfg_maxconn = atol(*argv); break;
Willy Tarreau70060452015-12-14 12:46:07 +01001514 case 'm' : global.rlimit_memmax_all = atol(*argv); break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001515 case 'N' : cfg_maxpconn = atol(*argv); break;
William Lallemanddaf4cd22018-04-17 16:46:13 +02001516 case 'L' :
Dragan Dosen4f014152020-06-18 16:56:47 +02001517 free(localpeer);
1518 if ((localpeer = strdup(*argv)) == NULL) {
1519 ha_alert("Cannot allocate memory for local peer.\n");
1520 exit(EXIT_FAILURE);
1521 }
William Lallemanddaf4cd22018-04-17 16:46:13 +02001522 setenv("HAPROXY_LOCALPEER", localpeer, 1);
Dragan Dosen13cd54c2020-06-18 18:24:05 +02001523 global.localpeer_cmdline = 1;
William Lallemanddaf4cd22018-04-17 16:46:13 +02001524 break;
Willy Tarreau5d01a632009-06-22 16:02:30 +02001525 case 'f' :
Maxime de Roucy0f503922016-05-13 23:52:55 +02001526 if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001527 ha_alert("Cannot load configuration file/directory %s : %s\n",
1528 *argv,
1529 err_msg);
Willy Tarreau5d01a632009-06-22 16:02:30 +02001530 exit(1);
1531 }
Willy Tarreau5d01a632009-06-22 16:02:30 +02001532 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001533 case 'p' : cfg_pidfile = *argv; break;
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001534 default: usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001535 }
1536 }
1537 }
1538 else
Willy Tarreau3bafcdc2011-09-10 19:20:23 +02001539 usage(progname);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001540 argv++; argc--;
1541 }
1542
Christopher Faulete3a5e352017-10-24 13:53:54 +02001543 global.mode |= (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE
Willy Tarreau3eb10b82020-04-15 16:42:39 +02001544 | MODE_QUIET | MODE_CHECK | MODE_DEBUG | MODE_ZERO_WARNING));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001545
William Lallemand944e6192018-11-21 15:48:31 +01001546 if (getenv("HAPROXY_MWORKER_WAIT_ONLY")) {
William Lallemandcb11fd22017-06-01 17:38:52 +02001547 unsetenv("HAPROXY_MWORKER_WAIT_ONLY");
William Lallemand944e6192018-11-21 15:48:31 +01001548 global.mode |= MODE_MWORKER_WAIT;
1549 global.mode &= ~MODE_MWORKER;
William Lallemandcb11fd22017-06-01 17:38:52 +02001550 }
1551
1552 if ((global.mode & MODE_MWORKER) && (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) {
1553 atexit_flag = 1;
1554 atexit(reexec_on_failure);
1555 }
1556
Willy Tarreau576132e2011-09-10 19:26:56 +02001557 if (change_dir && chdir(change_dir) < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001558 ha_alert("Could not change to directory %s : %s\n", change_dir, strerror(errno));
Willy Tarreau576132e2011-09-10 19:26:56 +02001559 exit(1);
1560 }
1561
Willy Tarreaubaaee002006-06-26 02:48:02 +02001562 global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001563
William Lallemand944e6192018-11-21 15:48:31 +01001564 /* in wait mode, we don't try to read the configuration files */
1565 if (!(global.mode & MODE_MWORKER_WAIT)) {
Christopher Faulet4e366822021-01-12 18:57:38 +01001566 char *env_cfgfiles = NULL;
1567 int env_err = 0;
Willy Tarreauc4382422009-12-06 13:10:44 +01001568
William Lallemand944e6192018-11-21 15:48:31 +01001569 /* handle cfgfiles that are actually directories */
1570 cfgfiles_expand_directories();
1571
1572 if (LIST_ISEMPTY(&cfg_cfgfiles))
1573 usage(progname);
1574
1575
1576 list_for_each_entry(wl, &cfg_cfgfiles, list) {
1577 int ret;
1578
Christopher Faulet4e366822021-01-12 18:57:38 +01001579 if (env_err == 0) {
1580 if (!memprintf(&env_cfgfiles, "%s%s%s",
1581 (env_cfgfiles ? env_cfgfiles : ""),
1582 (env_cfgfiles ? ";" : ""), wl->s))
1583 env_err = 1;
1584 }
William Lallemand7b302d82019-05-20 11:15:37 +02001585
William Lallemand944e6192018-11-21 15:48:31 +01001586 ret = readcfgfile(wl->s);
1587 if (ret == -1) {
1588 ha_alert("Could not open configuration file %s : %s\n",
1589 wl->s, strerror(errno));
Christopher Faulet4e366822021-01-12 18:57:38 +01001590 free(env_cfgfiles);
William Lallemand944e6192018-11-21 15:48:31 +01001591 exit(1);
1592 }
1593 if (ret & (ERR_ABORT|ERR_FATAL))
1594 ha_alert("Error(s) found in configuration file : %s\n", wl->s);
1595 err_code |= ret;
Christopher Faulet4e366822021-01-12 18:57:38 +01001596 if (err_code & ERR_ABORT) {
1597 free(env_cfgfiles);
William Lallemand944e6192018-11-21 15:48:31 +01001598 exit(1);
Christopher Faulet4e366822021-01-12 18:57:38 +01001599 }
Willy Tarreauc4382422009-12-06 13:10:44 +01001600 }
Krzysztof Oledzkib304dc72007-10-14 23:40:01 +02001601
William Lallemand944e6192018-11-21 15:48:31 +01001602 /* do not try to resolve arguments nor to spot inconsistencies when
1603 * the configuration contains fatal errors caused by files not found
1604 * or failed memory allocations.
1605 */
1606 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1607 ha_alert("Fatal errors found in configuration.\n");
Christopher Faulet4e366822021-01-12 18:57:38 +01001608 free(env_cfgfiles);
William Lallemand944e6192018-11-21 15:48:31 +01001609 exit(1);
1610 }
Christopher Faulet4e366822021-01-12 18:57:38 +01001611 if (env_err) {
1612 ha_alert("Could not allocate memory for HAPROXY_CFGFILES env variable\n");
1613 exit(1);
1614 }
1615 setenv("HAPROXY_CFGFILES", env_cfgfiles, 1);
1616 free(env_cfgfiles);
William Lallemand7b302d82019-05-20 11:15:37 +02001617
Willy Tarreaub83dc3d2017-04-19 11:24:07 +02001618 }
William Lallemandce83b4a2018-10-26 14:47:30 +02001619 if (global.mode & MODE_MWORKER) {
1620 int proc;
William Lallemand16dd1b32018-11-19 18:46:18 +01001621 struct mworker_proc *tmproc;
1622
William Lallemand482f9a92019-04-12 16:15:00 +02001623 setenv("HAPROXY_MWORKER", "1", 1);
1624
William Lallemand16dd1b32018-11-19 18:46:18 +01001625 if (getenv("HAPROXY_MWORKER_REEXEC") == NULL) {
1626
William Lallemandf3a86832019-04-01 11:29:58 +02001627 tmproc = calloc(1, sizeof(*tmproc));
William Lallemand16dd1b32018-11-19 18:46:18 +01001628 if (!tmproc) {
1629 ha_alert("Cannot allocate process structures.\n");
1630 exit(EXIT_FAILURE);
1631 }
William Lallemand8f7069a2019-04-12 16:09:23 +02001632 tmproc->options |= PROC_O_TYPE_MASTER; /* master */
William Lallemand16dd1b32018-11-19 18:46:18 +01001633 tmproc->reloads = 0;
1634 tmproc->relative_pid = 0;
1635 tmproc->pid = pid;
1636 tmproc->timestamp = start_date.tv_sec;
1637 tmproc->ipc_fd[0] = -1;
1638 tmproc->ipc_fd[1] = -1;
1639
1640 proc_self = tmproc;
1641
1642 LIST_ADDQ(&proc_list, &tmproc->list);
1643 }
William Lallemandce83b4a2018-10-26 14:47:30 +02001644
1645 for (proc = 0; proc < global.nbproc; proc++) {
William Lallemandce83b4a2018-10-26 14:47:30 +02001646
William Lallemandf3a86832019-04-01 11:29:58 +02001647 tmproc = calloc(1, sizeof(*tmproc));
William Lallemandce83b4a2018-10-26 14:47:30 +02001648 if (!tmproc) {
1649 ha_alert("Cannot allocate process structures.\n");
1650 exit(EXIT_FAILURE);
1651 }
1652
William Lallemand8f7069a2019-04-12 16:09:23 +02001653 tmproc->options |= PROC_O_TYPE_WORKER; /* worker */
William Lallemandce83b4a2018-10-26 14:47:30 +02001654 tmproc->pid = -1;
1655 tmproc->reloads = 0;
William Lallemande3683302018-11-19 18:46:17 +01001656 tmproc->timestamp = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02001657 tmproc->relative_pid = 1 + proc;
William Lallemand550db6d2018-11-06 17:37:12 +01001658 tmproc->ipc_fd[0] = -1;
1659 tmproc->ipc_fd[1] = -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02001660
1661 if (mworker_cli_sockpair_new(tmproc, proc) < 0) {
1662 exit(EXIT_FAILURE);
1663 }
1664
1665 LIST_ADDQ(&proc_list, &tmproc->list);
1666 }
William Lallemand944e6192018-11-21 15:48:31 +01001667 }
1668 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
1669 struct wordlist *it, *c;
1670
William Lallemand1b663612018-10-26 14:47:33 +02001671 mworker_env_to_proc_list(); /* get the info of the children in the env */
William Lallemand8a022572018-10-26 14:47:35 +02001672
William Lallemande7361152018-10-26 14:47:36 +02001673
William Lallemand550db6d2018-11-06 17:37:12 +01001674 if (!LIST_ISEMPTY(&mworker_cli_conf)) {
William Lallemande7361152018-10-26 14:47:36 +02001675
William Lallemand550db6d2018-11-06 17:37:12 +01001676 if (mworker_cli_proxy_create() < 0) {
William Lallemande7361152018-10-26 14:47:36 +02001677 ha_alert("Can't create the master's CLI.\n");
1678 exit(EXIT_FAILURE);
1679 }
William Lallemande7361152018-10-26 14:47:36 +02001680
William Lallemand550db6d2018-11-06 17:37:12 +01001681 list_for_each_entry_safe(c, it, &mworker_cli_conf, list) {
1682
1683 if (mworker_cli_proxy_new_listener(c->s) < 0) {
1684 ha_alert("Can't create the master's CLI.\n");
1685 exit(EXIT_FAILURE);
1686 }
1687 LIST_DEL(&c->list);
1688 free(c->s);
1689 free(c);
1690 }
1691 }
William Lallemandce83b4a2018-10-26 14:47:30 +02001692 }
1693
Eric Salama5ba83352021-03-16 15:11:17 +01001694 if (!LIST_ISEMPTY(&mworker_cli_conf) && !(arg_mode & MODE_MWORKER)) {
1695 ha_warning("a master CLI socket was defined, but master-worker mode (-W) is not enabled.\n");
1696 }
1697
Willy Tarreauf42d7942020-10-20 11:54:49 +02001698 if (global.nbproc > 1 && !global.nbthread) {
1699 ha_warning("nbproc is deprecated!\n"
1700 " | For suffering many limitations, the 'nbproc' directive is now deprecated\n"
1701 " | and scheduled for removal in 2.5. Just comment it out: haproxy will use\n"
1702 " | threads and will run on all allocated processors. You may also switch to\n"
1703 " | 'nbthread %d' to keep the same number of processors. If you absolutely\n"
1704 " | want to run in multi-process mode, you can silence this warning by adding\n"
1705 " | 'nbthread 1', but then please report your use case to developers.\n",
1706 global.nbproc);
1707 }
1708
Willy Tarreaue90904d2021-02-12 14:08:31 +01001709 /* defaults sections are not needed anymore */
1710 proxy_destroy_all_defaults();
1711
Willy Tarreaubb925012009-07-23 13:36:36 +02001712 err_code |= check_config_validity();
Christopher Fauletc1692962019-08-12 09:51:07 +02001713 for (px = proxies_list; px; px = px->next) {
1714 struct server *srv;
1715 struct post_proxy_check_fct *ppcf;
1716 struct post_server_check_fct *pscf;
1717
Christopher Fauletd5bd8242020-11-02 16:20:13 +01001718 if (px->disabled)
1719 continue;
1720
Christopher Fauletc1692962019-08-12 09:51:07 +02001721 list_for_each_entry(pscf, &post_server_check_list, list) {
1722 for (srv = px->srv; srv; srv = srv->next)
1723 err_code |= pscf->fct(srv);
1724 }
1725 list_for_each_entry(ppcf, &post_proxy_check_list, list)
1726 err_code |= ppcf->fct(px);
1727 }
Willy Tarreaubb925012009-07-23 13:36:36 +02001728 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001729 ha_alert("Fatal errors found in configuration.\n");
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001730 exit(1);
1731 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001732
Carl Henrik Lundef91ac192020-02-27 16:45:50 +01001733 err_code |= pattern_finalize_config();
1734 if (err_code & (ERR_ABORT|ERR_FATAL)) {
1735 ha_alert("Failed to finalize pattern config.\n");
1736 exit(1);
1737 }
Willy Tarreau0f936722019-04-11 14:47:08 +02001738
Willy Tarreau70060452015-12-14 12:46:07 +01001739 /* recompute the amount of per-process memory depending on nbproc and
1740 * the shared SSL cache size (allowed to exist in all processes).
1741 */
1742 if (global.rlimit_memmax_all) {
1743#if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE)
1744 int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL;
1745
1746 global.rlimit_memmax =
1747 ((((int64_t)global.rlimit_memmax_all * 1048576LL) -
1748 ssl_cache_bytes) / global.nbproc +
1749 ssl_cache_bytes + 1048575LL) / 1048576LL;
1750#else
1751 global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc;
1752#endif
1753 }
1754
Willy Tarreaue5733232019-05-22 19:24:06 +02001755#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001756 err_code |= netns_init();
1757 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001758 ha_alert("Failed to initialize namespace support.\n");
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001759 exit(1);
1760 }
1761#endif
1762
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01001763 /* Apply server states */
1764 apply_server_state();
1765
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001766 for (px = proxies_list; px; px = px->next)
Baptiste Assmann4215d7d2016-11-02 15:33:15 +01001767 srv_compute_all_admin_states(px);
1768
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01001769 /* Apply servers' configured address */
1770 err_code |= srv_init_addr();
1771 if (err_code & (ERR_ABORT|ERR_FATAL)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001772 ha_alert("Failed to initialize server(s) addr.\n");
Baptiste Assmann83cbaa52016-11-02 15:34:05 +01001773 exit(1);
1774 }
1775
Willy Tarreau3eb10b82020-04-15 16:42:39 +02001776 if (warned & WARN_ANY && global.mode & MODE_ZERO_WARNING) {
1777 ha_alert("Some warnings were found and 'zero-warning' is set. Aborting.\n");
1778 exit(1);
1779 }
1780
Willy Tarreaubaaee002006-06-26 02:48:02 +02001781 if (global.mode & MODE_CHECK) {
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001782 struct peers *pr;
1783 struct proxy *px;
1784
Willy Tarreaubebd2122020-04-15 16:06:11 +02001785 if (warned & WARN_ANY)
1786 qfprintf(stdout, "Warnings were found.\n");
1787
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02001788 for (pr = cfg_peers; pr; pr = pr->next)
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001789 if (pr->peers_fe)
1790 break;
1791
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001792 for (px = proxies_list; px; px = px->next)
Willy Tarreauc3914d42020-09-24 08:39:22 +02001793 if (!px->disabled && px->li_all)
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001794 break;
1795
1796 if (pr || px) {
1797 /* At least one peer or one listener has been found */
1798 qfprintf(stdout, "Configuration file is valid\n");
Tim Duesterhus0a3b43d2020-06-14 00:37:42 +02001799 deinit_and_exit(0);
Willy Tarreau8b15ba12012-02-02 17:48:18 +01001800 }
1801 qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n");
1802 exit(2);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001803 }
Willy Tarreaue9b26022011-08-01 20:57:55 +02001804
Willy Tarreau8263d2b2012-08-28 00:06:31 +02001805 /* now we know the buffer size, we can initialize the channels and buffers */
Willy Tarreau9b28e032012-10-12 23:49:43 +02001806 init_buffer();
Willy Tarreau8280d642009-09-23 23:37:52 +02001807
Willy Tarreaue6945732016-12-21 19:57:00 +01001808 list_for_each_entry(pcf, &post_check_list, list) {
1809 err_code |= pcf->fct();
1810 if (err_code & (ERR_ABORT|ERR_FATAL))
1811 exit(1);
1812 }
1813
Willy Tarreaubaaee002006-06-26 02:48:02 +02001814 if (cfg_maxconn > 0)
1815 global.maxconn = cfg_maxconn;
1816
Willy Tarreau4975d142021-03-13 11:00:33 +01001817 if (global.cli_fe)
1818 global.maxsock += global.cli_fe->maxconn;
Willy Tarreau8d687d82019-03-01 09:39:42 +01001819
1820 if (cfg_peers) {
1821 /* peers also need to bypass global maxconn */
1822 struct peers *p = cfg_peers;
1823
1824 for (p = cfg_peers; p; p = p->next)
1825 if (p->peers_fe)
1826 global.maxsock += p->peers_fe->maxconn;
1827 }
1828
Willy Tarreaubaaee002006-06-26 02:48:02 +02001829 if (cfg_pidfile) {
Willy Tarreaua534fea2008-08-03 12:19:50 +02001830 free(global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001831 global.pidfile = strdup(cfg_pidfile);
1832 }
1833
Willy Tarreaud0256482015-01-15 21:45:22 +01001834 /* Now we want to compute the maxconn and possibly maxsslconn values.
Willy Tarreauac350932019-03-01 15:43:14 +01001835 * It's a bit tricky. Maxconn defaults to the pre-computed value based
1836 * on rlim_fd_cur and the number of FDs in use due to the configuration,
1837 * and maxsslconn defaults to DEFAULT_MAXSSLCONN. On top of that we can
1838 * enforce a lower limit based on memmax.
Willy Tarreaud0256482015-01-15 21:45:22 +01001839 *
1840 * If memmax is set, then it depends on which values are set. If
1841 * maxsslconn is set, we use memmax to determine how many cleartext
1842 * connections may be added, and set maxconn to the sum of the two.
1843 * If maxconn is set and not maxsslconn, maxsslconn is computed from
1844 * the remaining amount of memory between memmax and the cleartext
1845 * connections. If neither are set, then it is considered that all
1846 * connections are SSL-capable, and maxconn is computed based on this,
1847 * then maxsslconn accordingly. We need to know if SSL is used on the
1848 * frontends, backends, or both, because when it's used on both sides,
1849 * we need twice the value for maxsslconn, but we only count the
1850 * handshake once since it is not performed on the two sides at the
1851 * same time (frontend-side is terminated before backend-side begins).
1852 * The SSL stack is supposed to have filled ssl_session_cost and
Willy Tarreau474b96a2015-01-28 19:03:21 +01001853 * ssl_handshake_cost during its initialization. In any case, if
1854 * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for
1855 * maxconn in order to protect the system.
Willy Tarreaud0256482015-01-15 21:45:22 +01001856 */
Willy Tarreauac350932019-03-01 15:43:14 +01001857 ideal_maxconn = compute_ideal_maxconn();
1858
Willy Tarreaud0256482015-01-15 21:45:22 +01001859 if (!global.rlimit_memmax) {
1860 if (global.maxconn == 0) {
Willy Tarreauac350932019-03-01 15:43:14 +01001861 global.maxconn = ideal_maxconn;
Willy Tarreaud0256482015-01-15 21:45:22 +01001862 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1863 fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn);
1864 }
1865 }
1866#ifdef USE_OPENSSL
1867 else if (!global.maxconn && !global.maxsslconn &&
1868 (global.ssl_used_frontend || global.ssl_used_backend)) {
1869 /* memmax is set, compute everything automatically. Here we want
1870 * to ensure that all SSL connections will be served. We take
1871 * care of the number of sides where SSL is used, and consider
1872 * the worst case : SSL used on both sides and doing a handshake
1873 * simultaneously. Note that we can't have more than maxconn
1874 * handshakes at a time by definition, so for the worst case of
1875 * two SSL conns per connection, we count a single handshake.
1876 */
1877 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1878 int64_t mem = global.rlimit_memmax * 1048576ULL;
Willy Tarreau304e17e2020-03-10 17:54:54 +01001879 int retried = 0;
Willy Tarreaud0256482015-01-15 21:45:22 +01001880
1881 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1882 mem -= global.maxzlibmem;
1883 mem = mem * MEM_USABLE_RATIO;
1884
Willy Tarreau304e17e2020-03-10 17:54:54 +01001885 /* Principle: we test once to set maxconn according to the free
1886 * memory. If it results in values the system rejects, we try a
1887 * second time by respecting rlim_fd_max. If it fails again, we
1888 * go back to the initial value and will let the final code
1889 * dealing with rlimit report the error. That's up to 3 attempts.
1890 */
1891 do {
1892 global.maxconn = mem /
1893 ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream
1894 sides * global.ssl_session_max_cost + // SSL buffers, one per side
1895 global.ssl_handshake_max_cost); // 1 handshake per connection max
Willy Tarreaud0256482015-01-15 21:45:22 +01001896
Willy Tarreau304e17e2020-03-10 17:54:54 +01001897 if (retried == 1)
1898 global.maxconn = MIN(global.maxconn, ideal_maxconn);
1899 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001900#ifdef SYSTEM_MAXCONN
Willy Tarreau304e17e2020-03-10 17:54:54 +01001901 if (global.maxconn > SYSTEM_MAXCONN)
1902 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01001903#endif /* SYSTEM_MAXCONN */
Willy Tarreau304e17e2020-03-10 17:54:54 +01001904 global.maxsslconn = sides * global.maxconn;
1905
1906 if (check_if_maxsock_permitted(compute_ideal_maxsock(global.maxconn)))
1907 break;
1908 } while (retried++ < 2);
1909
Willy Tarreaud0256482015-01-15 21:45:22 +01001910 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1911 fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n",
1912 global.maxconn, global.maxsslconn);
1913 }
1914 else if (!global.maxsslconn &&
1915 (global.ssl_used_frontend || global.ssl_used_backend)) {
1916 /* memmax and maxconn are known, compute maxsslconn automatically.
1917 * maxsslconn being forced, we don't know how many of it will be
1918 * on each side if both sides are being used. The worst case is
1919 * when all connections use only one SSL instance because
1920 * handshakes may be on two sides at the same time.
1921 */
1922 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1923 int64_t mem = global.rlimit_memmax * 1048576ULL;
1924 int64_t sslmem;
1925
1926 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1927 mem -= global.maxzlibmem;
1928 mem = mem * MEM_USABLE_RATIO;
1929
Willy Tarreau87b09662015-04-03 00:22:06 +02001930 sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize);
Willy Tarreaud0256482015-01-15 21:45:22 +01001931 global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost);
1932 global.maxsslconn = round_2dig(global.maxsslconn);
1933
1934 if (sslmem <= 0 || global.maxsslconn < sides) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001935 ha_alert("Cannot compute the automatic maxsslconn because global.maxconn is already too "
1936 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1937 "without SSL is %d, but %d was found and SSL is in use.\n",
1938 global.rlimit_memmax,
1939 (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)),
1940 global.maxconn);
Willy Tarreaud0256482015-01-15 21:45:22 +01001941 exit(1);
1942 }
1943
1944 if (global.maxsslconn > sides * global.maxconn)
1945 global.maxsslconn = sides * global.maxconn;
1946
1947 if (global.mode & (MODE_VERBOSE|MODE_DEBUG))
1948 fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn);
1949 }
1950#endif
1951 else if (!global.maxconn) {
1952 /* memmax and maxsslconn are known/unused, compute maxconn automatically */
1953 int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend;
1954 int64_t mem = global.rlimit_memmax * 1048576ULL;
1955 int64_t clearmem;
Willy Tarreau304e17e2020-03-10 17:54:54 +01001956 int retried = 0;
Willy Tarreaud0256482015-01-15 21:45:22 +01001957
1958 if (global.ssl_used_frontend || global.ssl_used_backend)
1959 mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry
1960
1961 mem -= global.maxzlibmem;
1962 mem = mem * MEM_USABLE_RATIO;
1963
1964 clearmem = mem;
1965 if (sides)
1966 clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn;
1967
Willy Tarreau304e17e2020-03-10 17:54:54 +01001968 /* Principle: we test once to set maxconn according to the free
1969 * memory. If it results in values the system rejects, we try a
1970 * second time by respecting rlim_fd_max. If it fails again, we
1971 * go back to the initial value and will let the final code
1972 * dealing with rlimit report the error. That's up to 3 attempts.
1973 */
1974 do {
1975 global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize);
1976 if (retried == 1)
1977 global.maxconn = MIN(global.maxconn, ideal_maxconn);
1978 global.maxconn = round_2dig(global.maxconn);
Willy Tarreau474b96a2015-01-28 19:03:21 +01001979#ifdef SYSTEM_MAXCONN
Willy Tarreau304e17e2020-03-10 17:54:54 +01001980 if (global.maxconn > SYSTEM_MAXCONN)
1981 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau474b96a2015-01-28 19:03:21 +01001982#endif /* SYSTEM_MAXCONN */
Willy Tarreaud0256482015-01-15 21:45:22 +01001983
Willy Tarreau304e17e2020-03-10 17:54:54 +01001984 if (clearmem <= 0 || !global.maxconn) {
1985 ha_alert("Cannot compute the automatic maxconn because global.maxsslconn is already too "
1986 "high for the global.memmax value (%d MB). The absolute maximum possible value "
1987 "is %d, but %d was found.\n",
1988 global.rlimit_memmax,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001989 (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)),
Willy Tarreau304e17e2020-03-10 17:54:54 +01001990 global.maxsslconn);
1991 exit(1);
1992 }
1993
1994 if (check_if_maxsock_permitted(compute_ideal_maxsock(global.maxconn)))
1995 break;
1996 } while (retried++ < 2);
Willy Tarreaud0256482015-01-15 21:45:22 +01001997
1998 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
1999 if (sides && global.maxsslconn > sides * global.maxconn) {
2000 fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn "
2001 "to be limited to %d. Better reduce global.maxsslconn to get more "
2002 "room for extra connections.\n", global.maxsslconn, global.maxconn);
2003 }
2004 fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn);
2005 }
Willy Tarreau66aa61f2009-01-18 21:44:07 +01002006 }
2007
Willy Tarreaua409f302020-03-10 17:08:53 +01002008 global.maxsock = compute_ideal_maxsock(global.maxconn);
2009 global.hardmaxconn = global.maxconn;
Willy Tarreaua4818db2020-06-19 16:20:59 +02002010 if (!global.maxpipes)
2011 global.maxpipes = compute_ideal_maxpipes();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002012
Olivier Houchard88698d92019-04-16 19:07:22 +02002013 /* update connection pool thresholds */
2014 global.tune.pool_low_count = ((long long)global.maxsock * global.tune.pool_low_ratio + 99) / 100;
2015 global.tune.pool_high_count = ((long long)global.maxsock * global.tune.pool_high_ratio + 99) / 100;
2016
Willy Tarreauc8d5b952019-02-27 17:25:52 +01002017 proxy_adjust_all_maxconn();
2018
Willy Tarreau1db37712007-06-03 17:16:49 +02002019 if (global.tune.maxpollevents <= 0)
2020 global.tune.maxpollevents = MAX_POLL_EVENTS;
2021
Willy Tarreau060a7612021-03-10 11:06:26 +01002022 if (global.tune.runqueue_depth <= 0) {
2023 /* tests on various thread counts from 1 to 64 have shown an
2024 * optimal queue depth following roughly 1/sqrt(threads).
2025 */
2026 int s = my_flsl(global.nbthread);
2027 s += (global.nbthread / s); // roughly twice the sqrt.
2028 global.tune.runqueue_depth = RUNQUEUE_DEPTH * 2 / s;
2029 }
Olivier Houchard1599b802018-05-24 18:59:04 +02002030
Willy Tarreau6f4a82c2009-03-21 20:43:57 +01002031 if (global.tune.recv_enough == 0)
2032 global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH;
2033
Willy Tarreau27a674e2009-08-17 07:23:33 +02002034 if (global.tune.maxrewrite >= global.tune.bufsize / 2)
2035 global.tune.maxrewrite = global.tune.bufsize / 2;
2036
Willy Tarreaubaaee002006-06-26 02:48:02 +02002037 if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) {
2038 /* command line debug mode inhibits configuration mode */
William Lallemand095ba4c2017-06-01 17:38:50 +02002039 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002040 global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND));
2041 }
2042
William Lallemand095ba4c2017-06-01 17:38:50 +02002043 if (arg_mode & MODE_DAEMON) {
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002044 /* command line daemon mode inhibits foreground and debug modes mode */
2045 global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND);
William Lallemand095ba4c2017-06-01 17:38:50 +02002046 global.mode |= arg_mode & MODE_DAEMON;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002047 }
Willy Tarreau772f0dd2012-10-26 16:04:28 +02002048
2049 global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002050
William Lallemand095ba4c2017-06-01 17:38:50 +02002051 if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002052 ha_warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n");
William Lallemand095ba4c2017-06-01 17:38:50 +02002053 global.mode &= ~(MODE_DAEMON | MODE_QUIET);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002054 }
2055
William Lallemand095ba4c2017-06-01 17:38:50 +02002056 if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002057 if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG)))
Christopher Faulet767a84b2017-11-24 16:50:31 +01002058 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 +02002059 global.nbproc = 1;
2060 }
2061
2062 if (global.nbproc < 1)
2063 global.nbproc = 1;
2064
Christopher Fauletbe0faa22017-08-29 15:37:10 +02002065 if (global.nbthread < 1)
2066 global.nbthread = 1;
2067
Christopher Faulet3ef26392017-08-29 16:46:57 +02002068 /* Realloc trash buffers because global.tune.bufsize may have changed */
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002069 if (!init_trash_buffers(0)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002070 ha_alert("failed to initialize trash buffers.\n");
Christopher Faulet3ef26392017-08-29 16:46:57 +02002071 exit(1);
2072 }
2073
Christopher Faulet96d44832017-11-14 22:02:30 +01002074 if (!init_log_buffers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002075 ha_alert("failed to initialize log buffers.\n");
Christopher Faulet96d44832017-11-14 22:02:30 +01002076 exit(1);
2077 }
2078
Willy Tarreauef1d1f82007-04-16 00:25:25 +02002079 /*
2080 * Note: we could register external pollers here.
2081 * Built-in pollers have been registered before main().
2082 */
Willy Tarreau4f60f162007-04-08 16:39:58 +02002083
Willy Tarreau43b78992009-01-25 15:42:27 +01002084 if (!(global.tune.options & GTUNE_USE_KQUEUE))
Willy Tarreau1e63130a2007-04-09 12:03:06 +02002085 disable_poller("kqueue");
2086
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +00002087 if (!(global.tune.options & GTUNE_USE_EVPORTS))
2088 disable_poller("evports");
2089
Willy Tarreau43b78992009-01-25 15:42:27 +01002090 if (!(global.tune.options & GTUNE_USE_EPOLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002091 disable_poller("epoll");
2092
Willy Tarreau43b78992009-01-25 15:42:27 +01002093 if (!(global.tune.options & GTUNE_USE_POLL))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002094 disable_poller("poll");
2095
Willy Tarreau43b78992009-01-25 15:42:27 +01002096 if (!(global.tune.options & GTUNE_USE_SELECT))
Willy Tarreau4f60f162007-04-08 16:39:58 +02002097 disable_poller("select");
2098
2099 /* Note: we could disable any poller by name here */
2100
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002101 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
Willy Tarreau2ff76222007-04-09 19:29:56 +02002102 list_pollers(stderr);
Christopher Fauletb3f4e142016-03-07 12:46:38 +01002103 fprintf(stderr, "\n");
2104 list_filters(stderr);
2105 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002106
Willy Tarreau4f60f162007-04-08 16:39:58 +02002107 if (!init_pollers()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002108 ha_alert("No polling mechanism available.\n"
2109 " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n"
2110 " is too low on this platform to support maxconn and the number of listeners\n"
2111 " and servers. You should rebuild haproxy specifying your system using TARGET=\n"
2112 " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n"
2113 " global maxconn setting to accommodate the system's limitation. For reference,\n"
2114 " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n"
2115 " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n"
2116 " check build settings using 'haproxy -vv'.\n\n",
2117 FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002118 exit(1);
2119 }
Willy Tarreau2ff76222007-04-09 19:29:56 +02002120 if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) {
2121 printf("Using %s() as the polling mechanism.\n", cur_poller.name);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002122 }
2123
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002124 if (!global.node)
2125 global.node = strdup(hostname);
2126
Willy Tarreau02b092f2020-10-07 18:36:54 +02002127 /* stop disabled proxies */
2128 for (px = proxies_list; px; px = px->next) {
Willy Tarreauc3914d42020-09-24 08:39:22 +02002129 if (px->disabled)
Willy Tarreau02b092f2020-10-07 18:36:54 +02002130 stop_proxy(px);
2131 }
2132
Thierry FOURNIERa4a0f3d2015-01-23 12:08:30 +01002133 if (!hlua_post_init())
2134 exit(1);
Thomas Holmes6abded42015-05-12 16:23:58 +01002135
Maxime de Roucy0f503922016-05-13 23:52:55 +02002136 free(err_msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002137}
2138
Cyril Bonté203ec5a2017-03-23 22:44:13 +01002139void deinit(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002140{
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002141 struct proxy *p = proxies_list, *p0;
Willy Tarreaudeb9ed82010-01-03 21:03:22 +01002142 struct wordlist *wl, *wlb;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002143 struct uri_auth *uap, *ua = NULL;
William Lallemand0f99e342011-10-12 17:50:54 +02002144 struct logsrv *log, *logb;
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002145 struct build_opts_str *bol, *bolb;
Tim Duesterhusfdf904a2020-07-04 11:49:48 +02002146 struct post_deinit_fct *pdf, *pdfb;
Tim Duesterhus17e363f2020-07-04 11:49:47 +02002147 struct proxy_deinit_fct *pxdf, *pxdfb;
Tim Duesterhus0837eb12020-07-04 11:49:49 +02002148 struct server_deinit_fct *srvdf, *srvdfb;
Tim Duesterhusf0c25d22020-09-10 19:46:41 +02002149 struct per_thread_init_fct *tif, *tifb;
2150 struct per_thread_deinit_fct *tdf, *tdfb;
2151 struct per_thread_alloc_fct *taf, *tafb;
2152 struct per_thread_free_fct *tff, *tffb;
Tim Duesterhus34bef072020-07-04 11:49:50 +02002153 struct post_server_check_fct *pscf, *pscfb;
Tim Duesterhusfc854942020-09-10 19:46:42 +02002154 struct post_check_fct *pcf, *pcfb;
Tim Duesterhus53508d62020-09-10 19:46:40 +02002155 struct post_proxy_check_fct *ppcf, *ppcfb;
Willy Tarreauae7bc4a2020-09-23 16:46:22 +02002156 int cur_fd;
2157
2158 /* At this point the listeners state is weird:
2159 * - most listeners are still bound and referenced in their protocol
2160 * - some might be zombies that are not in their proto anymore, but
2161 * still appear in their proxy's listeners with a valid FD.
2162 * - some might be stopped and still appear in their proxy as FD #-1
2163 * - among all of them, some might be inherited hence shared and we're
2164 * not allowed to pause them or whatever, we must just close them.
2165 * - finally some are not listeners (pipes, logs, stdout, etc) and
2166 * must be left intact.
2167 *
2168 * The safe way to proceed is to unbind (and close) whatever is not yet
2169 * unbound so that no more receiver/listener remains alive. Then close
2170 * remaining listener FDs, which correspond to zombie listeners (those
2171 * belonging to disabled proxies that were in another process).
2172 * objt_listener() would be cleaner here but not converted yet.
2173 */
2174 protocol_unbind_all();
2175
2176 for (cur_fd = 0; cur_fd < global.maxsock; cur_fd++) {
Willy Tarreau1a3770c2020-10-14 12:13:51 +02002177 if (!fdtab || !fdtab[cur_fd].owner)
Willy Tarreauae7bc4a2020-09-23 16:46:22 +02002178 continue;
2179
Willy Tarreaua74cb382020-10-15 21:29:49 +02002180 if (fdtab[cur_fd].iocb == &sock_accept_iocb) {
Willy Tarreauae7bc4a2020-09-23 16:46:22 +02002181 struct listener *l = fdtab[cur_fd].owner;
2182
2183 BUG_ON(l->state != LI_INIT);
2184 unbind_listener(l);
2185 }
2186 }
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002187
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002188 deinit_signals();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002189 while (p) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002190 /* build a list of unique uri_auths */
2191 if (!ua)
2192 ua = p->uri_auth;
2193 else {
2194 /* check if p->uri_auth is unique */
2195 for (uap = ua; uap; uap=uap->next)
2196 if (uap == p->uri_auth)
2197 break;
2198
Willy Tarreauaccc4e12008-06-24 11:14:45 +02002199 if (!uap && p->uri_auth) {
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002200 /* add it, if it is */
2201 p->uri_auth->next = ua;
2202 ua = p->uri_auth;
2203 }
William Lallemand0f99e342011-10-12 17:50:54 +02002204 }
2205
Willy Tarreau4d2d0982007-05-14 00:39:29 +02002206 p0 = p;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002207 p = p->next;
Amaury Denoyelle27fefa12021-03-24 16:13:20 +01002208 free_proxy(p0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002209 }/* end while(p) */
Willy Tarreaudd815982007-10-16 12:25:14 +02002210
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002211 while (ua) {
Tim Duesterhus00f00cf2020-09-10 19:46:38 +02002212 struct stat_scope *scope, *scopep;
2213
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002214 uap = ua;
2215 ua = ua->next;
2216
Willy Tarreaua534fea2008-08-03 12:19:50 +02002217 free(uap->uri_prefix);
2218 free(uap->auth_realm);
Krzysztof Piotr Oledzki48cb2ae2009-10-02 22:51:14 +02002219 free(uap->node);
2220 free(uap->desc);
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002221
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002222 userlist_free(uap->userlist);
Amaury Denoyelle68fd7e42021-03-25 17:15:52 +01002223 free_act_rules(&uap->http_req_rules);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002224
Tim Duesterhus00f00cf2020-09-10 19:46:38 +02002225 scope = uap->scope;
2226 while (scope) {
2227 scopep = scope;
2228 scope = scope->next;
2229
2230 free(scopep->px_id);
2231 free(scopep);
2232 }
2233
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002234 free(uap);
2235 }
2236
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01002237 userlist_free(userlist);
2238
David Carlier834cb2e2015-09-25 12:02:25 +01002239 cfg_unregister_sections();
2240
Christopher Faulet0132d062017-07-26 15:33:35 +02002241 deinit_log_buffers();
David Carlier834cb2e2015-09-25 12:02:25 +01002242
Willy Tarreau05554e62016-12-21 20:46:26 +01002243 list_for_each_entry(pdf, &post_deinit_list, list)
2244 pdf->fct();
2245
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002246 ha_free(&global.log_send_hostname);
Dragan Dosen43885c72015-10-01 13:18:13 +02002247 chunk_destroy(&global.log_tag);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002248 ha_free(&global.chroot);
2249 ha_free(&global.pidfile);
2250 ha_free(&global.node);
2251 ha_free(&global.desc);
2252 ha_free(&oldpids);
2253 ha_free(&old_argv);
2254 ha_free(&localpeer);
2255 ha_free(&global.server_state_base);
2256 ha_free(&global.server_state_file);
Olivier Houchard3f795f72019-04-17 22:51:06 +02002257 task_destroy(idle_conn_task);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01002258 idle_conn_task = NULL;
Krzysztof Piotr Oledzki8001d612008-05-31 13:53:23 +02002259
William Lallemand0f99e342011-10-12 17:50:54 +02002260 list_for_each_entry_safe(log, logb, &global.logsrvs, list) {
2261 LIST_DEL(&log->list);
2262 free(log);
2263 }
Willy Tarreau477ecd82010-01-03 21:12:30 +01002264 list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) {
Maxime de Roucy0f503922016-05-13 23:52:55 +02002265 free(wl->s);
Willy Tarreau477ecd82010-01-03 21:12:30 +01002266 LIST_DEL(&wl->list);
2267 free(wl);
2268 }
2269
Willy Tarreaucdb737e2016-12-21 18:43:10 +01002270 list_for_each_entry_safe(bol, bolb, &build_opts_list, list) {
2271 if (bol->must_free)
2272 free((void *)bol->str);
2273 LIST_DEL(&bol->list);
2274 free(bol);
2275 }
2276
Tim Duesterhus17e363f2020-07-04 11:49:47 +02002277 list_for_each_entry_safe(pxdf, pxdfb, &proxy_deinit_list, list) {
2278 LIST_DEL(&pxdf->list);
2279 free(pxdf);
2280 }
2281
Tim Duesterhusfdf904a2020-07-04 11:49:48 +02002282 list_for_each_entry_safe(pdf, pdfb, &post_deinit_list, list) {
2283 LIST_DEL(&pdf->list);
2284 free(pdf);
2285 }
2286
Tim Duesterhus0837eb12020-07-04 11:49:49 +02002287 list_for_each_entry_safe(srvdf, srvdfb, &server_deinit_list, list) {
2288 LIST_DEL(&srvdf->list);
2289 free(srvdf);
2290 }
2291
Tim Duesterhusfc854942020-09-10 19:46:42 +02002292 list_for_each_entry_safe(pcf, pcfb, &post_check_list, list) {
2293 LIST_DEL(&pcf->list);
2294 free(pcf);
2295 }
2296
Tim Duesterhus34bef072020-07-04 11:49:50 +02002297 list_for_each_entry_safe(pscf, pscfb, &post_server_check_list, list) {
2298 LIST_DEL(&pscf->list);
2299 free(pscf);
2300 }
2301
Tim Duesterhus53508d62020-09-10 19:46:40 +02002302 list_for_each_entry_safe(ppcf, ppcfb, &post_proxy_check_list, list) {
2303 LIST_DEL(&ppcf->list);
2304 free(ppcf);
2305 }
2306
Tim Duesterhusf0c25d22020-09-10 19:46:41 +02002307 list_for_each_entry_safe(tif, tifb, &per_thread_init_list, list) {
2308 LIST_DEL(&tif->list);
2309 free(tif);
2310 }
2311
2312 list_for_each_entry_safe(tdf, tdfb, &per_thread_deinit_list, list) {
2313 LIST_DEL(&tdf->list);
2314 free(tdf);
2315 }
2316
2317 list_for_each_entry_safe(taf, tafb, &per_thread_alloc_list, list) {
2318 LIST_DEL(&taf->list);
2319 free(taf);
2320 }
2321
2322 list_for_each_entry_safe(tff, tffb, &per_thread_free_list, list) {
2323 LIST_DEL(&tff->list);
2324 free(tff);
2325 }
2326
Christopher Fauletff2613e2016-11-09 11:36:17 +01002327 vars_prune(&global.vars, NULL, NULL);
Willy Tarreau2455ceb2018-11-26 15:57:34 +01002328 pool_destroy_all();
Krzysztof Piotr Oledzkia643baf2008-05-29 23:53:44 +02002329 deinit_pollers();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002330} /* end deinit() */
2331
Willy Tarreauf3ca5a02020-06-15 18:43:46 +02002332__attribute__((noreturn)) void deinit_and_exit(int status)
Tim Duesterhus26540552020-06-14 00:37:41 +02002333{
2334 deinit();
2335 exit(status);
2336}
William Lallemand72160322018-11-06 17:37:16 +01002337
Willy Tarreau918ff602011-07-25 16:33:49 +02002338/* Runs the polling loop */
Willy Tarreau3ebd55e2020-03-03 14:59:56 +01002339void run_poll_loop()
Willy Tarreau4f60f162007-04-08 16:39:58 +02002340{
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002341 int next, wake;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002342
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002343 tv_update_date(0,1);
Willy Tarreau4f60f162007-04-08 16:39:58 +02002344 while (1) {
Willy Tarreauc49ba522019-12-11 08:12:23 +01002345 wake_expired_tasks();
2346
William Lallemand1aab50b2018-06-07 09:46:01 +02002347 /* check if we caught some signals and process them in the
2348 first thread */
Willy Tarreaua7ad4ae2020-06-19 12:06:34 +02002349 if (signal_queue_len && tid == 0) {
2350 activity[tid].wake_signal++;
William Lallemand1aab50b2018-06-07 09:46:01 +02002351 signal_process_queue();
Willy Tarreaua7ad4ae2020-06-19 12:06:34 +02002352 }
2353
2354 /* Process a few tasks */
2355 process_runnable_tasks();
Willy Tarreau29857942009-05-10 09:01:21 +02002356
Willy Tarreau7067b3a2019-06-02 11:11:29 +02002357 /* also stop if we failed to cleanly stop all tasks */
2358 if (killed > 1)
2359 break;
2360
Willy Tarreau10146c92015-04-13 20:44:19 +02002361 /* expire immediately if events are pending */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002362 wake = 1;
Olivier Houchard305d5ab2019-07-24 18:07:06 +02002363 if (thread_has_tasks())
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002364 activity[tid].wake_tasks++;
Olivier Houchard79321b92018-07-26 17:55:11 +02002365 else {
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002366 _HA_ATOMIC_OR(&sleeping_thread_mask, tid_bit);
2367 __ha_barrier_atomic_store();
Willy Tarreau95abd5b2020-03-23 09:33:32 +01002368 if (thread_has_tasks()) {
Olivier Houchard79321b92018-07-26 17:55:11 +02002369 activity[tid].wake_tasks++;
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002370 _HA_ATOMIC_AND(&sleeping_thread_mask, ~tid_bit);
Olivier Houchard79321b92018-07-26 17:55:11 +02002371 } else
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002372 wake = 0;
Olivier Houchard79321b92018-07-26 17:55:11 +02002373 }
Willy Tarreau10146c92015-04-13 20:44:19 +02002374
Willy Tarreau4f46a352020-03-23 09:27:28 +01002375 if (!wake) {
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002376 int i;
2377
2378 if (stopping) {
Willy Tarreaud6455742020-05-13 14:30:25 +02002379 if (_HA_ATOMIC_OR(&stopping_thread_mask, tid_bit) == tid_bit) {
2380 /* notify all threads that stopping was just set */
2381 for (i = 0; i < global.nbthread; i++)
Willy Tarreau369a2ef2020-06-29 19:23:19 +02002382 if (((all_threads_mask & ~stopping_thread_mask) >> i) & 1)
Willy Tarreaud6455742020-05-13 14:30:25 +02002383 wake_thread(i);
2384 }
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002385 }
Willy Tarreau4f46a352020-03-23 09:27:28 +01002386
2387 /* stop when there's nothing left to do */
2388 if ((jobs - unstoppable_jobs) == 0 &&
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002389 (stopping_thread_mask & all_threads_mask) == all_threads_mask) {
2390 /* wake all threads waiting on jobs==0 */
2391 for (i = 0; i < global.nbthread; i++)
2392 if (((all_threads_mask & ~tid_bit) >> i) & 1)
2393 wake_thread(i);
Willy Tarreau4f46a352020-03-23 09:27:28 +01002394 break;
Willy Tarreaud7a6b2f2020-05-13 13:51:01 +02002395 }
Willy Tarreau4f46a352020-03-23 09:27:28 +01002396 }
2397
Willy Tarreauc49ba522019-12-11 08:12:23 +01002398 /* If we have to sleep, measure how long */
2399 next = wake ? TICK_ETERNITY : next_timer_expiry();
2400
Willy Tarreau58b458d2008-06-29 22:40:23 +02002401 /* The poller will ensure it returns around <next> */
Willy Tarreau2ae84e42019-05-28 16:44:05 +02002402 cur_poller.poll(&cur_poller, next, wake);
Emeric Brun64cc49c2017-10-03 14:46:45 +02002403
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01002404 activity[tid].loops++;
Willy Tarreau4f60f162007-04-08 16:39:58 +02002405 }
2406}
2407
Christopher Faulet1d17c102017-08-29 15:38:48 +02002408static void *run_thread_poll_loop(void *data)
2409{
Willy Tarreau082b6282019-05-22 14:42:12 +02002410 struct per_thread_alloc_fct *ptaf;
Christopher Faulet1d17c102017-08-29 15:38:48 +02002411 struct per_thread_init_fct *ptif;
2412 struct per_thread_deinit_fct *ptdf;
Willy Tarreau082b6282019-05-22 14:42:12 +02002413 struct per_thread_free_fct *ptff;
Willy Tarreau34a150c2019-06-11 09:16:41 +02002414 static int init_left = 0;
Willy Tarreauaf613e82020-06-05 08:40:51 +02002415 __decl_thread(static pthread_mutex_t init_mutex = PTHREAD_MUTEX_INITIALIZER);
2416 __decl_thread(static pthread_cond_t init_cond = PTHREAD_COND_INITIALIZER);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002417
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02002418 ha_set_tid((unsigned long)data);
Willy Tarreaud022e9c2019-09-24 08:25:15 +02002419 sched = &task_per_thread[tid];
Willy Tarreau91e6df02019-05-03 17:21:18 +02002420
Willy Tarreauf6178242019-05-21 19:46:58 +02002421#if (_POSIX_TIMERS > 0) && defined(_POSIX_THREAD_CPUTIME)
Willy Tarreau91e6df02019-05-03 17:21:18 +02002422#ifdef USE_THREAD
Willy Tarreau8323a372019-05-20 18:57:53 +02002423 pthread_getcpuclockid(pthread_self(), &ti->clock_id);
Willy Tarreau624dcbf2019-05-20 20:23:06 +02002424#else
Willy Tarreau8323a372019-05-20 18:57:53 +02002425 ti->clock_id = CLOCK_THREAD_CPUTIME_ID;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002426#endif
Willy Tarreau663fda42019-05-21 15:14:08 +02002427#endif
Willy Tarreau6ec902a2019-06-07 14:41:11 +02002428 /* Now, initialize one thread init at a time. This is better since
2429 * some init code is a bit tricky and may release global resources
2430 * after reallocating them locally. This will also ensure there is
2431 * no race on file descriptors allocation.
2432 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02002433#ifdef USE_THREAD
2434 pthread_mutex_lock(&init_mutex);
2435#endif
2436 /* The first thread must set the number of threads left */
2437 if (!init_left)
2438 init_left = global.nbthread;
2439 init_left--;
Willy Tarreau91e6df02019-05-03 17:21:18 +02002440
Christopher Faulet1d17c102017-08-29 15:38:48 +02002441 tv_update_date(-1,-1);
2442
Willy Tarreau082b6282019-05-22 14:42:12 +02002443 /* per-thread alloc calls performed here are not allowed to snoop on
2444 * other threads, so they are free to initialize at their own rhythm
2445 * as long as they act as if they were alone. None of them may rely
2446 * on resources initialized by the other ones.
2447 */
2448 list_for_each_entry(ptaf, &per_thread_alloc_list, list) {
2449 if (!ptaf->fct()) {
2450 ha_alert("failed to allocate resources for thread %u.\n", tid);
2451 exit(1);
2452 }
2453 }
2454
Willy Tarreau3078e9f2019-05-20 10:50:43 +02002455 /* per-thread init calls performed here are not allowed to snoop on
2456 * other threads, so they are free to initialize at their own rhythm
2457 * as long as they act as if they were alone.
2458 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02002459 list_for_each_entry(ptif, &per_thread_init_list, list) {
2460 if (!ptif->fct()) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002461 ha_alert("failed to initialize thread %u.\n", tid);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002462 exit(1);
2463 }
2464 }
2465
Willy Tarreau71092822019-06-10 09:51:04 +02002466 /* enabling protocols will result in fd_insert() calls to be performed,
2467 * we want all threads to have already allocated their local fd tables
Willy Tarreau34a150c2019-06-11 09:16:41 +02002468 * before doing so, thus only the last thread does it.
Willy Tarreau71092822019-06-10 09:51:04 +02002469 */
Willy Tarreau34a150c2019-06-11 09:16:41 +02002470 if (init_left == 0)
Willy Tarreaue4d7c9d2019-06-10 10:14:52 +02002471 protocol_enable_all();
Willy Tarreau6ec902a2019-06-07 14:41:11 +02002472
Willy Tarreau34a150c2019-06-11 09:16:41 +02002473#ifdef USE_THREAD
2474 pthread_cond_broadcast(&init_cond);
2475 pthread_mutex_unlock(&init_mutex);
2476
2477 /* now wait for other threads to finish starting */
2478 pthread_mutex_lock(&init_mutex);
2479 while (init_left)
2480 pthread_cond_wait(&init_cond, &init_mutex);
2481 pthread_mutex_unlock(&init_mutex);
2482#endif
Willy Tarreau3078e9f2019-05-20 10:50:43 +02002483
Willy Tarreaua45a8b52019-12-06 16:31:45 +01002484#if defined(PR_SET_NO_NEW_PRIVS) && defined(USE_PRCTL)
2485 /* Let's refrain from using setuid executables. This way the impact of
2486 * an eventual vulnerability in a library remains limited. It may
2487 * impact external checks but who cares about them anyway ? In the
2488 * worst case it's possible to disable the option. Obviously we do this
2489 * in workers only. We can't hard-fail on this one as it really is
2490 * implementation dependent though we're interested in feedback, hence
2491 * the warning.
2492 */
2493 if (!(global.tune.options & GTUNE_INSECURE_SETUID) && !master) {
2494 static int warn_fail;
2495 if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
2496 ha_warning("Failed to disable setuid, please report to developers with detailed "
2497 "information about your operating system. You can silence this warning "
2498 "by adding 'insecure-setuid-wanted' in the 'global' section.\n");
2499 }
2500 }
2501#endif
2502
Willy Tarreaud96f1122019-12-03 07:07:36 +01002503#if defined(RLIMIT_NPROC)
2504 /* all threads have started, it's now time to prevent any new thread
2505 * or process from starting. Obviously we do this in workers only. We
2506 * can't hard-fail on this one as it really is implementation dependent
2507 * though we're interested in feedback, hence the warning.
2508 */
2509 if (!(global.tune.options & GTUNE_INSECURE_FORK) && !master) {
2510 struct rlimit limit = { .rlim_cur = 0, .rlim_max = 0 };
2511 static int warn_fail;
2512
2513 if (setrlimit(RLIMIT_NPROC, &limit) == -1 && !_HA_ATOMIC_XADD(&warn_fail, 1)) {
2514 ha_warning("Failed to disable forks, please report to developers with detailed "
2515 "information about your operating system. You can silence this warning "
2516 "by adding 'insecure-fork-wanted' in the 'global' section.\n");
2517 }
2518 }
2519#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02002520 run_poll_loop();
2521
2522 list_for_each_entry(ptdf, &per_thread_deinit_list, list)
2523 ptdf->fct();
2524
Willy Tarreau082b6282019-05-22 14:42:12 +02002525 list_for_each_entry(ptff, &per_thread_free_list, list)
2526 ptff->fct();
2527
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002528#ifdef USE_THREAD
Olivier Houchardb23a61f2019-03-08 18:51:17 +01002529 _HA_ATOMIC_AND(&all_threads_mask, ~tid_bit);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002530 if (tid > 0)
2531 pthread_exit(NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02002532#endif
Christopher Fauletcd7879a2017-10-27 13:53:47 +02002533 return NULL;
2534}
Christopher Faulet1d17c102017-08-29 15:38:48 +02002535
William Dauchyf9af9d72019-11-17 15:47:16 +01002536/* set uid/gid depending on global settings */
2537static void set_identity(const char *program_name)
2538{
2539 if (global.gid) {
2540 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
2541 ha_warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
2542 " without 'uid'/'user' is generally useless.\n", program_name);
2543
2544 if (setgid(global.gid) == -1) {
2545 ha_alert("[%s.main()] Cannot set gid %d.\n", program_name, global.gid);
2546 protocol_unbind_all();
2547 exit(1);
2548 }
2549 }
2550
2551 if (global.uid && setuid(global.uid) == -1) {
2552 ha_alert("[%s.main()] Cannot set uid %d.\n", program_name, global.uid);
2553 protocol_unbind_all();
2554 exit(1);
2555 }
2556}
2557
Willy Tarreaubaaee002006-06-26 02:48:02 +02002558int main(int argc, char **argv)
2559{
2560 int err, retry;
2561 struct rlimit limit;
Willy Tarreau269ab312012-09-05 08:02:48 +02002562 int pidfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002563
Olivier Houchard5fa300d2018-02-03 15:15:21 +01002564 setvbuf(stdout, NULL, _IONBF, 0);
Willy Tarreau5794fb02018-11-25 18:43:29 +01002565
Willy Tarreauff9c9142019-02-07 10:39:36 +01002566 /* this can only safely be done here, though it's optimized away by
2567 * the compiler.
2568 */
2569 if (MAX_PROCS < 1 || MAX_PROCS > LONGBITS) {
2570 ha_alert("MAX_PROCS value must be between 1 and %d inclusive; "
2571 "HAProxy was built with value %d, please fix it and rebuild.\n",
2572 LONGBITS, MAX_PROCS);
2573 exit(1);
2574 }
2575
Willy Tarreaubf696402019-03-01 10:09:28 +01002576 /* take a copy of initial limits before we possibly change them */
2577 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau2bd0f812020-10-13 15:36:08 +02002578
2579 if (limit.rlim_max == RLIM_INFINITY)
2580 limit.rlim_max = limit.rlim_cur;
Willy Tarreaubf696402019-03-01 10:09:28 +01002581 rlim_fd_cur_at_boot = limit.rlim_cur;
2582 rlim_fd_max_at_boot = limit.rlim_max;
2583
Willy Tarreau5794fb02018-11-25 18:43:29 +01002584 /* process all initcalls in order of potential dependency */
2585 RUN_INITCALLS(STG_PREPARE);
2586 RUN_INITCALLS(STG_LOCK);
2587 RUN_INITCALLS(STG_ALLOC);
2588 RUN_INITCALLS(STG_POOL);
2589 RUN_INITCALLS(STG_REGISTER);
2590 RUN_INITCALLS(STG_INIT);
2591
Emeric Bruncf20bf12010-10-22 16:06:11 +02002592 init(argc, argv);
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002593 signal_register_fct(SIGQUIT, dump, SIGQUIT);
2594 signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1);
2595 signal_register_fct(SIGHUP, sig_dump_state, SIGHUP);
William Lallemand73b85e72017-06-01 17:38:51 +02002596 signal_register_fct(SIGUSR2, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002597
Willy Tarreaue437c442010-03-17 18:02:46 +01002598 /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL.
2599 * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL
2600 * was defined there, so let's stay on the safe side.
Willy Tarreaubaaee002006-06-26 02:48:02 +02002601 */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002602 signal_register_fct(SIGPIPE, NULL, 0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002603
Willy Tarreaudc23a922011-02-16 11:10:36 +01002604 /* ulimits */
2605 if (!global.rlimit_nofile)
2606 global.rlimit_nofile = global.maxsock;
2607
2608 if (global.rlimit_nofile) {
Willy Tarreaue5cfdac2019-03-01 10:32:05 +01002609 limit.rlim_cur = global.rlimit_nofile;
2610 limit.rlim_max = MAX(rlim_fd_max_at_boot, limit.rlim_cur);
2611
Willy Tarreaudc23a922011-02-16 11:10:36 +01002612 if (setrlimit(RLIMIT_NOFILE, &limit) == -1) {
Willy Tarreauef635472016-06-21 11:48:18 +02002613 getrlimit(RLIMIT_NOFILE, &limit);
William Dauchy0fec3ab2019-10-27 20:08:11 +01002614 if (global.tune.options & GTUNE_STRICT_LIMITS) {
2615 ha_alert("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n",
2616 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
Jerome Magnin50f757c2021-01-12 20:19:38 +01002617 exit(1);
William Dauchy0fec3ab2019-10-27 20:08:11 +01002618 }
2619 else {
2620 /* try to set it to the max possible at least */
2621 limit.rlim_cur = limit.rlim_max;
2622 if (setrlimit(RLIMIT_NOFILE, &limit) != -1)
2623 getrlimit(RLIMIT_NOFILE, &limit);
Willy Tarreau164dd0b2016-06-21 11:51:59 +02002624
William Dauchya5194602020-03-28 19:29:58 +01002625 ha_warning("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n",
William Dauchy0fec3ab2019-10-27 20:08:11 +01002626 argv[0], global.rlimit_nofile, (int)limit.rlim_cur);
2627 global.rlimit_nofile = limit.rlim_cur;
2628 }
Willy Tarreaudc23a922011-02-16 11:10:36 +01002629 }
2630 }
2631
2632 if (global.rlimit_memmax) {
2633 limit.rlim_cur = limit.rlim_max =
Willy Tarreau70060452015-12-14 12:46:07 +01002634 global.rlimit_memmax * 1048576ULL;
Willy Tarreaudc23a922011-02-16 11:10:36 +01002635#ifdef RLIMIT_AS
2636 if (setrlimit(RLIMIT_AS, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01002637 if (global.tune.options & GTUNE_STRICT_LIMITS) {
2638 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2639 argv[0], global.rlimit_memmax);
Jerome Magnin50f757c2021-01-12 20:19:38 +01002640 exit(1);
William Dauchy0fec3ab2019-10-27 20:08:11 +01002641 }
2642 else
William Dauchya5194602020-03-28 19:29:58 +01002643 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
William Dauchy0fec3ab2019-10-27 20:08:11 +01002644 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01002645 }
2646#else
2647 if (setrlimit(RLIMIT_DATA, &limit) == -1) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01002648 if (global.tune.options & GTUNE_STRICT_LIMITS) {
2649 ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n",
2650 argv[0], global.rlimit_memmax);
Jerome Magnin50f757c2021-01-12 20:19:38 +01002651 exit(1);
William Dauchy0fec3ab2019-10-27 20:08:11 +01002652 }
2653 else
William Dauchya5194602020-03-28 19:29:58 +01002654 ha_warning("[%s.main()] Cannot fix MEM limit to %d megs.\n",
William Dauchy0fec3ab2019-10-27 20:08:11 +01002655 argv[0], global.rlimit_memmax);
Willy Tarreaudc23a922011-02-16 11:10:36 +01002656 }
2657#endif
2658 }
2659
Olivier Houchardf73629d2017-04-05 22:33:04 +02002660 if (old_unixsocket) {
William Lallemand85b0bd92017-06-01 17:38:53 +02002661 if (strcmp("/dev/null", old_unixsocket) != 0) {
Willy Tarreau42961742020-08-28 18:42:45 +02002662 if (sock_get_old_sockets(old_unixsocket) != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002663 ha_alert("Failed to get the sockets from the old process!\n");
William Lallemand85b0bd92017-06-01 17:38:53 +02002664 if (!(global.mode & MODE_MWORKER))
2665 exit(1);
2666 }
Olivier Houchardf73629d2017-04-05 22:33:04 +02002667 }
2668 }
William Lallemand85b0bd92017-06-01 17:38:53 +02002669 get_cur_unixsocket();
2670
Willy Tarreaubaaee002006-06-26 02:48:02 +02002671 /* We will loop at most 100 times with 10 ms delay each time.
2672 * That's at most 1 second. We only send a signal to old pids
2673 * if we cannot grab at least one port.
2674 */
2675 retry = MAX_START_RETRIES;
2676 err = ERR_NONE;
2677 while (retry >= 0) {
2678 struct timeval w;
Willy Tarreaue91bff22020-09-02 11:11:43 +02002679 err = protocol_bind_all(retry == 0 || nb_oldpids == 0);
Willy Tarreaue13e9252007-12-20 23:05:50 +01002680 /* exit the loop on no error or fatal error */
2681 if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002682 break;
Willy Tarreaubb545b42010-08-25 12:58:59 +02002683 if (nb_oldpids == 0 || retry == 0)
Willy Tarreaubaaee002006-06-26 02:48:02 +02002684 break;
2685
2686 /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on
2687 * listening sockets. So on those platforms, it would be wiser to
2688 * simply send SIGUSR1, which will not be undoable.
2689 */
Willy Tarreaubb545b42010-08-25 12:58:59 +02002690 if (tell_old_pids(SIGTTOU) == 0) {
2691 /* no need to wait if we can't contact old pids */
2692 retry = 0;
2693 continue;
2694 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002695 /* give some time to old processes to stop listening */
2696 w.tv_sec = 0;
2697 w.tv_usec = 10*1000;
2698 select(0, NULL, NULL, NULL, &w);
2699 retry--;
2700 }
2701
Willy Tarreaue91bff22020-09-02 11:11:43 +02002702 /* Note: protocol_bind_all() sends an alert when it fails. */
Willy Tarreau0a3b9d92009-02-04 17:05:23 +01002703 if ((err & ~ERR_WARN) != ERR_NONE) {
Willy Tarreaue91bff22020-09-02 11:11:43 +02002704 ha_alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]);
Willy Tarreauf68da462009-06-09 14:36:00 +02002705 if (retry != MAX_START_RETRIES && nb_oldpids) {
2706 protocol_unbind_all(); /* cleanup everything we can */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002707 tell_old_pids(SIGTTIN);
Willy Tarreauf68da462009-06-09 14:36:00 +02002708 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002709 exit(1);
2710 }
2711
William Lallemand944e6192018-11-21 15:48:31 +01002712 if (!(global.mode & MODE_MWORKER_WAIT) && listeners == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002713 ha_alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002714 /* Note: we don't have to send anything to the old pids because we
2715 * never stopped them. */
2716 exit(1);
2717 }
2718
Willy Tarreaue91bff22020-09-02 11:11:43 +02002719 /* Ok, all listeners should now be bound, close any leftover sockets
Olivier Houchardf73629d2017-04-05 22:33:04 +02002720 * the previous process gave us, we don't need them anymore
2721 */
2722 while (xfer_sock_list != NULL) {
2723 struct xfer_sock_list *tmpxfer = xfer_sock_list->next;
2724 close(xfer_sock_list->fd);
2725 free(xfer_sock_list->iface);
2726 free(xfer_sock_list->namespace);
2727 free(xfer_sock_list);
2728 xfer_sock_list = tmpxfer;
2729 }
Willy Tarreaudd815982007-10-16 12:25:14 +02002730
Willy Tarreaubaaee002006-06-26 02:48:02 +02002731 /* prepare pause/play signals */
Willy Tarreau24f4efa2010-08-27 17:56:48 +02002732 signal_register_fct(SIGTTOU, sig_pause, SIGTTOU);
2733 signal_register_fct(SIGTTIN, sig_listen, SIGTTIN);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002734
Willy Tarreaubaaee002006-06-26 02:48:02 +02002735 /* MODE_QUIET can inhibit alerts and warnings below this line */
2736
PiBa-NL149a81a2017-12-25 21:03:31 +01002737 if (getenv("HAPROXY_MWORKER_REEXEC") != NULL) {
2738 /* either stdin/out/err are already closed or should stay as they are. */
2739 if ((global.mode & MODE_DAEMON)) {
2740 /* daemon mode re-executing, stdin/stdout/stderr are already closed so keep quiet */
2741 global.mode &= ~MODE_VERBOSE;
2742 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
2743 }
2744 } else {
2745 if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) {
2746 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01002747 stdio_quiet(-1);
PiBa-NL149a81a2017-12-25 21:03:31 +01002748 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002749 }
2750
2751 /* open log & pid files before the chroot */
William Lallemand80293002017-11-06 11:00:03 +01002752 if ((global.mode & MODE_DAEMON || global.mode & MODE_MWORKER) && global.pidfile != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002753 unlink(global.pidfile);
2754 pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644);
2755 if (pidfd < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002756 ha_alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002757 if (nb_oldpids)
2758 tell_old_pids(SIGTTIN);
Willy Tarreaudd815982007-10-16 12:25:14 +02002759 protocol_unbind_all();
Willy Tarreaubaaee002006-06-26 02:48:02 +02002760 exit(1);
2761 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002762 }
2763
Willy Tarreaub38651a2007-03-24 17:24:39 +01002764 if ((global.last_checks & LSTCHK_NETADM) && global.uid) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002765 ha_alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n"
2766 "", argv[0]);
Willy Tarreaudd815982007-10-16 12:25:14 +02002767 protocol_unbind_all();
Willy Tarreaub38651a2007-03-24 17:24:39 +01002768 exit(1);
2769 }
2770
Jackie Tapia749f74c2020-07-22 18:59:40 -05002771 /* If the user is not root, we'll still let them try the configuration
2772 * but we inform them that unexpected behaviour may occur.
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002773 */
2774 if ((global.last_checks & LSTCHK_NETADM) && getuid())
Christopher Faulet767a84b2017-11-24 16:50:31 +01002775 ha_warning("[%s.main()] Some options which require full privileges"
2776 " might not work well.\n"
2777 "", argv[0]);
Willy Tarreau4e30ed72009-02-04 18:02:48 +01002778
William Lallemand095ba4c2017-06-01 17:38:50 +02002779 if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) {
2780
2781 /* chroot if needed */
2782 if (global.chroot != NULL) {
2783 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002784 ha_alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02002785 if (nb_oldpids)
2786 tell_old_pids(SIGTTIN);
2787 protocol_unbind_all();
2788 exit(1);
2789 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02002790 }
Willy Tarreauf223cc02007-10-15 18:57:08 +02002791 }
2792
William Lallemand944e6192018-11-21 15:48:31 +01002793 if (nb_oldpids && !(global.mode & MODE_MWORKER_WAIT))
Willy Tarreaubb545b42010-08-25 12:58:59 +02002794 nb_oldpids = tell_old_pids(oldpids_sig);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002795
William Lallemand27edc4b2019-05-07 17:49:33 +02002796 /* send a SIGTERM to workers who have a too high reloads number */
2797 if ((global.mode & MODE_MWORKER) && !(global.mode & MODE_MWORKER_WAIT))
2798 mworker_kill_max_reloads(SIGTERM);
2799
William Lallemand8a361b52017-06-20 11:20:33 +02002800 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) {
2801 nb_oldpids = 0;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002802 ha_free(&oldpids);
William Lallemand8a361b52017-06-20 11:20:33 +02002803 }
2804
2805
Willy Tarreaubaaee002006-06-26 02:48:02 +02002806 /* Note that any error at this stage will be fatal because we will not
2807 * be able to restart the old pids.
2808 */
2809
William Dauchyf9af9d72019-11-17 15:47:16 +01002810 if ((global.mode & (MODE_MWORKER | MODE_DAEMON)) == 0)
2811 set_identity(argv[0]);
Willy Tarreau636848a2019-04-15 19:38:50 +02002812
Willy Tarreaubaaee002006-06-26 02:48:02 +02002813 /* check ulimits */
2814 limit.rlim_cur = limit.rlim_max = 0;
2815 getrlimit(RLIMIT_NOFILE, &limit);
2816 if (limit.rlim_cur < global.maxsock) {
William Dauchy0fec3ab2019-10-27 20:08:11 +01002817 if (global.tune.options & GTUNE_STRICT_LIMITS) {
2818 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
2819 "Please raise 'ulimit-n' to %d or more to avoid any trouble.\n",
2820 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
2821 global.maxsock);
Jerome Magnin50f757c2021-01-12 20:19:38 +01002822 exit(1);
William Dauchy0fec3ab2019-10-27 20:08:11 +01002823 }
2824 else
2825 ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. "
William Dauchya5194602020-03-28 19:29:58 +01002826 "Please raise 'ulimit-n' to %d or more to avoid any trouble.\n",
William Dauchy0fec3ab2019-10-27 20:08:11 +01002827 argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock,
2828 global.maxsock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002829 }
2830
William Lallemand944e6192018-11-21 15:48:31 +01002831 if (global.mode & (MODE_DAEMON | MODE_MWORKER | MODE_MWORKER_WAIT)) {
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01002832 struct proxy *px;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02002833 struct peers *curpeers;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002834 int ret = 0;
2835 int proc;
William Lallemande1340412017-12-28 16:09:36 +01002836 int devnullfd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002837
William Lallemand095ba4c2017-06-01 17:38:50 +02002838 /*
2839 * if daemon + mworker: must fork here to let a master
2840 * process live in background before forking children
2841 */
William Lallemand73b85e72017-06-01 17:38:51 +02002842
2843 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)
2844 && (global.mode & MODE_MWORKER)
2845 && (global.mode & MODE_DAEMON)) {
William Lallemand095ba4c2017-06-01 17:38:50 +02002846 ret = fork();
2847 if (ret < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002848 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02002849 protocol_unbind_all();
2850 exit(1); /* there has been an error */
William Lallemandbfd8eb52018-07-04 15:31:23 +02002851 } else if (ret > 0) { /* parent leave to daemonize */
William Lallemand095ba4c2017-06-01 17:38:50 +02002852 exit(0);
William Lallemandbfd8eb52018-07-04 15:31:23 +02002853 } else /* change the process group ID in the child (master process) */
2854 setsid();
William Lallemand095ba4c2017-06-01 17:38:50 +02002855 }
William Lallemande20b6a62017-06-01 17:38:55 +02002856
William Lallemande20b6a62017-06-01 17:38:55 +02002857
William Lallemanddeed7802017-11-06 11:00:04 +01002858 /* if in master-worker mode, write the PID of the father */
2859 if (global.mode & MODE_MWORKER) {
2860 char pidstr[100];
Willy Tarreau76a80c72019-06-22 07:41:38 +02002861 snprintf(pidstr, sizeof(pidstr), "%d\n", (int)getpid());
Willy Tarreau46ec48b2018-01-23 19:20:19 +01002862 if (pidfd >= 0)
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01002863 DISGUISE(write(pidfd, pidstr, strlen(pidstr)));
William Lallemanddeed7802017-11-06 11:00:04 +01002864 }
2865
Willy Tarreaubaaee002006-06-26 02:48:02 +02002866 /* the father launches the required number of processes */
William Lallemand944e6192018-11-21 15:48:31 +01002867 if (!(global.mode & MODE_MWORKER_WAIT)) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +02002868 if (global.mode & MODE_MWORKER)
2869 mworker_ext_launch_all();
William Lallemand944e6192018-11-21 15:48:31 +01002870 for (proc = 0; proc < global.nbproc; proc++) {
2871 ret = fork();
2872 if (ret < 0) {
2873 ha_alert("[%s.main()] Cannot fork.\n", argv[0]);
2874 protocol_unbind_all();
2875 exit(1); /* there has been an error */
2876 }
Willy Tarreau52bf8392020-03-08 00:42:37 +01002877 else if (ret == 0) { /* child breaks here */
2878 ha_random_jump96(relative_pid);
William Lallemand944e6192018-11-21 15:48:31 +01002879 break;
Willy Tarreau52bf8392020-03-08 00:42:37 +01002880 }
William Lallemand944e6192018-11-21 15:48:31 +01002881 if (pidfd >= 0 && !(global.mode & MODE_MWORKER)) {
2882 char pidstr[100];
2883 snprintf(pidstr, sizeof(pidstr), "%d\n", ret);
Willy Tarreau2e8ab6b2020-03-14 11:03:20 +01002884 DISGUISE(write(pidfd, pidstr, strlen(pidstr)));
William Lallemand944e6192018-11-21 15:48:31 +01002885 }
2886 if (global.mode & MODE_MWORKER) {
2887 struct mworker_proc *child;
William Lallemandce83b4a2018-10-26 14:47:30 +02002888
William Lallemand220567e2018-11-21 18:04:53 +01002889 ha_notice("New worker #%d (%d) forked\n", relative_pid, ret);
William Lallemand944e6192018-11-21 15:48:31 +01002890 /* find the right mworker_proc */
2891 list_for_each_entry(child, &proc_list, list) {
2892 if (child->relative_pid == relative_pid &&
William Lallemand8f7069a2019-04-12 16:09:23 +02002893 child->reloads == 0 && child->options & PROC_O_TYPE_WORKER) {
William Lallemand944e6192018-11-21 15:48:31 +01002894 child->timestamp = now.tv_sec;
2895 child->pid = ret;
William Lallemand1dc69632019-06-12 19:11:33 +02002896 child->version = strdup(haproxy_version);
William Lallemand944e6192018-11-21 15:48:31 +01002897 break;
2898 }
William Lallemandce83b4a2018-10-26 14:47:30 +02002899 }
2900 }
William Lallemandbc193052018-09-11 10:06:26 +02002901
William Lallemand944e6192018-11-21 15:48:31 +01002902 relative_pid++; /* each child will get a different one */
2903 pid_bit <<= 1;
2904 }
2905 } else {
2906 /* wait mode */
2907 global.nbproc = 1;
2908 proc = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002909 }
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002910
2911#ifdef USE_CPU_AFFINITY
2912 if (proc < global.nbproc && /* child */
Willy Tarreauff9c9142019-02-07 10:39:36 +01002913 proc < MAX_PROCS && /* only the first 32/64 processes may be pinned */
Christopher Fauletcb6a9452017-11-22 16:50:41 +01002914 global.cpu_map.proc[proc]) /* only do this if the process has a CPU map */
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002915#ifdef __FreeBSD__
Olivier Houchard97148f62017-08-16 17:29:11 +02002916 {
2917 cpuset_t cpuset;
2918 int i;
Christopher Fauletcb6a9452017-11-22 16:50:41 +01002919 unsigned long cpu_map = global.cpu_map.proc[proc];
Olivier Houchard97148f62017-08-16 17:29:11 +02002920
2921 CPU_ZERO(&cpuset);
2922 while ((i = ffsl(cpu_map)) > 0) {
2923 CPU_SET(i - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01002924 cpu_map &= ~(1UL << (i - 1));
Olivier Houchard97148f62017-08-16 17:29:11 +02002925 }
2926 ret = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(cpuset), &cpuset);
2927 }
David Carlier2d0493a2020-12-02 21:14:51 +00002928#elif defined(__linux__) || defined(__DragonFly__)
Christopher Fauletcb6a9452017-11-22 16:50:41 +01002929 sched_setaffinity(0, sizeof(unsigned long), (void *)&global.cpu_map.proc[proc]);
Willy Tarreaufc6c0322012-11-16 16:12:27 +01002930#endif
Pieter Baauwcaa6a1b2015-09-17 21:26:40 +02002931#endif
Willy Tarreaubaaee002006-06-26 02:48:02 +02002932 /* close the pidfile both in children and father */
Willy Tarreau269ab312012-09-05 08:02:48 +02002933 if (pidfd >= 0) {
2934 //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */
2935 close(pidfd);
2936 }
Willy Tarreaud137dd32010-08-25 12:49:05 +02002937
2938 /* We won't ever use this anymore */
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002939 ha_free(&global.pidfile);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002940
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002941 if (proc == global.nbproc) {
William Lallemand944e6192018-11-21 15:48:31 +01002942 if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) {
PiBa-NLbaf6ea42017-11-28 23:26:08 +01002943
2944 if ((!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) &&
2945 (global.mode & MODE_DAEMON)) {
2946 /* detach from the tty, this is required to properly daemonize. */
William Lallemande1340412017-12-28 16:09:36 +01002947 if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL))
2948 stdio_quiet(-1);
2949
PiBa-NLbaf6ea42017-11-28 23:26:08 +01002950 global.mode &= ~MODE_VERBOSE;
2951 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
PiBa-NLbaf6ea42017-11-28 23:26:08 +01002952 }
2953
William Lallemandb3f2be32018-09-11 10:06:18 +02002954 mworker_loop();
William Lallemand1499b9b2017-06-07 15:04:47 +02002955 /* should never get there */
2956 exit(EXIT_FAILURE);
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002957 }
William Lallemandcf4e4962017-06-08 19:05:48 +02002958#if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH)
Grant Zhang872f9c22017-01-21 01:10:18 +00002959 ssl_free_dh();
2960#endif
William Lallemand1499b9b2017-06-07 15:04:47 +02002961 exit(0); /* parent must leave */
Willy Tarreauedaff0a2015-05-01 17:01:08 +02002962 }
2963
William Lallemandcb11fd22017-06-01 17:38:52 +02002964 /* child must never use the atexit function */
2965 atexit_flag = 0;
2966
William Lallemandbc193052018-09-11 10:06:26 +02002967 /* close useless master sockets */
2968 if (global.mode & MODE_MWORKER) {
2969 struct mworker_proc *child, *it;
2970 master = 0;
2971
William Lallemand309dc9a2018-10-26 14:47:45 +02002972 mworker_cli_proxy_stop();
2973
William Lallemandbc193052018-09-11 10:06:26 +02002974 /* free proc struct of other processes */
2975 list_for_each_entry_safe(child, it, &proc_list, list) {
William Lallemandce83b4a2018-10-26 14:47:30 +02002976 /* close the FD of the master side for all
2977 * workers, we don't need to close the worker
2978 * side of other workers since it's done with
2979 * the bind_proc */
Tim Duesterhus742e0f92018-11-25 20:03:39 +01002980 if (child->ipc_fd[0] >= 0)
2981 close(child->ipc_fd[0]);
William Lallemandce83b4a2018-10-26 14:47:30 +02002982 if (child->relative_pid == relative_pid &&
2983 child->reloads == 0) {
2984 /* keep this struct if this is our pid */
2985 proc_self = child;
William Lallemandbc193052018-09-11 10:06:26 +02002986 continue;
William Lallemandce83b4a2018-10-26 14:47:30 +02002987 }
William Lallemandbc193052018-09-11 10:06:26 +02002988 LIST_DEL(&child->list);
Tim Duesterhus9b7a9762019-05-16 20:23:22 +02002989 mworker_free_child(child);
2990 child = NULL;
William Lallemandbc193052018-09-11 10:06:26 +02002991 }
2992 }
Willy Tarreau1605c7a2018-01-23 19:01:49 +01002993
William Lallemande1340412017-12-28 16:09:36 +01002994 if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) {
2995 devnullfd = open("/dev/null", O_RDWR, 0);
2996 if (devnullfd < 0) {
2997 ha_alert("Cannot open /dev/null\n");
2998 exit(EXIT_FAILURE);
2999 }
3000 }
3001
William Lallemand095ba4c2017-06-01 17:38:50 +02003002 /* Must chroot and setgid/setuid in the children */
3003 /* chroot if needed */
3004 if (global.chroot != NULL) {
3005 if (chroot(global.chroot) == -1 || chdir("/") == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003006 ha_alert("[%s.main()] Cannot chroot1(%s).\n", argv[0], global.chroot);
William Lallemand095ba4c2017-06-01 17:38:50 +02003007 if (nb_oldpids)
3008 tell_old_pids(SIGTTIN);
3009 protocol_unbind_all();
3010 exit(1);
3011 }
3012 }
3013
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003014 ha_free(&global.chroot);
William Dauchyf9af9d72019-11-17 15:47:16 +01003015 set_identity(argv[0]);
William Lallemand095ba4c2017-06-01 17:38:50 +02003016
William Lallemand7f80eb22017-05-26 18:19:55 +02003017 /* pass through every cli socket, and check if it's bound to
3018 * the current process and if it exposes listeners sockets.
3019 * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork.
3020 * */
3021
Willy Tarreau4975d142021-03-13 11:00:33 +01003022 if (global.cli_fe) {
William Lallemand7f80eb22017-05-26 18:19:55 +02003023 struct bind_conf *bind_conf;
3024
Willy Tarreau4975d142021-03-13 11:00:33 +01003025 list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) {
William Lallemand7f80eb22017-05-26 18:19:55 +02003026 if (bind_conf->level & ACCESS_FD_LISTENERS) {
Willy Tarreaue26993c2020-09-03 07:18:55 +02003027 if (!bind_conf->settings.bind_proc || bind_conf->settings.bind_proc & (1UL << proc)) {
William Lallemand7f80eb22017-05-26 18:19:55 +02003028 global.tune.options |= GTUNE_SOCKET_TRANSFER;
3029 break;
3030 }
3031 }
3032 }
3033 }
3034
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003035 /* we might have to unbind some proxies from some processes */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003036 px = proxies_list;
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003037 while (px != NULL) {
Willy Tarreauc3914d42020-09-24 08:39:22 +02003038 if (px->bind_proc && !px->disabled) {
Willy Tarreau337c8352020-09-24 10:51:29 +02003039 if (!(px->bind_proc & (1UL << proc)))
3040 stop_proxy(px);
Willy Tarreau0b9c02c2009-02-04 22:05:05 +01003041 }
3042 px = px->next;
3043 }
3044
Emeric Brunc47ba592020-10-07 10:13:10 +02003045 /* we might have to unbind some log forward proxies from some processes */
3046 px = cfg_log_forward;
3047 while (px != NULL) {
Willy Tarreauc3914d42020-09-24 08:39:22 +02003048 if (px->bind_proc && !px->disabled) {
Willy Tarreau337c8352020-09-24 10:51:29 +02003049 if (!(px->bind_proc & (1UL << proc)))
3050 stop_proxy(px);
Emeric Brunc47ba592020-10-07 10:13:10 +02003051 }
3052 px = px->next;
3053 }
3054
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003055 /* we might have to unbind some peers sections from some processes */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003056 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003057 if (!curpeers->peers_fe)
3058 continue;
3059
3060 if (curpeers->peers_fe->bind_proc & (1UL << proc))
3061 continue;
3062
3063 stop_proxy(curpeers->peers_fe);
3064 /* disable this peer section so that it kills itself */
Willy Tarreau47c8c022015-09-28 16:39:25 +02003065 signal_unregister_handler(curpeers->sighandler);
Olivier Houchard3f795f72019-04-17 22:51:06 +02003066 task_destroy(curpeers->sync_task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003067 curpeers->sync_task = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +02003068 task_destroy(curpeers->peers_fe->task);
Willy Tarreau47c8c022015-09-28 16:39:25 +02003069 curpeers->peers_fe->task = NULL;
Willy Tarreauf83d3fe2015-05-01 19:13:41 +02003070 curpeers->peers_fe = NULL;
3071 }
3072
William Lallemand2e8fad92018-11-13 16:18:23 +01003073 /*
3074 * This is only done in daemon mode because we might want the
3075 * logs on stdout in mworker mode. If we're NOT in QUIET mode,
3076 * we should now close the 3 first FDs to ensure that we can
3077 * detach from the TTY. We MUST NOT do it in other cases since
3078 * it would have already be done, and 0-2 would have been
3079 * affected to listening sockets
Willy Tarreaubaaee002006-06-26 02:48:02 +02003080 */
William Lallemand2e8fad92018-11-13 16:18:23 +01003081 if ((global.mode & MODE_DAEMON) &&
3082 (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02003083 /* detach from the tty */
William Lallemande1340412017-12-28 16:09:36 +01003084 stdio_quiet(devnullfd);
Willy Tarreau106cb762008-11-16 07:40:34 +01003085 global.mode &= ~MODE_VERBOSE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003086 global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */
3087 }
3088 pid = getpid(); /* update child's pid */
William Lallemandbfd8eb52018-07-04 15:31:23 +02003089 if (!(global.mode & MODE_MWORKER)) /* in mworker mode we don't want a new pgid for the children */
3090 setsid();
Willy Tarreau2ff76222007-04-09 19:29:56 +02003091 fork_poller();
Willy Tarreaubaaee002006-06-26 02:48:02 +02003092 }
3093
William Dauchye039f262019-11-17 15:47:15 +01003094 /* try our best to re-enable core dumps depending on system capabilities.
3095 * What is addressed here :
3096 * - remove file size limits
3097 * - remove core size limits
3098 * - mark the process dumpable again if it lost it due to user/group
3099 */
3100 if (global.tune.options & GTUNE_SET_DUMPABLE) {
3101 limit.rlim_cur = limit.rlim_max = RLIM_INFINITY;
3102
3103#if defined(RLIMIT_FSIZE)
3104 if (setrlimit(RLIMIT_FSIZE, &limit) == -1) {
3105 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3106 ha_alert("[%s.main()] Failed to set the raise the maximum "
3107 "file size.\n", argv[0]);
Jerome Magnin50f757c2021-01-12 20:19:38 +01003108 exit(1);
William Dauchye039f262019-11-17 15:47:15 +01003109 }
3110 else
3111 ha_warning("[%s.main()] Failed to set the raise the maximum "
William Dauchya5194602020-03-28 19:29:58 +01003112 "file size.\n", argv[0]);
William Dauchye039f262019-11-17 15:47:15 +01003113 }
3114#endif
3115
3116#if defined(RLIMIT_CORE)
3117 if (setrlimit(RLIMIT_CORE, &limit) == -1) {
3118 if (global.tune.options & GTUNE_STRICT_LIMITS) {
3119 ha_alert("[%s.main()] Failed to set the raise the core "
3120 "dump size.\n", argv[0]);
Jerome Magnin50f757c2021-01-12 20:19:38 +01003121 exit(1);
William Dauchye039f262019-11-17 15:47:15 +01003122 }
3123 else
3124 ha_warning("[%s.main()] Failed to set the raise the core "
William Dauchya5194602020-03-28 19:29:58 +01003125 "dump size.\n", argv[0]);
William Dauchye039f262019-11-17 15:47:15 +01003126 }
3127#endif
3128
3129#if defined(USE_PRCTL)
3130 if (prctl(PR_SET_DUMPABLE, 1, 0, 0, 0) == -1)
3131 ha_warning("[%s.main()] Failed to set the dumpable flag, "
3132 "no core will be dumped.\n", argv[0]);
3133#endif
3134 }
3135
Christopher Faulete3a5e352017-10-24 13:53:54 +02003136 global.mode &= ~MODE_STARTING;
Willy Tarreau4f60f162007-04-08 16:39:58 +02003137 /*
3138 * That's it : the central polling loop. Run until we stop.
3139 */
Christopher Faulet1d17c102017-08-29 15:38:48 +02003140#ifdef USE_THREAD
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003141 {
William Lallemand1aab50b2018-06-07 09:46:01 +02003142 sigset_t blocked_sig, old_sig;
Willy Tarreauc40efc12019-05-03 09:22:44 +02003143 int i;
3144
William Lallemand1aab50b2018-06-07 09:46:01 +02003145 /* ensure the signals will be blocked in every thread */
3146 sigfillset(&blocked_sig);
3147 sigdelset(&blocked_sig, SIGPROF);
3148 sigdelset(&blocked_sig, SIGBUS);
3149 sigdelset(&blocked_sig, SIGFPE);
3150 sigdelset(&blocked_sig, SIGILL);
3151 sigdelset(&blocked_sig, SIGSEGV);
3152 pthread_sigmask(SIG_SETMASK, &blocked_sig, &old_sig);
3153
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003154 /* Create nbthread-1 thread. The first thread is the current process */
David Carliera92c5ce2019-09-13 05:03:12 +01003155 ha_thread_info[0].pthread = pthread_self();
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003156 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003157 pthread_create(&ha_thread_info[i].pthread, NULL, &run_thread_poll_loop, (void *)(long)i);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003158
Christopher Faulet62519022017-10-16 15:49:32 +02003159#ifdef USE_CPU_AFFINITY
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003160 /* Now the CPU affinity for all threads */
Willy Tarreau7764a572019-07-16 15:10:34 +02003161 if (global.cpu_map.proc_t1[relative_pid-1])
3162 global.cpu_map.thread[0] &= global.cpu_map.proc_t1[relative_pid-1];
3163
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003164 for (i = 0; i < global.nbthread; i++) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +01003165 if (global.cpu_map.proc[relative_pid-1])
Willy Tarreau81492c92019-05-03 09:41:23 +02003166 global.cpu_map.thread[i] &= global.cpu_map.proc[relative_pid-1];
Christopher Faulet62519022017-10-16 15:49:32 +02003167
Willy Tarreau421f02e2018-01-20 18:19:22 +01003168 if (i < MAX_THREADS && /* only the first 32/64 threads may be pinned */
Willy Tarreau81492c92019-05-03 09:41:23 +02003169 global.cpu_map.thread[i]) {/* only do this if the thread has a THREAD map */
David Carlier5e4c8e22019-09-13 05:12:58 +01003170#if defined(__APPLE__)
3171 int j;
3172 unsigned long cpu_map = global.cpu_map.thread[i];
3173
3174 while ((j = ffsl(cpu_map)) > 0) {
3175 thread_affinity_policy_data_t cpu_set = { j - 1 };
3176 thread_port_t mthread = pthread_mach_thread_np(ha_thread_info[i].pthread);
3177 thread_policy_set(mthread, THREAD_AFFINITY_POLICY, (thread_policy_t)&cpu_set, 1);
3178 cpu_map &= ~(1UL << (j - 1));
3179 }
3180#else
Olivier Houchard829aa242017-12-01 18:19:43 +01003181#if defined(__FreeBSD__) || defined(__NetBSD__)
3182 cpuset_t cpuset;
3183#else
3184 cpu_set_t cpuset;
3185#endif
3186 int j;
Willy Tarreau81492c92019-05-03 09:41:23 +02003187 unsigned long cpu_map = global.cpu_map.thread[i];
Olivier Houchard829aa242017-12-01 18:19:43 +01003188
3189 CPU_ZERO(&cpuset);
3190
3191 while ((j = ffsl(cpu_map)) > 0) {
3192 CPU_SET(j - 1, &cpuset);
Cyril Bontéd400ab32018-03-12 21:47:39 +01003193 cpu_map &= ~(1UL << (j - 1));
Olivier Houchard829aa242017-12-01 18:19:43 +01003194 }
David Carliera92c5ce2019-09-13 05:03:12 +01003195 pthread_setaffinity_np(ha_thread_info[i].pthread,
Olivier Houchard829aa242017-12-01 18:19:43 +01003196 sizeof(cpuset), &cpuset);
David Carlier5e4c8e22019-09-13 05:12:58 +01003197#endif
Olivier Houchard829aa242017-12-01 18:19:43 +01003198 }
Christopher Faulet1d17c102017-08-29 15:38:48 +02003199 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003200#endif /* !USE_CPU_AFFINITY */
3201
William Lallemand1aab50b2018-06-07 09:46:01 +02003202 /* when multithreading we need to let only the thread 0 handle the signals */
William Lallemandd3801c12018-09-11 10:06:23 +02003203 haproxy_unblock_signals();
William Lallemand1aab50b2018-06-07 09:46:01 +02003204
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003205 /* Finally, start the poll loop for the first thread */
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003206 run_thread_poll_loop(0);
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003207
3208 /* Wait the end of other threads */
3209 for (i = 1; i < global.nbthread; i++)
David Carliera92c5ce2019-09-13 05:03:12 +01003210 pthread_join(ha_thread_info[i].pthread, NULL);
Christopher Faulet1d17c102017-08-29 15:38:48 +02003211
Christopher Fauletb79a94c2017-05-30 15:34:30 +02003212#if defined(DEBUG_THREAD) || defined(DEBUG_FULL)
3213 show_lock_stats();
3214#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003215 }
Christopher Fauletcd7879a2017-10-27 13:53:47 +02003216#else /* ! USE_THREAD */
William Lallemandd3801c12018-09-11 10:06:23 +02003217 haproxy_unblock_signals();
Willy Tarreaub4f7cc32019-05-03 09:27:30 +02003218 run_thread_poll_loop(0);
Christopher Faulet62519022017-10-16 15:49:32 +02003219#endif
Christopher Faulet1d17c102017-08-29 15:38:48 +02003220
Tim Duesterhus0a3b43d2020-06-14 00:37:42 +02003221 deinit_and_exit(0);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003222}
3223
Willy Tarreaubaaee002006-06-26 02:48:02 +02003224/*
3225 * Local variables:
3226 * c-indent-level: 8
3227 * c-basic-offset: 8
3228 * End:
3229 */