Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Proxy variables and functions. |
| 3 | * |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 4 | * Copyright 2000-2009 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <fcntl.h> |
| 14 | #include <unistd.h> |
Willy Tarreau | c8f24f8 | 2007-11-30 18:38:35 +0100 | [diff] [blame] | 15 | #include <string.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 16 | #include <sys/types.h> |
| 17 | #include <sys/socket.h> |
| 18 | #include <sys/stat.h> |
| 19 | |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 20 | #include <common/defaults.h> |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 21 | #include <common/cfgparse.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 22 | #include <common/compat.h> |
Willy Tarreau | e3ba5f0 | 2006-06-29 18:54:54 +0200 | [diff] [blame] | 23 | #include <common/config.h> |
Willy Tarreau | d740bab | 2007-10-28 11:14:07 +0100 | [diff] [blame] | 24 | #include <common/errors.h> |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 25 | #include <common/initcall.h> |
Willy Tarreau | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 26 | #include <common/memory.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 27 | #include <common/time.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 28 | |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 29 | #include <eb32tree.h> |
| 30 | #include <ebistree.h> |
| 31 | |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 32 | #include <types/capture.h> |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 33 | #include <types/cli.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 34 | #include <types/global.h> |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 35 | #include <types/obj_type.h> |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 36 | #include <types/peers.h> |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 37 | #include <types/stats.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 38 | |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 39 | #include <proto/applet.h> |
| 40 | #include <proto/cli.h> |
Alexandre Cassen | 87ea548 | 2007-10-11 20:48:58 +0200 | [diff] [blame] | 41 | #include <proto/backend.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 42 | #include <proto/fd.h> |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 43 | #include <proto/filters.h> |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 44 | #include <proto/hdr_idx.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 45 | #include <proto/listener.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 46 | #include <proto/log.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 47 | #include <proto/proto_tcp.h> |
Willy Tarreau | 39e4f62 | 2010-05-31 17:01:36 +0200 | [diff] [blame] | 48 | #include <proto/proto_http.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 49 | #include <proto/proxy.h> |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 50 | #include <proto/server.h> |
Willy Tarreau | d0807c3 | 2010-08-27 18:26:11 +0200 | [diff] [blame] | 51 | #include <proto/signal.h> |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 52 | #include <proto/stream.h> |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 53 | #include <proto/stream_interface.h> |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 54 | #include <proto/task.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 55 | |
| 56 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 57 | int listeners; /* # of proxy listeners, set by cfgparse */ |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 58 | struct proxy *proxies_list = NULL; /* list of all existing proxies */ |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 59 | struct eb_root used_proxy_id = EB_ROOT; /* list of proxy IDs in use */ |
Willy Tarreau | f79d950 | 2014-03-15 07:22:35 +0100 | [diff] [blame] | 60 | struct eb_root proxy_by_name = EB_ROOT; /* tree of proxies sorted by name */ |
Willy Tarreau | 10479e4 | 2010-12-12 14:00:34 +0100 | [diff] [blame] | 61 | unsigned int error_snapshot_id = 0; /* global ID assigned to each error then incremented */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 62 | |
Willy Tarreau | 3a1f5fd | 2018-11-11 15:40:36 +0100 | [diff] [blame] | 63 | /* proxy->options */ |
| 64 | const struct cfg_opt cfg_opts[] = |
| 65 | { |
| 66 | { "abortonclose", PR_O_ABRT_CLOSE, PR_CAP_BE, 0, 0 }, |
| 67 | { "allbackups", PR_O_USE_ALL_BK, PR_CAP_BE, 0, 0 }, |
| 68 | { "checkcache", PR_O_CHK_CACHE, PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 69 | { "clitcpka", PR_O_TCP_CLI_KA, PR_CAP_FE, 0, 0 }, |
| 70 | { "contstats", PR_O_CONTSTATS, PR_CAP_FE, 0, 0 }, |
| 71 | { "dontlognull", PR_O_NULLNOLOG, PR_CAP_FE, 0, 0 }, |
| 72 | { "http_proxy", PR_O_HTTP_PROXY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 73 | { "http-buffer-request", PR_O_WREQ_BODY, PR_CAP_FE | PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 74 | { "http-ignore-probes", PR_O_IGNORE_PRB, PR_CAP_FE, 0, PR_MODE_HTTP }, |
| 75 | { "prefer-last-server", PR_O_PREF_LAST, PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 76 | { "logasap", PR_O_LOGASAP, PR_CAP_FE, 0, 0 }, |
| 77 | { "nolinger", PR_O_TCP_NOLING, PR_CAP_FE | PR_CAP_BE, 0, 0 }, |
| 78 | { "persist", PR_O_PERSIST, PR_CAP_BE, 0, 0 }, |
| 79 | { "srvtcpka", PR_O_TCP_SRV_KA, PR_CAP_BE, 0, 0 }, |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 80 | #ifdef USE_TPROXY |
Willy Tarreau | 3a1f5fd | 2018-11-11 15:40:36 +0100 | [diff] [blame] | 81 | { "transparent", PR_O_TRANSP, PR_CAP_BE, 0, 0 }, |
| 82 | #else |
| 83 | { "transparent", 0, 0, 0, 0 }, |
| 84 | #endif |
| 85 | |
| 86 | { NULL, 0, 0, 0, 0 } |
| 87 | }; |
| 88 | |
| 89 | /* proxy->options2 */ |
| 90 | const struct cfg_opt cfg_opts2[] = |
| 91 | { |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 92 | #ifdef USE_LINUX_SPLICE |
Willy Tarreau | 3a1f5fd | 2018-11-11 15:40:36 +0100 | [diff] [blame] | 93 | { "splice-request", PR_O2_SPLIC_REQ, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
| 94 | { "splice-response", PR_O2_SPLIC_RTR, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
| 95 | { "splice-auto", PR_O2_SPLIC_AUT, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
| 96 | #else |
| 97 | { "splice-request", 0, 0, 0, 0 }, |
| 98 | { "splice-response", 0, 0, 0, 0 }, |
| 99 | { "splice-auto", 0, 0, 0, 0 }, |
| 100 | #endif |
| 101 | { "accept-invalid-http-request", PR_O2_REQBUG_OK, PR_CAP_FE, 0, PR_MODE_HTTP }, |
| 102 | { "accept-invalid-http-response", PR_O2_RSPBUG_OK, PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 103 | { "dontlog-normal", PR_O2_NOLOGNORM, PR_CAP_FE, 0, 0 }, |
| 104 | { "log-separate-errors", PR_O2_LOGERRORS, PR_CAP_FE, 0, 0 }, |
| 105 | { "log-health-checks", PR_O2_LOGHCHKS, PR_CAP_BE, 0, 0 }, |
| 106 | { "socket-stats", PR_O2_SOCKSTAT, PR_CAP_FE, 0, 0 }, |
| 107 | { "tcp-smart-accept", PR_O2_SMARTACC, PR_CAP_FE, 0, 0 }, |
| 108 | { "tcp-smart-connect", PR_O2_SMARTCON, PR_CAP_BE, 0, 0 }, |
| 109 | { "independant-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
| 110 | { "independent-streams", PR_O2_INDEPSTR, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
| 111 | { "http-use-proxy-header", PR_O2_USE_PXHDR, PR_CAP_FE, 0, PR_MODE_HTTP }, |
| 112 | { "http-pretend-keepalive", PR_O2_FAKE_KA, PR_CAP_BE, 0, PR_MODE_HTTP }, |
| 113 | { "http-no-delay", PR_O2_NODELAY, PR_CAP_FE|PR_CAP_BE, 0, PR_MODE_HTTP }, |
Christopher Faulet | eb70980 | 2019-04-11 22:04:08 +0200 | [diff] [blame] | 114 | { "http-use-htx", PR_O2_USE_HTX, PR_CAP_FE|PR_CAP_BE, 0, 0 }, |
Willy Tarreau | 3a1f5fd | 2018-11-11 15:40:36 +0100 | [diff] [blame] | 115 | { NULL, 0, 0, 0 } |
| 116 | }; |
| 117 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 118 | /* |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 119 | * This function returns a string containing a name describing capabilities to |
| 120 | * report comprehensible error messages. Specifically, it will return the words |
Christopher Faulet | 898566e | 2016-10-26 11:06:28 +0200 | [diff] [blame] | 121 | * "frontend", "backend" when appropriate, or "proxy" for all other |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 122 | * cases including the proxies declared in "listen" mode. |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 123 | */ |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 124 | const char *proxy_cap_str(int cap) |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 125 | { |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 126 | if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) { |
| 127 | if (cap & PR_CAP_FE) |
| 128 | return "frontend"; |
| 129 | else if (cap & PR_CAP_BE) |
| 130 | return "backend"; |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 131 | } |
| 132 | return "proxy"; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 133 | } |
| 134 | |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 135 | /* |
| 136 | * This function returns a string containing the mode of the proxy in a format |
| 137 | * suitable for error messages. |
| 138 | */ |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 139 | const char *proxy_mode_str(int mode) { |
| 140 | |
| 141 | if (mode == PR_MODE_TCP) |
| 142 | return "tcp"; |
| 143 | else if (mode == PR_MODE_HTTP) |
| 144 | return "http"; |
| 145 | else if (mode == PR_MODE_HEALTH) |
| 146 | return "health"; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 147 | else if (mode == PR_MODE_CLI) |
| 148 | return "cli"; |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 149 | else |
| 150 | return "unknown"; |
| 151 | } |
| 152 | |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 153 | /* |
| 154 | * This function scans the list of backends and servers to retrieve the first |
| 155 | * backend and the first server with the given names, and sets them in both |
| 156 | * parameters. It returns zero if either is not found, or non-zero and sets |
| 157 | * the ones it did not found to NULL. If a NULL pointer is passed for the |
| 158 | * backend, only the pointer to the server will be updated. |
| 159 | */ |
| 160 | int get_backend_server(const char *bk_name, const char *sv_name, |
| 161 | struct proxy **bk, struct server **sv) |
| 162 | { |
| 163 | struct proxy *p; |
| 164 | struct server *s; |
Willy Tarreau | 7ecc420 | 2014-03-15 07:57:11 +0100 | [diff] [blame] | 165 | int sid; |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 166 | |
| 167 | *sv = NULL; |
| 168 | |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 169 | sid = -1; |
Willy Tarreau | cfeaa47 | 2009-10-10 22:33:08 +0200 | [diff] [blame] | 170 | if (*sv_name == '#') |
| 171 | sid = atoi(sv_name + 1); |
| 172 | |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 173 | p = proxy_be_by_name(bk_name); |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 174 | if (bk) |
| 175 | *bk = p; |
| 176 | if (!p) |
| 177 | return 0; |
| 178 | |
| 179 | for (s = p->srv; s; s = s->next) |
Willy Tarreau | 4055a10 | 2012-11-15 00:15:18 +0100 | [diff] [blame] | 180 | if ((sid >= 0 && s->puid == sid) || |
| 181 | (sid < 0 && strcmp(s->id, sv_name) == 0)) |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 182 | break; |
| 183 | *sv = s; |
| 184 | if (!s) |
| 185 | return 0; |
| 186 | return 1; |
| 187 | } |
| 188 | |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 189 | /* This function parses a "timeout" statement in a proxy section. It returns |
| 190 | * -1 if there is any error, 1 for a warning, otherwise zero. If it does not |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 191 | * return zero, it will write an error or warning message into a preallocated |
| 192 | * buffer returned at <err>. The trailing is not be written. The function must |
| 193 | * be called with <args> pointing to the first command line word, with <proxy> |
| 194 | * pointing to the proxy being parsed, and <defpx> to the default proxy or NULL. |
| 195 | * As a special case for compatibility with older configs, it also accepts |
| 196 | * "{cli|srv|con}timeout" in args[0]. |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 197 | */ |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 198 | static int proxy_parse_timeout(char **args, int section, struct proxy *proxy, |
Willy Tarreau | 28a47d6 | 2012-09-18 20:02:48 +0200 | [diff] [blame] | 199 | struct proxy *defpx, const char *file, int line, |
| 200 | char **err) |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 201 | { |
| 202 | unsigned timeout; |
| 203 | int retval, cap; |
| 204 | const char *res, *name; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 205 | int *tv = NULL; |
| 206 | int *td = NULL; |
Willy Tarreau | ed44649 | 2014-04-28 22:56:38 +0200 | [diff] [blame] | 207 | int warn = 0; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 208 | |
| 209 | retval = 0; |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 210 | |
| 211 | /* simply skip "timeout" but remain compatible with old form */ |
| 212 | if (strcmp(args[0], "timeout") == 0) |
| 213 | args++; |
| 214 | |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 215 | name = args[0]; |
Willy Tarreau | ed44649 | 2014-04-28 22:56:38 +0200 | [diff] [blame] | 216 | if (!strcmp(args[0], "client") || (!strcmp(args[0], "clitimeout") && (warn = WARN_CLITO_DEPRECATED))) { |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 217 | name = "client"; |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 218 | tv = &proxy->timeout.client; |
| 219 | td = &defpx->timeout.client; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 220 | cap = PR_CAP_FE; |
| 221 | } else if (!strcmp(args[0], "tarpit")) { |
| 222 | tv = &proxy->timeout.tarpit; |
| 223 | td = &defpx->timeout.tarpit; |
Willy Tarreau | 51c9bde | 2008-01-06 13:40:03 +0100 | [diff] [blame] | 224 | cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 225 | } else if (!strcmp(args[0], "http-keep-alive")) { |
| 226 | tv = &proxy->timeout.httpka; |
| 227 | td = &defpx->timeout.httpka; |
| 228 | cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | 036fae0 | 2008-01-06 13:24:40 +0100 | [diff] [blame] | 229 | } else if (!strcmp(args[0], "http-request")) { |
| 230 | tv = &proxy->timeout.httpreq; |
| 231 | td = &defpx->timeout.httpreq; |
Willy Tarreau | cd7afc0 | 2009-07-12 10:03:17 +0200 | [diff] [blame] | 232 | cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | ed44649 | 2014-04-28 22:56:38 +0200 | [diff] [blame] | 233 | } else if (!strcmp(args[0], "server") || (!strcmp(args[0], "srvtimeout") && (warn = WARN_SRVTO_DEPRECATED))) { |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 234 | name = "server"; |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 235 | tv = &proxy->timeout.server; |
| 236 | td = &defpx->timeout.server; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 237 | cap = PR_CAP_BE; |
Willy Tarreau | ed44649 | 2014-04-28 22:56:38 +0200 | [diff] [blame] | 238 | } else if (!strcmp(args[0], "connect") || (!strcmp(args[0], "contimeout") && (warn = WARN_CONTO_DEPRECATED))) { |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 239 | name = "connect"; |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 240 | tv = &proxy->timeout.connect; |
| 241 | td = &defpx->timeout.connect; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 242 | cap = PR_CAP_BE; |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 243 | } else if (!strcmp(args[0], "check")) { |
| 244 | tv = &proxy->timeout.check; |
| 245 | td = &defpx->timeout.check; |
| 246 | cap = PR_CAP_BE; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 247 | } else if (!strcmp(args[0], "queue")) { |
| 248 | tv = &proxy->timeout.queue; |
| 249 | td = &defpx->timeout.queue; |
| 250 | cap = PR_CAP_BE; |
Willy Tarreau | ce887fd | 2012-05-12 12:50:00 +0200 | [diff] [blame] | 251 | } else if (!strcmp(args[0], "tunnel")) { |
| 252 | tv = &proxy->timeout.tunnel; |
| 253 | td = &defpx->timeout.tunnel; |
| 254 | cap = PR_CAP_BE; |
Willy Tarreau | 05cdd96 | 2014-05-10 14:30:07 +0200 | [diff] [blame] | 255 | } else if (!strcmp(args[0], "client-fin")) { |
| 256 | tv = &proxy->timeout.clientfin; |
| 257 | td = &defpx->timeout.clientfin; |
| 258 | cap = PR_CAP_FE; |
| 259 | } else if (!strcmp(args[0], "server-fin")) { |
| 260 | tv = &proxy->timeout.serverfin; |
| 261 | td = &defpx->timeout.serverfin; |
| 262 | cap = PR_CAP_BE; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 263 | } else { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 264 | memprintf(err, |
| 265 | "'timeout' supports 'client', 'server', 'connect', 'check', " |
Willy Tarreau | 05cdd96 | 2014-05-10 14:30:07 +0200 | [diff] [blame] | 266 | "'queue', 'http-keep-alive', 'http-request', 'tunnel', 'tarpit', " |
| 267 | "'client-fin' and 'server-fin' (got '%s')", |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 268 | args[0]); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 269 | return -1; |
| 270 | } |
| 271 | |
| 272 | if (*args[1] == 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 273 | memprintf(err, "'timeout %s' expects an integer value (in milliseconds)", name); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 274 | return -1; |
| 275 | } |
| 276 | |
| 277 | res = parse_time_err(args[1], &timeout, TIME_UNIT_MS); |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 278 | if (res == PARSE_TIME_OVER) { |
| 279 | memprintf(err, "timer overflow in argument '%s' to 'timeout %s' (maximum value is 2147483647 ms or ~24.8 days)", |
| 280 | args[1], name); |
| 281 | return -1; |
| 282 | } |
| 283 | else if (res == PARSE_TIME_UNDER) { |
| 284 | memprintf(err, "timer underflow in argument '%s' to 'timeout %s' (minimum non-null value is 1 ms)", |
| 285 | args[1], name); |
| 286 | return -1; |
| 287 | } |
| 288 | else if (res) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 289 | memprintf(err, "unexpected character '%c' in 'timeout %s'", *res, name); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 290 | return -1; |
| 291 | } |
| 292 | |
| 293 | if (!(proxy->cap & cap)) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 294 | memprintf(err, "'timeout %s' will be ignored because %s '%s' has no %s capability", |
| 295 | name, proxy_type_str(proxy), proxy->id, |
| 296 | (cap & PR_CAP_BE) ? "backend" : "frontend"); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 297 | retval = 1; |
| 298 | } |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 299 | else if (defpx && *tv != *td) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 300 | memprintf(err, "overwriting 'timeout %s' which was already specified", name); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 301 | retval = 1; |
| 302 | } |
Willy Tarreau | ed44649 | 2014-04-28 22:56:38 +0200 | [diff] [blame] | 303 | else if (warn) { |
| 304 | if (!already_warned(warn)) { |
| 305 | memprintf(err, "the '%s' directive is now deprecated in favor of 'timeout %s', and will not be supported in future versions.", |
| 306 | args[0], name); |
| 307 | retval = 1; |
| 308 | } |
| 309 | } |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 310 | |
Willy Tarreau | fac5b59 | 2014-05-22 08:24:46 +0200 | [diff] [blame] | 311 | if (*args[2] != 0) { |
| 312 | memprintf(err, "'timeout %s' : unexpected extra argument '%s' after value '%s'.", name, args[2], args[1]); |
| 313 | retval = -1; |
| 314 | } |
| 315 | |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 316 | *tv = MS_TO_TICKS(timeout); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 317 | return retval; |
| 318 | } |
| 319 | |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 320 | /* This function parses a "rate-limit" statement in a proxy section. It returns |
| 321 | * -1 if there is any error, 1 for a warning, otherwise zero. If it does not |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 322 | * return zero, it will write an error or warning message into a preallocated |
| 323 | * buffer returned at <err>. The function must be called with <args> pointing |
| 324 | * to the first command line word, with <proxy> pointing to the proxy being |
| 325 | * parsed, and <defpx> to the default proxy or NULL. |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 326 | */ |
| 327 | static int proxy_parse_rate_limit(char **args, int section, struct proxy *proxy, |
Willy Tarreau | 28a47d6 | 2012-09-18 20:02:48 +0200 | [diff] [blame] | 328 | struct proxy *defpx, const char *file, int line, |
| 329 | char **err) |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 330 | { |
| 331 | int retval, cap; |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 332 | char *res; |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 333 | unsigned int *tv = NULL; |
| 334 | unsigned int *td = NULL; |
| 335 | unsigned int val; |
| 336 | |
| 337 | retval = 0; |
| 338 | |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 339 | if (strcmp(args[1], "sessions") == 0) { |
Willy Tarreau | 13a34bd | 2009-05-10 18:52:49 +0200 | [diff] [blame] | 340 | tv = &proxy->fe_sps_lim; |
| 341 | td = &defpx->fe_sps_lim; |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 342 | cap = PR_CAP_FE; |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 343 | } |
| 344 | else { |
| 345 | memprintf(err, "'%s' only supports 'sessions' (got '%s')", args[0], args[1]); |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 346 | return -1; |
| 347 | } |
| 348 | |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 349 | if (*args[2] == 0) { |
| 350 | memprintf(err, "'%s %s' expects expects an integer value (in sessions/second)", args[0], args[1]); |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 351 | return -1; |
| 352 | } |
| 353 | |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 354 | val = strtoul(args[2], &res, 0); |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 355 | if (*res) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 356 | memprintf(err, "'%s %s' : unexpected character '%c' in integer value '%s'", args[0], args[1], *res, args[2]); |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 357 | return -1; |
| 358 | } |
| 359 | |
| 360 | if (!(proxy->cap & cap)) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 361 | memprintf(err, "%s %s will be ignored because %s '%s' has no %s capability", |
| 362 | args[0], args[1], proxy_type_str(proxy), proxy->id, |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 363 | (cap & PR_CAP_BE) ? "backend" : "frontend"); |
| 364 | retval = 1; |
| 365 | } |
| 366 | else if (defpx && *tv != *td) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 367 | memprintf(err, "overwriting %s %s which was already specified", args[0], args[1]); |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 368 | retval = 1; |
| 369 | } |
| 370 | |
| 371 | *tv = val; |
| 372 | return retval; |
| 373 | } |
| 374 | |
Willy Tarreau | c35362a | 2014-04-25 13:58:37 +0200 | [diff] [blame] | 375 | /* This function parses a "max-keep-alive-queue" statement in a proxy section. |
| 376 | * It returns -1 if there is any error, 1 for a warning, otherwise zero. If it |
| 377 | * does not return zero, it will write an error or warning message into a |
| 378 | * preallocated buffer returned at <err>. The function must be called with |
| 379 | * <args> pointing to the first command line word, with <proxy> pointing to |
| 380 | * the proxy being parsed, and <defpx> to the default proxy or NULL. |
| 381 | */ |
| 382 | static int proxy_parse_max_ka_queue(char **args, int section, struct proxy *proxy, |
| 383 | struct proxy *defpx, const char *file, int line, |
| 384 | char **err) |
| 385 | { |
| 386 | int retval; |
| 387 | char *res; |
| 388 | unsigned int val; |
| 389 | |
| 390 | retval = 0; |
| 391 | |
| 392 | if (*args[1] == 0) { |
| 393 | memprintf(err, "'%s' expects expects an integer value (or -1 to disable)", args[0]); |
| 394 | return -1; |
| 395 | } |
| 396 | |
| 397 | val = strtol(args[1], &res, 0); |
| 398 | if (*res) { |
| 399 | memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]); |
| 400 | return -1; |
| 401 | } |
| 402 | |
| 403 | if (!(proxy->cap & PR_CAP_BE)) { |
| 404 | memprintf(err, "%s will be ignored because %s '%s' has no backend capability", |
| 405 | args[0], proxy_type_str(proxy), proxy->id); |
| 406 | retval = 1; |
| 407 | } |
| 408 | |
| 409 | /* we store <val+1> so that a user-facing value of -1 is stored as zero (default) */ |
| 410 | proxy->max_ka_queue = val + 1; |
| 411 | return retval; |
| 412 | } |
| 413 | |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 414 | /* This function parses a "declare" statement in a proxy section. It returns -1 |
| 415 | * if there is any error, 1 for warning, otherwise 0. If it does not return zero, |
| 416 | * it will write an error or warning message into a preallocated buffer returned |
| 417 | * at <err>. The function must be called with <args> pointing to the first command |
| 418 | * line word, with <proxy> pointing to the proxy being parsed, and <defpx> to the |
| 419 | * default proxy or NULL. |
| 420 | */ |
| 421 | static int proxy_parse_declare(char **args, int section, struct proxy *curpx, |
| 422 | struct proxy *defpx, const char *file, int line, |
| 423 | char **err) |
| 424 | { |
| 425 | /* Capture keyword wannot be declared in a default proxy. */ |
| 426 | if (curpx == defpx) { |
Joseph Herlant | 9edebb8 | 2018-11-15 11:50:44 -0800 | [diff] [blame] | 427 | memprintf(err, "'%s' not available in default section", args[0]); |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 428 | return -1; |
| 429 | } |
| 430 | |
Joseph Herlant | 59dd295 | 2018-11-15 11:46:55 -0800 | [diff] [blame] | 431 | /* Capture keywork is only available in frontend. */ |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 432 | if (!(curpx->cap & PR_CAP_FE)) { |
Joseph Herlant | 9edebb8 | 2018-11-15 11:50:44 -0800 | [diff] [blame] | 433 | memprintf(err, "'%s' only available in frontend or listen section", args[0]); |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 434 | return -1; |
| 435 | } |
| 436 | |
| 437 | /* Check mandatory second keyword. */ |
| 438 | if (!args[1] || !*args[1]) { |
| 439 | memprintf(err, "'%s' needs a second keyword that specify the type of declaration ('capture')", args[0]); |
| 440 | return -1; |
| 441 | } |
| 442 | |
Joseph Herlant | 59dd295 | 2018-11-15 11:46:55 -0800 | [diff] [blame] | 443 | /* Actually, declare is only available for declaring capture |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 444 | * slot, but in the future it can declare maps or variables. |
Joseph Herlant | 59dd295 | 2018-11-15 11:46:55 -0800 | [diff] [blame] | 445 | * So, this section permits to check and switch according with |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 446 | * the second keyword. |
| 447 | */ |
| 448 | if (strcmp(args[1], "capture") == 0) { |
| 449 | char *error = NULL; |
| 450 | long len; |
| 451 | struct cap_hdr *hdr; |
| 452 | |
| 453 | /* Check the next keyword. */ |
| 454 | if (!args[2] || !*args[2] || |
| 455 | (strcmp(args[2], "response") != 0 && |
| 456 | strcmp(args[2], "request") != 0)) { |
| 457 | memprintf(err, "'%s %s' requires a direction ('request' or 'response')", args[0], args[1]); |
| 458 | return -1; |
| 459 | } |
| 460 | |
| 461 | /* Check the 'len' keyword. */ |
| 462 | if (!args[3] || !*args[3] || strcmp(args[3], "len") != 0) { |
| 463 | memprintf(err, "'%s %s' requires a capture length ('len')", args[0], args[1]); |
| 464 | return -1; |
| 465 | } |
| 466 | |
| 467 | /* Check the length value. */ |
| 468 | if (!args[4] || !*args[4]) { |
| 469 | memprintf(err, "'%s %s': 'len' requires a numeric value that represents the " |
| 470 | "capture length", |
| 471 | args[0], args[1]); |
| 472 | return -1; |
| 473 | } |
| 474 | |
| 475 | /* convert the length value. */ |
| 476 | len = strtol(args[4], &error, 10); |
| 477 | if (*error != '\0') { |
| 478 | memprintf(err, "'%s %s': cannot parse the length '%s'.", |
| 479 | args[0], args[1], args[3]); |
| 480 | return -1; |
| 481 | } |
| 482 | |
| 483 | /* check length. */ |
| 484 | if (len <= 0) { |
| 485 | memprintf(err, "length must be > 0"); |
| 486 | return -1; |
| 487 | } |
| 488 | |
| 489 | /* register the capture. */ |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 490 | hdr = calloc(1, sizeof(*hdr)); |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 491 | hdr->name = NULL; /* not a header capture */ |
| 492 | hdr->namelen = 0; |
| 493 | hdr->len = len; |
| 494 | hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED); |
| 495 | |
| 496 | if (strcmp(args[2], "request") == 0) { |
| 497 | hdr->next = curpx->req_cap; |
| 498 | hdr->index = curpx->nb_req_cap++; |
| 499 | curpx->req_cap = hdr; |
| 500 | } |
| 501 | if (strcmp(args[2], "response") == 0) { |
| 502 | hdr->next = curpx->rsp_cap; |
| 503 | hdr->index = curpx->nb_rsp_cap++; |
| 504 | curpx->rsp_cap = hdr; |
| 505 | } |
| 506 | return 0; |
| 507 | } |
| 508 | else { |
| 509 | memprintf(err, "unknown declaration type '%s' (supports 'capture')", args[1]); |
| 510 | return -1; |
| 511 | } |
| 512 | } |
| 513 | |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 514 | /* This function parses a "retry-on" statement */ |
| 515 | static int |
| 516 | proxy_parse_retry_on(char **args, int section, struct proxy *curpx, |
| 517 | struct proxy *defpx, const char *file, int line, |
| 518 | char **err) |
| 519 | { |
| 520 | int i; |
| 521 | |
| 522 | if (!(*args[1])) { |
| 523 | memprintf(err, "'%s' needs at least one keyword to specify when to retry", args[0]); |
| 524 | return -1; |
| 525 | } |
| 526 | if (!(curpx->cap & PR_CAP_BE)) { |
| 527 | memprintf(err, "'%s' only available in backend or listen section", args[0]); |
| 528 | return -1; |
| 529 | } |
| 530 | curpx->retry_type = 0; |
| 531 | for (i = 1; *(args[i]); i++) { |
| 532 | if (!strcmp(args[i], "conn-failure")) |
| 533 | curpx->retry_type |= PR_RE_CONN_FAILED; |
| 534 | else if (!strcmp(args[i], "empty-response")) |
| 535 | curpx->retry_type |= PR_RE_DISCONNECTED; |
| 536 | else if (!strcmp(args[i], "response-timeout")) |
| 537 | curpx->retry_type |= PR_RE_TIMEOUT; |
| 538 | else if (!strcmp(args[i], "404")) |
| 539 | curpx->retry_type |= PR_RE_404; |
| 540 | else if (!strcmp(args[i], "408")) |
| 541 | curpx->retry_type |= PR_RE_408; |
| 542 | else if (!strcmp(args[i], "425")) |
| 543 | curpx->retry_type |= PR_RE_425; |
| 544 | else if (!strcmp(args[i], "500")) |
| 545 | curpx->retry_type |= PR_RE_500; |
| 546 | else if (!strcmp(args[i], "501")) |
| 547 | curpx->retry_type |= PR_RE_501; |
| 548 | else if (!strcmp(args[i], "502")) |
| 549 | curpx->retry_type |= PR_RE_502; |
| 550 | else if (!strcmp(args[i], "503")) |
| 551 | curpx->retry_type |= PR_RE_503; |
| 552 | else if (!strcmp(args[i], "504")) |
| 553 | curpx->retry_type |= PR_RE_504; |
Olivier Houchard | 865d839 | 2019-05-03 22:46:27 +0200 | [diff] [blame] | 554 | else if (!strcmp(args[i], "0rtt-rejected")) |
| 555 | curpx->retry_type |= PR_RE_EARLY_ERROR; |
Olivier Houchard | e3249a9 | 2019-05-03 23:01:47 +0200 | [diff] [blame] | 556 | else if (!strcmp(args[i], "junk-response")) |
| 557 | curpx->retry_type |= PR_RE_JUNK_REQUEST; |
Olivier Houchard | ddf0e03 | 2019-05-10 18:05:40 +0200 | [diff] [blame] | 558 | else if (!(strcmp(args[i], "all-retryable-errors"))) |
| 559 | curpx->retry_type |= PR_RE_CONN_FAILED | PR_RE_DISCONNECTED | |
| 560 | PR_RE_TIMEOUT | PR_RE_500 | PR_RE_502 | |
| 561 | PR_RE_503 | PR_RE_504 | PR_RE_EARLY_ERROR | |
| 562 | PR_RE_JUNK_REQUEST; |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 563 | else if (!strcmp(args[i], "none")) { |
| 564 | if (i != 1 || *args[i + 1]) { |
| 565 | memprintf(err, "'%s' 'none' keyworld only usable alone", args[0]); |
| 566 | return -1; |
| 567 | } |
| 568 | } else { |
| 569 | memprintf(err, "'%s': unknown keyword '%s'", args[0], args[i]); |
| 570 | return -1; |
| 571 | } |
| 572 | |
| 573 | } |
| 574 | |
| 575 | |
| 576 | return 0; |
| 577 | } |
| 578 | |
Willy Tarreau | f79d950 | 2014-03-15 07:22:35 +0100 | [diff] [blame] | 579 | /* This function inserts proxy <px> into the tree of known proxies. The proxy's |
| 580 | * name is used as the storing key so it must already have been initialized. |
| 581 | */ |
| 582 | void proxy_store_name(struct proxy *px) |
| 583 | { |
| 584 | px->conf.by_name.key = px->id; |
| 585 | ebis_insert(&proxy_by_name, &px->conf.by_name); |
| 586 | } |
| 587 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 588 | /* Returns a pointer to the first proxy matching capabilities <cap> and id |
| 589 | * <id>. NULL is returned if no match is found. If <table> is non-zero, it |
| 590 | * only considers proxies having a table. |
Willy Tarreau | bc216c4 | 2011-08-02 11:25:54 +0200 | [diff] [blame] | 591 | */ |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 592 | struct proxy *proxy_find_by_id(int id, int cap, int table) |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 593 | { |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 594 | struct eb32_node *n; |
Willy Tarreau | bc216c4 | 2011-08-02 11:25:54 +0200 | [diff] [blame] | 595 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 596 | for (n = eb32_lookup(&used_proxy_id, id); n; n = eb32_next(n)) { |
| 597 | struct proxy *px = container_of(n, struct proxy, conf.id); |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 598 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 599 | if (px->uuid != id) |
| 600 | break; |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 601 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 602 | if ((px->cap & cap) != cap) |
| 603 | continue; |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 604 | |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 605 | if (table && (!px->table || !px->table->size)) |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 606 | continue; |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 607 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 608 | return px; |
| 609 | } |
| 610 | return NULL; |
| 611 | } |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 612 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 613 | /* Returns a pointer to the first proxy matching either name <name>, or id |
| 614 | * <name> if <name> begins with a '#'. NULL is returned if no match is found. |
| 615 | * If <table> is non-zero, it only considers proxies having a table. |
| 616 | */ |
| 617 | struct proxy *proxy_find_by_name(const char *name, int cap, int table) |
| 618 | { |
| 619 | struct proxy *curproxy; |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 620 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 621 | if (*name == '#') { |
| 622 | curproxy = proxy_find_by_id(atoi(name + 1), cap, table); |
| 623 | if (curproxy) |
Willy Tarreau | c739aa8 | 2015-05-26 11:35:41 +0200 | [diff] [blame] | 624 | return curproxy; |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 625 | } |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 626 | else { |
| 627 | struct ebpt_node *node; |
| 628 | |
| 629 | for (node = ebis_lookup(&proxy_by_name, name); node; node = ebpt_next(node)) { |
| 630 | curproxy = container_of(node, struct proxy, conf.by_name); |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 631 | |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 632 | if (strcmp(curproxy->id, name) != 0) |
| 633 | break; |
| 634 | |
| 635 | if ((curproxy->cap & cap) != cap) |
| 636 | continue; |
| 637 | |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 638 | if (table && (!curproxy->table || !curproxy->table->size)) |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 639 | continue; |
| 640 | |
Willy Tarreau | c739aa8 | 2015-05-26 11:35:41 +0200 | [diff] [blame] | 641 | return curproxy; |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 642 | } |
| 643 | } |
Willy Tarreau | c739aa8 | 2015-05-26 11:35:41 +0200 | [diff] [blame] | 644 | return NULL; |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 645 | } |
| 646 | |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 647 | /* Finds the best match for a proxy with capabilities <cap>, name <name> and id |
| 648 | * <id>. At most one of <id> or <name> may be different provided that <cap> is |
| 649 | * valid. Either <id> or <name> may be left unspecified (0). The purpose is to |
| 650 | * find a proxy based on some information from a previous configuration, across |
| 651 | * reloads or during information exchange between peers. |
| 652 | * |
| 653 | * Names are looked up first if present, then IDs are compared if present. In |
| 654 | * case of an inexact match whatever is forced in the configuration has |
| 655 | * precedence in the following order : |
| 656 | * - 1) forced ID (proves a renaming / change of proxy type) |
| 657 | * - 2) proxy name+type (may indicate a move if ID differs) |
| 658 | * - 3) automatic ID+type (may indicate a renaming) |
| 659 | * |
| 660 | * Depending on what is found, we can end up in the following situations : |
| 661 | * |
| 662 | * name id cap | possible causes |
| 663 | * -------------+----------------- |
| 664 | * -- -- -- | nothing found |
| 665 | * -- -- ok | nothing found |
| 666 | * -- ok -- | proxy deleted, ID points to next one |
| 667 | * -- ok ok | proxy renamed, or deleted with ID pointing to next one |
| 668 | * ok -- -- | proxy deleted, but other half with same name still here (before) |
| 669 | * ok -- ok | proxy's ID changed (proxy moved in the config file) |
| 670 | * ok ok -- | proxy deleted, but other half with same name still here (after) |
| 671 | * ok ok ok | perfect match |
| 672 | * |
| 673 | * Upon return if <diff> is not NULL, it is zeroed then filled with up to 3 bits : |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 674 | * - PR_FBM_MISMATCH_ID : proxy was found but ID differs |
| 675 | * (and ID was not zero) |
| 676 | * - PR_FBM_MISMATCH_NAME : proxy was found by ID but name differs |
| 677 | * (and name was not NULL) |
| 678 | * - PR_FBM_MISMATCH_PROXYTYPE : a proxy of different type was found with |
| 679 | * the same name and/or id |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 680 | * |
| 681 | * Only a valid proxy is returned. If capabilities do not match, NULL is |
| 682 | * returned. The caller can check <diff> to report detailed warnings / errors, |
| 683 | * and decide whether or not to use what was found. |
| 684 | */ |
| 685 | struct proxy *proxy_find_best_match(int cap, const char *name, int id, int *diff) |
| 686 | { |
| 687 | struct proxy *byname; |
| 688 | struct proxy *byid; |
| 689 | |
| 690 | if (!name && !id) |
| 691 | return NULL; |
| 692 | |
| 693 | if (diff) |
| 694 | *diff = 0; |
| 695 | |
| 696 | byname = byid = NULL; |
| 697 | |
| 698 | if (name) { |
| 699 | byname = proxy_find_by_name(name, cap, 0); |
| 700 | if (byname && (!id || byname->uuid == id)) |
| 701 | return byname; |
| 702 | } |
| 703 | |
Joseph Herlant | 59dd295 | 2018-11-15 11:46:55 -0800 | [diff] [blame] | 704 | /* remaining possibilities : |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 705 | * - name not set |
| 706 | * - name set but not found |
| 707 | * - name found, but ID doesn't match. |
| 708 | */ |
| 709 | if (id) { |
| 710 | byid = proxy_find_by_id(id, cap, 0); |
| 711 | if (byid) { |
| 712 | if (byname) { |
| 713 | /* id+type found, name+type found, but not all 3. |
| 714 | * ID wins only if forced, otherwise name wins. |
| 715 | */ |
| 716 | if (byid->options & PR_O_FORCED_ID) { |
| 717 | if (diff) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 718 | *diff |= PR_FBM_MISMATCH_NAME; |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 719 | return byid; |
| 720 | } |
| 721 | else { |
| 722 | if (diff) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 723 | *diff |= PR_FBM_MISMATCH_ID; |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 724 | return byname; |
| 725 | } |
| 726 | } |
| 727 | |
Joseph Herlant | 59dd295 | 2018-11-15 11:46:55 -0800 | [diff] [blame] | 728 | /* remaining possibilities : |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 729 | * - name not set |
| 730 | * - name set but not found |
| 731 | */ |
| 732 | if (name && diff) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 733 | *diff |= PR_FBM_MISMATCH_NAME; |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 734 | return byid; |
| 735 | } |
| 736 | |
| 737 | /* ID not found */ |
| 738 | if (byname) { |
| 739 | if (diff) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 740 | *diff |= PR_FBM_MISMATCH_ID; |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 741 | return byname; |
| 742 | } |
| 743 | } |
| 744 | |
Joseph Herlant | 59dd295 | 2018-11-15 11:46:55 -0800 | [diff] [blame] | 745 | /* All remaining possibilities will lead to NULL. If we can report more |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 746 | * detailed information to the caller about changed types and/or name, |
| 747 | * we'll do it. For example, we could detect that "listen foo" was |
| 748 | * split into "frontend foo_ft" and "backend foo_bk" if IDs are forced. |
| 749 | * - name not set, ID not found |
| 750 | * - name not found, ID not set |
| 751 | * - name not found, ID not found |
| 752 | */ |
| 753 | if (!diff) |
| 754 | return NULL; |
| 755 | |
| 756 | if (name) { |
| 757 | byname = proxy_find_by_name(name, 0, 0); |
| 758 | if (byname && (!id || byname->uuid == id)) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 759 | *diff |= PR_FBM_MISMATCH_PROXYTYPE; |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 760 | } |
| 761 | |
| 762 | if (id) { |
| 763 | byid = proxy_find_by_id(id, 0, 0); |
| 764 | if (byid) { |
| 765 | if (!name) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 766 | *diff |= PR_FBM_MISMATCH_PROXYTYPE; /* only type changed */ |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 767 | else if (byid->options & PR_O_FORCED_ID) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 768 | *diff |= PR_FBM_MISMATCH_NAME | PR_FBM_MISMATCH_PROXYTYPE; /* name and type changed */ |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 769 | /* otherwise it's a different proxy that was returned */ |
| 770 | } |
| 771 | } |
| 772 | return NULL; |
| 773 | } |
| 774 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 775 | /* |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 776 | * This function finds a server with matching name within selected proxy. |
| 777 | * It also checks if there are more matching servers with |
| 778 | * requested name as this often leads into unexpected situations. |
| 779 | */ |
| 780 | |
| 781 | struct server *findserver(const struct proxy *px, const char *name) { |
| 782 | |
| 783 | struct server *cursrv, *target = NULL; |
| 784 | |
| 785 | if (!px) |
| 786 | return NULL; |
| 787 | |
| 788 | for (cursrv = px->srv; cursrv; cursrv = cursrv->next) { |
| 789 | if (strcmp(cursrv->id, name)) |
| 790 | continue; |
| 791 | |
| 792 | if (!target) { |
| 793 | target = cursrv; |
| 794 | continue; |
| 795 | } |
| 796 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 797 | ha_alert("Refusing to use duplicated server '%s' found in proxy: %s!\n", |
| 798 | name, px->id); |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 799 | |
| 800 | return NULL; |
| 801 | } |
| 802 | |
| 803 | return target; |
| 804 | } |
| 805 | |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 806 | /* This function checks that the designated proxy has no http directives |
| 807 | * enabled. It will output a warning if there are, and will fix some of them. |
| 808 | * It returns the number of fatal errors encountered. This should be called |
| 809 | * at the end of the configuration parsing if the proxy is not in http mode. |
| 810 | * The <file> argument is used to construct the error message. |
| 811 | */ |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 812 | int proxy_cfg_ensure_no_http(struct proxy *curproxy) |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 813 | { |
| 814 | if (curproxy->cookie_name != NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 815 | ha_warning("config : cookie will be ignored for %s '%s' (needs 'mode http').\n", |
| 816 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 817 | } |
| 818 | if (curproxy->rsp_exp != NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 819 | ha_warning("config : server regular expressions will be ignored for %s '%s' (needs 'mode http').\n", |
| 820 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 821 | } |
| 822 | if (curproxy->req_exp != NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 823 | ha_warning("config : client regular expressions will be ignored for %s '%s' (needs 'mode http').\n", |
| 824 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 825 | } |
| 826 | if (curproxy->monitor_uri != NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 827 | ha_warning("config : monitor-uri will be ignored for %s '%s' (needs 'mode http').\n", |
| 828 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 829 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 830 | if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) { |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 831 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 832 | curproxy->lbprm.algo |= BE_LB_ALGO_RR; |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 833 | ha_warning("config : Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n", |
| 834 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 835 | } |
Willy Tarreau | 1780416 | 2009-11-09 21:27:51 +0100 | [diff] [blame] | 836 | if (curproxy->to_log & (LW_REQ | LW_RESP)) { |
| 837 | curproxy->to_log &= ~(LW_REQ | LW_RESP); |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 838 | ha_warning("parsing [%s:%d] : HTTP log/header format not usable with %s '%s' (needs 'mode http').\n", |
| 839 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, |
| 840 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 1780416 | 2009-11-09 21:27:51 +0100 | [diff] [blame] | 841 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 842 | if (curproxy->conf.logformat_string == default_http_log_format || |
| 843 | curproxy->conf.logformat_string == clf_http_log_format) { |
| 844 | /* Note: we don't change the directive's file:line number */ |
| 845 | curproxy->conf.logformat_string = default_tcp_log_format; |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 846 | ha_warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n", |
| 847 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, |
| 848 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 196729e | 2012-05-31 19:30:26 +0200 | [diff] [blame] | 849 | } |
| 850 | |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 851 | return 0; |
| 852 | } |
| 853 | |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 854 | /* Perform the most basic initialization of a proxy : |
| 855 | * memset(), list_init(*), reset_timeouts(*). |
Willy Tarreau | b249e84 | 2011-09-07 18:41:08 +0200 | [diff] [blame] | 856 | * Any new proxy or peer should be initialized via this function. |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 857 | */ |
| 858 | void init_new_proxy(struct proxy *p) |
| 859 | { |
| 860 | memset(p, 0, sizeof(struct proxy)); |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 861 | p->obj_type = OBJ_TYPE_PROXY; |
Patrick Hemmer | 0355dab | 2018-05-11 12:52:31 -0400 | [diff] [blame] | 862 | p->pendconns = EB_ROOT; |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 863 | LIST_INIT(&p->acl); |
| 864 | LIST_INIT(&p->http_req_rules); |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 865 | LIST_INIT(&p->http_res_rules); |
Willy Tarreau | 353bc9f | 2014-04-28 22:05:31 +0200 | [diff] [blame] | 866 | LIST_INIT(&p->block_rules); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 867 | LIST_INIT(&p->redirect_rules); |
| 868 | LIST_INIT(&p->mon_fail_cond); |
| 869 | LIST_INIT(&p->switching_rules); |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 870 | LIST_INIT(&p->server_rules); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 871 | LIST_INIT(&p->persist_rules); |
| 872 | LIST_INIT(&p->sticking_rules); |
| 873 | LIST_INIT(&p->storersp_rules); |
| 874 | LIST_INIT(&p->tcp_req.inspect_rules); |
| 875 | LIST_INIT(&p->tcp_rep.inspect_rules); |
| 876 | LIST_INIT(&p->tcp_req.l4_rules); |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 877 | LIST_INIT(&p->tcp_req.l5_rules); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 878 | LIST_INIT(&p->req_add); |
| 879 | LIST_INIT(&p->rsp_add); |
| 880 | LIST_INIT(&p->listener_queue); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 881 | LIST_INIT(&p->logsrvs); |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 882 | LIST_INIT(&p->logformat); |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 883 | LIST_INIT(&p->logformat_sd); |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 884 | LIST_INIT(&p->format_unique_id); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 885 | LIST_INIT(&p->conf.bind); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 886 | LIST_INIT(&p->conf.listeners); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 887 | LIST_INIT(&p->conf.args.list); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 888 | LIST_INIT(&p->tcpcheck_rules); |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 889 | LIST_INIT(&p->filter_configs); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 890 | |
| 891 | /* Timeouts are defined as -1 */ |
| 892 | proxy_reset_timeouts(p); |
| 893 | p->tcp_rep.inspect_delay = TICK_ETERNITY; |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 894 | |
| 895 | /* initial uuid is unassigned (-1) */ |
| 896 | p->uuid = -1; |
Christopher Faulet | ff8abcd | 2017-06-02 15:33:24 +0200 | [diff] [blame] | 897 | |
Christopher Faulet | 1d2b586 | 2019-04-12 16:10:51 +0200 | [diff] [blame] | 898 | /* HTX is the default mode, for HTTP and TCP */ |
| 899 | p->options2 |= PR_O2_USE_HTX; |
| 900 | |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 901 | /* Default to only allow L4 retries */ |
| 902 | p->retry_type = PR_RE_CONN_FAILED; |
| 903 | |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 904 | HA_SPIN_INIT(&p->lock); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 905 | } |
| 906 | |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 907 | /* |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 908 | * This function creates all proxy sockets. It should be done very early, |
| 909 | * typically before privileges are dropped. The sockets will be registered |
| 910 | * but not added to any fd_set, in order not to loose them across the fork(). |
Willy Tarreau | 562515c | 2011-07-25 08:11:52 +0200 | [diff] [blame] | 911 | * The proxies also start in READY state because they all have their listeners |
Willy Tarreau | f3f8c70 | 2011-07-25 07:37:28 +0200 | [diff] [blame] | 912 | * bound. |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 913 | * |
| 914 | * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL. |
| 915 | * Retryable errors will only be printed if <verbose> is not zero. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 916 | */ |
| 917 | int start_proxies(int verbose) |
| 918 | { |
| 919 | struct proxy *curproxy; |
| 920 | struct listener *listener; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 921 | int lerr, err = ERR_NONE; |
| 922 | int pxerr; |
| 923 | char msg[100]; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 924 | |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 925 | for (curproxy = proxies_list; curproxy != NULL; curproxy = curproxy->next) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 926 | if (curproxy->state != PR_STNEW) |
| 927 | continue; /* already initialized */ |
| 928 | |
| 929 | pxerr = 0; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 930 | list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) { |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 931 | if (listener->state != LI_ASSIGNED) |
| 932 | continue; /* already started */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 933 | |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 934 | lerr = listener->proto->bind(listener, msg, sizeof(msg)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 935 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 936 | /* errors are reported if <verbose> is set or if they are fatal */ |
| 937 | if (verbose || (lerr & (ERR_FATAL | ERR_ABORT))) { |
| 938 | if (lerr & ERR_ALERT) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 939 | ha_alert("Starting %s %s: %s\n", |
| 940 | proxy_type_str(curproxy), curproxy->id, msg); |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 941 | else if (lerr & ERR_WARN) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 942 | ha_warning("Starting %s %s: %s\n", |
| 943 | proxy_type_str(curproxy), curproxy->id, msg); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 944 | } |
| 945 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 946 | err |= lerr; |
| 947 | if (lerr & (ERR_ABORT | ERR_FATAL)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 948 | pxerr |= 1; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 949 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 950 | } |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 951 | else if (lerr & ERR_CODE) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 952 | pxerr |= 1; |
| 953 | continue; |
| 954 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 955 | } |
| 956 | |
| 957 | if (!pxerr) { |
Willy Tarreau | 562515c | 2011-07-25 08:11:52 +0200 | [diff] [blame] | 958 | curproxy->state = PR_STREADY; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 959 | send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id); |
| 960 | } |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 961 | |
| 962 | if (err & ERR_ABORT) |
| 963 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 964 | } |
| 965 | |
| 966 | return err; |
| 967 | } |
| 968 | |
| 969 | |
| 970 | /* |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 971 | * This is the proxy management task. It enables proxies when there are enough |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 972 | * free streams, or stops them when the table is full. It is designed to be |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 973 | * called as a task which is woken up upon stopping or when rate limiting must |
| 974 | * be enforced. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 975 | */ |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 976 | struct task *manage_proxy(struct task *t, void *context, unsigned short state) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 977 | { |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 978 | struct proxy *p = context; |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 979 | int next = TICK_ETERNITY; |
Willy Tarreau | 7958422 | 2009-03-06 09:18:27 +0100 | [diff] [blame] | 980 | unsigned int wait; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 981 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 982 | /* We should periodically try to enable listeners waiting for a |
| 983 | * global resource here. |
| 984 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 985 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 986 | /* first, let's check if we need to stop the proxy */ |
| 987 | if (unlikely(stopping && p->state != PR_STSTOPPED)) { |
| 988 | int t; |
| 989 | t = tick_remain(now_ms, p->stop_time); |
| 990 | if (t == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 991 | ha_warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n", |
| 992 | p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn); |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 993 | send_log(p, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n", |
| 994 | p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn); |
| 995 | stop_proxy(p); |
| 996 | /* try to free more memory */ |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 997 | pool_gc(NULL); |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 998 | } |
| 999 | else { |
| 1000 | next = tick_first(next, p->stop_time); |
| 1001 | } |
| 1002 | } |
Willy Tarreau | f3f8c70 | 2011-07-25 07:37:28 +0200 | [diff] [blame] | 1003 | |
Willy Tarreau | 3a925c1 | 2013-09-04 17:54:01 +0200 | [diff] [blame] | 1004 | /* If the proxy holds a stick table, we need to purge all unused |
| 1005 | * entries. These are all the ones in the table with ref_cnt == 0 |
| 1006 | * and all the ones in the pool used to allocate new entries. Any |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1007 | * entry attached to an existing stream waiting for a store will |
Willy Tarreau | 3a925c1 | 2013-09-04 17:54:01 +0200 | [diff] [blame] | 1008 | * be in neither list. Any entry being dumped will have ref_cnt > 0. |
| 1009 | * However we protect tables that are being synced to peers. |
| 1010 | */ |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1011 | if (unlikely(stopping && p->state == PR_STSTOPPED && p->table && p->table->current)) { |
| 1012 | if (!p->table->syncing) { |
| 1013 | stktable_trash_oldest(p->table, p->table->current); |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 1014 | pool_gc(NULL); |
Willy Tarreau | 3a925c1 | 2013-09-04 17:54:01 +0200 | [diff] [blame] | 1015 | } |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1016 | if (p->table->current) { |
Willy Tarreau | 3a925c1 | 2013-09-04 17:54:01 +0200 | [diff] [blame] | 1017 | /* some entries still remain, let's recheck in one second */ |
| 1018 | next = tick_first(next, tick_add(now_ms, 1000)); |
| 1019 | } |
| 1020 | } |
| 1021 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 1022 | /* the rest below is just for frontends */ |
| 1023 | if (!(p->cap & PR_CAP_FE)) |
| 1024 | goto out; |
Willy Tarreau | f3f8c70 | 2011-07-25 07:37:28 +0200 | [diff] [blame] | 1025 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 1026 | /* check the various reasons we may find to block the frontend */ |
| 1027 | if (unlikely(p->feconn >= p->maxconn)) { |
| 1028 | if (p->state == PR_STREADY) |
| 1029 | p->state = PR_STFULL; |
| 1030 | goto out; |
| 1031 | } |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 1032 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 1033 | /* OK we have no reason to block, so let's unblock if we were blocking */ |
| 1034 | if (p->state == PR_STFULL) |
| 1035 | p->state = PR_STREADY; |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 1036 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 1037 | if (p->fe_sps_lim && |
| 1038 | (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) { |
| 1039 | /* we're blocking because a limit was reached on the number of |
| 1040 | * requests/s on the frontend. We want to re-check ASAP, which |
| 1041 | * means in 1 ms before estimated expiration date, because the |
| 1042 | * timer will have settled down. |
| 1043 | */ |
| 1044 | next = tick_first(next, tick_add(now_ms, wait)); |
| 1045 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1046 | } |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 1047 | |
| 1048 | /* The proxy is not limited so we can re-enable any waiting listener */ |
| 1049 | if (!LIST_ISEMPTY(&p->listener_queue)) |
| 1050 | dequeue_all_listeners(&p->listener_queue); |
| 1051 | out: |
| 1052 | t->expire = next; |
| 1053 | task_queue(t); |
| 1054 | return t; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1055 | } |
| 1056 | |
| 1057 | |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1058 | static int proxy_parse_hard_stop_after(char **args, int section_type, struct proxy *curpx, |
| 1059 | struct proxy *defpx, const char *file, int line, |
| 1060 | char **err) |
| 1061 | { |
| 1062 | const char *res; |
| 1063 | |
| 1064 | if (!*args[1]) { |
| 1065 | memprintf(err, "'%s' expects <time> as argument.\n", args[0]); |
| 1066 | return -1; |
| 1067 | } |
| 1068 | res = parse_time_err(args[1], &global.hard_stop_after, TIME_UNIT_MS); |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 1069 | if (res == PARSE_TIME_OVER) { |
| 1070 | memprintf(err, "timer overflow in argument '%s' to '%s' (maximum value is 2147483647 ms or ~24.8 days)", |
| 1071 | args[1], args[0]); |
| 1072 | return -1; |
| 1073 | } |
| 1074 | else if (res == PARSE_TIME_UNDER) { |
| 1075 | memprintf(err, "timer underflow in argument '%s' to '%s' (minimum non-null value is 1 ms)", |
| 1076 | args[1], args[0]); |
| 1077 | return -1; |
| 1078 | } |
| 1079 | else if (res) { |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1080 | memprintf(err, "unexpected character '%c' in argument to <%s>.\n", *res, args[0]); |
| 1081 | return -1; |
| 1082 | } |
| 1083 | return 0; |
| 1084 | } |
| 1085 | |
Olivier Houchard | 9f6af33 | 2018-05-25 14:04:04 +0200 | [diff] [blame] | 1086 | struct task *hard_stop(struct task *t, void *context, unsigned short state) |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1087 | { |
| 1088 | struct proxy *p; |
| 1089 | struct stream *s; |
| 1090 | |
| 1091 | if (killed) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1092 | ha_warning("Some tasks resisted to hard-stop, exiting now.\n"); |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1093 | send_log(NULL, LOG_WARNING, "Some tasks resisted to hard-stop, exiting now.\n"); |
Willy Tarreau | 7067b3a | 2019-06-02 11:11:29 +0200 | [diff] [blame] | 1094 | killed = 2; |
| 1095 | t->expire = TICK_ETERNITY; |
| 1096 | return t; |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1097 | } |
| 1098 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1099 | ha_warning("soft-stop running for too long, performing a hard-stop.\n"); |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1100 | send_log(NULL, LOG_WARNING, "soft-stop running for too long, performing a hard-stop.\n"); |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 1101 | p = proxies_list; |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1102 | while (p) { |
| 1103 | if ((p->cap & PR_CAP_FE) && (p->feconn > 0)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1104 | ha_warning("Proxy %s hard-stopped (%d remaining conns will be closed).\n", |
| 1105 | p->id, p->feconn); |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1106 | send_log(p, LOG_WARNING, "Proxy %s hard-stopped (%d remaining conns will be closed).\n", |
| 1107 | p->id, p->feconn); |
| 1108 | } |
| 1109 | p = p->next; |
| 1110 | } |
| 1111 | list_for_each_entry(s, &streams, list) { |
| 1112 | stream_shutdown(s, SF_ERR_KILLED); |
| 1113 | } |
| 1114 | |
| 1115 | killed = 1; |
| 1116 | t->expire = tick_add(now_ms, MS_TO_TICKS(1000)); |
| 1117 | return t; |
| 1118 | } |
| 1119 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1120 | /* |
| 1121 | * this function disables health-check servers so that the process will quickly be ignored |
| 1122 | * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace |
| 1123 | * time will not be used since it would already not listen anymore to the socket. |
| 1124 | */ |
| 1125 | void soft_stop(void) |
| 1126 | { |
| 1127 | struct proxy *p; |
Willy Tarreau | bbe11b1 | 2011-07-25 11:16:24 +0200 | [diff] [blame] | 1128 | struct peers *prs; |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1129 | struct task *task; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1130 | |
| 1131 | stopping = 1; |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1132 | if (tick_isset(global.hard_stop_after)) { |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 1133 | task = task_new(MAX_THREADS_MASK); |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1134 | if (task) { |
| 1135 | task->process = hard_stop; |
| 1136 | task_schedule(task, tick_add(now_ms, global.hard_stop_after)); |
| 1137 | } |
| 1138 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1139 | ha_alert("out of memory trying to allocate the hard-stop task.\n"); |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1140 | } |
| 1141 | } |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 1142 | p = proxies_list; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 1143 | tv_update_date(0,1); /* else, the old time before select will be used */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1144 | while (p) { |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 1145 | /* Zombie proxy, let's close the file descriptors */ |
| 1146 | if (p->state == PR_STSTOPPED && |
| 1147 | !LIST_ISEMPTY(&p->conf.listeners) && |
| 1148 | LIST_ELEM(p->conf.listeners.n, |
| 1149 | struct listener *, by_fe)->state >= LI_ZOMBIE) { |
| 1150 | struct listener *l; |
| 1151 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
| 1152 | if (l->state >= LI_ZOMBIE) |
| 1153 | close(l->fd); |
| 1154 | l->state = LI_INIT; |
| 1155 | } |
| 1156 | } |
| 1157 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1158 | if (p->state != PR_STSTOPPED) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1159 | ha_warning("Stopping %s %s in %d ms.\n", proxy_cap_str(p->cap), p->id, p->grace); |
Willy Tarreau | f8fbcef | 2008-10-10 17:51:34 +0200 | [diff] [blame] | 1160 | send_log(p, LOG_WARNING, "Stopping %s %s in %d ms.\n", proxy_cap_str(p->cap), p->id, p->grace); |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 1161 | p->stop_time = tick_add(now_ms, p->grace); |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 1162 | |
Willy Tarreau | 20b7afb | 2015-09-28 16:35:04 +0200 | [diff] [blame] | 1163 | /* Note: do not wake up stopped proxies' task nor their tables' |
| 1164 | * tasks as these ones might point to already released entries. |
| 1165 | */ |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1166 | if (p->table && p->table->size && p->table->sync_task) |
| 1167 | task_wakeup(p->table->sync_task, TASK_WOKEN_MSG); |
Willy Tarreau | 20b7afb | 2015-09-28 16:35:04 +0200 | [diff] [blame] | 1168 | |
| 1169 | if (p->task) |
| 1170 | task_wakeup(p->task, TASK_WOKEN_MSG); |
| 1171 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1172 | p = p->next; |
| 1173 | } |
Willy Tarreau | bbe11b1 | 2011-07-25 11:16:24 +0200 | [diff] [blame] | 1174 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 1175 | prs = cfg_peers; |
Willy Tarreau | bbe11b1 | 2011-07-25 11:16:24 +0200 | [diff] [blame] | 1176 | while (prs) { |
Willy Tarreau | 337a666 | 2015-09-28 16:27:44 +0200 | [diff] [blame] | 1177 | if (prs->peers_fe) |
| 1178 | stop_proxy(prs->peers_fe); |
Willy Tarreau | bbe11b1 | 2011-07-25 11:16:24 +0200 | [diff] [blame] | 1179 | prs = prs->next; |
| 1180 | } |
Willy Tarreau | d0807c3 | 2010-08-27 18:26:11 +0200 | [diff] [blame] | 1181 | /* signal zero is used to broadcast the "stopping" event */ |
| 1182 | signal_handler(0); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1183 | } |
| 1184 | |
| 1185 | |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 1186 | /* Temporarily disables listening on all of the proxy's listeners. Upon |
| 1187 | * success, the proxy enters the PR_PAUSED state. If disabling at least one |
| 1188 | * listener returns an error, then the proxy state is set to PR_STERROR |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1189 | * because we don't know how to resume from this. The function returns 0 |
| 1190 | * if it fails, or non-zero on success. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1191 | */ |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1192 | int pause_proxy(struct proxy *p) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1193 | { |
| 1194 | struct listener *l; |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1195 | |
| 1196 | if (!(p->cap & PR_CAP_FE) || p->state == PR_STERROR || |
| 1197 | p->state == PR_STSTOPPED || p->state == PR_STPAUSED) |
| 1198 | return 1; |
| 1199 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1200 | ha_warning("Pausing %s %s.\n", proxy_cap_str(p->cap), p->id); |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1201 | send_log(p, LOG_WARNING, "Pausing %s %s.\n", proxy_cap_str(p->cap), p->id); |
| 1202 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1203 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 1204 | if (!pause_listener(l)) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1205 | p->state = PR_STERROR; |
| 1206 | } |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1207 | |
| 1208 | if (p->state == PR_STERROR) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1209 | ha_warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id); |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1210 | send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id); |
| 1211 | return 0; |
| 1212 | } |
| 1213 | |
| 1214 | p->state = PR_STPAUSED; |
| 1215 | return 1; |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 1216 | } |
| 1217 | |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 1218 | /* This function makes the proxy unusable, but keeps the listening sockets |
| 1219 | * opened, so that if any process requests them, we are able to serve them. |
| 1220 | * This should only be called early, before we started accepting requests. |
| 1221 | */ |
| 1222 | void zombify_proxy(struct proxy *p) |
| 1223 | { |
| 1224 | struct listener *l; |
| 1225 | struct listener *first_to_listen = NULL; |
| 1226 | |
| 1227 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
| 1228 | enum li_state oldstate = l->state; |
| 1229 | |
| 1230 | unbind_listener_no_close(l); |
| 1231 | if (l->state >= LI_ASSIGNED) { |
| 1232 | delete_listener(l); |
Olivier Houchard | 1fc0516 | 2017-04-06 01:05:05 +0200 | [diff] [blame] | 1233 | } |
| 1234 | /* |
| 1235 | * Pretend we're still up and running so that the fd |
| 1236 | * will be sent if asked. |
| 1237 | */ |
| 1238 | l->state = LI_ZOMBIE; |
| 1239 | if (!first_to_listen && oldstate >= LI_LISTEN) |
| 1240 | first_to_listen = l; |
| 1241 | } |
| 1242 | /* Quick hack : at stop time, to know we have to close the sockets |
| 1243 | * despite the proxy being marked as stopped, make the first listener |
| 1244 | * of the listener list an active one, so that we don't have to |
| 1245 | * parse the whole list to be sure. |
| 1246 | */ |
| 1247 | if (first_to_listen && LIST_ELEM(p->conf.listeners.n, |
| 1248 | struct listener *, by_fe) != first_to_listen) { |
| 1249 | LIST_DEL(&l->by_fe); |
| 1250 | LIST_ADD(&p->conf.listeners, &l->by_fe); |
| 1251 | } |
| 1252 | |
| 1253 | p->state = PR_STSTOPPED; |
| 1254 | } |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 1255 | |
| 1256 | /* |
| 1257 | * This function completely stops a proxy and releases its listeners. It has |
| 1258 | * to be called when going down in order to release the ports so that another |
| 1259 | * process may bind to them. It must also be called on disabled proxies at the |
William Lallemand | c59f988 | 2018-11-16 16:57:21 +0100 | [diff] [blame] | 1260 | * end of start-up. If all listeners are closed, the proxy is set to the |
Willy Tarreau | 6d79ced | 2019-07-24 17:42:44 +0200 | [diff] [blame] | 1261 | * PR_STSTOPPED state. The function takes the proxy's lock so it's safe to |
| 1262 | * call from multiple places. |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 1263 | */ |
| 1264 | void stop_proxy(struct proxy *p) |
| 1265 | { |
| 1266 | struct listener *l; |
William Lallemand | c59f988 | 2018-11-16 16:57:21 +0100 | [diff] [blame] | 1267 | int nostop = 0; |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 1268 | |
Willy Tarreau | 6d79ced | 2019-07-24 17:42:44 +0200 | [diff] [blame] | 1269 | HA_SPIN_LOCK(PROXY_LOCK, &p->lock); |
| 1270 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1271 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
William Lallemand | c59f988 | 2018-11-16 16:57:21 +0100 | [diff] [blame] | 1272 | if (l->options & LI_O_NOSTOP) { |
| 1273 | HA_ATOMIC_ADD(&unstoppable_jobs, 1); |
| 1274 | nostop = 1; |
| 1275 | continue; |
| 1276 | } |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 1277 | unbind_listener(l); |
| 1278 | if (l->state >= LI_ASSIGNED) { |
| 1279 | delete_listener(l); |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 1280 | } |
| 1281 | } |
William Lallemand | c59f988 | 2018-11-16 16:57:21 +0100 | [diff] [blame] | 1282 | if (!nostop) |
| 1283 | p->state = PR_STSTOPPED; |
Willy Tarreau | 6d79ced | 2019-07-24 17:42:44 +0200 | [diff] [blame] | 1284 | |
| 1285 | HA_SPIN_UNLOCK(PROXY_LOCK, &p->lock); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1286 | } |
| 1287 | |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1288 | /* This function resumes listening on the specified proxy. It scans all of its |
| 1289 | * listeners and tries to enable them all. If any of them fails, the proxy is |
| 1290 | * put back to the paused state. It returns 1 upon success, or zero if an error |
| 1291 | * is encountered. |
| 1292 | */ |
| 1293 | int resume_proxy(struct proxy *p) |
| 1294 | { |
| 1295 | struct listener *l; |
| 1296 | int fail; |
| 1297 | |
| 1298 | if (p->state != PR_STPAUSED) |
| 1299 | return 1; |
| 1300 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1301 | ha_warning("Enabling %s %s.\n", proxy_cap_str(p->cap), p->id); |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1302 | send_log(p, LOG_WARNING, "Enabling %s %s.\n", proxy_cap_str(p->cap), p->id); |
| 1303 | |
| 1304 | fail = 0; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1305 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1306 | if (!resume_listener(l)) { |
| 1307 | int port; |
| 1308 | |
| 1309 | port = get_host_port(&l->addr); |
| 1310 | if (port) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1311 | ha_warning("Port %d busy while trying to enable %s %s.\n", |
| 1312 | port, proxy_cap_str(p->cap), p->id); |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1313 | send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n", |
| 1314 | port, proxy_cap_str(p->cap), p->id); |
| 1315 | } |
| 1316 | else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1317 | ha_warning("Bind on socket %d busy while trying to enable %s %s.\n", |
| 1318 | l->luid, proxy_cap_str(p->cap), p->id); |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1319 | send_log(p, LOG_WARNING, "Bind on socket %d busy while trying to enable %s %s.\n", |
| 1320 | l->luid, proxy_cap_str(p->cap), p->id); |
| 1321 | } |
| 1322 | |
| 1323 | /* Another port might have been enabled. Let's stop everything. */ |
| 1324 | fail = 1; |
| 1325 | break; |
| 1326 | } |
| 1327 | } |
| 1328 | |
| 1329 | p->state = PR_STREADY; |
| 1330 | if (fail) { |
| 1331 | pause_proxy(p); |
| 1332 | return 0; |
| 1333 | } |
| 1334 | return 1; |
| 1335 | } |
| 1336 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1337 | /* |
| 1338 | * This function temporarily disables listening so that another new instance |
| 1339 | * can start listening. It is designed to be called upon reception of a |
| 1340 | * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop |
| 1341 | * the proxy, or a SIGTTIN can be sent to listen again. |
| 1342 | */ |
| 1343 | void pause_proxies(void) |
| 1344 | { |
| 1345 | int err; |
| 1346 | struct proxy *p; |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 1347 | struct peers *prs; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1348 | |
| 1349 | err = 0; |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 1350 | p = proxies_list; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 1351 | tv_update_date(0,1); /* else, the old time before select will be used */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1352 | while (p) { |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1353 | err |= !pause_proxy(p); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1354 | p = p->next; |
| 1355 | } |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 1356 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 1357 | prs = cfg_peers; |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 1358 | while (prs) { |
Willy Tarreau | 337a666 | 2015-09-28 16:27:44 +0200 | [diff] [blame] | 1359 | if (prs->peers_fe) |
| 1360 | err |= !pause_proxy(prs->peers_fe); |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1361 | prs = prs->next; |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 1362 | } |
| 1363 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1364 | if (err) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1365 | ha_warning("Some proxies refused to pause, performing soft stop now.\n"); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1366 | send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n"); |
| 1367 | soft_stop(); |
| 1368 | } |
| 1369 | } |
| 1370 | |
| 1371 | |
| 1372 | /* |
| 1373 | * This function reactivates listening. This can be used after a call to |
| 1374 | * sig_pause(), for example when a new instance has failed starting up. |
| 1375 | * It is designed to be called upon reception of a SIGTTIN. |
| 1376 | */ |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 1377 | void resume_proxies(void) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1378 | { |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1379 | int err; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1380 | struct proxy *p; |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1381 | struct peers *prs; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1382 | |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1383 | err = 0; |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 1384 | p = proxies_list; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 1385 | tv_update_date(0,1); /* else, the old time before select will be used */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1386 | while (p) { |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1387 | err |= !resume_proxy(p); |
| 1388 | p = p->next; |
| 1389 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1390 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 1391 | prs = cfg_peers; |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1392 | while (prs) { |
Willy Tarreau | 337a666 | 2015-09-28 16:27:44 +0200 | [diff] [blame] | 1393 | if (prs->peers_fe) |
| 1394 | err |= !resume_proxy(prs->peers_fe); |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1395 | prs = prs->next; |
| 1396 | } |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 1397 | |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1398 | if (err) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1399 | ha_warning("Some proxies refused to resume, a restart is probably needed to resume safe operations.\n"); |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1400 | send_log(p, LOG_WARNING, "Some proxies refused to resume, a restart is probably needed to resume safe operations.\n"); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1401 | } |
| 1402 | } |
| 1403 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1404 | /* Set current stream's backend to <be>. Nothing is done if the |
| 1405 | * stream already had a backend assigned, which is indicated by |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1406 | * s->flags & SF_BE_ASSIGNED. |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1407 | * All flags, stats and counters which need be updated are updated. |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 1408 | * Returns 1 if done, 0 in case of internal error, eg: lack of resource. |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1409 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1410 | int stream_set_backend(struct stream *s, struct proxy *be) |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1411 | { |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1412 | if (s->flags & SF_BE_ASSIGNED) |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 1413 | return 1; |
Christopher Faulet | 4117904 | 2016-06-21 11:54:52 +0200 | [diff] [blame] | 1414 | |
| 1415 | if (flt_set_stream_backend(s, be) < 0) |
| 1416 | return 0; |
| 1417 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1418 | s->be = be; |
Christopher Faulet | ff8abcd | 2017-06-02 15:33:24 +0200 | [diff] [blame] | 1419 | HA_ATOMIC_UPDATE_MAX(&be->be_counters.conn_max, |
| 1420 | HA_ATOMIC_ADD(&be->beconn, 1)); |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1421 | proxy_inc_be_ctr(be); |
| 1422 | |
Willy Tarreau | 3e45184 | 2019-02-01 15:06:09 +0100 | [diff] [blame] | 1423 | /* HTX/legacy must match */ |
Christopher Faulet | bbe6854 | 2019-04-08 10:53:51 +0200 | [diff] [blame] | 1424 | if ((strm_fe(s)->options2 ^ be->options2) & PR_O2_USE_HTX) |
Willy Tarreau | 3e45184 | 2019-02-01 15:06:09 +0100 | [diff] [blame] | 1425 | return 0; |
| 1426 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1427 | /* assign new parameters to the stream from the new backend */ |
Willy Tarreau | f27b5ea | 2009-10-03 22:01:18 +0200 | [diff] [blame] | 1428 | s->si[1].flags &= ~SI_FL_INDEP_STR; |
| 1429 | if (be->options2 & PR_O2_INDEPSTR) |
| 1430 | s->si[1].flags |= SI_FL_INDEP_STR; |
| 1431 | |
Hongbo Long | e39683c | 2017-03-10 18:41:51 +0100 | [diff] [blame] | 1432 | if (tick_isset(be->timeout.serverfin)) |
| 1433 | s->si[1].hcto = be->timeout.serverfin; |
| 1434 | |
Willy Tarreau | 9fbe18e | 2015-05-01 22:42:08 +0200 | [diff] [blame] | 1435 | /* We want to enable the backend-specific analysers except those which |
| 1436 | * were already run as part of the frontend/listener. Note that it would |
| 1437 | * be more reliable to store the list of analysers that have been run, |
| 1438 | * but what we do here is OK for now. |
| 1439 | */ |
Christopher Faulet | 70e2f27 | 2017-01-09 16:33:19 +0100 | [diff] [blame] | 1440 | s->req.analysers |= be->be_req_ana & ~(strm_li(s) ? strm_li(s)->analysers : 0); |
Willy Tarreau | 9fbe18e | 2015-05-01 22:42:08 +0200 | [diff] [blame] | 1441 | |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 1442 | /* If the target backend requires HTTP processing, we have to allocate |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1443 | * the HTTP transaction and hdr_idx if we did not have one. |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 1444 | */ |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1445 | if (unlikely(!s->txn && be->http_needed)) { |
| 1446 | if (unlikely(!http_alloc_txn(s))) |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 1447 | return 0; /* not enough memory */ |
Willy Tarreau | 39e4f62 | 2010-05-31 17:01:36 +0200 | [diff] [blame] | 1448 | |
| 1449 | /* and now initialize the HTTP transaction state */ |
| 1450 | http_init_txn(s); |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 1451 | } |
| 1452 | |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 1453 | /* Be sure to filter request headers if the backend is an HTTP proxy and |
| 1454 | * if there are filters attached to the stream. */ |
| 1455 | if (s->be->mode == PR_MODE_HTTP && HAS_FILTERS(s)) |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 1456 | s->req.analysers |= AN_REQ_FLT_HTTP_HDRS; |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 1457 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1458 | if (s->txn) { |
| 1459 | if (be->options2 & PR_O2_RSPBUG_OK) |
| 1460 | s->txn->rsp.err_pos = -1; /* let buggy responses pass */ |
Willy Tarreau | 4e21ff9 | 2014-09-30 18:44:22 +0200 | [diff] [blame] | 1461 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1462 | /* If we chain to an HTTP backend running a different HTTP mode, we |
| 1463 | * have to re-adjust the desired keep-alive/close mode to accommodate |
| 1464 | * both the frontend's and the backend's modes. |
| 1465 | */ |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 1466 | if (strm_fe(s)->mode == PR_MODE_HTTP && be->mode == PR_MODE_HTTP && |
| 1467 | ((strm_fe(s)->options & PR_O_HTTP_MODE) != (be->options & PR_O_HTTP_MODE))) |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1468 | http_adjust_conn_mode(s, s->txn, &s->txn->req); |
Willy Tarreau | 80a92c0 | 2014-03-12 10:41:13 +0100 | [diff] [blame] | 1469 | |
Christopher Faulet | bbe6854 | 2019-04-08 10:53:51 +0200 | [diff] [blame] | 1470 | /* If we chain a TCP frontend to an HTX backend, we must upgrade |
| 1471 | * the client mux */ |
| 1472 | if (!IS_HTX_STRM(s) && be->mode == PR_MODE_HTTP && (be->options2 & PR_O2_USE_HTX)) { |
| 1473 | struct connection *conn = objt_conn(strm_sess(s)->origin); |
| 1474 | struct conn_stream *cs = objt_cs(s->si[0].end); |
| 1475 | |
| 1476 | if (conn && cs) { |
| 1477 | si_rx_endp_more(&s->si[0]); |
Olivier Houchard | 13f556e | 2019-07-03 13:08:18 +0200 | [diff] [blame] | 1478 | /* Make sure we're unsubscribed, the the new |
| 1479 | * mux will probably want to subscribe to |
| 1480 | * the underlying XPRT |
| 1481 | */ |
| 1482 | if (s->si[0].wait_event.events) |
| 1483 | conn->mux->unsubscribe(cs, s->si[0].wait_event.events, |
| 1484 | &s->si[0].wait_event); |
Christopher Faulet | bbe6854 | 2019-04-08 10:53:51 +0200 | [diff] [blame] | 1485 | if (conn_upgrade_mux_fe(conn, cs, &s->req.buf, ist(""), PROTO_MODE_HTX) == -1) |
| 1486 | return 0; |
Olivier Houchard | 1a8febc | 2019-07-31 18:05:26 +0200 | [diff] [blame] | 1487 | if (!strcmp(conn->mux->name, "H2")) { |
| 1488 | /* For HTTP/2, destroy the conn_stream, |
| 1489 | * disable logging, and pretend that we |
| 1490 | * failed, to that the stream is |
| 1491 | * silently destroyed. The new mux |
| 1492 | * will create new streams. |
| 1493 | */ |
Olivier Houchard | 09e0b17 | 2019-08-09 18:01:15 +0200 | [diff] [blame] | 1494 | cs_free(cs); |
Olivier Houchard | 1a8febc | 2019-07-31 18:05:26 +0200 | [diff] [blame] | 1495 | si_detach_endpoint(&s->si[0]); |
| 1496 | s->logs.logwait = 0; |
| 1497 | s->logs.level = 0; |
| 1498 | s->flags |= SF_IGNORE; |
| 1499 | return 0; |
| 1500 | } |
Olivier Houchard | c1f0276 | 2019-08-09 17:50:05 +0200 | [diff] [blame] | 1501 | s->flags |= SF_HTX; |
Christopher Faulet | bbe6854 | 2019-04-08 10:53:51 +0200 | [diff] [blame] | 1502 | } |
| 1503 | } |
| 1504 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1505 | /* If an LB algorithm needs to access some pre-parsed body contents, |
| 1506 | * we must not start to forward anything until the connection is |
| 1507 | * confirmed otherwise we'll lose the pointer to these data and |
| 1508 | * prevent the hash from being doable again after a redispatch. |
| 1509 | */ |
| 1510 | if (be->mode == PR_MODE_HTTP && |
| 1511 | (be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_HI | BE_LB_HASH_PRM)) |
| 1512 | s->txn->req.flags |= HTTP_MSGF_WAIT_CONN; |
Willy Tarreau | 9fbe18e | 2015-05-01 22:42:08 +0200 | [diff] [blame] | 1513 | |
| 1514 | /* we may request to parse a request body */ |
| 1515 | if ((be->options & PR_O_WREQ_BODY) && |
| 1516 | (s->txn->req.body_len || (s->txn->req.flags & HTTP_MSGF_TE_CHNK))) |
| 1517 | s->req.analysers |= AN_REQ_HTTP_BODY; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1518 | } |
| 1519 | |
| 1520 | s->flags |= SF_BE_ASSIGNED; |
Willy Tarreau | 96e3121 | 2011-05-30 18:10:30 +0200 | [diff] [blame] | 1521 | if (be->options2 & PR_O2_NODELAY) { |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 1522 | s->req.flags |= CF_NEVER_WAIT; |
| 1523 | s->res.flags |= CF_NEVER_WAIT; |
Willy Tarreau | 96e3121 | 2011-05-30 18:10:30 +0200 | [diff] [blame] | 1524 | } |
| 1525 | |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 1526 | return 1; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1527 | } |
| 1528 | |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1529 | /* Capture a bad request or response and archive it in the proxy's structure. |
| 1530 | * It is relatively protocol-agnostic so it requires that a number of elements |
| 1531 | * are passed : |
| 1532 | * - <proxy> is the proxy where the error was detected and where the snapshot |
| 1533 | * needs to be stored |
Joseph Herlant | 59dd295 | 2018-11-15 11:46:55 -0800 | [diff] [blame] | 1534 | * - <is_back> indicates that the error happened when receiving the response |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1535 | * - <other_end> is a pointer to the proxy on the other side when known |
| 1536 | * - <target> is the target of the connection, usually a server or a proxy |
| 1537 | * - <sess> is the session which experienced the error |
| 1538 | * - <ctx> may be NULL or should contain any info relevant to the protocol |
| 1539 | * - <buf> is the buffer containing the offending data |
| 1540 | * - <buf_ofs> is the position of this buffer's input data in the input |
| 1541 | * stream, starting at zero. It may be passed as zero if unknown. |
| 1542 | * - <buf_out> is the portion of <buf->data> which was already forwarded and |
| 1543 | * which precedes the buffer's input. The buffer's input starts at |
| 1544 | * buf->head + buf_out. |
| 1545 | * - <err_pos> is the pointer to the faulty byte in the buffer's input. |
| 1546 | * - <show> is the callback to use to display <ctx>. It may be NULL. |
| 1547 | */ |
| 1548 | void proxy_capture_error(struct proxy *proxy, int is_back, |
| 1549 | struct proxy *other_end, enum obj_type *target, |
| 1550 | const struct session *sess, |
| 1551 | const struct buffer *buf, long buf_ofs, |
| 1552 | unsigned int buf_out, unsigned int err_pos, |
| 1553 | const union error_snapshot_ctx *ctx, |
| 1554 | void (*show)(struct buffer *, const struct error_snapshot *)) |
| 1555 | { |
| 1556 | struct error_snapshot *es; |
| 1557 | unsigned int buf_len; |
| 1558 | int len1, len2; |
Willy Tarreau | c55015e | 2018-09-07 19:02:32 +0200 | [diff] [blame] | 1559 | unsigned int ev_id; |
| 1560 | |
| 1561 | ev_id = HA_ATOMIC_XADD(&error_snapshot_id, 1); |
| 1562 | |
Willy Tarreau | 4bc7d90 | 2018-09-07 20:07:17 +0200 | [diff] [blame] | 1563 | buf_len = b_data(buf) - buf_out; |
| 1564 | |
| 1565 | es = malloc(sizeof(*es) + buf_len); |
Willy Tarreau | c55015e | 2018-09-07 19:02:32 +0200 | [diff] [blame] | 1566 | if (!es) |
| 1567 | return; |
| 1568 | |
Willy Tarreau | 4bc7d90 | 2018-09-07 20:07:17 +0200 | [diff] [blame] | 1569 | es->buf_len = buf_len; |
| 1570 | es->ev_id = ev_id; |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1571 | |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1572 | len1 = b_size(buf) - buf_len; |
| 1573 | if (len1 > buf_len) |
| 1574 | len1 = buf_len; |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1575 | |
Willy Tarreau | 4bc7d90 | 2018-09-07 20:07:17 +0200 | [diff] [blame] | 1576 | if (len1) { |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1577 | memcpy(es->buf, b_peek(buf, buf_out), len1); |
Willy Tarreau | 4bc7d90 | 2018-09-07 20:07:17 +0200 | [diff] [blame] | 1578 | len2 = buf_len - len1; |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1579 | if (len2) |
| 1580 | memcpy(es->buf + len1, b_orig(buf), len2); |
| 1581 | } |
| 1582 | |
| 1583 | es->buf_err = err_pos; |
| 1584 | es->when = date; // user-visible date |
| 1585 | es->srv = objt_server(target); |
| 1586 | es->oe = other_end; |
| 1587 | if (objt_conn(sess->origin)) |
| 1588 | es->src = __objt_conn(sess->origin)->addr.from; |
| 1589 | else |
| 1590 | memset(&es->src, 0, sizeof(es->src)); |
| 1591 | |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1592 | es->buf_wrap = b_wrap(buf) - b_peek(buf, buf_out); |
| 1593 | es->buf_out = buf_out; |
| 1594 | es->buf_ofs = buf_ofs; |
| 1595 | |
| 1596 | /* be sure to indicate the offset of the first IN byte */ |
| 1597 | if (es->buf_ofs >= es->buf_len) |
| 1598 | es->buf_ofs -= es->buf_len; |
| 1599 | else |
| 1600 | es->buf_ofs = 0; |
| 1601 | |
| 1602 | /* protocol-specific part now */ |
| 1603 | if (ctx) |
| 1604 | es->ctx = *ctx; |
| 1605 | else |
| 1606 | memset(&es->ctx, 0, sizeof(es->ctx)); |
| 1607 | es->show = show; |
Willy Tarreau | c55015e | 2018-09-07 19:02:32 +0200 | [diff] [blame] | 1608 | |
| 1609 | /* note: we still lock since we have to be certain that nobody is |
| 1610 | * dumping the output while we free. |
| 1611 | */ |
| 1612 | HA_SPIN_LOCK(PROXY_LOCK, &proxy->lock); |
| 1613 | if (is_back) { |
| 1614 | es = HA_ATOMIC_XCHG(&proxy->invalid_rep, es); |
| 1615 | } else { |
| 1616 | es = HA_ATOMIC_XCHG(&proxy->invalid_req, es); |
| 1617 | } |
| 1618 | free(es); |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1619 | HA_SPIN_UNLOCK(PROXY_LOCK, &proxy->lock); |
| 1620 | } |
| 1621 | |
Willy Tarreau | c8d5b95 | 2019-02-27 17:25:52 +0100 | [diff] [blame] | 1622 | /* Configure all proxies which lack a maxconn setting to use the global one by |
| 1623 | * default. This avoids the common mistake consisting in setting maxconn only |
| 1624 | * in the global section and discovering the hard way that it doesn't propagate |
| 1625 | * through the frontends. These values are also propagated through the various |
| 1626 | * targetted backends, whose fullconn is finally calculated if not yet set. |
| 1627 | */ |
| 1628 | void proxy_adjust_all_maxconn() |
| 1629 | { |
| 1630 | struct proxy *curproxy; |
| 1631 | struct switching_rule *swrule1, *swrule2; |
| 1632 | |
| 1633 | for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) { |
| 1634 | if (curproxy->state == PR_STSTOPPED) |
| 1635 | continue; |
| 1636 | |
| 1637 | if (!(curproxy->cap & PR_CAP_FE)) |
| 1638 | continue; |
| 1639 | |
| 1640 | if (!curproxy->maxconn) |
| 1641 | curproxy->maxconn = global.maxconn; |
| 1642 | |
| 1643 | /* update the target backend's fullconn count : default_backend */ |
| 1644 | if (curproxy->defbe.be) |
| 1645 | curproxy->defbe.be->tot_fe_maxconn += curproxy->maxconn; |
| 1646 | else if ((curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN) |
| 1647 | curproxy->tot_fe_maxconn += curproxy->maxconn; |
| 1648 | |
| 1649 | list_for_each_entry(swrule1, &curproxy->switching_rules, list) { |
| 1650 | /* For each target of switching rules, we update their |
| 1651 | * tot_fe_maxconn, except if a previous rule points to |
| 1652 | * the same backend or to the default backend. |
| 1653 | */ |
| 1654 | if (swrule1->be.backend != curproxy->defbe.be) { |
Frédéric Lécaille | 2365fb0 | 2019-03-07 15:02:52 +0100 | [diff] [blame] | 1655 | /* note: swrule1->be.backend isn't a backend if the rule |
| 1656 | * is dynamic, it's an expression instead, so it must not |
| 1657 | * be dereferenced as a backend before being certain it is. |
| 1658 | */ |
Willy Tarreau | c8d5b95 | 2019-02-27 17:25:52 +0100 | [diff] [blame] | 1659 | list_for_each_entry(swrule2, &curproxy->switching_rules, list) { |
| 1660 | if (swrule2 == swrule1) { |
Frédéric Lécaille | 2365fb0 | 2019-03-07 15:02:52 +0100 | [diff] [blame] | 1661 | if (!swrule1->dynamic) |
| 1662 | swrule1->be.backend->tot_fe_maxconn += curproxy->maxconn; |
Willy Tarreau | c8d5b95 | 2019-02-27 17:25:52 +0100 | [diff] [blame] | 1663 | break; |
| 1664 | } |
| 1665 | else if (!swrule2->dynamic && swrule2->be.backend == swrule1->be.backend) { |
| 1666 | /* there are multiple refs of this backend */ |
| 1667 | break; |
| 1668 | } |
| 1669 | } |
| 1670 | } |
| 1671 | } |
| 1672 | } |
| 1673 | |
| 1674 | /* automatically compute fullconn if not set. We must not do it in the |
| 1675 | * loop above because cross-references are not yet fully resolved. |
| 1676 | */ |
| 1677 | for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) { |
| 1678 | if (curproxy->state == PR_STSTOPPED) |
| 1679 | continue; |
| 1680 | |
| 1681 | /* If <fullconn> is not set, let's set it to 10% of the sum of |
| 1682 | * the possible incoming frontend's maxconns. |
| 1683 | */ |
| 1684 | if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) { |
| 1685 | /* we have the sum of the maxconns in <total>. We only |
| 1686 | * keep 10% of that sum to set the default fullconn, with |
| 1687 | * a hard minimum of 1 (to avoid a divide by zero). |
| 1688 | */ |
| 1689 | curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10; |
| 1690 | if (!curproxy->fullconn) |
| 1691 | curproxy->fullconn = 1; |
| 1692 | } |
| 1693 | } |
| 1694 | } |
| 1695 | |
Willy Tarreau | 75fb65a | 2018-09-07 17:43:26 +0200 | [diff] [blame] | 1696 | /* Config keywords below */ |
| 1697 | |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 1698 | static struct cfg_kw_list cfg_kws = {ILH, { |
Cyril Bonté | 203ec5a | 2017-03-23 22:44:13 +0100 | [diff] [blame] | 1699 | { CFG_GLOBAL, "hard-stop-after", proxy_parse_hard_stop_after }, |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 1700 | { CFG_LISTEN, "timeout", proxy_parse_timeout }, |
| 1701 | { CFG_LISTEN, "clitimeout", proxy_parse_timeout }, |
| 1702 | { CFG_LISTEN, "contimeout", proxy_parse_timeout }, |
| 1703 | { CFG_LISTEN, "srvtimeout", proxy_parse_timeout }, |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 1704 | { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit }, |
Willy Tarreau | c35362a | 2014-04-25 13:58:37 +0200 | [diff] [blame] | 1705 | { CFG_LISTEN, "max-keep-alive-queue", proxy_parse_max_ka_queue }, |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 1706 | { CFG_LISTEN, "declare", proxy_parse_declare }, |
Olivier Houchard | a254a37 | 2019-04-05 15:30:12 +0200 | [diff] [blame] | 1707 | { CFG_LISTEN, "retry-on", proxy_parse_retry_on }, |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 1708 | { 0, NULL, NULL }, |
| 1709 | }}; |
| 1710 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1711 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 1712 | |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 1713 | /* Expects to find a frontend named <arg> and returns it, otherwise displays various |
| 1714 | * adequate error messages and returns NULL. This function is designed to be used by |
| 1715 | * functions requiring a frontend on the CLI. |
| 1716 | */ |
| 1717 | struct proxy *cli_find_frontend(struct appctx *appctx, const char *arg) |
| 1718 | { |
| 1719 | struct proxy *px; |
| 1720 | |
| 1721 | if (!*arg) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1722 | appctx->ctx.cli.severity = LOG_ERR; |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 1723 | appctx->ctx.cli.msg = "A frontend name is expected.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1724 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 1725 | return NULL; |
| 1726 | } |
| 1727 | |
| 1728 | px = proxy_fe_by_name(arg); |
| 1729 | if (!px) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1730 | appctx->ctx.cli.severity = LOG_ERR; |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 1731 | appctx->ctx.cli.msg = "No such frontend.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1732 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 1733 | return NULL; |
| 1734 | } |
| 1735 | return px; |
| 1736 | } |
| 1737 | |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1738 | /* Expects to find a backend named <arg> and returns it, otherwise displays various |
| 1739 | * adequate error messages and returns NULL. This function is designed to be used by |
| 1740 | * functions requiring a frontend on the CLI. |
| 1741 | */ |
| 1742 | struct proxy *cli_find_backend(struct appctx *appctx, const char *arg) |
| 1743 | { |
| 1744 | struct proxy *px; |
| 1745 | |
| 1746 | if (!*arg) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1747 | appctx->ctx.cli.severity = LOG_ERR; |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1748 | appctx->ctx.cli.msg = "A backend name is expected.\n"; |
| 1749 | appctx->st0 = CLI_ST_PRINT; |
| 1750 | return NULL; |
| 1751 | } |
| 1752 | |
| 1753 | px = proxy_be_by_name(arg); |
| 1754 | if (!px) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1755 | appctx->ctx.cli.severity = LOG_ERR; |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1756 | appctx->ctx.cli.msg = "No such backend.\n"; |
| 1757 | appctx->st0 = CLI_ST_PRINT; |
| 1758 | return NULL; |
| 1759 | } |
| 1760 | return px; |
| 1761 | } |
| 1762 | |
| 1763 | |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1764 | /* parse a "show servers" CLI line, returns 0 if it wants to start the dump or |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1765 | * 1 if it stops immediately. If an argument is specified, it will set the proxy |
| 1766 | * pointer into cli.p0 and its ID into cli.i0. |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1767 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1768 | static int cli_parse_show_servers(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1769 | { |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1770 | struct proxy *px; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1771 | |
| 1772 | /* check if a backend name has been provided */ |
| 1773 | if (*args[3]) { |
| 1774 | /* read server state from local file */ |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1775 | px = proxy_be_by_name(args[3]); |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1776 | |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1777 | if (!px) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1778 | appctx->ctx.cli.severity = LOG_ERR; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1779 | appctx->ctx.cli.msg = "Can't find backend.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1780 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1781 | return 1; |
| 1782 | } |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1783 | appctx->ctx.cli.p0 = px; |
| 1784 | appctx->ctx.cli.i0 = px->uuid; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1785 | } |
| 1786 | return 0; |
| 1787 | } |
| 1788 | |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1789 | /* dumps server state information into <buf> for all the servers found in backend cli.p0. |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1790 | * These information are all the parameters which may change during HAProxy runtime. |
| 1791 | * By default, we only export to the last known server state file format. |
| 1792 | * These information can be used at next startup to recover same level of server state. |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1793 | * It uses the proxy pointer from cli.p0, the proxy's id from cli.i0 and the server's |
| 1794 | * pointer from cli.p1. |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1795 | */ |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1796 | static int dump_servers_state(struct stream_interface *si, struct buffer *buf) |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1797 | { |
| 1798 | struct appctx *appctx = __objt_appctx(si->end); |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1799 | struct proxy *px = appctx->ctx.cli.p0; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1800 | struct server *srv; |
| 1801 | char srv_addr[INET6_ADDRSTRLEN + 1]; |
| 1802 | time_t srv_time_since_last_change; |
| 1803 | int bk_f_forced_id, srv_f_forced_id; |
Baptiste Assmann | 6d0f38f | 2018-07-02 17:00:54 +0200 | [diff] [blame] | 1804 | char *srvrecord; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1805 | |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1806 | /* we don't want to report any state if the backend is not enabled on this process */ |
Willy Tarreau | 6daac19 | 2019-02-02 17:39:53 +0100 | [diff] [blame] | 1807 | if (!(proc_mask(px->bind_proc) & pid_bit)) |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1808 | return 1; |
| 1809 | |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1810 | if (!appctx->ctx.cli.p1) |
| 1811 | appctx->ctx.cli.p1 = px->srv; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1812 | |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1813 | for (; appctx->ctx.cli.p1 != NULL; appctx->ctx.cli.p1 = srv->next) { |
| 1814 | srv = appctx->ctx.cli.p1; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1815 | srv_addr[0] = '\0'; |
| 1816 | |
| 1817 | switch (srv->addr.ss_family) { |
| 1818 | case AF_INET: |
| 1819 | inet_ntop(srv->addr.ss_family, &((struct sockaddr_in *)&srv->addr)->sin_addr, |
| 1820 | srv_addr, INET_ADDRSTRLEN + 1); |
| 1821 | break; |
| 1822 | case AF_INET6: |
| 1823 | inet_ntop(srv->addr.ss_family, &((struct sockaddr_in6 *)&srv->addr)->sin6_addr, |
| 1824 | srv_addr, INET6_ADDRSTRLEN + 1); |
| 1825 | break; |
Daniel Corbett | 9215ffa | 2018-05-19 19:43:24 -0400 | [diff] [blame] | 1826 | default: |
| 1827 | memcpy(srv_addr, "-\0", 2); |
| 1828 | break; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1829 | } |
| 1830 | srv_time_since_last_change = now.tv_sec - srv->last_change; |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1831 | bk_f_forced_id = px->options & PR_O_FORCED_ID ? 1 : 0; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1832 | srv_f_forced_id = srv->flags & SRV_F_FORCED_ID ? 1 : 0; |
| 1833 | |
Baptiste Assmann | 6d0f38f | 2018-07-02 17:00:54 +0200 | [diff] [blame] | 1834 | srvrecord = NULL; |
| 1835 | if (srv->srvrq && srv->srvrq->name) |
| 1836 | srvrecord = srv->srvrq->name; |
| 1837 | |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1838 | chunk_appendf(buf, |
| 1839 | "%d %s " |
| 1840 | "%d %s %s " |
| 1841 | "%d %d %d %d %ld " |
| 1842 | "%d %d %d %d %d " |
Baptiste Assmann | 6d0f38f | 2018-07-02 17:00:54 +0200 | [diff] [blame] | 1843 | "%d %d %s %u %s" |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1844 | "\n", |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1845 | px->uuid, px->id, |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1846 | srv->puid, srv->id, srv_addr, |
Emeric Brun | 52a91d3 | 2017-08-31 14:41:55 +0200 | [diff] [blame] | 1847 | srv->cur_state, srv->cur_admin, srv->uweight, srv->iweight, (long int)srv_time_since_last_change, |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1848 | srv->check.status, srv->check.result, srv->check.health, srv->check.state, srv->agent.state, |
Baptiste Assmann | 6d0f38f | 2018-07-02 17:00:54 +0200 | [diff] [blame] | 1849 | bk_f_forced_id, srv_f_forced_id, srv->hostname ? srv->hostname : "-", srv->svc_port, |
| 1850 | srvrecord ? srvrecord : "-"); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1851 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1852 | si_rx_room_blk(si); |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1853 | return 0; |
| 1854 | } |
| 1855 | } |
| 1856 | return 1; |
| 1857 | } |
| 1858 | |
| 1859 | /* Parses backend list or simply use backend name provided by the user to return |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1860 | * states of servers to stdout. It dumps proxy <cli.p0> and stops if <cli.i0> is |
| 1861 | * non-null. |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1862 | */ |
| 1863 | static int cli_io_handler_servers_state(struct appctx *appctx) |
| 1864 | { |
| 1865 | struct stream_interface *si = appctx->owner; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1866 | struct proxy *curproxy; |
| 1867 | |
| 1868 | chunk_reset(&trash); |
| 1869 | |
| 1870 | if (appctx->st2 == STAT_ST_INIT) { |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1871 | if (!appctx->ctx.cli.p0) |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 1872 | appctx->ctx.cli.p0 = proxies_list; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1873 | appctx->st2 = STAT_ST_HEAD; |
| 1874 | } |
| 1875 | |
| 1876 | if (appctx->st2 == STAT_ST_HEAD) { |
| 1877 | chunk_printf(&trash, "%d\n# %s\n", SRV_STATE_FILE_VERSION, SRV_STATE_FILE_FIELD_NAMES); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1878 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1879 | si_rx_room_blk(si); |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1880 | return 0; |
| 1881 | } |
| 1882 | appctx->st2 = STAT_ST_INFO; |
| 1883 | } |
| 1884 | |
| 1885 | /* STAT_ST_INFO */ |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1886 | for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) { |
| 1887 | curproxy = appctx->ctx.cli.p0; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1888 | /* servers are only in backends */ |
| 1889 | if (curproxy->cap & PR_CAP_BE) { |
| 1890 | if (!dump_servers_state(si, &trash)) |
| 1891 | return 0; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1892 | } |
| 1893 | /* only the selected proxy is dumped */ |
Willy Tarreau | 3c92f2a | 2016-12-16 18:23:39 +0100 | [diff] [blame] | 1894 | if (appctx->ctx.cli.i0) |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1895 | break; |
| 1896 | } |
| 1897 | |
| 1898 | return 1; |
| 1899 | } |
| 1900 | |
Willy Tarreau | 608ea59 | 2016-12-16 18:01:15 +0100 | [diff] [blame] | 1901 | /* Parses backend list and simply report backend names. It keeps the proxy |
| 1902 | * pointer in cli.p0. |
| 1903 | */ |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1904 | static int cli_io_handler_show_backend(struct appctx *appctx) |
| 1905 | { |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1906 | struct stream_interface *si = appctx->owner; |
| 1907 | struct proxy *curproxy; |
| 1908 | |
| 1909 | chunk_reset(&trash); |
| 1910 | |
Willy Tarreau | 608ea59 | 2016-12-16 18:01:15 +0100 | [diff] [blame] | 1911 | if (!appctx->ctx.cli.p0) { |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1912 | chunk_printf(&trash, "# name\n"); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1913 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1914 | si_rx_room_blk(si); |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1915 | return 0; |
| 1916 | } |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 1917 | appctx->ctx.cli.p0 = proxies_list; |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1918 | } |
| 1919 | |
Willy Tarreau | 608ea59 | 2016-12-16 18:01:15 +0100 | [diff] [blame] | 1920 | for (; appctx->ctx.cli.p0 != NULL; appctx->ctx.cli.p0 = curproxy->next) { |
| 1921 | curproxy = appctx->ctx.cli.p0; |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1922 | |
| 1923 | /* looking for backends only */ |
| 1924 | if (!(curproxy->cap & PR_CAP_BE)) |
| 1925 | continue; |
| 1926 | |
| 1927 | /* we don't want to list a backend which is bound to this process */ |
Willy Tarreau | 6daac19 | 2019-02-02 17:39:53 +0100 | [diff] [blame] | 1928 | if (!(proc_mask(curproxy->bind_proc) & pid_bit)) |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1929 | continue; |
| 1930 | |
| 1931 | chunk_appendf(&trash, "%s\n", curproxy->id); |
Willy Tarreau | 06d80a9 | 2017-10-19 14:32:15 +0200 | [diff] [blame] | 1932 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1933 | si_rx_room_blk(si); |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1934 | return 0; |
| 1935 | } |
| 1936 | } |
| 1937 | |
| 1938 | return 1; |
| 1939 | } |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1940 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1941 | /* Parses the "enable dynamic-cookies backend" directive, it always returns 1. |
| 1942 | * |
| 1943 | * Grabs the proxy lock and each server's lock. |
| 1944 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1945 | static int cli_parse_enable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private) |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1946 | { |
| 1947 | struct proxy *px; |
| 1948 | struct server *s; |
| 1949 | |
| 1950 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1951 | return 1; |
| 1952 | |
| 1953 | px = cli_find_backend(appctx, args[3]); |
| 1954 | if (!px) |
| 1955 | return 1; |
| 1956 | |
Willy Tarreau | 0ff395c | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 1957 | /* Note: this lock is to make sure this doesn't change while another |
| 1958 | * thread is in srv_set_dyncookie(). |
| 1959 | */ |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1960 | HA_SPIN_LOCK(PROXY_LOCK, &px->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1961 | px->ck_opts |= PR_CK_DYNAMIC; |
Willy Tarreau | 0ff395c | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 1962 | HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1963 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1964 | for (s = px->srv; s != NULL; s = s->next) { |
| 1965 | HA_SPIN_LOCK(SERVER_LOCK, &s->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1966 | srv_set_dyncookie(s); |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1967 | HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock); |
| 1968 | } |
| 1969 | |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1970 | return 1; |
| 1971 | } |
| 1972 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1973 | /* Parses the "disable dynamic-cookies backend" directive, it always returns 1. |
| 1974 | * |
| 1975 | * Grabs the proxy lock and each server's lock. |
| 1976 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1977 | static int cli_parse_disable_dyncookie_backend(char **args, char *payload, struct appctx *appctx, void *private) |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1978 | { |
| 1979 | struct proxy *px; |
| 1980 | struct server *s; |
| 1981 | |
| 1982 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1983 | return 1; |
| 1984 | |
| 1985 | px = cli_find_backend(appctx, args[3]); |
| 1986 | if (!px) |
| 1987 | return 1; |
| 1988 | |
Willy Tarreau | 0ff395c | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 1989 | /* Note: this lock is to make sure this doesn't change while another |
| 1990 | * thread is in srv_set_dyncookie(). |
| 1991 | */ |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1992 | HA_SPIN_LOCK(PROXY_LOCK, &px->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1993 | px->ck_opts &= ~PR_CK_DYNAMIC; |
Willy Tarreau | 0ff395c | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 1994 | HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1995 | |
| 1996 | for (s = px->srv; s != NULL; s = s->next) { |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 1997 | HA_SPIN_LOCK(SERVER_LOCK, &s->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 1998 | if (!(s->flags & SRV_F_COOKIESET)) { |
| 1999 | free(s->cookie); |
| 2000 | s->cookie = NULL; |
| 2001 | } |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2002 | HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 2003 | } |
| 2004 | |
| 2005 | return 1; |
| 2006 | } |
| 2007 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2008 | /* Parses the "set dynamic-cookie-key backend" directive, it always returns 1. |
| 2009 | * |
| 2010 | * Grabs the proxy lock and each server's lock. |
| 2011 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2012 | static int cli_parse_set_dyncookie_key_backend(char **args, char *payload, struct appctx *appctx, void *private) |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 2013 | { |
| 2014 | struct proxy *px; |
| 2015 | struct server *s; |
| 2016 | char *newkey; |
| 2017 | |
| 2018 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 2019 | return 1; |
| 2020 | |
| 2021 | px = cli_find_backend(appctx, args[3]); |
| 2022 | if (!px) |
| 2023 | return 1; |
| 2024 | |
| 2025 | if (!*args[4]) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2026 | appctx->ctx.cli.severity = LOG_ERR; |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 2027 | appctx->ctx.cli.msg = "String value expected.\n"; |
| 2028 | appctx->st0 = CLI_ST_PRINT; |
| 2029 | return 1; |
| 2030 | } |
| 2031 | |
| 2032 | newkey = strdup(args[4]); |
| 2033 | if (!newkey) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2034 | appctx->ctx.cli.severity = LOG_ERR; |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 2035 | appctx->ctx.cli.msg = "Failed to allocate memory.\n"; |
| 2036 | appctx->st0 = CLI_ST_PRINT; |
| 2037 | return 1; |
| 2038 | } |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2039 | |
Willy Tarreau | 0ff395c | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 2040 | /* Note: this lock is to make sure this doesn't change while another |
| 2041 | * thread is in srv_set_dyncookie(). |
| 2042 | */ |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2043 | HA_SPIN_LOCK(PROXY_LOCK, &px->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 2044 | free(px->dyncookie_key); |
| 2045 | px->dyncookie_key = newkey; |
Willy Tarreau | 0ff395c | 2019-07-30 11:59:34 +0200 | [diff] [blame] | 2046 | HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 2047 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2048 | for (s = px->srv; s != NULL; s = s->next) { |
| 2049 | HA_SPIN_LOCK(SERVER_LOCK, &s->lock); |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 2050 | srv_set_dyncookie(s); |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2051 | HA_SPIN_UNLOCK(SERVER_LOCK, &s->lock); |
| 2052 | } |
| 2053 | |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 2054 | return 1; |
| 2055 | } |
| 2056 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2057 | /* Parses the "set maxconn frontend" directive, it always returns 1. |
| 2058 | * |
| 2059 | * Grabs the proxy lock. |
| 2060 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2061 | static int cli_parse_set_maxconn_frontend(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2062 | { |
| 2063 | struct proxy *px; |
| 2064 | struct listener *l; |
| 2065 | int v; |
| 2066 | |
| 2067 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 2068 | return 1; |
| 2069 | |
| 2070 | px = cli_find_frontend(appctx, args[3]); |
| 2071 | if (!px) |
| 2072 | return 1; |
| 2073 | |
| 2074 | if (!*args[4]) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2075 | appctx->ctx.cli.severity = LOG_ERR; |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2076 | appctx->ctx.cli.msg = "Integer value expected.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2077 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2078 | return 1; |
| 2079 | } |
| 2080 | |
| 2081 | v = atoi(args[4]); |
| 2082 | if (v < 0) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2083 | appctx->ctx.cli.severity = LOG_ERR; |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2084 | appctx->ctx.cli.msg = "Value out of range.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2085 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2086 | return 1; |
| 2087 | } |
| 2088 | |
| 2089 | /* OK, the value is fine, so we assign it to the proxy and to all of |
| 2090 | * its listeners. The blocked ones will be dequeued. |
| 2091 | */ |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2092 | HA_SPIN_LOCK(PROXY_LOCK, &px->lock); |
| 2093 | |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2094 | px->maxconn = v; |
| 2095 | list_for_each_entry(l, &px->conf.listeners, by_fe) { |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2096 | if (l->state == LI_FULL) |
| 2097 | resume_listener(l); |
| 2098 | } |
| 2099 | |
| 2100 | if (px->maxconn > px->feconn && !LIST_ISEMPTY(&px->listener_queue)) |
| 2101 | dequeue_all_listeners(&px->listener_queue); |
| 2102 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2103 | HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock); |
| 2104 | |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2105 | return 1; |
| 2106 | } |
| 2107 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2108 | /* Parses the "shutdown frontend" directive, it always returns 1. |
| 2109 | * |
| 2110 | * Grabs the proxy lock. |
| 2111 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2112 | static int cli_parse_shutdown_frontend(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 2113 | { |
| 2114 | struct proxy *px; |
| 2115 | |
| 2116 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 2117 | return 1; |
| 2118 | |
| 2119 | px = cli_find_frontend(appctx, args[2]); |
| 2120 | if (!px) |
| 2121 | return 1; |
| 2122 | |
| 2123 | if (px->state == PR_STSTOPPED) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2124 | appctx->ctx.cli.severity = LOG_NOTICE; |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 2125 | appctx->ctx.cli.msg = "Frontend was already shut down.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2126 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 2127 | return 1; |
| 2128 | } |
| 2129 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2130 | ha_warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n", |
| 2131 | px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn); |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 2132 | send_log(px, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n", |
| 2133 | px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn); |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2134 | |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 2135 | stop_proxy(px); |
| 2136 | return 1; |
| 2137 | } |
| 2138 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2139 | /* Parses the "disable frontend" directive, it always returns 1. |
| 2140 | * |
| 2141 | * Grabs the proxy lock. |
| 2142 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2143 | static int cli_parse_disable_frontend(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2144 | { |
| 2145 | struct proxy *px; |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2146 | int ret; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2147 | |
| 2148 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 2149 | return 1; |
| 2150 | |
| 2151 | px = cli_find_frontend(appctx, args[2]); |
| 2152 | if (!px) |
| 2153 | return 1; |
| 2154 | |
| 2155 | if (px->state == PR_STSTOPPED) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2156 | appctx->ctx.cli.severity = LOG_NOTICE; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2157 | appctx->ctx.cli.msg = "Frontend was previously shut down, cannot disable.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2158 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2159 | return 1; |
| 2160 | } |
| 2161 | |
| 2162 | if (px->state == PR_STPAUSED) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2163 | appctx->ctx.cli.severity = LOG_NOTICE; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2164 | appctx->ctx.cli.msg = "Frontend is already disabled.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2165 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2166 | return 1; |
| 2167 | } |
| 2168 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2169 | HA_SPIN_LOCK(PROXY_LOCK, &px->lock); |
| 2170 | ret = pause_proxy(px); |
| 2171 | HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock); |
| 2172 | |
| 2173 | if (!ret) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2174 | appctx->ctx.cli.severity = LOG_ERR; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2175 | appctx->ctx.cli.msg = "Failed to pause frontend, check logs for precise cause.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2176 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2177 | return 1; |
| 2178 | } |
| 2179 | return 1; |
| 2180 | } |
| 2181 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2182 | /* Parses the "enable frontend" directive, it always returns 1. |
| 2183 | * |
| 2184 | * Grabs the proxy lock. |
| 2185 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2186 | static int cli_parse_enable_frontend(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2187 | { |
| 2188 | struct proxy *px; |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2189 | int ret; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2190 | |
| 2191 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 2192 | return 1; |
| 2193 | |
| 2194 | px = cli_find_frontend(appctx, args[2]); |
| 2195 | if (!px) |
| 2196 | return 1; |
| 2197 | |
| 2198 | if (px->state == PR_STSTOPPED) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2199 | appctx->ctx.cli.severity = LOG_ERR; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2200 | appctx->ctx.cli.msg = "Frontend was previously shut down, cannot enable.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2201 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2202 | return 1; |
| 2203 | } |
| 2204 | |
| 2205 | if (px->state != PR_STPAUSED) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2206 | appctx->ctx.cli.severity = LOG_NOTICE; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2207 | appctx->ctx.cli.msg = "Frontend is already enabled.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2208 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2209 | return 1; |
| 2210 | } |
| 2211 | |
Willy Tarreau | a275a37 | 2018-08-21 14:50:44 +0200 | [diff] [blame] | 2212 | HA_SPIN_LOCK(PROXY_LOCK, &px->lock); |
| 2213 | ret = resume_proxy(px); |
| 2214 | HA_SPIN_UNLOCK(PROXY_LOCK, &px->lock); |
| 2215 | |
| 2216 | if (!ret) { |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 2217 | appctx->ctx.cli.severity = LOG_ERR; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2218 | appctx->ctx.cli.msg = "Failed to resume frontend, check logs for precise cause (port conflict?).\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 2219 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2220 | return 1; |
| 2221 | } |
| 2222 | return 1; |
| 2223 | } |
| 2224 | |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2225 | /* "show errors" handler for the CLI. Returns 0 if wants to continue, 1 to stop |
| 2226 | * now. |
| 2227 | */ |
| 2228 | static int cli_parse_show_errors(char **args, char *payload, struct appctx *appctx, void *private) |
| 2229 | { |
| 2230 | if (!cli_has_level(appctx, ACCESS_LVL_OPER)) |
| 2231 | return 1; |
| 2232 | |
| 2233 | if (*args[2]) { |
| 2234 | struct proxy *px; |
| 2235 | |
| 2236 | px = proxy_find_by_name(args[2], 0, 0); |
| 2237 | if (px) |
| 2238 | appctx->ctx.errors.iid = px->uuid; |
| 2239 | else |
| 2240 | appctx->ctx.errors.iid = atoi(args[2]); |
| 2241 | |
| 2242 | if (!appctx->ctx.errors.iid) { |
| 2243 | appctx->ctx.cli.severity = LOG_ERR; |
| 2244 | appctx->ctx.cli.msg = "No such proxy.\n"; |
| 2245 | appctx->st0 = CLI_ST_PRINT; |
| 2246 | return 1; |
| 2247 | } |
| 2248 | } |
| 2249 | else |
| 2250 | appctx->ctx.errors.iid = -1; // dump all proxies |
| 2251 | |
| 2252 | appctx->ctx.errors.flag = 0; |
| 2253 | if (strcmp(args[3], "request") == 0) |
| 2254 | appctx->ctx.errors.flag |= 4; // ignore response |
| 2255 | else if (strcmp(args[3], "response") == 0) |
| 2256 | appctx->ctx.errors.flag |= 2; // ignore request |
| 2257 | appctx->ctx.errors.px = NULL; |
| 2258 | return 0; |
| 2259 | } |
| 2260 | |
| 2261 | /* This function dumps all captured errors onto the stream interface's |
| 2262 | * read buffer. It returns 0 if the output buffer is full and it needs |
| 2263 | * to be called again, otherwise non-zero. |
| 2264 | */ |
| 2265 | static int cli_io_handler_show_errors(struct appctx *appctx) |
| 2266 | { |
| 2267 | struct stream_interface *si = appctx->owner; |
| 2268 | extern const char *monthname[12]; |
| 2269 | |
| 2270 | if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW))) |
| 2271 | return 1; |
| 2272 | |
| 2273 | chunk_reset(&trash); |
| 2274 | |
| 2275 | if (!appctx->ctx.errors.px) { |
| 2276 | /* the function had not been called yet, let's prepare the |
| 2277 | * buffer for a response. |
| 2278 | */ |
| 2279 | struct tm tm; |
| 2280 | |
| 2281 | get_localtime(date.tv_sec, &tm); |
| 2282 | chunk_appendf(&trash, "Total events captured on [%02d/%s/%04d:%02d:%02d:%02d.%03d] : %u\n", |
| 2283 | tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900, |
| 2284 | tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(date.tv_usec/1000), |
| 2285 | error_snapshot_id); |
| 2286 | |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2287 | if (ci_putchk(si_ic(si), &trash) == -1) |
| 2288 | goto cant_send; |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2289 | |
| 2290 | appctx->ctx.errors.px = proxies_list; |
| 2291 | appctx->ctx.errors.bol = 0; |
| 2292 | appctx->ctx.errors.ptr = -1; |
| 2293 | } |
| 2294 | |
| 2295 | /* we have two inner loops here, one for the proxy, the other one for |
| 2296 | * the buffer. |
| 2297 | */ |
| 2298 | while (appctx->ctx.errors.px) { |
| 2299 | struct error_snapshot *es; |
| 2300 | |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2301 | HA_SPIN_LOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock); |
| 2302 | |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2303 | if ((appctx->ctx.errors.flag & 1) == 0) { |
Willy Tarreau | c55015e | 2018-09-07 19:02:32 +0200 | [diff] [blame] | 2304 | es = appctx->ctx.errors.px->invalid_req; |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2305 | if (appctx->ctx.errors.flag & 2) // skip req |
| 2306 | goto next; |
| 2307 | } |
| 2308 | else { |
Willy Tarreau | c55015e | 2018-09-07 19:02:32 +0200 | [diff] [blame] | 2309 | es = appctx->ctx.errors.px->invalid_rep; |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2310 | if (appctx->ctx.errors.flag & 4) // skip resp |
| 2311 | goto next; |
| 2312 | } |
| 2313 | |
Willy Tarreau | c55015e | 2018-09-07 19:02:32 +0200 | [diff] [blame] | 2314 | if (!es) |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2315 | goto next; |
| 2316 | |
| 2317 | if (appctx->ctx.errors.iid >= 0 && |
| 2318 | appctx->ctx.errors.px->uuid != appctx->ctx.errors.iid && |
| 2319 | es->oe->uuid != appctx->ctx.errors.iid) |
| 2320 | goto next; |
| 2321 | |
| 2322 | if (appctx->ctx.errors.ptr < 0) { |
| 2323 | /* just print headers now */ |
| 2324 | |
| 2325 | char pn[INET6_ADDRSTRLEN]; |
| 2326 | struct tm tm; |
| 2327 | int port; |
| 2328 | |
| 2329 | get_localtime(es->when.tv_sec, &tm); |
| 2330 | chunk_appendf(&trash, " \n[%02d/%s/%04d:%02d:%02d:%02d.%03d]", |
| 2331 | tm.tm_mday, monthname[tm.tm_mon], tm.tm_year+1900, |
| 2332 | tm.tm_hour, tm.tm_min, tm.tm_sec, (int)(es->when.tv_usec/1000)); |
| 2333 | |
| 2334 | switch (addr_to_str(&es->src, pn, sizeof(pn))) { |
| 2335 | case AF_INET: |
| 2336 | case AF_INET6: |
| 2337 | port = get_host_port(&es->src); |
| 2338 | break; |
| 2339 | default: |
| 2340 | port = 0; |
| 2341 | } |
| 2342 | |
| 2343 | switch (appctx->ctx.errors.flag & 1) { |
| 2344 | case 0: |
| 2345 | chunk_appendf(&trash, |
| 2346 | " frontend %s (#%d): invalid request\n" |
| 2347 | " backend %s (#%d)", |
| 2348 | appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid, |
| 2349 | (es->oe->cap & PR_CAP_BE) ? es->oe->id : "<NONE>", |
| 2350 | (es->oe->cap & PR_CAP_BE) ? es->oe->uuid : -1); |
| 2351 | break; |
| 2352 | case 1: |
| 2353 | chunk_appendf(&trash, |
| 2354 | " backend %s (#%d): invalid response\n" |
| 2355 | " frontend %s (#%d)", |
| 2356 | appctx->ctx.errors.px->id, appctx->ctx.errors.px->uuid, |
| 2357 | es->oe->id, es->oe->uuid); |
| 2358 | break; |
| 2359 | } |
| 2360 | |
| 2361 | chunk_appendf(&trash, |
| 2362 | ", server %s (#%d), event #%u, src %s:%d\n" |
| 2363 | " buffer starts at %llu (including %u out), %u free,\n" |
| 2364 | " len %u, wraps at %u, error at position %u\n", |
| 2365 | es->srv ? es->srv->id : "<NONE>", |
| 2366 | es->srv ? es->srv->puid : -1, |
| 2367 | es->ev_id, pn, port, |
| 2368 | es->buf_ofs, es->buf_out, |
| 2369 | global.tune.bufsize - es->buf_out - es->buf_len, |
| 2370 | es->buf_len, es->buf_wrap, es->buf_err); |
| 2371 | |
| 2372 | if (es->show) |
| 2373 | es->show(&trash, es); |
| 2374 | |
| 2375 | chunk_appendf(&trash, " \n"); |
| 2376 | |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2377 | if (ci_putchk(si_ic(si), &trash) == -1) |
| 2378 | goto cant_send_unlock; |
| 2379 | |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2380 | appctx->ctx.errors.ptr = 0; |
| 2381 | appctx->ctx.errors.ev_id = es->ev_id; |
| 2382 | } |
| 2383 | |
| 2384 | if (appctx->ctx.errors.ev_id != es->ev_id) { |
| 2385 | /* the snapshot changed while we were dumping it */ |
| 2386 | chunk_appendf(&trash, |
| 2387 | " WARNING! update detected on this snapshot, dump interrupted. Please re-check!\n"); |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2388 | if (ci_putchk(si_ic(si), &trash) == -1) |
| 2389 | goto cant_send_unlock; |
| 2390 | |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2391 | goto next; |
| 2392 | } |
| 2393 | |
| 2394 | /* OK, ptr >= 0, so we have to dump the current line */ |
Willy Tarreau | 4bc7d90 | 2018-09-07 20:07:17 +0200 | [diff] [blame] | 2395 | while (appctx->ctx.errors.ptr < es->buf_len && appctx->ctx.errors.ptr < global.tune.bufsize) { |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2396 | int newptr; |
| 2397 | int newline; |
| 2398 | |
| 2399 | newline = appctx->ctx.errors.bol; |
| 2400 | newptr = dump_text_line(&trash, es->buf, global.tune.bufsize, es->buf_len, &newline, appctx->ctx.errors.ptr); |
| 2401 | if (newptr == appctx->ctx.errors.ptr) |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2402 | goto cant_send_unlock; |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2403 | |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2404 | if (ci_putchk(si_ic(si), &trash) == -1) |
| 2405 | goto cant_send_unlock; |
| 2406 | |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2407 | appctx->ctx.errors.ptr = newptr; |
| 2408 | appctx->ctx.errors.bol = newline; |
| 2409 | }; |
| 2410 | next: |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2411 | HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock); |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2412 | appctx->ctx.errors.bol = 0; |
| 2413 | appctx->ctx.errors.ptr = -1; |
| 2414 | appctx->ctx.errors.flag ^= 1; |
| 2415 | if (!(appctx->ctx.errors.flag & 1)) |
| 2416 | appctx->ctx.errors.px = appctx->ctx.errors.px->next; |
| 2417 | } |
| 2418 | |
| 2419 | /* dump complete */ |
| 2420 | return 1; |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2421 | |
| 2422 | cant_send_unlock: |
| 2423 | HA_SPIN_UNLOCK(PROXY_LOCK, &appctx->ctx.errors.px->lock); |
| 2424 | cant_send: |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 2425 | si_rx_room_blk(si); |
Willy Tarreau | 36b2736 | 2018-09-07 19:55:44 +0200 | [diff] [blame] | 2426 | return 0; |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2427 | } |
| 2428 | |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 2429 | /* register cli keywords */ |
| 2430 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 2431 | { { "disable", "frontend", NULL }, "disable frontend : temporarily disable specific frontend", cli_parse_disable_frontend, NULL, NULL }, |
| 2432 | { { "enable", "frontend", NULL }, "enable frontend : re-enable specific frontend", cli_parse_enable_frontend, NULL, NULL }, |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 2433 | { { "set", "maxconn", "frontend", NULL }, "set maxconn frontend : change a frontend's maxconn setting", cli_parse_set_maxconn_frontend, NULL }, |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 2434 | { { "show","servers", "state", NULL }, "show servers state [id]: dump volatile server information (for backend <id>)", cli_parse_show_servers, cli_io_handler_servers_state }, |
Willy Tarreau | 608ea59 | 2016-12-16 18:01:15 +0100 | [diff] [blame] | 2435 | { { "show", "backend", NULL }, "show backend : list backends in the current running config", NULL, cli_io_handler_show_backend }, |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 2436 | { { "shutdown", "frontend", NULL }, "shutdown frontend : stop a specific frontend", cli_parse_shutdown_frontend, NULL, NULL }, |
Olivier Houchard | 614f8d7 | 2017-03-14 20:08:46 +0100 | [diff] [blame] | 2437 | { { "set", "dynamic-cookie-key", "backend", NULL }, "set dynamic-cookie-key backend : change a backend secret key for dynamic cookies", cli_parse_set_dyncookie_key_backend, NULL }, |
| 2438 | { { "enable", "dynamic-cookie", "backend", NULL }, "enable dynamic-cookie backend : enable dynamic cookies on a specific backend", cli_parse_enable_dyncookie_backend, NULL }, |
| 2439 | { { "disable", "dynamic-cookie", "backend", NULL }, "disable dynamic-cookie backend : disable dynamic cookies on a specific backend", cli_parse_disable_dyncookie_backend, NULL }, |
Willy Tarreau | ddb68ac | 2018-09-07 18:34:24 +0200 | [diff] [blame] | 2440 | { { "show", "errors", NULL }, "show errors : report last request and response errors for each proxy", cli_parse_show_errors, cli_io_handler_show_errors, NULL }, |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 2441 | {{},} |
| 2442 | }}; |
| 2443 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 2444 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2445 | |
| 2446 | /* |
| 2447 | * Local variables: |
| 2448 | * c-indent-level: 8 |
| 2449 | * c-basic-offset: 8 |
| 2450 | * End: |
| 2451 | */ |