blob: 8e638c6fd54e28253f9d6ebfb66b4656afc14000 [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>
Emeric Brun5a8c0a92010-09-23 18:44:36 +020044#include <proto/task.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020045
46
Willy Tarreau918ff602011-07-25 16:33:49 +020047int listeners; /* # of proxy listeners, set by cfgparse */
Willy Tarreaubaaee002006-06-26 02:48:02 +020048struct proxy *proxy = NULL; /* list of all existing proxies */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +020049struct eb_root used_proxy_id = EB_ROOT; /* list of proxy IDs in use */
Willy Tarreauf79d9502014-03-15 07:22:35 +010050struct eb_root proxy_by_name = EB_ROOT; /* tree of proxies sorted by name */
Willy Tarreau10479e42010-12-12 14:00:34 +010051unsigned int error_snapshot_id = 0; /* global ID assigned to each error then incremented */
Willy Tarreaubaaee002006-06-26 02:48:02 +020052
Willy Tarreau977b8e42006-12-29 14:19:17 +010053/*
Willy Tarreau816eb542007-11-04 07:04:43 +010054 * This function returns a string containing a name describing capabilities to
55 * report comprehensible error messages. Specifically, it will return the words
56 * "frontend", "backend", "ruleset" when appropriate, or "proxy" for all other
57 * cases including the proxies declared in "listen" mode.
Willy Tarreau977b8e42006-12-29 14:19:17 +010058 */
Willy Tarreau816eb542007-11-04 07:04:43 +010059const char *proxy_cap_str(int cap)
Willy Tarreau977b8e42006-12-29 14:19:17 +010060{
Willy Tarreau816eb542007-11-04 07:04:43 +010061 if ((cap & PR_CAP_LISTEN) != PR_CAP_LISTEN) {
62 if (cap & PR_CAP_FE)
63 return "frontend";
64 else if (cap & PR_CAP_BE)
65 return "backend";
66 else if (cap & PR_CAP_RS)
67 return "ruleset";
68 }
69 return "proxy";
Willy Tarreau977b8e42006-12-29 14:19:17 +010070}
71
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +010072/*
73 * This function returns a string containing the mode of the proxy in a format
74 * suitable for error messages.
75 */
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +010076const char *proxy_mode_str(int mode) {
77
78 if (mode == PR_MODE_TCP)
79 return "tcp";
80 else if (mode == PR_MODE_HTTP)
81 return "http";
82 else if (mode == PR_MODE_HEALTH)
83 return "health";
84 else
85 return "unknown";
86}
87
Willy Tarreauf3950172009-10-10 18:35:51 +020088/*
89 * This function scans the list of backends and servers to retrieve the first
90 * backend and the first server with the given names, and sets them in both
91 * parameters. It returns zero if either is not found, or non-zero and sets
92 * the ones it did not found to NULL. If a NULL pointer is passed for the
93 * backend, only the pointer to the server will be updated.
94 */
95int get_backend_server(const char *bk_name, const char *sv_name,
96 struct proxy **bk, struct server **sv)
97{
98 struct proxy *p;
99 struct server *s;
Willy Tarreau7ecc4202014-03-15 07:57:11 +0100100 int sid;
Willy Tarreauf3950172009-10-10 18:35:51 +0200101
102 *sv = NULL;
103
Willy Tarreau050536d2012-10-04 08:47:34 +0200104 sid = -1;
Willy Tarreaucfeaa472009-10-10 22:33:08 +0200105 if (*sv_name == '#')
106 sid = atoi(sv_name + 1);
107
Willy Tarreau7ecc4202014-03-15 07:57:11 +0100108 p = findproxy(bk_name, PR_CAP_BE);
Willy Tarreauf3950172009-10-10 18:35:51 +0200109 if (bk)
110 *bk = p;
111 if (!p)
112 return 0;
113
114 for (s = p->srv; s; s = s->next)
Willy Tarreau4055a102012-11-15 00:15:18 +0100115 if ((sid >= 0 && s->puid == sid) ||
116 (sid < 0 && strcmp(s->id, sv_name) == 0))
Willy Tarreauf3950172009-10-10 18:35:51 +0200117 break;
118 *sv = s;
119 if (!s)
120 return 0;
121 return 1;
122}
123
Willy Tarreaue219db72007-12-03 01:30:13 +0100124/* This function parses a "timeout" statement in a proxy section. It returns
125 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200126 * return zero, it will write an error or warning message into a preallocated
127 * buffer returned at <err>. The trailing is not be written. The function must
128 * be called with <args> pointing to the first command line word, with <proxy>
129 * pointing to the proxy being parsed, and <defpx> to the default proxy or NULL.
130 * As a special case for compatibility with older configs, it also accepts
131 * "{cli|srv|con}timeout" in args[0].
Willy Tarreaue219db72007-12-03 01:30:13 +0100132 */
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200133static int proxy_parse_timeout(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200134 struct proxy *defpx, const char *file, int line,
135 char **err)
Willy Tarreaue219db72007-12-03 01:30:13 +0100136{
137 unsigned timeout;
138 int retval, cap;
139 const char *res, *name;
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200140 int *tv = NULL;
141 int *td = NULL;
Willy Tarreaued446492014-04-28 22:56:38 +0200142 int warn = 0;
Willy Tarreaue219db72007-12-03 01:30:13 +0100143
144 retval = 0;
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200145
146 /* simply skip "timeout" but remain compatible with old form */
147 if (strcmp(args[0], "timeout") == 0)
148 args++;
149
Willy Tarreaue219db72007-12-03 01:30:13 +0100150 name = args[0];
Willy Tarreaued446492014-04-28 22:56:38 +0200151 if (!strcmp(args[0], "client") || (!strcmp(args[0], "clitimeout") && (warn = WARN_CLITO_DEPRECATED))) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100152 name = "client";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100153 tv = &proxy->timeout.client;
154 td = &defpx->timeout.client;
Willy Tarreaue219db72007-12-03 01:30:13 +0100155 cap = PR_CAP_FE;
156 } else if (!strcmp(args[0], "tarpit")) {
157 tv = &proxy->timeout.tarpit;
158 td = &defpx->timeout.tarpit;
Willy Tarreau51c9bde2008-01-06 13:40:03 +0100159 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreaub16a5742010-01-10 14:46:16 +0100160 } else if (!strcmp(args[0], "http-keep-alive")) {
161 tv = &proxy->timeout.httpka;
162 td = &defpx->timeout.httpka;
163 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreau036fae02008-01-06 13:24:40 +0100164 } else if (!strcmp(args[0], "http-request")) {
165 tv = &proxy->timeout.httpreq;
166 td = &defpx->timeout.httpreq;
Willy Tarreaucd7afc02009-07-12 10:03:17 +0200167 cap = PR_CAP_FE | PR_CAP_BE;
Willy Tarreaued446492014-04-28 22:56:38 +0200168 } else if (!strcmp(args[0], "server") || (!strcmp(args[0], "srvtimeout") && (warn = WARN_SRVTO_DEPRECATED))) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100169 name = "server";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100170 tv = &proxy->timeout.server;
171 td = &defpx->timeout.server;
Willy Tarreaue219db72007-12-03 01:30:13 +0100172 cap = PR_CAP_BE;
Willy Tarreaued446492014-04-28 22:56:38 +0200173 } else if (!strcmp(args[0], "connect") || (!strcmp(args[0], "contimeout") && (warn = WARN_CONTO_DEPRECATED))) {
Willy Tarreaue219db72007-12-03 01:30:13 +0100174 name = "connect";
Willy Tarreaud7c30f92007-12-03 01:38:36 +0100175 tv = &proxy->timeout.connect;
176 td = &defpx->timeout.connect;
Willy Tarreaue219db72007-12-03 01:30:13 +0100177 cap = PR_CAP_BE;
Krzysztof Piotr Oledzki5259dfe2008-01-21 01:54:06 +0100178 } else if (!strcmp(args[0], "check")) {
179 tv = &proxy->timeout.check;
180 td = &defpx->timeout.check;
181 cap = PR_CAP_BE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100182 } else if (!strcmp(args[0], "queue")) {
183 tv = &proxy->timeout.queue;
184 td = &defpx->timeout.queue;
185 cap = PR_CAP_BE;
Willy Tarreauce887fd2012-05-12 12:50:00 +0200186 } else if (!strcmp(args[0], "tunnel")) {
187 tv = &proxy->timeout.tunnel;
188 td = &defpx->timeout.tunnel;
189 cap = PR_CAP_BE;
Willy Tarreaue219db72007-12-03 01:30:13 +0100190 } else {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200191 memprintf(err,
192 "'timeout' supports 'client', 'server', 'connect', 'check', "
Willy Tarreauce887fd2012-05-12 12:50:00 +0200193 "'queue', 'http-keep-alive', 'http-request', 'tunnel' or 'tarpit', (got '%s')",
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200194 args[0]);
Willy Tarreaue219db72007-12-03 01:30:13 +0100195 return -1;
196 }
197
198 if (*args[1] == 0) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200199 memprintf(err, "'timeout %s' expects an integer value (in milliseconds)", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100200 return -1;
201 }
202
203 res = parse_time_err(args[1], &timeout, TIME_UNIT_MS);
204 if (res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200205 memprintf(err, "unexpected character '%c' in 'timeout %s'", *res, name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100206 return -1;
207 }
208
209 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200210 memprintf(err, "'timeout %s' will be ignored because %s '%s' has no %s capability",
211 name, proxy_type_str(proxy), proxy->id,
212 (cap & PR_CAP_BE) ? "backend" : "frontend");
Willy Tarreaue219db72007-12-03 01:30:13 +0100213 retval = 1;
214 }
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200215 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200216 memprintf(err, "overwriting 'timeout %s' which was already specified", name);
Willy Tarreaue219db72007-12-03 01:30:13 +0100217 retval = 1;
218 }
Willy Tarreaued446492014-04-28 22:56:38 +0200219 else if (warn) {
220 if (!already_warned(warn)) {
221 memprintf(err, "the '%s' directive is now deprecated in favor of 'timeout %s', and will not be supported in future versions.",
222 args[0], name);
223 retval = 1;
224 }
225 }
Willy Tarreaue219db72007-12-03 01:30:13 +0100226
Willy Tarreau0c303ee2008-07-07 00:09:58 +0200227 *tv = MS_TO_TICKS(timeout);
Willy Tarreaue219db72007-12-03 01:30:13 +0100228 return retval;
229}
230
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100231/* This function parses a "rate-limit" statement in a proxy section. It returns
232 * -1 if there is any error, 1 for a warning, otherwise zero. If it does not
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200233 * return zero, it will write an error or warning message into a preallocated
234 * buffer returned at <err>. The function must be called with <args> pointing
235 * to the first command line word, with <proxy> pointing to the proxy being
236 * parsed, and <defpx> to the default proxy or NULL.
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100237 */
238static int proxy_parse_rate_limit(char **args, int section, struct proxy *proxy,
Willy Tarreau28a47d62012-09-18 20:02:48 +0200239 struct proxy *defpx, const char *file, int line,
240 char **err)
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100241{
242 int retval, cap;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200243 char *res;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100244 unsigned int *tv = NULL;
245 unsigned int *td = NULL;
246 unsigned int val;
247
248 retval = 0;
249
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200250 if (strcmp(args[1], "sessions") == 0) {
Willy Tarreau13a34bd2009-05-10 18:52:49 +0200251 tv = &proxy->fe_sps_lim;
252 td = &defpx->fe_sps_lim;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100253 cap = PR_CAP_FE;
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200254 }
255 else {
256 memprintf(err, "'%s' only supports 'sessions' (got '%s')", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100257 return -1;
258 }
259
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200260 if (*args[2] == 0) {
261 memprintf(err, "'%s %s' expects expects an integer value (in sessions/second)", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100262 return -1;
263 }
264
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200265 val = strtoul(args[2], &res, 0);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100266 if (*res) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200267 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 +0100268 return -1;
269 }
270
271 if (!(proxy->cap & cap)) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200272 memprintf(err, "%s %s will be ignored because %s '%s' has no %s capability",
273 args[0], args[1], proxy_type_str(proxy), proxy->id,
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100274 (cap & PR_CAP_BE) ? "backend" : "frontend");
275 retval = 1;
276 }
277 else if (defpx && *tv != *td) {
Willy Tarreau0a3dd742012-05-08 19:47:01 +0200278 memprintf(err, "overwriting %s %s which was already specified", args[0], args[1]);
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100279 retval = 1;
280 }
281
282 *tv = val;
283 return retval;
284}
285
Willy Tarreauc35362a2014-04-25 13:58:37 +0200286/* This function parses a "max-keep-alive-queue" statement in a proxy section.
287 * It returns -1 if there is any error, 1 for a warning, otherwise zero. If it
288 * does not return zero, it will write an error or warning message into a
289 * preallocated buffer returned at <err>. The function must be called with
290 * <args> pointing to the first command line word, with <proxy> pointing to
291 * the proxy being parsed, and <defpx> to the default proxy or NULL.
292 */
293static int proxy_parse_max_ka_queue(char **args, int section, struct proxy *proxy,
294 struct proxy *defpx, const char *file, int line,
295 char **err)
296{
297 int retval;
298 char *res;
299 unsigned int val;
300
301 retval = 0;
302
303 if (*args[1] == 0) {
304 memprintf(err, "'%s' expects expects an integer value (or -1 to disable)", args[0]);
305 return -1;
306 }
307
308 val = strtol(args[1], &res, 0);
309 if (*res) {
310 memprintf(err, "'%s' : unexpected character '%c' in integer value '%s'", args[0], *res, args[1]);
311 return -1;
312 }
313
314 if (!(proxy->cap & PR_CAP_BE)) {
315 memprintf(err, "%s will be ignored because %s '%s' has no backend capability",
316 args[0], proxy_type_str(proxy), proxy->id);
317 retval = 1;
318 }
319
320 /* we store <val+1> so that a user-facing value of -1 is stored as zero (default) */
321 proxy->max_ka_queue = val + 1;
322 return retval;
323}
324
Willy Tarreauf79d9502014-03-15 07:22:35 +0100325/* This function inserts proxy <px> into the tree of known proxies. The proxy's
326 * name is used as the storing key so it must already have been initialized.
327 */
328void proxy_store_name(struct proxy *px)
329{
330 px->conf.by_name.key = px->id;
331 ebis_insert(&proxy_by_name, &px->conf.by_name);
332}
333
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100334/*
335 * This function finds a proxy with matching name, mode and with satisfying
336 * capabilities. It also checks if there are more matching proxies with
337 * requested name as this often leads into unexpected situations.
338 */
339
Alex Williams96532db2009-11-01 21:27:13 -0500340struct proxy *findproxy_mode(const char *name, int mode, int cap) {
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100341
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100342 struct proxy *curproxy, *target = NULL;
Willy Tarreauf79d9502014-03-15 07:22:35 +0100343 struct ebpt_node *node;
344
345 for (node = ebis_lookup(&proxy_by_name, name); node; node = ebpt_next(node)) {
346 curproxy = container_of(node, struct proxy, conf.by_name);
347
348 if (strcmp(curproxy->id, name) != 0)
349 break;
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100350
Willy Tarreauf79d9502014-03-15 07:22:35 +0100351 if ((curproxy->cap & cap) != cap)
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100352 continue;
353
Willy Tarreau51aecc72009-07-12 09:47:04 +0200354 if (curproxy->mode != mode &&
355 !(curproxy->mode == PR_MODE_HTTP && mode == PR_MODE_TCP)) {
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100356 Alert("Unable to use proxy '%s' with wrong mode, required: %s, has: %s.\n",
357 name, proxy_mode_str(mode), proxy_mode_str(curproxy->mode));
358 Alert("You may want to use 'mode %s'.\n", proxy_mode_str(mode));
359 return NULL;
360 }
361
362 if (!target) {
363 target = curproxy;
364 continue;
365 }
366
Willy Tarreau816eb542007-11-04 07:04:43 +0100367 Alert("Refusing to use duplicated proxy '%s' with overlapping capabilities: %s/%s!\n",
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +0100368 name, proxy_type_str(curproxy), proxy_type_str(target));
369
370 return NULL;
371 }
372
373 return target;
374}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200375
Willy Tarreaubc216c42011-08-02 11:25:54 +0200376/* Returns a pointer to the proxy matching either name <name>, or id <name> if
377 * <name> begins with a '#'. NULL is returned if no match is found, as well as
378 * if multiple matches are found (eg: too large capabilities mask).
379 */
Alex Williams96532db2009-11-01 21:27:13 -0500380struct proxy *findproxy(const char *name, int cap) {
381
382 struct proxy *curproxy, *target = NULL;
Willy Tarreau050536d2012-10-04 08:47:34 +0200383 int pid = -1;
Willy Tarreaubc216c42011-08-02 11:25:54 +0200384
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100385 if (*name == '#') {
386 struct eb32_node *node;
387
Willy Tarreaubc216c42011-08-02 11:25:54 +0200388 pid = atoi(name + 1);
Alex Williams96532db2009-11-01 21:27:13 -0500389
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100390 for (node = eb32_lookup(&used_proxy_id, pid); node; node = eb32_next(node)) {
391 curproxy = container_of(node, struct proxy, conf.id);
Alex Williams96532db2009-11-01 21:27:13 -0500392
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100393 if (curproxy->uuid != pid)
394 break;
395
396 if ((curproxy->cap & cap) != cap)
397 continue;
398
399 if (target)
400 return NULL;
401
Alex Williams96532db2009-11-01 21:27:13 -0500402 target = curproxy;
Alex Williams96532db2009-11-01 21:27:13 -0500403 }
Alex Williams96532db2009-11-01 21:27:13 -0500404 }
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100405 else {
406 struct ebpt_node *node;
407
408 for (node = ebis_lookup(&proxy_by_name, name); node; node = ebpt_next(node)) {
409 curproxy = container_of(node, struct proxy, conf.by_name);
Alex Williams96532db2009-11-01 21:27:13 -0500410
Willy Tarreaucfd837f2014-03-15 07:43:51 +0100411 if (strcmp(curproxy->id, name) != 0)
412 break;
413
414 if ((curproxy->cap & cap) != cap)
415 continue;
416
417 if (target)
418 return NULL;
419
420 target = curproxy;
421 }
422 }
Alex Williams96532db2009-11-01 21:27:13 -0500423 return target;
424}
425
Willy Tarreaubaaee002006-06-26 02:48:02 +0200426/*
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100427 * This function finds a server with matching name within selected proxy.
428 * It also checks if there are more matching servers with
429 * requested name as this often leads into unexpected situations.
430 */
431
432struct server *findserver(const struct proxy *px, const char *name) {
433
434 struct server *cursrv, *target = NULL;
435
436 if (!px)
437 return NULL;
438
439 for (cursrv = px->srv; cursrv; cursrv = cursrv->next) {
440 if (strcmp(cursrv->id, name))
441 continue;
442
443 if (!target) {
444 target = cursrv;
445 continue;
446 }
447
Cyril Bonté0bb519e2012-04-04 12:57:19 +0200448 Alert("Refusing to use duplicated server '%s' found in proxy: %s!\n",
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100449 name, px->id);
450
451 return NULL;
452 }
453
454 return target;
455}
456
Willy Tarreauff01a212009-03-15 13:46:16 +0100457/* This function checks that the designated proxy has no http directives
458 * enabled. It will output a warning if there are, and will fix some of them.
459 * It returns the number of fatal errors encountered. This should be called
460 * at the end of the configuration parsing if the proxy is not in http mode.
461 * The <file> argument is used to construct the error message.
462 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200463int proxy_cfg_ensure_no_http(struct proxy *curproxy)
Willy Tarreauff01a212009-03-15 13:46:16 +0100464{
465 if (curproxy->cookie_name != NULL) {
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200466 Warning("config : cookie will be ignored for %s '%s' (needs 'mode http').\n",
467 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100468 }
469 if (curproxy->rsp_exp != NULL) {
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200470 Warning("config : server regular expressions will be ignored for %s '%s' (needs 'mode http').\n",
471 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100472 }
473 if (curproxy->req_exp != NULL) {
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200474 Warning("config : client regular expressions will be ignored for %s '%s' (needs 'mode http').\n",
475 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100476 }
477 if (curproxy->monitor_uri != NULL) {
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200478 Warning("config : monitor-uri will be ignored for %s '%s' (needs 'mode http').\n",
479 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100480 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +0200481 if (curproxy->lbprm.algo & BE_LB_NEED_HTTP) {
Willy Tarreauff01a212009-03-15 13:46:16 +0100482 curproxy->lbprm.algo &= ~BE_LB_ALGO;
483 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200484 Warning("config : Layer 7 hash not possible for %s '%s' (needs 'mode http'). Falling back to round robin.\n",
485 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +0100486 }
Willy Tarreau17804162009-11-09 21:27:51 +0100487 if (curproxy->to_log & (LW_REQ | LW_RESP)) {
488 curproxy->to_log &= ~(LW_REQ | LW_RESP);
Willy Tarreau59ad1a22014-01-29 14:39:58 +0100489 Warning("parsing [%s:%d] : HTTP log/header format not usable with %s '%s' (needs 'mode http').\n",
Willy Tarreaub1f3af22013-04-12 18:30:32 +0200490 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
Willy Tarreau17804162009-11-09 21:27:51 +0100491 proxy_type_str(curproxy), curproxy->id);
492 }
Willy Tarreau62a61232013-04-12 18:13:46 +0200493 if (curproxy->conf.logformat_string == default_http_log_format ||
494 curproxy->conf.logformat_string == clf_http_log_format) {
495 /* Note: we don't change the directive's file:line number */
496 curproxy->conf.logformat_string = default_tcp_log_format;
497 Warning("parsing [%s:%d] : 'option httplog' not usable with %s '%s' (needs 'mode http'). Falling back to 'option tcplog'.\n",
498 curproxy->conf.lfs_file, curproxy->conf.lfs_line,
Willy Tarreau196729e2012-05-31 19:30:26 +0200499 proxy_type_str(curproxy), curproxy->id);
500 }
501
Willy Tarreauff01a212009-03-15 13:46:16 +0100502 return 0;
503}
504
Willy Tarreau237250c2011-07-29 01:49:03 +0200505/* Perform the most basic initialization of a proxy :
506 * memset(), list_init(*), reset_timeouts(*).
Willy Tarreaub249e842011-09-07 18:41:08 +0200507 * Any new proxy or peer should be initialized via this function.
Willy Tarreau237250c2011-07-29 01:49:03 +0200508 */
509void init_new_proxy(struct proxy *p)
510{
511 memset(p, 0, sizeof(struct proxy));
Willy Tarreau3fdb3662012-11-12 00:42:33 +0100512 p->obj_type = OBJ_TYPE_PROXY;
Willy Tarreau237250c2011-07-29 01:49:03 +0200513 LIST_INIT(&p->pendconns);
514 LIST_INIT(&p->acl);
515 LIST_INIT(&p->http_req_rules);
Willy Tarreaue365c0b2013-06-11 16:06:12 +0200516 LIST_INIT(&p->http_res_rules);
Willy Tarreau353bc9f2014-04-28 22:05:31 +0200517 LIST_INIT(&p->block_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200518 LIST_INIT(&p->redirect_rules);
519 LIST_INIT(&p->mon_fail_cond);
520 LIST_INIT(&p->switching_rules);
Willy Tarreau4a5cade2012-04-05 21:09:48 +0200521 LIST_INIT(&p->server_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200522 LIST_INIT(&p->persist_rules);
523 LIST_INIT(&p->sticking_rules);
524 LIST_INIT(&p->storersp_rules);
525 LIST_INIT(&p->tcp_req.inspect_rules);
526 LIST_INIT(&p->tcp_rep.inspect_rules);
527 LIST_INIT(&p->tcp_req.l4_rules);
528 LIST_INIT(&p->req_add);
529 LIST_INIT(&p->rsp_add);
530 LIST_INIT(&p->listener_queue);
William Lallemand0f99e342011-10-12 17:50:54 +0200531 LIST_INIT(&p->logsrvs);
William Lallemand723b73a2012-02-08 16:37:49 +0100532 LIST_INIT(&p->logformat);
William Lallemanda73203e2012-03-12 12:48:57 +0100533 LIST_INIT(&p->format_unique_id);
Willy Tarreau2a65ff02012-09-13 17:54:29 +0200534 LIST_INIT(&p->conf.bind);
Willy Tarreau4348fad2012-09-20 16:48:07 +0200535 LIST_INIT(&p->conf.listeners);
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200536 LIST_INIT(&p->conf.args.list);
Baptiste Assmann5ecb77f2013-10-06 23:24:13 +0200537 LIST_INIT(&p->tcpcheck_rules);
Willy Tarreau237250c2011-07-29 01:49:03 +0200538
539 /* Timeouts are defined as -1 */
540 proxy_reset_timeouts(p);
541 p->tcp_rep.inspect_delay = TICK_ETERNITY;
Willy Tarreau050536d2012-10-04 08:47:34 +0200542
543 /* initial uuid is unassigned (-1) */
544 p->uuid = -1;
Willy Tarreau237250c2011-07-29 01:49:03 +0200545}
546
Krzysztof Piotr Oledzkic8b16fc2008-02-18 01:26:35 +0100547/*
Willy Tarreau2ff76222007-04-09 19:29:56 +0200548 * This function creates all proxy sockets. It should be done very early,
549 * typically before privileges are dropped. The sockets will be registered
550 * but not added to any fd_set, in order not to loose them across the fork().
Willy Tarreau562515c2011-07-25 08:11:52 +0200551 * The proxies also start in READY state because they all have their listeners
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200552 * bound.
Willy Tarreau2ff76222007-04-09 19:29:56 +0200553 *
554 * Its return value is composed from ERR_NONE, ERR_RETRYABLE and ERR_FATAL.
555 * Retryable errors will only be printed if <verbose> is not zero.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200556 */
557int start_proxies(int verbose)
558{
559 struct proxy *curproxy;
560 struct listener *listener;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100561 int lerr, err = ERR_NONE;
562 int pxerr;
563 char msg[100];
Willy Tarreaubaaee002006-06-26 02:48:02 +0200564
565 for (curproxy = proxy; curproxy != NULL; curproxy = curproxy->next) {
566 if (curproxy->state != PR_STNEW)
567 continue; /* already initialized */
568
569 pxerr = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200570 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreaue6b98942007-10-29 01:09:36 +0100571 if (listener->state != LI_ASSIGNED)
572 continue; /* already started */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200573
Emeric Bruncf20bf12010-10-22 16:06:11 +0200574 lerr = listener->proto->bind(listener, msg, sizeof(msg));
Willy Tarreaubaaee002006-06-26 02:48:02 +0200575
Willy Tarreaue6b98942007-10-29 01:09:36 +0100576 /* errors are reported if <verbose> is set or if they are fatal */
577 if (verbose || (lerr & (ERR_FATAL | ERR_ABORT))) {
578 if (lerr & ERR_ALERT)
579 Alert("Starting %s %s: %s\n",
580 proxy_type_str(curproxy), curproxy->id, msg);
581 else if (lerr & ERR_WARN)
582 Warning("Starting %s %s: %s\n",
583 proxy_type_str(curproxy), curproxy->id, msg);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200584 }
585
Willy Tarreaue6b98942007-10-29 01:09:36 +0100586 err |= lerr;
587 if (lerr & (ERR_ABORT | ERR_FATAL)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200588 pxerr |= 1;
Willy Tarreaue6b98942007-10-29 01:09:36 +0100589 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200590 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100591 else if (lerr & ERR_CODE) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200592 pxerr |= 1;
593 continue;
594 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200595 }
596
597 if (!pxerr) {
Willy Tarreau562515c2011-07-25 08:11:52 +0200598 curproxy->state = PR_STREADY;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200599 send_log(curproxy, LOG_NOTICE, "Proxy %s started.\n", curproxy->id);
600 }
Willy Tarreaue6b98942007-10-29 01:09:36 +0100601
602 if (err & ERR_ABORT)
603 break;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200604 }
605
606 return err;
607}
608
609
610/*
Willy Tarreau918ff602011-07-25 16:33:49 +0200611 * This is the proxy management task. It enables proxies when there are enough
612 * free sessions, or stops them when the table is full. It is designed to be
613 * called as a task which is woken up upon stopping or when rate limiting must
614 * be enforced.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200615 */
Willy Tarreau918ff602011-07-25 16:33:49 +0200616struct task *manage_proxy(struct task *t)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200617{
Willy Tarreau918ff602011-07-25 16:33:49 +0200618 struct proxy *p = t->context;
619 int next = TICK_ETERNITY;
Willy Tarreau79584222009-03-06 09:18:27 +0100620 unsigned int wait;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200621
Willy Tarreau918ff602011-07-25 16:33:49 +0200622 /* We should periodically try to enable listeners waiting for a
623 * global resource here.
624 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200625
Willy Tarreau918ff602011-07-25 16:33:49 +0200626 /* first, let's check if we need to stop the proxy */
627 if (unlikely(stopping && p->state != PR_STSTOPPED)) {
628 int t;
629 t = tick_remain(now_ms, p->stop_time);
630 if (t == 0) {
631 Warning("Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
632 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
633 send_log(p, LOG_WARNING, "Proxy %s stopped (FE: %lld conns, BE: %lld conns).\n",
634 p->id, p->fe_counters.cum_conn, p->be_counters.cum_conn);
635 stop_proxy(p);
636 /* try to free more memory */
637 pool_gc2();
638 }
639 else {
640 next = tick_first(next, p->stop_time);
641 }
642 }
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200643
Willy Tarreau3a925c12013-09-04 17:54:01 +0200644 /* If the proxy holds a stick table, we need to purge all unused
645 * entries. These are all the ones in the table with ref_cnt == 0
646 * and all the ones in the pool used to allocate new entries. Any
647 * entry attached to an existing session waiting for a store will
648 * be in neither list. Any entry being dumped will have ref_cnt > 0.
649 * However we protect tables that are being synced to peers.
650 */
651 if (unlikely(stopping && p->state == PR_STSTOPPED && p->table.current)) {
652 if (!p->table.syncing) {
653 stktable_trash_oldest(&p->table, p->table.current);
654 pool_gc2();
655 }
656 if (p->table.current) {
657 /* some entries still remain, let's recheck in one second */
658 next = tick_first(next, tick_add(now_ms, 1000));
659 }
660 }
661
Willy Tarreau918ff602011-07-25 16:33:49 +0200662 /* the rest below is just for frontends */
663 if (!(p->cap & PR_CAP_FE))
664 goto out;
Willy Tarreauf3f8c702011-07-25 07:37:28 +0200665
Willy Tarreau918ff602011-07-25 16:33:49 +0200666 /* check the various reasons we may find to block the frontend */
667 if (unlikely(p->feconn >= p->maxconn)) {
668 if (p->state == PR_STREADY)
669 p->state = PR_STFULL;
670 goto out;
671 }
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100672
Willy Tarreau918ff602011-07-25 16:33:49 +0200673 /* OK we have no reason to block, so let's unblock if we were blocking */
674 if (p->state == PR_STFULL)
675 p->state = PR_STREADY;
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100676
Willy Tarreau918ff602011-07-25 16:33:49 +0200677 if (p->fe_sps_lim &&
678 (wait = next_event_delay(&p->fe_sess_per_sec, p->fe_sps_lim, 0))) {
679 /* we're blocking because a limit was reached on the number of
680 * requests/s on the frontend. We want to re-check ASAP, which
681 * means in 1 ms before estimated expiration date, because the
682 * timer will have settled down.
683 */
684 next = tick_first(next, tick_add(now_ms, wait));
685 goto out;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200686 }
Willy Tarreau918ff602011-07-25 16:33:49 +0200687
688 /* The proxy is not limited so we can re-enable any waiting listener */
689 if (!LIST_ISEMPTY(&p->listener_queue))
690 dequeue_all_listeners(&p->listener_queue);
691 out:
692 t->expire = next;
693 task_queue(t);
694 return t;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200695}
696
697
698/*
699 * this function disables health-check servers so that the process will quickly be ignored
700 * by load balancers. Note that if a proxy was already in the PAUSED state, then its grace
701 * time will not be used since it would already not listen anymore to the socket.
702 */
703void soft_stop(void)
704{
705 struct proxy *p;
Willy Tarreaubbe11b12011-07-25 11:16:24 +0200706 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200707
708 stopping = 1;
709 p = proxy;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200710 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200711 while (p) {
712 if (p->state != PR_STSTOPPED) {
Willy Tarreauf8fbcef2008-10-10 17:51:34 +0200713 Warning("Stopping %s %s in %d ms.\n", proxy_cap_str(p->cap), p->id, p->grace);
714 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 +0200715 p->stop_time = tick_add(now_ms, p->grace);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200716 }
Emeric Brun5a8c0a92010-09-23 18:44:36 +0200717 if (p->table.size && p->table.sync_task)
718 task_wakeup(p->table.sync_task, TASK_WOKEN_MSG);
719
Willy Tarreau918ff602011-07-25 16:33:49 +0200720 /* wake every proxy task up so that they can handle the stopping */
Willy Tarreaud1a33e32012-10-04 00:14:33 +0200721 if (p->task)
722 task_wakeup(p->task, TASK_WOKEN_MSG);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200723 p = p->next;
724 }
Willy Tarreaubbe11b12011-07-25 11:16:24 +0200725
726 prs = peers;
727 while (prs) {
728 stop_proxy((struct proxy *)prs->peers_fe);
729 prs = prs->next;
730 }
Willy Tarreaud0807c32010-08-27 18:26:11 +0200731 /* signal zero is used to broadcast the "stopping" event */
732 signal_handler(0);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200733}
734
735
Willy Tarreaube58c382011-07-24 18:28:10 +0200736/* Temporarily disables listening on all of the proxy's listeners. Upon
737 * success, the proxy enters the PR_PAUSED state. If disabling at least one
738 * listener returns an error, then the proxy state is set to PR_STERROR
Willy Tarreauce8fe252011-09-07 19:14:57 +0200739 * because we don't know how to resume from this. The function returns 0
740 * if it fails, or non-zero on success.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200741 */
Willy Tarreauce8fe252011-09-07 19:14:57 +0200742int pause_proxy(struct proxy *p)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200743{
744 struct listener *l;
Willy Tarreauce8fe252011-09-07 19:14:57 +0200745
746 if (!(p->cap & PR_CAP_FE) || p->state == PR_STERROR ||
747 p->state == PR_STSTOPPED || p->state == PR_STPAUSED)
748 return 1;
749
750 Warning("Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
751 send_log(p, LOG_WARNING, "Pausing %s %s.\n", proxy_cap_str(p->cap), p->id);
752
Willy Tarreau4348fad2012-09-20 16:48:07 +0200753 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreaube58c382011-07-24 18:28:10 +0200754 if (!pause_listener(l))
Willy Tarreaubaaee002006-06-26 02:48:02 +0200755 p->state = PR_STERROR;
756 }
Willy Tarreauce8fe252011-09-07 19:14:57 +0200757
758 if (p->state == PR_STERROR) {
759 Warning("%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
760 send_log(p, LOG_WARNING, "%s %s failed to enter pause mode.\n", proxy_cap_str(p->cap), p->id);
761 return 0;
762 }
763
764 p->state = PR_STPAUSED;
765 return 1;
Willy Tarreauda250db2008-10-12 12:07:48 +0200766}
767
768
769/*
770 * This function completely stops a proxy and releases its listeners. It has
771 * to be called when going down in order to release the ports so that another
772 * process may bind to them. It must also be called on disabled proxies at the
773 * end of start-up. When all listeners are closed, the proxy is set to the
774 * PR_STSTOPPED state.
775 */
776void stop_proxy(struct proxy *p)
777{
778 struct listener *l;
779
Willy Tarreau4348fad2012-09-20 16:48:07 +0200780 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreauda250db2008-10-12 12:07:48 +0200781 unbind_listener(l);
782 if (l->state >= LI_ASSIGNED) {
783 delete_listener(l);
784 listeners--;
Willy Tarreauaf7ad002010-08-31 15:39:26 +0200785 jobs--;
Willy Tarreauda250db2008-10-12 12:07:48 +0200786 }
787 }
788 p->state = PR_STSTOPPED;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200789}
790
Willy Tarreauc03ebbf2011-09-07 21:33:14 +0200791/* This function resumes listening on the specified proxy. It scans all of its
792 * listeners and tries to enable them all. If any of them fails, the proxy is
793 * put back to the paused state. It returns 1 upon success, or zero if an error
794 * is encountered.
795 */
796int resume_proxy(struct proxy *p)
797{
798 struct listener *l;
799 int fail;
800
801 if (p->state != PR_STPAUSED)
802 return 1;
803
804 Warning("Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
805 send_log(p, LOG_WARNING, "Enabling %s %s.\n", proxy_cap_str(p->cap), p->id);
806
807 fail = 0;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200808 list_for_each_entry(l, &p->conf.listeners, by_fe) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +0200809 if (!resume_listener(l)) {
810 int port;
811
812 port = get_host_port(&l->addr);
813 if (port) {
814 Warning("Port %d busy while trying to enable %s %s.\n",
815 port, proxy_cap_str(p->cap), p->id);
816 send_log(p, LOG_WARNING, "Port %d busy while trying to enable %s %s.\n",
817 port, proxy_cap_str(p->cap), p->id);
818 }
819 else {
820 Warning("Bind on socket %d busy while trying to enable %s %s.\n",
821 l->luid, proxy_cap_str(p->cap), p->id);
822 send_log(p, LOG_WARNING, "Bind on socket %d busy while trying to enable %s %s.\n",
823 l->luid, proxy_cap_str(p->cap), p->id);
824 }
825
826 /* Another port might have been enabled. Let's stop everything. */
827 fail = 1;
828 break;
829 }
830 }
831
832 p->state = PR_STREADY;
833 if (fail) {
834 pause_proxy(p);
835 return 0;
836 }
837 return 1;
838}
839
Willy Tarreaubaaee002006-06-26 02:48:02 +0200840/*
841 * This function temporarily disables listening so that another new instance
842 * can start listening. It is designed to be called upon reception of a
843 * SIGTTOU, after which either a SIGUSR1 can be sent to completely stop
844 * the proxy, or a SIGTTIN can be sent to listen again.
845 */
846void pause_proxies(void)
847{
848 int err;
849 struct proxy *p;
Emeric Brun5a8c0a92010-09-23 18:44:36 +0200850 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200851
852 err = 0;
853 p = proxy;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200854 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200855 while (p) {
Willy Tarreauce8fe252011-09-07 19:14:57 +0200856 err |= !pause_proxy(p);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200857 p = p->next;
858 }
Emeric Brun5a8c0a92010-09-23 18:44:36 +0200859
860 prs = peers;
861 while (prs) {
862 p = prs->peers_fe;
Willy Tarreauce8fe252011-09-07 19:14:57 +0200863 err |= !pause_proxy(p);
864 prs = prs->next;
Emeric Brun5a8c0a92010-09-23 18:44:36 +0200865 }
866
Willy Tarreaubaaee002006-06-26 02:48:02 +0200867 if (err) {
868 Warning("Some proxies refused to pause, performing soft stop now.\n");
869 send_log(p, LOG_WARNING, "Some proxies refused to pause, performing soft stop now.\n");
870 soft_stop();
871 }
872}
873
874
875/*
876 * This function reactivates listening. This can be used after a call to
877 * sig_pause(), for example when a new instance has failed starting up.
878 * It is designed to be called upon reception of a SIGTTIN.
879 */
Willy Tarreaube58c382011-07-24 18:28:10 +0200880void resume_proxies(void)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200881{
Willy Tarreauc03ebbf2011-09-07 21:33:14 +0200882 int err;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200883 struct proxy *p;
Willy Tarreauc03ebbf2011-09-07 21:33:14 +0200884 struct peers *prs;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200885
Willy Tarreauc03ebbf2011-09-07 21:33:14 +0200886 err = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200887 p = proxy;
Willy Tarreaub0b37bc2008-06-23 14:00:57 +0200888 tv_update_date(0,1); /* else, the old time before select will be used */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200889 while (p) {
Willy Tarreauc03ebbf2011-09-07 21:33:14 +0200890 err |= !resume_proxy(p);
891 p = p->next;
892 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200893
Willy Tarreauc03ebbf2011-09-07 21:33:14 +0200894 prs = peers;
895 while (prs) {
896 p = prs->peers_fe;
897 err |= !resume_proxy(p);
898 prs = prs->next;
899 }
Willy Tarreaube58c382011-07-24 18:28:10 +0200900
Willy Tarreauc03ebbf2011-09-07 21:33:14 +0200901 if (err) {
902 Warning("Some proxies refused to resume, a restart is probably needed to resume safe operations.\n");
903 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 +0200904 }
905}
906
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200907/* Set current session's backend to <be>. Nothing is done if the
908 * session already had a backend assigned, which is indicated by
909 * s->flags & SN_BE_ASSIGNED.
910 * All flags, stats and counters which need be updated are updated.
Willy Tarreaubedb9ba2009-07-12 08:27:39 +0200911 * Returns 1 if done, 0 in case of internal error, eg: lack of resource.
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200912 */
Willy Tarreaubedb9ba2009-07-12 08:27:39 +0200913int session_set_backend(struct session *s, struct proxy *be)
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200914{
915 if (s->flags & SN_BE_ASSIGNED)
Willy Tarreaubedb9ba2009-07-12 08:27:39 +0200916 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200917 s->be = be;
918 be->beconn++;
Willy Tarreau7d0aaf32011-03-10 23:25:56 +0100919 if (be->beconn > be->be_counters.conn_max)
920 be->be_counters.conn_max = be->beconn;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200921 proxy_inc_be_ctr(be);
922
923 /* assign new parameters to the session from the new backend */
Willy Tarreauf27b5ea2009-10-03 22:01:18 +0200924 s->si[1].flags &= ~SI_FL_INDEP_STR;
925 if (be->options2 & PR_O2_INDEPSTR)
926 s->si[1].flags |= SI_FL_INDEP_STR;
927
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200928 if (be->options2 & PR_O2_RSPBUG_OK)
929 s->txn.rsp.err_pos = -1; /* let buggy responses pass */
930 s->flags |= SN_BE_ASSIGNED;
Willy Tarreau51aecc72009-07-12 09:47:04 +0200931
932 /* If the target backend requires HTTP processing, we have to allocate
933 * a struct hdr_idx for it if we did not have one.
934 */
Willy Tarreau25320b22013-03-24 07:22:08 +0100935 if (unlikely(!s->txn.hdr_idx.v && be->http_needed)) {
Willy Tarreauf767ac52014-04-28 16:13:51 +0200936 s->txn.hdr_idx.size = global.tune.max_http_hdr;
Willy Tarreau34eb6712011-10-24 18:15:04 +0200937 if ((s->txn.hdr_idx.v = pool_alloc2(pool2_hdr_idx)) == NULL)
Willy Tarreau51aecc72009-07-12 09:47:04 +0200938 return 0; /* not enough memory */
Willy Tarreau39e4f622010-05-31 17:01:36 +0200939
940 /* and now initialize the HTTP transaction state */
941 http_init_txn(s);
Willy Tarreau51aecc72009-07-12 09:47:04 +0200942 }
943
Willy Tarreau80a92c02014-03-12 10:41:13 +0100944 /* If an LB algorithm needs to access some pre-parsed body contents,
945 * we must not start to forward anything until the connection is
946 * confirmed otherwise we'll lose the pointer to these data and
947 * prevent the hash from being doable again after a redispatch.
948 */
949 if (be->mode == PR_MODE_HTTP &&
950 (be->lbprm.algo & (BE_LB_KIND | BE_LB_PARM)) == (BE_LB_KIND_HI | BE_LB_HASH_PRM))
951 s->txn.req.flags |= HTTP_MSGF_WAIT_CONN;
952
Willy Tarreau96e31212011-05-30 18:10:30 +0200953 if (be->options2 & PR_O2_NODELAY) {
Willy Tarreau03cdb7c2012-08-27 23:14:58 +0200954 s->req->flags |= CF_NEVER_WAIT;
955 s->rep->flags |= CF_NEVER_WAIT;
Willy Tarreau96e31212011-05-30 18:10:30 +0200956 }
957
Willy Tarreauc1a21672009-08-16 22:37:44 +0200958 /* We want to enable the backend-specific analysers except those which
959 * were already run as part of the frontend/listener. Note that it would
960 * be more reliable to store the list of analysers that have been run,
961 * but what we do here is OK for now.
Emeric Brun647caf12009-06-30 17:57:00 +0200962 */
Willy Tarreauc1a21672009-08-16 22:37:44 +0200963 s->req->analysers |= be->be_req_ana & ~(s->listener->analysers);
Emeric Brun647caf12009-06-30 17:57:00 +0200964
Willy Tarreaubedb9ba2009-07-12 08:27:39 +0200965 return 1;
Willy Tarreau1d0dfb12009-07-07 15:10:31 +0200966}
967
Willy Tarreaudc13c112013-06-21 23:16:39 +0200968static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200969 { CFG_LISTEN, "timeout", proxy_parse_timeout },
970 { CFG_LISTEN, "clitimeout", proxy_parse_timeout },
971 { CFG_LISTEN, "contimeout", proxy_parse_timeout },
972 { CFG_LISTEN, "srvtimeout", proxy_parse_timeout },
Willy Tarreau3a7d2072009-03-05 23:48:25 +0100973 { CFG_LISTEN, "rate-limit", proxy_parse_rate_limit },
Willy Tarreauc35362a2014-04-25 13:58:37 +0200974 { CFG_LISTEN, "max-keep-alive-queue", proxy_parse_max_ka_queue },
Willy Tarreau9de1bbd2008-07-09 20:34:27 +0200975 { 0, NULL, NULL },
976}};
977
978__attribute__((constructor))
979static void __proxy_module_init(void)
980{
981 cfg_register_keywords(&cfg_kws);
982}
Willy Tarreaubaaee002006-06-26 02:48:02 +0200983
984/*
985 * Local variables:
986 * c-indent-level: 8
987 * c-basic-offset: 8
988 * End:
989 */