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