blob: b6d870b1e815cd508165d2b56245d3b66ee1da2b [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Proxy variables and functions.
3 *
Willy Tarreau3a7d2072009-03-05 23:48:25 +01004 * Copyright 2000-2009 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
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 Tarreauc8f24f82007-11-30 18:38:35 +010015#include <string.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020016#include <sys/types.h>
17#include <sys/socket.h>
18#include <sys/stat.h>
19
Willy Tarreau2dd0d472006-06-29 17:53:05 +020020#include <common/defaults.h>
Willy Tarreau9de1bbd2008-07-09 20:34:27 +020021#include <common/cfgparse.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020022#include <common/compat.h>
Willy Tarreaue3ba5f02006-06-29 18:54:54 +020023#include <common/config.h>
Willy Tarreaud740bab2007-10-28 11:14:07 +010024#include <common/errors.h>
Willy Tarreau4d2d0982007-05-14 00:39:29 +020025#include <common/memory.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020026#include <common/time.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020027
Willy Tarreaucfd837f2014-03-15 07:43:51 +010028#include <eb32tree.h>
29#include <ebistree.h>
30
Willy Tarreaubaaee002006-06-26 02:48:02 +020031#include <types/global.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010032#include <types/obj_type.h>
Emeric Brun5a8c0a92010-09-23 18:44:36 +020033#include <types/peers.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020034
Alexandre Cassen87ea5482007-10-11 20:48:58 +020035#include <proto/backend.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036#include <proto/fd.h>
Willy Tarreau51aecc72009-07-12 09:47:04 +020037#include <proto/hdr_idx.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020038#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020039#include <proto/log.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010040#include <proto/proto_tcp.h>
Willy Tarreau39e4f622010-05-31 17:01:36 +020041#include <proto/proto_http.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020042#include <proto/proxy.h>
Willy Tarreaud0807c32010-08-27 18:26:11 +020043#include <proto/signal.h>
Willy Tarreaufb0afa72015-04-03 14:46:27 +020044#include <proto/stream.h>
Emeric Brun5a8c0a92010-09-23 18:44:36 +020045#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020046
47
Willy Tarreau918ff602011-07-25 16:33:49 +020048int listeners; /* # of proxy listeners, set by cfgparse */
Willy Tarreaubaaee002006-06-26 02:48:02 +020049struct proxy *proxy = NULL; /* list of all existing proxies */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +020050struct eb_root used_proxy_id = EB_ROOT; /* list of proxy IDs in use */
Willy Tarreauf79d9502014-03-15 07:22:35 +010051struct eb_root proxy_by_name = EB_ROOT; /* tree of proxies sorted by name */
Willy Tarreau10479e42010-12-12 14:00:34 +010052unsigned int error_snapshot_id = 0; /* global ID assigned to each error then incremented */
Willy Tarreaubaaee002006-06-26 02:48:02 +020053
Willy Tarreau977b8e42006-12-29 14:19:17 +010054/*
Willy Tarreau816eb542007-11-04 07:04:43 +010055 * This function returns a string containing a name describing capabilities to
56 * report comprehensible error messages. Specifically, it will return the words
57 * "frontend", "backend", "ruleset" when appropriate, or "proxy" for all other
58 * cases including the proxies declared in "listen" mode.
Willy Tarreau977b8e42006-12-29 14:19:17 +010059 */
Willy Tarreau816eb542007-11-04 07:04:43 +010060const char *proxy_cap_str(int cap)
Willy Tarreau977b8e42006-12-29 14:19:17 +010061{
Willy Tarreau816eb542007-11-04 07:04:43 +010062 if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) {
63 if (cap & PR_CAP_FE)
64 return "frontend";
65 else if (cap & PR_CAP_BE)
66 return "backend";
67 else if (cap & PR_CAP_RS)
68 return "ruleset";
69 }
70 return "proxy";
Willy Tarreau977b8e42006-12-29 14:19:17 +010071}
72
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +010073/*
74 * This function returns a string containing the mode of the proxy in a format
75 * suitable for error messages.
76 */
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +010077const char *proxy_mode_str(int mode) {
78
79 if (mode == PR_MODE_TCP)
80 return "tcp";
81 else if (mode == PR_MODE_HTTP)
82 return "http";
83 else if (mode == PR_MODE_HEALTH)
84 return "health";
85 else
86 return "unknown";
87}
88
Willy Tarreauf3950172009-10-10 18:35:51 +020089/*
90 * This function scans the list of backends and servers to retrieve the first
91 * backend and the first server with the given names, and sets them in both
92 * parameters. It returns zero if either is not found, or non-zero and sets
93 * the ones it did not found to NULL. If a NULL pointer is passed for the
94 * backend, only the pointer to the server will be updated.
95 */
96int get_backend_server(const char *bk_name, const char *sv_name,
97 struct proxy **bk, struct server **sv)
98{
99 struct proxy *p;
100 struct server *s;
Willy Tarreau7ecc4202014-03-15 07:57:11 +0100101 int sid;
Willy Tarreauf3950172009-10-10 18:35:51 +0200102
103 *sv = NULL;
104
Willy Tarreau050536d2012-10-04 08:47:34 +0200105 sid = -1;
Willy Tarreaucfeaa472009-10-10 22:33:08 +0200106 if (*sv_name == '#')
107 sid = atoi(sv_name + 1);
108
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200109 p = proxy_be_by_name(bk_name);
Willy Tarreauf3950172009-10-10 18:35:51 +0200110 if (bk)
111 *bk = p;
112 if (!p)
113 return 0;
114
115 for (s = p->srv; s; s = s->next)
Willy Tarreau4055a102012-11-15 00:15:18 +0100116 if ((sid >= 0 && s->puid == sid) ||
117 (sid < 0 && strcmp(s->id, sv_name) == 0))
Willy Tarreauf3950172009-10-10 18:35:51 +0200118 break;
119 *sv = s;
120 if (!s)
121 return 0;
122 return 1;
123}
124
Willy Tarreaue219db72007-12-03 01:30:13 +0100125/* This function parses a "timeout" statement in a proxy section. It returns
126 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200127 * return zero, it will write an error or warning message into a preallocated
128 * buffer returned at <err>. The trailing is not be written. The function must
129 * be called with <args> pointing to the first command line word, with <proxy>
130 * pointing to the proxy being parsed, and <defpx> to the default proxy or NULL.
131 * As a special case for compatibility with older configs, it also accepts
132 * "{cli|srv|con}timeout" in args[0].
Willy Tarreaue219db72007-12-03 01:30:13 +0100133 */
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200134static int proxy_parse_timeout(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200135 struct proxy *defpx, const char *file, int line,
136 char **err)
Willy Tarreaue219db72007-12-03 01:30:13 +0100137{
138 unsigned timeout;
139 int retval, cap;
140 const char *res, *name;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200141 int *tv = NULL;
142 int *td = NULL;
Willy Tarreaued446492014-04-28 22:56:38 +0200143 int warn = 0;
Willy Tarreaue219db72007-12-03 01:30:13 +0100144
145 retval = 0;
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200146
147 /* simply skip "timeout" but remain compatible with old form */
148 if (strcmp(args[0], "timeout") == 0)
149 args++;
150
Willy Tarreaue219db72007-12-03 01:30:13 +0100151 name = args[0];
Willy Tarreaued446492014-04-28 22:56:38 +0200152 if (!strcmp(args[0], "client") || (!strcmp(args[0], "clitimeout") && (warn = WARN_CLITO_DEPRECATED))) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100153 name = "client";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100154 tv = &proxy->timeout.client;
155 td = &defpx->timeout.client;
Willy Tarreaue219db72007-12-03 01:30:13 +0100156 cap = PR_CAP_FE;
157 } else if (!strcmp(args[0], "tarpit")) {
158 tv = &proxy->timeout.tarpit;
159 td = &defpx->timeout.tarpit;
Willy Tarreau51c9bde2008-01-06 13:40:03 +0100160 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreaub16a5742010-01-10 14:46:16 +0100161 } else if (!strcmp(args[0], "http-keep-alive")) {
162 tv = &proxy->timeout.httpka;
163 td = &defpx->timeout.httpka;
164 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau036fae02008-01-06 13:24:40 +0100165 } else if (!strcmp(args[0], "http-request")) {
166 tv = &proxy->timeout.httpreq;
167 td = &defpx->timeout.httpreq;
Willy Tarreaucd7afc02009-07-12 10:03:17 +0200168 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreaued446492014-04-28 22:56:38 +0200169 } else if (!strcmp(args[0], "server") || (!strcmp(args[0], "srvtimeout") && (warn = WARN_SRVTO_DEPRECATED))) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100170 name = "server";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100171 tv = &proxy->timeout.server;
172 td = &defpx->timeout.server;
Willy Tarreaue219db72007-12-03 01:30:13 +0100173 cap = PR_CAP_BE;
Willy Tarreaued446492014-04-28 22:56:38 +0200174 } else if (!strcmp(args[0], "connect") || (!strcmp(args[0], "contimeout") && (warn = WARN_CONTO_DEPRECATED))) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100175 name = "connect";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100176 tv = &proxy->timeout.connect;
177 td = &defpx->timeout.connect;
Willy Tarreaue219db72007-12-03 01:30:13 +0100178 cap = PR_CAP_BE;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100179 } else if (!strcmp(args[0], "check")) {
180 tv = &proxy->timeout.check;
181 td = &defpx->timeout.check;
182 cap = PR_CAP_BE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100183 } else if (!strcmp(args[0], "queue")) {
184 tv = &proxy->timeout.queue;
185 td = &defpx->timeout.queue;
186 cap = PR_CAP_BE;
Willy Tarreauce887fd2012-05-12 12:50:00 +0200187 } else if (!strcmp(args[0], "tunnel")) {
188 tv = &proxy->timeout.tunnel;
189 td = &defpx->timeout.tunnel;
190 cap = PR_CAP_BE;
Willy Tarreau05cdd962014-05-10 14:30:07 +0200191 } else if (!strcmp(args[0], "client-fin")) {
192 tv = &proxy->timeout.clientfin;
193 td = &defpx->timeout.clientfin;
194 cap = PR_CAP_FE;
195 } else if (!strcmp(args[0], "server-fin")) {
196 tv = &proxy->timeout.serverfin;
197 td = &defpx->timeout.serverfin;
198 cap = PR_CAP_BE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100199 } else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200200 memprintf(err,
201 "'timeout' supports 'client', 'server', 'connect', 'check', "
Willy Tarreau05cdd962014-05-10 14:30:07 +0200202 "'queue', 'http-keep-alive', 'http-request', 'tunnel', 'tarpit', "
203 "'client-fin' and 'server-fin' (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200204 args[0]);
Willy Tarreaue219db72007-12-03 01:30:13 +0100205 return -1;
206 }
207
208 if (*args[1] == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200209 memprintf(err, "'timeout %s' expects an integer value (in milliseconds)", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100210 return -1;
211 }
212
213 res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
214 if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200215 memprintf(err, "unexpected character '%c' in 'timeout %s'", *res, name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100216 return -1;
217 }
218
219 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200220 memprintf(err, "'timeout %s' will be ignored because %s '%s' has no %s capability",
221 name, proxy_type_str(proxy), proxy->id,
222 (cap & PR_CAP_BE) ? "backend" : "frontend");
Willy Tarreaue219db72007-12-03 01:30:13 +0100223 retval = 1;
224 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200225 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200226 memprintf(err, "overwriting 'timeout %s' which was already specified", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100227 retval = 1;
228 }
Willy Tarreaued446492014-04-28 22:56:38 +0200229 else if (warn) {
230 if (!already_warned(warn)) {
231 memprintf(err, "the '%s' directive is now deprecated in favor of 'timeout %s', and will not be supported in future versions.",
232 args[0], name);
233 retval = 1;
234 }
235 }
Willy Tarreaue219db72007-12-03 01:30:13 +0100236
Willy Tarreaufac5b592014-05-22 08:24:46 +0200237 if (*args[2] != 0) {
238 memprintf(err, "'timeout %s' : unexpected extra argument '%s' after value '%s'.", name, args[2], args[1]);
239 retval = -1;
240 }
241
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200242 *tv = MS_TO_TICKS(timeout);
Willy Tarreaue219db72007-12-03 01:30:13 +0100243 return retval;
244}
245
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100246/* This function parses a "rate-limit" statement in a proxy section. It returns
247 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200248 * return zero, it will write an error or warning message into a preallocated
249 * buffer returned at <err>. The function must be called with <args> pointing
250 * to the first command line word, with <proxy> pointing to the proxy being
251 * parsed, and <defpx> to the default proxy or NULL.
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100252 */
253static int proxy_parse_rate_limit(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200254 struct proxy *defpx, const char *file, int line,
255 char **err)
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100256{
257 int retval, cap;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200258 char *res;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100259 unsigned int *tv = NULL;
260 unsigned int *td = NULL;
261 unsigned int val;
262
263 retval = 0;
264
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200265 if (strcmp(args[1], "sessions") == 0) {
Willy Tarreau13a34bd2009-05-10 18:52:49 +0200266 tv = &proxy->fe_sps_lim;
267 td = &defpx->fe_sps_lim;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100268 cap = PR_CAP_FE;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200269 }
270 else {
271 memprintf(err, "'%s' only supports 'sessions' (got '%s')", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100272 return -1;
273 }
274
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200275 if (*args[2] == 0) {
276 memprintf(err, "'%s %s' expects expects an integer value (in sessions/second)", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100277 return -1;
278 }
279
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200280 val = strtoul(args[2], &res, 0);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100281 if (*res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200282 memprintf(err, "'%s %s' : unexpected character '%c' in integer value '%s'", args[0], args[1], *res, args[2]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100283 return -1;
284 }
285
286 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200287 memprintf(err, "%s %s will be ignored because %s '%s' has no %s capability",
288 args[0], args[1], proxy_type_str(proxy), proxy->id,
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100289 (cap & PR_CAP_BE) ? "backend" : "frontend");
290 retval = 1;
291 }
292 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200293 memprintf(err, "overwriting %s %s which was already specified", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100294 retval = 1;
295 }
296
297 *tv = val;
298 return retval;
299}
300
Willy Tarreauc35362a2014-04-25 13:58:37 +0200301/* This function parses a "max-keep-alive-queue" statement in a proxy section.
302 * It returns -1 if there is any error, 1 for a warning, otherwise zero. If it
303 * does not return zero, it will write an error or warning message into a
304 * preallocated buffer returned at <err>. The function must be called with
305 * <args> pointing to the first command line word, with <proxy> pointing to
306 * the proxy being parsed, and <defpx> to the default proxy or NULL.
307 */
308static int proxy_parse_max_ka_queue(char **args, int section, struct proxy *proxy,
309 struct proxy *defpx, const char *file, int line,
310 char **err)
311{
312 int retval;
313 char *res;
314 unsigned int val;
315
316 retval = 0;
317
318 if (*args[1] == 0) {
319 memprintf(err, "'%s' expects expects an integer value (or -1 to disable)", args[0]);
320 return -1;
321 }
322
323 val = strtol(args[1], &res, 0);
324 if (*res) {
325 memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]);
326 return -1;
327 }
328
329 if (!(proxy->cap & PR_CAP_BE)) {
330 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
331 args[0], proxy_type_str(proxy), proxy->id);
332 retval = 1;
333 }
334
335 /* we store <val+1> so that a user-facing value of -1 is stored as zero (default) */
336 proxy->max_ka_queue = val + 1;
337 return retval;
338}
339
Willy Tarreauf79d9502014-03-15 07:22:35 +0100340/* This function inserts proxy <px> into the tree of known proxies. The proxy's
341 * name is used as the storing key so it must already have been initialized.
342 */
343void proxy_store_name(struct proxy *px)
344{
345 px->conf.by_name.key = px->id;
346 ebis_insert(&proxy_by_name, &px->conf.by_name);
347}
348
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200349/* Returns a pointer to the first proxy matching capabilities <cap> and id
350 * <id>. NULL is returned if no match is found. If <table> is non-zero, it
351 * only considers proxies having a table.
Willy Tarreaubc216c42011-08-02 11:25:54 +0200352 */
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200353struct proxy *proxy_find_by_id(int id, int cap, int table)
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200354{
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200355 struct eb32_node *n;
Willy Tarreaubc216c42011-08-02 11:25:54 +0200356
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200357 for (n = eb32_lookup(&used_proxy_id, id); n; n = eb32_next(n)) {
358 struct proxy *px = container_of(n, struct proxy, conf.id);
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100359
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200360 if (px->uuid != id)
361 break;
Alex Williams96532db2009-11-01 21:27:13 -0500362
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200363 if ((px->cap & cap) != cap)
364 continue;
Alex Williams96532db2009-11-01 21:27:13 -0500365
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200366 if (table && !px->table.size)
367 continue;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100368
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200369 return px;
370 }
371 return NULL;
372}
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100373
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200374/* Returns a pointer to the first proxy matching either name <name>, or id
375 * <name> if <name> begins with a '#'. NULL is returned if no match is found.
376 * If <table> is non-zero, it only considers proxies having a table.
377 */
378struct proxy *proxy_find_by_name(const char *name, int cap, int table)
379{
380 struct proxy *curproxy;
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200381
Willy Tarreau3c56a7d2015-05-26 15:25:32 +0200382 if (*name == '#') {
383 curproxy = proxy_find_by_id(atoi(name + 1), cap, table);
384 if (curproxy)
Willy Tarreauc739aa82015-05-26 11:35:41 +0200385 return curproxy;
Alex Williams96532db2009-11-01 21:27:13 -0500386 }
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100387 else {
388 struct ebpt_node *node;
389
390 for (node = ebis_lookup(&proxy_by_name, name); node; node = ebpt_next(node)) {
391 curproxy = container_of(node, struct proxy, conf.by_name);
Alex Williams96532db2009-11-01 21:27:13 -0500392
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100393 if (strcmp(curproxy->id, name) != 0)
394 break;
395
396 if ((curproxy->cap & cap) != cap)
397 continue;
398
Willy Tarreau9e0bb102015-05-26 11:24:42 +0200399 if (table && !curproxy->table.size)
400 continue;
401
Willy Tarreauc739aa82015-05-26 11:35:41 +0200402 return curproxy;
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100403 }
404 }
Willy Tarreauc739aa82015-05-26 11:35:41 +0200405 return NULL;
Alex Williams96532db2009-11-01 21:27:13 -0500406}
407
Willy Tarreaueb3e3482015-05-27 16:46:26 +0200408/* Finds the best match for a proxy with capabilities <cap>, name <name> and id
409 * <id>. At most one of <id> or <name> may be different provided that <cap> is
410 * valid. Either <id> or <name> may be left unspecified (0). The purpose is to
411 * find a proxy based on some information from a previous configuration, across
412 * reloads or during information exchange between peers.
413 *
414 * Names are looked up first if present, then IDs are compared if present. In
415 * case of an inexact match whatever is forced in the configuration has
416 * precedence in the following order :
417 * - 1) forced ID (proves a renaming / change of proxy type)
418 * - 2) proxy name+type (may indicate a move if ID differs)
419 * - 3) automatic ID+type (may indicate a renaming)
420 *
421 * Depending on what is found, we can end up in the following situations :
422 *
423 * name id cap | possible causes
424 * -------------+-----------------
425 * -- -- -- | nothing found
426 * -- -- ok | nothing found
427 * -- ok -- | proxy deleted, ID points to next one
428 * -- ok ok | proxy renamed, or deleted with ID pointing to next one
429 * ok -- -- | proxy deleted, but other half with same name still here (before)
430 * ok -- ok | proxy's ID changed (proxy moved in the config file)
431 * ok ok -- | proxy deleted, but other half with same name still here (after)
432 * ok ok ok | perfect match
433 *
434 * Upon return if <diff> is not NULL, it is zeroed then filled with up to 3 bits :
435 * - 0x01 : proxy was found but ID differs (and ID was not zero)
436 * - 0x02 : proxy was found by ID but name differs (and name was not NULL)
437 * - 0x04 : a proxy of different type was found with the same name and/or id
438 *
439 * Only a valid proxy is returned. If capabilities do not match, NULL is
440 * returned. The caller can check <diff> to report detailed warnings / errors,
441 * and decide whether or not to use what was found.
442 */
443struct proxy *proxy_find_best_match(int cap, const char *name, int id, int *diff)
444{
445 struct proxy *byname;
446 struct proxy *byid;
447
448 if (!name && !id)
449 return NULL;
450
451 if (diff)
452 *diff = 0;
453
454 byname = byid = NULL;
455
456 if (name) {
457 byname = proxy_find_by_name(name, cap, 0);
458 if (byname && (!id || byname->uuid == id))
459 return byname;
460 }
461
462 /* remaining possiblities :
463 * - name not set
464 * - name set but not found
465 * - name found, but ID doesn't match.
466 */
467 if (id) {
468 byid = proxy_find_by_id(id, cap, 0);
469 if (byid) {
470 if (byname) {
471 /* id+type found, name+type found, but not all 3.
472 * ID wins only if forced, otherwise name wins.
473 */
474 if (byid->options & PR_O_FORCED_ID) {
475 if (diff)
476 *diff |= 2;
477 return byid;
478 }
479 else {
480 if (diff)
481 *diff |= 1;
482 return byname;
483 }
484 }
485
486 /* remaining possiblities :
487 * - name not set
488 * - name set but not found
489 */
490 if (name && diff)
491 *diff |= 2;
492 return byid;
493 }
494
495 /* ID not found */
496 if (byname) {
497 if (diff)
498 *diff |= 1;
499 return byname;
500 }
501 }
502
503 /* All remaining possiblities will lead to NULL. If we can report more
504 * detailed information to the caller about changed types and/or name,
505 * we'll do it. For example, we could detect that "listen foo" was
506 * split into "frontend foo_ft" and "backend foo_bk" if IDs are forced.
507 * - name not set, ID not found
508 * - name not found, ID not set
509 * - name not found, ID not found
510 */
511 if (!diff)
512 return NULL;
513
514 if (name) {
515 byname = proxy_find_by_name(name, 0, 0);
516 if (byname && (!id || byname->uuid == id))
517 *diff |= 4;
518 }
519
520 if (id) {
521 byid = proxy_find_by_id(id, 0, 0);
522 if (byid) {
523 if (!name)
524 *diff |= 4; /* only type changed */
525 else if (byid->options & PR_O_FORCED_ID)
526 *diff |= 2 | 4; /* name and type changed */
527 /* otherwise it's a different proxy that was returned */
528 }
529 }
530 return NULL;
531}
532
Willy Tarreaubaaee002006-06-26 02:48:02 +0200533/*
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100534 * This function finds a server with matching name within selected proxy.
535 * It also checks if there are more matching servers with
536 * requested name as this often leads into unexpected situations.
537 */
538
539struct server *findserver(const struct proxy *px, const char *name) {
540
541 struct server *cursrv, *target = NULL;
542
543 if (!px)
544 return NULL;
545
546 for (cursrv = px->srv; cursrv; cursrv = cursrv->next) {
547 if (strcmp(cursrv->id, name))
548 continue;
549
550 if (!target) {
551 target = cursrv;
552 continue;
553 }
554
Cyril Bonté0bb519e2012-04-04 12:57:19 +0200555 Alert("Refusing to use duplicated server '%s' found in proxy: %s!\n",
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100556 name, px->id);
557
558 return NULL;
559 }
560
561 return target;
562}
563
Willy Tarreauff01a212009-03-15 13:46:16 +0100564/* This function checks that the designated proxy has no http directives
565 * enabled. It will output a warning if there are, and will fix some of them.
566 * It returns the number of fatal errors encountered. This should be called
567 * at the end of the configuration parsing if the proxy is not in http mode.
568 * The <file> argument is used to construct the error message.
569 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200570int proxy_cfg_ensure_no_http(struct proxy *curproxy)
Willy Tarreauff01a212009-03-15 13:46:16 +0100571{
572 if (curproxy->cookie_name != NULL) {
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200573 Warning("config : cookie will be ignored for %s '%s' (needs 'mode http').\n",
574 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100575 }
576 if (curproxy->rsp_exp != NULL) {
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200577 Warning("config : server regular expressions will be ignored for %s '%s' (needs 'mode http').\n",
578 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100579 }
580 if (curproxy->req_exp != NULL) {
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200581 Warning("config : client regular expressions will be ignored for %s '%s' (needs 'mode http').\n",
582 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100583 }
584 if (curproxy->monitor_uri != NULL) {
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200585 Warning("config : monitor-uri will be ignored for %s '%s' (needs 'mode http').\n",
586 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100587 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +0200588 if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) {
Willy Tarreauff01a212009-03-15 13:46:16 +0100589 curproxy->lbprm.algo &= ~BE_LB_ALGO;
590 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200591 Warning("config : Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n",
592 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100593 }
Willy Tarreau17804162009-11-09 21:27:51 +0100594 if (curproxy->to_log & (LW_REQ | LW_RESP)) {
595 curproxy->to_log &= ~(LW_REQ | LW_RESP);
Willy Tarreau59ad1a22014-01-29 14:39:58 +0100596 Warning("parsing [%s:%d] : HTTP log/header format not usable with %s '%s' (needs 'mode http').\n",
Willy Tarreaub1f3af22013-04-12 18:30:32 +0200597 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
Willy Tarreau17804162009-11-09 21:27:51 +0100598 proxy_type_str(curproxy), curproxy->id);
599 }
Willy Tarreau62a61232013-04-12 18:13:46 +0200600 if (curproxy->conf.logformat_string == default_http_log_format ||
601 curproxy->conf.logformat_string == clf_http_log_format) {
602 /* Note: we don't change the directive's file:line number */
603 curproxy->conf.logformat_string = default_tcp_log_format;
604 Warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n",
605 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
Willy Tarreau196729e2012-05-31 19:30:26 +0200606 proxy_type_str(curproxy), curproxy->id);
607 }
608
Willy Tarreauff01a212009-03-15 13:46:16 +0100609 return 0;
610}
611
Willy Tarreau237250c2011-07-29 01:49:03 +0200612/* Perform the most basic initialization of a proxy :
613 * memset(), list_init(*), reset_timeouts(*).
Willy Tarreaub249e842011-09-07 18:41:08 +0200614 * Any new proxy or peer should be initialized via this function.
Willy Tarreau237250c2011-07-29 01:49:03 +0200615 */
616void init_new_proxy(struct proxy *p)
617{
618 memset(p, 0, sizeof(struct proxy));
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100619 p->obj_type = OBJ_TYPE_PROXY;
Willy Tarreau237250c2011-07-29 01:49:03 +0200620 LIST_INIT(&p->pendconns);
621 LIST_INIT(&p->acl);
622 LIST_INIT(&p->http_req_rules);
Willy Tarreaue365c0b2013-06-11 16:06:12 +0200623 LIST_INIT(&p->http_res_rules);
Willy Tarreau353bc9f2014-04-28 22:05:31 +0200624 LIST_INIT(&p->block_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200625 LIST_INIT(&p->redirect_rules);
626 LIST_INIT(&p->mon_fail_cond);
627 LIST_INIT(&p->switching_rules);
Willy Tarreau4a5cade2012-04-05 21:09:48 +0200628 LIST_INIT(&p->server_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200629 LIST_INIT(&p->persist_rules);
630 LIST_INIT(&p->sticking_rules);
631 LIST_INIT(&p->storersp_rules);
632 LIST_INIT(&p->tcp_req.inspect_rules);
633 LIST_INIT(&p->tcp_rep.inspect_rules);
634 LIST_INIT(&p->tcp_req.l4_rules);
635 LIST_INIT(&p->req_add);
636 LIST_INIT(&p->rsp_add);
637 LIST_INIT(&p->listener_queue);
William Lallemand0f99e342011-10-12 17:50:54 +0200638 LIST_INIT(&p->logsrvs);
William Lallemand723b73a2012-02-08 16:37:49 +0100639 LIST_INIT(&p->logformat);
William Lallemanda73203e2012-03-12 12:48:57 +0100640 LIST_INIT(&p->format_unique_id);
Willy Tarreau2a65ff02012-09-13 17:54:29 +0200641 LIST_INIT(&p->conf.bind);
Willy Tarreau4348fad2012-09-20 16:48:07 +0200642 LIST_INIT(&p->conf.listeners);
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200643 LIST_INIT(&p->conf.args.list);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200644 LIST_INIT(&p->tcpcheck_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200645
646 /* Timeouts are defined as -1 */
647 proxy_reset_timeouts(p);
648 p->tcp_rep.inspect_delay = TICK_ETERNITY;
Willy Tarreau050536d2012-10-04 08:47:34 +0200649
650 /* initial uuid is unassigned (-1) */
651 p->uuid = -1;
Willy Tarreau237250c2011-07-29 01:49:03 +0200652}
653
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100654/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200655 * This function creates all proxy sockets. It should be done very early,
656 * typically before privileges are dropped. The sockets will be registered
657 * but not added to any fd_set, in order not to loose them across the fork().
Willy Tarreau562515c2011-07-25 08:11:52 +0200658 * The proxies also start in READY state because they all have their listeners
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200659 * bound.
Willy Tarreau2ff76222007-04-09 19:29:56 +0200660 *
661 * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL.
662 * Retryable errors will only be printed if <verbose> is not zero.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200663 */
664int start_proxies(int verbose)
665{
666 struct proxy *curproxy;
667 struct listener *listener;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100668 int lerr, err = ERR_NONE;
669 int pxerr;
670 char msg[100];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200671
672 for (curproxy = proxy; curproxy != NULL; curproxy = curproxy->next) {
673 if (curproxy->state != PR_STNEW)
674 continue; /* already initialized */
675
676 pxerr = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200677 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100678 if (listener->state != LI_ASSIGNED)
679 continue; /* already started */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200680
Emeric Bruncf20bf12010-10-22 16:06:11 +0200681 lerr = listener->proto->bind(listener, msg, sizeof(msg));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200682
Willy Tarreaue6b98942007-10-29 01:09:36 +0100683 /* errors are reported if <verbose> is set or if they are fatal */
684 if (verbose || (lerr & (ERR_FATAL | ERR_ABORT))) {
685 if (lerr & ERR_ALERT)
686 Alert("Starting %s %s: %s\n",
687 proxy_type_str(curproxy), curproxy->id, msg);
688 else if (lerr & ERR_WARN)
689 Warning("Starting %s %s: %s\n",
690 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200691 }
692
Willy Tarreaue6b98942007-10-29 01:09:36 +0100693 err |= lerr;
694 if (lerr & (ERR_ABORT | ERR_FATAL)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200695 pxerr |= 1;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100696 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200697 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100698 else if (lerr & ERR_CODE) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200699 pxerr |= 1;
700 continue;
701 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200702 }
703
704 if (!pxerr) {
Willy Tarreau562515c2011-07-25 08:11:52 +0200705 curproxy->state = PR_STREADY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200706 send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id);
707 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100708
709 if (err & ERR_ABORT)
710 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200711 }
712
713 return err;
714}
715
716
717/*
Willy Tarreau918ff602011-07-25 16:33:49 +0200718 * This is the proxy management task. It enables proxies when there are enough
Willy Tarreau87b09662015-04-03 00:22:06 +0200719 * free streams, or stops them when the table is full. It is designed to be
Willy Tarreau918ff602011-07-25 16:33:49 +0200720 * called as a task which is woken up upon stopping or when rate limiting must
721 * be enforced.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200722 */
Willy Tarreau918ff602011-07-25 16:33:49 +0200723struct task *manage_proxy(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200724{
Willy Tarreau918ff602011-07-25 16:33:49 +0200725 struct proxy *p = t->context;
726 int next = TICK_ETERNITY;
Willy Tarreau79584222009-03-06 09:18:27 +0100727 unsigned int wait;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200728
Willy Tarreau918ff602011-07-25 16:33:49 +0200729 /* We should periodically try to enable listeners waiting for a
730 * global resource here.
731 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200732
Willy Tarreau918ff602011-07-25 16:33:49 +0200733 /* first, let's check if we need to stop the proxy */
734 if (unlikely(stopping && p->state != PR_STSTOPPED)) {
735 int t;
736 t = tick_remain(now_ms, p->stop_time);
737 if (t == 0) {
738 Warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
739 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
740 send_log(p, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
741 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
742 stop_proxy(p);
743 /* try to free more memory */
744 pool_gc2();
745 }
746 else {
747 next = tick_first(next, p->stop_time);
748 }
749 }
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200750
Willy Tarreau3a925c12013-09-04 17:54:01 +0200751 /* If the proxy holds a stick table, we need to purge all unused
752 * entries. These are all the ones in the table with ref_cnt == 0
753 * and all the ones in the pool used to allocate new entries. Any
Willy Tarreau87b09662015-04-03 00:22:06 +0200754 * entry attached to an existing stream waiting for a store will
Willy Tarreau3a925c12013-09-04 17:54:01 +0200755 * be in neither list. Any entry being dumped will have ref_cnt > 0.
756 * However we protect tables that are being synced to peers.
757 */
758 if (unlikely(stopping && p->state == PR_STSTOPPED && p->table.current)) {
759 if (!p->table.syncing) {
760 stktable_trash_oldest(&p->table, p->table.current);
761 pool_gc2();
762 }
763 if (p->table.current) {
764 /* some entries still remain, let's recheck in one second */
765 next = tick_first(next, tick_add(now_ms, 1000));
766 }
767 }
768
Willy Tarreau918ff602011-07-25 16:33:49 +0200769 /* the rest below is just for frontends */
770 if (!(p->cap & PR_CAP_FE))
771 goto out;
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200772
Willy Tarreau918ff602011-07-25 16:33:49 +0200773 /* check the various reasons we may find to block the frontend */
774 if (unlikely(p->feconn >= p->maxconn)) {
775 if (p->state == PR_STREADY)
776 p->state = PR_STFULL;
777 goto out;
778 }
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100779
Willy Tarreau918ff602011-07-25 16:33:49 +0200780 /* OK we have no reason to block, so let's unblock if we were blocking */
781 if (p->state == PR_STFULL)
782 p->state = PR_STREADY;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100783
Willy Tarreau918ff602011-07-25 16:33:49 +0200784 if (p->fe_sps_lim &&
785 (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) {
786 /* we're blocking because a limit was reached on the number of
787 * requests/s on the frontend. We want to re-check ASAP, which
788 * means in 1 ms before estimated expiration date, because the
789 * timer will have settled down.
790 */
791 next = tick_first(next, tick_add(now_ms, wait));
792 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200793 }
Willy Tarreau918ff602011-07-25 16:33:49 +0200794
795 /* The proxy is not limited so we can re-enable any waiting listener */
796 if (!LIST_ISEMPTY(&p->listener_queue))
797 dequeue_all_listeners(&p->listener_queue);
798 out:
799 t->expire = next;
800 task_queue(t);
801 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200802}
803
804
805/*
806 * this function disables health-check servers so that the process will quickly be ignored
807 * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace
808 * time will not be used since it would already not listen anymore to the socket.
809 */
810void soft_stop(void)
811{
812 struct proxy *p;
Willy Tarreaubbe11b12011-07-25 11:16:24 +0200813 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200814
815 stopping = 1;
816 p = proxy;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200817 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200818 while (p) {
819 if (p->state != PR_STSTOPPED) {
Willy Tarreauf8fbcef2008-10-10 17:51:34 +0200820 Warning("Stopping %s %s in %d ms.\n", proxy_cap_str(p->cap), p->id, p->grace);
821 send_log(p, LOG_WARNING, "Stopping %s %s in %d ms.\n", proxy_cap_str(p->cap), p->id, p->grace);
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200822 p->stop_time = tick_add(now_ms, p->grace);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200823 }
Emeric Brun5a8c0a92010-09-23 18:44:36 +0200824 if (p->table.size && p->table.sync_task)
825 task_wakeup(p->table.sync_task, TASK_WOKEN_MSG);
826
Willy Tarreau918ff602011-07-25 16:33:49 +0200827 /* wake every proxy task up so that they can handle the stopping */
Willy Tarreaud1a33e32012-10-04 00:14:33 +0200828 if (p->task)
829 task_wakeup(p->task, TASK_WOKEN_MSG);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200830 p = p->next;
831 }
Willy Tarreaubbe11b12011-07-25 11:16:24 +0200832
833 prs = peers;
834 while (prs) {
835 stop_proxy((struct proxy *)prs->peers_fe);
836 prs = prs->next;
837 }
Willy Tarreaud0807c32010-08-27 18:26:11 +0200838 /* signal zero is used to broadcast the "stopping" event */
839 signal_handler(0);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200840}
841
842
Willy Tarreaube58c382011-07-24 18:28:10 +0200843/* Temporarily disables listening on all of the proxy's listeners. Upon
844 * success, the proxy enters the PR_PAUSED state. If disabling at least one
845 * listener returns an error, then the proxy state is set to PR_STERROR
Willy Tarreauce8fe252011-09-07 19:14:57 +0200846 * because we don't know how to resume from this. The function returns 0
847 * if it fails, or non-zero on success.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200848 */
Willy Tarreauce8fe252011-09-07 19:14:57 +0200849int pause_proxy(struct proxy *p)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200850{
851 struct listener *l;
Willy Tarreauce8fe252011-09-07 19:14:57 +0200852
853 if (!(p->cap & PR_CAP_FE) || p->state == PR_STERROR ||
854 p->state == PR_STSTOPPED || p->state == PR_STPAUSED)
855 return 1;
856
857 Warning("Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
858 send_log(p, LOG_WARNING, "Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
859
Willy Tarreau4348fad2012-09-20 16:48:07 +0200860 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreaube58c382011-07-24 18:28:10 +0200861 if (!pause_listener(l))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200862 p->state = PR_STERROR;
863 }
Willy Tarreauce8fe252011-09-07 19:14:57 +0200864
865 if (p->state == PR_STERROR) {
866 Warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
867 send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
868 return 0;
869 }
870
871 p->state = PR_STPAUSED;
872 return 1;
Willy Tarreauda250db2008-10-12 12:07:48 +0200873}
874
875
876/*
877 * This function completely stops a proxy and releases its listeners. It has
878 * to be called when going down in order to release the ports so that another
879 * process may bind to them. It must also be called on disabled proxies at the
880 * end of start-up. When all listeners are closed, the proxy is set to the
881 * PR_STSTOPPED state.
882 */
883void stop_proxy(struct proxy *p)
884{
885 struct listener *l;
886
Willy Tarreau4348fad2012-09-20 16:48:07 +0200887 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreauda250db2008-10-12 12:07:48 +0200888 unbind_listener(l);
889 if (l->state >= LI_ASSIGNED) {
890 delete_listener(l);
891 listeners--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200892 jobs--;
Willy Tarreauda250db2008-10-12 12:07:48 +0200893 }
894 }
895 p->state = PR_STSTOPPED;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200896}
897
Willy Tarreauc03ebbf2011-09-07 21:33:14 +0200898/* This function resumes listening on the specified proxy. It scans all of its
899 * listeners and tries to enable them all. If any of them fails, the proxy is
900 * put back to the paused state. It returns 1 upon success, or zero if an error
901 * is encountered.
902 */
903int resume_proxy(struct proxy *p)
904{
905 struct listener *l;
906 int fail;
907
908 if (p->state != PR_STPAUSED)
909 return 1;
910
911 Warning("Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
912 send_log(p, LOG_WARNING, "Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
913
914 fail = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200915 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +0200916 if (!resume_listener(l)) {
917 int port;
918
919 port = get_host_port(&l->addr);
920 if (port) {
921 Warning("Port %d busy while trying to enable %s %s.\n",
922 port, proxy_cap_str(p->cap), p->id);
923 send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n",
924 port, proxy_cap_str(p->cap), p->id);
925 }
926 else {
927 Warning("Bind on socket %d busy while trying to enable %s %s.\n",
928 l->luid, proxy_cap_str(p->cap), p->id);
929 send_log(p, LOG_WARNING, "Bind on socket %d busy while trying to enable %s %s.\n",
930 l->luid, proxy_cap_str(p->cap), p->id);
931 }
932
933 /* Another port might have been enabled. Let's stop everything. */
934 fail = 1;
935 break;
936 }
937 }
938
939 p->state = PR_STREADY;
940 if (fail) {
941 pause_proxy(p);
942 return 0;
943 }
944 return 1;
945}
946
Willy Tarreaubaaee002006-06-26 02:48:02 +0200947/*
948 * This function temporarily disables listening so that another new instance
949 * can start listening. It is designed to be called upon reception of a
950 * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop
951 * the proxy, or a SIGTTIN can be sent to listen again.
952 */
953void pause_proxies(void)
954{
955 int err;
956 struct proxy *p;
Emeric Brun5a8c0a92010-09-23 18:44:36 +0200957 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200958
959 err = 0;
960 p = proxy;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200961 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200962 while (p) {
Willy Tarreauce8fe252011-09-07 19:14:57 +0200963 err |= !pause_proxy(p);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200964 p = p->next;
965 }
Emeric Brun5a8c0a92010-09-23 18:44:36 +0200966
967 prs = peers;
968 while (prs) {
969 p = prs->peers_fe;
Willy Tarreauce8fe252011-09-07 19:14:57 +0200970 err |= !pause_proxy(p);
971 prs = prs->next;
Emeric Brun5a8c0a92010-09-23 18:44:36 +0200972 }
973
Willy Tarreaubaaee002006-06-26 02:48:02 +0200974 if (err) {
975 Warning("Some proxies refused to pause, performing soft stop now.\n");
976 send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n");
977 soft_stop();
978 }
979}
980
981
982/*
983 * This function reactivates listening. This can be used after a call to
984 * sig_pause(), for example when a new instance has failed starting up.
985 * It is designed to be called upon reception of a SIGTTIN.
986 */
Willy Tarreaube58c382011-07-24 18:28:10 +0200987void resume_proxies(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200988{
Willy Tarreauc03ebbf2011-09-07 21:33:14 +0200989 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200990 struct proxy *p;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +0200991 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200992
Willy Tarreauc03ebbf2011-09-07 21:33:14 +0200993 err = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200994 p = proxy;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200995 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200996 while (p) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +0200997 err |= !resume_proxy(p);
998 p = p->next;
999 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001000
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001001 prs = peers;
1002 while (prs) {
1003 p = prs->peers_fe;
1004 err |= !resume_proxy(p);
1005 prs = prs->next;
1006 }
Willy Tarreaube58c382011-07-24 18:28:10 +02001007
Willy Tarreauc03ebbf2011-09-07 21:33:14 +02001008 if (err) {
1009 Warning("Some proxies refused to resume, a restart is probably needed to resume safe operations.\n");
1010 send_log(p, LOG_WARNING, "Some proxies refused to resume, a restart is probably needed to resume safe operations.\n");
Willy Tarreaubaaee002006-06-26 02:48:02 +02001011 }
1012}
1013
Willy Tarreau87b09662015-04-03 00:22:06 +02001014/* Set current stream's backend to <be>. Nothing is done if the
1015 * stream already had a backend assigned, which is indicated by
Willy Tarreaue7dff022015-04-03 01:14:29 +02001016 * s->flags & SF_BE_ASSIGNED.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001017 * All flags, stats and counters which need be updated are updated.
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001018 * Returns 1 if done, 0 in case of internal error, eg: lack of resource.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001019 */
Willy Tarreau87b09662015-04-03 00:22:06 +02001020int stream_set_backend(struct stream *s, struct proxy *be)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001021{
Willy Tarreaue7dff022015-04-03 01:14:29 +02001022 if (s->flags & SF_BE_ASSIGNED)
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001023 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001024 s->be = be;
1025 be->beconn++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +01001026 if (be->beconn > be->be_counters.conn_max)
1027 be->be_counters.conn_max = be->beconn;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001028 proxy_inc_be_ctr(be);
1029
Willy Tarreau87b09662015-04-03 00:22:06 +02001030 /* assign new parameters to the stream from the new backend */
Willy Tarreauf27b5ea2009-10-03 22:01:18 +02001031 s->si[1].flags &= ~SI_FL_INDEP_STR;
1032 if (be->options2 & PR_O2_INDEPSTR)
1033 s->si[1].flags |= SI_FL_INDEP_STR;
1034
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001035 /* We want to enable the backend-specific analysers except those which
1036 * were already run as part of the frontend/listener. Note that it would
1037 * be more reliable to store the list of analysers that have been run,
1038 * but what we do here is OK for now.
1039 */
1040 s->req.analysers |= be->be_req_ana & ~strm_li(s)->analysers;
1041
Willy Tarreau51aecc72009-07-12 09:47:04 +02001042 /* If the target backend requires HTTP processing, we have to allocate
Willy Tarreaueee5b512015-04-03 23:46:31 +02001043 * the HTTP transaction and hdr_idx if we did not have one.
Willy Tarreau51aecc72009-07-12 09:47:04 +02001044 */
Willy Tarreaueee5b512015-04-03 23:46:31 +02001045 if (unlikely(!s->txn && be->http_needed)) {
1046 if (unlikely(!http_alloc_txn(s)))
Willy Tarreau51aecc72009-07-12 09:47:04 +02001047 return 0; /* not enough memory */
Willy Tarreau39e4f622010-05-31 17:01:36 +02001048
1049 /* and now initialize the HTTP transaction state */
1050 http_init_txn(s);
Willy Tarreau51aecc72009-07-12 09:47:04 +02001051 }
1052
Willy Tarreaueee5b512015-04-03 23:46:31 +02001053 if (s->txn) {
1054 if (be->options2 & PR_O2_RSPBUG_OK)
1055 s->txn->rsp.err_pos = -1; /* let buggy responses pass */
Willy Tarreau4e21ff92014-09-30 18:44:22 +02001056
Willy Tarreaueee5b512015-04-03 23:46:31 +02001057 /* If we chain to an HTTP backend running a different HTTP mode, we
1058 * have to re-adjust the desired keep-alive/close mode to accommodate
1059 * both the frontend's and the backend's modes.
1060 */
Willy Tarreaud0d8da92015-04-04 02:10:38 +02001061 if (strm_fe(s)->mode == PR_MODE_HTTP && be->mode == PR_MODE_HTTP &&
1062 ((strm_fe(s)->options & PR_O_HTTP_MODE) != (be->options & PR_O_HTTP_MODE)))
Willy Tarreaueee5b512015-04-03 23:46:31 +02001063 http_adjust_conn_mode(s, s->txn, &s->txn->req);
Willy Tarreau80a92c02014-03-12 10:41:13 +01001064
Willy Tarreaueee5b512015-04-03 23:46:31 +02001065 /* If an LB algorithm needs to access some pre-parsed body contents,
1066 * we must not start to forward anything until the connection is
1067 * confirmed otherwise we'll lose the pointer to these data and
1068 * prevent the hash from being doable again after a redispatch.
1069 */
1070 if (be->mode == PR_MODE_HTTP &&
1071 (be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_HI | BE_LB_HASH_PRM))
1072 s->txn->req.flags |= HTTP_MSGF_WAIT_CONN;
Willy Tarreau9fbe18e2015-05-01 22:42:08 +02001073
1074 /* we may request to parse a request body */
1075 if ((be->options & PR_O_WREQ_BODY) &&
1076 (s->txn->req.body_len || (s->txn->req.flags & HTTP_MSGF_TE_CHNK)))
1077 s->req.analysers |= AN_REQ_HTTP_BODY;
Willy Tarreaueee5b512015-04-03 23:46:31 +02001078 }
1079
1080 s->flags |= SF_BE_ASSIGNED;
Willy Tarreau96e31212011-05-30 18:10:30 +02001081 if (be->options2 & PR_O2_NODELAY) {
Willy Tarreau22ec1ea2014-11-27 20:45:39 +01001082 s->req.flags |= CF_NEVER_WAIT;
1083 s->res.flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +02001084 }
1085
Willy Tarreaubedb9ba2009-07-12 08:27:39 +02001086 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +02001087}
1088
Willy Tarreaudc13c112013-06-21 23:16:39 +02001089static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001090 { CFG_LISTEN, "timeout", proxy_parse_timeout },
1091 { CFG_LISTEN, "clitimeout", proxy_parse_timeout },
1092 { CFG_LISTEN, "contimeout", proxy_parse_timeout },
1093 { CFG_LISTEN, "srvtimeout", proxy_parse_timeout },
Willy Tarreau3a7d2072009-03-05 23:48:25 +01001094 { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit },
Willy Tarreauc35362a2014-04-25 13:58:37 +02001095 { CFG_LISTEN, "max-keep-alive-queue", proxy_parse_max_ka_queue },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +02001096 { 0, NULL, NULL },
1097}};
1098
1099__attribute__((constructor))
1100static void __proxy_module_init(void)
1101{
1102 cfg_register_keywords(&cfg_kws);
1103}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001104
1105/*
1106 * Local variables:
1107 * c-indent-level: 8
1108 * c-basic-offset: 8
1109 * End:
1110 */