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 | 4d2d098 | 2007-05-14 00:39:29 +0200 | [diff] [blame] | 25 | #include <common/memory.h> |
Willy Tarreau | 2dd0d47 | 2006-06-29 17:53:05 +0200 | [diff] [blame] | 26 | #include <common/time.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 27 | |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 28 | #include <eb32tree.h> |
| 29 | #include <ebistree.h> |
| 30 | |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 31 | #include <types/capture.h> |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 32 | #include <types/cli.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 33 | #include <types/global.h> |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 34 | #include <types/obj_type.h> |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 35 | #include <types/peers.h> |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 36 | #include <types/stats.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 37 | |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 38 | #include <proto/applet.h> |
| 39 | #include <proto/cli.h> |
Alexandre Cassen | 87ea548 | 2007-10-11 20:48:58 +0200 | [diff] [blame] | 40 | #include <proto/backend.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 41 | #include <proto/fd.h> |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 42 | #include <proto/filters.h> |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 43 | #include <proto/hdr_idx.h> |
Willy Tarreau | d1d5454 | 2012-09-12 22:58:11 +0200 | [diff] [blame] | 44 | #include <proto/listener.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 45 | #include <proto/log.h> |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 46 | #include <proto/proto_tcp.h> |
Willy Tarreau | 39e4f62 | 2010-05-31 17:01:36 +0200 | [diff] [blame] | 47 | #include <proto/proto_http.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 48 | #include <proto/proxy.h> |
Willy Tarreau | d0807c3 | 2010-08-27 18:26:11 +0200 | [diff] [blame] | 49 | #include <proto/signal.h> |
Willy Tarreau | fb0afa7 | 2015-04-03 14:46:27 +0200 | [diff] [blame] | 50 | #include <proto/stream.h> |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 51 | #include <proto/stream_interface.h> |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 52 | #include <proto/task.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 53 | |
| 54 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 55 | int listeners; /* # of proxy listeners, set by cfgparse */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 56 | struct proxy *proxy = NULL; /* list of all existing proxies */ |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 57 | 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] | 58 | 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] | 59 | 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] | 60 | |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 61 | /* |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 62 | * This function returns a string containing a name describing capabilities to |
| 63 | * report comprehensible error messages. Specifically, it will return the words |
Christopher Faulet | 898566e | 2016-10-26 11:06:28 +0200 | [diff] [blame] | 64 | * "frontend", "backend" when appropriate, or "proxy" for all other |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 65 | * cases including the proxies declared in "listen" mode. |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 66 | */ |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 67 | const char *proxy_cap_str(int cap) |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 68 | { |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 69 | if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) { |
| 70 | if (cap & PR_CAP_FE) |
| 71 | return "frontend"; |
| 72 | else if (cap & PR_CAP_BE) |
| 73 | return "backend"; |
Willy Tarreau | 816eb54 | 2007-11-04 07:04:43 +0100 | [diff] [blame] | 74 | } |
| 75 | return "proxy"; |
Willy Tarreau | 977b8e4 | 2006-12-29 14:19:17 +0100 | [diff] [blame] | 76 | } |
| 77 | |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 78 | /* |
| 79 | * This function returns a string containing the mode of the proxy in a format |
| 80 | * suitable for error messages. |
| 81 | */ |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 82 | const char *proxy_mode_str(int mode) { |
| 83 | |
| 84 | if (mode == PR_MODE_TCP) |
| 85 | return "tcp"; |
| 86 | else if (mode == PR_MODE_HTTP) |
| 87 | return "http"; |
| 88 | else if (mode == PR_MODE_HEALTH) |
| 89 | return "health"; |
| 90 | else |
| 91 | return "unknown"; |
| 92 | } |
| 93 | |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 94 | /* |
| 95 | * This function scans the list of backends and servers to retrieve the first |
| 96 | * backend and the first server with the given names, and sets them in both |
| 97 | * parameters. It returns zero if either is not found, or non-zero and sets |
| 98 | * the ones it did not found to NULL. If a NULL pointer is passed for the |
| 99 | * backend, only the pointer to the server will be updated. |
| 100 | */ |
| 101 | int get_backend_server(const char *bk_name, const char *sv_name, |
| 102 | struct proxy **bk, struct server **sv) |
| 103 | { |
| 104 | struct proxy *p; |
| 105 | struct server *s; |
Willy Tarreau | 7ecc420 | 2014-03-15 07:57:11 +0100 | [diff] [blame] | 106 | int sid; |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 107 | |
| 108 | *sv = NULL; |
| 109 | |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 110 | sid = -1; |
Willy Tarreau | cfeaa47 | 2009-10-10 22:33:08 +0200 | [diff] [blame] | 111 | if (*sv_name == '#') |
| 112 | sid = atoi(sv_name + 1); |
| 113 | |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 114 | p = proxy_be_by_name(bk_name); |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 115 | if (bk) |
| 116 | *bk = p; |
| 117 | if (!p) |
| 118 | return 0; |
| 119 | |
| 120 | for (s = p->srv; s; s = s->next) |
Willy Tarreau | 4055a10 | 2012-11-15 00:15:18 +0100 | [diff] [blame] | 121 | if ((sid >= 0 && s->puid == sid) || |
| 122 | (sid < 0 && strcmp(s->id, sv_name) == 0)) |
Willy Tarreau | f395017 | 2009-10-10 18:35:51 +0200 | [diff] [blame] | 123 | break; |
| 124 | *sv = s; |
| 125 | if (!s) |
| 126 | return 0; |
| 127 | return 1; |
| 128 | } |
| 129 | |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 130 | /* This function parses a "timeout" statement in a proxy section. It returns |
| 131 | * -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] | 132 | * return zero, it will write an error or warning message into a preallocated |
| 133 | * buffer returned at <err>. The trailing is not be written. The function must |
| 134 | * be called with <args> pointing to the first command line word, with <proxy> |
| 135 | * pointing to the proxy being parsed, and <defpx> to the default proxy or NULL. |
| 136 | * As a special case for compatibility with older configs, it also accepts |
| 137 | * "{cli|srv|con}timeout" in args[0]. |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 138 | */ |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 139 | static int proxy_parse_timeout(char **args, int section, struct proxy *proxy, |
Willy Tarreau | 28a47d6 | 2012-09-18 20:02:48 +0200 | [diff] [blame] | 140 | struct proxy *defpx, const char *file, int line, |
| 141 | char **err) |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 142 | { |
| 143 | unsigned timeout; |
| 144 | int retval, cap; |
| 145 | const char *res, *name; |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 146 | int *tv = NULL; |
| 147 | int *td = NULL; |
Willy Tarreau | ed44649 | 2014-04-28 22:56:38 +0200 | [diff] [blame] | 148 | int warn = 0; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 149 | |
| 150 | retval = 0; |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 151 | |
| 152 | /* simply skip "timeout" but remain compatible with old form */ |
| 153 | if (strcmp(args[0], "timeout") == 0) |
| 154 | args++; |
| 155 | |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 156 | name = args[0]; |
Willy Tarreau | ed44649 | 2014-04-28 22:56:38 +0200 | [diff] [blame] | 157 | 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] | 158 | name = "client"; |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 159 | tv = &proxy->timeout.client; |
| 160 | td = &defpx->timeout.client; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 161 | cap = PR_CAP_FE; |
| 162 | } else if (!strcmp(args[0], "tarpit")) { |
| 163 | tv = &proxy->timeout.tarpit; |
| 164 | td = &defpx->timeout.tarpit; |
Willy Tarreau | 51c9bde | 2008-01-06 13:40:03 +0100 | [diff] [blame] | 165 | cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | b16a574 | 2010-01-10 14:46:16 +0100 | [diff] [blame] | 166 | } else if (!strcmp(args[0], "http-keep-alive")) { |
| 167 | tv = &proxy->timeout.httpka; |
| 168 | td = &defpx->timeout.httpka; |
| 169 | cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | 036fae0 | 2008-01-06 13:24:40 +0100 | [diff] [blame] | 170 | } else if (!strcmp(args[0], "http-request")) { |
| 171 | tv = &proxy->timeout.httpreq; |
| 172 | td = &defpx->timeout.httpreq; |
Willy Tarreau | cd7afc0 | 2009-07-12 10:03:17 +0200 | [diff] [blame] | 173 | cap = PR_CAP_FE | PR_CAP_BE; |
Willy Tarreau | ed44649 | 2014-04-28 22:56:38 +0200 | [diff] [blame] | 174 | } 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] | 175 | name = "server"; |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 176 | tv = &proxy->timeout.server; |
| 177 | td = &defpx->timeout.server; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 178 | cap = PR_CAP_BE; |
Willy Tarreau | ed44649 | 2014-04-28 22:56:38 +0200 | [diff] [blame] | 179 | } 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] | 180 | name = "connect"; |
Willy Tarreau | d7c30f9 | 2007-12-03 01:38:36 +0100 | [diff] [blame] | 181 | tv = &proxy->timeout.connect; |
| 182 | td = &defpx->timeout.connect; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 183 | cap = PR_CAP_BE; |
Krzysztof Piotr Oledzki | 5259dfe | 2008-01-21 01:54:06 +0100 | [diff] [blame] | 184 | } else if (!strcmp(args[0], "check")) { |
| 185 | tv = &proxy->timeout.check; |
| 186 | td = &defpx->timeout.check; |
| 187 | cap = PR_CAP_BE; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 188 | } else if (!strcmp(args[0], "queue")) { |
| 189 | tv = &proxy->timeout.queue; |
| 190 | td = &defpx->timeout.queue; |
| 191 | cap = PR_CAP_BE; |
Willy Tarreau | ce887fd | 2012-05-12 12:50:00 +0200 | [diff] [blame] | 192 | } else if (!strcmp(args[0], "tunnel")) { |
| 193 | tv = &proxy->timeout.tunnel; |
| 194 | td = &defpx->timeout.tunnel; |
| 195 | cap = PR_CAP_BE; |
Willy Tarreau | 05cdd96 | 2014-05-10 14:30:07 +0200 | [diff] [blame] | 196 | } else if (!strcmp(args[0], "client-fin")) { |
| 197 | tv = &proxy->timeout.clientfin; |
| 198 | td = &defpx->timeout.clientfin; |
| 199 | cap = PR_CAP_FE; |
| 200 | } else if (!strcmp(args[0], "server-fin")) { |
| 201 | tv = &proxy->timeout.serverfin; |
| 202 | td = &defpx->timeout.serverfin; |
| 203 | cap = PR_CAP_BE; |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 204 | } else { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 205 | memprintf(err, |
| 206 | "'timeout' supports 'client', 'server', 'connect', 'check', " |
Willy Tarreau | 05cdd96 | 2014-05-10 14:30:07 +0200 | [diff] [blame] | 207 | "'queue', 'http-keep-alive', 'http-request', 'tunnel', 'tarpit', " |
| 208 | "'client-fin' and 'server-fin' (got '%s')", |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 209 | args[0]); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 210 | return -1; |
| 211 | } |
| 212 | |
| 213 | if (*args[1] == 0) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 214 | memprintf(err, "'timeout %s' expects an integer value (in milliseconds)", name); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 215 | return -1; |
| 216 | } |
| 217 | |
| 218 | res = parse_time_err(args[1], &timeout, TIME_UNIT_MS); |
| 219 | if (res) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 220 | memprintf(err, "unexpected character '%c' in 'timeout %s'", *res, name); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 221 | return -1; |
| 222 | } |
| 223 | |
| 224 | if (!(proxy->cap & cap)) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 225 | memprintf(err, "'timeout %s' will be ignored because %s '%s' has no %s capability", |
| 226 | name, proxy_type_str(proxy), proxy->id, |
| 227 | (cap & PR_CAP_BE) ? "backend" : "frontend"); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 228 | retval = 1; |
| 229 | } |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 230 | else if (defpx && *tv != *td) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 231 | memprintf(err, "overwriting 'timeout %s' which was already specified", name); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 232 | retval = 1; |
| 233 | } |
Willy Tarreau | ed44649 | 2014-04-28 22:56:38 +0200 | [diff] [blame] | 234 | else if (warn) { |
| 235 | if (!already_warned(warn)) { |
| 236 | memprintf(err, "the '%s' directive is now deprecated in favor of 'timeout %s', and will not be supported in future versions.", |
| 237 | args[0], name); |
| 238 | retval = 1; |
| 239 | } |
| 240 | } |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 241 | |
Willy Tarreau | fac5b59 | 2014-05-22 08:24:46 +0200 | [diff] [blame] | 242 | if (*args[2] != 0) { |
| 243 | memprintf(err, "'timeout %s' : unexpected extra argument '%s' after value '%s'.", name, args[2], args[1]); |
| 244 | retval = -1; |
| 245 | } |
| 246 | |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 247 | *tv = MS_TO_TICKS(timeout); |
Willy Tarreau | e219db7 | 2007-12-03 01:30:13 +0100 | [diff] [blame] | 248 | return retval; |
| 249 | } |
| 250 | |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 251 | /* This function parses a "rate-limit" statement in a proxy section. It returns |
| 252 | * -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] | 253 | * return zero, it will write an error or warning message into a preallocated |
| 254 | * buffer returned at <err>. The function must be called with <args> pointing |
| 255 | * to the first command line word, with <proxy> pointing to the proxy being |
| 256 | * parsed, and <defpx> to the default proxy or NULL. |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 257 | */ |
| 258 | 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] | 259 | struct proxy *defpx, const char *file, int line, |
| 260 | char **err) |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 261 | { |
| 262 | int retval, cap; |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 263 | char *res; |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 264 | unsigned int *tv = NULL; |
| 265 | unsigned int *td = NULL; |
| 266 | unsigned int val; |
| 267 | |
| 268 | retval = 0; |
| 269 | |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 270 | if (strcmp(args[1], "sessions") == 0) { |
Willy Tarreau | 13a34bd | 2009-05-10 18:52:49 +0200 | [diff] [blame] | 271 | tv = &proxy->fe_sps_lim; |
| 272 | td = &defpx->fe_sps_lim; |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 273 | cap = PR_CAP_FE; |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 274 | } |
| 275 | else { |
| 276 | memprintf(err, "'%s' only supports 'sessions' (got '%s')", args[0], args[1]); |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 277 | return -1; |
| 278 | } |
| 279 | |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 280 | if (*args[2] == 0) { |
| 281 | 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] | 282 | return -1; |
| 283 | } |
| 284 | |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 285 | val = strtoul(args[2], &res, 0); |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 286 | if (*res) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 287 | 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] | 288 | return -1; |
| 289 | } |
| 290 | |
| 291 | if (!(proxy->cap & cap)) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 292 | memprintf(err, "%s %s will be ignored because %s '%s' has no %s capability", |
| 293 | args[0], args[1], proxy_type_str(proxy), proxy->id, |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 294 | (cap & PR_CAP_BE) ? "backend" : "frontend"); |
| 295 | retval = 1; |
| 296 | } |
| 297 | else if (defpx && *tv != *td) { |
Willy Tarreau | 0a3dd74 | 2012-05-08 19:47:01 +0200 | [diff] [blame] | 298 | 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] | 299 | retval = 1; |
| 300 | } |
| 301 | |
| 302 | *tv = val; |
| 303 | return retval; |
| 304 | } |
| 305 | |
Willy Tarreau | c35362a | 2014-04-25 13:58:37 +0200 | [diff] [blame] | 306 | /* This function parses a "max-keep-alive-queue" statement in a proxy section. |
| 307 | * It returns -1 if there is any error, 1 for a warning, otherwise zero. If it |
| 308 | * does not return zero, it will write an error or warning message into a |
| 309 | * preallocated buffer returned at <err>. The function must be called with |
| 310 | * <args> pointing to the first command line word, with <proxy> pointing to |
| 311 | * the proxy being parsed, and <defpx> to the default proxy or NULL. |
| 312 | */ |
| 313 | static int proxy_parse_max_ka_queue(char **args, int section, struct proxy *proxy, |
| 314 | struct proxy *defpx, const char *file, int line, |
| 315 | char **err) |
| 316 | { |
| 317 | int retval; |
| 318 | char *res; |
| 319 | unsigned int val; |
| 320 | |
| 321 | retval = 0; |
| 322 | |
| 323 | if (*args[1] == 0) { |
| 324 | memprintf(err, "'%s' expects expects an integer value (or -1 to disable)", args[0]); |
| 325 | return -1; |
| 326 | } |
| 327 | |
| 328 | val = strtol(args[1], &res, 0); |
| 329 | if (*res) { |
| 330 | memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]); |
| 331 | return -1; |
| 332 | } |
| 333 | |
| 334 | if (!(proxy->cap & PR_CAP_BE)) { |
| 335 | memprintf(err, "%s will be ignored because %s '%s' has no backend capability", |
| 336 | args[0], proxy_type_str(proxy), proxy->id); |
| 337 | retval = 1; |
| 338 | } |
| 339 | |
| 340 | /* we store <val+1> so that a user-facing value of -1 is stored as zero (default) */ |
| 341 | proxy->max_ka_queue = val + 1; |
| 342 | return retval; |
| 343 | } |
| 344 | |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 345 | /* This function parses a "declare" statement in a proxy section. It returns -1 |
| 346 | * if there is any error, 1 for warning, otherwise 0. If it does not return zero, |
| 347 | * it will write an error or warning message into a preallocated buffer returned |
| 348 | * at <err>. The function must be called with <args> pointing to the first command |
| 349 | * line word, with <proxy> pointing to the proxy being parsed, and <defpx> to the |
| 350 | * default proxy or NULL. |
| 351 | */ |
| 352 | static int proxy_parse_declare(char **args, int section, struct proxy *curpx, |
| 353 | struct proxy *defpx, const char *file, int line, |
| 354 | char **err) |
| 355 | { |
| 356 | /* Capture keyword wannot be declared in a default proxy. */ |
| 357 | if (curpx == defpx) { |
| 358 | memprintf(err, "'%s' not avalaible in default section", args[0]); |
| 359 | return -1; |
| 360 | } |
| 361 | |
| 362 | /* Capture keywork is only avalaible in frontend. */ |
| 363 | if (!(curpx->cap & PR_CAP_FE)) { |
| 364 | memprintf(err, "'%s' only avalaible in frontend or listen section", args[0]); |
| 365 | return -1; |
| 366 | } |
| 367 | |
| 368 | /* Check mandatory second keyword. */ |
| 369 | if (!args[1] || !*args[1]) { |
| 370 | memprintf(err, "'%s' needs a second keyword that specify the type of declaration ('capture')", args[0]); |
| 371 | return -1; |
| 372 | } |
| 373 | |
| 374 | /* Actually, declare is only avalaible for declaring capture |
| 375 | * slot, but in the future it can declare maps or variables. |
| 376 | * So, this section permits to check and switch acording with |
| 377 | * the second keyword. |
| 378 | */ |
| 379 | if (strcmp(args[1], "capture") == 0) { |
| 380 | char *error = NULL; |
| 381 | long len; |
| 382 | struct cap_hdr *hdr; |
| 383 | |
| 384 | /* Check the next keyword. */ |
| 385 | if (!args[2] || !*args[2] || |
| 386 | (strcmp(args[2], "response") != 0 && |
| 387 | strcmp(args[2], "request") != 0)) { |
| 388 | memprintf(err, "'%s %s' requires a direction ('request' or 'response')", args[0], args[1]); |
| 389 | return -1; |
| 390 | } |
| 391 | |
| 392 | /* Check the 'len' keyword. */ |
| 393 | if (!args[3] || !*args[3] || strcmp(args[3], "len") != 0) { |
| 394 | memprintf(err, "'%s %s' requires a capture length ('len')", args[0], args[1]); |
| 395 | return -1; |
| 396 | } |
| 397 | |
| 398 | /* Check the length value. */ |
| 399 | if (!args[4] || !*args[4]) { |
| 400 | memprintf(err, "'%s %s': 'len' requires a numeric value that represents the " |
| 401 | "capture length", |
| 402 | args[0], args[1]); |
| 403 | return -1; |
| 404 | } |
| 405 | |
| 406 | /* convert the length value. */ |
| 407 | len = strtol(args[4], &error, 10); |
| 408 | if (*error != '\0') { |
| 409 | memprintf(err, "'%s %s': cannot parse the length '%s'.", |
| 410 | args[0], args[1], args[3]); |
| 411 | return -1; |
| 412 | } |
| 413 | |
| 414 | /* check length. */ |
| 415 | if (len <= 0) { |
| 416 | memprintf(err, "length must be > 0"); |
| 417 | return -1; |
| 418 | } |
| 419 | |
| 420 | /* register the capture. */ |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 421 | hdr = calloc(1, sizeof(*hdr)); |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 422 | hdr->name = NULL; /* not a header capture */ |
| 423 | hdr->namelen = 0; |
| 424 | hdr->len = len; |
| 425 | hdr->pool = create_pool("caphdr", hdr->len + 1, MEM_F_SHARED); |
| 426 | |
| 427 | if (strcmp(args[2], "request") == 0) { |
| 428 | hdr->next = curpx->req_cap; |
| 429 | hdr->index = curpx->nb_req_cap++; |
| 430 | curpx->req_cap = hdr; |
| 431 | } |
| 432 | if (strcmp(args[2], "response") == 0) { |
| 433 | hdr->next = curpx->rsp_cap; |
| 434 | hdr->index = curpx->nb_rsp_cap++; |
| 435 | curpx->rsp_cap = hdr; |
| 436 | } |
| 437 | return 0; |
| 438 | } |
| 439 | else { |
| 440 | memprintf(err, "unknown declaration type '%s' (supports 'capture')", args[1]); |
| 441 | return -1; |
| 442 | } |
| 443 | } |
| 444 | |
Willy Tarreau | f79d950 | 2014-03-15 07:22:35 +0100 | [diff] [blame] | 445 | /* This function inserts proxy <px> into the tree of known proxies. The proxy's |
| 446 | * name is used as the storing key so it must already have been initialized. |
| 447 | */ |
| 448 | void proxy_store_name(struct proxy *px) |
| 449 | { |
| 450 | px->conf.by_name.key = px->id; |
| 451 | ebis_insert(&proxy_by_name, &px->conf.by_name); |
| 452 | } |
| 453 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 454 | /* Returns a pointer to the first proxy matching capabilities <cap> and id |
| 455 | * <id>. NULL is returned if no match is found. If <table> is non-zero, it |
| 456 | * only considers proxies having a table. |
Willy Tarreau | bc216c4 | 2011-08-02 11:25:54 +0200 | [diff] [blame] | 457 | */ |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 458 | struct proxy *proxy_find_by_id(int id, int cap, int table) |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 459 | { |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 460 | struct eb32_node *n; |
Willy Tarreau | bc216c4 | 2011-08-02 11:25:54 +0200 | [diff] [blame] | 461 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 462 | for (n = eb32_lookup(&used_proxy_id, id); n; n = eb32_next(n)) { |
| 463 | struct proxy *px = container_of(n, struct proxy, conf.id); |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 464 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 465 | if (px->uuid != id) |
| 466 | break; |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 467 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 468 | if ((px->cap & cap) != cap) |
| 469 | continue; |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 470 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 471 | if (table && !px->table.size) |
| 472 | continue; |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 473 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 474 | return px; |
| 475 | } |
| 476 | return NULL; |
| 477 | } |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 478 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 479 | /* Returns a pointer to the first proxy matching either name <name>, or id |
| 480 | * <name> if <name> begins with a '#'. NULL is returned if no match is found. |
| 481 | * If <table> is non-zero, it only considers proxies having a table. |
| 482 | */ |
| 483 | struct proxy *proxy_find_by_name(const char *name, int cap, int table) |
| 484 | { |
| 485 | struct proxy *curproxy; |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 486 | |
Willy Tarreau | 3c56a7d | 2015-05-26 15:25:32 +0200 | [diff] [blame] | 487 | if (*name == '#') { |
| 488 | curproxy = proxy_find_by_id(atoi(name + 1), cap, table); |
| 489 | if (curproxy) |
Willy Tarreau | c739aa8 | 2015-05-26 11:35:41 +0200 | [diff] [blame] | 490 | return curproxy; |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 491 | } |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 492 | else { |
| 493 | struct ebpt_node *node; |
| 494 | |
| 495 | for (node = ebis_lookup(&proxy_by_name, name); node; node = ebpt_next(node)) { |
| 496 | curproxy = container_of(node, struct proxy, conf.by_name); |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 497 | |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 498 | if (strcmp(curproxy->id, name) != 0) |
| 499 | break; |
| 500 | |
| 501 | if ((curproxy->cap & cap) != cap) |
| 502 | continue; |
| 503 | |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 504 | if (table && !curproxy->table.size) |
| 505 | continue; |
| 506 | |
Willy Tarreau | c739aa8 | 2015-05-26 11:35:41 +0200 | [diff] [blame] | 507 | return curproxy; |
Willy Tarreau | cfd837f | 2014-03-15 07:43:51 +0100 | [diff] [blame] | 508 | } |
| 509 | } |
Willy Tarreau | c739aa8 | 2015-05-26 11:35:41 +0200 | [diff] [blame] | 510 | return NULL; |
Alex Williams | 96532db | 2009-11-01 21:27:13 -0500 | [diff] [blame] | 511 | } |
| 512 | |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 513 | /* Finds the best match for a proxy with capabilities <cap>, name <name> and id |
| 514 | * <id>. At most one of <id> or <name> may be different provided that <cap> is |
| 515 | * valid. Either <id> or <name> may be left unspecified (0). The purpose is to |
| 516 | * find a proxy based on some information from a previous configuration, across |
| 517 | * reloads or during information exchange between peers. |
| 518 | * |
| 519 | * Names are looked up first if present, then IDs are compared if present. In |
| 520 | * case of an inexact match whatever is forced in the configuration has |
| 521 | * precedence in the following order : |
| 522 | * - 1) forced ID (proves a renaming / change of proxy type) |
| 523 | * - 2) proxy name+type (may indicate a move if ID differs) |
| 524 | * - 3) automatic ID+type (may indicate a renaming) |
| 525 | * |
| 526 | * Depending on what is found, we can end up in the following situations : |
| 527 | * |
| 528 | * name id cap | possible causes |
| 529 | * -------------+----------------- |
| 530 | * -- -- -- | nothing found |
| 531 | * -- -- ok | nothing found |
| 532 | * -- ok -- | proxy deleted, ID points to next one |
| 533 | * -- ok ok | proxy renamed, or deleted with ID pointing to next one |
| 534 | * ok -- -- | proxy deleted, but other half with same name still here (before) |
| 535 | * ok -- ok | proxy's ID changed (proxy moved in the config file) |
| 536 | * ok ok -- | proxy deleted, but other half with same name still here (after) |
| 537 | * ok ok ok | perfect match |
| 538 | * |
| 539 | * 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] | 540 | * - PR_FBM_MISMATCH_ID : proxy was found but ID differs |
| 541 | * (and ID was not zero) |
| 542 | * - PR_FBM_MISMATCH_NAME : proxy was found by ID but name differs |
| 543 | * (and name was not NULL) |
| 544 | * - PR_FBM_MISMATCH_PROXYTYPE : a proxy of different type was found with |
| 545 | * the same name and/or id |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 546 | * |
| 547 | * Only a valid proxy is returned. If capabilities do not match, NULL is |
| 548 | * returned. The caller can check <diff> to report detailed warnings / errors, |
| 549 | * and decide whether or not to use what was found. |
| 550 | */ |
| 551 | struct proxy *proxy_find_best_match(int cap, const char *name, int id, int *diff) |
| 552 | { |
| 553 | struct proxy *byname; |
| 554 | struct proxy *byid; |
| 555 | |
| 556 | if (!name && !id) |
| 557 | return NULL; |
| 558 | |
| 559 | if (diff) |
| 560 | *diff = 0; |
| 561 | |
| 562 | byname = byid = NULL; |
| 563 | |
| 564 | if (name) { |
| 565 | byname = proxy_find_by_name(name, cap, 0); |
| 566 | if (byname && (!id || byname->uuid == id)) |
| 567 | return byname; |
| 568 | } |
| 569 | |
| 570 | /* remaining possiblities : |
| 571 | * - name not set |
| 572 | * - name set but not found |
| 573 | * - name found, but ID doesn't match. |
| 574 | */ |
| 575 | if (id) { |
| 576 | byid = proxy_find_by_id(id, cap, 0); |
| 577 | if (byid) { |
| 578 | if (byname) { |
| 579 | /* id+type found, name+type found, but not all 3. |
| 580 | * ID wins only if forced, otherwise name wins. |
| 581 | */ |
| 582 | if (byid->options & PR_O_FORCED_ID) { |
| 583 | if (diff) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 584 | *diff |= PR_FBM_MISMATCH_NAME; |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 585 | return byid; |
| 586 | } |
| 587 | else { |
| 588 | if (diff) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 589 | *diff |= PR_FBM_MISMATCH_ID; |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 590 | return byname; |
| 591 | } |
| 592 | } |
| 593 | |
| 594 | /* remaining possiblities : |
| 595 | * - name not set |
| 596 | * - name set but not found |
| 597 | */ |
| 598 | if (name && diff) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 599 | *diff |= PR_FBM_MISMATCH_NAME; |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 600 | return byid; |
| 601 | } |
| 602 | |
| 603 | /* ID not found */ |
| 604 | if (byname) { |
| 605 | if (diff) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 606 | *diff |= PR_FBM_MISMATCH_ID; |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 607 | return byname; |
| 608 | } |
| 609 | } |
| 610 | |
| 611 | /* All remaining possiblities will lead to NULL. If we can report more |
| 612 | * detailed information to the caller about changed types and/or name, |
| 613 | * we'll do it. For example, we could detect that "listen foo" was |
| 614 | * split into "frontend foo_ft" and "backend foo_bk" if IDs are forced. |
| 615 | * - name not set, ID not found |
| 616 | * - name not found, ID not set |
| 617 | * - name not found, ID not found |
| 618 | */ |
| 619 | if (!diff) |
| 620 | return NULL; |
| 621 | |
| 622 | if (name) { |
| 623 | byname = proxy_find_by_name(name, 0, 0); |
| 624 | if (byname && (!id || byname->uuid == id)) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 625 | *diff |= PR_FBM_MISMATCH_PROXYTYPE; |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 626 | } |
| 627 | |
| 628 | if (id) { |
| 629 | byid = proxy_find_by_id(id, 0, 0); |
| 630 | if (byid) { |
| 631 | if (!name) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 632 | *diff |= PR_FBM_MISMATCH_PROXYTYPE; /* only type changed */ |
Willy Tarreau | eb3e348 | 2015-05-27 16:46:26 +0200 | [diff] [blame] | 633 | else if (byid->options & PR_O_FORCED_ID) |
Baptiste Assmann | 8a027cc | 2015-07-03 11:03:33 +0200 | [diff] [blame] | 634 | *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] | 635 | /* otherwise it's a different proxy that was returned */ |
| 636 | } |
| 637 | } |
| 638 | return NULL; |
| 639 | } |
| 640 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 641 | /* |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 642 | * This function finds a server with matching name within selected proxy. |
| 643 | * It also checks if there are more matching servers with |
| 644 | * requested name as this often leads into unexpected situations. |
| 645 | */ |
| 646 | |
| 647 | struct server *findserver(const struct proxy *px, const char *name) { |
| 648 | |
| 649 | struct server *cursrv, *target = NULL; |
| 650 | |
| 651 | if (!px) |
| 652 | return NULL; |
| 653 | |
| 654 | for (cursrv = px->srv; cursrv; cursrv = cursrv->next) { |
| 655 | if (strcmp(cursrv->id, name)) |
| 656 | continue; |
| 657 | |
| 658 | if (!target) { |
| 659 | target = cursrv; |
| 660 | continue; |
| 661 | } |
| 662 | |
Cyril Bonté | 0bb519e | 2012-04-04 12:57:19 +0200 | [diff] [blame] | 663 | Alert("Refusing to use duplicated server '%s' found in proxy: %s!\n", |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 664 | name, px->id); |
| 665 | |
| 666 | return NULL; |
| 667 | } |
| 668 | |
| 669 | return target; |
| 670 | } |
| 671 | |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 672 | /* This function checks that the designated proxy has no http directives |
| 673 | * enabled. It will output a warning if there are, and will fix some of them. |
| 674 | * It returns the number of fatal errors encountered. This should be called |
| 675 | * at the end of the configuration parsing if the proxy is not in http mode. |
| 676 | * The <file> argument is used to construct the error message. |
| 677 | */ |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 678 | int proxy_cfg_ensure_no_http(struct proxy *curproxy) |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 679 | { |
| 680 | if (curproxy->cookie_name != NULL) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 681 | Warning("config : cookie will be ignored for %s '%s' (needs 'mode http').\n", |
| 682 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 683 | } |
| 684 | if (curproxy->rsp_exp != NULL) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 685 | Warning("config : server regular expressions will be ignored for %s '%s' (needs 'mode http').\n", |
| 686 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 687 | } |
| 688 | if (curproxy->req_exp != NULL) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 689 | Warning("config : client regular expressions will be ignored for %s '%s' (needs 'mode http').\n", |
| 690 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 691 | } |
| 692 | if (curproxy->monitor_uri != NULL) { |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 693 | Warning("config : monitor-uri will be ignored for %s '%s' (needs 'mode http').\n", |
| 694 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 695 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 696 | if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) { |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 697 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 698 | curproxy->lbprm.algo |= BE_LB_ALGO_RR; |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 699 | Warning("config : Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n", |
| 700 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 701 | } |
Willy Tarreau | 1780416 | 2009-11-09 21:27:51 +0100 | [diff] [blame] | 702 | if (curproxy->to_log & (LW_REQ | LW_RESP)) { |
| 703 | curproxy->to_log &= ~(LW_REQ | LW_RESP); |
Willy Tarreau | 59ad1a2 | 2014-01-29 14:39:58 +0100 | [diff] [blame] | 704 | Warning("parsing [%s:%d] : HTTP log/header format not usable with %s '%s' (needs 'mode http').\n", |
Willy Tarreau | b1f3af2 | 2013-04-12 18:30:32 +0200 | [diff] [blame] | 705 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, |
Willy Tarreau | 1780416 | 2009-11-09 21:27:51 +0100 | [diff] [blame] | 706 | proxy_type_str(curproxy), curproxy->id); |
| 707 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 708 | if (curproxy->conf.logformat_string == default_http_log_format || |
| 709 | curproxy->conf.logformat_string == clf_http_log_format) { |
| 710 | /* Note: we don't change the directive's file:line number */ |
| 711 | curproxy->conf.logformat_string = default_tcp_log_format; |
| 712 | Warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n", |
| 713 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, |
Willy Tarreau | 196729e | 2012-05-31 19:30:26 +0200 | [diff] [blame] | 714 | proxy_type_str(curproxy), curproxy->id); |
| 715 | } |
| 716 | |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 717 | return 0; |
| 718 | } |
| 719 | |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 720 | /* Perform the most basic initialization of a proxy : |
| 721 | * memset(), list_init(*), reset_timeouts(*). |
Willy Tarreau | b249e84 | 2011-09-07 18:41:08 +0200 | [diff] [blame] | 722 | * Any new proxy or peer should be initialized via this function. |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 723 | */ |
| 724 | void init_new_proxy(struct proxy *p) |
| 725 | { |
| 726 | memset(p, 0, sizeof(struct proxy)); |
Willy Tarreau | 3fdb366 | 2012-11-12 00:42:33 +0100 | [diff] [blame] | 727 | p->obj_type = OBJ_TYPE_PROXY; |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 728 | LIST_INIT(&p->pendconns); |
| 729 | LIST_INIT(&p->acl); |
| 730 | LIST_INIT(&p->http_req_rules); |
Willy Tarreau | e365c0b | 2013-06-11 16:06:12 +0200 | [diff] [blame] | 731 | LIST_INIT(&p->http_res_rules); |
Willy Tarreau | 353bc9f | 2014-04-28 22:05:31 +0200 | [diff] [blame] | 732 | LIST_INIT(&p->block_rules); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 733 | LIST_INIT(&p->redirect_rules); |
| 734 | LIST_INIT(&p->mon_fail_cond); |
| 735 | LIST_INIT(&p->switching_rules); |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 736 | LIST_INIT(&p->server_rules); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 737 | LIST_INIT(&p->persist_rules); |
| 738 | LIST_INIT(&p->sticking_rules); |
| 739 | LIST_INIT(&p->storersp_rules); |
| 740 | LIST_INIT(&p->tcp_req.inspect_rules); |
| 741 | LIST_INIT(&p->tcp_rep.inspect_rules); |
| 742 | LIST_INIT(&p->tcp_req.l4_rules); |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 743 | LIST_INIT(&p->tcp_req.l5_rules); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 744 | LIST_INIT(&p->req_add); |
| 745 | LIST_INIT(&p->rsp_add); |
| 746 | LIST_INIT(&p->listener_queue); |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 747 | LIST_INIT(&p->logsrvs); |
William Lallemand | 723b73a | 2012-02-08 16:37:49 +0100 | [diff] [blame] | 748 | LIST_INIT(&p->logformat); |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 749 | LIST_INIT(&p->logformat_sd); |
William Lallemand | a73203e | 2012-03-12 12:48:57 +0100 | [diff] [blame] | 750 | LIST_INIT(&p->format_unique_id); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 751 | LIST_INIT(&p->conf.bind); |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 752 | LIST_INIT(&p->conf.listeners); |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 753 | LIST_INIT(&p->conf.args.list); |
Baptiste Assmann | 5ecb77f | 2013-10-06 23:24:13 +0200 | [diff] [blame] | 754 | LIST_INIT(&p->tcpcheck_rules); |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 755 | LIST_INIT(&p->filter_configs); |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 756 | |
| 757 | /* Timeouts are defined as -1 */ |
| 758 | proxy_reset_timeouts(p); |
| 759 | p->tcp_rep.inspect_delay = TICK_ETERNITY; |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 760 | |
| 761 | /* initial uuid is unassigned (-1) */ |
| 762 | p->uuid = -1; |
Willy Tarreau | 237250c | 2011-07-29 01:49:03 +0200 | [diff] [blame] | 763 | } |
| 764 | |
Krzysztof Piotr Oledzki | c8b16fc | 2008-02-18 01:26:35 +0100 | [diff] [blame] | 765 | /* |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 766 | * This function creates all proxy sockets. It should be done very early, |
| 767 | * typically before privileges are dropped. The sockets will be registered |
| 768 | * 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] | 769 | * 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] | 770 | * bound. |
Willy Tarreau | 2ff7622 | 2007-04-09 19:29:56 +0200 | [diff] [blame] | 771 | * |
| 772 | * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL. |
| 773 | * Retryable errors will only be printed if <verbose> is not zero. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 774 | */ |
| 775 | int start_proxies(int verbose) |
| 776 | { |
| 777 | struct proxy *curproxy; |
| 778 | struct listener *listener; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 779 | int lerr, err = ERR_NONE; |
| 780 | int pxerr; |
| 781 | char msg[100]; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 782 | |
| 783 | for (curproxy = proxy; curproxy != NULL; curproxy = curproxy->next) { |
| 784 | if (curproxy->state != PR_STNEW) |
| 785 | continue; /* already initialized */ |
| 786 | |
| 787 | pxerr = 0; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 788 | list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) { |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 789 | if (listener->state != LI_ASSIGNED) |
| 790 | continue; /* already started */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 791 | |
Emeric Brun | cf20bf1 | 2010-10-22 16:06:11 +0200 | [diff] [blame] | 792 | lerr = listener->proto->bind(listener, msg, sizeof(msg)); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 793 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 794 | /* errors are reported if <verbose> is set or if they are fatal */ |
| 795 | if (verbose || (lerr & (ERR_FATAL | ERR_ABORT))) { |
| 796 | if (lerr & ERR_ALERT) |
| 797 | Alert("Starting %s %s: %s\n", |
| 798 | proxy_type_str(curproxy), curproxy->id, msg); |
| 799 | else if (lerr & ERR_WARN) |
| 800 | Warning("Starting %s %s: %s\n", |
| 801 | proxy_type_str(curproxy), curproxy->id, msg); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 802 | } |
| 803 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 804 | err |= lerr; |
| 805 | if (lerr & (ERR_ABORT | ERR_FATAL)) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 806 | pxerr |= 1; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 807 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 808 | } |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 809 | else if (lerr & ERR_CODE) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 810 | pxerr |= 1; |
| 811 | continue; |
| 812 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 813 | } |
| 814 | |
| 815 | if (!pxerr) { |
Willy Tarreau | 562515c | 2011-07-25 08:11:52 +0200 | [diff] [blame] | 816 | curproxy->state = PR_STREADY; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 817 | send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id); |
| 818 | } |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 819 | |
| 820 | if (err & ERR_ABORT) |
| 821 | break; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 822 | } |
| 823 | |
| 824 | return err; |
| 825 | } |
| 826 | |
| 827 | |
| 828 | /* |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 829 | * 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] | 830 | * 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] | 831 | * called as a task which is woken up upon stopping or when rate limiting must |
| 832 | * be enforced. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 833 | */ |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 834 | struct task *manage_proxy(struct task *t) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 835 | { |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 836 | struct proxy *p = t->context; |
| 837 | int next = TICK_ETERNITY; |
Willy Tarreau | 7958422 | 2009-03-06 09:18:27 +0100 | [diff] [blame] | 838 | unsigned int wait; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 839 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 840 | /* We should periodically try to enable listeners waiting for a |
| 841 | * global resource here. |
| 842 | */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 843 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 844 | /* first, let's check if we need to stop the proxy */ |
| 845 | if (unlikely(stopping && p->state != PR_STSTOPPED)) { |
| 846 | int t; |
| 847 | t = tick_remain(now_ms, p->stop_time); |
| 848 | if (t == 0) { |
| 849 | Warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n", |
| 850 | p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn); |
| 851 | send_log(p, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n", |
| 852 | p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn); |
| 853 | stop_proxy(p); |
| 854 | /* try to free more memory */ |
| 855 | pool_gc2(); |
| 856 | } |
| 857 | else { |
| 858 | next = tick_first(next, p->stop_time); |
| 859 | } |
| 860 | } |
Willy Tarreau | f3f8c70 | 2011-07-25 07:37:28 +0200 | [diff] [blame] | 861 | |
Willy Tarreau | 3a925c1 | 2013-09-04 17:54:01 +0200 | [diff] [blame] | 862 | /* If the proxy holds a stick table, we need to purge all unused |
| 863 | * entries. These are all the ones in the table with ref_cnt == 0 |
| 864 | * 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] | 865 | * entry attached to an existing stream waiting for a store will |
Willy Tarreau | 3a925c1 | 2013-09-04 17:54:01 +0200 | [diff] [blame] | 866 | * be in neither list. Any entry being dumped will have ref_cnt > 0. |
| 867 | * However we protect tables that are being synced to peers. |
| 868 | */ |
| 869 | if (unlikely(stopping && p->state == PR_STSTOPPED && p->table.current)) { |
| 870 | if (!p->table.syncing) { |
| 871 | stktable_trash_oldest(&p->table, p->table.current); |
| 872 | pool_gc2(); |
| 873 | } |
| 874 | if (p->table.current) { |
| 875 | /* some entries still remain, let's recheck in one second */ |
| 876 | next = tick_first(next, tick_add(now_ms, 1000)); |
| 877 | } |
| 878 | } |
| 879 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 880 | /* the rest below is just for frontends */ |
| 881 | if (!(p->cap & PR_CAP_FE)) |
| 882 | goto out; |
Willy Tarreau | f3f8c70 | 2011-07-25 07:37:28 +0200 | [diff] [blame] | 883 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 884 | /* check the various reasons we may find to block the frontend */ |
| 885 | if (unlikely(p->feconn >= p->maxconn)) { |
| 886 | if (p->state == PR_STREADY) |
| 887 | p->state = PR_STFULL; |
| 888 | goto out; |
| 889 | } |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 890 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 891 | /* OK we have no reason to block, so let's unblock if we were blocking */ |
| 892 | if (p->state == PR_STFULL) |
| 893 | p->state = PR_STREADY; |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 894 | |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 895 | if (p->fe_sps_lim && |
| 896 | (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) { |
| 897 | /* we're blocking because a limit was reached on the number of |
| 898 | * requests/s on the frontend. We want to re-check ASAP, which |
| 899 | * means in 1 ms before estimated expiration date, because the |
| 900 | * timer will have settled down. |
| 901 | */ |
| 902 | next = tick_first(next, tick_add(now_ms, wait)); |
| 903 | goto out; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 904 | } |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 905 | |
| 906 | /* The proxy is not limited so we can re-enable any waiting listener */ |
| 907 | if (!LIST_ISEMPTY(&p->listener_queue)) |
| 908 | dequeue_all_listeners(&p->listener_queue); |
| 909 | out: |
| 910 | t->expire = next; |
| 911 | task_queue(t); |
| 912 | return t; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 913 | } |
| 914 | |
| 915 | |
| 916 | /* |
| 917 | * this function disables health-check servers so that the process will quickly be ignored |
| 918 | * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace |
| 919 | * time will not be used since it would already not listen anymore to the socket. |
| 920 | */ |
| 921 | void soft_stop(void) |
| 922 | { |
| 923 | struct proxy *p; |
Willy Tarreau | bbe11b1 | 2011-07-25 11:16:24 +0200 | [diff] [blame] | 924 | struct peers *prs; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 925 | |
| 926 | stopping = 1; |
| 927 | p = proxy; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 928 | 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] | 929 | while (p) { |
| 930 | if (p->state != PR_STSTOPPED) { |
Willy Tarreau | f8fbcef | 2008-10-10 17:51:34 +0200 | [diff] [blame] | 931 | Warning("Stopping %s %s in %d ms.\n", proxy_cap_str(p->cap), p->id, p->grace); |
| 932 | 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] | 933 | p->stop_time = tick_add(now_ms, p->grace); |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 934 | |
Willy Tarreau | 20b7afb | 2015-09-28 16:35:04 +0200 | [diff] [blame] | 935 | /* Note: do not wake up stopped proxies' task nor their tables' |
| 936 | * tasks as these ones might point to already released entries. |
| 937 | */ |
| 938 | if (p->table.size && p->table.sync_task) |
| 939 | task_wakeup(p->table.sync_task, TASK_WOKEN_MSG); |
| 940 | |
| 941 | if (p->task) |
| 942 | task_wakeup(p->task, TASK_WOKEN_MSG); |
| 943 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 944 | p = p->next; |
| 945 | } |
Willy Tarreau | bbe11b1 | 2011-07-25 11:16:24 +0200 | [diff] [blame] | 946 | |
| 947 | prs = peers; |
| 948 | while (prs) { |
Willy Tarreau | 337a666 | 2015-09-28 16:27:44 +0200 | [diff] [blame] | 949 | if (prs->peers_fe) |
| 950 | stop_proxy(prs->peers_fe); |
Willy Tarreau | bbe11b1 | 2011-07-25 11:16:24 +0200 | [diff] [blame] | 951 | prs = prs->next; |
| 952 | } |
Willy Tarreau | d0807c3 | 2010-08-27 18:26:11 +0200 | [diff] [blame] | 953 | /* signal zero is used to broadcast the "stopping" event */ |
| 954 | signal_handler(0); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 955 | } |
| 956 | |
| 957 | |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 958 | /* Temporarily disables listening on all of the proxy's listeners. Upon |
| 959 | * success, the proxy enters the PR_PAUSED state. If disabling at least one |
| 960 | * 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] | 961 | * because we don't know how to resume from this. The function returns 0 |
| 962 | * if it fails, or non-zero on success. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 963 | */ |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 964 | int pause_proxy(struct proxy *p) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 965 | { |
| 966 | struct listener *l; |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 967 | |
| 968 | if (!(p->cap & PR_CAP_FE) || p->state == PR_STERROR || |
| 969 | p->state == PR_STSTOPPED || p->state == PR_STPAUSED) |
| 970 | return 1; |
| 971 | |
| 972 | Warning("Pausing %s %s.\n", proxy_cap_str(p->cap), p->id); |
| 973 | send_log(p, LOG_WARNING, "Pausing %s %s.\n", proxy_cap_str(p->cap), p->id); |
| 974 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 975 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 976 | if (!pause_listener(l)) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 977 | p->state = PR_STERROR; |
| 978 | } |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 979 | |
| 980 | if (p->state == PR_STERROR) { |
| 981 | Warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id); |
| 982 | send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id); |
| 983 | return 0; |
| 984 | } |
| 985 | |
| 986 | p->state = PR_STPAUSED; |
| 987 | return 1; |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 988 | } |
| 989 | |
| 990 | |
| 991 | /* |
| 992 | * This function completely stops a proxy and releases its listeners. It has |
| 993 | * to be called when going down in order to release the ports so that another |
| 994 | * process may bind to them. It must also be called on disabled proxies at the |
| 995 | * end of start-up. When all listeners are closed, the proxy is set to the |
| 996 | * PR_STSTOPPED state. |
| 997 | */ |
| 998 | void stop_proxy(struct proxy *p) |
| 999 | { |
| 1000 | struct listener *l; |
| 1001 | |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1002 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 1003 | unbind_listener(l); |
| 1004 | if (l->state >= LI_ASSIGNED) { |
| 1005 | delete_listener(l); |
| 1006 | listeners--; |
Willy Tarreau | af7ad00 | 2010-08-31 15:39:26 +0200 | [diff] [blame] | 1007 | jobs--; |
Willy Tarreau | da250db | 2008-10-12 12:07:48 +0200 | [diff] [blame] | 1008 | } |
| 1009 | } |
| 1010 | p->state = PR_STSTOPPED; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1011 | } |
| 1012 | |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1013 | /* This function resumes listening on the specified proxy. It scans all of its |
| 1014 | * listeners and tries to enable them all. If any of them fails, the proxy is |
| 1015 | * put back to the paused state. It returns 1 upon success, or zero if an error |
| 1016 | * is encountered. |
| 1017 | */ |
| 1018 | int resume_proxy(struct proxy *p) |
| 1019 | { |
| 1020 | struct listener *l; |
| 1021 | int fail; |
| 1022 | |
| 1023 | if (p->state != PR_STPAUSED) |
| 1024 | return 1; |
| 1025 | |
| 1026 | Warning("Enabling %s %s.\n", proxy_cap_str(p->cap), p->id); |
| 1027 | send_log(p, LOG_WARNING, "Enabling %s %s.\n", proxy_cap_str(p->cap), p->id); |
| 1028 | |
| 1029 | fail = 0; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 1030 | list_for_each_entry(l, &p->conf.listeners, by_fe) { |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1031 | if (!resume_listener(l)) { |
| 1032 | int port; |
| 1033 | |
| 1034 | port = get_host_port(&l->addr); |
| 1035 | if (port) { |
| 1036 | Warning("Port %d busy while trying to enable %s %s.\n", |
| 1037 | port, proxy_cap_str(p->cap), p->id); |
| 1038 | send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n", |
| 1039 | port, proxy_cap_str(p->cap), p->id); |
| 1040 | } |
| 1041 | else { |
| 1042 | Warning("Bind on socket %d busy while trying to enable %s %s.\n", |
| 1043 | l->luid, proxy_cap_str(p->cap), p->id); |
| 1044 | send_log(p, LOG_WARNING, "Bind on socket %d busy while trying to enable %s %s.\n", |
| 1045 | l->luid, proxy_cap_str(p->cap), p->id); |
| 1046 | } |
| 1047 | |
| 1048 | /* Another port might have been enabled. Let's stop everything. */ |
| 1049 | fail = 1; |
| 1050 | break; |
| 1051 | } |
| 1052 | } |
| 1053 | |
| 1054 | p->state = PR_STREADY; |
| 1055 | if (fail) { |
| 1056 | pause_proxy(p); |
| 1057 | return 0; |
| 1058 | } |
| 1059 | return 1; |
| 1060 | } |
| 1061 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1062 | /* |
| 1063 | * This function temporarily disables listening so that another new instance |
| 1064 | * can start listening. It is designed to be called upon reception of a |
| 1065 | * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop |
| 1066 | * the proxy, or a SIGTTIN can be sent to listen again. |
| 1067 | */ |
| 1068 | void pause_proxies(void) |
| 1069 | { |
| 1070 | int err; |
| 1071 | struct proxy *p; |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 1072 | struct peers *prs; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1073 | |
| 1074 | err = 0; |
| 1075 | p = proxy; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 1076 | 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] | 1077 | while (p) { |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1078 | err |= !pause_proxy(p); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1079 | p = p->next; |
| 1080 | } |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 1081 | |
| 1082 | prs = peers; |
| 1083 | while (prs) { |
Willy Tarreau | 337a666 | 2015-09-28 16:27:44 +0200 | [diff] [blame] | 1084 | if (prs->peers_fe) |
| 1085 | err |= !pause_proxy(prs->peers_fe); |
Willy Tarreau | ce8fe25 | 2011-09-07 19:14:57 +0200 | [diff] [blame] | 1086 | prs = prs->next; |
Emeric Brun | 5a8c0a9 | 2010-09-23 18:44:36 +0200 | [diff] [blame] | 1087 | } |
| 1088 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1089 | if (err) { |
| 1090 | Warning("Some proxies refused to pause, performing soft stop now.\n"); |
| 1091 | send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n"); |
| 1092 | soft_stop(); |
| 1093 | } |
| 1094 | } |
| 1095 | |
| 1096 | |
| 1097 | /* |
| 1098 | * This function reactivates listening. This can be used after a call to |
| 1099 | * sig_pause(), for example when a new instance has failed starting up. |
| 1100 | * It is designed to be called upon reception of a SIGTTIN. |
| 1101 | */ |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 1102 | void resume_proxies(void) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1103 | { |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1104 | int err; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1105 | struct proxy *p; |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1106 | struct peers *prs; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1107 | |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1108 | err = 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1109 | p = proxy; |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 1110 | 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] | 1111 | while (p) { |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1112 | err |= !resume_proxy(p); |
| 1113 | p = p->next; |
| 1114 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1115 | |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1116 | prs = peers; |
| 1117 | while (prs) { |
Willy Tarreau | 337a666 | 2015-09-28 16:27:44 +0200 | [diff] [blame] | 1118 | if (prs->peers_fe) |
| 1119 | err |= !resume_proxy(prs->peers_fe); |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1120 | prs = prs->next; |
| 1121 | } |
Willy Tarreau | be58c38 | 2011-07-24 18:28:10 +0200 | [diff] [blame] | 1122 | |
Willy Tarreau | c03ebbf | 2011-09-07 21:33:14 +0200 | [diff] [blame] | 1123 | if (err) { |
| 1124 | Warning("Some proxies refused to resume, a restart is probably needed to resume safe operations.\n"); |
| 1125 | 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] | 1126 | } |
| 1127 | } |
| 1128 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1129 | /* Set current stream's backend to <be>. Nothing is done if the |
| 1130 | * stream already had a backend assigned, which is indicated by |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1131 | * s->flags & SF_BE_ASSIGNED. |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1132 | * All flags, stats and counters which need be updated are updated. |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 1133 | * 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] | 1134 | */ |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1135 | int stream_set_backend(struct stream *s, struct proxy *be) |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1136 | { |
Willy Tarreau | e7dff02 | 2015-04-03 01:14:29 +0200 | [diff] [blame] | 1137 | if (s->flags & SF_BE_ASSIGNED) |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 1138 | return 1; |
Christopher Faulet | 4117904 | 2016-06-21 11:54:52 +0200 | [diff] [blame] | 1139 | |
| 1140 | if (flt_set_stream_backend(s, be) < 0) |
| 1141 | return 0; |
| 1142 | |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1143 | s->be = be; |
| 1144 | be->beconn++; |
Willy Tarreau | 7d0aaf3 | 2011-03-10 23:25:56 +0100 | [diff] [blame] | 1145 | if (be->beconn > be->be_counters.conn_max) |
| 1146 | be->be_counters.conn_max = be->beconn; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1147 | proxy_inc_be_ctr(be); |
| 1148 | |
Willy Tarreau | 87b0966 | 2015-04-03 00:22:06 +0200 | [diff] [blame] | 1149 | /* assign new parameters to the stream from the new backend */ |
Willy Tarreau | f27b5ea | 2009-10-03 22:01:18 +0200 | [diff] [blame] | 1150 | s->si[1].flags &= ~SI_FL_INDEP_STR; |
| 1151 | if (be->options2 & PR_O2_INDEPSTR) |
| 1152 | s->si[1].flags |= SI_FL_INDEP_STR; |
| 1153 | |
Willy Tarreau | 9fbe18e | 2015-05-01 22:42:08 +0200 | [diff] [blame] | 1154 | /* We want to enable the backend-specific analysers except those which |
| 1155 | * were already run as part of the frontend/listener. Note that it would |
| 1156 | * be more reliable to store the list of analysers that have been run, |
| 1157 | * but what we do here is OK for now. |
| 1158 | */ |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 1159 | 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] | 1160 | |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 1161 | /* If the target backend requires HTTP processing, we have to allocate |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1162 | * the HTTP transaction and hdr_idx if we did not have one. |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 1163 | */ |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1164 | if (unlikely(!s->txn && be->http_needed)) { |
| 1165 | if (unlikely(!http_alloc_txn(s))) |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 1166 | return 0; /* not enough memory */ |
Willy Tarreau | 39e4f62 | 2010-05-31 17:01:36 +0200 | [diff] [blame] | 1167 | |
| 1168 | /* and now initialize the HTTP transaction state */ |
| 1169 | http_init_txn(s); |
Willy Tarreau | 51aecc7 | 2009-07-12 09:47:04 +0200 | [diff] [blame] | 1170 | } |
| 1171 | |
Christopher Faulet | 309c641 | 2015-12-02 09:57:32 +0100 | [diff] [blame] | 1172 | /* Be sure to filter request headers if the backend is an HTTP proxy and |
| 1173 | * if there are filters attached to the stream. */ |
| 1174 | if (s->be->mode == PR_MODE_HTTP && HAS_FILTERS(s)) |
| 1175 | s->req.analysers |= AN_FLT_HTTP_HDRS; |
| 1176 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1177 | if (s->txn) { |
| 1178 | if (be->options2 & PR_O2_RSPBUG_OK) |
| 1179 | s->txn->rsp.err_pos = -1; /* let buggy responses pass */ |
Willy Tarreau | 4e21ff9 | 2014-09-30 18:44:22 +0200 | [diff] [blame] | 1180 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1181 | /* If we chain to an HTTP backend running a different HTTP mode, we |
| 1182 | * have to re-adjust the desired keep-alive/close mode to accommodate |
| 1183 | * both the frontend's and the backend's modes. |
| 1184 | */ |
Willy Tarreau | d0d8da9 | 2015-04-04 02:10:38 +0200 | [diff] [blame] | 1185 | if (strm_fe(s)->mode == PR_MODE_HTTP && be->mode == PR_MODE_HTTP && |
| 1186 | ((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] | 1187 | http_adjust_conn_mode(s, s->txn, &s->txn->req); |
Willy Tarreau | 80a92c0 | 2014-03-12 10:41:13 +0100 | [diff] [blame] | 1188 | |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1189 | /* If an LB algorithm needs to access some pre-parsed body contents, |
| 1190 | * we must not start to forward anything until the connection is |
| 1191 | * confirmed otherwise we'll lose the pointer to these data and |
| 1192 | * prevent the hash from being doable again after a redispatch. |
| 1193 | */ |
| 1194 | if (be->mode == PR_MODE_HTTP && |
| 1195 | (be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_HI | BE_LB_HASH_PRM)) |
| 1196 | s->txn->req.flags |= HTTP_MSGF_WAIT_CONN; |
Willy Tarreau | 9fbe18e | 2015-05-01 22:42:08 +0200 | [diff] [blame] | 1197 | |
| 1198 | /* we may request to parse a request body */ |
| 1199 | if ((be->options & PR_O_WREQ_BODY) && |
| 1200 | (s->txn->req.body_len || (s->txn->req.flags & HTTP_MSGF_TE_CHNK))) |
| 1201 | s->req.analysers |= AN_REQ_HTTP_BODY; |
Willy Tarreau | eee5b51 | 2015-04-03 23:46:31 +0200 | [diff] [blame] | 1202 | } |
| 1203 | |
| 1204 | s->flags |= SF_BE_ASSIGNED; |
Willy Tarreau | 96e3121 | 2011-05-30 18:10:30 +0200 | [diff] [blame] | 1205 | if (be->options2 & PR_O2_NODELAY) { |
Willy Tarreau | 22ec1ea | 2014-11-27 20:45:39 +0100 | [diff] [blame] | 1206 | s->req.flags |= CF_NEVER_WAIT; |
| 1207 | s->res.flags |= CF_NEVER_WAIT; |
Willy Tarreau | 96e3121 | 2011-05-30 18:10:30 +0200 | [diff] [blame] | 1208 | } |
| 1209 | |
Willy Tarreau | bedb9ba | 2009-07-12 08:27:39 +0200 | [diff] [blame] | 1210 | return 1; |
Willy Tarreau | 1d0dfb1 | 2009-07-07 15:10:31 +0200 | [diff] [blame] | 1211 | } |
| 1212 | |
Willy Tarreau | dc13c11 | 2013-06-21 23:16:39 +0200 | [diff] [blame] | 1213 | static struct cfg_kw_list cfg_kws = {ILH, { |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 1214 | { CFG_LISTEN, "timeout", proxy_parse_timeout }, |
| 1215 | { CFG_LISTEN, "clitimeout", proxy_parse_timeout }, |
| 1216 | { CFG_LISTEN, "contimeout", proxy_parse_timeout }, |
| 1217 | { CFG_LISTEN, "srvtimeout", proxy_parse_timeout }, |
Willy Tarreau | 3a7d207 | 2009-03-05 23:48:25 +0100 | [diff] [blame] | 1218 | { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit }, |
Willy Tarreau | c35362a | 2014-04-25 13:58:37 +0200 | [diff] [blame] | 1219 | { CFG_LISTEN, "max-keep-alive-queue", proxy_parse_max_ka_queue }, |
Thierry FOURNIER | a0a1b75 | 2015-05-26 17:44:32 +0200 | [diff] [blame] | 1220 | { CFG_LISTEN, "declare", proxy_parse_declare }, |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 1221 | { 0, NULL, NULL }, |
| 1222 | }}; |
| 1223 | |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 1224 | /* Expects to find a frontend named <arg> and returns it, otherwise displays various |
| 1225 | * adequate error messages and returns NULL. This function is designed to be used by |
| 1226 | * functions requiring a frontend on the CLI. |
| 1227 | */ |
| 1228 | struct proxy *cli_find_frontend(struct appctx *appctx, const char *arg) |
| 1229 | { |
| 1230 | struct proxy *px; |
| 1231 | |
| 1232 | if (!*arg) { |
| 1233 | appctx->ctx.cli.msg = "A frontend name is expected.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1234 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 1235 | return NULL; |
| 1236 | } |
| 1237 | |
| 1238 | px = proxy_fe_by_name(arg); |
| 1239 | if (!px) { |
| 1240 | appctx->ctx.cli.msg = "No such frontend.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1241 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 960f2cb | 2016-11-24 12:02:29 +0100 | [diff] [blame] | 1242 | return NULL; |
| 1243 | } |
| 1244 | return px; |
| 1245 | } |
| 1246 | |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1247 | /* parse a "show servers" CLI line, returns 0 if it wants to start the dump or |
| 1248 | * 1 if it stops immediately. |
| 1249 | */ |
| 1250 | static int cli_parse_show_servers(char **args, struct appctx *appctx, void *private) |
| 1251 | { |
| 1252 | appctx->ctx.server_state.iid = 0; |
| 1253 | appctx->ctx.server_state.px = NULL; |
| 1254 | appctx->ctx.server_state.sv = NULL; |
| 1255 | |
| 1256 | /* check if a backend name has been provided */ |
| 1257 | if (*args[3]) { |
| 1258 | /* read server state from local file */ |
| 1259 | appctx->ctx.server_state.px = proxy_be_by_name(args[3]); |
| 1260 | |
| 1261 | if (!appctx->ctx.server_state.px) { |
| 1262 | appctx->ctx.cli.msg = "Can't find backend.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1263 | appctx->st0 = CLI_ST_PRINT; |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1264 | return 1; |
| 1265 | } |
| 1266 | appctx->ctx.server_state.iid = appctx->ctx.server_state.px->uuid; |
| 1267 | } |
| 1268 | return 0; |
| 1269 | } |
| 1270 | |
| 1271 | /* dumps server state information into <buf> for all the servers found in <backend> |
| 1272 | * These information are all the parameters which may change during HAProxy runtime. |
| 1273 | * By default, we only export to the last known server state file format. |
| 1274 | * These information can be used at next startup to recover same level of server state. |
| 1275 | */ |
| 1276 | static int dump_servers_state(struct stream_interface *si, struct chunk *buf) |
| 1277 | { |
| 1278 | struct appctx *appctx = __objt_appctx(si->end); |
| 1279 | struct server *srv; |
| 1280 | char srv_addr[INET6_ADDRSTRLEN + 1]; |
| 1281 | time_t srv_time_since_last_change; |
| 1282 | int bk_f_forced_id, srv_f_forced_id; |
| 1283 | |
| 1284 | |
| 1285 | /* we don't want to report any state if the backend is not enabled on this process */ |
| 1286 | if (appctx->ctx.server_state.px->bind_proc && !(appctx->ctx.server_state.px->bind_proc & (1UL << (relative_pid - 1)))) |
| 1287 | return 1; |
| 1288 | |
| 1289 | if (!appctx->ctx.server_state.sv) |
| 1290 | appctx->ctx.server_state.sv = appctx->ctx.server_state.px->srv; |
| 1291 | |
| 1292 | for (; appctx->ctx.server_state.sv != NULL; appctx->ctx.server_state.sv = srv->next) { |
| 1293 | srv = appctx->ctx.server_state.sv; |
| 1294 | srv_addr[0] = '\0'; |
| 1295 | |
| 1296 | switch (srv->addr.ss_family) { |
| 1297 | case AF_INET: |
| 1298 | inet_ntop(srv->addr.ss_family, &((struct sockaddr_in *)&srv->addr)->sin_addr, |
| 1299 | srv_addr, INET_ADDRSTRLEN + 1); |
| 1300 | break; |
| 1301 | case AF_INET6: |
| 1302 | inet_ntop(srv->addr.ss_family, &((struct sockaddr_in6 *)&srv->addr)->sin6_addr, |
| 1303 | srv_addr, INET6_ADDRSTRLEN + 1); |
| 1304 | break; |
| 1305 | } |
| 1306 | srv_time_since_last_change = now.tv_sec - srv->last_change; |
| 1307 | bk_f_forced_id = appctx->ctx.server_state.px->options & PR_O_FORCED_ID ? 1 : 0; |
| 1308 | srv_f_forced_id = srv->flags & SRV_F_FORCED_ID ? 1 : 0; |
| 1309 | |
| 1310 | chunk_appendf(buf, |
| 1311 | "%d %s " |
| 1312 | "%d %s %s " |
| 1313 | "%d %d %d %d %ld " |
| 1314 | "%d %d %d %d %d " |
| 1315 | "%d %d" |
| 1316 | "\n", |
| 1317 | appctx->ctx.server_state.px->uuid, appctx->ctx.server_state.px->id, |
| 1318 | srv->puid, srv->id, srv_addr, |
| 1319 | srv->state, srv->admin, srv->uweight, srv->iweight, (long int)srv_time_since_last_change, |
| 1320 | srv->check.status, srv->check.result, srv->check.health, srv->check.state, srv->agent.state, |
| 1321 | bk_f_forced_id, srv_f_forced_id); |
| 1322 | if (bi_putchk(si_ic(si), &trash) == -1) { |
| 1323 | si_applet_cant_put(si); |
| 1324 | return 0; |
| 1325 | } |
| 1326 | } |
| 1327 | return 1; |
| 1328 | } |
| 1329 | |
| 1330 | /* Parses backend list or simply use backend name provided by the user to return |
| 1331 | * states of servers to stdout. |
| 1332 | */ |
| 1333 | static int cli_io_handler_servers_state(struct appctx *appctx) |
| 1334 | { |
| 1335 | struct stream_interface *si = appctx->owner; |
| 1336 | extern struct proxy *proxy; |
| 1337 | struct proxy *curproxy; |
| 1338 | |
| 1339 | chunk_reset(&trash); |
| 1340 | |
| 1341 | if (appctx->st2 == STAT_ST_INIT) { |
| 1342 | if (!appctx->ctx.server_state.px) |
| 1343 | appctx->ctx.server_state.px = proxy; |
| 1344 | appctx->st2 = STAT_ST_HEAD; |
| 1345 | } |
| 1346 | |
| 1347 | if (appctx->st2 == STAT_ST_HEAD) { |
| 1348 | chunk_printf(&trash, "%d\n# %s\n", SRV_STATE_FILE_VERSION, SRV_STATE_FILE_FIELD_NAMES); |
| 1349 | if (bi_putchk(si_ic(si), &trash) == -1) { |
| 1350 | si_applet_cant_put(si); |
| 1351 | return 0; |
| 1352 | } |
| 1353 | appctx->st2 = STAT_ST_INFO; |
| 1354 | } |
| 1355 | |
| 1356 | /* STAT_ST_INFO */ |
| 1357 | for (; appctx->ctx.server_state.px != NULL; appctx->ctx.server_state.px = curproxy->next) { |
| 1358 | curproxy = appctx->ctx.server_state.px; |
| 1359 | /* servers are only in backends */ |
| 1360 | if (curproxy->cap & PR_CAP_BE) { |
| 1361 | if (!dump_servers_state(si, &trash)) |
| 1362 | return 0; |
| 1363 | |
| 1364 | if (bi_putchk(si_ic(si), &trash) == -1) { |
| 1365 | si_applet_cant_put(si); |
| 1366 | return 0; |
| 1367 | } |
| 1368 | } |
| 1369 | /* only the selected proxy is dumped */ |
| 1370 | if (appctx->ctx.server_state.iid) |
| 1371 | break; |
| 1372 | } |
| 1373 | |
| 1374 | return 1; |
| 1375 | } |
| 1376 | |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1377 | static int cli_parse_show_backend(char **args, struct appctx *appctx, void *private) |
| 1378 | { |
| 1379 | appctx->ctx.be.px = NULL; |
| 1380 | return 0; |
| 1381 | } |
| 1382 | |
| 1383 | /* Parses backend list and simply report backend names */ |
| 1384 | static int cli_io_handler_show_backend(struct appctx *appctx) |
| 1385 | { |
| 1386 | extern struct proxy *proxy; |
| 1387 | struct stream_interface *si = appctx->owner; |
| 1388 | struct proxy *curproxy; |
| 1389 | |
| 1390 | chunk_reset(&trash); |
| 1391 | |
| 1392 | if (!appctx->ctx.be.px) { |
| 1393 | chunk_printf(&trash, "# name\n"); |
| 1394 | if (bi_putchk(si_ic(si), &trash) == -1) { |
| 1395 | si_applet_cant_put(si); |
| 1396 | return 0; |
| 1397 | } |
| 1398 | appctx->ctx.be.px = proxy; |
| 1399 | } |
| 1400 | |
| 1401 | for (; appctx->ctx.be.px != NULL; appctx->ctx.be.px = curproxy->next) { |
| 1402 | curproxy = appctx->ctx.be.px; |
| 1403 | |
| 1404 | /* looking for backends only */ |
| 1405 | if (!(curproxy->cap & PR_CAP_BE)) |
| 1406 | continue; |
| 1407 | |
| 1408 | /* we don't want to list a backend which is bound to this process */ |
| 1409 | if (curproxy->bind_proc && !(curproxy->bind_proc & (1UL << (relative_pid - 1)))) |
| 1410 | continue; |
| 1411 | |
| 1412 | chunk_appendf(&trash, "%s\n", curproxy->id); |
| 1413 | if (bi_putchk(si_ic(si), &trash) == -1) { |
| 1414 | si_applet_cant_put(si); |
| 1415 | return 0; |
| 1416 | } |
| 1417 | } |
| 1418 | |
| 1419 | return 1; |
| 1420 | } |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1421 | |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 1422 | /* Parses the "set maxconn frontend" directive, it always returns 1 */ |
| 1423 | static int cli_parse_set_maxconn_frontend(char **args, struct appctx *appctx, void *private) |
| 1424 | { |
| 1425 | struct proxy *px; |
| 1426 | struct listener *l; |
| 1427 | int v; |
| 1428 | |
| 1429 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1430 | return 1; |
| 1431 | |
| 1432 | px = cli_find_frontend(appctx, args[3]); |
| 1433 | if (!px) |
| 1434 | return 1; |
| 1435 | |
| 1436 | if (!*args[4]) { |
| 1437 | appctx->ctx.cli.msg = "Integer value expected.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1438 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 1439 | return 1; |
| 1440 | } |
| 1441 | |
| 1442 | v = atoi(args[4]); |
| 1443 | if (v < 0) { |
| 1444 | appctx->ctx.cli.msg = "Value out of range.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1445 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | c429a1f | 2016-11-23 16:22:04 +0100 | [diff] [blame] | 1446 | return 1; |
| 1447 | } |
| 1448 | |
| 1449 | /* OK, the value is fine, so we assign it to the proxy and to all of |
| 1450 | * its listeners. The blocked ones will be dequeued. |
| 1451 | */ |
| 1452 | px->maxconn = v; |
| 1453 | list_for_each_entry(l, &px->conf.listeners, by_fe) { |
| 1454 | l->maxconn = v; |
| 1455 | if (l->state == LI_FULL) |
| 1456 | resume_listener(l); |
| 1457 | } |
| 1458 | |
| 1459 | if (px->maxconn > px->feconn && !LIST_ISEMPTY(&px->listener_queue)) |
| 1460 | dequeue_all_listeners(&px->listener_queue); |
| 1461 | |
| 1462 | return 1; |
| 1463 | } |
| 1464 | |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 1465 | /* Parses the "shutdown frontend" directive, it always returns 1 */ |
| 1466 | static int cli_parse_shutdown_frontend(char **args, struct appctx *appctx, void *private) |
| 1467 | { |
| 1468 | struct proxy *px; |
| 1469 | |
| 1470 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1471 | return 1; |
| 1472 | |
| 1473 | px = cli_find_frontend(appctx, args[2]); |
| 1474 | if (!px) |
| 1475 | return 1; |
| 1476 | |
| 1477 | if (px->state == PR_STSTOPPED) { |
| 1478 | appctx->ctx.cli.msg = "Frontend was already shut down.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1479 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 1480 | return 1; |
| 1481 | } |
| 1482 | |
| 1483 | Warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n", |
| 1484 | px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn); |
| 1485 | send_log(px, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n", |
| 1486 | px->id, px->fe_counters.cum_conn, px->be_counters.cum_conn); |
| 1487 | stop_proxy(px); |
| 1488 | return 1; |
| 1489 | } |
| 1490 | |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 1491 | /* Parses the "disable frontend" directive, it always returns 1 */ |
| 1492 | static int cli_parse_disable_frontend(char **args, struct appctx *appctx, void *private) |
| 1493 | { |
| 1494 | struct proxy *px; |
| 1495 | |
| 1496 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1497 | return 1; |
| 1498 | |
| 1499 | px = cli_find_frontend(appctx, args[2]); |
| 1500 | if (!px) |
| 1501 | return 1; |
| 1502 | |
| 1503 | if (px->state == PR_STSTOPPED) { |
| 1504 | appctx->ctx.cli.msg = "Frontend was previously shut down, cannot disable.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1505 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 1506 | return 1; |
| 1507 | } |
| 1508 | |
| 1509 | if (px->state == PR_STPAUSED) { |
| 1510 | appctx->ctx.cli.msg = "Frontend is already disabled.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1511 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 1512 | return 1; |
| 1513 | } |
| 1514 | |
| 1515 | if (!pause_proxy(px)) { |
| 1516 | 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] | 1517 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 1518 | return 1; |
| 1519 | } |
| 1520 | return 1; |
| 1521 | } |
| 1522 | |
| 1523 | /* Parses the "enable frontend" directive, it always returns 1 */ |
| 1524 | static int cli_parse_enable_frontend(char **args, struct appctx *appctx, void *private) |
| 1525 | { |
| 1526 | struct proxy *px; |
| 1527 | |
| 1528 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1529 | return 1; |
| 1530 | |
| 1531 | px = cli_find_frontend(appctx, args[2]); |
| 1532 | if (!px) |
| 1533 | return 1; |
| 1534 | |
| 1535 | if (px->state == PR_STSTOPPED) { |
| 1536 | appctx->ctx.cli.msg = "Frontend was previously shut down, cannot enable.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1537 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 1538 | return 1; |
| 1539 | } |
| 1540 | |
| 1541 | if (px->state != PR_STPAUSED) { |
| 1542 | appctx->ctx.cli.msg = "Frontend is already enabled.\n"; |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1543 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 1544 | return 1; |
| 1545 | } |
| 1546 | |
| 1547 | if (!resume_proxy(px)) { |
| 1548 | 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] | 1549 | appctx->st0 = CLI_ST_PRINT; |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 1550 | return 1; |
| 1551 | } |
| 1552 | return 1; |
| 1553 | } |
| 1554 | |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1555 | /* register cli keywords */ |
| 1556 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | 15b9e68 | 2016-11-24 11:55:28 +0100 | [diff] [blame] | 1557 | { { "disable", "frontend", NULL }, "disable frontend : temporarily disable specific frontend", cli_parse_disable_frontend, NULL, NULL }, |
| 1558 | { { "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] | 1559 | { { "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] | 1560 | { { "show","servers", "state", NULL }, "show servers state [id]: dump volatile server information (for backend <id>)", cli_parse_show_servers, cli_io_handler_servers_state }, |
William Lallemand | 933efcd | 2016-11-22 12:34:16 +0100 | [diff] [blame] | 1561 | { { "show", "backend", NULL }, "show backend : list backends in the current running config", cli_parse_show_backend, cli_io_handler_show_backend }, |
Willy Tarreau | 5212d7f | 2016-11-24 11:13:06 +0100 | [diff] [blame] | 1562 | { { "shutdown", "frontend", NULL }, "shutdown frontend : stop a specific frontend", cli_parse_shutdown_frontend, NULL, NULL }, |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1563 | {{},} |
| 1564 | }}; |
| 1565 | |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 1566 | __attribute__((constructor)) |
| 1567 | static void __proxy_module_init(void) |
| 1568 | { |
| 1569 | cfg_register_keywords(&cfg_kws); |
William Lallemand | a6c5f33 | 2016-11-19 02:25:36 +0100 | [diff] [blame] | 1570 | cli_register_kw(&cli_kws); |
Willy Tarreau | 9de1bbd | 2008-07-09 20:34:27 +0200 | [diff] [blame] | 1571 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1572 | |
| 1573 | /* |
| 1574 | * Local variables: |
| 1575 | * c-indent-level: 8 |
| 1576 | * c-basic-offset: 8 |
| 1577 | * End: |
| 1578 | */ |