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