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