Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
Willy Tarreau | a5357cd | 2021-05-09 06:14:25 +0200 | [diff] [blame] | 2 | * HAProxy : High Availability-enabled HTTP/TCP proxy |
Willy Tarreau | 1e183b8 | 2022-01-07 16:40:23 +0100 | [diff] [blame] | 3 | * Copyright 2000-2022 Willy Tarreau <willy@haproxy.org>. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4 | * |
| 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 Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 10 | * Please refer to RFC7230 - RFC7235 information about HTTP protocol, and |
| 11 | * RFC6265 for information about cookies usage. More generally, the IETF HTTP |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 12 | * 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 Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 26 | */ |
| 27 | |
David Carlier | 7ece096 | 2015-12-08 21:43:09 +0000 | [diff] [blame] | 28 | #define _GNU_SOURCE |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 29 | #include <stdio.h> |
| 30 | #include <stdlib.h> |
| 31 | #include <unistd.h> |
| 32 | #include <string.h> |
| 33 | #include <ctype.h> |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 34 | #include <dirent.h> |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 35 | #include <sys/stat.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 36 | #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 Duesterhus | dfad6a4 | 2020-04-18 16:02:47 +0200 | [diff] [blame] | 48 | #include <sys/utsname.h> |
Marc-Antoine Perennou | 992709b | 2013-02-12 10:53:52 +0100 | [diff] [blame] | 49 | #include <sys/wait.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 50 | #include <time.h> |
| 51 | #include <syslog.h> |
Michael Scherer | ab012dd | 2013-01-12 18:35:19 +0100 | [diff] [blame] | 52 | #include <grp.h> |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 53 | #ifdef USE_CPU_AFFINITY |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 54 | #include <sched.h> |
David Carlier | 42d9e5a | 2018-11-12 16:22:19 +0000 | [diff] [blame] | 55 | #if defined(__FreeBSD__) || defined(__DragonFly__) |
Pieter Baauw | caa6a1b | 2015-09-17 21:26:40 +0200 | [diff] [blame] | 56 | #include <sys/param.h> |
David Carlier | 42d9e5a | 2018-11-12 16:22:19 +0000 | [diff] [blame] | 57 | #ifdef __FreeBSD__ |
Pieter Baauw | caa6a1b | 2015-09-17 21:26:40 +0200 | [diff] [blame] | 58 | #include <sys/cpuset.h> |
David Carlier | 42d9e5a | 2018-11-12 16:22:19 +0000 | [diff] [blame] | 59 | #endif |
David Carlier | 6d5c841 | 2017-11-29 11:02:32 +0000 | [diff] [blame] | 60 | #include <pthread_np.h> |
Pieter Baauw | caa6a1b | 2015-09-17 21:26:40 +0200 | [diff] [blame] | 61 | #endif |
David Carlier | 5e4c8e2 | 2019-09-13 05:12:58 +0100 | [diff] [blame] | 62 | #ifdef __APPLE__ |
| 63 | #include <mach/mach_types.h> |
| 64 | #include <mach/thread_act.h> |
| 65 | #include <mach/thread_policy.h> |
| 66 | #endif |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 67 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 68 | |
Willy Tarreau | 636848a | 2019-04-15 19:38:50 +0200 | [diff] [blame] | 69 | #if defined(USE_PRCTL) |
| 70 | #include <sys/prctl.h> |
| 71 | #endif |
| 72 | |
devnexen@gmail.com | 078062b | 2021-08-21 09:13:10 +0100 | [diff] [blame] | 73 | #if defined(USE_PROCCTL) |
| 74 | #include <sys/procctl.h> |
| 75 | #endif |
| 76 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 77 | #ifdef DEBUG_FULL |
| 78 | #include <assert.h> |
| 79 | #endif |
Tim Duesterhus | d6942c8 | 2017-11-20 15:58:35 +0100 | [diff] [blame] | 80 | #if defined(USE_SYSTEMD) |
| 81 | #include <systemd/sd-daemon.h> |
| 82 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 83 | |
Willy Tarreau | 6c3a681 | 2020-03-06 18:57:15 +0100 | [diff] [blame] | 84 | #include <import/sha1.h> |
| 85 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 86 | #include <haproxy/acl.h> |
Amaury Denoyelle | 68fd7e4 | 2021-03-25 17:15:52 +0100 | [diff] [blame] | 87 | #include <haproxy/action.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 88 | #include <haproxy/activity.h> |
| 89 | #include <haproxy/api.h> |
| 90 | #include <haproxy/arg.h> |
| 91 | #include <haproxy/auth.h> |
Willy Tarreau | 8d36697 | 2020-05-27 16:10:29 +0200 | [diff] [blame] | 92 | #include <haproxy/base64.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 93 | #include <haproxy/capture-t.h> |
Amaury Denoyelle | 5a6926d | 2021-03-30 17:34:24 +0200 | [diff] [blame] | 94 | #include <haproxy/cfgdiag.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 95 | #include <haproxy/cfgparse.h> |
Willy Tarreau | c13ed53 | 2020-06-02 10:22:45 +0200 | [diff] [blame] | 96 | #include <haproxy/chunk.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 97 | #include <haproxy/cli.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 98 | #include <haproxy/connection.h> |
Amaury Denoyelle | a6f9c5d | 2021-04-23 16:58:08 +0200 | [diff] [blame] | 99 | #ifdef USE_CPU_AFFINITY |
Amaury Denoyelle | 982fb53 | 2021-04-21 18:39:58 +0200 | [diff] [blame] | 100 | #include <haproxy/cpuset.h> |
Amaury Denoyelle | a6f9c5d | 2021-04-23 16:58:08 +0200 | [diff] [blame] | 101 | #endif |
Willy Tarreau | eb92deb | 2020-06-04 10:53:16 +0200 | [diff] [blame] | 102 | #include <haproxy/dns.h> |
Willy Tarreau | 2741c8c | 2020-06-02 11:28:02 +0200 | [diff] [blame] | 103 | #include <haproxy/dynbuf.h> |
Willy Tarreau | 8d36697 | 2020-05-27 16:10:29 +0200 | [diff] [blame] | 104 | #include <haproxy/errors.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 105 | #include <haproxy/fd.h> |
Willy Tarreau | c7babd8 | 2020-06-04 21:29:29 +0200 | [diff] [blame] | 106 | #include <haproxy/filters.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 107 | #include <haproxy/global.h> |
Willy Tarreau | 8641605 | 2020-06-04 09:20:54 +0200 | [diff] [blame] | 108 | #include <haproxy/hlua.h> |
Willy Tarreau | c761f84 | 2020-06-04 11:40:28 +0200 | [diff] [blame] | 109 | #include <haproxy/http_rules.h> |
Willy Tarreau | 853b297 | 2020-05-27 18:01:47 +0200 | [diff] [blame] | 110 | #include <haproxy/list.h> |
Willy Tarreau | 213e990 | 2020-06-04 14:58:24 +0200 | [diff] [blame] | 111 | #include <haproxy/listener.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 112 | #include <haproxy/log.h> |
Willy Tarreau | b5abe5b | 2020-06-04 14:07:37 +0200 | [diff] [blame] | 113 | #include <haproxy/mworker.h> |
Willy Tarreau | 7a00efb | 2020-06-02 17:02:59 +0200 | [diff] [blame] | 114 | #include <haproxy/namespace.h> |
Willy Tarreau | 6131d6a | 2020-06-02 16:48:09 +0200 | [diff] [blame] | 115 | #include <haproxy/net_helper.h> |
Willy Tarreau | 6019fab | 2020-05-27 16:26:00 +0200 | [diff] [blame] | 116 | #include <haproxy/openssl-compat.h> |
Willy Tarreau | 225a90a | 2020-06-04 15:06:28 +0200 | [diff] [blame] | 117 | #include <haproxy/pattern.h> |
Willy Tarreau | 3c2a7c2 | 2020-06-04 18:38:21 +0200 | [diff] [blame] | 118 | #include <haproxy/peers.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 119 | #include <haproxy/pool.h> |
| 120 | #include <haproxy/protocol.h> |
Willy Tarreau | bf3b06b | 2020-08-26 10:23:40 +0200 | [diff] [blame] | 121 | #include <haproxy/proto_tcp.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 122 | #include <haproxy/proxy.h> |
Willy Tarreau | 7cd8b6e | 2020-06-02 17:32:26 +0200 | [diff] [blame] | 123 | #include <haproxy/regex.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 124 | #include <haproxy/sample.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 125 | #include <haproxy/server.h> |
Willy Tarreau | 48d25b3 | 2020-06-04 18:58:52 +0200 | [diff] [blame] | 126 | #include <haproxy/session.h> |
Willy Tarreau | 3727a8a | 2020-06-04 17:37:26 +0200 | [diff] [blame] | 127 | #include <haproxy/signal.h> |
Willy Tarreau | 063d47d | 2020-08-28 16:29:53 +0200 | [diff] [blame] | 128 | #include <haproxy/sock.h> |
Willy Tarreau | 25140cc | 2020-08-28 15:40:33 +0200 | [diff] [blame] | 129 | #include <haproxy/sock_inet.h> |
Willy Tarreau | 209108d | 2020-06-04 20:30:20 +0200 | [diff] [blame] | 130 | #include <haproxy/ssl_sock.h> |
Amaury Denoyelle | ee63d4b | 2020-10-05 11:49:42 +0200 | [diff] [blame] | 131 | #include <haproxy/stats-t.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 132 | #include <haproxy/stream.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 133 | #include <haproxy/task.h> |
Willy Tarreau | 3f567e4 | 2020-05-28 15:29:19 +0200 | [diff] [blame] | 134 | #include <haproxy/thread.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 135 | #include <haproxy/time.h> |
| 136 | #include <haproxy/tools.h> |
| 137 | #include <haproxy/uri_auth-t.h> |
Willy Tarreau | a171892 | 2020-06-04 16:25:31 +0200 | [diff] [blame] | 138 | #include <haproxy/vars.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 139 | #include <haproxy/version.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 140 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 141 | |
Willy Tarreau | 7b5654f | 2019-03-29 21:30:17 +0100 | [diff] [blame] | 142 | /* array of init calls for older platforms */ |
| 143 | DECLARE_INIT_STAGES; |
| 144 | |
Willy Tarreau | f459640 | 2021-04-10 16:53:05 +0200 | [diff] [blame] | 145 | /* create a read_mostly section to hold variables which are accessed a lot |
| 146 | * but which almost never change. The purpose is to isolate them in their |
| 147 | * own cache lines where they don't risk to be perturbated by write accesses |
| 148 | * to neighbor variables. We need to create an empty aligned variable for |
| 149 | * this. The fact that the variable is of size zero means that it will be |
| 150 | * eliminated at link time if no other variable uses it, but alignment will |
| 151 | * be respected. |
| 152 | */ |
| 153 | empty_t __read_mostly_align HA_SECTION("read_mostly") ALIGNED(64); |
| 154 | |
Willy Tarreau | f0d3b73 | 2021-05-06 16:30:32 +0200 | [diff] [blame] | 155 | #ifdef BUILD_FEATURES |
| 156 | const char *build_features = BUILD_FEATURES; |
| 157 | #else |
| 158 | const char *build_features = ""; |
| 159 | #endif |
| 160 | |
Willy Tarreau | 477ecd8 | 2010-01-03 21:12:30 +0100 | [diff] [blame] | 161 | /* list of config files */ |
| 162 | static struct list cfg_cfgfiles = LIST_HEAD_INIT(cfg_cfgfiles); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 163 | int pid; /* current process id */ |
Willy Tarreau | 2815664 | 2007-11-26 16:13:36 +0100 | [diff] [blame] | 164 | int relative_pid = 1; /* process id starting at 1 */ |
Willy Tarreau | 387bd4f | 2017-11-10 19:08:14 +0100 | [diff] [blame] | 165 | unsigned long pid_bit = 1; /* bit corresponding to the process id */ |
Willy Tarreau | a38a717 | 2019-02-02 17:11:28 +0100 | [diff] [blame] | 166 | unsigned long all_proc_mask = 1; /* mask of all processes */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 167 | |
Willy Tarreau | f8ea00e | 2020-03-12 17:24:53 +0100 | [diff] [blame] | 168 | volatile unsigned long sleeping_thread_mask = 0; /* Threads that are about to sleep in poll() */ |
Willy Tarreau | 4b3f27b | 2020-03-12 17:28:01 +0100 | [diff] [blame] | 169 | volatile unsigned long stopping_thread_mask = 0; /* Threads acknowledged stopping */ |
Willy Tarreau | f8ea00e | 2020-03-12 17:24:53 +0100 | [diff] [blame] | 170 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 171 | /* global options */ |
| 172 | struct global global = { |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 173 | .hard_stop_after = TICK_ETERNITY, |
Willy Tarreau | 247a13a | 2012-11-15 17:38:15 +0100 | [diff] [blame] | 174 | .nbproc = 1, |
Amaury Denoyelle | 0f50cb9 | 2021-03-26 18:50:33 +0100 | [diff] [blame] | 175 | .numa_cpu_mapping = 1, |
Willy Tarreau | 149ab77 | 2019-01-26 14:27:06 +0100 | [diff] [blame] | 176 | .nbthread = 0, |
William Lallemand | 5f23240 | 2012-04-05 18:02:55 +0200 | [diff] [blame] | 177 | .req_count = 0, |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 178 | .logsrvs = LIST_HEAD_INIT(global.logsrvs), |
William Lallemand | 9d5f548 | 2012-11-07 16:12:57 +0100 | [diff] [blame] | 179 | .maxzlibmem = 0, |
William Lallemand | d85f917 | 2012-11-09 17:05:39 +0100 | [diff] [blame] | 180 | .comp_rate_lim = 0, |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 181 | .ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED, |
Emeric Brun | ed76092 | 2010-10-22 17:59:25 +0200 | [diff] [blame] | 182 | .unix_bind = { |
| 183 | .ux = { |
| 184 | .uid = -1, |
| 185 | .gid = -1, |
| 186 | .mode = 0, |
| 187 | } |
| 188 | }, |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 189 | .tune = { |
Willy Tarreau | 7ac908b | 2019-02-27 12:02:18 +0100 | [diff] [blame] | 190 | .options = GTUNE_LISTENER_MQ, |
Willy Tarreau | c77d364 | 2018-12-12 06:19:42 +0100 | [diff] [blame] | 191 | .bufsize = (BUFSIZE + 2*sizeof(void *) - 1) & -(2*sizeof(void *)), |
Christopher Faulet | 546c469 | 2020-01-22 14:31:21 +0100 | [diff] [blame] | 192 | .maxrewrite = MAXREWRITE, |
Willy Tarreau | a24adf0 | 2014-11-27 01:11:56 +0100 | [diff] [blame] | 193 | .reserved_bufs = RESERVED_BUFS, |
Willy Tarreau | f3045d2 | 2015-04-29 16:24:50 +0200 | [diff] [blame] | 194 | .pattern_cache = DEFAULT_PAT_LRU_SIZE, |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 195 | .pool_low_ratio = 20, |
| 196 | .pool_high_ratio = 25, |
Christopher Faulet | 41ba36f | 2019-07-19 09:36:45 +0200 | [diff] [blame] | 197 | .max_http_hdr = MAX_HTTP_HDR, |
Emeric Brun | fc32aca | 2012-09-03 12:10:29 +0200 | [diff] [blame] | 198 | #ifdef USE_OPENSSL |
Emeric Brun | 4663577 | 2012-11-14 11:32:56 +0100 | [diff] [blame] | 199 | .sslcachesize = SSLCACHESIZE, |
Emeric Brun | fc32aca | 2012-09-03 12:10:29 +0200 | [diff] [blame] | 200 | #endif |
William Lallemand | f374783 | 2012-11-09 12:33:10 +0100 | [diff] [blame] | 201 | .comp_maxlevel = 1, |
Willy Tarreau | 7e31273 | 2014-02-12 16:35:14 +0100 | [diff] [blame] | 202 | #ifdef DEFAULT_IDLE_TIMER |
| 203 | .idle_timer = DEFAULT_IDLE_TIMER, |
| 204 | #else |
| 205 | .idle_timer = 1000, /* 1 second */ |
| 206 | #endif |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 207 | }, |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 208 | #ifdef USE_OPENSSL |
| 209 | #ifdef DEFAULT_MAXSSLCONN |
Willy Tarreau | 403edff | 2012-09-06 11:58:37 +0200 | [diff] [blame] | 210 | .maxsslconn = DEFAULT_MAXSSLCONN, |
| 211 | #endif |
Emeric Brun | 76d8895 | 2012-10-05 15:47:31 +0200 | [diff] [blame] | 212 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 213 | /* others NULL OK */ |
| 214 | }; |
| 215 | |
| 216 | /*********************************************************************/ |
| 217 | |
| 218 | int stopping; /* non zero means stopping in progress */ |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 219 | int killed; /* non zero means a hard-stop is triggered */ |
Willy Tarreau | af7ad00 | 2010-08-31 15:39:26 +0200 | [diff] [blame] | 220 | int jobs = 0; /* number of active jobs (conns, listeners, active tasks, ...) */ |
William Lallemand | a719926 | 2018-11-16 16:57:20 +0100 | [diff] [blame] | 221 | int unstoppable_jobs = 0; /* number of active jobs that can't be stopped during a soft stop */ |
Willy Tarreau | 199ad24 | 2018-11-05 16:31:22 +0100 | [diff] [blame] | 222 | int active_peers = 0; /* number of active peers (connection attempts and connected) */ |
Willy Tarreau | 2d372c2 | 2018-11-05 17:12:27 +0100 | [diff] [blame] | 223 | int connected_peers = 0; /* number of connected peers (verified ones) */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 224 | |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 225 | /* Here we store information about the pids of the processes we may pause |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 226 | * or kill. We will send them a signal every 10 ms until we can bind to all |
| 227 | * our ports. With 200 retries, that's about 2 seconds. |
| 228 | */ |
| 229 | #define MAX_START_RETRIES 200 |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 230 | static int *oldpids = NULL; |
| 231 | static int oldpids_sig; /* use USR1 or TERM */ |
| 232 | |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 233 | /* Path to the unix socket we use to retrieve listener sockets from the old process */ |
| 234 | static const char *old_unixsocket; |
| 235 | |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 236 | static char *cur_unixsocket = NULL; |
| 237 | |
William Lallemand | cb11fd2 | 2017-06-01 17:38:52 +0200 | [diff] [blame] | 238 | int atexit_flag = 0; |
| 239 | |
Willy Tarreau | bb545b4 | 2010-08-25 12:58:59 +0200 | [diff] [blame] | 240 | int nb_oldpids = 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 241 | const int zero = 0; |
| 242 | const int one = 1; |
Alexandre Cassen | 87ea548 | 2007-10-11 20:48:58 +0200 | [diff] [blame] | 243 | const struct linger nolinger = { .l_onoff = 1, .l_linger = 0 }; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 244 | |
Willy Tarreau | 1d21e0a | 2010-03-12 21:58:54 +0100 | [diff] [blame] | 245 | char hostname[MAX_HOSTNAME_LEN]; |
Dragan Dosen | 4f01415 | 2020-06-18 16:56:47 +0200 | [diff] [blame] | 246 | char *localpeer = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 247 | |
William Lallemand | 0041741 | 2020-06-05 14:08:41 +0200 | [diff] [blame] | 248 | static char **old_argv = NULL; /* previous argv but cleaned up */ |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 249 | |
William Lallemand | bc19305 | 2018-09-11 10:06:26 +0200 | [diff] [blame] | 250 | struct list proc_list = LIST_HEAD_INIT(proc_list); |
| 251 | |
| 252 | int master = 0; /* 1 if in master, 0 if in child */ |
Willy Tarreau | bf69640 | 2019-03-01 10:09:28 +0100 | [diff] [blame] | 253 | unsigned int rlim_fd_cur_at_boot = 0; |
| 254 | unsigned int rlim_fd_max_at_boot = 0; |
William Lallemand | bc19305 | 2018-09-11 10:06:26 +0200 | [diff] [blame] | 255 | |
Willy Tarreau | 6c3a681 | 2020-03-06 18:57:15 +0100 | [diff] [blame] | 256 | /* per-boot randomness */ |
| 257 | unsigned char boot_seed[20]; /* per-boot random seed (160 bits initially) */ |
| 258 | |
William Lallemand | b3f2be3 | 2018-09-11 10:06:18 +0200 | [diff] [blame] | 259 | static void *run_thread_poll_loop(void *data); |
| 260 | |
Willy Tarreau | ff05550 | 2014-04-28 22:27:06 +0200 | [diff] [blame] | 261 | /* bitfield of a few warnings to emit just once (WARN_*) */ |
| 262 | unsigned int warned = 0; |
| 263 | |
Amaury Denoyelle | 484454d | 2021-05-05 16:18:45 +0200 | [diff] [blame] | 264 | /* set if experimental features have been used for the current process */ |
| 265 | static unsigned int tainted = 0; |
| 266 | |
Amaury Denoyelle | d2e53cd | 2021-05-06 16:21:39 +0200 | [diff] [blame] | 267 | unsigned int experimental_directives_allowed = 0; |
| 268 | |
| 269 | int check_kw_experimental(struct cfg_keyword *kw, const char *file, int linenum, |
| 270 | char **errmsg) |
| 271 | { |
| 272 | if (kw->flags & KWF_EXPERIMENTAL) { |
| 273 | if (!experimental_directives_allowed) { |
Amaury Denoyelle | 86c1d0f | 2021-05-07 15:07:21 +0200 | [diff] [blame] | 274 | memprintf(errmsg, "parsing [%s:%d] : '%s' directive is experimental, must be allowed via a global 'expose-experimental-directives'", |
Amaury Denoyelle | d2e53cd | 2021-05-06 16:21:39 +0200 | [diff] [blame] | 275 | file, linenum, kw->kw); |
| 276 | return 1; |
| 277 | } |
| 278 | mark_tainted(TAINTED_CONFIG_EXP_KW_DECLARED); |
| 279 | } |
| 280 | |
| 281 | return 0; |
| 282 | } |
| 283 | |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 284 | /* master CLI configuration (-S flag) */ |
| 285 | struct list mworker_cli_conf = LIST_HEAD_INIT(mworker_cli_conf); |
Willy Tarreau | cdb737e | 2016-12-21 18:43:10 +0100 | [diff] [blame] | 286 | |
| 287 | /* These are strings to be reported in the output of "haproxy -vv". They may |
| 288 | * either be constants (in which case must_free must be zero) or dynamically |
| 289 | * allocated strings to pass to free() on exit, and in this case must_free |
| 290 | * must be non-zero. |
| 291 | */ |
| 292 | struct list build_opts_list = LIST_HEAD_INIT(build_opts_list); |
| 293 | struct build_opts_str { |
| 294 | struct list list; |
| 295 | const char *str; |
| 296 | int must_free; |
| 297 | }; |
| 298 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 299 | /*********************************************************************/ |
| 300 | /* general purpose functions ***************************************/ |
| 301 | /*********************************************************************/ |
| 302 | |
Willy Tarreau | cdb737e | 2016-12-21 18:43:10 +0100 | [diff] [blame] | 303 | /* used to register some build option strings at boot. Set must_free to |
| 304 | * non-zero if the string must be freed upon exit. |
| 305 | */ |
| 306 | void hap_register_build_opts(const char *str, int must_free) |
| 307 | { |
| 308 | struct build_opts_str *b; |
| 309 | |
| 310 | b = calloc(1, sizeof(*b)); |
| 311 | if (!b) { |
| 312 | fprintf(stderr, "out of memory\n"); |
| 313 | exit(1); |
| 314 | } |
| 315 | b->str = str; |
| 316 | b->must_free = must_free; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 317 | LIST_APPEND(&build_opts_list, &b->list); |
Willy Tarreau | cdb737e | 2016-12-21 18:43:10 +0100 | [diff] [blame] | 318 | } |
| 319 | |
Willy Tarreau | a43dfda | 2021-05-06 07:43:35 +0200 | [diff] [blame] | 320 | #define VERSION_MAX_ELTS 7 |
| 321 | |
| 322 | /* This function splits an haproxy version string into an array of integers. |
| 323 | * The syntax of the supported version string is the following: |
| 324 | * |
| 325 | * <a>[.<b>[.<c>[.<d>]]][-{dev,pre,rc}<f>][-*][-<g>] |
| 326 | * |
| 327 | * This validates for example: |
| 328 | * 1.2.1-pre2, 1.2.1, 1.2.10.1, 1.3.16-rc1, 1.4-dev3, 1.5-dev18, 1.5-dev18-43 |
| 329 | * 2.4-dev18-f6818d-20 |
| 330 | * |
| 331 | * The result is set in a array of <VERSION_MAX_ELTS> elements. Each letter has |
| 332 | * one fixed place in the array. The tags take a numeric value called <e> which |
| 333 | * defaults to 3. "dev" is 1, "rc" and "pre" are 2. Numbers not encountered are |
| 334 | * considered as zero (henxe 1.5 and 1.5.0 are the same). |
| 335 | * |
| 336 | * The resulting values are: |
| 337 | * 1.2.1-pre2 1, 2, 1, 0, 2, 2, 0 |
| 338 | * 1.2.1 1, 2, 1, 0, 3, 0, 0 |
| 339 | * 1.2.10.1 1, 2, 10, 1, 3, 0, 0 |
| 340 | * 1.3.16-rc1 1, 3, 16, 0, 2, 1, 0 |
| 341 | * 1.4-dev3 1, 4, 0, 0, 1, 3, 0 |
| 342 | * 1.5-dev18 1, 5, 0, 0, 1, 18, 0 |
| 343 | * 1.5-dev18-43 1, 5, 0, 0, 1, 18, 43 |
| 344 | * 2.4-dev18-f6818d-20 2, 4, 0, 0, 1, 18, 20 |
| 345 | * |
| 346 | * The function returns non-zero if the conversion succeeded, or zero if it |
| 347 | * failed. |
| 348 | */ |
| 349 | int split_version(const char *version, unsigned int *value) |
| 350 | { |
| 351 | const char *p, *s; |
| 352 | char *error; |
| 353 | int nelts; |
| 354 | |
| 355 | /* Initialize array with zeroes */ |
| 356 | for (nelts = 0; nelts < VERSION_MAX_ELTS; nelts++) |
| 357 | value[nelts] = 0; |
| 358 | value[4] = 3; |
| 359 | |
| 360 | p = version; |
| 361 | |
| 362 | /* If the version number is empty, return false */ |
| 363 | if (*p == '\0') |
| 364 | return 0; |
| 365 | |
| 366 | /* Convert first number <a> */ |
| 367 | value[0] = strtol(p, &error, 10); |
| 368 | p = error + 1; |
| 369 | if (*error == '\0') |
| 370 | return 1; |
| 371 | if (*error == '-') |
| 372 | goto split_version_tag; |
| 373 | if (*error != '.') |
| 374 | return 0; |
| 375 | |
| 376 | /* Convert first number <b> */ |
| 377 | value[1] = strtol(p, &error, 10); |
| 378 | p = error + 1; |
| 379 | if (*error == '\0') |
| 380 | return 1; |
| 381 | if (*error == '-') |
| 382 | goto split_version_tag; |
| 383 | if (*error != '.') |
| 384 | return 0; |
| 385 | |
| 386 | /* Convert first number <c> */ |
| 387 | value[2] = strtol(p, &error, 10); |
| 388 | p = error + 1; |
| 389 | if (*error == '\0') |
| 390 | return 1; |
| 391 | if (*error == '-') |
| 392 | goto split_version_tag; |
| 393 | if (*error != '.') |
| 394 | return 0; |
| 395 | |
| 396 | /* Convert first number <d> */ |
| 397 | value[3] = strtol(p, &error, 10); |
| 398 | p = error + 1; |
| 399 | if (*error == '\0') |
| 400 | return 1; |
| 401 | if (*error != '-') |
| 402 | return 0; |
| 403 | |
| 404 | split_version_tag: |
| 405 | /* Check for commit number */ |
| 406 | if (*p >= '0' && *p <= '9') |
| 407 | goto split_version_commit; |
| 408 | |
| 409 | /* Read tag */ |
| 410 | if (strncmp(p, "dev", 3) == 0) { value[4] = 1; p += 3; } |
| 411 | else if (strncmp(p, "rc", 2) == 0) { value[4] = 2; p += 2; } |
| 412 | else if (strncmp(p, "pre", 3) == 0) { value[4] = 2; p += 3; } |
| 413 | else |
| 414 | goto split_version_commit; |
| 415 | |
| 416 | /* Convert tag number */ |
| 417 | value[5] = strtol(p, &error, 10); |
| 418 | p = error + 1; |
| 419 | if (*error == '\0') |
| 420 | return 1; |
| 421 | if (*error != '-') |
| 422 | return 0; |
| 423 | |
| 424 | split_version_commit: |
| 425 | /* Search the last "-" */ |
| 426 | s = strrchr(p, '-'); |
| 427 | if (s) { |
| 428 | s++; |
| 429 | if (*s == '\0') |
| 430 | return 0; |
| 431 | value[6] = strtol(s, &error, 10); |
| 432 | if (*error != '\0') |
| 433 | value[6] = 0; |
| 434 | return 1; |
| 435 | } |
| 436 | |
| 437 | /* convert the version */ |
| 438 | value[6] = strtol(p, &error, 10); |
| 439 | if (*error != '\0') |
| 440 | value[6] = 0; |
| 441 | |
| 442 | return 1; |
| 443 | } |
| 444 | |
| 445 | /* This function compares the current haproxy version with an arbitrary version |
| 446 | * string. It returns: |
| 447 | * -1 : the version in argument is older than the current haproxy version |
| 448 | * 0 : the version in argument is the same as the current haproxy version |
| 449 | * 1 : the version in argument is newer than the current haproxy version |
| 450 | * |
| 451 | * Or some errors: |
| 452 | * -2 : the current haproxy version is not parsable |
| 453 | * -3 : the version in argument is not parsable |
| 454 | */ |
| 455 | int compare_current_version(const char *version) |
| 456 | { |
| 457 | unsigned int loc[VERSION_MAX_ELTS]; |
| 458 | unsigned int mod[VERSION_MAX_ELTS]; |
| 459 | int i; |
| 460 | |
| 461 | /* split versions */ |
| 462 | if (!split_version(haproxy_version, loc)) |
| 463 | return -2; |
| 464 | if (!split_version(version, mod)) |
| 465 | return -3; |
| 466 | |
| 467 | /* compare versions */ |
| 468 | for (i = 0; i < VERSION_MAX_ELTS; i++) { |
| 469 | if (mod[i] < loc[i]) |
| 470 | return -1; |
| 471 | else if (mod[i] > loc[i]) |
| 472 | return 1; |
| 473 | } |
| 474 | return 0; |
| 475 | } |
| 476 | |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 477 | static void display_version() |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 478 | { |
Tim Duesterhus | dfad6a4 | 2020-04-18 16:02:47 +0200 | [diff] [blame] | 479 | struct utsname utsname; |
| 480 | |
Willy Tarreau | a5357cd | 2021-05-09 06:14:25 +0200 | [diff] [blame] | 481 | printf("HAProxy version %s %s - https://haproxy.org/\n" |
Willy Tarreau | 08dd202 | 2019-11-21 18:07:30 +0100 | [diff] [blame] | 482 | PRODUCT_STATUS "\n", haproxy_version, haproxy_date); |
Willy Tarreau | 47479eb | 2019-11-21 18:48:20 +0100 | [diff] [blame] | 483 | |
| 484 | if (strlen(PRODUCT_URL_BUGS) > 0) { |
| 485 | char base_version[20]; |
| 486 | int dots = 0; |
| 487 | char *del; |
| 488 | |
| 489 | /* only retrieve the base version without distro-specific extensions */ |
| 490 | for (del = haproxy_version; *del; del++) { |
| 491 | if (*del == '.') |
| 492 | dots++; |
| 493 | else if (*del < '0' || *del > '9') |
| 494 | break; |
| 495 | } |
| 496 | |
| 497 | strlcpy2(base_version, haproxy_version, del - haproxy_version + 1); |
| 498 | if (dots < 2) |
| 499 | printf("Known bugs: https://github.com/haproxy/haproxy/issues?q=is:issue+is:open\n"); |
| 500 | else |
| 501 | printf("Known bugs: " PRODUCT_URL_BUGS "\n", base_version); |
| 502 | } |
Tim Duesterhus | dfad6a4 | 2020-04-18 16:02:47 +0200 | [diff] [blame] | 503 | |
| 504 | if (uname(&utsname) == 0) { |
| 505 | printf("Running on: %s %s %s %s\n", utsname.sysname, utsname.release, utsname.version, utsname.machine); |
| 506 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 507 | } |
| 508 | |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 509 | static void display_build_opts() |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 510 | { |
Willy Tarreau | cdb737e | 2016-12-21 18:43:10 +0100 | [diff] [blame] | 511 | struct build_opts_str *item; |
| 512 | |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 513 | printf("Build options :" |
| 514 | #ifdef BUILD_TARGET |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 515 | "\n TARGET = " BUILD_TARGET |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 516 | #endif |
| 517 | #ifdef BUILD_CPU |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 518 | "\n CPU = " BUILD_CPU |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 519 | #endif |
| 520 | #ifdef BUILD_CC |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 521 | "\n CC = " BUILD_CC |
| 522 | #endif |
| 523 | #ifdef BUILD_CFLAGS |
| 524 | "\n CFLAGS = " BUILD_CFLAGS |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 525 | #endif |
Willy Tarreau | 9f2b730 | 2008-01-02 20:48:34 +0100 | [diff] [blame] | 526 | #ifdef BUILD_OPTIONS |
| 527 | "\n OPTIONS = " BUILD_OPTIONS |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 528 | #endif |
Tim Duesterhus | c8d1970 | 2020-11-21 18:07:59 +0100 | [diff] [blame] | 529 | #ifdef BUILD_DEBUG |
| 530 | "\n DEBUG = " BUILD_DEBUG |
| 531 | #endif |
Willy Tarreau | 7728ed3 | 2019-03-27 13:20:08 +0100 | [diff] [blame] | 532 | #ifdef BUILD_FEATURES |
| 533 | "\n\nFeature list : " BUILD_FEATURES |
| 534 | #endif |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 535 | "\n\nDefault settings :" |
Willy Tarreau | ca783d4 | 2019-03-13 10:03:07 +0100 | [diff] [blame] | 536 | "\n bufsize = %d, maxrewrite = %d, maxpollevents = %d" |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 537 | "\n\n", |
Willy Tarreau | ca783d4 | 2019-03-13 10:03:07 +0100 | [diff] [blame] | 538 | BUFSIZE, MAXREWRITE, MAX_POLL_EVENTS); |
Willy Tarreau | be5b685 | 2009-10-03 18:57:08 +0200 | [diff] [blame] | 539 | |
Willy Tarreau | cdb737e | 2016-12-21 18:43:10 +0100 | [diff] [blame] | 540 | list_for_each_entry(item, &build_opts_list, list) { |
| 541 | puts(item->str); |
| 542 | } |
| 543 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 544 | putchar('\n'); |
| 545 | |
Willy Tarreau | be5b685 | 2009-10-03 18:57:08 +0200 | [diff] [blame] | 546 | list_pollers(stdout); |
| 547 | putchar('\n'); |
Christopher Faulet | 98d9fe2 | 2018-04-10 14:37:32 +0200 | [diff] [blame] | 548 | list_mux_proto(stdout); |
| 549 | putchar('\n'); |
Willy Tarreau | 679bba1 | 2019-03-19 08:08:10 +0100 | [diff] [blame] | 550 | list_services(stdout); |
| 551 | putchar('\n'); |
Christopher Faulet | b3f4e14 | 2016-03-07 12:46:38 +0100 | [diff] [blame] | 552 | list_filters(stdout); |
| 553 | putchar('\n'); |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 554 | } |
| 555 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 556 | /* |
| 557 | * This function prints the command line usage and exits |
| 558 | */ |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 559 | static void usage(char *name) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 560 | { |
| 561 | display_version(); |
| 562 | fprintf(stderr, |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 563 | "Usage : %s [-f <cfgfile|cfgdir>]* [ -vdV" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 564 | "D ] [ -n <maxconn> ] [ -N <maxpconn> ]\n" |
Willy Tarreau | a088d31 | 2015-10-08 11:58:48 +0200 | [diff] [blame] | 565 | " [ -p <pidfile> ] [ -m <max megs> ] [ -C <dir> ] [-- <cfgfile>*]\n" |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 566 | " -v displays version ; -vv shows known build options.\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 567 | " -d enters debug mode ; -db only disables background mode.\n" |
Willy Tarreau | 6e06443 | 2012-05-08 15:40:42 +0200 | [diff] [blame] | 568 | " -dM[<byte>] poisons memory with <byte> (defaults to 0x50)\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 569 | " -V enters verbose mode (disables quiet mode)\n" |
Willy Tarreau | 576132e | 2011-09-10 19:26:56 +0200 | [diff] [blame] | 570 | " -D goes daemon ; -C changes to <dir> before loading files.\n" |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 571 | " -W master-worker mode.\n" |
Tim Duesterhus | d6942c8 | 2017-11-20 15:58:35 +0100 | [diff] [blame] | 572 | #if defined(USE_SYSTEMD) |
| 573 | " -Ws master-worker mode with systemd notify support.\n" |
| 574 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 575 | " -q quiet mode : don't display messages\n" |
Willy Tarreau | 5d01a63 | 2009-06-22 16:02:30 +0200 | [diff] [blame] | 576 | " -c check mode : only check config files and exit\n" |
Willy Tarreau | ca783d4 | 2019-03-13 10:03:07 +0100 | [diff] [blame] | 577 | " -n sets the maximum total # of connections (uses ulimit -n)\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 578 | " -m limits the usable amount of memory (in MB)\n" |
| 579 | " -N sets the default, per-proxy maximum # of connections (%d)\n" |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 580 | " -L set local peer name (default to hostname)\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 581 | " -p writes pids of all children to this file\n" |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 582 | #if defined(USE_EPOLL) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 583 | " -de disables epoll() usage even when available\n" |
| 584 | #endif |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 585 | #if defined(USE_KQUEUE) |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 586 | " -dk disables kqueue() usage even when available\n" |
| 587 | #endif |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 588 | #if defined(USE_EVPORTS) |
Emmanuel Hocdet | 0ba4f48 | 2019-04-08 16:53:32 +0000 | [diff] [blame] | 589 | " -dv disables event ports usage even when available\n" |
| 590 | #endif |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 591 | #if defined(USE_POLL) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 592 | " -dp disables poll() usage even when available\n" |
| 593 | #endif |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 594 | #if defined(USE_LINUX_SPLICE) |
Willy Tarreau | 3ab68cf | 2009-01-25 16:03:28 +0100 | [diff] [blame] | 595 | " -dS disables splice usage (broken on old kernels)\n" |
| 596 | #endif |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 597 | #if defined(USE_GETADDRINFO) |
| 598 | " -dG disables getaddrinfo() usage\n" |
| 599 | #endif |
Lukas Tribus | a0bcbdc | 2016-09-12 21:42:20 +0000 | [diff] [blame] | 600 | #if defined(SO_REUSEPORT) |
| 601 | " -dR disables SO_REUSEPORT usage\n" |
| 602 | #endif |
Willy Tarreau | 0aa9dbe | 2021-12-28 15:43:11 +0100 | [diff] [blame] | 603 | #if defined(HA_HAVE_DUMP_LIBS) |
| 604 | " -dL dumps loaded object files after config checks\n" |
| 605 | #endif |
Willy Tarreau | 3eed10e | 2016-11-07 21:03:16 +0100 | [diff] [blame] | 606 | " -dr ignores server address resolution failures\n" |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 607 | " -dV disables SSL verify on servers side\n" |
Willy Tarreau | 3eb10b8 | 2020-04-15 16:42:39 +0200 | [diff] [blame] | 608 | " -dW fails if any warning is emitted\n" |
Amaury Denoyelle | 7b01a8d | 2021-03-29 10:29:07 +0200 | [diff] [blame] | 609 | " -dD diagnostic mode : warn about suspicious configuration statements\n" |
Willy Tarreau | c6ca1aa | 2015-10-08 11:32:32 +0200 | [diff] [blame] | 610 | " -sf/-st [pid ]* finishes/terminates old pids.\n" |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 611 | " -x <unix_socket> get listening sockets from a unix socket\n" |
William Lallemand | 63329e3 | 2019-06-13 17:03:37 +0200 | [diff] [blame] | 612 | " -S <bind>[,<bind options>...] new master CLI\n" |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 613 | "\n", |
Willy Tarreau | ca783d4 | 2019-03-13 10:03:07 +0100 | [diff] [blame] | 614 | name, cfg_maxpconn); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 615 | exit(1); |
| 616 | } |
| 617 | |
| 618 | |
| 619 | |
| 620 | /*********************************************************************/ |
| 621 | /* more specific functions ***************************************/ |
| 622 | /*********************************************************************/ |
| 623 | |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 624 | /* sends the signal <sig> to all pids found in <oldpids>. Returns the number of |
| 625 | * pids the signal was correctly delivered to. |
| 626 | */ |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 627 | int tell_old_pids(int sig) |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 628 | { |
| 629 | int p; |
| 630 | int ret = 0; |
| 631 | for (p = 0; p < nb_oldpids; p++) |
| 632 | if (kill(oldpids[p], sig) == 0) |
| 633 | ret++; |
| 634 | return ret; |
| 635 | } |
| 636 | |
William Lallemand | 75ea0a0 | 2017-11-15 19:02:58 +0100 | [diff] [blame] | 637 | /* |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 638 | * remove a pid forom the olpid array and decrease nb_oldpids |
| 639 | * return 1 pid was found otherwise return 0 |
| 640 | */ |
| 641 | |
| 642 | int delete_oldpid(int pid) |
| 643 | { |
| 644 | int i; |
| 645 | |
| 646 | for (i = 0; i < nb_oldpids; i++) { |
| 647 | if (oldpids[i] == pid) { |
| 648 | oldpids[i] = oldpids[nb_oldpids - 1]; |
| 649 | oldpids[nb_oldpids - 1] = 0; |
| 650 | nb_oldpids--; |
| 651 | return 1; |
| 652 | } |
| 653 | } |
| 654 | return 0; |
| 655 | } |
| 656 | |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 657 | |
| 658 | static void get_cur_unixsocket() |
| 659 | { |
Willy Tarreau | 7b11b7e | 2022-02-01 08:47:41 +0100 | [diff] [blame] | 660 | /* get rid of the one found on the command line for now */ |
| 661 | ha_free(&cur_unixsocket); |
| 662 | |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 663 | /* if -x was used, try to update the stat socket if not available anymore */ |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 664 | if (global.cli_fe) { |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 665 | struct bind_conf *bind_conf; |
| 666 | |
| 667 | /* pass through all stats socket */ |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 668 | list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) { |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 669 | struct listener *l; |
| 670 | |
| 671 | list_for_each_entry(l, &bind_conf->listeners, by_bind) { |
| 672 | |
Willy Tarreau | 3715906 | 2020-08-27 07:48:42 +0200 | [diff] [blame] | 673 | if (l->rx.addr.ss_family == AF_UNIX && |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 674 | (bind_conf->level & ACCESS_FD_LISTENERS)) { |
| 675 | const struct sockaddr_un *un; |
| 676 | |
Willy Tarreau | 3715906 | 2020-08-27 07:48:42 +0200 | [diff] [blame] | 677 | un = (struct sockaddr_un *)&l->rx.addr; |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 678 | /* priority to old_unixsocket */ |
| 679 | if (!cur_unixsocket) { |
| 680 | cur_unixsocket = strdup(un->sun_path); |
| 681 | } else { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 682 | if (old_unixsocket && strcmp(un->sun_path, old_unixsocket) == 0) { |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 683 | free(cur_unixsocket); |
| 684 | cur_unixsocket = strdup(old_unixsocket); |
| 685 | return; |
| 686 | } |
| 687 | } |
| 688 | } |
| 689 | } |
| 690 | } |
| 691 | } |
| 692 | if (!cur_unixsocket && old_unixsocket) |
| 693 | cur_unixsocket = strdup(old_unixsocket); |
| 694 | } |
| 695 | |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 696 | /* |
| 697 | * When called, this function reexec haproxy with -sf followed by current |
Joseph Herlant | 0342090 | 2018-11-15 10:41:50 -0800 | [diff] [blame] | 698 | * children PIDs and possibly old children PIDs if they didn't leave yet. |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 699 | */ |
William Lallemand | a57b7e3 | 2018-12-14 21:11:31 +0100 | [diff] [blame] | 700 | void mworker_reload() |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 701 | { |
William Lallemand | 0041741 | 2020-06-05 14:08:41 +0200 | [diff] [blame] | 702 | char **next_argv = NULL; |
| 703 | int old_argc = 0; /* previous number of argument */ |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 704 | int next_argc = 0; |
William Lallemand | 0041741 | 2020-06-05 14:08:41 +0200 | [diff] [blame] | 705 | int i = 0; |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 706 | char *msg = NULL; |
Willy Tarreau | 8dca195 | 2019-03-01 10:21:55 +0100 | [diff] [blame] | 707 | struct rlimit limit; |
William Lallemand | 7c756a8 | 2018-11-26 11:53:40 +0100 | [diff] [blame] | 708 | struct per_thread_deinit_fct *ptdf; |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 709 | |
| 710 | mworker_block_signals(); |
Tim Duesterhus | d6942c8 | 2017-11-20 15:58:35 +0100 | [diff] [blame] | 711 | #if defined(USE_SYSTEMD) |
| 712 | if (global.tune.options & GTUNE_USE_SYSTEMD) |
| 713 | sd_notify(0, "RELOADING=1"); |
| 714 | #endif |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 715 | setenv("HAPROXY_MWORKER_REEXEC", "1", 1); |
| 716 | |
William Lallemand | 030571a | 2022-01-28 21:17:30 +0100 | [diff] [blame] | 717 | mworker_cleanup_proc(); |
William Lallemand | bc19305 | 2018-09-11 10:06:26 +0200 | [diff] [blame] | 718 | mworker_proc_list_to_env(); /* put the children description in the env */ |
| 719 | |
William Lallemand | 7c756a8 | 2018-11-26 11:53:40 +0100 | [diff] [blame] | 720 | /* during the reload we must ensure that every FDs that can't be |
| 721 | * reuse (ie those that are not referenced in the proc_list) |
| 722 | * are closed or they will leak. */ |
| 723 | |
| 724 | /* close the listeners FD */ |
| 725 | mworker_cli_proxy_stop(); |
William Lallemand | 1686667 | 2019-06-24 17:40:48 +0200 | [diff] [blame] | 726 | |
| 727 | if (getenv("HAPROXY_MWORKER_WAIT_ONLY") == NULL) { |
| 728 | /* close the poller FD and the thread waker pipe FD */ |
| 729 | list_for_each_entry(ptdf, &per_thread_deinit_list, list) |
| 730 | ptdf->fct(); |
| 731 | if (fdtab) |
| 732 | deinit_pollers(); |
| 733 | } |
Ilya Shipitsin | 98a9e1b | 2021-02-19 23:42:53 +0500 | [diff] [blame] | 734 | #ifdef HAVE_SSL_RAND_KEEP_RANDOM_DEVICES_OPEN |
William Lallemand | 5fdb5b3 | 2019-10-15 14:04:08 +0200 | [diff] [blame] | 735 | /* close random device FDs */ |
| 736 | RAND_keep_random_devices_open(0); |
Rob Allen | 56996da | 2019-05-03 09:11:32 +0100 | [diff] [blame] | 737 | #endif |
William Lallemand | 7c756a8 | 2018-11-26 11:53:40 +0100 | [diff] [blame] | 738 | |
Willy Tarreau | 8dca195 | 2019-03-01 10:21:55 +0100 | [diff] [blame] | 739 | /* restore the initial FD limits */ |
| 740 | limit.rlim_cur = rlim_fd_cur_at_boot; |
| 741 | limit.rlim_max = rlim_fd_max_at_boot; |
| 742 | if (setrlimit(RLIMIT_NOFILE, &limit) == -1) { |
| 743 | getrlimit(RLIMIT_NOFILE, &limit); |
| 744 | ha_warning("Failed to restore initial FD limits (cur=%u max=%u), using cur=%u max=%u\n", |
| 745 | rlim_fd_cur_at_boot, rlim_fd_max_at_boot, |
| 746 | (unsigned int)limit.rlim_cur, (unsigned int)limit.rlim_max); |
| 747 | } |
| 748 | |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 749 | /* compute length */ |
William Lallemand | 0041741 | 2020-06-05 14:08:41 +0200 | [diff] [blame] | 750 | while (old_argv[old_argc]) |
| 751 | old_argc++; |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 752 | |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 753 | /* 1 for haproxy -sf, 2 for -x /socket */ |
William Lallemand | aba7f8b | 2021-04-21 16:55:34 +0200 | [diff] [blame] | 754 | next_argv = calloc(old_argc + 1 + 2 + mworker_child_nb() + 1, |
Tim Duesterhus | e52b6e5 | 2020-09-12 20:26:43 +0200 | [diff] [blame] | 755 | sizeof(*next_argv)); |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 756 | if (next_argv == NULL) |
| 757 | goto alloc_error; |
| 758 | |
William Lallemand | 0041741 | 2020-06-05 14:08:41 +0200 | [diff] [blame] | 759 | /* copy the program name */ |
| 760 | next_argv[next_argc++] = old_argv[0]; |
| 761 | |
| 762 | /* insert the new options just after argv[0] in case we have a -- */ |
| 763 | |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 764 | /* add -sf <PID>* to argv */ |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 765 | if (mworker_child_nb() > 0) { |
| 766 | struct mworker_proc *child; |
| 767 | |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 768 | next_argv[next_argc++] = "-sf"; |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 769 | |
| 770 | list_for_each_entry(child, &proc_list, list) { |
William Lallemand | 677e2f2 | 2019-11-19 17:04:18 +0100 | [diff] [blame] | 771 | if (!(child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) || child->pid <= -1 ) |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 772 | continue; |
William Lallemand | 0041741 | 2020-06-05 14:08:41 +0200 | [diff] [blame] | 773 | if ((next_argv[next_argc++] = memprintf(&msg, "%d", child->pid)) == NULL) |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 774 | goto alloc_error; |
| 775 | msg = NULL; |
| 776 | } |
| 777 | } |
William Lallemand | 2bf6d62 | 2017-06-20 11:20:23 +0200 | [diff] [blame] | 778 | /* add the -x option with the stat socket */ |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 779 | if (cur_unixsocket) { |
William Lallemand | 2bf6d62 | 2017-06-20 11:20:23 +0200 | [diff] [blame] | 780 | next_argv[next_argc++] = "-x"; |
| 781 | next_argv[next_argc++] = (char *)cur_unixsocket; |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 782 | } |
| 783 | |
William Lallemand | 0041741 | 2020-06-05 14:08:41 +0200 | [diff] [blame] | 784 | /* copy the previous options */ |
| 785 | for (i = 1; i < old_argc; i++) |
| 786 | next_argv[next_argc++] = old_argv[i]; |
| 787 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 788 | ha_warning("Reexecuting Master process\n"); |
Willy Tarreau | e0d86e2 | 2019-08-26 10:37:39 +0200 | [diff] [blame] | 789 | signal(SIGPROF, SIG_IGN); |
Tim Duesterhus | 0436ab7 | 2017-11-12 17:39:18 +0100 | [diff] [blame] | 790 | execvp(next_argv[0], next_argv); |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 791 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 792 | ha_warning("Failed to reexecute the master process [%d]: %s\n", pid, strerror(errno)); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 793 | ha_free(&next_argv); |
William Lallemand | 722d4ca | 2017-11-15 19:02:55 +0100 | [diff] [blame] | 794 | return; |
| 795 | |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 796 | alloc_error: |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 797 | ha_free(&next_argv); |
Joseph Herlant | 07a0834 | 2018-11-15 10:43:05 -0800 | [diff] [blame] | 798 | ha_warning("Failed to reexecute the master process [%d]: Cannot allocate memory\n", pid); |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 799 | return; |
| 800 | } |
| 801 | |
William Lallemand | b3f2be3 | 2018-09-11 10:06:18 +0200 | [diff] [blame] | 802 | static void mworker_loop() |
| 803 | { |
| 804 | |
| 805 | #if defined(USE_SYSTEMD) |
| 806 | if (global.tune.options & GTUNE_USE_SYSTEMD) |
| 807 | sd_notifyf(0, "READY=1\nMAINPID=%lu", (unsigned long)getpid()); |
| 808 | #endif |
Willy Tarreau | d83b6c1 | 2019-04-18 11:31:36 +0200 | [diff] [blame] | 809 | /* Busy polling makes no sense in the master :-) */ |
| 810 | global.tune.options &= ~GTUNE_BUSY_POLLING; |
William Lallemand | b3f2be3 | 2018-09-11 10:06:18 +0200 | [diff] [blame] | 811 | |
William Lallemand | bc19305 | 2018-09-11 10:06:26 +0200 | [diff] [blame] | 812 | master = 1; |
| 813 | |
Willy Tarreau | d26c9f9 | 2019-12-11 14:24:07 +0100 | [diff] [blame] | 814 | signal_unregister(SIGTTIN); |
| 815 | signal_unregister(SIGTTOU); |
William Lallemand | 0564d41 | 2018-11-20 17:36:53 +0100 | [diff] [blame] | 816 | signal_unregister(SIGUSR1); |
| 817 | signal_unregister(SIGHUP); |
| 818 | signal_unregister(SIGQUIT); |
| 819 | |
William Lallemand | b3f2be3 | 2018-09-11 10:06:18 +0200 | [diff] [blame] | 820 | signal_register_fct(SIGTERM, mworker_catch_sigterm, SIGTERM); |
| 821 | signal_register_fct(SIGUSR1, mworker_catch_sigterm, SIGUSR1); |
Willy Tarreau | d26c9f9 | 2019-12-11 14:24:07 +0100 | [diff] [blame] | 822 | signal_register_fct(SIGTTIN, mworker_broadcast_signal, SIGTTIN); |
| 823 | signal_register_fct(SIGTTOU, mworker_broadcast_signal, SIGTTOU); |
William Lallemand | b3f2be3 | 2018-09-11 10:06:18 +0200 | [diff] [blame] | 824 | signal_register_fct(SIGINT, mworker_catch_sigterm, SIGINT); |
| 825 | signal_register_fct(SIGHUP, mworker_catch_sighup, SIGHUP); |
| 826 | signal_register_fct(SIGUSR2, mworker_catch_sighup, SIGUSR2); |
| 827 | signal_register_fct(SIGCHLD, mworker_catch_sigchld, SIGCHLD); |
| 828 | |
| 829 | mworker_unblock_signals(); |
| 830 | mworker_cleanlisteners(); |
William Lallemand | 27f3fa5 | 2018-12-06 14:05:20 +0100 | [diff] [blame] | 831 | mworker_cleantasks(); |
William Lallemand | b3f2be3 | 2018-09-11 10:06:18 +0200 | [diff] [blame] | 832 | |
William Lallemand | bc19305 | 2018-09-11 10:06:26 +0200 | [diff] [blame] | 833 | mworker_catch_sigchld(NULL); /* ensure we clean the children in case |
| 834 | some SIGCHLD were lost */ |
| 835 | |
William Lallemand | b3f2be3 | 2018-09-11 10:06:18 +0200 | [diff] [blame] | 836 | global.nbthread = 1; |
| 837 | relative_pid = 1; |
| 838 | pid_bit = 1; |
Willy Tarreau | a38a717 | 2019-02-02 17:11:28 +0100 | [diff] [blame] | 839 | all_proc_mask = 1; |
William Lallemand | b3f2be3 | 2018-09-11 10:06:18 +0200 | [diff] [blame] | 840 | |
William Lallemand | 2672eb9 | 2018-12-14 15:52:39 +0100 | [diff] [blame] | 841 | #ifdef USE_THREAD |
| 842 | tid_bit = 1; |
| 843 | all_threads_mask = 1; |
| 844 | #endif |
| 845 | |
William Lallemand | b3f2be3 | 2018-09-11 10:06:18 +0200 | [diff] [blame] | 846 | jobs++; /* this is the "master" job, we want to take care of the |
| 847 | signals even if there is no listener so the poll loop don't |
| 848 | leave */ |
| 849 | |
| 850 | fork_poller(); |
Willy Tarreau | b4f7cc3 | 2019-05-03 09:27:30 +0200 | [diff] [blame] | 851 | run_thread_poll_loop(0); |
William Lallemand | b3f2be3 | 2018-09-11 10:06:18 +0200 | [diff] [blame] | 852 | } |
William Lallemand | cb11fd2 | 2017-06-01 17:38:52 +0200 | [diff] [blame] | 853 | |
| 854 | /* |
| 855 | * Reexec the process in failure mode, instead of exiting |
| 856 | */ |
| 857 | void reexec_on_failure() |
| 858 | { |
| 859 | if (!atexit_flag) |
| 860 | return; |
| 861 | |
| 862 | setenv("HAPROXY_MWORKER_WAIT_ONLY", "1", 1); |
| 863 | |
Willy Tarreau | 96d9a7f | 2022-01-28 18:40:06 +0100 | [diff] [blame] | 864 | /* do not keep unused FDs retrieved from the previous process */ |
| 865 | sock_drop_unused_old_sockets(); |
| 866 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 867 | ha_warning("Reexecuting Master process in waitpid mode\n"); |
William Lallemand | cb11fd2 | 2017-06-01 17:38:52 +0200 | [diff] [blame] | 868 | mworker_reload(); |
William Lallemand | cb11fd2 | 2017-06-01 17:38:52 +0200 | [diff] [blame] | 869 | } |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 870 | |
| 871 | |
| 872 | /* |
Willy Tarreau | d0807c3 | 2010-08-27 18:26:11 +0200 | [diff] [blame] | 873 | * upon SIGUSR1, let's have a soft stop. Note that soft_stop() broadcasts |
| 874 | * a signal zero to all subscribers. This means that it's as easy as |
| 875 | * subscribing to signal 0 to get informed about an imminent shutdown. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 876 | */ |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 877 | static void sig_soft_stop(struct sig_handler *sh) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 878 | { |
| 879 | soft_stop(); |
Willy Tarreau | 24f4efa | 2010-08-27 17:56:48 +0200 | [diff] [blame] | 880 | signal_unregister_handler(sh); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 881 | pool_gc(NULL); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 882 | } |
| 883 | |
| 884 | /* |
| 885 | * upon SIGTTOU, we pause everything |
| 886 | */ |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 887 | static void sig_pause(struct sig_handler *sh) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 888 | { |
Willy Tarreau | 775e001 | 2020-09-24 16:36:26 +0200 | [diff] [blame] | 889 | if (protocol_pause_all() & ERR_FATAL) { |
| 890 | const char *msg = "Some proxies refused to pause, performing soft stop now.\n"; |
Willy Tarreau | 0a002df | 2020-10-09 19:26:27 +0200 | [diff] [blame] | 891 | ha_warning("%s", msg); |
| 892 | send_log(NULL, LOG_WARNING, "%s", msg); |
Willy Tarreau | 775e001 | 2020-09-24 16:36:26 +0200 | [diff] [blame] | 893 | soft_stop(); |
| 894 | } |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 895 | pool_gc(NULL); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 896 | } |
| 897 | |
| 898 | /* |
| 899 | * upon SIGTTIN, let's have a soft stop. |
| 900 | */ |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 901 | static void sig_listen(struct sig_handler *sh) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 902 | { |
Willy Tarreau | 775e001 | 2020-09-24 16:36:26 +0200 | [diff] [blame] | 903 | if (protocol_resume_all() & ERR_FATAL) { |
| 904 | 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 Tarreau | 0a002df | 2020-10-09 19:26:27 +0200 | [diff] [blame] | 905 | ha_warning("%s", msg); |
| 906 | send_log(NULL, LOG_WARNING, "%s", msg); |
Willy Tarreau | 775e001 | 2020-09-24 16:36:26 +0200 | [diff] [blame] | 907 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 908 | } |
| 909 | |
| 910 | /* |
| 911 | * this function dumps every server's state when the process receives SIGHUP. |
| 912 | */ |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 913 | static void sig_dump_state(struct sig_handler *sh) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 914 | { |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 915 | struct proxy *p = proxies_list; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 916 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 917 | ha_warning("SIGHUP received, dumping servers states.\n"); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 918 | while (p) { |
| 919 | struct server *s = p->srv; |
| 920 | |
| 921 | send_log(p, LOG_NOTICE, "SIGHUP received, dumping servers states for proxy %s.\n", p->id); |
| 922 | while (s) { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 923 | chunk_printf(&trash, |
| 924 | "SIGHUP: Server %s/%s is %s. Conn: %d act, %d pend, %lld tot.", |
| 925 | p->id, s->id, |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 926 | (s->cur_state != SRV_ST_STOPPED) ? "UP" : "DOWN", |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 927 | s->cur_sess, s->nbpend, s->counters.cum_sess); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 928 | ha_warning("%s\n", trash.area); |
| 929 | send_log(p, LOG_NOTICE, "%s\n", trash.area); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 930 | s = s->next; |
| 931 | } |
| 932 | |
Willy Tarreau | 5fcc8f1 | 2007-09-17 11:27:09 +0200 | [diff] [blame] | 933 | /* FIXME: those info are a bit outdated. We should be able to distinguish between FE and BE. */ |
| 934 | if (!p->srv) { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 935 | chunk_printf(&trash, |
| 936 | "SIGHUP: Proxy %s has no servers. Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.", |
| 937 | p->id, |
| 938 | p->feconn, p->beconn, p->totpend, p->nbpend, p->fe_counters.cum_conn, p->be_counters.cum_conn); |
Willy Tarreau | 5fcc8f1 | 2007-09-17 11:27:09 +0200 | [diff] [blame] | 939 | } else if (p->srv_act == 0) { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 940 | chunk_printf(&trash, |
| 941 | "SIGHUP: Proxy %s %s ! Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.", |
| 942 | p->id, |
| 943 | (p->srv_bck) ? "is running on backup servers" : "has no server available", |
| 944 | p->feconn, p->beconn, p->totpend, p->nbpend, p->fe_counters.cum_conn, p->be_counters.cum_conn); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 945 | } else { |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 946 | chunk_printf(&trash, |
| 947 | "SIGHUP: Proxy %s has %d active servers and %d backup servers available." |
| 948 | " Conn: act(FE+BE): %d+%d, %d pend (%d unass), tot(FE+BE): %lld+%lld.", |
| 949 | p->id, p->srv_act, p->srv_bck, |
| 950 | p->feconn, p->beconn, p->totpend, p->nbpend, p->fe_counters.cum_conn, p->be_counters.cum_conn); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 951 | } |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 952 | ha_warning("%s\n", trash.area); |
| 953 | send_log(p, LOG_NOTICE, "%s\n", trash.area); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 954 | |
| 955 | p = p->next; |
| 956 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 957 | } |
| 958 | |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 959 | static void dump(struct sig_handler *sh) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 960 | { |
Willy Tarreau | c6ca1a0 | 2007-05-13 19:43:47 +0200 | [diff] [blame] | 961 | /* dump memory usage then free everything possible */ |
| 962 | dump_pools(); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 963 | pool_gc(NULL); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 964 | } |
| 965 | |
William Lallemand | e134041 | 2017-12-28 16:09:36 +0100 | [diff] [blame] | 966 | /* |
| 967 | * This function dup2 the stdio FDs (0,1,2) with <fd>, then closes <fd> |
| 968 | * If <fd> < 0, it opens /dev/null and use it to dup |
| 969 | * |
| 970 | * In the case of chrooting, you have to open /dev/null before the chroot, and |
| 971 | * pass the <fd> to this function |
| 972 | */ |
| 973 | static void stdio_quiet(int fd) |
| 974 | { |
| 975 | if (fd < 0) |
| 976 | fd = open("/dev/null", O_RDWR, 0); |
| 977 | |
| 978 | if (fd > -1) { |
| 979 | fclose(stdin); |
| 980 | fclose(stdout); |
| 981 | fclose(stderr); |
| 982 | |
| 983 | dup2(fd, 0); |
| 984 | dup2(fd, 1); |
| 985 | dup2(fd, 2); |
| 986 | if (fd > 2) |
| 987 | close(fd); |
| 988 | return; |
| 989 | } |
| 990 | |
| 991 | ha_alert("Cannot open /dev/null\n"); |
| 992 | exit(EXIT_FAILURE); |
| 993 | } |
| 994 | |
| 995 | |
Joseph Herlant | 0342090 | 2018-11-15 10:41:50 -0800 | [diff] [blame] | 996 | /* This function checks if cfg_cfgfiles contains directories. |
| 997 | * If it finds one, it adds all the files (and only files) it contains |
| 998 | * in cfg_cfgfiles in place of the directory (and removes the directory). |
| 999 | * It adds the files in lexical order. |
| 1000 | * It adds only files with .cfg extension. |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 1001 | * It doesn't add files with name starting with '.' |
| 1002 | */ |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 1003 | static void cfgfiles_expand_directories(void) |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 1004 | { |
| 1005 | struct wordlist *wl, *wlb; |
| 1006 | char *err = NULL; |
| 1007 | |
| 1008 | list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) { |
| 1009 | struct stat file_stat; |
| 1010 | struct dirent **dir_entries = NULL; |
| 1011 | int dir_entries_nb; |
| 1012 | int dir_entries_it; |
| 1013 | |
| 1014 | if (stat(wl->s, &file_stat)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1015 | ha_alert("Cannot open configuration file/directory %s : %s\n", |
| 1016 | wl->s, |
| 1017 | strerror(errno)); |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 1018 | exit(1); |
| 1019 | } |
| 1020 | |
| 1021 | if (!S_ISDIR(file_stat.st_mode)) |
| 1022 | continue; |
| 1023 | |
| 1024 | /* from this point wl->s is a directory */ |
| 1025 | |
| 1026 | dir_entries_nb = scandir(wl->s, &dir_entries, NULL, alphasort); |
| 1027 | if (dir_entries_nb < 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1028 | ha_alert("Cannot open configuration directory %s : %s\n", |
| 1029 | wl->s, |
| 1030 | strerror(errno)); |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 1031 | exit(1); |
| 1032 | } |
| 1033 | |
| 1034 | /* for each element in the directory wl->s */ |
| 1035 | for (dir_entries_it = 0; dir_entries_it < dir_entries_nb; dir_entries_it++) { |
| 1036 | struct dirent *dir_entry = dir_entries[dir_entries_it]; |
| 1037 | char *filename = NULL; |
| 1038 | char *d_name_cfgext = strstr(dir_entry->d_name, ".cfg"); |
| 1039 | |
| 1040 | /* don't add filename that begin with . |
Joseph Herlant | 0342090 | 2018-11-15 10:41:50 -0800 | [diff] [blame] | 1041 | * only add filename with .cfg extension |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 1042 | */ |
| 1043 | if (dir_entry->d_name[0] == '.' || |
| 1044 | !(d_name_cfgext && d_name_cfgext[4] == '\0')) |
| 1045 | goto next_dir_entry; |
| 1046 | |
| 1047 | if (!memprintf(&filename, "%s/%s", wl->s, dir_entry->d_name)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1048 | ha_alert("Cannot load configuration files %s : out of memory.\n", |
| 1049 | filename); |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 1050 | exit(1); |
| 1051 | } |
| 1052 | |
| 1053 | if (stat(filename, &file_stat)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1054 | ha_alert("Cannot open configuration file %s : %s\n", |
| 1055 | wl->s, |
| 1056 | strerror(errno)); |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 1057 | exit(1); |
| 1058 | } |
| 1059 | |
| 1060 | /* don't add anything else than regular file in cfg_cfgfiles |
| 1061 | * this way we avoid loops |
| 1062 | */ |
| 1063 | if (!S_ISREG(file_stat.st_mode)) |
| 1064 | goto next_dir_entry; |
| 1065 | |
| 1066 | if (!list_append_word(&wl->list, filename, &err)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1067 | ha_alert("Cannot load configuration files %s : %s\n", |
| 1068 | filename, |
| 1069 | err); |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 1070 | exit(1); |
| 1071 | } |
| 1072 | |
| 1073 | next_dir_entry: |
| 1074 | free(filename); |
| 1075 | free(dir_entry); |
| 1076 | } |
| 1077 | |
| 1078 | free(dir_entries); |
| 1079 | |
| 1080 | /* remove the current directory (wl) from cfg_cfgfiles */ |
| 1081 | free(wl->s); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1082 | LIST_DELETE(&wl->list); |
Maxime de Roucy | 379d9c7 | 2016-05-13 23:52:56 +0200 | [diff] [blame] | 1083 | free(wl); |
| 1084 | } |
| 1085 | |
| 1086 | free(err); |
| 1087 | } |
| 1088 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1089 | /* |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1090 | * copy and cleanup the current argv |
William Lallemand | df6c5a8 | 2020-06-04 17:40:23 +0200 | [diff] [blame] | 1091 | * Remove the -sf /-st / -x parameters |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1092 | * Return an allocated copy of argv |
| 1093 | */ |
| 1094 | |
| 1095 | static char **copy_argv(int argc, char **argv) |
| 1096 | { |
William Lallemand | df6c5a8 | 2020-06-04 17:40:23 +0200 | [diff] [blame] | 1097 | char **newargv, **retargv; |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1098 | |
Tim Duesterhus | e52b6e5 | 2020-09-12 20:26:43 +0200 | [diff] [blame] | 1099 | newargv = calloc(argc + 2, sizeof(*newargv)); |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1100 | if (newargv == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1101 | ha_warning("Cannot allocate memory\n"); |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1102 | return NULL; |
| 1103 | } |
William Lallemand | df6c5a8 | 2020-06-04 17:40:23 +0200 | [diff] [blame] | 1104 | retargv = newargv; |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1105 | |
William Lallemand | df6c5a8 | 2020-06-04 17:40:23 +0200 | [diff] [blame] | 1106 | /* first copy argv[0] */ |
| 1107 | *newargv++ = *argv++; |
| 1108 | argc--; |
| 1109 | |
| 1110 | while (argc > 0) { |
| 1111 | if (**argv != '-') { |
| 1112 | /* non options are copied but will fail in the argument parser */ |
| 1113 | *newargv++ = *argv++; |
| 1114 | argc--; |
| 1115 | |
| 1116 | } else { |
| 1117 | char *flag; |
| 1118 | |
| 1119 | flag = *argv + 1; |
| 1120 | |
| 1121 | if (flag[0] == '-' && flag[1] == 0) { |
| 1122 | /* "--\0" copy every arguments till the end of argv */ |
| 1123 | *newargv++ = *argv++; |
| 1124 | argc--; |
| 1125 | |
| 1126 | while (argc > 0) { |
| 1127 | *newargv++ = *argv++; |
| 1128 | argc--; |
| 1129 | } |
| 1130 | } else { |
| 1131 | switch (*flag) { |
| 1132 | case 's': |
| 1133 | /* -sf / -st and their parameters are ignored */ |
| 1134 | if (flag[1] == 'f' || flag[1] == 't') { |
| 1135 | argc--; |
| 1136 | argv++; |
| 1137 | /* The list can't contain a negative value since the only |
| 1138 | way to know the end of this list is by looking for the |
| 1139 | next option or the end of the options */ |
| 1140 | while (argc > 0 && argv[0][0] != '-') { |
| 1141 | argc--; |
| 1142 | argv++; |
| 1143 | } |
William Lallemand | 398da62 | 2020-09-02 16:12:23 +0200 | [diff] [blame] | 1144 | } else { |
| 1145 | argc--; |
| 1146 | argv++; |
| 1147 | |
William Lallemand | df6c5a8 | 2020-06-04 17:40:23 +0200 | [diff] [blame] | 1148 | } |
| 1149 | break; |
| 1150 | |
| 1151 | case 'x': |
| 1152 | /* this option and its parameter are ignored */ |
| 1153 | argc--; |
| 1154 | argv++; |
| 1155 | if (argc > 0) { |
| 1156 | argc--; |
| 1157 | argv++; |
| 1158 | } |
| 1159 | break; |
| 1160 | |
| 1161 | case 'C': |
| 1162 | case 'n': |
| 1163 | case 'm': |
| 1164 | case 'N': |
| 1165 | case 'L': |
| 1166 | case 'f': |
| 1167 | case 'p': |
| 1168 | case 'S': |
| 1169 | /* these options have only 1 parameter which must be copied and can start with a '-' */ |
| 1170 | *newargv++ = *argv++; |
| 1171 | argc--; |
| 1172 | if (argc == 0) |
| 1173 | goto error; |
| 1174 | *newargv++ = *argv++; |
| 1175 | argc--; |
| 1176 | break; |
| 1177 | default: |
| 1178 | /* for other options just copy them without parameters, this is also done |
| 1179 | * for options like "--foo", but this will fail in the argument parser. |
| 1180 | * */ |
| 1181 | *newargv++ = *argv++; |
| 1182 | argc--; |
| 1183 | break; |
| 1184 | } |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1185 | } |
| 1186 | } |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1187 | } |
William Lallemand | 2bf6d62 | 2017-06-20 11:20:23 +0200 | [diff] [blame] | 1188 | |
William Lallemand | df6c5a8 | 2020-06-04 17:40:23 +0200 | [diff] [blame] | 1189 | return retargv; |
| 1190 | |
| 1191 | error: |
| 1192 | free(retargv); |
| 1193 | return NULL; |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1194 | } |
| 1195 | |
Willy Tarreau | 6c3a681 | 2020-03-06 18:57:15 +0100 | [diff] [blame] | 1196 | |
| 1197 | /* Performs basic random seed initialization. The main issue with this is that |
| 1198 | * srandom_r() only takes 32 bits and purposely provides a reproducible sequence, |
| 1199 | * which means that there will only be 4 billion possible random sequences once |
| 1200 | * srandom() is called, regardless of the internal state. Not calling it is |
| 1201 | * even worse as we'll always produce the same randoms sequences. What we do |
| 1202 | * here is to create an initial sequence from various entropy sources, hash it |
| 1203 | * using SHA1 and keep the resulting 160 bits available globally. |
| 1204 | * |
| 1205 | * We initialize the current process with the first 32 bits before starting the |
| 1206 | * polling loop, where all this will be changed to have process specific and |
| 1207 | * thread specific sequences. |
Willy Tarreau | 52bf839 | 2020-03-08 00:42:37 +0100 | [diff] [blame] | 1208 | * |
| 1209 | * Before starting threads, it's still possible to call random() as srandom() |
| 1210 | * is initialized from this, but after threads and/or processes are started, |
| 1211 | * only ha_random() is expected to be used to guarantee distinct sequences. |
Willy Tarreau | 6c3a681 | 2020-03-06 18:57:15 +0100 | [diff] [blame] | 1212 | */ |
| 1213 | static void ha_random_boot(char *const *argv) |
| 1214 | { |
| 1215 | unsigned char message[256]; |
| 1216 | unsigned char *m = message; |
| 1217 | struct timeval tv; |
| 1218 | blk_SHA_CTX ctx; |
| 1219 | unsigned long l; |
| 1220 | int fd; |
| 1221 | int i; |
| 1222 | |
| 1223 | /* start with current time as pseudo-random seed */ |
| 1224 | gettimeofday(&tv, NULL); |
| 1225 | write_u32(m, tv.tv_sec); m += 4; |
| 1226 | write_u32(m, tv.tv_usec); m += 4; |
| 1227 | |
| 1228 | /* PID and PPID add some OS-based randomness */ |
| 1229 | write_u16(m, getpid()); m += 2; |
| 1230 | write_u16(m, getppid()); m += 2; |
| 1231 | |
| 1232 | /* take up to 160 bits bytes from /dev/urandom if available (non-blocking) */ |
| 1233 | fd = open("/dev/urandom", O_RDONLY); |
| 1234 | if (fd >= 0) { |
| 1235 | i = read(fd, m, 20); |
| 1236 | if (i > 0) |
| 1237 | m += i; |
| 1238 | close(fd); |
| 1239 | } |
| 1240 | |
| 1241 | /* take up to 160 bits bytes from openssl (non-blocking) */ |
| 1242 | #ifdef USE_OPENSSL |
| 1243 | if (RAND_bytes(m, 20) == 1) |
| 1244 | m += 20; |
| 1245 | #endif |
| 1246 | |
| 1247 | /* take 160 bits from existing random in case it was already initialized */ |
| 1248 | for (i = 0; i < 5; i++) { |
| 1249 | write_u32(m, random()); |
| 1250 | m += 4; |
| 1251 | } |
| 1252 | |
| 1253 | /* stack address (benefit form operating system's ASLR) */ |
| 1254 | l = (unsigned long)&m; |
| 1255 | memcpy(m, &l, sizeof(l)); m += sizeof(l); |
| 1256 | |
| 1257 | /* argv address (benefit form operating system's ASLR) */ |
| 1258 | l = (unsigned long)&argv; |
| 1259 | memcpy(m, &l, sizeof(l)); m += sizeof(l); |
| 1260 | |
| 1261 | /* use tv_usec again after all the operations above */ |
| 1262 | gettimeofday(&tv, NULL); |
| 1263 | write_u32(m, tv.tv_usec); m += 4; |
| 1264 | |
| 1265 | /* |
| 1266 | * At this point, ~84-92 bytes have been used |
| 1267 | */ |
| 1268 | |
| 1269 | /* finish with the hostname */ |
| 1270 | strncpy((char *)m, hostname, message + sizeof(message) - m); |
| 1271 | m += strlen(hostname); |
| 1272 | |
| 1273 | /* total message length */ |
| 1274 | l = m - message; |
| 1275 | |
| 1276 | memset(&ctx, 0, sizeof(ctx)); |
| 1277 | blk_SHA1_Init(&ctx); |
| 1278 | blk_SHA1_Update(&ctx, message, l); |
| 1279 | blk_SHA1_Final(boot_seed, &ctx); |
| 1280 | |
| 1281 | srandom(read_u32(boot_seed)); |
Willy Tarreau | 52bf839 | 2020-03-08 00:42:37 +0100 | [diff] [blame] | 1282 | ha_random_seed(boot_seed, sizeof(boot_seed)); |
Willy Tarreau | 6c3a681 | 2020-03-06 18:57:15 +0100 | [diff] [blame] | 1283 | } |
| 1284 | |
Willy Tarreau | 5a023f0 | 2019-03-01 14:19:31 +0100 | [diff] [blame] | 1285 | /* considers splicing proxies' maxconn, computes the ideal global.maxpipes |
| 1286 | * setting, and returns it. It may return -1 meaning "unlimited" if some |
| 1287 | * unlimited proxies have been found and the global.maxconn value is not yet |
| 1288 | * set. It may also return a value greater than maxconn if it's not yet set. |
| 1289 | * Note that a value of zero means there is no need for pipes. -1 is never |
| 1290 | * returned if global.maxconn is valid. |
| 1291 | */ |
| 1292 | static int compute_ideal_maxpipes() |
| 1293 | { |
| 1294 | struct proxy *cur; |
| 1295 | int nbfe = 0, nbbe = 0; |
| 1296 | int unlimited = 0; |
| 1297 | int pipes; |
| 1298 | int max; |
| 1299 | |
| 1300 | for (cur = proxies_list; cur; cur = cur->next) { |
| 1301 | if (cur->options2 & (PR_O2_SPLIC_ANY)) { |
| 1302 | if (cur->cap & PR_CAP_FE) { |
| 1303 | max = cur->maxconn; |
| 1304 | nbfe += max; |
| 1305 | if (!max) { |
| 1306 | unlimited = 1; |
| 1307 | break; |
| 1308 | } |
| 1309 | } |
| 1310 | if (cur->cap & PR_CAP_BE) { |
| 1311 | max = cur->fullconn ? cur->fullconn : global.maxconn; |
| 1312 | nbbe += max; |
| 1313 | if (!max) { |
| 1314 | unlimited = 1; |
| 1315 | break; |
| 1316 | } |
| 1317 | } |
| 1318 | } |
| 1319 | } |
| 1320 | |
| 1321 | pipes = MAX(nbfe, nbbe); |
| 1322 | if (global.maxconn) { |
| 1323 | if (pipes > global.maxconn || unlimited) |
| 1324 | pipes = global.maxconn; |
| 1325 | } else if (unlimited) { |
| 1326 | pipes = -1; |
| 1327 | } |
| 1328 | |
| 1329 | return pipes >= 4 ? pipes / 4 : pipes; |
| 1330 | } |
| 1331 | |
Willy Tarreau | ac35093 | 2019-03-01 15:43:14 +0100 | [diff] [blame] | 1332 | /* considers global.maxsocks, global.maxpipes, async engines, SSL frontends and |
| 1333 | * rlimits and computes an ideal maxconn. It's meant to be called only when |
| 1334 | * maxsock contains the sum of listening FDs, before it is updated based on |
Willy Tarreau | df23c0c | 2019-03-13 10:10:49 +0100 | [diff] [blame] | 1335 | * maxconn and pipes. If there are not enough FDs left, DEFAULT_MAXCONN (by |
| 1336 | * default 100) is returned as it is expected that it will even run on tight |
| 1337 | * environments, and will maintain compatibility with previous packages that |
| 1338 | * used to rely on this value as the default one. The system will emit a |
| 1339 | * warning indicating how many FDs are missing anyway if needed. |
Willy Tarreau | ac35093 | 2019-03-01 15:43:14 +0100 | [diff] [blame] | 1340 | */ |
| 1341 | static int compute_ideal_maxconn() |
| 1342 | { |
| 1343 | int ssl_sides = !!global.ssl_used_frontend + !!global.ssl_used_backend; |
| 1344 | int engine_fds = global.ssl_used_async_engines * ssl_sides; |
| 1345 | int pipes = compute_ideal_maxpipes(); |
Willy Tarreau | b1beaa3 | 2020-03-06 10:25:31 +0100 | [diff] [blame] | 1346 | int remain = MAX(rlim_fd_cur_at_boot, rlim_fd_max_at_boot); |
Willy Tarreau | ac35093 | 2019-03-01 15:43:14 +0100 | [diff] [blame] | 1347 | int maxconn; |
| 1348 | |
| 1349 | /* we have to take into account these elements : |
| 1350 | * - number of engine_fds, which inflates the number of FD needed per |
| 1351 | * connection by this number. |
| 1352 | * - number of pipes per connection on average : for the unlimited |
| 1353 | * case, this is 0.5 pipe FDs per connection, otherwise it's a |
| 1354 | * fixed value of 2*pipes. |
| 1355 | * - two FDs per connection |
| 1356 | */ |
| 1357 | |
| 1358 | /* subtract listeners and checks */ |
| 1359 | remain -= global.maxsock; |
| 1360 | |
Willy Tarreau | 3f20085 | 2019-03-14 19:13:17 +0100 | [diff] [blame] | 1361 | /* one epoll_fd/kqueue_fd per thread */ |
| 1362 | remain -= global.nbthread; |
| 1363 | |
| 1364 | /* one wake-up pipe (2 fd) per thread */ |
| 1365 | remain -= 2 * global.nbthread; |
| 1366 | |
Willy Tarreau | ac35093 | 2019-03-01 15:43:14 +0100 | [diff] [blame] | 1367 | /* Fixed pipes values : we only subtract them if they're not larger |
| 1368 | * than the remaining FDs because pipes are optional. |
| 1369 | */ |
| 1370 | if (pipes >= 0 && pipes * 2 < remain) |
| 1371 | remain -= pipes * 2; |
| 1372 | |
| 1373 | if (pipes < 0) { |
| 1374 | /* maxsock = maxconn * 2 + maxconn/4 * 2 + maxconn * engine_fds. |
| 1375 | * = maxconn * (2 + 0.5 + engine_fds) |
| 1376 | * = maxconn * (4 + 1 + 2*engine_fds) / 2 |
| 1377 | */ |
| 1378 | maxconn = 2 * remain / (5 + 2 * engine_fds); |
| 1379 | } else { |
| 1380 | /* maxsock = maxconn * 2 + maxconn * engine_fds. |
| 1381 | * = maxconn * (2 + engine_fds) |
| 1382 | */ |
| 1383 | maxconn = remain / (2 + engine_fds); |
| 1384 | } |
| 1385 | |
Willy Tarreau | df23c0c | 2019-03-13 10:10:49 +0100 | [diff] [blame] | 1386 | return MAX(maxconn, DEFAULT_MAXCONN); |
Willy Tarreau | ac35093 | 2019-03-01 15:43:14 +0100 | [diff] [blame] | 1387 | } |
| 1388 | |
Willy Tarreau | a409f30 | 2020-03-10 17:08:53 +0100 | [diff] [blame] | 1389 | /* computes the estimated maxsock value for the given maxconn based on the |
| 1390 | * possibly set global.maxpipes and existing partial global.maxsock. It may |
| 1391 | * temporarily change global.maxconn for the time needed to propagate the |
| 1392 | * computations, and will reset it. |
| 1393 | */ |
| 1394 | static int compute_ideal_maxsock(int maxconn) |
| 1395 | { |
| 1396 | int maxpipes = global.maxpipes; |
| 1397 | int maxsock = global.maxsock; |
| 1398 | |
| 1399 | |
| 1400 | if (!maxpipes) { |
| 1401 | int old_maxconn = global.maxconn; |
| 1402 | |
| 1403 | global.maxconn = maxconn; |
| 1404 | maxpipes = compute_ideal_maxpipes(); |
| 1405 | global.maxconn = old_maxconn; |
| 1406 | } |
| 1407 | |
| 1408 | maxsock += maxconn * 2; /* each connection needs two sockets */ |
| 1409 | maxsock += maxpipes * 2; /* each pipe needs two FDs */ |
| 1410 | maxsock += global.nbthread; /* one epoll_fd/kqueue_fd per thread */ |
| 1411 | maxsock += 2 * global.nbthread; /* one wake-up pipe (2 fd) per thread */ |
| 1412 | |
| 1413 | /* compute fd used by async engines */ |
| 1414 | if (global.ssl_used_async_engines) { |
| 1415 | int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend; |
| 1416 | |
| 1417 | maxsock += maxconn * sides * global.ssl_used_async_engines; |
| 1418 | } |
| 1419 | return maxsock; |
| 1420 | } |
| 1421 | |
Thayne McCombs | 8f0cc5c | 2021-01-07 21:35:52 -0700 | [diff] [blame] | 1422 | /* Tests if it is possible to set the current process's RLIMIT_NOFILE to |
Willy Tarreau | 304e17e | 2020-03-10 17:54:54 +0100 | [diff] [blame] | 1423 | * <maxsock>, then sets it back to the previous value. Returns non-zero if the |
| 1424 | * value is accepted, non-zero otherwise. This is used to determine if an |
| 1425 | * automatic limit may be applied or not. When it is not, the caller knows that |
| 1426 | * the highest we can do is the rlim_max at boot. In case of error, we return |
| 1427 | * that the setting is possible, so that we defer the error processing to the |
| 1428 | * final stage in charge of enforcing this. |
| 1429 | */ |
| 1430 | static int check_if_maxsock_permitted(int maxsock) |
| 1431 | { |
| 1432 | struct rlimit orig_limit, test_limit; |
| 1433 | int ret; |
| 1434 | |
| 1435 | if (getrlimit(RLIMIT_NOFILE, &orig_limit) != 0) |
| 1436 | return 1; |
| 1437 | |
| 1438 | /* don't go further if we can't even set to what we have */ |
| 1439 | if (setrlimit(RLIMIT_NOFILE, &orig_limit) != 0) |
| 1440 | return 1; |
| 1441 | |
| 1442 | test_limit.rlim_max = MAX(maxsock, orig_limit.rlim_max); |
| 1443 | test_limit.rlim_cur = test_limit.rlim_max; |
| 1444 | ret = setrlimit(RLIMIT_NOFILE, &test_limit); |
| 1445 | |
| 1446 | if (setrlimit(RLIMIT_NOFILE, &orig_limit) != 0) |
| 1447 | return 1; |
| 1448 | |
| 1449 | return ret == 0; |
| 1450 | } |
| 1451 | |
Amaury Denoyelle | 484454d | 2021-05-05 16:18:45 +0200 | [diff] [blame] | 1452 | void mark_tainted(const enum tainted_flags flag) |
| 1453 | { |
| 1454 | HA_ATOMIC_OR(&tainted, flag); |
| 1455 | } |
| 1456 | |
| 1457 | unsigned int get_tainted() |
| 1458 | { |
| 1459 | int tainted_state; |
| 1460 | HA_ATOMIC_STORE(&tainted_state, tainted); |
| 1461 | return tainted_state; |
| 1462 | } |
Willy Tarreau | 304e17e | 2020-03-10 17:54:54 +0100 | [diff] [blame] | 1463 | |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1464 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1465 | * This function initializes all the necessary variables. It only returns |
| 1466 | * if everything is OK. If something fails, it exits. |
| 1467 | */ |
Willy Tarreau | 1b5af7c | 2016-12-21 18:19:57 +0100 | [diff] [blame] | 1468 | static void init(int argc, char **argv) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1469 | { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1470 | int arg_mode = 0; /* MODE_DEBUG, ... */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1471 | char *tmp; |
| 1472 | char *cfg_pidfile = NULL; |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1473 | int err_code = 0; |
Maxime de Roucy | 0f50392 | 2016-05-13 23:52:55 +0200 | [diff] [blame] | 1474 | char *err_msg = NULL; |
Willy Tarreau | 477ecd8 | 2010-01-03 21:12:30 +0100 | [diff] [blame] | 1475 | struct wordlist *wl; |
Kevinm | 48936af | 2010-12-22 16:08:21 +0000 | [diff] [blame] | 1476 | char *progname; |
Willy Tarreau | 576132e | 2011-09-10 19:26:56 +0200 | [diff] [blame] | 1477 | char *change_dir = NULL; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1478 | struct proxy *px; |
Willy Tarreau | e694573 | 2016-12-21 19:57:00 +0100 | [diff] [blame] | 1479 | struct post_check_fct *pcf; |
Willy Tarreau | ac35093 | 2019-03-01 15:43:14 +0100 | [diff] [blame] | 1480 | int ideal_maxconn; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1481 | |
Christopher Faulet | e3a5e35 | 2017-10-24 13:53:54 +0200 | [diff] [blame] | 1482 | global.mode = MODE_STARTING; |
William Lallemand | 0041741 | 2020-06-05 14:08:41 +0200 | [diff] [blame] | 1483 | old_argv = copy_argv(argc, argv); |
| 1484 | if (!old_argv) { |
William Lallemand | df6c5a8 | 2020-06-04 17:40:23 +0200 | [diff] [blame] | 1485 | ha_alert("failed to copy argv.\n"); |
| 1486 | exit(1); |
| 1487 | } |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 1488 | |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 1489 | if (!init_trash_buffers(1)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1490 | ha_alert("failed to initialize trash buffers.\n"); |
Christopher Faulet | 748919a | 2017-07-26 14:59:46 +0200 | [diff] [blame] | 1491 | exit(1); |
| 1492 | } |
David du Colombier | 7af4605 | 2012-05-16 14:16:48 +0200 | [diff] [blame] | 1493 | |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1494 | /* NB: POSIX does not make it mandatory for gethostname() to NULL-terminate |
| 1495 | * the string in case of truncation, and at least FreeBSD appears not to do |
| 1496 | * it. |
| 1497 | */ |
| 1498 | memset(hostname, 0, sizeof(hostname)); |
| 1499 | gethostname(hostname, sizeof(hostname) - 1); |
Dragan Dosen | 4f01415 | 2020-06-18 16:56:47 +0200 | [diff] [blame] | 1500 | |
| 1501 | if ((localpeer = strdup(hostname)) == NULL) { |
| 1502 | ha_alert("Cannot allocate memory for local peer.\n"); |
| 1503 | exit(EXIT_FAILURE); |
| 1504 | } |
William Lallemand | daf4cd2 | 2018-04-17 16:46:13 +0200 | [diff] [blame] | 1505 | setenv("HAPROXY_LOCALPEER", localpeer, 1); |
Emeric Brun | 2b920a1 | 2010-09-23 18:30:22 +0200 | [diff] [blame] | 1506 | |
William Lallemand | 24c928c | 2020-01-14 17:58:18 +0100 | [diff] [blame] | 1507 | /* we were in mworker mode, we should restart in mworker mode */ |
| 1508 | if (getenv("HAPROXY_MWORKER_REEXEC") != NULL) |
| 1509 | global.mode |= MODE_MWORKER; |
| 1510 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1511 | /* |
| 1512 | * Initialize the previously static variables. |
| 1513 | */ |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 1514 | |
Willy Tarreau | 173d995 | 2018-01-26 21:48:23 +0100 | [diff] [blame] | 1515 | totalconn = actconn = listeners = stopping = 0; |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1516 | killed = 0; |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 1517 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1518 | |
| 1519 | #ifdef HAPROXY_MEMMAX |
Willy Tarreau | 7006045 | 2015-12-14 12:46:07 +0100 | [diff] [blame] | 1520 | global.rlimit_memmax_all = HAPROXY_MEMMAX; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1521 | #endif |
| 1522 | |
Benoit GARNIER | b413c2a | 2016-03-27 11:08:03 +0200 | [diff] [blame] | 1523 | tzset(); |
Willy Tarreau | c4c80fb | 2021-04-11 15:00:34 +0200 | [diff] [blame] | 1524 | tv_init_process_date(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1525 | start_date = now; |
| 1526 | |
Willy Tarreau | 6c3a681 | 2020-03-06 18:57:15 +0100 | [diff] [blame] | 1527 | ha_random_boot(argv); |
Willy Tarreau | 84310e2 | 2014-02-14 11:59:04 +0100 | [diff] [blame] | 1528 | |
Willy Tarreau | 8ed669b | 2013-01-11 15:49:37 +0100 | [diff] [blame] | 1529 | if (init_acl() != 0) |
| 1530 | exit(1); |
Willy Tarreau | b6b3df3 | 2018-11-26 16:31:20 +0100 | [diff] [blame] | 1531 | |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 1532 | /* Initialise lua. */ |
| 1533 | hlua_init(); |
Thierry FOURNIER | 6f1fd48 | 2015-01-23 14:06:13 +0100 | [diff] [blame] | 1534 | |
Christopher Faulet | ff2613e | 2016-11-09 11:36:17 +0100 | [diff] [blame] | 1535 | /* Initialize process vars */ |
Willy Tarreau | cfc4f24 | 2021-05-08 11:41:28 +0200 | [diff] [blame] | 1536 | vars_init(&proc_vars, SCOPE_PROC); |
Christopher Faulet | ff2613e | 2016-11-09 11:36:17 +0100 | [diff] [blame] | 1537 | |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1538 | global.tune.options |= GTUNE_USE_SELECT; /* select() is always available */ |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1539 | #if defined(USE_POLL) |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1540 | global.tune.options |= GTUNE_USE_POLL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1541 | #endif |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1542 | #if defined(USE_EPOLL) |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1543 | global.tune.options |= GTUNE_USE_EPOLL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1544 | #endif |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1545 | #if defined(USE_KQUEUE) |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1546 | global.tune.options |= GTUNE_USE_KQUEUE; |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 1547 | #endif |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1548 | #if defined(USE_EVPORTS) |
Emmanuel Hocdet | 0ba4f48 | 2019-04-08 16:53:32 +0000 | [diff] [blame] | 1549 | global.tune.options |= GTUNE_USE_EVPORTS; |
| 1550 | #endif |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1551 | #if defined(USE_LINUX_SPLICE) |
Willy Tarreau | 3ab68cf | 2009-01-25 16:03:28 +0100 | [diff] [blame] | 1552 | global.tune.options |= GTUNE_USE_SPLICE; |
| 1553 | #endif |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 1554 | #if defined(USE_GETADDRINFO) |
| 1555 | global.tune.options |= GTUNE_USE_GAI; |
| 1556 | #endif |
Lukas Tribus | a0bcbdc | 2016-09-12 21:42:20 +0000 | [diff] [blame] | 1557 | #if defined(SO_REUSEPORT) |
| 1558 | global.tune.options |= GTUNE_USE_REUSEPORT; |
| 1559 | #endif |
Willy Tarreau | 76cc699 | 2020-07-01 18:49:24 +0200 | [diff] [blame] | 1560 | #ifdef USE_THREAD |
| 1561 | global.tune.options |= GTUNE_IDLE_POOL_SHARED; |
| 1562 | #endif |
William Dauchy | a519460 | 2020-03-28 19:29:58 +0100 | [diff] [blame] | 1563 | global.tune.options |= GTUNE_STRICT_LIMITS; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1564 | |
| 1565 | pid = getpid(); |
| 1566 | progname = *argv; |
| 1567 | while ((tmp = strchr(progname, '/')) != NULL) |
| 1568 | progname = tmp + 1; |
| 1569 | |
Kevinm | 48936af | 2010-12-22 16:08:21 +0000 | [diff] [blame] | 1570 | /* the process name is used for the logs only */ |
Eric Salama | 7cea606 | 2020-10-02 11:58:19 +0200 | [diff] [blame] | 1571 | chunk_initlen(&global.log_tag, strdup(progname), strlen(progname), strlen(progname)); |
| 1572 | if (b_orig(&global.log_tag) == NULL) { |
| 1573 | chunk_destroy(&global.log_tag); |
| 1574 | ha_alert("Cannot allocate memory for log_tag.\n"); |
| 1575 | exit(EXIT_FAILURE); |
| 1576 | } |
Kevinm | 48936af | 2010-12-22 16:08:21 +0000 | [diff] [blame] | 1577 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1578 | argc--; argv++; |
| 1579 | while (argc > 0) { |
| 1580 | char *flag; |
| 1581 | |
| 1582 | if (**argv == '-') { |
| 1583 | flag = *argv+1; |
| 1584 | |
| 1585 | /* 1 arg */ |
| 1586 | if (*flag == 'v') { |
| 1587 | display_version(); |
Willy Tarreau | 7b066db | 2007-12-02 11:28:59 +0100 | [diff] [blame] | 1588 | if (flag[1] == 'v') /* -vv */ |
| 1589 | display_build_opts(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1590 | exit(0); |
| 1591 | } |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1592 | #if defined(USE_EPOLL) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1593 | else if (*flag == 'd' && flag[1] == 'e') |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1594 | global.tune.options &= ~GTUNE_USE_EPOLL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1595 | #endif |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1596 | #if defined(USE_POLL) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1597 | else if (*flag == 'd' && flag[1] == 'p') |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1598 | global.tune.options &= ~GTUNE_USE_POLL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1599 | #endif |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1600 | #if defined(USE_KQUEUE) |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 1601 | else if (*flag == 'd' && flag[1] == 'k') |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 1602 | global.tune.options &= ~GTUNE_USE_KQUEUE; |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 1603 | #endif |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1604 | #if defined(USE_EVPORTS) |
Emmanuel Hocdet | 0ba4f48 | 2019-04-08 16:53:32 +0000 | [diff] [blame] | 1605 | else if (*flag == 'd' && flag[1] == 'v') |
| 1606 | global.tune.options &= ~GTUNE_USE_EVPORTS; |
| 1607 | #endif |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1608 | #if defined(USE_LINUX_SPLICE) |
Willy Tarreau | 3ab68cf | 2009-01-25 16:03:28 +0100 | [diff] [blame] | 1609 | else if (*flag == 'd' && flag[1] == 'S') |
| 1610 | global.tune.options &= ~GTUNE_USE_SPLICE; |
| 1611 | #endif |
Nenad Merdanovic | 88afe03 | 2014-04-14 15:56:58 +0200 | [diff] [blame] | 1612 | #if defined(USE_GETADDRINFO) |
| 1613 | else if (*flag == 'd' && flag[1] == 'G') |
| 1614 | global.tune.options &= ~GTUNE_USE_GAI; |
| 1615 | #endif |
Lukas Tribus | a0bcbdc | 2016-09-12 21:42:20 +0000 | [diff] [blame] | 1616 | #if defined(SO_REUSEPORT) |
| 1617 | else if (*flag == 'd' && flag[1] == 'R') |
| 1618 | global.tune.options &= ~GTUNE_USE_REUSEPORT; |
| 1619 | #endif |
Emeric Brun | 850efd5 | 2014-01-29 12:24:34 +0100 | [diff] [blame] | 1620 | else if (*flag == 'd' && flag[1] == 'V') |
| 1621 | global.ssl_server_verify = SSL_SERVER_VERIFY_NONE; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1622 | else if (*flag == 'V') |
| 1623 | arg_mode |= MODE_VERBOSE; |
| 1624 | else if (*flag == 'd' && flag[1] == 'b') |
| 1625 | arg_mode |= MODE_FOREGROUND; |
Amaury Denoyelle | 7b01a8d | 2021-03-29 10:29:07 +0200 | [diff] [blame] | 1626 | else if (*flag == 'd' && flag[1] == 'D') |
| 1627 | arg_mode |= MODE_DIAG; |
Willy Tarreau | 3eb10b8 | 2020-04-15 16:42:39 +0200 | [diff] [blame] | 1628 | else if (*flag == 'd' && flag[1] == 'W') |
| 1629 | arg_mode |= MODE_ZERO_WARNING; |
Willy Tarreau | 6e06443 | 2012-05-08 15:40:42 +0200 | [diff] [blame] | 1630 | else if (*flag == 'd' && flag[1] == 'M') |
| 1631 | mem_poison_byte = flag[2] ? strtol(flag + 2, NULL, 0) : 'P'; |
Willy Tarreau | 3eed10e | 2016-11-07 21:03:16 +0100 | [diff] [blame] | 1632 | else if (*flag == 'd' && flag[1] == 'r') |
| 1633 | global.tune.options |= GTUNE_RESOLVE_DONTFAIL; |
Willy Tarreau | 0aa9dbe | 2021-12-28 15:43:11 +0100 | [diff] [blame] | 1634 | #if defined(HA_HAVE_DUMP_LIBS) |
| 1635 | else if (*flag == 'd' && flag[1] == 'L') |
| 1636 | arg_mode |= MODE_DUMP_LIBS; |
| 1637 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1638 | else if (*flag == 'd') |
| 1639 | arg_mode |= MODE_DEBUG; |
| 1640 | else if (*flag == 'c') |
| 1641 | arg_mode |= MODE_CHECK; |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 1642 | else if (*flag == 'D') |
Willy Tarreau | 6bde87b | 2009-05-18 16:29:51 +0200 | [diff] [blame] | 1643 | arg_mode |= MODE_DAEMON; |
Tim Duesterhus | d6942c8 | 2017-11-20 15:58:35 +0100 | [diff] [blame] | 1644 | else if (*flag == 'W' && flag[1] == 's') { |
Lukas Tribus | f46bf95 | 2017-11-21 12:39:34 +0100 | [diff] [blame] | 1645 | arg_mode |= MODE_MWORKER | MODE_FOREGROUND; |
Tim Duesterhus | d6942c8 | 2017-11-20 15:58:35 +0100 | [diff] [blame] | 1646 | #if defined(USE_SYSTEMD) |
| 1647 | global.tune.options |= GTUNE_USE_SYSTEMD; |
| 1648 | #else |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1649 | 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 Duesterhus | d6942c8 | 2017-11-20 15:58:35 +0100 | [diff] [blame] | 1650 | usage(progname); |
| 1651 | #endif |
| 1652 | } |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 1653 | else if (*flag == 'W') |
| 1654 | arg_mode |= MODE_MWORKER; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1655 | else if (*flag == 'q') |
| 1656 | arg_mode |= MODE_QUIET; |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 1657 | else if (*flag == 'x') { |
William Lallemand | 4f71d30 | 2020-06-04 23:41:29 +0200 | [diff] [blame] | 1658 | if (argc <= 1) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1659 | ha_alert("Unix socket path expected with the -x flag\n\n"); |
William Lallemand | 45eff44 | 2017-06-19 15:57:55 +0200 | [diff] [blame] | 1660 | usage(progname); |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 1661 | } |
William Lallemand | 4fc0969 | 2017-06-19 16:37:19 +0200 | [diff] [blame] | 1662 | if (old_unixsocket) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1663 | ha_warning("-x option already set, overwriting the value\n"); |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 1664 | old_unixsocket = argv[1]; |
William Lallemand | 4fc0969 | 2017-06-19 16:37:19 +0200 | [diff] [blame] | 1665 | |
Willy Tarreau | 7b11b7e | 2022-02-01 08:47:41 +0100 | [diff] [blame] | 1666 | /* preset it now for early aborts */ |
| 1667 | free(cur_unixsocket); |
| 1668 | cur_unixsocket = strdup(old_unixsocket); |
| 1669 | |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 1670 | argv++; |
| 1671 | argc--; |
| 1672 | } |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 1673 | else if (*flag == 'S') { |
| 1674 | struct wordlist *c; |
| 1675 | |
William Lallemand | a6b3249 | 2020-06-04 23:49:20 +0200 | [diff] [blame] | 1676 | if (argc <= 1) { |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 1677 | ha_alert("Socket and optional bind parameters expected with the -S flag\n"); |
| 1678 | usage(progname); |
| 1679 | } |
| 1680 | if ((c = malloc(sizeof(*c))) == NULL || (c->s = strdup(argv[1])) == NULL) { |
| 1681 | ha_alert("Cannot allocate memory\n"); |
| 1682 | exit(EXIT_FAILURE); |
| 1683 | } |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1684 | LIST_INSERT(&mworker_cli_conf, &c->list); |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 1685 | |
| 1686 | argv++; |
| 1687 | argc--; |
| 1688 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1689 | else if (*flag == 's' && (flag[1] == 'f' || flag[1] == 't')) { |
| 1690 | /* list of pids to finish ('f') or terminate ('t') */ |
| 1691 | |
| 1692 | if (flag[1] == 'f') |
| 1693 | oldpids_sig = SIGUSR1; /* finish then exit */ |
| 1694 | else |
| 1695 | oldpids_sig = SIGTERM; /* terminate immediately */ |
Willy Tarreau | c6ca1aa | 2015-10-08 11:32:32 +0200 | [diff] [blame] | 1696 | while (argc > 1 && argv[1][0] != '-') { |
Chris Lane | 236062f | 2018-02-05 23:15:44 +0000 | [diff] [blame] | 1697 | char * endptr = NULL; |
Willy Tarreau | c6ca1aa | 2015-10-08 11:32:32 +0200 | [diff] [blame] | 1698 | oldpids = realloc(oldpids, (nb_oldpids + 1) * sizeof(int)); |
| 1699 | if (!oldpids) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1700 | ha_alert("Cannot allocate old pid : out of memory.\n"); |
Willy Tarreau | c6ca1aa | 2015-10-08 11:32:32 +0200 | [diff] [blame] | 1701 | exit(1); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1702 | } |
Willy Tarreau | c6ca1aa | 2015-10-08 11:32:32 +0200 | [diff] [blame] | 1703 | argc--; argv++; |
Chris Lane | 236062f | 2018-02-05 23:15:44 +0000 | [diff] [blame] | 1704 | errno = 0; |
| 1705 | oldpids[nb_oldpids] = strtol(*argv, &endptr, 10); |
| 1706 | if (errno) { |
| 1707 | ha_alert("-%2s option: failed to parse {%s}: %s\n", |
| 1708 | flag, |
| 1709 | *argv, strerror(errno)); |
| 1710 | exit(1); |
| 1711 | } else if (endptr && strlen(endptr)) { |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 1712 | while (isspace((unsigned char)*endptr)) endptr++; |
Aurélien Nephtali | 39b8988 | 2018-02-17 20:53:11 +0100 | [diff] [blame] | 1713 | if (*endptr != 0) { |
Chris Lane | 236062f | 2018-02-05 23:15:44 +0000 | [diff] [blame] | 1714 | ha_alert("-%2s option: some bytes unconsumed in PID list {%s}\n", |
| 1715 | flag, endptr); |
| 1716 | exit(1); |
Aurélien Nephtali | 39b8988 | 2018-02-17 20:53:11 +0100 | [diff] [blame] | 1717 | } |
Chris Lane | 236062f | 2018-02-05 23:15:44 +0000 | [diff] [blame] | 1718 | } |
Willy Tarreau | c6ca1aa | 2015-10-08 11:32:32 +0200 | [diff] [blame] | 1719 | if (oldpids[nb_oldpids] <= 0) |
| 1720 | usage(progname); |
| 1721 | nb_oldpids++; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1722 | } |
| 1723 | } |
Willy Tarreau | a088d31 | 2015-10-08 11:58:48 +0200 | [diff] [blame] | 1724 | else if (flag[0] == '-' && flag[1] == 0) { /* "--" */ |
| 1725 | /* now that's a cfgfile list */ |
| 1726 | argv++; argc--; |
| 1727 | while (argc > 0) { |
Maxime de Roucy | 0f50392 | 2016-05-13 23:52:55 +0200 | [diff] [blame] | 1728 | if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1729 | ha_alert("Cannot load configuration file/directory %s : %s\n", |
| 1730 | *argv, |
| 1731 | err_msg); |
Willy Tarreau | a088d31 | 2015-10-08 11:58:48 +0200 | [diff] [blame] | 1732 | exit(1); |
| 1733 | } |
Willy Tarreau | a088d31 | 2015-10-08 11:58:48 +0200 | [diff] [blame] | 1734 | argv++; argc--; |
| 1735 | } |
| 1736 | break; |
| 1737 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1738 | else { /* >=2 args */ |
| 1739 | argv++; argc--; |
| 1740 | if (argc == 0) |
Willy Tarreau | 3bafcdc | 2011-09-10 19:20:23 +0200 | [diff] [blame] | 1741 | usage(progname); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1742 | |
| 1743 | switch (*flag) { |
Willy Tarreau | 576132e | 2011-09-10 19:26:56 +0200 | [diff] [blame] | 1744 | case 'C' : change_dir = *argv; break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1745 | case 'n' : cfg_maxconn = atol(*argv); break; |
Willy Tarreau | 7006045 | 2015-12-14 12:46:07 +0100 | [diff] [blame] | 1746 | case 'm' : global.rlimit_memmax_all = atol(*argv); break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1747 | case 'N' : cfg_maxpconn = atol(*argv); break; |
William Lallemand | daf4cd2 | 2018-04-17 16:46:13 +0200 | [diff] [blame] | 1748 | case 'L' : |
Dragan Dosen | 4f01415 | 2020-06-18 16:56:47 +0200 | [diff] [blame] | 1749 | free(localpeer); |
| 1750 | if ((localpeer = strdup(*argv)) == NULL) { |
| 1751 | ha_alert("Cannot allocate memory for local peer.\n"); |
| 1752 | exit(EXIT_FAILURE); |
| 1753 | } |
William Lallemand | daf4cd2 | 2018-04-17 16:46:13 +0200 | [diff] [blame] | 1754 | setenv("HAPROXY_LOCALPEER", localpeer, 1); |
Dragan Dosen | 13cd54c | 2020-06-18 18:24:05 +0200 | [diff] [blame] | 1755 | global.localpeer_cmdline = 1; |
William Lallemand | daf4cd2 | 2018-04-17 16:46:13 +0200 | [diff] [blame] | 1756 | break; |
Willy Tarreau | 5d01a63 | 2009-06-22 16:02:30 +0200 | [diff] [blame] | 1757 | case 'f' : |
Maxime de Roucy | 0f50392 | 2016-05-13 23:52:55 +0200 | [diff] [blame] | 1758 | if (!list_append_word(&cfg_cfgfiles, *argv, &err_msg)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1759 | ha_alert("Cannot load configuration file/directory %s : %s\n", |
| 1760 | *argv, |
| 1761 | err_msg); |
Willy Tarreau | 5d01a63 | 2009-06-22 16:02:30 +0200 | [diff] [blame] | 1762 | exit(1); |
| 1763 | } |
Willy Tarreau | 5d01a63 | 2009-06-22 16:02:30 +0200 | [diff] [blame] | 1764 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1765 | case 'p' : cfg_pidfile = *argv; break; |
Willy Tarreau | 3bafcdc | 2011-09-10 19:20:23 +0200 | [diff] [blame] | 1766 | default: usage(progname); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1767 | } |
| 1768 | } |
| 1769 | } |
| 1770 | else |
Willy Tarreau | 3bafcdc | 2011-09-10 19:20:23 +0200 | [diff] [blame] | 1771 | usage(progname); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1772 | argv++; argc--; |
| 1773 | } |
| 1774 | |
Christopher Faulet | e3a5e35 | 2017-10-24 13:53:54 +0200 | [diff] [blame] | 1775 | global.mode |= (arg_mode & (MODE_DAEMON | MODE_MWORKER | MODE_FOREGROUND | MODE_VERBOSE |
Amaury Denoyelle | 7b01a8d | 2021-03-29 10:29:07 +0200 | [diff] [blame] | 1776 | | MODE_QUIET | MODE_CHECK | MODE_DEBUG | MODE_ZERO_WARNING |
Willy Tarreau | 0aa9dbe | 2021-12-28 15:43:11 +0100 | [diff] [blame] | 1777 | | MODE_DIAG | MODE_DUMP_LIBS)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1778 | |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 1779 | if (getenv("HAPROXY_MWORKER_WAIT_ONLY")) { |
William Lallemand | cb11fd2 | 2017-06-01 17:38:52 +0200 | [diff] [blame] | 1780 | unsetenv("HAPROXY_MWORKER_WAIT_ONLY"); |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 1781 | global.mode |= MODE_MWORKER_WAIT; |
| 1782 | global.mode &= ~MODE_MWORKER; |
William Lallemand | cb11fd2 | 2017-06-01 17:38:52 +0200 | [diff] [blame] | 1783 | } |
| 1784 | |
Willy Tarreau | 7a534eb | 2021-07-21 10:01:36 +0200 | [diff] [blame] | 1785 | if ((global.mode & (MODE_MWORKER | MODE_CHECK)) == MODE_MWORKER && |
| 1786 | (getenv("HAPROXY_MWORKER_REEXEC") != NULL)) { |
William Lallemand | cb11fd2 | 2017-06-01 17:38:52 +0200 | [diff] [blame] | 1787 | atexit_flag = 1; |
| 1788 | atexit(reexec_on_failure); |
| 1789 | } |
| 1790 | |
Willy Tarreau | 576132e | 2011-09-10 19:26:56 +0200 | [diff] [blame] | 1791 | if (change_dir && chdir(change_dir) < 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1792 | ha_alert("Could not change to directory %s : %s\n", change_dir, strerror(errno)); |
Willy Tarreau | 576132e | 2011-09-10 19:26:56 +0200 | [diff] [blame] | 1793 | exit(1); |
| 1794 | } |
| 1795 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1796 | global.maxsock = 10; /* reserve 10 fds ; will be incremented by socket eaters */ |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 1797 | |
Amaury Denoyelle | a6f9c5d | 2021-04-23 16:58:08 +0200 | [diff] [blame] | 1798 | #ifdef USE_CPU_AFFINITY |
| 1799 | { |
| 1800 | int i; |
| 1801 | for (i = 0; i < MAX_PROCS; ++i) { |
Amaury Denoyelle | fc6ac53 | 2021-04-27 10:46:36 +0200 | [diff] [blame] | 1802 | ha_cpuset_zero(&cpu_map.proc[i]); |
| 1803 | ha_cpuset_zero(&cpu_map.proc_t1[i]); |
Willy Tarreau | 26f42a0 | 2021-05-14 08:26:38 +0200 | [diff] [blame] | 1804 | } |
| 1805 | for (i = 0; i < MAX_THREADS; ++i) { |
Amaury Denoyelle | fc6ac53 | 2021-04-27 10:46:36 +0200 | [diff] [blame] | 1806 | ha_cpuset_zero(&cpu_map.thread[i]); |
Amaury Denoyelle | a6f9c5d | 2021-04-23 16:58:08 +0200 | [diff] [blame] | 1807 | } |
Amaury Denoyelle | 982fb53 | 2021-04-21 18:39:58 +0200 | [diff] [blame] | 1808 | } |
Amaury Denoyelle | a6f9c5d | 2021-04-23 16:58:08 +0200 | [diff] [blame] | 1809 | #endif |
Amaury Denoyelle | 982fb53 | 2021-04-21 18:39:58 +0200 | [diff] [blame] | 1810 | |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 1811 | /* in wait mode, we don't try to read the configuration files */ |
| 1812 | if (!(global.mode & MODE_MWORKER_WAIT)) { |
Christopher Faulet | 4e36682 | 2021-01-12 18:57:38 +0100 | [diff] [blame] | 1813 | char *env_cfgfiles = NULL; |
| 1814 | int env_err = 0; |
Willy Tarreau | c438242 | 2009-12-06 13:10:44 +0100 | [diff] [blame] | 1815 | |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 1816 | /* handle cfgfiles that are actually directories */ |
| 1817 | cfgfiles_expand_directories(); |
| 1818 | |
| 1819 | if (LIST_ISEMPTY(&cfg_cfgfiles)) |
| 1820 | usage(progname); |
| 1821 | |
| 1822 | |
| 1823 | list_for_each_entry(wl, &cfg_cfgfiles, list) { |
| 1824 | int ret; |
| 1825 | |
Christopher Faulet | 4e36682 | 2021-01-12 18:57:38 +0100 | [diff] [blame] | 1826 | if (env_err == 0) { |
| 1827 | if (!memprintf(&env_cfgfiles, "%s%s%s", |
| 1828 | (env_cfgfiles ? env_cfgfiles : ""), |
| 1829 | (env_cfgfiles ? ";" : ""), wl->s)) |
| 1830 | env_err = 1; |
| 1831 | } |
William Lallemand | 7b302d8 | 2019-05-20 11:15:37 +0200 | [diff] [blame] | 1832 | |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 1833 | ret = readcfgfile(wl->s); |
| 1834 | if (ret == -1) { |
| 1835 | ha_alert("Could not open configuration file %s : %s\n", |
| 1836 | wl->s, strerror(errno)); |
Christopher Faulet | 4e36682 | 2021-01-12 18:57:38 +0100 | [diff] [blame] | 1837 | free(env_cfgfiles); |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 1838 | exit(1); |
| 1839 | } |
| 1840 | if (ret & (ERR_ABORT|ERR_FATAL)) |
| 1841 | ha_alert("Error(s) found in configuration file : %s\n", wl->s); |
| 1842 | err_code |= ret; |
Christopher Faulet | 4e36682 | 2021-01-12 18:57:38 +0100 | [diff] [blame] | 1843 | if (err_code & ERR_ABORT) { |
| 1844 | free(env_cfgfiles); |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 1845 | exit(1); |
Christopher Faulet | 4e36682 | 2021-01-12 18:57:38 +0100 | [diff] [blame] | 1846 | } |
Willy Tarreau | c438242 | 2009-12-06 13:10:44 +0100 | [diff] [blame] | 1847 | } |
Krzysztof Oledzki | b304dc7 | 2007-10-14 23:40:01 +0200 | [diff] [blame] | 1848 | |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 1849 | /* do not try to resolve arguments nor to spot inconsistencies when |
| 1850 | * the configuration contains fatal errors caused by files not found |
| 1851 | * or failed memory allocations. |
| 1852 | */ |
| 1853 | if (err_code & (ERR_ABORT|ERR_FATAL)) { |
| 1854 | ha_alert("Fatal errors found in configuration.\n"); |
Christopher Faulet | 4e36682 | 2021-01-12 18:57:38 +0100 | [diff] [blame] | 1855 | free(env_cfgfiles); |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 1856 | exit(1); |
| 1857 | } |
Christopher Faulet | 4e36682 | 2021-01-12 18:57:38 +0100 | [diff] [blame] | 1858 | if (env_err) { |
| 1859 | ha_alert("Could not allocate memory for HAPROXY_CFGFILES env variable\n"); |
| 1860 | exit(1); |
| 1861 | } |
| 1862 | setenv("HAPROXY_CFGFILES", env_cfgfiles, 1); |
| 1863 | free(env_cfgfiles); |
William Lallemand | 7b302d8 | 2019-05-20 11:15:37 +0200 | [diff] [blame] | 1864 | |
Willy Tarreau | b83dc3d | 2017-04-19 11:24:07 +0200 | [diff] [blame] | 1865 | } |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 1866 | if (global.mode & MODE_MWORKER) { |
| 1867 | int proc; |
William Lallemand | 16dd1b3 | 2018-11-19 18:46:18 +0100 | [diff] [blame] | 1868 | struct mworker_proc *tmproc; |
| 1869 | |
William Lallemand | 482f9a9 | 2019-04-12 16:15:00 +0200 | [diff] [blame] | 1870 | setenv("HAPROXY_MWORKER", "1", 1); |
| 1871 | |
William Lallemand | 16dd1b3 | 2018-11-19 18:46:18 +0100 | [diff] [blame] | 1872 | if (getenv("HAPROXY_MWORKER_REEXEC") == NULL) { |
| 1873 | |
William Lallemand | f3a8683 | 2019-04-01 11:29:58 +0200 | [diff] [blame] | 1874 | tmproc = calloc(1, sizeof(*tmproc)); |
William Lallemand | 16dd1b3 | 2018-11-19 18:46:18 +0100 | [diff] [blame] | 1875 | if (!tmproc) { |
| 1876 | ha_alert("Cannot allocate process structures.\n"); |
| 1877 | exit(EXIT_FAILURE); |
| 1878 | } |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 1879 | tmproc->options |= PROC_O_TYPE_MASTER; /* master */ |
William Lallemand | 16dd1b3 | 2018-11-19 18:46:18 +0100 | [diff] [blame] | 1880 | tmproc->reloads = 0; |
| 1881 | tmproc->relative_pid = 0; |
| 1882 | tmproc->pid = pid; |
| 1883 | tmproc->timestamp = start_date.tv_sec; |
| 1884 | tmproc->ipc_fd[0] = -1; |
| 1885 | tmproc->ipc_fd[1] = -1; |
| 1886 | |
| 1887 | proc_self = tmproc; |
| 1888 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1889 | LIST_APPEND(&proc_list, &tmproc->list); |
William Lallemand | 16dd1b3 | 2018-11-19 18:46:18 +0100 | [diff] [blame] | 1890 | } |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 1891 | |
| 1892 | for (proc = 0; proc < global.nbproc; proc++) { |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 1893 | |
William Lallemand | f3a8683 | 2019-04-01 11:29:58 +0200 | [diff] [blame] | 1894 | tmproc = calloc(1, sizeof(*tmproc)); |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 1895 | if (!tmproc) { |
| 1896 | ha_alert("Cannot allocate process structures.\n"); |
| 1897 | exit(EXIT_FAILURE); |
| 1898 | } |
| 1899 | |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 1900 | tmproc->options |= PROC_O_TYPE_WORKER; /* worker */ |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 1901 | tmproc->pid = -1; |
| 1902 | tmproc->reloads = 0; |
William Lallemand | e368330 | 2018-11-19 18:46:17 +0100 | [diff] [blame] | 1903 | tmproc->timestamp = -1; |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 1904 | tmproc->relative_pid = 1 + proc; |
William Lallemand | 550db6d | 2018-11-06 17:37:12 +0100 | [diff] [blame] | 1905 | tmproc->ipc_fd[0] = -1; |
| 1906 | tmproc->ipc_fd[1] = -1; |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 1907 | |
| 1908 | if (mworker_cli_sockpair_new(tmproc, proc) < 0) { |
| 1909 | exit(EXIT_FAILURE); |
| 1910 | } |
| 1911 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1912 | LIST_APPEND(&proc_list, &tmproc->list); |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 1913 | } |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 1914 | } |
| 1915 | if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) { |
| 1916 | struct wordlist *it, *c; |
| 1917 | |
Remi Tricot-Le Breton | d90aa34 | 2021-05-19 10:45:12 +0200 | [diff] [blame] | 1918 | /* get the info of the children in the env */ |
| 1919 | if (mworker_env_to_proc_list() < 0) { |
| 1920 | exit(EXIT_FAILURE); |
| 1921 | } |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 1922 | |
William Lallemand | 550db6d | 2018-11-06 17:37:12 +0100 | [diff] [blame] | 1923 | if (!LIST_ISEMPTY(&mworker_cli_conf)) { |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 1924 | |
William Lallemand | 550db6d | 2018-11-06 17:37:12 +0100 | [diff] [blame] | 1925 | if (mworker_cli_proxy_create() < 0) { |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 1926 | ha_alert("Can't create the master's CLI.\n"); |
| 1927 | exit(EXIT_FAILURE); |
| 1928 | } |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 1929 | |
William Lallemand | 550db6d | 2018-11-06 17:37:12 +0100 | [diff] [blame] | 1930 | list_for_each_entry_safe(c, it, &mworker_cli_conf, list) { |
| 1931 | |
| 1932 | if (mworker_cli_proxy_new_listener(c->s) < 0) { |
| 1933 | ha_alert("Can't create the master's CLI.\n"); |
| 1934 | exit(EXIT_FAILURE); |
| 1935 | } |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1936 | LIST_DELETE(&c->list); |
William Lallemand | 550db6d | 2018-11-06 17:37:12 +0100 | [diff] [blame] | 1937 | free(c->s); |
| 1938 | free(c); |
| 1939 | } |
| 1940 | } |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 1941 | } |
| 1942 | |
Eric Salama | 5ba8335 | 2021-03-16 15:11:17 +0100 | [diff] [blame] | 1943 | if (!LIST_ISEMPTY(&mworker_cli_conf) && !(arg_mode & MODE_MWORKER)) { |
| 1944 | ha_warning("a master CLI socket was defined, but master-worker mode (-W) is not enabled.\n"); |
| 1945 | } |
| 1946 | |
Willy Tarreau | f42d794 | 2020-10-20 11:54:49 +0200 | [diff] [blame] | 1947 | if (global.nbproc > 1 && !global.nbthread) { |
| 1948 | ha_warning("nbproc is deprecated!\n" |
| 1949 | " | For suffering many limitations, the 'nbproc' directive is now deprecated\n" |
| 1950 | " | and scheduled for removal in 2.5. Just comment it out: haproxy will use\n" |
| 1951 | " | threads and will run on all allocated processors. You may also switch to\n" |
| 1952 | " | 'nbthread %d' to keep the same number of processors. If you absolutely\n" |
| 1953 | " | want to run in multi-process mode, you can silence this warning by adding\n" |
| 1954 | " | 'nbthread 1', but then please report your use case to developers.\n", |
| 1955 | global.nbproc); |
| 1956 | } |
| 1957 | |
Willy Tarreau | e90904d | 2021-02-12 14:08:31 +0100 | [diff] [blame] | 1958 | /* defaults sections are not needed anymore */ |
| 1959 | proxy_destroy_all_defaults(); |
| 1960 | |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 1961 | err_code |= check_config_validity(); |
Christopher Faulet | c169296 | 2019-08-12 09:51:07 +0200 | [diff] [blame] | 1962 | for (px = proxies_list; px; px = px->next) { |
| 1963 | struct server *srv; |
| 1964 | struct post_proxy_check_fct *ppcf; |
| 1965 | struct post_server_check_fct *pscf; |
| 1966 | |
Christopher Faulet | d5bd824 | 2020-11-02 16:20:13 +0100 | [diff] [blame] | 1967 | if (px->disabled) |
| 1968 | continue; |
| 1969 | |
Christopher Faulet | c169296 | 2019-08-12 09:51:07 +0200 | [diff] [blame] | 1970 | list_for_each_entry(pscf, &post_server_check_list, list) { |
| 1971 | for (srv = px->srv; srv; srv = srv->next) |
| 1972 | err_code |= pscf->fct(srv); |
| 1973 | } |
| 1974 | list_for_each_entry(ppcf, &post_proxy_check_list, list) |
| 1975 | err_code |= ppcf->fct(px); |
| 1976 | } |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 1977 | if (err_code & (ERR_ABORT|ERR_FATAL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1978 | ha_alert("Fatal errors found in configuration.\n"); |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 1979 | exit(1); |
| 1980 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1981 | |
Carl Henrik Lunde | f91ac19 | 2020-02-27 16:45:50 +0100 | [diff] [blame] | 1982 | err_code |= pattern_finalize_config(); |
| 1983 | if (err_code & (ERR_ABORT|ERR_FATAL)) { |
| 1984 | ha_alert("Failed to finalize pattern config.\n"); |
| 1985 | exit(1); |
| 1986 | } |
Willy Tarreau | 0f93672 | 2019-04-11 14:47:08 +0200 | [diff] [blame] | 1987 | |
Willy Tarreau | 7006045 | 2015-12-14 12:46:07 +0100 | [diff] [blame] | 1988 | /* recompute the amount of per-process memory depending on nbproc and |
| 1989 | * the shared SSL cache size (allowed to exist in all processes). |
| 1990 | */ |
| 1991 | if (global.rlimit_memmax_all) { |
| 1992 | #if defined (USE_OPENSSL) && !defined(USE_PRIVATE_CACHE) |
| 1993 | int64_t ssl_cache_bytes = global.tune.sslcachesize * 200LL; |
| 1994 | |
| 1995 | global.rlimit_memmax = |
| 1996 | ((((int64_t)global.rlimit_memmax_all * 1048576LL) - |
| 1997 | ssl_cache_bytes) / global.nbproc + |
| 1998 | ssl_cache_bytes + 1048575LL) / 1048576LL; |
| 1999 | #else |
| 2000 | global.rlimit_memmax = global.rlimit_memmax_all / global.nbproc; |
| 2001 | #endif |
| 2002 | } |
| 2003 | |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 2004 | #ifdef USE_NS |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 2005 | err_code |= netns_init(); |
| 2006 | if (err_code & (ERR_ABORT|ERR_FATAL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2007 | ha_alert("Failed to initialize namespace support.\n"); |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 2008 | exit(1); |
| 2009 | } |
| 2010 | #endif |
| 2011 | |
Baptiste Assmann | 4215d7d | 2016-11-02 15:33:15 +0100 | [diff] [blame] | 2012 | /* Apply server states */ |
| 2013 | apply_server_state(); |
| 2014 | |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 2015 | for (px = proxies_list; px; px = px->next) |
Baptiste Assmann | 4215d7d | 2016-11-02 15:33:15 +0100 | [diff] [blame] | 2016 | srv_compute_all_admin_states(px); |
| 2017 | |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 2018 | /* Apply servers' configured address */ |
| 2019 | err_code |= srv_init_addr(); |
| 2020 | if (err_code & (ERR_ABORT|ERR_FATAL)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2021 | ha_alert("Failed to initialize server(s) addr.\n"); |
Baptiste Assmann | 83cbaa5 | 2016-11-02 15:34:05 +0100 | [diff] [blame] | 2022 | exit(1); |
| 2023 | } |
| 2024 | |
Willy Tarreau | 3eb10b8 | 2020-04-15 16:42:39 +0200 | [diff] [blame] | 2025 | if (warned & WARN_ANY && global.mode & MODE_ZERO_WARNING) { |
| 2026 | ha_alert("Some warnings were found and 'zero-warning' is set. Aborting.\n"); |
| 2027 | exit(1); |
| 2028 | } |
| 2029 | |
Willy Tarreau | 0aa9dbe | 2021-12-28 15:43:11 +0100 | [diff] [blame] | 2030 | #if defined(HA_HAVE_DUMP_LIBS) |
| 2031 | if (global.mode & MODE_DUMP_LIBS) { |
| 2032 | qfprintf(stdout, "List of loaded object files:\n"); |
| 2033 | chunk_reset(&trash); |
| 2034 | if (dump_libs(&trash, 0)) |
| 2035 | printf("%s", trash.area); |
| 2036 | } |
| 2037 | #endif |
| 2038 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2039 | if (global.mode & MODE_CHECK) { |
Willy Tarreau | 8b15ba1 | 2012-02-02 17:48:18 +0100 | [diff] [blame] | 2040 | struct peers *pr; |
| 2041 | struct proxy *px; |
| 2042 | |
Willy Tarreau | bebd212 | 2020-04-15 16:06:11 +0200 | [diff] [blame] | 2043 | if (warned & WARN_ANY) |
| 2044 | qfprintf(stdout, "Warnings were found.\n"); |
| 2045 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 2046 | for (pr = cfg_peers; pr; pr = pr->next) |
Willy Tarreau | 8b15ba1 | 2012-02-02 17:48:18 +0100 | [diff] [blame] | 2047 | if (pr->peers_fe) |
| 2048 | break; |
| 2049 | |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 2050 | for (px = proxies_list; px; px = px->next) |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 2051 | if (!px->disabled && px->li_all) |
Willy Tarreau | 8b15ba1 | 2012-02-02 17:48:18 +0100 | [diff] [blame] | 2052 | break; |
| 2053 | |
Emeric Brun | 3a9c000 | 2021-08-13 09:32:50 +0200 | [diff] [blame] | 2054 | if (!px) { |
| 2055 | /* We may only have log-forward section */ |
| 2056 | for (px = cfg_log_forward; px; px = px->next) |
| 2057 | if (!px->disabled && px->li_all) |
| 2058 | break; |
| 2059 | } |
| 2060 | |
Willy Tarreau | 8b15ba1 | 2012-02-02 17:48:18 +0100 | [diff] [blame] | 2061 | if (pr || px) { |
| 2062 | /* At least one peer or one listener has been found */ |
| 2063 | qfprintf(stdout, "Configuration file is valid\n"); |
Tim Duesterhus | 0a3b43d | 2020-06-14 00:37:42 +0200 | [diff] [blame] | 2064 | deinit_and_exit(0); |
Willy Tarreau | 8b15ba1 | 2012-02-02 17:48:18 +0100 | [diff] [blame] | 2065 | } |
| 2066 | qfprintf(stdout, "Configuration file has no error but will not start (no listener) => exit(2).\n"); |
| 2067 | exit(2); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2068 | } |
Willy Tarreau | e9b2602 | 2011-08-01 20:57:55 +0200 | [diff] [blame] | 2069 | |
Amaury Denoyelle | 5a6926d | 2021-03-30 17:34:24 +0200 | [diff] [blame] | 2070 | if (global.mode & MODE_DIAG) { |
| 2071 | cfg_run_diagnostics(); |
| 2072 | } |
| 2073 | |
Willy Tarreau | 8263d2b | 2012-08-28 00:06:31 +0200 | [diff] [blame] | 2074 | /* now we know the buffer size, we can initialize the channels and buffers */ |
Willy Tarreau | 9b28e03 | 2012-10-12 23:49:43 +0200 | [diff] [blame] | 2075 | init_buffer(); |
Willy Tarreau | 8280d64 | 2009-09-23 23:37:52 +0200 | [diff] [blame] | 2076 | |
Willy Tarreau | e694573 | 2016-12-21 19:57:00 +0100 | [diff] [blame] | 2077 | list_for_each_entry(pcf, &post_check_list, list) { |
| 2078 | err_code |= pcf->fct(); |
| 2079 | if (err_code & (ERR_ABORT|ERR_FATAL)) |
| 2080 | exit(1); |
| 2081 | } |
| 2082 | |
William Lallemand | e9eb249 | 2022-06-21 11:11:50 +0200 | [diff] [blame] | 2083 | /* set the default maxconn in the master, but let it be rewritable with -n */ |
| 2084 | if (global.mode & MODE_MWORKER_WAIT) |
| 2085 | global.maxconn = DEFAULT_MAXCONN; |
| 2086 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2087 | if (cfg_maxconn > 0) |
| 2088 | global.maxconn = cfg_maxconn; |
| 2089 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 2090 | if (global.cli_fe) |
| 2091 | global.maxsock += global.cli_fe->maxconn; |
Willy Tarreau | 8d687d8 | 2019-03-01 09:39:42 +0100 | [diff] [blame] | 2092 | |
| 2093 | if (cfg_peers) { |
| 2094 | /* peers also need to bypass global maxconn */ |
| 2095 | struct peers *p = cfg_peers; |
| 2096 | |
| 2097 | for (p = cfg_peers; p; p = p->next) |
| 2098 | if (p->peers_fe) |
| 2099 | global.maxsock += p->peers_fe->maxconn; |
| 2100 | } |
| 2101 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2102 | if (cfg_pidfile) { |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2103 | free(global.pidfile); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2104 | global.pidfile = strdup(cfg_pidfile); |
| 2105 | } |
| 2106 | |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 2107 | /* Now we want to compute the maxconn and possibly maxsslconn values. |
Willy Tarreau | ac35093 | 2019-03-01 15:43:14 +0100 | [diff] [blame] | 2108 | * It's a bit tricky. Maxconn defaults to the pre-computed value based |
| 2109 | * on rlim_fd_cur and the number of FDs in use due to the configuration, |
| 2110 | * and maxsslconn defaults to DEFAULT_MAXSSLCONN. On top of that we can |
| 2111 | * enforce a lower limit based on memmax. |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 2112 | * |
| 2113 | * If memmax is set, then it depends on which values are set. If |
| 2114 | * maxsslconn is set, we use memmax to determine how many cleartext |
| 2115 | * connections may be added, and set maxconn to the sum of the two. |
| 2116 | * If maxconn is set and not maxsslconn, maxsslconn is computed from |
| 2117 | * the remaining amount of memory between memmax and the cleartext |
| 2118 | * connections. If neither are set, then it is considered that all |
| 2119 | * connections are SSL-capable, and maxconn is computed based on this, |
| 2120 | * then maxsslconn accordingly. We need to know if SSL is used on the |
| 2121 | * frontends, backends, or both, because when it's used on both sides, |
| 2122 | * we need twice the value for maxsslconn, but we only count the |
| 2123 | * handshake once since it is not performed on the two sides at the |
| 2124 | * same time (frontend-side is terminated before backend-side begins). |
| 2125 | * The SSL stack is supposed to have filled ssl_session_cost and |
Willy Tarreau | 474b96a | 2015-01-28 19:03:21 +0100 | [diff] [blame] | 2126 | * ssl_handshake_cost during its initialization. In any case, if |
| 2127 | * SYSTEM_MAXCONN is set, we still enforce it as an upper limit for |
| 2128 | * maxconn in order to protect the system. |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 2129 | */ |
Willy Tarreau | ac35093 | 2019-03-01 15:43:14 +0100 | [diff] [blame] | 2130 | ideal_maxconn = compute_ideal_maxconn(); |
| 2131 | |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 2132 | if (!global.rlimit_memmax) { |
| 2133 | if (global.maxconn == 0) { |
Willy Tarreau | ac35093 | 2019-03-01 15:43:14 +0100 | [diff] [blame] | 2134 | global.maxconn = ideal_maxconn; |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 2135 | if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) |
| 2136 | fprintf(stderr, "Note: setting global.maxconn to %d.\n", global.maxconn); |
| 2137 | } |
| 2138 | } |
| 2139 | #ifdef USE_OPENSSL |
| 2140 | else if (!global.maxconn && !global.maxsslconn && |
| 2141 | (global.ssl_used_frontend || global.ssl_used_backend)) { |
| 2142 | /* memmax is set, compute everything automatically. Here we want |
| 2143 | * to ensure that all SSL connections will be served. We take |
| 2144 | * care of the number of sides where SSL is used, and consider |
| 2145 | * the worst case : SSL used on both sides and doing a handshake |
| 2146 | * simultaneously. Note that we can't have more than maxconn |
| 2147 | * handshakes at a time by definition, so for the worst case of |
| 2148 | * two SSL conns per connection, we count a single handshake. |
| 2149 | */ |
| 2150 | int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend; |
| 2151 | int64_t mem = global.rlimit_memmax * 1048576ULL; |
Willy Tarreau | 304e17e | 2020-03-10 17:54:54 +0100 | [diff] [blame] | 2152 | int retried = 0; |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 2153 | |
| 2154 | mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry |
| 2155 | mem -= global.maxzlibmem; |
| 2156 | mem = mem * MEM_USABLE_RATIO; |
| 2157 | |
Willy Tarreau | 304e17e | 2020-03-10 17:54:54 +0100 | [diff] [blame] | 2158 | /* Principle: we test once to set maxconn according to the free |
| 2159 | * memory. If it results in values the system rejects, we try a |
| 2160 | * second time by respecting rlim_fd_max. If it fails again, we |
| 2161 | * go back to the initial value and will let the final code |
| 2162 | * dealing with rlimit report the error. That's up to 3 attempts. |
| 2163 | */ |
| 2164 | do { |
| 2165 | global.maxconn = mem / |
| 2166 | ((STREAM_MAX_COST + 2 * global.tune.bufsize) + // stream + 2 buffers per stream |
| 2167 | sides * global.ssl_session_max_cost + // SSL buffers, one per side |
| 2168 | global.ssl_handshake_max_cost); // 1 handshake per connection max |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 2169 | |
Willy Tarreau | 304e17e | 2020-03-10 17:54:54 +0100 | [diff] [blame] | 2170 | if (retried == 1) |
| 2171 | global.maxconn = MIN(global.maxconn, ideal_maxconn); |
| 2172 | global.maxconn = round_2dig(global.maxconn); |
Willy Tarreau | 474b96a | 2015-01-28 19:03:21 +0100 | [diff] [blame] | 2173 | #ifdef SYSTEM_MAXCONN |
Willy Tarreau | 304e17e | 2020-03-10 17:54:54 +0100 | [diff] [blame] | 2174 | if (global.maxconn > SYSTEM_MAXCONN) |
| 2175 | global.maxconn = SYSTEM_MAXCONN; |
Willy Tarreau | 474b96a | 2015-01-28 19:03:21 +0100 | [diff] [blame] | 2176 | #endif /* SYSTEM_MAXCONN */ |
Willy Tarreau | 304e17e | 2020-03-10 17:54:54 +0100 | [diff] [blame] | 2177 | global.maxsslconn = sides * global.maxconn; |
| 2178 | |
| 2179 | if (check_if_maxsock_permitted(compute_ideal_maxsock(global.maxconn))) |
| 2180 | break; |
| 2181 | } while (retried++ < 2); |
| 2182 | |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 2183 | if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) |
| 2184 | fprintf(stderr, "Note: setting global.maxconn to %d and global.maxsslconn to %d.\n", |
| 2185 | global.maxconn, global.maxsslconn); |
| 2186 | } |
| 2187 | else if (!global.maxsslconn && |
| 2188 | (global.ssl_used_frontend || global.ssl_used_backend)) { |
| 2189 | /* memmax and maxconn are known, compute maxsslconn automatically. |
| 2190 | * maxsslconn being forced, we don't know how many of it will be |
| 2191 | * on each side if both sides are being used. The worst case is |
| 2192 | * when all connections use only one SSL instance because |
| 2193 | * handshakes may be on two sides at the same time. |
| 2194 | */ |
| 2195 | int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend; |
| 2196 | int64_t mem = global.rlimit_memmax * 1048576ULL; |
| 2197 | int64_t sslmem; |
| 2198 | |
| 2199 | mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry |
| 2200 | mem -= global.maxzlibmem; |
| 2201 | mem = mem * MEM_USABLE_RATIO; |
| 2202 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 2203 | sslmem = mem - global.maxconn * (int64_t)(STREAM_MAX_COST + 2 * global.tune.bufsize); |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 2204 | global.maxsslconn = sslmem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost); |
| 2205 | global.maxsslconn = round_2dig(global.maxsslconn); |
| 2206 | |
| 2207 | if (sslmem <= 0 || global.maxsslconn < sides) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2208 | ha_alert("Cannot compute the automatic maxsslconn because global.maxconn is already too " |
| 2209 | "high for the global.memmax value (%d MB). The absolute maximum possible value " |
| 2210 | "without SSL is %d, but %d was found and SSL is in use.\n", |
| 2211 | global.rlimit_memmax, |
| 2212 | (int)(mem / (STREAM_MAX_COST + 2 * global.tune.bufsize)), |
| 2213 | global.maxconn); |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 2214 | exit(1); |
| 2215 | } |
| 2216 | |
| 2217 | if (global.maxsslconn > sides * global.maxconn) |
| 2218 | global.maxsslconn = sides * global.maxconn; |
| 2219 | |
| 2220 | if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) |
| 2221 | fprintf(stderr, "Note: setting global.maxsslconn to %d\n", global.maxsslconn); |
| 2222 | } |
| 2223 | #endif |
| 2224 | else if (!global.maxconn) { |
| 2225 | /* memmax and maxsslconn are known/unused, compute maxconn automatically */ |
| 2226 | int sides = !!global.ssl_used_frontend + !!global.ssl_used_backend; |
| 2227 | int64_t mem = global.rlimit_memmax * 1048576ULL; |
| 2228 | int64_t clearmem; |
Willy Tarreau | 304e17e | 2020-03-10 17:54:54 +0100 | [diff] [blame] | 2229 | int retried = 0; |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 2230 | |
| 2231 | if (global.ssl_used_frontend || global.ssl_used_backend) |
| 2232 | mem -= global.tune.sslcachesize * 200; // about 200 bytes per SSL cache entry |
| 2233 | |
| 2234 | mem -= global.maxzlibmem; |
| 2235 | mem = mem * MEM_USABLE_RATIO; |
| 2236 | |
| 2237 | clearmem = mem; |
| 2238 | if (sides) |
| 2239 | clearmem -= (global.ssl_session_max_cost + global.ssl_handshake_max_cost) * (int64_t)global.maxsslconn; |
| 2240 | |
Willy Tarreau | 304e17e | 2020-03-10 17:54:54 +0100 | [diff] [blame] | 2241 | /* Principle: we test once to set maxconn according to the free |
| 2242 | * memory. If it results in values the system rejects, we try a |
| 2243 | * second time by respecting rlim_fd_max. If it fails again, we |
| 2244 | * go back to the initial value and will let the final code |
| 2245 | * dealing with rlimit report the error. That's up to 3 attempts. |
| 2246 | */ |
| 2247 | do { |
| 2248 | global.maxconn = clearmem / (STREAM_MAX_COST + 2 * global.tune.bufsize); |
| 2249 | if (retried == 1) |
| 2250 | global.maxconn = MIN(global.maxconn, ideal_maxconn); |
| 2251 | global.maxconn = round_2dig(global.maxconn); |
Willy Tarreau | 474b96a | 2015-01-28 19:03:21 +0100 | [diff] [blame] | 2252 | #ifdef SYSTEM_MAXCONN |
Willy Tarreau | 304e17e | 2020-03-10 17:54:54 +0100 | [diff] [blame] | 2253 | if (global.maxconn > SYSTEM_MAXCONN) |
| 2254 | global.maxconn = SYSTEM_MAXCONN; |
Willy Tarreau | 474b96a | 2015-01-28 19:03:21 +0100 | [diff] [blame] | 2255 | #endif /* SYSTEM_MAXCONN */ |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 2256 | |
Willy Tarreau | 304e17e | 2020-03-10 17:54:54 +0100 | [diff] [blame] | 2257 | if (clearmem <= 0 || !global.maxconn) { |
| 2258 | ha_alert("Cannot compute the automatic maxconn because global.maxsslconn is already too " |
| 2259 | "high for the global.memmax value (%d MB). The absolute maximum possible value " |
| 2260 | "is %d, but %d was found.\n", |
| 2261 | global.rlimit_memmax, |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2262 | (int)(mem / (global.ssl_session_max_cost + global.ssl_handshake_max_cost)), |
Willy Tarreau | 304e17e | 2020-03-10 17:54:54 +0100 | [diff] [blame] | 2263 | global.maxsslconn); |
| 2264 | exit(1); |
| 2265 | } |
| 2266 | |
| 2267 | if (check_if_maxsock_permitted(compute_ideal_maxsock(global.maxconn))) |
| 2268 | break; |
| 2269 | } while (retried++ < 2); |
Willy Tarreau | d025648 | 2015-01-15 21:45:22 +0100 | [diff] [blame] | 2270 | |
| 2271 | if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) { |
| 2272 | if (sides && global.maxsslconn > sides * global.maxconn) { |
| 2273 | fprintf(stderr, "Note: global.maxsslconn is forced to %d which causes global.maxconn " |
| 2274 | "to be limited to %d. Better reduce global.maxsslconn to get more " |
| 2275 | "room for extra connections.\n", global.maxsslconn, global.maxconn); |
| 2276 | } |
| 2277 | fprintf(stderr, "Note: setting global.maxconn to %d\n", global.maxconn); |
| 2278 | } |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 2279 | } |
| 2280 | |
Willy Tarreau | a409f30 | 2020-03-10 17:08:53 +0100 | [diff] [blame] | 2281 | global.maxsock = compute_ideal_maxsock(global.maxconn); |
| 2282 | global.hardmaxconn = global.maxconn; |
Willy Tarreau | a4818db | 2020-06-19 16:20:59 +0200 | [diff] [blame] | 2283 | if (!global.maxpipes) |
| 2284 | global.maxpipes = compute_ideal_maxpipes(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2285 | |
Olivier Houchard | 88698d9 | 2019-04-16 19:07:22 +0200 | [diff] [blame] | 2286 | /* update connection pool thresholds */ |
| 2287 | global.tune.pool_low_count = ((long long)global.maxsock * global.tune.pool_low_ratio + 99) / 100; |
| 2288 | global.tune.pool_high_count = ((long long)global.maxsock * global.tune.pool_high_ratio + 99) / 100; |
| 2289 | |
Willy Tarreau | c8d5b95 | 2019-02-27 17:25:52 +0100 | [diff] [blame] | 2290 | proxy_adjust_all_maxconn(); |
| 2291 | |
Willy Tarreau | 1db3771 | 2007-06-03 17:16:49 +0200 | [diff] [blame] | 2292 | if (global.tune.maxpollevents <= 0) |
| 2293 | global.tune.maxpollevents = MAX_POLL_EVENTS; |
| 2294 | |
Willy Tarreau | 060a761 | 2021-03-10 11:06:26 +0100 | [diff] [blame] | 2295 | if (global.tune.runqueue_depth <= 0) { |
| 2296 | /* tests on various thread counts from 1 to 64 have shown an |
| 2297 | * optimal queue depth following roughly 1/sqrt(threads). |
| 2298 | */ |
| 2299 | int s = my_flsl(global.nbthread); |
| 2300 | s += (global.nbthread / s); // roughly twice the sqrt. |
| 2301 | global.tune.runqueue_depth = RUNQUEUE_DEPTH * 2 / s; |
| 2302 | } |
Olivier Houchard | 1599b80 | 2018-05-24 18:59:04 +0200 | [diff] [blame] | 2303 | |
Willy Tarreau | 6f4a82c | 2009-03-21 20:43:57 +0100 | [diff] [blame] | 2304 | if (global.tune.recv_enough == 0) |
| 2305 | global.tune.recv_enough = MIN_RECV_AT_ONCE_ENOUGH; |
| 2306 | |
Willy Tarreau | 27a674e | 2009-08-17 07:23:33 +0200 | [diff] [blame] | 2307 | if (global.tune.maxrewrite >= global.tune.bufsize / 2) |
| 2308 | global.tune.maxrewrite = global.tune.bufsize / 2; |
| 2309 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2310 | if (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)) { |
| 2311 | /* command line debug mode inhibits configuration mode */ |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 2312 | global.mode &= ~(MODE_DAEMON | MODE_QUIET); |
Willy Tarreau | 772f0dd | 2012-10-26 16:04:28 +0200 | [diff] [blame] | 2313 | global.mode |= (arg_mode & (MODE_DEBUG | MODE_FOREGROUND)); |
| 2314 | } |
| 2315 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 2316 | if (arg_mode & MODE_DAEMON) { |
Willy Tarreau | 772f0dd | 2012-10-26 16:04:28 +0200 | [diff] [blame] | 2317 | /* command line daemon mode inhibits foreground and debug modes mode */ |
| 2318 | global.mode &= ~(MODE_DEBUG | MODE_FOREGROUND); |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 2319 | global.mode |= arg_mode & MODE_DAEMON; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2320 | } |
Willy Tarreau | 772f0dd | 2012-10-26 16:04:28 +0200 | [diff] [blame] | 2321 | |
| 2322 | global.mode |= (arg_mode & (MODE_QUIET | MODE_VERBOSE)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2323 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 2324 | if ((global.mode & MODE_DEBUG) && (global.mode & (MODE_DAEMON | MODE_QUIET))) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2325 | ha_warning("<debug> mode incompatible with <quiet> and <daemon>. Keeping <debug> only.\n"); |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 2326 | global.mode &= ~(MODE_DAEMON | MODE_QUIET); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2327 | } |
| 2328 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 2329 | if ((global.nbproc > 1) && !(global.mode & (MODE_DAEMON | MODE_MWORKER))) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2330 | if (!(global.mode & (MODE_FOREGROUND | MODE_DEBUG))) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2331 | ha_warning("<nbproc> is only meaningful in daemon mode or master-worker mode. Setting limit to 1 process.\n"); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2332 | global.nbproc = 1; |
| 2333 | } |
| 2334 | |
| 2335 | if (global.nbproc < 1) |
| 2336 | global.nbproc = 1; |
| 2337 | |
Christopher Faulet | be0faa2 | 2017-08-29 15:37:10 +0200 | [diff] [blame] | 2338 | if (global.nbthread < 1) |
| 2339 | global.nbthread = 1; |
| 2340 | |
Christopher Faulet | 3ef2639 | 2017-08-29 16:46:57 +0200 | [diff] [blame] | 2341 | /* Realloc trash buffers because global.tune.bufsize may have changed */ |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 2342 | if (!init_trash_buffers(0)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2343 | ha_alert("failed to initialize trash buffers.\n"); |
Christopher Faulet | 3ef2639 | 2017-08-29 16:46:57 +0200 | [diff] [blame] | 2344 | exit(1); |
| 2345 | } |
| 2346 | |
Christopher Faulet | 96d4483 | 2017-11-14 22:02:30 +0100 | [diff] [blame] | 2347 | if (!init_log_buffers()) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2348 | ha_alert("failed to initialize log buffers.\n"); |
Christopher Faulet | 96d4483 | 2017-11-14 22:02:30 +0100 | [diff] [blame] | 2349 | exit(1); |
| 2350 | } |
| 2351 | |
Willy Tarreau | ef1d1f8 | 2007-04-16 00:25:25 +0200 | [diff] [blame] | 2352 | /* |
| 2353 | * Note: we could register external pollers here. |
| 2354 | * Built-in pollers have been registered before main(). |
| 2355 | */ |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2356 | |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 2357 | if (!(global.tune.options & GTUNE_USE_KQUEUE)) |
Willy Tarreau | 1e63130a | 2007-04-09 12:03:06 +0200 | [diff] [blame] | 2358 | disable_poller("kqueue"); |
| 2359 | |
Emmanuel Hocdet | 0ba4f48 | 2019-04-08 16:53:32 +0000 | [diff] [blame] | 2360 | if (!(global.tune.options & GTUNE_USE_EVPORTS)) |
| 2361 | disable_poller("evports"); |
| 2362 | |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 2363 | if (!(global.tune.options & GTUNE_USE_EPOLL)) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2364 | disable_poller("epoll"); |
| 2365 | |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 2366 | if (!(global.tune.options & GTUNE_USE_POLL)) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2367 | disable_poller("poll"); |
| 2368 | |
Willy Tarreau | 43b7899 | 2009-01-25 15:42:27 +0100 | [diff] [blame] | 2369 | if (!(global.tune.options & GTUNE_USE_SELECT)) |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2370 | disable_poller("select"); |
| 2371 | |
| 2372 | /* Note: we could disable any poller by name here */ |
| 2373 | |
Christopher Faulet | b3f4e14 | 2016-03-07 12:46:38 +0100 | [diff] [blame] | 2374 | if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) { |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 2375 | list_pollers(stderr); |
Christopher Faulet | b3f4e14 | 2016-03-07 12:46:38 +0100 | [diff] [blame] | 2376 | fprintf(stderr, "\n"); |
| 2377 | list_filters(stderr); |
| 2378 | } |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 2379 | |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2380 | if (!init_pollers()) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2381 | ha_alert("No polling mechanism available.\n" |
| 2382 | " It is likely that haproxy was built with TARGET=generic and that FD_SETSIZE\n" |
| 2383 | " is too low on this platform to support maxconn and the number of listeners\n" |
| 2384 | " and servers. You should rebuild haproxy specifying your system using TARGET=\n" |
| 2385 | " in order to support other polling systems (poll, epoll, kqueue) or reduce the\n" |
| 2386 | " global maxconn setting to accommodate the system's limitation. For reference,\n" |
| 2387 | " FD_SETSIZE=%d on this system, global.maxconn=%d resulting in a maximum of\n" |
| 2388 | " %d file descriptors. You should thus reduce global.maxconn by %d. Also,\n" |
| 2389 | " check build settings using 'haproxy -vv'.\n\n", |
| 2390 | FD_SETSIZE, global.maxconn, global.maxsock, (global.maxsock + 1 - FD_SETSIZE) / 2); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2391 | exit(1); |
| 2392 | } |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 2393 | if (global.mode & (MODE_VERBOSE|MODE_DEBUG)) { |
| 2394 | printf("Using %s() as the polling mechanism.\n", cur_poller.name); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2395 | } |
| 2396 | |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 2397 | if (!global.node) |
| 2398 | global.node = strdup(hostname); |
| 2399 | |
Willy Tarreau | 02b092f | 2020-10-07 18:36:54 +0200 | [diff] [blame] | 2400 | /* stop disabled proxies */ |
| 2401 | for (px = proxies_list; px; px = px->next) { |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 2402 | if (px->disabled) |
Willy Tarreau | 02b092f | 2020-10-07 18:36:54 +0200 | [diff] [blame] | 2403 | stop_proxy(px); |
| 2404 | } |
| 2405 | |
Thierry FOURNIER | a4a0f3d | 2015-01-23 12:08:30 +0100 | [diff] [blame] | 2406 | if (!hlua_post_init()) |
| 2407 | exit(1); |
Thomas Holmes | 6abded4 | 2015-05-12 16:23:58 +0100 | [diff] [blame] | 2408 | |
Maxime de Roucy | 0f50392 | 2016-05-13 23:52:55 +0200 | [diff] [blame] | 2409 | free(err_msg); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2410 | } |
| 2411 | |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 2412 | void deinit(void) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2413 | { |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 2414 | struct proxy *p = proxies_list, *p0; |
Willy Tarreau | deb9ed8 | 2010-01-03 21:03:22 +0100 | [diff] [blame] | 2415 | struct wordlist *wl, *wlb; |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 2416 | struct uri_auth *uap, *ua = NULL; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 2417 | struct logsrv *log, *logb; |
Willy Tarreau | cdb737e | 2016-12-21 18:43:10 +0100 | [diff] [blame] | 2418 | struct build_opts_str *bol, *bolb; |
Tim Duesterhus | fdf904a | 2020-07-04 11:49:48 +0200 | [diff] [blame] | 2419 | struct post_deinit_fct *pdf, *pdfb; |
Tim Duesterhus | 17e363f | 2020-07-04 11:49:47 +0200 | [diff] [blame] | 2420 | struct proxy_deinit_fct *pxdf, *pxdfb; |
Tim Duesterhus | 0837eb1 | 2020-07-04 11:49:49 +0200 | [diff] [blame] | 2421 | struct server_deinit_fct *srvdf, *srvdfb; |
Tim Duesterhus | f0c25d2 | 2020-09-10 19:46:41 +0200 | [diff] [blame] | 2422 | struct per_thread_init_fct *tif, *tifb; |
| 2423 | struct per_thread_deinit_fct *tdf, *tdfb; |
| 2424 | struct per_thread_alloc_fct *taf, *tafb; |
| 2425 | struct per_thread_free_fct *tff, *tffb; |
Tim Duesterhus | 34bef07 | 2020-07-04 11:49:50 +0200 | [diff] [blame] | 2426 | struct post_server_check_fct *pscf, *pscfb; |
Tim Duesterhus | fc85494 | 2020-09-10 19:46:42 +0200 | [diff] [blame] | 2427 | struct post_check_fct *pcf, *pcfb; |
Tim Duesterhus | 53508d6 | 2020-09-10 19:46:40 +0200 | [diff] [blame] | 2428 | struct post_proxy_check_fct *ppcf, *ppcfb; |
Willy Tarreau | ae7bc4a | 2020-09-23 16:46:22 +0200 | [diff] [blame] | 2429 | int cur_fd; |
| 2430 | |
| 2431 | /* At this point the listeners state is weird: |
| 2432 | * - most listeners are still bound and referenced in their protocol |
| 2433 | * - some might be zombies that are not in their proto anymore, but |
| 2434 | * still appear in their proxy's listeners with a valid FD. |
| 2435 | * - some might be stopped and still appear in their proxy as FD #-1 |
| 2436 | * - among all of them, some might be inherited hence shared and we're |
| 2437 | * not allowed to pause them or whatever, we must just close them. |
| 2438 | * - finally some are not listeners (pipes, logs, stdout, etc) and |
| 2439 | * must be left intact. |
| 2440 | * |
| 2441 | * The safe way to proceed is to unbind (and close) whatever is not yet |
| 2442 | * unbound so that no more receiver/listener remains alive. Then close |
| 2443 | * remaining listener FDs, which correspond to zombie listeners (those |
| 2444 | * belonging to disabled proxies that were in another process). |
| 2445 | * objt_listener() would be cleaner here but not converted yet. |
| 2446 | */ |
| 2447 | protocol_unbind_all(); |
| 2448 | |
| 2449 | for (cur_fd = 0; cur_fd < global.maxsock; cur_fd++) { |
Willy Tarreau | 1a3770c | 2020-10-14 12:13:51 +0200 | [diff] [blame] | 2450 | if (!fdtab || !fdtab[cur_fd].owner) |
Willy Tarreau | ae7bc4a | 2020-09-23 16:46:22 +0200 | [diff] [blame] | 2451 | continue; |
| 2452 | |
Willy Tarreau | a74cb38 | 2020-10-15 21:29:49 +0200 | [diff] [blame] | 2453 | if (fdtab[cur_fd].iocb == &sock_accept_iocb) { |
Willy Tarreau | ae7bc4a | 2020-09-23 16:46:22 +0200 | [diff] [blame] | 2454 | struct listener *l = fdtab[cur_fd].owner; |
| 2455 | |
| 2456 | BUG_ON(l->state != LI_INIT); |
| 2457 | unbind_listener(l); |
| 2458 | } |
| 2459 | } |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 2460 | |
Willy Tarreau | 24f4efa | 2010-08-27 17:56:48 +0200 | [diff] [blame] | 2461 | deinit_signals(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2462 | while (p) { |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 2463 | /* build a list of unique uri_auths */ |
| 2464 | if (!ua) |
| 2465 | ua = p->uri_auth; |
| 2466 | else { |
| 2467 | /* check if p->uri_auth is unique */ |
| 2468 | for (uap = ua; uap; uap=uap->next) |
| 2469 | if (uap == p->uri_auth) |
| 2470 | break; |
| 2471 | |
Willy Tarreau | accc4e1 | 2008-06-24 11:14:45 +0200 | [diff] [blame] | 2472 | if (!uap && p->uri_auth) { |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 2473 | /* add it, if it is */ |
| 2474 | p->uri_auth->next = ua; |
| 2475 | ua = p->uri_auth; |
| 2476 | } |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 2477 | } |
| 2478 | |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 2479 | p0 = p; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2480 | p = p->next; |
Amaury Denoyelle | 27fefa1 | 2021-03-24 16:13:20 +0100 | [diff] [blame] | 2481 | free_proxy(p0); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2482 | }/* end while(p) */ |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 2483 | |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 2484 | while (ua) { |
Tim Duesterhus | 00f00cf | 2020-09-10 19:46:38 +0200 | [diff] [blame] | 2485 | struct stat_scope *scope, *scopep; |
| 2486 | |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 2487 | uap = ua; |
| 2488 | ua = ua->next; |
| 2489 | |
Willy Tarreau | a534fea | 2008-08-03 12:19:50 +0200 | [diff] [blame] | 2490 | free(uap->uri_prefix); |
| 2491 | free(uap->auth_realm); |
Krzysztof Piotr Oledzki | 48cb2ae | 2009-10-02 22:51:14 +0200 | [diff] [blame] | 2492 | free(uap->node); |
| 2493 | free(uap->desc); |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 2494 | |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 2495 | userlist_free(uap->userlist); |
Amaury Denoyelle | 68fd7e4 | 2021-03-25 17:15:52 +0100 | [diff] [blame] | 2496 | free_act_rules(&uap->http_req_rules); |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 2497 | |
Tim Duesterhus | 00f00cf | 2020-09-10 19:46:38 +0200 | [diff] [blame] | 2498 | scope = uap->scope; |
| 2499 | while (scope) { |
| 2500 | scopep = scope; |
| 2501 | scope = scope->next; |
| 2502 | |
| 2503 | free(scopep->px_id); |
| 2504 | free(scopep); |
| 2505 | } |
| 2506 | |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 2507 | free(uap); |
| 2508 | } |
| 2509 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 2510 | userlist_free(userlist); |
| 2511 | |
David Carlier | 834cb2e | 2015-09-25 12:02:25 +0100 | [diff] [blame] | 2512 | cfg_unregister_sections(); |
| 2513 | |
Christopher Faulet | 0132d06 | 2017-07-26 15:33:35 +0200 | [diff] [blame] | 2514 | deinit_log_buffers(); |
David Carlier | 834cb2e | 2015-09-25 12:02:25 +0100 | [diff] [blame] | 2515 | |
Willy Tarreau | 05554e6 | 2016-12-21 20:46:26 +0100 | [diff] [blame] | 2516 | list_for_each_entry(pdf, &post_deinit_list, list) |
| 2517 | pdf->fct(); |
| 2518 | |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 2519 | ha_free(&global.log_send_hostname); |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 2520 | chunk_destroy(&global.log_tag); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 2521 | ha_free(&global.chroot); |
| 2522 | ha_free(&global.pidfile); |
| 2523 | ha_free(&global.node); |
| 2524 | ha_free(&global.desc); |
| 2525 | ha_free(&oldpids); |
| 2526 | ha_free(&old_argv); |
| 2527 | ha_free(&localpeer); |
| 2528 | ha_free(&global.server_state_base); |
| 2529 | ha_free(&global.server_state_file); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 2530 | task_destroy(idle_conn_task); |
Olivier Houchard | 9ea5d36 | 2019-02-14 18:29:09 +0100 | [diff] [blame] | 2531 | idle_conn_task = NULL; |
Krzysztof Piotr Oledzki | 8001d61 | 2008-05-31 13:53:23 +0200 | [diff] [blame] | 2532 | |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 2533 | list_for_each_entry_safe(log, logb, &global.logsrvs, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2534 | LIST_DELETE(&log->list); |
Amaury Denoyelle | d688e01 | 2021-04-20 17:05:47 +0200 | [diff] [blame] | 2535 | free(log->conf.file); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 2536 | free(log); |
| 2537 | } |
Willy Tarreau | 477ecd8 | 2010-01-03 21:12:30 +0100 | [diff] [blame] | 2538 | list_for_each_entry_safe(wl, wlb, &cfg_cfgfiles, list) { |
Maxime de Roucy | 0f50392 | 2016-05-13 23:52:55 +0200 | [diff] [blame] | 2539 | free(wl->s); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2540 | LIST_DELETE(&wl->list); |
Willy Tarreau | 477ecd8 | 2010-01-03 21:12:30 +0100 | [diff] [blame] | 2541 | free(wl); |
| 2542 | } |
| 2543 | |
Willy Tarreau | cdb737e | 2016-12-21 18:43:10 +0100 | [diff] [blame] | 2544 | list_for_each_entry_safe(bol, bolb, &build_opts_list, list) { |
| 2545 | if (bol->must_free) |
| 2546 | free((void *)bol->str); |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2547 | LIST_DELETE(&bol->list); |
Willy Tarreau | cdb737e | 2016-12-21 18:43:10 +0100 | [diff] [blame] | 2548 | free(bol); |
| 2549 | } |
| 2550 | |
Tim Duesterhus | 17e363f | 2020-07-04 11:49:47 +0200 | [diff] [blame] | 2551 | list_for_each_entry_safe(pxdf, pxdfb, &proxy_deinit_list, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2552 | LIST_DELETE(&pxdf->list); |
Tim Duesterhus | 17e363f | 2020-07-04 11:49:47 +0200 | [diff] [blame] | 2553 | free(pxdf); |
| 2554 | } |
| 2555 | |
Tim Duesterhus | fdf904a | 2020-07-04 11:49:48 +0200 | [diff] [blame] | 2556 | list_for_each_entry_safe(pdf, pdfb, &post_deinit_list, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2557 | LIST_DELETE(&pdf->list); |
Tim Duesterhus | fdf904a | 2020-07-04 11:49:48 +0200 | [diff] [blame] | 2558 | free(pdf); |
| 2559 | } |
| 2560 | |
Tim Duesterhus | 0837eb1 | 2020-07-04 11:49:49 +0200 | [diff] [blame] | 2561 | list_for_each_entry_safe(srvdf, srvdfb, &server_deinit_list, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2562 | LIST_DELETE(&srvdf->list); |
Tim Duesterhus | 0837eb1 | 2020-07-04 11:49:49 +0200 | [diff] [blame] | 2563 | free(srvdf); |
| 2564 | } |
| 2565 | |
Tim Duesterhus | fc85494 | 2020-09-10 19:46:42 +0200 | [diff] [blame] | 2566 | list_for_each_entry_safe(pcf, pcfb, &post_check_list, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2567 | LIST_DELETE(&pcf->list); |
Tim Duesterhus | fc85494 | 2020-09-10 19:46:42 +0200 | [diff] [blame] | 2568 | free(pcf); |
| 2569 | } |
| 2570 | |
Tim Duesterhus | 34bef07 | 2020-07-04 11:49:50 +0200 | [diff] [blame] | 2571 | list_for_each_entry_safe(pscf, pscfb, &post_server_check_list, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2572 | LIST_DELETE(&pscf->list); |
Tim Duesterhus | 34bef07 | 2020-07-04 11:49:50 +0200 | [diff] [blame] | 2573 | free(pscf); |
| 2574 | } |
| 2575 | |
Tim Duesterhus | 53508d6 | 2020-09-10 19:46:40 +0200 | [diff] [blame] | 2576 | list_for_each_entry_safe(ppcf, ppcfb, &post_proxy_check_list, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2577 | LIST_DELETE(&ppcf->list); |
Tim Duesterhus | 53508d6 | 2020-09-10 19:46:40 +0200 | [diff] [blame] | 2578 | free(ppcf); |
| 2579 | } |
| 2580 | |
Tim Duesterhus | f0c25d2 | 2020-09-10 19:46:41 +0200 | [diff] [blame] | 2581 | list_for_each_entry_safe(tif, tifb, &per_thread_init_list, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2582 | LIST_DELETE(&tif->list); |
Tim Duesterhus | f0c25d2 | 2020-09-10 19:46:41 +0200 | [diff] [blame] | 2583 | free(tif); |
| 2584 | } |
| 2585 | |
| 2586 | list_for_each_entry_safe(tdf, tdfb, &per_thread_deinit_list, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2587 | LIST_DELETE(&tdf->list); |
Tim Duesterhus | f0c25d2 | 2020-09-10 19:46:41 +0200 | [diff] [blame] | 2588 | free(tdf); |
| 2589 | } |
| 2590 | |
| 2591 | list_for_each_entry_safe(taf, tafb, &per_thread_alloc_list, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2592 | LIST_DELETE(&taf->list); |
Tim Duesterhus | f0c25d2 | 2020-09-10 19:46:41 +0200 | [diff] [blame] | 2593 | free(taf); |
| 2594 | } |
| 2595 | |
| 2596 | list_for_each_entry_safe(tff, tffb, &per_thread_free_list, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2597 | LIST_DELETE(&tff->list); |
Tim Duesterhus | f0c25d2 | 2020-09-10 19:46:41 +0200 | [diff] [blame] | 2598 | free(tff); |
| 2599 | } |
| 2600 | |
Willy Tarreau | cfc4f24 | 2021-05-08 11:41:28 +0200 | [diff] [blame] | 2601 | vars_prune(&proc_vars, NULL, NULL); |
Willy Tarreau | 2455ceb | 2018-11-26 15:57:34 +0100 | [diff] [blame] | 2602 | pool_destroy_all(); |
Krzysztof Piotr Oledzki | a643baf | 2008-05-29 23:53:44 +0200 | [diff] [blame] | 2603 | deinit_pollers(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2604 | } /* end deinit() */ |
| 2605 | |
Willy Tarreau | f3ca5a0 | 2020-06-15 18:43:46 +0200 | [diff] [blame] | 2606 | __attribute__((noreturn)) void deinit_and_exit(int status) |
Tim Duesterhus | 2654055 | 2020-06-14 00:37:41 +0200 | [diff] [blame] | 2607 | { |
Amaury Denoyelle | 890f4be | 2021-08-09 15:02:56 +0200 | [diff] [blame] | 2608 | global.mode |= MODE_STOPPING; |
Tim Duesterhus | 2654055 | 2020-06-14 00:37:41 +0200 | [diff] [blame] | 2609 | deinit(); |
| 2610 | exit(status); |
| 2611 | } |
William Lallemand | 7216032 | 2018-11-06 17:37:16 +0100 | [diff] [blame] | 2612 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 2613 | /* Runs the polling loop */ |
Willy Tarreau | 3ebd55e | 2020-03-03 14:59:56 +0100 | [diff] [blame] | 2614 | void run_poll_loop() |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2615 | { |
Willy Tarreau | 2ae84e4 | 2019-05-28 16:44:05 +0200 | [diff] [blame] | 2616 | int next, wake; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2617 | |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 2618 | tv_update_date(0,1); |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2619 | while (1) { |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 2620 | wake_expired_tasks(); |
| 2621 | |
William Lallemand | 1aab50b | 2018-06-07 09:46:01 +0200 | [diff] [blame] | 2622 | /* check if we caught some signals and process them in the |
| 2623 | first thread */ |
Willy Tarreau | a7ad4ae | 2020-06-19 12:06:34 +0200 | [diff] [blame] | 2624 | if (signal_queue_len && tid == 0) { |
| 2625 | activity[tid].wake_signal++; |
William Lallemand | 1aab50b | 2018-06-07 09:46:01 +0200 | [diff] [blame] | 2626 | signal_process_queue(); |
Willy Tarreau | a7ad4ae | 2020-06-19 12:06:34 +0200 | [diff] [blame] | 2627 | } |
| 2628 | |
| 2629 | /* Process a few tasks */ |
| 2630 | process_runnable_tasks(); |
Willy Tarreau | 2985794 | 2009-05-10 09:01:21 +0200 | [diff] [blame] | 2631 | |
Willy Tarreau | 7067b3a | 2019-06-02 11:11:29 +0200 | [diff] [blame] | 2632 | /* also stop if we failed to cleanly stop all tasks */ |
| 2633 | if (killed > 1) |
| 2634 | break; |
| 2635 | |
Willy Tarreau | 10146c9 | 2015-04-13 20:44:19 +0200 | [diff] [blame] | 2636 | /* expire immediately if events are pending */ |
Willy Tarreau | 2ae84e4 | 2019-05-28 16:44:05 +0200 | [diff] [blame] | 2637 | wake = 1; |
Olivier Houchard | 305d5ab | 2019-07-24 18:07:06 +0200 | [diff] [blame] | 2638 | if (thread_has_tasks()) |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 2639 | activity[tid].wake_tasks++; |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 2640 | else { |
Olivier Houchard | b23a61f | 2019-03-08 18:51:17 +0100 | [diff] [blame] | 2641 | _HA_ATOMIC_OR(&sleeping_thread_mask, tid_bit); |
| 2642 | __ha_barrier_atomic_store(); |
Willy Tarreau | 95abd5b | 2020-03-23 09:33:32 +0100 | [diff] [blame] | 2643 | if (thread_has_tasks()) { |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 2644 | activity[tid].wake_tasks++; |
Olivier Houchard | b23a61f | 2019-03-08 18:51:17 +0100 | [diff] [blame] | 2645 | _HA_ATOMIC_AND(&sleeping_thread_mask, ~tid_bit); |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 2646 | } else |
Willy Tarreau | 2ae84e4 | 2019-05-28 16:44:05 +0200 | [diff] [blame] | 2647 | wake = 0; |
Olivier Houchard | 79321b9 | 2018-07-26 17:55:11 +0200 | [diff] [blame] | 2648 | } |
Willy Tarreau | 10146c9 | 2015-04-13 20:44:19 +0200 | [diff] [blame] | 2649 | |
Willy Tarreau | 4f46a35 | 2020-03-23 09:27:28 +0100 | [diff] [blame] | 2650 | if (!wake) { |
Willy Tarreau | d7a6b2f | 2020-05-13 13:51:01 +0200 | [diff] [blame] | 2651 | int i; |
| 2652 | |
| 2653 | if (stopping) { |
Ilya Shipitsin | 3df5989 | 2021-05-10 12:50:00 +0500 | [diff] [blame] | 2654 | /* stop muxes before acknowledging stopping */ |
Amaury Denoyelle | d3a88c1 | 2021-05-03 10:47:51 +0200 | [diff] [blame] | 2655 | if (!(stopping_thread_mask & tid_bit)) { |
| 2656 | task_wakeup(mux_stopping_data[tid].task, TASK_WOKEN_OTHER); |
| 2657 | wake = 1; |
| 2658 | } |
| 2659 | |
Willy Tarreau | 1db4273 | 2021-04-06 11:44:07 +0200 | [diff] [blame] | 2660 | if (_HA_ATOMIC_OR_FETCH(&stopping_thread_mask, tid_bit) == tid_bit) { |
Willy Tarreau | d645574 | 2020-05-13 14:30:25 +0200 | [diff] [blame] | 2661 | /* notify all threads that stopping was just set */ |
| 2662 | for (i = 0; i < global.nbthread; i++) |
Willy Tarreau | 369a2ef | 2020-06-29 19:23:19 +0200 | [diff] [blame] | 2663 | if (((all_threads_mask & ~stopping_thread_mask) >> i) & 1) |
Willy Tarreau | d645574 | 2020-05-13 14:30:25 +0200 | [diff] [blame] | 2664 | wake_thread(i); |
| 2665 | } |
Willy Tarreau | d7a6b2f | 2020-05-13 13:51:01 +0200 | [diff] [blame] | 2666 | } |
Willy Tarreau | 4f46a35 | 2020-03-23 09:27:28 +0100 | [diff] [blame] | 2667 | |
| 2668 | /* stop when there's nothing left to do */ |
| 2669 | if ((jobs - unstoppable_jobs) == 0 && |
Willy Tarreau | d7a6b2f | 2020-05-13 13:51:01 +0200 | [diff] [blame] | 2670 | (stopping_thread_mask & all_threads_mask) == all_threads_mask) { |
| 2671 | /* wake all threads waiting on jobs==0 */ |
| 2672 | for (i = 0; i < global.nbthread; i++) |
| 2673 | if (((all_threads_mask & ~tid_bit) >> i) & 1) |
| 2674 | wake_thread(i); |
Willy Tarreau | 4f46a35 | 2020-03-23 09:27:28 +0100 | [diff] [blame] | 2675 | break; |
Willy Tarreau | d7a6b2f | 2020-05-13 13:51:01 +0200 | [diff] [blame] | 2676 | } |
Willy Tarreau | 4f46a35 | 2020-03-23 09:27:28 +0100 | [diff] [blame] | 2677 | } |
| 2678 | |
Willy Tarreau | c49ba52 | 2019-12-11 08:12:23 +0100 | [diff] [blame] | 2679 | /* If we have to sleep, measure how long */ |
| 2680 | next = wake ? TICK_ETERNITY : next_timer_expiry(); |
| 2681 | |
Willy Tarreau | 58b458d | 2008-06-29 22:40:23 +0200 | [diff] [blame] | 2682 | /* The poller will ensure it returns around <next> */ |
Willy Tarreau | 2ae84e4 | 2019-05-28 16:44:05 +0200 | [diff] [blame] | 2683 | cur_poller.poll(&cur_poller, next, wake); |
Emeric Brun | 64cc49c | 2017-10-03 14:46:45 +0200 | [diff] [blame] | 2684 | |
Willy Tarreau | d80cb4e | 2018-01-20 19:30:13 +0100 | [diff] [blame] | 2685 | activity[tid].loops++; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 2686 | } |
| 2687 | } |
| 2688 | |
Christopher Faulet | 1d17c10 | 2017-08-29 15:38:48 +0200 | [diff] [blame] | 2689 | static void *run_thread_poll_loop(void *data) |
| 2690 | { |
Willy Tarreau | 082b628 | 2019-05-22 14:42:12 +0200 | [diff] [blame] | 2691 | struct per_thread_alloc_fct *ptaf; |
Christopher Faulet | 1d17c10 | 2017-08-29 15:38:48 +0200 | [diff] [blame] | 2692 | struct per_thread_init_fct *ptif; |
| 2693 | struct per_thread_deinit_fct *ptdf; |
Willy Tarreau | 082b628 | 2019-05-22 14:42:12 +0200 | [diff] [blame] | 2694 | struct per_thread_free_fct *ptff; |
Willy Tarreau | 34a150c | 2019-06-11 09:16:41 +0200 | [diff] [blame] | 2695 | static int init_left = 0; |
Willy Tarreau | af613e8 | 2020-06-05 08:40:51 +0200 | [diff] [blame] | 2696 | __decl_thread(static pthread_mutex_t init_mutex = PTHREAD_MUTEX_INITIALIZER); |
| 2697 | __decl_thread(static pthread_cond_t init_cond = PTHREAD_COND_INITIALIZER); |
Christopher Faulet | 1d17c10 | 2017-08-29 15:38:48 +0200 | [diff] [blame] | 2698 | |
Willy Tarreau | b4f7cc3 | 2019-05-03 09:27:30 +0200 | [diff] [blame] | 2699 | ha_set_tid((unsigned long)data); |
Willy Tarreau | d022e9c | 2019-09-24 08:25:15 +0200 | [diff] [blame] | 2700 | sched = &task_per_thread[tid]; |
Willy Tarreau | 91e6df0 | 2019-05-03 17:21:18 +0200 | [diff] [blame] | 2701 | |
Willy Tarreau | f617824 | 2019-05-21 19:46:58 +0200 | [diff] [blame] | 2702 | #if (_POSIX_TIMERS > 0) && defined(_POSIX_THREAD_CPUTIME) |
Willy Tarreau | 91e6df0 | 2019-05-03 17:21:18 +0200 | [diff] [blame] | 2703 | #ifdef USE_THREAD |
Willy Tarreau | 8323a37 | 2019-05-20 18:57:53 +0200 | [diff] [blame] | 2704 | pthread_getcpuclockid(pthread_self(), &ti->clock_id); |
Willy Tarreau | 624dcbf | 2019-05-20 20:23:06 +0200 | [diff] [blame] | 2705 | #else |
Willy Tarreau | 8323a37 | 2019-05-20 18:57:53 +0200 | [diff] [blame] | 2706 | ti->clock_id = CLOCK_THREAD_CPUTIME_ID; |
Willy Tarreau | 91e6df0 | 2019-05-03 17:21:18 +0200 | [diff] [blame] | 2707 | #endif |
Willy Tarreau | 663fda4 | 2019-05-21 15:14:08 +0200 | [diff] [blame] | 2708 | #endif |
Willy Tarreau | 6ec902a | 2019-06-07 14:41:11 +0200 | [diff] [blame] | 2709 | /* Now, initialize one thread init at a time. This is better since |
| 2710 | * some init code is a bit tricky and may release global resources |
| 2711 | * after reallocating them locally. This will also ensure there is |
| 2712 | * no race on file descriptors allocation. |
| 2713 | */ |
Willy Tarreau | 34a150c | 2019-06-11 09:16:41 +0200 | [diff] [blame] | 2714 | #ifdef USE_THREAD |
| 2715 | pthread_mutex_lock(&init_mutex); |
| 2716 | #endif |
| 2717 | /* The first thread must set the number of threads left */ |
| 2718 | if (!init_left) |
| 2719 | init_left = global.nbthread; |
| 2720 | init_left--; |
Willy Tarreau | 91e6df0 | 2019-05-03 17:21:18 +0200 | [diff] [blame] | 2721 | |
Willy Tarreau | c4c80fb | 2021-04-11 15:00:34 +0200 | [diff] [blame] | 2722 | tv_init_thread_date(); |
Christopher Faulet | 1d17c10 | 2017-08-29 15:38:48 +0200 | [diff] [blame] | 2723 | |
Willy Tarreau | 082b628 | 2019-05-22 14:42:12 +0200 | [diff] [blame] | 2724 | /* per-thread alloc calls performed here are not allowed to snoop on |
| 2725 | * other threads, so they are free to initialize at their own rhythm |
| 2726 | * as long as they act as if they were alone. None of them may rely |
| 2727 | * on resources initialized by the other ones. |
| 2728 | */ |
| 2729 | list_for_each_entry(ptaf, &per_thread_alloc_list, list) { |
| 2730 | if (!ptaf->fct()) { |
| 2731 | ha_alert("failed to allocate resources for thread %u.\n", tid); |
| 2732 | exit(1); |
| 2733 | } |
| 2734 | } |
| 2735 | |
Willy Tarreau | 3078e9f | 2019-05-20 10:50:43 +0200 | [diff] [blame] | 2736 | /* per-thread init calls performed here are not allowed to snoop on |
| 2737 | * other threads, so they are free to initialize at their own rhythm |
| 2738 | * as long as they act as if they were alone. |
| 2739 | */ |
Christopher Faulet | 1d17c10 | 2017-08-29 15:38:48 +0200 | [diff] [blame] | 2740 | list_for_each_entry(ptif, &per_thread_init_list, list) { |
| 2741 | if (!ptif->fct()) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2742 | ha_alert("failed to initialize thread %u.\n", tid); |
Christopher Faulet | 1d17c10 | 2017-08-29 15:38:48 +0200 | [diff] [blame] | 2743 | exit(1); |
| 2744 | } |
| 2745 | } |
| 2746 | |
Willy Tarreau | 7109282 | 2019-06-10 09:51:04 +0200 | [diff] [blame] | 2747 | /* enabling protocols will result in fd_insert() calls to be performed, |
| 2748 | * we want all threads to have already allocated their local fd tables |
Willy Tarreau | 34a150c | 2019-06-11 09:16:41 +0200 | [diff] [blame] | 2749 | * before doing so, thus only the last thread does it. |
Willy Tarreau | 7109282 | 2019-06-10 09:51:04 +0200 | [diff] [blame] | 2750 | */ |
Willy Tarreau | 34a150c | 2019-06-11 09:16:41 +0200 | [diff] [blame] | 2751 | if (init_left == 0) |
Willy Tarreau | e4d7c9d | 2019-06-10 10:14:52 +0200 | [diff] [blame] | 2752 | protocol_enable_all(); |
Willy Tarreau | 6ec902a | 2019-06-07 14:41:11 +0200 | [diff] [blame] | 2753 | |
Willy Tarreau | 34a150c | 2019-06-11 09:16:41 +0200 | [diff] [blame] | 2754 | #ifdef USE_THREAD |
| 2755 | pthread_cond_broadcast(&init_cond); |
| 2756 | pthread_mutex_unlock(&init_mutex); |
| 2757 | |
| 2758 | /* now wait for other threads to finish starting */ |
| 2759 | pthread_mutex_lock(&init_mutex); |
| 2760 | while (init_left) |
| 2761 | pthread_cond_wait(&init_cond, &init_mutex); |
| 2762 | pthread_mutex_unlock(&init_mutex); |
| 2763 | #endif |
Willy Tarreau | 3078e9f | 2019-05-20 10:50:43 +0200 | [diff] [blame] | 2764 | |
Willy Tarreau | a45a8b5 | 2019-12-06 16:31:45 +0100 | [diff] [blame] | 2765 | #if defined(PR_SET_NO_NEW_PRIVS) && defined(USE_PRCTL) |
| 2766 | /* Let's refrain from using setuid executables. This way the impact of |
| 2767 | * an eventual vulnerability in a library remains limited. It may |
| 2768 | * impact external checks but who cares about them anyway ? In the |
| 2769 | * worst case it's possible to disable the option. Obviously we do this |
| 2770 | * in workers only. We can't hard-fail on this one as it really is |
| 2771 | * implementation dependent though we're interested in feedback, hence |
| 2772 | * the warning. |
| 2773 | */ |
| 2774 | if (!(global.tune.options & GTUNE_INSECURE_SETUID) && !master) { |
| 2775 | static int warn_fail; |
Willy Tarreau | 1851572 | 2021-04-06 11:57:41 +0200 | [diff] [blame] | 2776 | if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0) == -1 && !_HA_ATOMIC_FETCH_ADD(&warn_fail, 1)) { |
Willy Tarreau | a45a8b5 | 2019-12-06 16:31:45 +0100 | [diff] [blame] | 2777 | ha_warning("Failed to disable setuid, please report to developers with detailed " |
| 2778 | "information about your operating system. You can silence this warning " |
| 2779 | "by adding 'insecure-setuid-wanted' in the 'global' section.\n"); |
| 2780 | } |
| 2781 | } |
| 2782 | #endif |
| 2783 | |
Willy Tarreau | d96f112 | 2019-12-03 07:07:36 +0100 | [diff] [blame] | 2784 | #if defined(RLIMIT_NPROC) |
| 2785 | /* all threads have started, it's now time to prevent any new thread |
| 2786 | * or process from starting. Obviously we do this in workers only. We |
| 2787 | * can't hard-fail on this one as it really is implementation dependent |
| 2788 | * though we're interested in feedback, hence the warning. |
| 2789 | */ |
| 2790 | if (!(global.tune.options & GTUNE_INSECURE_FORK) && !master) { |
| 2791 | struct rlimit limit = { .rlim_cur = 0, .rlim_max = 0 }; |
| 2792 | static int warn_fail; |
| 2793 | |
Willy Tarreau | 1851572 | 2021-04-06 11:57:41 +0200 | [diff] [blame] | 2794 | if (setrlimit(RLIMIT_NPROC, &limit) == -1 && !_HA_ATOMIC_FETCH_ADD(&warn_fail, 1)) { |
Willy Tarreau | d96f112 | 2019-12-03 07:07:36 +0100 | [diff] [blame] | 2795 | ha_warning("Failed to disable forks, please report to developers with detailed " |
| 2796 | "information about your operating system. You can silence this warning " |
| 2797 | "by adding 'insecure-fork-wanted' in the 'global' section.\n"); |
| 2798 | } |
| 2799 | } |
| 2800 | #endif |
Christopher Faulet | 1d17c10 | 2017-08-29 15:38:48 +0200 | [diff] [blame] | 2801 | run_poll_loop(); |
| 2802 | |
| 2803 | list_for_each_entry(ptdf, &per_thread_deinit_list, list) |
| 2804 | ptdf->fct(); |
| 2805 | |
Willy Tarreau | 082b628 | 2019-05-22 14:42:12 +0200 | [diff] [blame] | 2806 | list_for_each_entry(ptff, &per_thread_free_list, list) |
| 2807 | ptff->fct(); |
| 2808 | |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 2809 | #ifdef USE_THREAD |
Olivier Houchard | b23a61f | 2019-03-08 18:51:17 +0100 | [diff] [blame] | 2810 | _HA_ATOMIC_AND(&all_threads_mask, ~tid_bit); |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 2811 | if (tid > 0) |
| 2812 | pthread_exit(NULL); |
Christopher Faulet | 1d17c10 | 2017-08-29 15:38:48 +0200 | [diff] [blame] | 2813 | #endif |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 2814 | return NULL; |
| 2815 | } |
Christopher Faulet | 1d17c10 | 2017-08-29 15:38:48 +0200 | [diff] [blame] | 2816 | |
William Dauchy | f9af9d7 | 2019-11-17 15:47:16 +0100 | [diff] [blame] | 2817 | /* set uid/gid depending on global settings */ |
| 2818 | static void set_identity(const char *program_name) |
| 2819 | { |
| 2820 | if (global.gid) { |
| 2821 | if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1) |
| 2822 | ha_warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'" |
| 2823 | " without 'uid'/'user' is generally useless.\n", program_name); |
| 2824 | |
| 2825 | if (setgid(global.gid) == -1) { |
| 2826 | ha_alert("[%s.main()] Cannot set gid %d.\n", program_name, global.gid); |
| 2827 | protocol_unbind_all(); |
| 2828 | exit(1); |
| 2829 | } |
| 2830 | } |
| 2831 | |
| 2832 | if (global.uid && setuid(global.uid) == -1) { |
| 2833 | ha_alert("[%s.main()] Cannot set uid %d.\n", program_name, global.uid); |
| 2834 | protocol_unbind_all(); |
| 2835 | exit(1); |
| 2836 | } |
| 2837 | } |
| 2838 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2839 | int main(int argc, char **argv) |
| 2840 | { |
| 2841 | int err, retry; |
| 2842 | struct rlimit limit; |
Willy Tarreau | 269ab31 | 2012-09-05 08:02:48 +0200 | [diff] [blame] | 2843 | int pidfd = -1; |
Willy Tarreau | 08293ed | 2021-07-14 17:54:01 +0200 | [diff] [blame] | 2844 | int intovf = (unsigned char)argc + 1; /* let the compiler know it's strictly positive */ |
| 2845 | |
Willy Tarreau | fa32d20 | 2022-07-21 09:55:22 +0200 | [diff] [blame] | 2846 | /* Catch broken toolchains */ |
| 2847 | if (sizeof(long) != sizeof(void *) || (intovf + 0x7FFFFFFF >= intovf)) { |
| 2848 | const char *msg; |
| 2849 | |
| 2850 | if (sizeof(long) != sizeof(void *)) |
| 2851 | /* Apparently MingW64 was not made for us and can also break openssl */ |
| 2852 | msg = "The compiler this program was built with uses unsupported integral type sizes.\n" |
| 2853 | "Most likely it follows the unsupported LLP64 model. Never try to link HAProxy\n" |
| 2854 | "against libraries built with that compiler either! Please only use a compiler\n" |
| 2855 | "producing ILP32 or LP64 programs for both programs and libraries.\n"; |
| 2856 | else if (intovf + 0x7FFFFFFF >= intovf) |
| 2857 | /* Catch forced CFLAGS that miss 2-complement integer overflow */ |
| 2858 | msg = "The source code was miscompiled by the compiler, which usually indicates that\n" |
| 2859 | "some of the CFLAGS needed to work around overzealous compiler optimizations\n" |
| 2860 | "were overwritten at build time. Please do not force CFLAGS, and read Makefile\n" |
| 2861 | "and INSTALL files to decide on the best way to pass your local build options.\n"; |
| 2862 | else |
| 2863 | msg = "Bug in the compiler bug detection code, please report it to developers!\n"; |
| 2864 | |
Willy Tarreau | 08293ed | 2021-07-14 17:54:01 +0200 | [diff] [blame] | 2865 | fprintf(stderr, |
| 2866 | "FATAL ERROR: invalid code detected -- cannot go further, please recompile!\n" |
Willy Tarreau | fa32d20 | 2022-07-21 09:55:22 +0200 | [diff] [blame] | 2867 | "%s" |
| 2868 | "\nBuild options :" |
Willy Tarreau | 08293ed | 2021-07-14 17:54:01 +0200 | [diff] [blame] | 2869 | #ifdef BUILD_TARGET |
Willy Tarreau | fa32d20 | 2022-07-21 09:55:22 +0200 | [diff] [blame] | 2870 | "\n TARGET = " BUILD_TARGET |
Willy Tarreau | 08293ed | 2021-07-14 17:54:01 +0200 | [diff] [blame] | 2871 | #endif |
| 2872 | #ifdef BUILD_CPU |
Willy Tarreau | fa32d20 | 2022-07-21 09:55:22 +0200 | [diff] [blame] | 2873 | "\n CPU = " BUILD_CPU |
Willy Tarreau | 08293ed | 2021-07-14 17:54:01 +0200 | [diff] [blame] | 2874 | #endif |
| 2875 | #ifdef BUILD_CC |
Willy Tarreau | fa32d20 | 2022-07-21 09:55:22 +0200 | [diff] [blame] | 2876 | "\n CC = " BUILD_CC |
Willy Tarreau | 08293ed | 2021-07-14 17:54:01 +0200 | [diff] [blame] | 2877 | #endif |
| 2878 | #ifdef BUILD_CFLAGS |
Willy Tarreau | fa32d20 | 2022-07-21 09:55:22 +0200 | [diff] [blame] | 2879 | "\n CFLAGS = " BUILD_CFLAGS |
Willy Tarreau | 08293ed | 2021-07-14 17:54:01 +0200 | [diff] [blame] | 2880 | #endif |
| 2881 | #ifdef BUILD_OPTIONS |
Willy Tarreau | fa32d20 | 2022-07-21 09:55:22 +0200 | [diff] [blame] | 2882 | "\n OPTIONS = " BUILD_OPTIONS |
Willy Tarreau | 08293ed | 2021-07-14 17:54:01 +0200 | [diff] [blame] | 2883 | #endif |
| 2884 | #ifdef BUILD_DEBUG |
Willy Tarreau | fa32d20 | 2022-07-21 09:55:22 +0200 | [diff] [blame] | 2885 | "\n DEBUG = " BUILD_DEBUG |
Willy Tarreau | 08293ed | 2021-07-14 17:54:01 +0200 | [diff] [blame] | 2886 | #endif |
Willy Tarreau | fa32d20 | 2022-07-21 09:55:22 +0200 | [diff] [blame] | 2887 | "\n\n", msg); |
| 2888 | |
Willy Tarreau | 08293ed | 2021-07-14 17:54:01 +0200 | [diff] [blame] | 2889 | return 1; |
| 2890 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2891 | |
Olivier Houchard | 5fa300d | 2018-02-03 15:15:21 +0100 | [diff] [blame] | 2892 | setvbuf(stdout, NULL, _IONBF, 0); |
Willy Tarreau | 5794fb0 | 2018-11-25 18:43:29 +0100 | [diff] [blame] | 2893 | |
Willy Tarreau | ff9c914 | 2019-02-07 10:39:36 +0100 | [diff] [blame] | 2894 | /* this can only safely be done here, though it's optimized away by |
| 2895 | * the compiler. |
| 2896 | */ |
| 2897 | if (MAX_PROCS < 1 || MAX_PROCS > LONGBITS) { |
| 2898 | ha_alert("MAX_PROCS value must be between 1 and %d inclusive; " |
| 2899 | "HAProxy was built with value %d, please fix it and rebuild.\n", |
| 2900 | LONGBITS, MAX_PROCS); |
| 2901 | exit(1); |
| 2902 | } |
| 2903 | |
Willy Tarreau | bf69640 | 2019-03-01 10:09:28 +0100 | [diff] [blame] | 2904 | /* take a copy of initial limits before we possibly change them */ |
| 2905 | getrlimit(RLIMIT_NOFILE, &limit); |
Willy Tarreau | 2bd0f81 | 2020-10-13 15:36:08 +0200 | [diff] [blame] | 2906 | |
| 2907 | if (limit.rlim_max == RLIM_INFINITY) |
| 2908 | limit.rlim_max = limit.rlim_cur; |
Willy Tarreau | bf69640 | 2019-03-01 10:09:28 +0100 | [diff] [blame] | 2909 | rlim_fd_cur_at_boot = limit.rlim_cur; |
| 2910 | rlim_fd_max_at_boot = limit.rlim_max; |
| 2911 | |
Willy Tarreau | 5794fb0 | 2018-11-25 18:43:29 +0100 | [diff] [blame] | 2912 | /* process all initcalls in order of potential dependency */ |
| 2913 | RUN_INITCALLS(STG_PREPARE); |
| 2914 | RUN_INITCALLS(STG_LOCK); |
| 2915 | RUN_INITCALLS(STG_ALLOC); |
| 2916 | RUN_INITCALLS(STG_POOL); |
| 2917 | RUN_INITCALLS(STG_REGISTER); |
| 2918 | RUN_INITCALLS(STG_INIT); |
| 2919 | |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 2920 | init(argc, argv); |
Willy Tarreau | 24f4efa | 2010-08-27 17:56:48 +0200 | [diff] [blame] | 2921 | signal_register_fct(SIGQUIT, dump, SIGQUIT); |
| 2922 | signal_register_fct(SIGUSR1, sig_soft_stop, SIGUSR1); |
| 2923 | signal_register_fct(SIGHUP, sig_dump_state, SIGHUP); |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 2924 | signal_register_fct(SIGUSR2, NULL, 0); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2925 | |
Willy Tarreau | e437c44 | 2010-03-17 18:02:46 +0100 | [diff] [blame] | 2926 | /* Always catch SIGPIPE even on platforms which define MSG_NOSIGNAL. |
| 2927 | * Some recent FreeBSD setups report broken pipes, and MSG_NOSIGNAL |
| 2928 | * was defined there, so let's stay on the safe side. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2929 | */ |
Willy Tarreau | 24f4efa | 2010-08-27 17:56:48 +0200 | [diff] [blame] | 2930 | signal_register_fct(SIGPIPE, NULL, 0); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2931 | |
Willy Tarreau | dc23a92 | 2011-02-16 11:10:36 +0100 | [diff] [blame] | 2932 | /* ulimits */ |
| 2933 | if (!global.rlimit_nofile) |
| 2934 | global.rlimit_nofile = global.maxsock; |
| 2935 | |
| 2936 | if (global.rlimit_nofile) { |
Willy Tarreau | e5cfdac | 2019-03-01 10:32:05 +0100 | [diff] [blame] | 2937 | limit.rlim_cur = global.rlimit_nofile; |
| 2938 | limit.rlim_max = MAX(rlim_fd_max_at_boot, limit.rlim_cur); |
| 2939 | |
Willy Tarreau | dc23a92 | 2011-02-16 11:10:36 +0100 | [diff] [blame] | 2940 | if (setrlimit(RLIMIT_NOFILE, &limit) == -1) { |
Willy Tarreau | ef63547 | 2016-06-21 11:48:18 +0200 | [diff] [blame] | 2941 | getrlimit(RLIMIT_NOFILE, &limit); |
William Dauchy | 0fec3ab | 2019-10-27 20:08:11 +0100 | [diff] [blame] | 2942 | if (global.tune.options & GTUNE_STRICT_LIMITS) { |
| 2943 | ha_alert("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n", |
| 2944 | argv[0], global.rlimit_nofile, (int)limit.rlim_cur); |
Jerome Magnin | 50f757c | 2021-01-12 20:19:38 +0100 | [diff] [blame] | 2945 | exit(1); |
William Dauchy | 0fec3ab | 2019-10-27 20:08:11 +0100 | [diff] [blame] | 2946 | } |
| 2947 | else { |
| 2948 | /* try to set it to the max possible at least */ |
| 2949 | limit.rlim_cur = limit.rlim_max; |
| 2950 | if (setrlimit(RLIMIT_NOFILE, &limit) != -1) |
| 2951 | getrlimit(RLIMIT_NOFILE, &limit); |
Willy Tarreau | 164dd0b | 2016-06-21 11:51:59 +0200 | [diff] [blame] | 2952 | |
William Dauchy | a519460 | 2020-03-28 19:29:58 +0100 | [diff] [blame] | 2953 | ha_warning("[%s.main()] Cannot raise FD limit to %d, limit is %d.\n", |
William Dauchy | 0fec3ab | 2019-10-27 20:08:11 +0100 | [diff] [blame] | 2954 | argv[0], global.rlimit_nofile, (int)limit.rlim_cur); |
| 2955 | global.rlimit_nofile = limit.rlim_cur; |
| 2956 | } |
Willy Tarreau | dc23a92 | 2011-02-16 11:10:36 +0100 | [diff] [blame] | 2957 | } |
| 2958 | } |
| 2959 | |
| 2960 | if (global.rlimit_memmax) { |
| 2961 | limit.rlim_cur = limit.rlim_max = |
Willy Tarreau | 7006045 | 2015-12-14 12:46:07 +0100 | [diff] [blame] | 2962 | global.rlimit_memmax * 1048576ULL; |
Willy Tarreau | dc23a92 | 2011-02-16 11:10:36 +0100 | [diff] [blame] | 2963 | #ifdef RLIMIT_AS |
| 2964 | if (setrlimit(RLIMIT_AS, &limit) == -1) { |
William Dauchy | 0fec3ab | 2019-10-27 20:08:11 +0100 | [diff] [blame] | 2965 | if (global.tune.options & GTUNE_STRICT_LIMITS) { |
| 2966 | ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n", |
| 2967 | argv[0], global.rlimit_memmax); |
Jerome Magnin | 50f757c | 2021-01-12 20:19:38 +0100 | [diff] [blame] | 2968 | exit(1); |
William Dauchy | 0fec3ab | 2019-10-27 20:08:11 +0100 | [diff] [blame] | 2969 | } |
| 2970 | else |
William Dauchy | a519460 | 2020-03-28 19:29:58 +0100 | [diff] [blame] | 2971 | ha_warning("[%s.main()] Cannot fix MEM limit to %d megs.\n", |
William Dauchy | 0fec3ab | 2019-10-27 20:08:11 +0100 | [diff] [blame] | 2972 | argv[0], global.rlimit_memmax); |
Willy Tarreau | dc23a92 | 2011-02-16 11:10:36 +0100 | [diff] [blame] | 2973 | } |
| 2974 | #else |
| 2975 | if (setrlimit(RLIMIT_DATA, &limit) == -1) { |
William Dauchy | 0fec3ab | 2019-10-27 20:08:11 +0100 | [diff] [blame] | 2976 | if (global.tune.options & GTUNE_STRICT_LIMITS) { |
| 2977 | ha_alert("[%s.main()] Cannot fix MEM limit to %d megs.\n", |
| 2978 | argv[0], global.rlimit_memmax); |
Jerome Magnin | 50f757c | 2021-01-12 20:19:38 +0100 | [diff] [blame] | 2979 | exit(1); |
William Dauchy | 0fec3ab | 2019-10-27 20:08:11 +0100 | [diff] [blame] | 2980 | } |
| 2981 | else |
William Dauchy | a519460 | 2020-03-28 19:29:58 +0100 | [diff] [blame] | 2982 | ha_warning("[%s.main()] Cannot fix MEM limit to %d megs.\n", |
William Dauchy | 0fec3ab | 2019-10-27 20:08:11 +0100 | [diff] [blame] | 2983 | argv[0], global.rlimit_memmax); |
Willy Tarreau | dc23a92 | 2011-02-16 11:10:36 +0100 | [diff] [blame] | 2984 | } |
| 2985 | #endif |
| 2986 | } |
| 2987 | |
William Lallemand | 9993c17 | 2022-01-07 18:19:42 +0100 | [diff] [blame] | 2988 | /* Try to get the listeners FD from the previous process using |
| 2989 | * _getsocks on the stat socket, it must never been done in wait mode |
| 2990 | * and check mode |
| 2991 | */ |
| 2992 | if (old_unixsocket && |
| 2993 | !(global.mode & (MODE_MWORKER_WAIT|MODE_CHECK))) { |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 2994 | if (strcmp("/dev/null", old_unixsocket) != 0) { |
Willy Tarreau | 4296174 | 2020-08-28 18:42:45 +0200 | [diff] [blame] | 2995 | if (sock_get_old_sockets(old_unixsocket) != 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2996 | ha_alert("Failed to get the sockets from the old process!\n"); |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 2997 | if (!(global.mode & MODE_MWORKER)) |
| 2998 | exit(1); |
| 2999 | } |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 3000 | } |
| 3001 | } |
William Lallemand | 85b0bd9 | 2017-06-01 17:38:53 +0200 | [diff] [blame] | 3002 | get_cur_unixsocket(); |
| 3003 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3004 | /* We will loop at most 100 times with 10 ms delay each time. |
| 3005 | * That's at most 1 second. We only send a signal to old pids |
| 3006 | * if we cannot grab at least one port. |
| 3007 | */ |
| 3008 | retry = MAX_START_RETRIES; |
| 3009 | err = ERR_NONE; |
| 3010 | while (retry >= 0) { |
| 3011 | struct timeval w; |
Willy Tarreau | e91bff2 | 2020-09-02 11:11:43 +0200 | [diff] [blame] | 3012 | err = protocol_bind_all(retry == 0 || nb_oldpids == 0); |
Willy Tarreau | e13e925 | 2007-12-20 23:05:50 +0100 | [diff] [blame] | 3013 | /* exit the loop on no error or fatal error */ |
| 3014 | if ((err & (ERR_RETRYABLE|ERR_FATAL)) != ERR_RETRYABLE) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3015 | break; |
Willy Tarreau | bb545b4 | 2010-08-25 12:58:59 +0200 | [diff] [blame] | 3016 | if (nb_oldpids == 0 || retry == 0) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3017 | break; |
| 3018 | |
| 3019 | /* FIXME-20060514: Solaris and OpenBSD do not support shutdown() on |
| 3020 | * listening sockets. So on those platforms, it would be wiser to |
| 3021 | * simply send SIGUSR1, which will not be undoable. |
| 3022 | */ |
Willy Tarreau | bb545b4 | 2010-08-25 12:58:59 +0200 | [diff] [blame] | 3023 | if (tell_old_pids(SIGTTOU) == 0) { |
| 3024 | /* no need to wait if we can't contact old pids */ |
| 3025 | retry = 0; |
| 3026 | continue; |
| 3027 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3028 | /* give some time to old processes to stop listening */ |
| 3029 | w.tv_sec = 0; |
| 3030 | w.tv_usec = 10*1000; |
| 3031 | select(0, NULL, NULL, NULL, &w); |
| 3032 | retry--; |
| 3033 | } |
| 3034 | |
Willy Tarreau | e91bff2 | 2020-09-02 11:11:43 +0200 | [diff] [blame] | 3035 | /* Note: protocol_bind_all() sends an alert when it fails. */ |
Willy Tarreau | 0a3b9d9 | 2009-02-04 17:05:23 +0100 | [diff] [blame] | 3036 | if ((err & ~ERR_WARN) != ERR_NONE) { |
Willy Tarreau | e91bff2 | 2020-09-02 11:11:43 +0200 | [diff] [blame] | 3037 | ha_alert("[%s.main()] Some protocols failed to start their listeners! Exiting.\n", argv[0]); |
Willy Tarreau | f68da46 | 2009-06-09 14:36:00 +0200 | [diff] [blame] | 3038 | if (retry != MAX_START_RETRIES && nb_oldpids) { |
| 3039 | protocol_unbind_all(); /* cleanup everything we can */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3040 | tell_old_pids(SIGTTIN); |
Willy Tarreau | f68da46 | 2009-06-09 14:36:00 +0200 | [diff] [blame] | 3041 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3042 | exit(1); |
| 3043 | } |
| 3044 | |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 3045 | if (!(global.mode & MODE_MWORKER_WAIT) && listeners == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3046 | ha_alert("[%s.main()] No enabled listener found (check for 'bind' directives) ! Exiting.\n", argv[0]); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3047 | /* Note: we don't have to send anything to the old pids because we |
| 3048 | * never stopped them. */ |
| 3049 | exit(1); |
| 3050 | } |
| 3051 | |
Willy Tarreau | e91bff2 | 2020-09-02 11:11:43 +0200 | [diff] [blame] | 3052 | /* Ok, all listeners should now be bound, close any leftover sockets |
Olivier Houchard | f73629d | 2017-04-05 22:33:04 +0200 | [diff] [blame] | 3053 | * the previous process gave us, we don't need them anymore |
| 3054 | */ |
Willy Tarreau | 9f77576 | 2022-01-28 18:28:18 +0100 | [diff] [blame] | 3055 | sock_drop_unused_old_sockets(); |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 3056 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3057 | /* prepare pause/play signals */ |
Willy Tarreau | 24f4efa | 2010-08-27 17:56:48 +0200 | [diff] [blame] | 3058 | signal_register_fct(SIGTTOU, sig_pause, SIGTTOU); |
| 3059 | signal_register_fct(SIGTTIN, sig_listen, SIGTTIN); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3060 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3061 | /* MODE_QUIET can inhibit alerts and warnings below this line */ |
| 3062 | |
PiBa-NL | 149a81a | 2017-12-25 21:03:31 +0100 | [diff] [blame] | 3063 | if (getenv("HAPROXY_MWORKER_REEXEC") != NULL) { |
| 3064 | /* either stdin/out/err are already closed or should stay as they are. */ |
| 3065 | if ((global.mode & MODE_DAEMON)) { |
| 3066 | /* daemon mode re-executing, stdin/stdout/stderr are already closed so keep quiet */ |
| 3067 | global.mode &= ~MODE_VERBOSE; |
| 3068 | global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */ |
| 3069 | } |
| 3070 | } else { |
| 3071 | if ((global.mode & MODE_QUIET) && !(global.mode & MODE_VERBOSE)) { |
| 3072 | /* detach from the tty */ |
William Lallemand | e134041 | 2017-12-28 16:09:36 +0100 | [diff] [blame] | 3073 | stdio_quiet(-1); |
PiBa-NL | 149a81a | 2017-12-25 21:03:31 +0100 | [diff] [blame] | 3074 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3075 | } |
| 3076 | |
| 3077 | /* open log & pid files before the chroot */ |
William Lallemand | 7af8e1d | 2022-02-14 09:02:14 +0100 | [diff] [blame] | 3078 | if ((global.mode & MODE_DAEMON || global.mode & MODE_MWORKER) && |
| 3079 | !(global.mode & MODE_MWORKER_WAIT) && global.pidfile != NULL) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3080 | unlink(global.pidfile); |
| 3081 | pidfd = open(global.pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0644); |
| 3082 | if (pidfd < 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3083 | ha_alert("[%s.main()] Cannot create pidfile %s\n", argv[0], global.pidfile); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3084 | if (nb_oldpids) |
| 3085 | tell_old_pids(SIGTTIN); |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 3086 | protocol_unbind_all(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3087 | exit(1); |
| 3088 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3089 | } |
| 3090 | |
Willy Tarreau | b38651a | 2007-03-24 17:24:39 +0100 | [diff] [blame] | 3091 | if ((global.last_checks & LSTCHK_NETADM) && global.uid) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3092 | ha_alert("[%s.main()] Some configuration options require full privileges, so global.uid cannot be changed.\n" |
| 3093 | "", argv[0]); |
Willy Tarreau | dd81598 | 2007-10-16 12:25:14 +0200 | [diff] [blame] | 3094 | protocol_unbind_all(); |
Willy Tarreau | b38651a | 2007-03-24 17:24:39 +0100 | [diff] [blame] | 3095 | exit(1); |
| 3096 | } |
| 3097 | |
Jackie Tapia | 749f74c | 2020-07-22 18:59:40 -0500 | [diff] [blame] | 3098 | /* If the user is not root, we'll still let them try the configuration |
| 3099 | * but we inform them that unexpected behaviour may occur. |
Willy Tarreau | 4e30ed7 | 2009-02-04 18:02:48 +0100 | [diff] [blame] | 3100 | */ |
| 3101 | if ((global.last_checks & LSTCHK_NETADM) && getuid()) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3102 | ha_warning("[%s.main()] Some options which require full privileges" |
| 3103 | " might not work well.\n" |
| 3104 | "", argv[0]); |
Willy Tarreau | 4e30ed7 | 2009-02-04 18:02:48 +0100 | [diff] [blame] | 3105 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 3106 | if ((global.mode & (MODE_MWORKER|MODE_DAEMON)) == 0) { |
| 3107 | |
| 3108 | /* chroot if needed */ |
| 3109 | if (global.chroot != NULL) { |
| 3110 | if (chroot(global.chroot) == -1 || chdir("/") == -1) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3111 | ha_alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot); |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 3112 | if (nb_oldpids) |
| 3113 | tell_old_pids(SIGTTIN); |
| 3114 | protocol_unbind_all(); |
| 3115 | exit(1); |
| 3116 | } |
Willy Tarreau | f223cc0 | 2007-10-15 18:57:08 +0200 | [diff] [blame] | 3117 | } |
Willy Tarreau | f223cc0 | 2007-10-15 18:57:08 +0200 | [diff] [blame] | 3118 | } |
| 3119 | |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 3120 | if (nb_oldpids && !(global.mode & MODE_MWORKER_WAIT)) |
Willy Tarreau | bb545b4 | 2010-08-25 12:58:59 +0200 | [diff] [blame] | 3121 | nb_oldpids = tell_old_pids(oldpids_sig); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3122 | |
William Lallemand | 27edc4b | 2019-05-07 17:49:33 +0200 | [diff] [blame] | 3123 | /* send a SIGTERM to workers who have a too high reloads number */ |
| 3124 | if ((global.mode & MODE_MWORKER) && !(global.mode & MODE_MWORKER_WAIT)) |
| 3125 | mworker_kill_max_reloads(SIGTERM); |
| 3126 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3127 | /* Note that any error at this stage will be fatal because we will not |
| 3128 | * be able to restart the old pids. |
| 3129 | */ |
| 3130 | |
William Dauchy | f9af9d7 | 2019-11-17 15:47:16 +0100 | [diff] [blame] | 3131 | if ((global.mode & (MODE_MWORKER | MODE_DAEMON)) == 0) |
| 3132 | set_identity(argv[0]); |
Willy Tarreau | 636848a | 2019-04-15 19:38:50 +0200 | [diff] [blame] | 3133 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3134 | /* check ulimits */ |
| 3135 | limit.rlim_cur = limit.rlim_max = 0; |
| 3136 | getrlimit(RLIMIT_NOFILE, &limit); |
| 3137 | if (limit.rlim_cur < global.maxsock) { |
William Dauchy | 0fec3ab | 2019-10-27 20:08:11 +0100 | [diff] [blame] | 3138 | if (global.tune.options & GTUNE_STRICT_LIMITS) { |
| 3139 | ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. " |
| 3140 | "Please raise 'ulimit-n' to %d or more to avoid any trouble.\n", |
| 3141 | argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock, |
| 3142 | global.maxsock); |
Jerome Magnin | 50f757c | 2021-01-12 20:19:38 +0100 | [diff] [blame] | 3143 | exit(1); |
William Dauchy | 0fec3ab | 2019-10-27 20:08:11 +0100 | [diff] [blame] | 3144 | } |
| 3145 | else |
| 3146 | ha_alert("[%s.main()] FD limit (%d) too low for maxconn=%d/maxsock=%d. " |
William Dauchy | a519460 | 2020-03-28 19:29:58 +0100 | [diff] [blame] | 3147 | "Please raise 'ulimit-n' to %d or more to avoid any trouble.\n", |
William Dauchy | 0fec3ab | 2019-10-27 20:08:11 +0100 | [diff] [blame] | 3148 | argv[0], (int)limit.rlim_cur, global.maxconn, global.maxsock, |
| 3149 | global.maxsock); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3150 | } |
| 3151 | |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 3152 | if (global.mode & (MODE_DAEMON | MODE_MWORKER | MODE_MWORKER_WAIT)) { |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3153 | struct proxy *px; |
Willy Tarreau | f83d3fe | 2015-05-01 19:13:41 +0200 | [diff] [blame] | 3154 | struct peers *curpeers; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3155 | int ret = 0; |
| 3156 | int proc; |
William Lallemand | e134041 | 2017-12-28 16:09:36 +0100 | [diff] [blame] | 3157 | int devnullfd = -1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3158 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 3159 | /* |
| 3160 | * if daemon + mworker: must fork here to let a master |
| 3161 | * process live in background before forking children |
| 3162 | */ |
William Lallemand | 73b85e7 | 2017-06-01 17:38:51 +0200 | [diff] [blame] | 3163 | |
| 3164 | if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL) |
| 3165 | && (global.mode & MODE_MWORKER) |
| 3166 | && (global.mode & MODE_DAEMON)) { |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 3167 | ret = fork(); |
| 3168 | if (ret < 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3169 | ha_alert("[%s.main()] Cannot fork.\n", argv[0]); |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 3170 | protocol_unbind_all(); |
| 3171 | exit(1); /* there has been an error */ |
William Lallemand | bfd8eb5 | 2018-07-04 15:31:23 +0200 | [diff] [blame] | 3172 | } else if (ret > 0) { /* parent leave to daemonize */ |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 3173 | exit(0); |
William Lallemand | bfd8eb5 | 2018-07-04 15:31:23 +0200 | [diff] [blame] | 3174 | } else /* change the process group ID in the child (master process) */ |
| 3175 | setsid(); |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 3176 | } |
William Lallemand | e20b6a6 | 2017-06-01 17:38:55 +0200 | [diff] [blame] | 3177 | |
William Lallemand | e20b6a6 | 2017-06-01 17:38:55 +0200 | [diff] [blame] | 3178 | |
William Lallemand | deed780 | 2017-11-06 11:00:04 +0100 | [diff] [blame] | 3179 | /* if in master-worker mode, write the PID of the father */ |
| 3180 | if (global.mode & MODE_MWORKER) { |
| 3181 | char pidstr[100]; |
Willy Tarreau | 76a80c7 | 2019-06-22 07:41:38 +0200 | [diff] [blame] | 3182 | snprintf(pidstr, sizeof(pidstr), "%d\n", (int)getpid()); |
Willy Tarreau | 46ec48b | 2018-01-23 19:20:19 +0100 | [diff] [blame] | 3183 | if (pidfd >= 0) |
Willy Tarreau | 2e8ab6b | 2020-03-14 11:03:20 +0100 | [diff] [blame] | 3184 | DISGUISE(write(pidfd, pidstr, strlen(pidstr))); |
William Lallemand | deed780 | 2017-11-06 11:00:04 +0100 | [diff] [blame] | 3185 | } |
| 3186 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3187 | /* the father launches the required number of processes */ |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 3188 | if (!(global.mode & MODE_MWORKER_WAIT)) { |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 3189 | if (global.mode & MODE_MWORKER) |
| 3190 | mworker_ext_launch_all(); |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 3191 | for (proc = 0; proc < global.nbproc; proc++) { |
| 3192 | ret = fork(); |
| 3193 | if (ret < 0) { |
| 3194 | ha_alert("[%s.main()] Cannot fork.\n", argv[0]); |
| 3195 | protocol_unbind_all(); |
| 3196 | exit(1); /* there has been an error */ |
| 3197 | } |
Willy Tarreau | 52bf839 | 2020-03-08 00:42:37 +0100 | [diff] [blame] | 3198 | else if (ret == 0) { /* child breaks here */ |
Willy Tarreau | a9274a1 | 2021-07-21 10:17:02 +0200 | [diff] [blame] | 3199 | /* This one must not be exported, it's internal! */ |
| 3200 | unsetenv("HAPROXY_MWORKER_REEXEC"); |
Willy Tarreau | 52bf839 | 2020-03-08 00:42:37 +0100 | [diff] [blame] | 3201 | ha_random_jump96(relative_pid); |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 3202 | break; |
Willy Tarreau | 52bf839 | 2020-03-08 00:42:37 +0100 | [diff] [blame] | 3203 | } |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 3204 | if (pidfd >= 0 && !(global.mode & MODE_MWORKER)) { |
| 3205 | char pidstr[100]; |
| 3206 | snprintf(pidstr, sizeof(pidstr), "%d\n", ret); |
Willy Tarreau | 2e8ab6b | 2020-03-14 11:03:20 +0100 | [diff] [blame] | 3207 | DISGUISE(write(pidfd, pidstr, strlen(pidstr))); |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 3208 | } |
| 3209 | if (global.mode & MODE_MWORKER) { |
| 3210 | struct mworker_proc *child; |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3211 | |
William Lallemand | 220567e | 2018-11-21 18:04:53 +0100 | [diff] [blame] | 3212 | ha_notice("New worker #%d (%d) forked\n", relative_pid, ret); |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 3213 | /* find the right mworker_proc */ |
| 3214 | list_for_each_entry(child, &proc_list, list) { |
| 3215 | if (child->relative_pid == relative_pid && |
William Lallemand | 7768c2d | 2022-07-21 00:52:43 +0200 | [diff] [blame] | 3216 | child->reloads == 0 && child->options & PROC_O_TYPE_WORKER && |
| 3217 | child->pid == -1) { |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 3218 | child->timestamp = now.tv_sec; |
| 3219 | child->pid = ret; |
William Lallemand | 1dc6963 | 2019-06-12 19:11:33 +0200 | [diff] [blame] | 3220 | child->version = strdup(haproxy_version); |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 3221 | break; |
| 3222 | } |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3223 | } |
| 3224 | } |
William Lallemand | bc19305 | 2018-09-11 10:06:26 +0200 | [diff] [blame] | 3225 | |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 3226 | relative_pid++; /* each child will get a different one */ |
| 3227 | pid_bit <<= 1; |
| 3228 | } |
| 3229 | } else { |
| 3230 | /* wait mode */ |
| 3231 | global.nbproc = 1; |
| 3232 | proc = 1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3233 | } |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 3234 | |
| 3235 | #ifdef USE_CPU_AFFINITY |
| 3236 | if (proc < global.nbproc && /* child */ |
Willy Tarreau | ff9c914 | 2019-02-07 10:39:36 +0100 | [diff] [blame] | 3237 | proc < MAX_PROCS && /* only the first 32/64 processes may be pinned */ |
Amaury Denoyelle | fc6ac53 | 2021-04-27 10:46:36 +0200 | [diff] [blame] | 3238 | ha_cpuset_count(&cpu_map.proc[proc])) { /* only do this if the process has a CPU map */ |
Olivier Houchard | 97148f6 | 2017-08-16 17:29:11 +0200 | [diff] [blame] | 3239 | |
Amaury Denoyelle | 982fb53 | 2021-04-21 18:39:58 +0200 | [diff] [blame] | 3240 | #ifdef __FreeBSD__ |
Amaury Denoyelle | fc6ac53 | 2021-04-27 10:46:36 +0200 | [diff] [blame] | 3241 | struct hap_cpuset *set = &cpu_map.proc[proc]; |
Amaury Denoyelle | 982fb53 | 2021-04-21 18:39:58 +0200 | [diff] [blame] | 3242 | ret = cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(set->cpuset), &set->cpuset); |
David Carlier | 2d0493a | 2020-12-02 21:14:51 +0000 | [diff] [blame] | 3243 | #elif defined(__linux__) || defined(__DragonFly__) |
Amaury Denoyelle | fc6ac53 | 2021-04-27 10:46:36 +0200 | [diff] [blame] | 3244 | struct hap_cpuset *set = &cpu_map.proc[proc]; |
Amaury Denoyelle | 982fb53 | 2021-04-21 18:39:58 +0200 | [diff] [blame] | 3245 | sched_setaffinity(0, sizeof(set->cpuset), &set->cpuset); |
Willy Tarreau | fc6c032 | 2012-11-16 16:12:27 +0100 | [diff] [blame] | 3246 | #endif |
Amaury Denoyelle | 982fb53 | 2021-04-21 18:39:58 +0200 | [diff] [blame] | 3247 | } |
Pieter Baauw | caa6a1b | 2015-09-17 21:26:40 +0200 | [diff] [blame] | 3248 | #endif |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3249 | /* close the pidfile both in children and father */ |
Willy Tarreau | 269ab31 | 2012-09-05 08:02:48 +0200 | [diff] [blame] | 3250 | if (pidfd >= 0) { |
| 3251 | //lseek(pidfd, 0, SEEK_SET); /* debug: emulate eglibc bug */ |
| 3252 | close(pidfd); |
| 3253 | } |
Willy Tarreau | d137dd3 | 2010-08-25 12:49:05 +0200 | [diff] [blame] | 3254 | |
| 3255 | /* We won't ever use this anymore */ |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 3256 | ha_free(&global.pidfile); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3257 | |
Willy Tarreau | edaff0a | 2015-05-01 17:01:08 +0200 | [diff] [blame] | 3258 | if (proc == global.nbproc) { |
William Lallemand | 944e619 | 2018-11-21 15:48:31 +0100 | [diff] [blame] | 3259 | if (global.mode & (MODE_MWORKER|MODE_MWORKER_WAIT)) { |
PiBa-NL | baf6ea4 | 2017-11-28 23:26:08 +0100 | [diff] [blame] | 3260 | |
| 3261 | if ((!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) && |
| 3262 | (global.mode & MODE_DAEMON)) { |
| 3263 | /* detach from the tty, this is required to properly daemonize. */ |
William Lallemand | e134041 | 2017-12-28 16:09:36 +0100 | [diff] [blame] | 3264 | if ((getenv("HAPROXY_MWORKER_REEXEC") == NULL)) |
| 3265 | stdio_quiet(-1); |
| 3266 | |
PiBa-NL | baf6ea4 | 2017-11-28 23:26:08 +0100 | [diff] [blame] | 3267 | global.mode &= ~MODE_VERBOSE; |
| 3268 | global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */ |
PiBa-NL | baf6ea4 | 2017-11-28 23:26:08 +0100 | [diff] [blame] | 3269 | } |
| 3270 | |
William Lallemand | b3f2be3 | 2018-09-11 10:06:18 +0200 | [diff] [blame] | 3271 | mworker_loop(); |
William Lallemand | 1499b9b | 2017-06-07 15:04:47 +0200 | [diff] [blame] | 3272 | /* should never get there */ |
| 3273 | exit(EXIT_FAILURE); |
Willy Tarreau | edaff0a | 2015-05-01 17:01:08 +0200 | [diff] [blame] | 3274 | } |
William Lallemand | cf4e496 | 2017-06-08 19:05:48 +0200 | [diff] [blame] | 3275 | #if defined(USE_OPENSSL) && !defined(OPENSSL_NO_DH) |
Grant Zhang | 872f9c2 | 2017-01-21 01:10:18 +0000 | [diff] [blame] | 3276 | ssl_free_dh(); |
| 3277 | #endif |
William Lallemand | 1499b9b | 2017-06-07 15:04:47 +0200 | [diff] [blame] | 3278 | exit(0); /* parent must leave */ |
Willy Tarreau | edaff0a | 2015-05-01 17:01:08 +0200 | [diff] [blame] | 3279 | } |
| 3280 | |
William Lallemand | cb11fd2 | 2017-06-01 17:38:52 +0200 | [diff] [blame] | 3281 | /* child must never use the atexit function */ |
| 3282 | atexit_flag = 0; |
| 3283 | |
William Lallemand | bc19305 | 2018-09-11 10:06:26 +0200 | [diff] [blame] | 3284 | /* close useless master sockets */ |
| 3285 | if (global.mode & MODE_MWORKER) { |
| 3286 | struct mworker_proc *child, *it; |
| 3287 | master = 0; |
| 3288 | |
William Lallemand | 309dc9a | 2018-10-26 14:47:45 +0200 | [diff] [blame] | 3289 | mworker_cli_proxy_stop(); |
| 3290 | |
William Lallemand | bc19305 | 2018-09-11 10:06:26 +0200 | [diff] [blame] | 3291 | /* free proc struct of other processes */ |
| 3292 | list_for_each_entry_safe(child, it, &proc_list, list) { |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3293 | /* close the FD of the master side for all |
| 3294 | * workers, we don't need to close the worker |
| 3295 | * side of other workers since it's done with |
| 3296 | * the bind_proc */ |
Tim Duesterhus | 742e0f9 | 2018-11-25 20:03:39 +0100 | [diff] [blame] | 3297 | if (child->ipc_fd[0] >= 0) |
| 3298 | close(child->ipc_fd[0]); |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3299 | if (child->relative_pid == relative_pid && |
William Lallemand | 7768c2d | 2022-07-21 00:52:43 +0200 | [diff] [blame] | 3300 | child->reloads == 0 && |
| 3301 | child->pid == -1) { |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3302 | /* keep this struct if this is our pid */ |
| 3303 | proc_self = child; |
William Lallemand | bc19305 | 2018-09-11 10:06:26 +0200 | [diff] [blame] | 3304 | continue; |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3305 | } |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3306 | LIST_DELETE(&child->list); |
Tim Duesterhus | 9b7a976 | 2019-05-16 20:23:22 +0200 | [diff] [blame] | 3307 | mworker_free_child(child); |
| 3308 | child = NULL; |
William Lallemand | bc19305 | 2018-09-11 10:06:26 +0200 | [diff] [blame] | 3309 | } |
| 3310 | } |
Willy Tarreau | 1605c7a | 2018-01-23 19:01:49 +0100 | [diff] [blame] | 3311 | |
William Lallemand | e134041 | 2017-12-28 16:09:36 +0100 | [diff] [blame] | 3312 | if (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE)) { |
| 3313 | devnullfd = open("/dev/null", O_RDWR, 0); |
| 3314 | if (devnullfd < 0) { |
| 3315 | ha_alert("Cannot open /dev/null\n"); |
| 3316 | exit(EXIT_FAILURE); |
| 3317 | } |
| 3318 | } |
| 3319 | |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 3320 | /* Must chroot and setgid/setuid in the children */ |
| 3321 | /* chroot if needed */ |
| 3322 | if (global.chroot != NULL) { |
| 3323 | if (chroot(global.chroot) == -1 || chdir("/") == -1) { |
Willy Tarreau | 4631737 | 2021-06-15 08:59:19 +0200 | [diff] [blame] | 3324 | ha_alert("[%s.main()] Cannot chroot(%s).\n", argv[0], global.chroot); |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 3325 | if (nb_oldpids) |
| 3326 | tell_old_pids(SIGTTIN); |
| 3327 | protocol_unbind_all(); |
| 3328 | exit(1); |
| 3329 | } |
| 3330 | } |
| 3331 | |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 3332 | ha_free(&global.chroot); |
William Dauchy | f9af9d7 | 2019-11-17 15:47:16 +0100 | [diff] [blame] | 3333 | set_identity(argv[0]); |
William Lallemand | 095ba4c | 2017-06-01 17:38:50 +0200 | [diff] [blame] | 3334 | |
William Lallemand | 7f80eb2 | 2017-05-26 18:19:55 +0200 | [diff] [blame] | 3335 | /* pass through every cli socket, and check if it's bound to |
| 3336 | * the current process and if it exposes listeners sockets. |
| 3337 | * Caution: the GTUNE_SOCKET_TRANSFER is now set after the fork. |
| 3338 | * */ |
| 3339 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 3340 | if (global.cli_fe) { |
William Lallemand | 7f80eb2 | 2017-05-26 18:19:55 +0200 | [diff] [blame] | 3341 | struct bind_conf *bind_conf; |
| 3342 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 3343 | list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) { |
William Lallemand | 7f80eb2 | 2017-05-26 18:19:55 +0200 | [diff] [blame] | 3344 | if (bind_conf->level & ACCESS_FD_LISTENERS) { |
Willy Tarreau | e26993c | 2020-09-03 07:18:55 +0200 | [diff] [blame] | 3345 | if (!bind_conf->settings.bind_proc || bind_conf->settings.bind_proc & (1UL << proc)) { |
William Lallemand | 7f80eb2 | 2017-05-26 18:19:55 +0200 | [diff] [blame] | 3346 | global.tune.options |= GTUNE_SOCKET_TRANSFER; |
| 3347 | break; |
| 3348 | } |
| 3349 | } |
| 3350 | } |
| 3351 | } |
| 3352 | |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3353 | /* we might have to unbind some proxies from some processes */ |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 3354 | px = proxies_list; |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3355 | while (px != NULL) { |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 3356 | if (px->bind_proc && !px->disabled) { |
Willy Tarreau | 337c835 | 2020-09-24 10:51:29 +0200 | [diff] [blame] | 3357 | if (!(px->bind_proc & (1UL << proc))) |
| 3358 | stop_proxy(px); |
Willy Tarreau | 0b9c02c | 2009-02-04 22:05:05 +0100 | [diff] [blame] | 3359 | } |
| 3360 | px = px->next; |
| 3361 | } |
| 3362 | |
Emeric Brun | c47ba59 | 2020-10-07 10:13:10 +0200 | [diff] [blame] | 3363 | /* we might have to unbind some log forward proxies from some processes */ |
| 3364 | px = cfg_log_forward; |
| 3365 | while (px != NULL) { |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 3366 | if (px->bind_proc && !px->disabled) { |
Willy Tarreau | 337c835 | 2020-09-24 10:51:29 +0200 | [diff] [blame] | 3367 | if (!(px->bind_proc & (1UL << proc))) |
| 3368 | stop_proxy(px); |
Emeric Brun | c47ba59 | 2020-10-07 10:13:10 +0200 | [diff] [blame] | 3369 | } |
| 3370 | px = px->next; |
| 3371 | } |
| 3372 | |
Willy Tarreau | f83d3fe | 2015-05-01 19:13:41 +0200 | [diff] [blame] | 3373 | /* we might have to unbind some peers sections from some processes */ |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 3374 | for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) { |
Willy Tarreau | f83d3fe | 2015-05-01 19:13:41 +0200 | [diff] [blame] | 3375 | if (!curpeers->peers_fe) |
| 3376 | continue; |
| 3377 | |
| 3378 | if (curpeers->peers_fe->bind_proc & (1UL << proc)) |
| 3379 | continue; |
| 3380 | |
| 3381 | stop_proxy(curpeers->peers_fe); |
| 3382 | /* disable this peer section so that it kills itself */ |
Willy Tarreau | 47c8c02 | 2015-09-28 16:39:25 +0200 | [diff] [blame] | 3383 | signal_unregister_handler(curpeers->sighandler); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 3384 | task_destroy(curpeers->sync_task); |
Willy Tarreau | 47c8c02 | 2015-09-28 16:39:25 +0200 | [diff] [blame] | 3385 | curpeers->sync_task = NULL; |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 3386 | task_destroy(curpeers->peers_fe->task); |
Willy Tarreau | 47c8c02 | 2015-09-28 16:39:25 +0200 | [diff] [blame] | 3387 | curpeers->peers_fe->task = NULL; |
Willy Tarreau | f83d3fe | 2015-05-01 19:13:41 +0200 | [diff] [blame] | 3388 | curpeers->peers_fe = NULL; |
| 3389 | } |
| 3390 | |
William Lallemand | 2e8fad9 | 2018-11-13 16:18:23 +0100 | [diff] [blame] | 3391 | /* |
| 3392 | * This is only done in daemon mode because we might want the |
| 3393 | * logs on stdout in mworker mode. If we're NOT in QUIET mode, |
| 3394 | * we should now close the 3 first FDs to ensure that we can |
| 3395 | * detach from the TTY. We MUST NOT do it in other cases since |
| 3396 | * it would have already be done, and 0-2 would have been |
| 3397 | * affected to listening sockets |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3398 | */ |
William Lallemand | 2e8fad9 | 2018-11-13 16:18:23 +0100 | [diff] [blame] | 3399 | if ((global.mode & MODE_DAEMON) && |
| 3400 | (!(global.mode & MODE_QUIET) || (global.mode & MODE_VERBOSE))) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3401 | /* detach from the tty */ |
William Lallemand | e134041 | 2017-12-28 16:09:36 +0100 | [diff] [blame] | 3402 | stdio_quiet(devnullfd); |
Willy Tarreau | 106cb76 | 2008-11-16 07:40:34 +0100 | [diff] [blame] | 3403 | global.mode &= ~MODE_VERBOSE; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3404 | global.mode |= MODE_QUIET; /* ensure that we won't say anything from now */ |
| 3405 | } |
| 3406 | pid = getpid(); /* update child's pid */ |
William Lallemand | bfd8eb5 | 2018-07-04 15:31:23 +0200 | [diff] [blame] | 3407 | if (!(global.mode & MODE_MWORKER)) /* in mworker mode we don't want a new pgid for the children */ |
| 3408 | setsid(); |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 3409 | fork_poller(); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3410 | } |
| 3411 | |
William Dauchy | e039f26 | 2019-11-17 15:47:15 +0100 | [diff] [blame] | 3412 | /* try our best to re-enable core dumps depending on system capabilities. |
| 3413 | * What is addressed here : |
| 3414 | * - remove file size limits |
| 3415 | * - remove core size limits |
| 3416 | * - mark the process dumpable again if it lost it due to user/group |
| 3417 | */ |
| 3418 | if (global.tune.options & GTUNE_SET_DUMPABLE) { |
| 3419 | limit.rlim_cur = limit.rlim_max = RLIM_INFINITY; |
| 3420 | |
| 3421 | #if defined(RLIMIT_FSIZE) |
| 3422 | if (setrlimit(RLIMIT_FSIZE, &limit) == -1) { |
| 3423 | if (global.tune.options & GTUNE_STRICT_LIMITS) { |
| 3424 | ha_alert("[%s.main()] Failed to set the raise the maximum " |
| 3425 | "file size.\n", argv[0]); |
Jerome Magnin | 50f757c | 2021-01-12 20:19:38 +0100 | [diff] [blame] | 3426 | exit(1); |
William Dauchy | e039f26 | 2019-11-17 15:47:15 +0100 | [diff] [blame] | 3427 | } |
| 3428 | else |
| 3429 | ha_warning("[%s.main()] Failed to set the raise the maximum " |
William Dauchy | a519460 | 2020-03-28 19:29:58 +0100 | [diff] [blame] | 3430 | "file size.\n", argv[0]); |
William Dauchy | e039f26 | 2019-11-17 15:47:15 +0100 | [diff] [blame] | 3431 | } |
| 3432 | #endif |
| 3433 | |
| 3434 | #if defined(RLIMIT_CORE) |
| 3435 | if (setrlimit(RLIMIT_CORE, &limit) == -1) { |
| 3436 | if (global.tune.options & GTUNE_STRICT_LIMITS) { |
| 3437 | ha_alert("[%s.main()] Failed to set the raise the core " |
| 3438 | "dump size.\n", argv[0]); |
Jerome Magnin | 50f757c | 2021-01-12 20:19:38 +0100 | [diff] [blame] | 3439 | exit(1); |
William Dauchy | e039f26 | 2019-11-17 15:47:15 +0100 | [diff] [blame] | 3440 | } |
| 3441 | else |
| 3442 | ha_warning("[%s.main()] Failed to set the raise the core " |
William Dauchy | a519460 | 2020-03-28 19:29:58 +0100 | [diff] [blame] | 3443 | "dump size.\n", argv[0]); |
William Dauchy | e039f26 | 2019-11-17 15:47:15 +0100 | [diff] [blame] | 3444 | } |
| 3445 | #endif |
| 3446 | |
| 3447 | #if defined(USE_PRCTL) |
| 3448 | if (prctl(PR_SET_DUMPABLE, 1, 0, 0, 0) == -1) |
| 3449 | ha_warning("[%s.main()] Failed to set the dumpable flag, " |
| 3450 | "no core will be dumped.\n", argv[0]); |
devnexen@gmail.com | 078062b | 2021-08-21 09:13:10 +0100 | [diff] [blame] | 3451 | #elif defined(USE_PROCCTL) |
| 3452 | int traceable = PROC_TRACE_CTL_ENABLE; |
| 3453 | if (procctl(P_PID, getpid(), PROC_TRACE_CTL, &traceable) == -1) |
| 3454 | ha_warning("[%s.main()] Failed to set the traceable flag, " |
| 3455 | "no core will be dumped.\n", argv[0]); |
William Dauchy | e039f26 | 2019-11-17 15:47:15 +0100 | [diff] [blame] | 3456 | #endif |
| 3457 | } |
| 3458 | |
Christopher Faulet | e3a5e35 | 2017-10-24 13:53:54 +0200 | [diff] [blame] | 3459 | global.mode &= ~MODE_STARTING; |
Willy Tarreau | 4f60f16 | 2007-04-08 16:39:58 +0200 | [diff] [blame] | 3460 | /* |
| 3461 | * That's it : the central polling loop. Run until we stop. |
| 3462 | */ |
Christopher Faulet | 1d17c10 | 2017-08-29 15:38:48 +0200 | [diff] [blame] | 3463 | #ifdef USE_THREAD |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 3464 | { |
William Lallemand | 1aab50b | 2018-06-07 09:46:01 +0200 | [diff] [blame] | 3465 | sigset_t blocked_sig, old_sig; |
Willy Tarreau | c40efc1 | 2019-05-03 09:22:44 +0200 | [diff] [blame] | 3466 | int i; |
| 3467 | |
William Lallemand | 1aab50b | 2018-06-07 09:46:01 +0200 | [diff] [blame] | 3468 | /* ensure the signals will be blocked in every thread */ |
| 3469 | sigfillset(&blocked_sig); |
| 3470 | sigdelset(&blocked_sig, SIGPROF); |
| 3471 | sigdelset(&blocked_sig, SIGBUS); |
| 3472 | sigdelset(&blocked_sig, SIGFPE); |
| 3473 | sigdelset(&blocked_sig, SIGILL); |
| 3474 | sigdelset(&blocked_sig, SIGSEGV); |
| 3475 | pthread_sigmask(SIG_SETMASK, &blocked_sig, &old_sig); |
| 3476 | |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 3477 | /* Create nbthread-1 thread. The first thread is the current process */ |
David Carlier | a92c5ce | 2019-09-13 05:03:12 +0100 | [diff] [blame] | 3478 | ha_thread_info[0].pthread = pthread_self(); |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 3479 | for (i = 1; i < global.nbthread; i++) |
David Carlier | a92c5ce | 2019-09-13 05:03:12 +0100 | [diff] [blame] | 3480 | pthread_create(&ha_thread_info[i].pthread, NULL, &run_thread_poll_loop, (void *)(long)i); |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 3481 | |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 3482 | #ifdef USE_CPU_AFFINITY |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 3483 | /* Now the CPU affinity for all threads */ |
Amaury Denoyelle | af02c57 | 2021-04-15 16:29:58 +0200 | [diff] [blame] | 3484 | |
| 3485 | /* If on multiprocess, use proc_t1 except for the first process. |
| 3486 | */ |
| 3487 | if ((relative_pid - 1) > 0) |
Amaury Denoyelle | fc6ac53 | 2021-04-27 10:46:36 +0200 | [diff] [blame] | 3488 | cpu_map.thread[0] = cpu_map.proc_t1[relative_pid-1]; |
Willy Tarreau | 7764a57 | 2019-07-16 15:10:34 +0200 | [diff] [blame] | 3489 | |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 3490 | for (i = 0; i < global.nbthread; i++) { |
Amaury Denoyelle | fc6ac53 | 2021-04-27 10:46:36 +0200 | [diff] [blame] | 3491 | if (ha_cpuset_count(&cpu_map.proc[relative_pid-1])) |
| 3492 | ha_cpuset_and(&cpu_map.thread[i], &cpu_map.proc[relative_pid-1]); |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 3493 | |
Willy Tarreau | 421f02e | 2018-01-20 18:19:22 +0100 | [diff] [blame] | 3494 | if (i < MAX_THREADS && /* only the first 32/64 threads may be pinned */ |
Amaury Denoyelle | fc6ac53 | 2021-04-27 10:46:36 +0200 | [diff] [blame] | 3495 | ha_cpuset_count(&cpu_map.thread[i])) {/* only do this if the thread has a THREAD map */ |
David Carlier | 5e4c8e2 | 2019-09-13 05:12:58 +0100 | [diff] [blame] | 3496 | #if defined(__APPLE__) |
| 3497 | int j; |
Amaury Denoyelle | 8f685c1 | 2021-04-27 16:45:29 +0200 | [diff] [blame] | 3498 | unsigned long set = cpu_map.thread[i].cpuset; |
David Carlier | 5e4c8e2 | 2019-09-13 05:12:58 +0100 | [diff] [blame] | 3499 | |
Amaury Denoyelle | 8f685c1 | 2021-04-27 16:45:29 +0200 | [diff] [blame] | 3500 | while ((j = ffsl(set)) > 0) { |
David Carlier | 5e4c8e2 | 2019-09-13 05:12:58 +0100 | [diff] [blame] | 3501 | thread_affinity_policy_data_t cpu_set = { j - 1 }; |
| 3502 | thread_port_t mthread = pthread_mach_thread_np(ha_thread_info[i].pthread); |
| 3503 | thread_policy_set(mthread, THREAD_AFFINITY_POLICY, (thread_policy_t)&cpu_set, 1); |
Amaury Denoyelle | 8f685c1 | 2021-04-27 16:45:29 +0200 | [diff] [blame] | 3504 | set &= ~(1UL << (j - 1)); |
David Carlier | 5e4c8e2 | 2019-09-13 05:12:58 +0100 | [diff] [blame] | 3505 | } |
| 3506 | #else |
Amaury Denoyelle | fc6ac53 | 2021-04-27 10:46:36 +0200 | [diff] [blame] | 3507 | struct hap_cpuset *set = &cpu_map.thread[i]; |
David Carlier | a92c5ce | 2019-09-13 05:03:12 +0100 | [diff] [blame] | 3508 | pthread_setaffinity_np(ha_thread_info[i].pthread, |
Amaury Denoyelle | 982fb53 | 2021-04-21 18:39:58 +0200 | [diff] [blame] | 3509 | sizeof(set->cpuset), &set->cpuset); |
David Carlier | 5e4c8e2 | 2019-09-13 05:12:58 +0100 | [diff] [blame] | 3510 | #endif |
Olivier Houchard | 829aa24 | 2017-12-01 18:19:43 +0100 | [diff] [blame] | 3511 | } |
Christopher Faulet | 1d17c10 | 2017-08-29 15:38:48 +0200 | [diff] [blame] | 3512 | } |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 3513 | #endif /* !USE_CPU_AFFINITY */ |
| 3514 | |
William Lallemand | 1aab50b | 2018-06-07 09:46:01 +0200 | [diff] [blame] | 3515 | /* when multithreading we need to let only the thread 0 handle the signals */ |
William Lallemand | d3801c1 | 2018-09-11 10:06:23 +0200 | [diff] [blame] | 3516 | haproxy_unblock_signals(); |
William Lallemand | 1aab50b | 2018-06-07 09:46:01 +0200 | [diff] [blame] | 3517 | |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 3518 | /* Finally, start the poll loop for the first thread */ |
Willy Tarreau | b4f7cc3 | 2019-05-03 09:27:30 +0200 | [diff] [blame] | 3519 | run_thread_poll_loop(0); |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 3520 | |
| 3521 | /* Wait the end of other threads */ |
| 3522 | for (i = 1; i < global.nbthread; i++) |
David Carlier | a92c5ce | 2019-09-13 05:03:12 +0100 | [diff] [blame] | 3523 | pthread_join(ha_thread_info[i].pthread, NULL); |
Christopher Faulet | 1d17c10 | 2017-08-29 15:38:48 +0200 | [diff] [blame] | 3524 | |
Christopher Faulet | b79a94c | 2017-05-30 15:34:30 +0200 | [diff] [blame] | 3525 | #if defined(DEBUG_THREAD) || defined(DEBUG_FULL) |
| 3526 | show_lock_stats(); |
| 3527 | #endif |
Christopher Faulet | 1d17c10 | 2017-08-29 15:38:48 +0200 | [diff] [blame] | 3528 | } |
Christopher Faulet | cd7879a | 2017-10-27 13:53:47 +0200 | [diff] [blame] | 3529 | #else /* ! USE_THREAD */ |
William Lallemand | d3801c1 | 2018-09-11 10:06:23 +0200 | [diff] [blame] | 3530 | haproxy_unblock_signals(); |
Willy Tarreau | b4f7cc3 | 2019-05-03 09:27:30 +0200 | [diff] [blame] | 3531 | run_thread_poll_loop(0); |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 3532 | #endif |
Christopher Faulet | 1d17c10 | 2017-08-29 15:38:48 +0200 | [diff] [blame] | 3533 | |
Tim Duesterhus | 0a3b43d | 2020-06-14 00:37:42 +0200 | [diff] [blame] | 3534 | deinit_and_exit(0); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3535 | } |
| 3536 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3537 | /* |
| 3538 | * Local variables: |
| 3539 | * c-indent-level: 8 |
| 3540 | * c-basic-offset: 8 |
| 3541 | * End: |
| 3542 | */ |