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