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