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