blob: 9d8ef65ad5c05558a4c94c7fd4b1487ef6cfcf5d [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Configuration parser
3 *
Willy Tarreauff011f22011-01-06 17:51:27 +01004 * Copyright 2000-2011 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
Willy Tarreaue5733232019-05-22 19:24:06 +020013#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +020014/* This is to have crypt() defined on Linux */
15#define _GNU_SOURCE
16
Willy Tarreaue5733232019-05-22 19:24:06 +020017#ifdef USE_CRYPT_H
Cyril Bonté1a0191d2014-08-29 20:20:02 +020018/* some platforms such as Solaris need this */
19#include <crypt.h>
20#endif
Willy Tarreaue5733232019-05-22 19:24:06 +020021#endif /* USE_LIBCRYPT */
Cyril Bonté1a0191d2014-08-29 20:20:02 +020022
Willy Tarreaubaaee002006-06-26 02:48:02 +020023#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <netdb.h>
27#include <ctype.h>
Willy Tarreau95c20ac2007-03-25 15:39:23 +020028#include <pwd.h>
29#include <grp.h>
Willy Tarreau0b4ed902007-03-26 00:18:40 +020030#include <errno.h>
Willy Tarreau3f49b302007-06-11 00:29:26 +020031#include <sys/types.h>
32#include <sys/stat.h>
33#include <fcntl.h>
34#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035
Willy Tarreaudcc048a2020-06-04 19:11:43 +020036#include <haproxy/acl.h>
Willy Tarreau122eba92020-06-04 10:15:32 +020037#include <haproxy/action-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020038#include <haproxy/api.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020039#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020040#include <haproxy/backend.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020041#include <haproxy/capture.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020042#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020043#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020044#include <haproxy/check.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020045#include <haproxy/chunk.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020046#include <haproxy/connection.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020047#include <haproxy/dns.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020048#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020049#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020050#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020051#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020052#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020053#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020054#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020055#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020056#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020057#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020058#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020059#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020060#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020061#include <haproxy/mailers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020062#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020063#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020064#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020065#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020066#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020067#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020068#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020069#include <haproxy/sample.h>
70#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020071#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020072#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020073#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020074#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020075#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020076#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020077#include <haproxy/thread.h>
78#include <haproxy/time.h>
79#include <haproxy/tools.h>
80#include <haproxy/uri_auth-t.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020081
82
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010083/* Used to chain configuration sections definitions. This list
84 * stores struct cfg_section
85 */
86struct list sections = LIST_HEAD_INIT(sections);
87
William Lallemand48b4bb42017-10-23 14:36:34 +020088struct list postparsers = LIST_HEAD_INIT(postparsers);
89
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010090char *cursection = NULL;
91struct proxy defproxy = { }; /* fake proxy used to assign default values on all instances */
Willy Tarreauc8d5b952019-02-27 17:25:52 +010092int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +010093int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +010094char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +020095
Willy Tarreau5b2c3362008-07-09 19:39:06 +020096/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +010097struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +020098 .list = LIST_HEAD_INIT(cfg_keywords.list)
99};
100
Willy Tarreaubaaee002006-06-26 02:48:02 +0200101/*
102 * converts <str> to a list of listeners which are dynamically allocated.
103 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
104 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
105 * - <port> is a numerical port from 1 to 65535 ;
106 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
107 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200108 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
109 * not NULL, it must be a valid pointer to either NULL or a freeable area that
110 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200111 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200112int str2listener(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200113{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200114 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100115 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200116 int port, end;
117
118 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200119
Willy Tarreaubaaee002006-06-26 02:48:02 +0200120 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200121 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100122 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200123
124 str = next;
125 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100126 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200127 *next++ = 0;
128 }
129
Willy Tarreau5fc93282020-09-16 18:25:03 +0200130 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200131 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200132 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200133 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100134 if (!ss2)
135 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200136
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100137 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200138 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200139 memprintf(err, "%s for address '%s'.\n", *err, str);
140 goto fail;
141 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200142 } /* end while(next) */
143 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200144 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200145 fail:
146 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200147 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200148}
149
William Lallemand6e62fb62015-04-28 16:55:23 +0200150/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200151 * converts <str> to a list of datagram-oriented listeners which are dynamically
152 * allocated.
153 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
154 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
155 * - <port> is a numerical port from 1 to 65535 ;
156 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
157 * This can be repeated as many times as necessary, separated by a coma.
158 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
159 * not NULL, it must be a valid pointer to either NULL or a freeable area that
160 * will be replaced with an error message.
161 */
162int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
163{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200164 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200165 char *next, *dupstr;
166 int port, end;
167
168 next = dupstr = strdup(str);
169
170 while (next && *next) {
171 struct sockaddr_storage *ss2;
172 int fd = -1;
173
174 str = next;
175 /* 1) look for the end of the first address */
176 if ((next = strchr(str, ',')) != NULL) {
177 *next++ = 0;
178 }
179
Willy Tarreau5fc93282020-09-16 18:25:03 +0200180 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreauaa333122020-09-16 15:13:04 +0200181 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
182 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
183 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
184 if (!ss2)
185 goto fail;
186
187 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200188 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200189 memprintf(err, "%s for address '%s'.\n", *err, str);
190 goto fail;
191 }
192 } /* end while(next) */
193 free(dupstr);
194 return 1;
195 fail:
196 free(dupstr);
197 return 0;
198}
199
200/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100201 * Report an error in <msg> when there are too many arguments. This version is
202 * intended to be used by keyword parsers so that the message will be included
203 * into the general error message. The index is the current keyword in args.
204 * Return 0 if the number of argument is correct, otherwise build a message and
205 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
206 * message may also be null, it will simply not be produced (useful to check only).
207 * <msg> and <err_code> are only affected on error.
208 */
209int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
210{
211 int i;
212
213 if (!*args[index + maxarg + 1])
214 return 0;
215
216 if (msg) {
217 *msg = NULL;
218 memprintf(msg, "%s", args[0]);
219 for (i = 1; i <= index; i++)
220 memprintf(msg, "%s %s", *msg, args[i]);
221
222 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
223 }
224 if (err_code)
225 *err_code |= ERR_ALERT | ERR_FATAL;
226
227 return 1;
228}
229
230/*
231 * same as too_many_args_idx with a 0 index
232 */
233int too_many_args(int maxarg, char **args, char **msg, int *err_code)
234{
235 return too_many_args_idx(maxarg, 0, args, msg, err_code);
236}
237
238/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200239 * Report a fatal Alert when there is too much arguments
240 * The index is the current keyword in args
241 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
242 * Fill err_code with an ERR_ALERT and an ERR_FATAL
243 */
244int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
245{
246 char *kw = NULL;
247 int i;
248
249 if (!*args[index + maxarg + 1])
250 return 0;
251
252 memprintf(&kw, "%s", args[0]);
253 for (i = 1; i <= index; i++) {
254 memprintf(&kw, "%s %s", kw, args[i]);
255 }
256
Christopher Faulet767a84b2017-11-24 16:50:31 +0100257 ha_alert("parsing [%s:%d] : '%s' cannot handle unexpected argument '%s'.\n", file, linenum, kw, args[index + maxarg + 1]);
William Lallemand6e62fb62015-04-28 16:55:23 +0200258 free(kw);
259 *err_code |= ERR_ALERT | ERR_FATAL;
260 return 1;
261}
262
263/*
264 * same as alertif_too_many_args_idx with a 0 index
265 */
266int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
267{
268 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
269}
270
Willy Tarreau61d18892009-03-31 10:49:21 +0200271
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100272/* Report it if a request ACL condition uses some keywords that are incompatible
273 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
274 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
275 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100276 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100277int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100278{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100279 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200280 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100281
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100282 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100283 return 0;
284
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100285 acl = acl_cond_conflicts(cond, where);
286 if (acl) {
287 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100288 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
289 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100290 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100291 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
292 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100293 return ERR_WARN;
294 }
295 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100296 return 0;
297
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100298 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100299 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
300 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100301 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100302 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
303 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100304 return ERR_WARN;
305}
306
Christopher Faulet62519022017-10-16 15:49:32 +0200307/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100308 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100309 * two such numbers delimited by a dash ('-'). On success, it returns
310 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200311 *
312 * Note: this function can also be used to parse a thread number or a set of
313 * threads.
314 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100315int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200316{
Christopher Faulet26028f62017-11-22 15:01:51 +0100317 if (autoinc) {
318 *autoinc = 0;
319 if (strncmp(arg, "auto:", 5) == 0) {
320 arg += 5;
321 *autoinc = 1;
322 }
323 }
324
Christopher Faulet62519022017-10-16 15:49:32 +0200325 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100326 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200327 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100328 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200329 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100330 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200331 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100332 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100333 unsigned int low, high;
334
Christopher Faulet18cca782019-02-07 16:29:41 +0100335 for (p = arg; *p; p++) {
336 if (*p == '-' && !dash)
337 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100338 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100339 memprintf(err, "'%s' is not a valid number/range.", arg);
340 return -1;
341 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100342 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100343
344 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100345 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100346 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100347
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100348 if (high < low) {
349 unsigned int swap = low;
350 low = high;
351 high = swap;
352 }
353
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100354 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100355 memprintf(err, "'%s' is not a valid number/range."
356 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100357 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100358 return 1;
359 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100360
361 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100362 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200363 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100364 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100365
Christopher Faulet5ab51772017-11-22 11:21:58 +0100366 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200367}
368
David Carlier7e351ee2017-12-01 09:14:02 +0000369#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200370/* Parse cpu sets. Each CPU set is either a unique number between 0 and
371 * <LONGBITS> or a range with two such numbers delimited by a dash
372 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
373 * returns 0. otherwise it returns 1 with an error message in <err>.
374 */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100375unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200376{
377 int cur_arg = 0;
378
379 *cpu_set = 0;
380 while (*args[cur_arg]) {
381 char *dash;
382 unsigned int low, high;
383
Willy Tarreau90807112020-02-25 08:16:33 +0100384 if (!isdigit((unsigned char)*args[cur_arg])) {
Christopher Faulet62519022017-10-16 15:49:32 +0200385 memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
386 return -1;
387 }
388
389 low = high = str2uic(args[cur_arg]);
390 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100391 high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
Christopher Faulet62519022017-10-16 15:49:32 +0200392
393 if (high < low) {
394 unsigned int swap = low;
395 low = high;
396 high = swap;
397 }
398
399 if (high >= LONGBITS) {
400 memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
401 return 1;
402 }
403
404 while (low <= high)
405 *cpu_set |= 1UL << low++;
406
407 cur_arg++;
408 }
409 return 0;
410}
David Carlier7e351ee2017-12-01 09:14:02 +0000411#endif
412
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200413void init_default_instance()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200414{
Willy Tarreau97cb7802010-01-03 20:23:58 +0100415 init_new_proxy(&defproxy);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200416 defproxy.mode = PR_MODE_TCP;
417 defproxy.state = PR_STNEW;
418 defproxy.maxconn = cfg_maxpconn;
419 defproxy.conn_retries = CONN_RETRIES;
Joseph Lynch726ab712015-05-11 23:25:34 -0700420 defproxy.redispatch_after = 0;
Olivier Houchard86006a52018-12-14 19:37:49 +0100421 defproxy.options = PR_O_REUSE_SAFE;
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +0100422 defproxy.max_out_conns = MAX_SRV_LIST;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100423
Simon Horman66183002013-02-23 10:16:43 +0900424 defproxy.defsrv.check.inter = DEF_CHKINTR;
425 defproxy.defsrv.check.fastinter = 0;
426 defproxy.defsrv.check.downinter = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900427 defproxy.defsrv.agent.inter = DEF_CHKINTR;
428 defproxy.defsrv.agent.fastinter = 0;
429 defproxy.defsrv.agent.downinter = 0;
Simon Horman58c32972013-11-25 10:46:38 +0900430 defproxy.defsrv.check.rise = DEF_RISETIME;
431 defproxy.defsrv.check.fall = DEF_FALLTIME;
432 defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME;
433 defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME;
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200434 defproxy.defsrv.check.port = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900435 defproxy.defsrv.agent.port = 0;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100436 defproxy.defsrv.maxqueue = 0;
437 defproxy.defsrv.minconn = 0;
438 defproxy.defsrv.maxconn = 0;
Willy Tarreau9c538e02019-01-23 10:21:49 +0100439 defproxy.defsrv.max_reuse = -1;
Olivier Houchard006e3102018-12-10 18:30:32 +0100440 defproxy.defsrv.max_idle_conns = -1;
Willy Tarreau975b1552019-06-06 16:25:55 +0200441 defproxy.defsrv.pool_purge_delay = 5000;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100442 defproxy.defsrv.slowstart = 0;
443 defproxy.defsrv.onerror = DEF_HANA_ONERR;
444 defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT;
445 defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1;
Simon Horman64e34162015-02-06 11:11:57 +0900446
447 defproxy.email_alert.level = LOG_ALERT;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +0200448 defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200449}
450
Frédéric Lécaille18251032019-01-11 11:07:15 +0100451/* Allocate and initialize the frontend of a "peers" section found in
452 * file <file> at line <linenum> with <id> as ID.
453 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200454 * Note that this function may be called from "default-server"
455 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100456 */
457static int init_peers_frontend(const char *file, int linenum,
458 const char *id, struct peers *peers)
459{
460 struct proxy *p;
461
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200462 if (peers->peers_fe) {
463 p = peers->peers_fe;
464 goto out;
465 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100466
Frédéric Lécaille18251032019-01-11 11:07:15 +0100467 p = calloc(1, sizeof *p);
468 if (!p) {
469 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
470 return -1;
471 }
472
473 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200474 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100475 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200476 /* Finally store this frontend. */
477 peers->peers_fe = p;
478
479 out:
480 if (id && !p->id)
481 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200482 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100483 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100484 if (linenum != -1)
485 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100486
487 return 0;
488}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100489
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100490/* Only change ->file, ->line and ->arg struct bind_conf member values
491 * if already present.
492 */
493static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
494 const char *file, int line,
495 const char *arg, struct xprt_ops *xprt)
496{
497 struct bind_conf *bind_conf;
498
499 if (!LIST_ISEMPTY(&p->conf.bind)) {
500 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
501 free(bind_conf->file);
502 bind_conf->file = strdup(file);
503 bind_conf->line = line;
504 if (arg) {
505 free(bind_conf->arg);
506 bind_conf->arg = strdup(arg);
507 }
508 }
509 else {
510 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
511 }
512
513 return bind_conf;
514}
515
516/*
517 * Allocate a new struct peer parsed at line <linenum> in file <file>
518 * to be added to <peers>.
519 * Returns the new allocated structure if succeeded, NULL if not.
520 */
521static struct peer *cfg_peers_add_peer(struct peers *peers,
522 const char *file, int linenum,
523 const char *id, int local)
524{
525 struct peer *p;
526
527 p = calloc(1, sizeof *p);
528 if (!p) {
529 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
530 return NULL;
531 }
532
533 /* the peers are linked backwards first */
534 peers->count++;
535 p->next = peers->remote;
536 peers->remote = p;
537 p->conf.file = strdup(file);
538 p->conf.line = linenum;
539 p->last_change = now.tv_sec;
540 p->xprt = xprt_get(XPRT_RAW);
541 p->sock_init_arg = NULL;
542 HA_SPIN_INIT(&p->lock);
543 if (id)
544 p->id = strdup(id);
545 if (local) {
546 p->local = 1;
547 peers->local = p;
548 }
549
550 return p;
551}
552
Willy Tarreaubaaee002006-06-26 02:48:02 +0200553/*
William Lallemand51097192015-04-14 16:35:22 +0200554 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200555 * Returns the error code, 0 if OK, or any combination of :
556 * - ERR_ABORT: must abort ASAP
557 * - ERR_FATAL: we can continue parsing but not start the service
558 * - ERR_WARN: a warning has been emitted
559 * - ERR_ALERT: an alert has been emitted
560 * Only the two first ones can stop processing, the two others are just
561 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200562 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200563int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
564{
565 static struct peers *curpeers = NULL;
566 struct peer *newpeer = NULL;
567 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200568 struct bind_conf *bind_conf;
569 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200570 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100571 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100572 static int bind_line, peer_line;
573
574 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
575 int cur_arg;
576 static int kws_dumped;
577 struct bind_conf *bind_conf;
578 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200579
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100580 cur_arg = 1;
581
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200582 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
583 err_code |= ERR_ALERT | ERR_ABORT;
584 goto out;
585 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100586
587 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
588 NULL, xprt_get(XPRT_RAW));
589 if (*args[0] == 'b') {
590 struct listener *l;
591
592 if (peer_line) {
593 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
594 err_code |= ERR_ALERT | ERR_FATAL;
595 goto out;
596 }
597
598 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
599 if (errmsg && *errmsg) {
600 indent_msg(&errmsg, 2);
601 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
602 }
603 else
604 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
605 file, linenum, args[0], args[1], args[2]);
606 err_code |= ERR_FATAL;
607 goto out;
608 }
609 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
610 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100611 l->accept = session_accept_fd;
612 l->analysers |= curpeers->peers_fe->fe_req_ana;
613 l->default_target = curpeers->peers_fe->default_target;
614 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100615 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100616
617 bind_line = 1;
618 if (cfg_peers->local) {
619 newpeer = cfg_peers->local;
620 }
621 else {
622 /* This peer is local.
623 * Note that we do not set the peer ID. This latter is initialized
624 * when parsing "peer" or "server" line.
625 */
626 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
627 if (!newpeer) {
628 err_code |= ERR_ALERT | ERR_ABORT;
629 goto out;
630 }
631 }
Willy Tarreau37159062020-08-27 07:48:42 +0200632 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200633 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100634 cur_arg++;
635 }
636
637 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
638 int ret;
639
640 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
641 err_code |= ret;
642 if (ret) {
643 if (errmsg && *errmsg) {
644 indent_msg(&errmsg, 2);
645 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
646 }
647 else
648 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
649 file, linenum, args[cur_arg]);
650 if (ret & ERR_FATAL)
651 goto out;
652 }
653 cur_arg += 1 + kw->skip;
654 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100655 if (*args[cur_arg] != 0) {
Tim Duesterhus04bcaa12019-05-12 22:54:50 +0200656 char *kws = NULL;
657
658 if (!kws_dumped) {
659 kws_dumped = 1;
660 bind_dump_kws(&kws);
661 indent_msg(&kws, 4);
662 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100663 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.%s%s\n",
664 file, linenum, args[cur_arg], cursection,
665 kws ? " Registered keywords :" : "", kws ? kws: "");
666 free(kws);
667 err_code |= ERR_ALERT | ERR_FATAL;
668 goto out;
669 }
670 }
671 else if (strcmp(args[0], "default-server") == 0) {
672 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
673 err_code |= ERR_ALERT | ERR_ABORT;
674 goto out;
675 }
Emeric Brund3db3842020-07-21 16:54:36 +0200676 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, 0, 1, 1);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200677 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100678 else if (strcmp(args[0], "log") == 0) {
679 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
680 err_code |= ERR_ALERT | ERR_ABORT;
681 goto out;
682 }
683 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), &errmsg)) {
684 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
685 err_code |= ERR_ALERT | ERR_FATAL;
686 goto out;
687 }
688 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200689 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100690 /* Initialize these static variables when entering a new "peers" section*/
691 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100692 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100693 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100694 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100695 goto out;
696 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200697
William Lallemand6e62fb62015-04-28 16:55:23 +0200698 if (alertif_too_many_args(1, file, linenum, args, &err_code))
699 goto out;
700
Emeric Brun32da3c42010-09-23 18:39:19 +0200701 err = invalid_char(args[1]);
702 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100703 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
704 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100705 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100706 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200707 }
708
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200709 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200710 /*
711 * If there are two proxies with the same name only following
712 * combinations are allowed:
713 */
714 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100715 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
716 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200717 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200718 }
719 }
720
Vincent Bernat02779b62016-04-03 13:48:43 +0200721 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100722 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200723 err_code |= ERR_ALERT | ERR_ABORT;
724 goto out;
725 }
726
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200727 curpeers->next = cfg_peers;
728 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200729 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200730 curpeers->conf.line = linenum;
731 curpeers->last_change = now.tv_sec;
732 curpeers->id = strdup(args[1]);
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200733 curpeers->state = PR_STNEW;
Emeric Brun32da3c42010-09-23 18:39:19 +0200734 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200735 else if (strcmp(args[0], "peer") == 0 ||
736 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100737 int local_peer, peer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200738
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100739 peer = *args[0] == 'p';
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100740 local_peer = !strcmp(args[1], localpeer);
741 /* The local peer may have already partially been parsed on a "bind" line. */
742 if (*args[0] == 'p') {
743 if (bind_line) {
744 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
745 err_code |= ERR_ALERT | ERR_FATAL;
746 goto out;
747 }
748 peer_line = 1;
749 }
750 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
751 /* The local peer has already been initialized on a "bind" line.
752 * Let's use it and store its ID.
753 */
754 newpeer = cfg_peers->local;
755 newpeer->id = strdup(localpeer);
756 }
757 else {
758 if (local_peer && cfg_peers->local) {
759 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
760 file, linenum, args[0], args[1],
761 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
762 err_code |= ERR_FATAL;
763 goto out;
764 }
765 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
766 if (!newpeer) {
767 err_code |= ERR_ALERT | ERR_ABORT;
768 goto out;
769 }
770 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200771
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100772 /* Line number and peer ID are updated only if this peer is the local one. */
773 if (init_peers_frontend(file,
774 newpeer->local ? linenum: -1,
775 newpeer->local ? newpeer->id : NULL,
776 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200777 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100778 goto out;
779 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100780
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100781 /* This initializes curpeer->peers->peers_fe->srv.
782 * The server address is parsed only if we are parsing a "peer" line,
783 * or if we are parsing a "server" line and the current peer is not the local one.
784 */
Emeric Brund3db3842020-07-21 16:54:36 +0200785 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, peer || !local_peer, 1, 1);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200786 if (!curpeers->peers_fe->srv) {
787 /* Remove the newly allocated peer. */
788 if (newpeer != curpeers->local) {
789 struct peer *p;
790
791 p = curpeers->remote;
792 curpeers->remote = curpeers->remote->next;
793 free(p->id);
794 free(p);
795 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200796 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200797 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200798
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100799 /* If the peer address has just been parsed, let's copy it to <newpeer>
800 * and initializes ->proto.
801 */
802 if (peer || !local_peer) {
803 newpeer->addr = curpeers->peers_fe->srv->addr;
804 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
805 }
806
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100807 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200808 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100809 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200810
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100811 newpeer->srv = curpeers->peers_fe->srv;
812 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200813 goto out;
814
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100815 /* The lines above are reserved to "peer" lines. */
816 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200817 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200818
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100819 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW));
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100820
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100821 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
822 if (errmsg && *errmsg) {
823 indent_msg(&errmsg, 2);
824 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100825 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100826 else
827 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
828 file, linenum, args[0], args[1], args[2]);
829 err_code |= ERR_FATAL;
830 goto out;
831 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100832
833 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
834 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100835 l->accept = session_accept_fd;
836 l->analysers |= curpeers->peers_fe->fe_req_ana;
837 l->default_target = curpeers->peers_fe->default_target;
838 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100839 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100840 }
841 else if (!strcmp(args[0], "table")) {
842 struct stktable *t, *other;
843 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100844 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100845
846 /* Line number and peer ID are updated only if this peer is the local one. */
847 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
848 err_code |= ERR_ALERT | ERR_ABORT;
849 goto out;
850 }
851
852 other = stktable_find_by_name(args[1]);
853 if (other) {
854 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
855 file, linenum, args[1],
856 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
857 other->proxy ? other->id : other->peers.p->id,
858 other->conf.file, other->conf.line);
859 err_code |= ERR_ALERT | ERR_FATAL;
860 goto out;
861 }
862
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100863 /* Build the stick-table name, concatenating the "peers" section name
864 * followed by a '/' character and the table name argument.
865 */
866 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100867 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100868 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
869 file, linenum, args[0], args[1]);
870 err_code |= ERR_ALERT | ERR_FATAL;
871 goto out;
872 }
873
874 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100875 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100876 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
877 file, linenum, args[0], args[1]);
878 err_code |= ERR_ALERT | ERR_FATAL;
879 goto out;
880 }
881
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100882 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100883 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100884 if (!t || !id) {
885 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
886 file, linenum, args[0], args[1]);
887 err_code |= ERR_ALERT | ERR_FATAL;
888 goto out;
889 }
890
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100891 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100892 if (err_code & ERR_FATAL)
893 goto out;
894
895 stktable_store_name(t);
896 t->next = stktables_list;
897 stktables_list = t;
898 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200899 else if (!strcmp(args[0], "disabled")) { /* disables this peers section */
900 curpeers->state = PR_STSTOPPED;
901 }
902 else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */
903 curpeers->state = PR_STNEW;
904 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200905 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100906 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200907 err_code |= ERR_ALERT | ERR_FATAL;
908 goto out;
909 }
910
911out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100912 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200913 return err_code;
914}
915
Baptiste Assmann325137d2015-04-13 23:40:55 +0200916/*
917 * Parse a <resolvers> section.
918 * Returns the error code, 0 if OK, or any combination of :
919 * - ERR_ABORT: must abort ASAP
920 * - ERR_FATAL: we can continue parsing but not start the service
921 * - ERR_WARN: a warning has been emitted
922 * - ERR_ALERT: an alert has been emitted
923 * Only the two first ones can stop processing, the two others are just
924 * indicators.
925 */
926int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
927{
928 static struct dns_resolvers *curr_resolvers = NULL;
929 struct dns_nameserver *newnameserver = NULL;
930 const char *err;
931 int err_code = 0;
932 char *errmsg = NULL;
933
934 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
935 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100936 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200937 err_code |= ERR_ALERT | ERR_ABORT;
938 goto out;
939 }
940
941 err = invalid_char(args[1]);
942 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100943 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
944 file, linenum, *err, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200945 err_code |= ERR_ALERT | ERR_ABORT;
946 goto out;
947 }
948
949 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
950 /* Error if two resolvers owns the same name */
951 if (strcmp(curr_resolvers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100952 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
953 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200954 err_code |= ERR_ALERT | ERR_ABORT;
955 }
956 }
957
Vincent Bernat02779b62016-04-03 13:48:43 +0200958 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100959 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200960 err_code |= ERR_ALERT | ERR_ABORT;
961 goto out;
962 }
963
964 /* default values */
965 LIST_ADDQ(&dns_resolvers, &curr_resolvers->list);
966 curr_resolvers->conf.file = strdup(file);
967 curr_resolvers->conf.line = linenum;
968 curr_resolvers->id = strdup(args[1]);
969 curr_resolvers->query_ids = EB_ROOT;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200970 /* default maximum response size */
971 curr_resolvers->accepted_payload_size = 512;
Baptiste Assmann987e16d2016-11-02 22:23:31 +0100972 /* default hold period for nx, other, refuse and timeout is 30s */
973 curr_resolvers->hold.nx = 30000;
974 curr_resolvers->hold.other = 30000;
975 curr_resolvers->hold.refused = 30000;
976 curr_resolvers->hold.timeout = 30000;
Baptiste Assmann686408b2017-08-18 10:15:42 +0200977 curr_resolvers->hold.obsolete = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200978 /* default hold period for valid is 10s */
Baptiste Assmann4c5490a2015-07-14 21:42:49 +0200979 curr_resolvers->hold.valid = 10000;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200980 curr_resolvers->timeout.resolve = 1000;
981 curr_resolvers->timeout.retry = 1000;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200982 curr_resolvers->resolve_retries = 3;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200983 curr_resolvers->nb_nameservers = 0;
984 LIST_INIT(&curr_resolvers->nameservers);
985 LIST_INIT(&curr_resolvers->resolutions.curr);
986 LIST_INIT(&curr_resolvers->resolutions.wait);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100987 HA_SPIN_INIT(&curr_resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200988 }
989 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
990 struct sockaddr_storage *sk;
991 int port1, port2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200992
993 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100994 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
995 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200996 err_code |= ERR_ALERT | ERR_FATAL;
997 goto out;
998 }
999
1000 err = invalid_char(args[1]);
1001 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001002 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1003 file, linenum, *err, args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001004 err_code |= ERR_ALERT | ERR_FATAL;
1005 goto out;
1006 }
1007
Christopher Faulet67957bd2017-09-27 11:00:59 +02001008 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
Baptiste Assmanna315c552015-11-02 22:55:49 +01001009 /* Error if two resolvers owns the same name */
1010 if (strcmp(newnameserver->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001011 ha_alert("Parsing [%s:%d]: nameserver '%s' has same name as another nameserver (declared at %s:%d).\n",
Ben Draut44e609b2018-05-29 15:40:08 -06001012 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
Baptiste Assmanna315c552015-11-02 22:55:49 +01001013 err_code |= ERR_ALERT | ERR_FATAL;
1014 }
1015 }
1016
Vincent Bernat02779b62016-04-03 13:48:43 +02001017 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001018 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001019 err_code |= ERR_ALERT | ERR_ABORT;
1020 goto out;
1021 }
1022
1023 /* the nameservers are linked backward first */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001024 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001025 newnameserver->resolvers = curr_resolvers;
1026 newnameserver->conf.file = strdup(file);
1027 newnameserver->conf.line = linenum;
1028 newnameserver->id = strdup(args[1]);
1029
Willy Tarreau5fc93282020-09-16 18:25:03 +02001030 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, NULL,
1031 &errmsg, NULL, NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_DGRAM);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001032 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001033 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001034 err_code |= ERR_ALERT | ERR_FATAL;
1035 goto out;
1036 }
1037
Baptiste Assmann325137d2015-04-13 23:40:55 +02001038 newnameserver->addr = *sk;
1039 }
Ben Draut44e609b2018-05-29 15:40:08 -06001040 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
1041 const char *whitespace = "\r\n\t ";
1042 char *resolv_line = NULL;
1043 int resolv_linenum = 0;
1044 FILE *f = NULL;
1045 char *address = NULL;
1046 struct sockaddr_storage *sk = NULL;
1047 struct protocol *proto;
1048 int duplicate_name = 0;
1049
1050 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
1051 ha_alert("parsing [%s:%d] : out of memory.\n",
1052 file, linenum);
1053 err_code |= ERR_ALERT | ERR_FATAL;
1054 goto resolv_out;
1055 }
1056
1057 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
1058 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
1059 file, linenum);
1060 err_code |= ERR_ALERT | ERR_FATAL;
1061 goto resolv_out;
1062 }
1063
1064 sk = calloc(1, sizeof(*sk));
1065 if (sk == NULL) {
1066 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
1067 resolv_linenum);
1068 err_code |= ERR_ALERT | ERR_FATAL;
1069 goto resolv_out;
1070 }
1071
1072 while (fgets(resolv_line, LINESIZE, f) != NULL) {
1073 resolv_linenum++;
1074 if (strncmp(resolv_line, "nameserver", 10) != 0)
1075 continue;
1076
1077 address = strtok(resolv_line + 10, whitespace);
1078 if (address == resolv_line + 10)
1079 continue;
1080
1081 if (address == NULL) {
1082 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
1083 resolv_linenum);
1084 err_code |= ERR_WARN;
1085 continue;
1086 }
1087
1088 duplicate_name = 0;
1089 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
1090 if (strcmp(newnameserver->id, address) == 0) {
1091 ha_warning("Parsing [/etc/resolv.conf:%d] : generated name for /etc/resolv.conf nameserver '%s' conflicts with another nameserver (declared at %s:%d), it appears to be a duplicate and will be excluded.\n",
1092 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
1093 err_code |= ERR_WARN;
1094 duplicate_name = 1;
1095 }
1096 }
1097
1098 if (duplicate_name)
1099 continue;
1100
1101 memset(sk, 0, sizeof(*sk));
Willy Tarreau78675252020-05-28 18:07:10 +02001102 if (!str2ip2(address, sk, 1)) {
1103 ha_warning("parsing [/etc/resolv.conf:%d] : address '%s' could not be recognized, nameserver will be excluded.\n",
Ben Draut44e609b2018-05-29 15:40:08 -06001104 resolv_linenum, address);
1105 err_code |= ERR_WARN;
1106 continue;
1107 }
1108
1109 set_host_port(sk, 53);
1110
1111 proto = protocol_by_family(sk->ss_family);
1112 if (!proto || !proto->connect) {
1113 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
1114 resolv_linenum, address);
1115 err_code |= ERR_WARN;
1116 continue;
1117 }
1118
1119 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
1120 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1121 err_code |= ERR_ALERT | ERR_FATAL;
1122 goto resolv_out;
1123 }
1124
1125 newnameserver->conf.file = strdup("/etc/resolv.conf");
1126 if (newnameserver->conf.file == NULL) {
1127 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1128 err_code |= ERR_ALERT | ERR_FATAL;
1129 goto resolv_out;
1130 }
1131
1132 newnameserver->id = strdup(address);
1133 if (newnameserver->id == NULL) {
1134 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1135 err_code |= ERR_ALERT | ERR_FATAL;
1136 goto resolv_out;
1137 }
1138
1139 newnameserver->resolvers = curr_resolvers;
1140 newnameserver->conf.line = resolv_linenum;
1141 newnameserver->addr = *sk;
1142
1143 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
1144 }
1145
1146resolv_out:
1147 free(sk);
1148 free(resolv_line);
1149 if (f != NULL)
1150 fclose(f);
1151 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001152 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
1153 const char *res;
1154 unsigned int time;
1155
1156 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001157 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
1158 file, linenum, args[0]);
1159 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
Baptiste Assmann325137d2015-04-13 23:40:55 +02001160 err_code |= ERR_ALERT | ERR_FATAL;
1161 goto out;
1162 }
1163 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001164 if (res == PARSE_TIME_OVER) {
1165 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s>, maximum value is 2147483647 ms (~24.8 days).\n",
1166 file, linenum, args[1], args[0]);
1167 err_code |= ERR_ALERT | ERR_FATAL;
1168 goto out;
1169 }
1170 else if (res == PARSE_TIME_UNDER) {
1171 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s>, minimum non-null value is 1 ms.\n",
1172 file, linenum, args[1], args[0]);
1173 err_code |= ERR_ALERT | ERR_FATAL;
1174 goto out;
1175 }
1176 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001177 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1178 file, linenum, *res, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001179 err_code |= ERR_ALERT | ERR_FATAL;
1180 goto out;
1181 }
Baptiste Assmann987e16d2016-11-02 22:23:31 +01001182 if (strcmp(args[1], "nx") == 0)
1183 curr_resolvers->hold.nx = time;
1184 else if (strcmp(args[1], "other") == 0)
1185 curr_resolvers->hold.other = time;
1186 else if (strcmp(args[1], "refused") == 0)
1187 curr_resolvers->hold.refused = time;
1188 else if (strcmp(args[1], "timeout") == 0)
1189 curr_resolvers->hold.timeout = time;
1190 else if (strcmp(args[1], "valid") == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001191 curr_resolvers->hold.valid = time;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001192 else if (strcmp(args[1], "obsolete") == 0)
1193 curr_resolvers->hold.obsolete = time;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001194 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001195 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
1196 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001197 err_code |= ERR_ALERT | ERR_FATAL;
1198 goto out;
1199 }
1200
1201 }
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001202 else if (strcmp(args[0], "accepted_payload_size") == 0) {
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001203 int i = 0;
1204
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001205 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001206 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1207 file, linenum, args[0]);
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001208 err_code |= ERR_ALERT | ERR_FATAL;
1209 goto out;
1210 }
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001211
1212 i = atoi(args[1]);
Willy Tarreau0c219be2017-08-22 12:01:26 +02001213 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001214 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
1215 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001216 err_code |= ERR_ALERT | ERR_FATAL;
1217 goto out;
1218 }
1219
1220 curr_resolvers->accepted_payload_size = i;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001221 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001222 else if (strcmp(args[0], "resolution_pool_size") == 0) {
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001223 ha_alert("parsing [%s:%d] : '%s' directive is not supported anymore (it never appeared in a stable release).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01001224 file, linenum, args[0]);
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001225 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001226 goto out;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001227 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001228 else if (strcmp(args[0], "resolve_retries") == 0) {
1229 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001230 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1231 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001232 err_code |= ERR_ALERT | ERR_FATAL;
1233 goto out;
1234 }
1235 curr_resolvers->resolve_retries = atoi(args[1]);
1236 }
1237 else if (strcmp(args[0], "timeout") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001238 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001239 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
1240 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001241 err_code |= ERR_ALERT | ERR_FATAL;
1242 goto out;
1243 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001244 else if (strcmp(args[1], "retry") == 0 ||
1245 strcmp(args[1], "resolve") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001246 const char *res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001247 unsigned int tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001248
1249 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001250 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1251 file, linenum, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001252 err_code |= ERR_ALERT | ERR_FATAL;
1253 goto out;
1254 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001255 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001256 if (res == PARSE_TIME_OVER) {
1257 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1258 file, linenum, args[2], args[0], args[1]);
1259 err_code |= ERR_ALERT | ERR_FATAL;
1260 goto out;
1261 }
1262 else if (res == PARSE_TIME_UNDER) {
1263 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1264 file, linenum, args[2], args[0], args[1]);
1265 err_code |= ERR_ALERT | ERR_FATAL;
1266 goto out;
1267 }
1268 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001269 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1270 file, linenum, *res, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001271 err_code |= ERR_ALERT | ERR_FATAL;
1272 goto out;
1273 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001274 if (args[1][2] == 't')
1275 curr_resolvers->timeout.retry = tout;
1276 else
1277 curr_resolvers->timeout.resolve = tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001278 }
1279 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001280 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
1281 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001282 err_code |= ERR_ALERT | ERR_FATAL;
1283 goto out;
1284 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001285 } /* neither "nameserver" nor "resolvers" */
1286 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001287 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001288 err_code |= ERR_ALERT | ERR_FATAL;
1289 goto out;
1290 }
1291
1292 out:
1293 free(errmsg);
1294 return err_code;
1295}
Simon Horman0d16a402015-01-30 11:22:58 +09001296
1297/*
William Lallemand51097192015-04-14 16:35:22 +02001298 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001299 * Returns the error code, 0 if OK, or any combination of :
1300 * - ERR_ABORT: must abort ASAP
1301 * - ERR_FATAL: we can continue parsing but not start the service
1302 * - ERR_WARN: a warning has been emitted
1303 * - ERR_ALERT: an alert has been emitted
1304 * Only the two first ones can stop processing, the two others are just
1305 * indicators.
1306 */
1307int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1308{
1309 static struct mailers *curmailers = NULL;
1310 struct mailer *newmailer = NULL;
1311 const char *err;
1312 int err_code = 0;
1313 char *errmsg = NULL;
1314
1315 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1316 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001317 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001318 err_code |= ERR_ALERT | ERR_ABORT;
1319 goto out;
1320 }
1321
1322 err = invalid_char(args[1]);
1323 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001324 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1325 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001326 err_code |= ERR_ALERT | ERR_ABORT;
1327 goto out;
1328 }
1329
1330 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1331 /*
1332 * If there are two proxies with the same name only following
1333 * combinations are allowed:
1334 */
1335 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001336 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1337 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001338 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001339 }
1340 }
1341
Vincent Bernat02779b62016-04-03 13:48:43 +02001342 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001343 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001344 err_code |= ERR_ALERT | ERR_ABORT;
1345 goto out;
1346 }
1347
1348 curmailers->next = mailers;
1349 mailers = curmailers;
1350 curmailers->conf.file = strdup(file);
1351 curmailers->conf.line = linenum;
1352 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001353 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1354 * But need enough time so that timeouts don't occur
1355 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001356 }
1357 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1358 struct sockaddr_storage *sk;
1359 int port1, port2;
1360 struct protocol *proto;
1361
1362 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001363 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1364 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001365 err_code |= ERR_ALERT | ERR_FATAL;
1366 goto out;
1367 }
1368
1369 err = invalid_char(args[1]);
1370 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001371 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1372 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001373 err_code |= ERR_ALERT | ERR_FATAL;
1374 goto out;
1375 }
1376
Vincent Bernat02779b62016-04-03 13:48:43 +02001377 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001378 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001379 err_code |= ERR_ALERT | ERR_ABORT;
1380 goto out;
1381 }
1382
1383 /* the mailers are linked backwards first */
1384 curmailers->count++;
1385 newmailer->next = curmailers->mailer_list;
1386 curmailers->mailer_list = newmailer;
1387 newmailer->mailers = curmailers;
1388 newmailer->conf.file = strdup(file);
1389 newmailer->conf.line = linenum;
1390
1391 newmailer->id = strdup(args[1]);
1392
Willy Tarreau5fc93282020-09-16 18:25:03 +02001393 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001394 &errmsg, NULL, NULL,
1395 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_XPRT | PA_O_CONNECT);
Simon Horman0d16a402015-01-30 11:22:58 +09001396 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001397 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001398 err_code |= ERR_ALERT | ERR_FATAL;
1399 goto out;
1400 }
1401
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001402 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001403 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1404 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001405 err_code |= ERR_ALERT | ERR_FATAL;
1406 goto out;
1407 }
1408
Simon Horman0d16a402015-01-30 11:22:58 +09001409 newmailer->addr = *sk;
1410 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001411 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001412 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001413 }
1414 else if (strcmp(args[0], "timeout") == 0) {
1415 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001416 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1417 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001418 err_code |= ERR_ALERT | ERR_FATAL;
1419 goto out;
1420 }
1421 else if (strcmp(args[1], "mail") == 0) {
1422 const char *res;
1423 unsigned int timeout_mail;
1424 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001425 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1426 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001427 err_code |= ERR_ALERT | ERR_FATAL;
1428 goto out;
1429 }
1430 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001431 if (res == PARSE_TIME_OVER) {
1432 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1433 file, linenum, args[2], args[0], args[1]);
1434 err_code |= ERR_ALERT | ERR_FATAL;
1435 goto out;
1436 }
1437 else if (res == PARSE_TIME_UNDER) {
1438 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1439 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001440 err_code |= ERR_ALERT | ERR_FATAL;
1441 goto out;
1442 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001443 else if (res) {
1444 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1445 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001446 err_code |= ERR_ALERT | ERR_FATAL;
1447 goto out;
1448 }
1449 curmailers->timeout.mail = timeout_mail;
1450 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001451 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001452 file, linenum, args[0], args[1]);
1453 err_code |= ERR_ALERT | ERR_FATAL;
1454 goto out;
1455 }
1456 }
Simon Horman0d16a402015-01-30 11:22:58 +09001457 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001458 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001459 err_code |= ERR_ALERT | ERR_FATAL;
1460 goto out;
1461 }
1462
1463out:
1464 free(errmsg);
1465 return err_code;
1466}
1467
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001468void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001469{
1470 free(p->email_alert.mailers.name);
1471 p->email_alert.mailers.name = NULL;
1472 free(p->email_alert.from);
1473 p->email_alert.from = NULL;
1474 free(p->email_alert.to);
1475 p->email_alert.to = NULL;
1476 free(p->email_alert.myhostname);
1477 p->email_alert.myhostname = NULL;
1478}
1479
Willy Tarreaubaaee002006-06-26 02:48:02 +02001480
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001481int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001482cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1483{
Willy Tarreaue5733232019-05-22 19:24:06 +02001484#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001485 const char *err;
1486 const char *item = args[0];
1487
1488 if (!strcmp(item, "namespace_list")) {
1489 return 0;
1490 }
1491 else if (!strcmp(item, "namespace")) {
1492 size_t idx = 1;
1493 const char *current;
1494 while (*(current = args[idx++])) {
1495 err = invalid_char(current);
1496 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001497 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1498 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001499 return ERR_ALERT | ERR_FATAL;
1500 }
1501
1502 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001503 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1504 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001505 return ERR_ALERT | ERR_FATAL;
1506 }
1507 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001508 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1509 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001510 return ERR_ALERT | ERR_FATAL;
1511 }
1512 }
1513 }
1514
1515 return 0;
1516#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001517 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1518 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001519 return ERR_ALERT | ERR_FATAL;
1520#endif
1521}
1522
1523int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001524cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1525{
1526
1527 int err_code = 0;
1528 const char *err;
1529
1530 if (!strcmp(args[0], "userlist")) { /* new userlist */
1531 struct userlist *newul;
1532
1533 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001534 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1535 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001536 err_code |= ERR_ALERT | ERR_FATAL;
1537 goto out;
1538 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001539 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1540 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001541
1542 err = invalid_char(args[1]);
1543 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001544 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1545 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001546 err_code |= ERR_ALERT | ERR_FATAL;
1547 goto out;
1548 }
1549
1550 for (newul = userlist; newul; newul = newul->next)
1551 if (!strcmp(newul->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001552 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1553 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001554 err_code |= ERR_WARN;
1555 goto out;
1556 }
1557
Vincent Bernat02779b62016-04-03 13:48:43 +02001558 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001559 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001560 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001561 err_code |= ERR_ALERT | ERR_ABORT;
1562 goto out;
1563 }
1564
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001565 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001566 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001567 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001568 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001569 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001570 goto out;
1571 }
1572
1573 newul->next = userlist;
1574 userlist = newul;
1575
1576 } else if (!strcmp(args[0], "group")) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001577 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001578 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001579 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001580
1581 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001582 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1583 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001584 err_code |= ERR_ALERT | ERR_FATAL;
1585 goto out;
1586 }
1587
1588 err = invalid_char(args[1]);
1589 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001590 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1591 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001592 err_code |= ERR_ALERT | ERR_FATAL;
1593 goto out;
1594 }
1595
William Lallemand4ac9f542015-05-28 18:03:51 +02001596 if (!userlist)
1597 goto out;
1598
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001599 for (ag = userlist->groups; ag; ag = ag->next)
1600 if (!strcmp(ag->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001601 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1602 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001603 err_code |= ERR_ALERT;
1604 goto out;
1605 }
1606
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001607 ag = calloc(1, sizeof(*ag));
1608 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001609 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001610 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001611 goto out;
1612 }
1613
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001614 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001615 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001616 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001617 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001618 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001619 goto out;
1620 }
1621
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001622 cur_arg = 2;
1623
1624 while (*args[cur_arg]) {
1625 if (!strcmp(args[cur_arg], "users")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001626 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001627 cur_arg += 2;
1628 continue;
1629 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001630 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1631 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001632 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001633 free(ag->groupusers);
1634 free(ag->name);
1635 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001636 goto out;
1637 }
1638 }
1639
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001640 ag->next = userlist->groups;
1641 userlist->groups = ag;
1642
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001643 } else if (!strcmp(args[0], "user")) { /* new user */
1644 struct auth_users *newuser;
1645 int cur_arg;
1646
1647 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001648 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1649 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001650 err_code |= ERR_ALERT | ERR_FATAL;
1651 goto out;
1652 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001653 if (!userlist)
1654 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001655
1656 for (newuser = userlist->users; newuser; newuser = newuser->next)
1657 if (!strcmp(newuser->user, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001658 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1659 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001660 err_code |= ERR_ALERT;
1661 goto out;
1662 }
1663
Vincent Bernat02779b62016-04-03 13:48:43 +02001664 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001665 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001666 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001667 err_code |= ERR_ALERT | ERR_ABORT;
1668 goto out;
1669 }
1670
1671 newuser->user = strdup(args[1]);
1672
1673 newuser->next = userlist->users;
1674 userlist->users = newuser;
1675
1676 cur_arg = 2;
1677
1678 while (*args[cur_arg]) {
1679 if (!strcmp(args[cur_arg], "password")) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001680#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001681 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001682 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1683 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001684 err_code |= ERR_ALERT | ERR_FATAL;
1685 goto out;
1686 }
1687#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001688 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1689 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001690 err_code |= ERR_ALERT;
1691#endif
1692 newuser->pass = strdup(args[cur_arg + 1]);
1693 cur_arg += 2;
1694 continue;
1695 } else if (!strcmp(args[cur_arg], "insecure-password")) {
1696 newuser->pass = strdup(args[cur_arg + 1]);
1697 newuser->flags |= AU_O_INSECURE;
1698 cur_arg += 2;
1699 continue;
1700 } else if (!strcmp(args[cur_arg], "groups")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001701 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001702 cur_arg += 2;
1703 continue;
1704 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001705 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1706 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001707 err_code |= ERR_ALERT | ERR_FATAL;
1708 goto out;
1709 }
1710 }
1711 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001712 ha_alert("parsing [%s:%d]: unknown keyword '%s' in '%s' section\n", file, linenum, args[0], "users");
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001713 err_code |= ERR_ALERT | ERR_FATAL;
1714 }
1715
1716out:
1717 return err_code;
1718}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001719
Christopher Faulet79bdef32016-11-04 22:36:15 +01001720int
1721cfg_parse_scope(const char *file, int linenum, char *line)
1722{
1723 char *beg, *end, *scope = NULL;
1724 int err_code = 0;
1725 const char *err;
1726
1727 beg = line + 1;
1728 end = strchr(beg, ']');
1729
1730 /* Detect end of scope declaration */
1731 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001732 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1733 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001734 err_code |= ERR_ALERT | ERR_FATAL;
1735 goto out;
1736 }
1737
1738 /* Get scope name and check its validity */
1739 scope = my_strndup(beg, end-beg);
1740 err = invalid_char(scope);
1741 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001742 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1743 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001744 err_code |= ERR_ALERT | ERR_ABORT;
1745 goto out;
1746 }
1747
1748 /* Be sure to have a scope declaration alone on its line */
1749 line = end+1;
1750 while (isspace((unsigned char)*line))
1751 line++;
1752 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001753 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1754 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001755 err_code |= ERR_ALERT | ERR_ABORT;
1756 goto out;
1757 }
1758
1759 /* We have a valid scope declaration, save it */
1760 free(cfg_scope);
1761 cfg_scope = scope;
1762 scope = NULL;
1763
1764 out:
1765 free(scope);
1766 return err_code;
1767}
1768
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001769int
1770cfg_parse_track_sc_num(unsigned int *track_sc_num,
1771 const char *arg, const char *end, char **errmsg)
1772{
1773 const char *p;
1774 unsigned int num;
1775
1776 p = arg;
1777 num = read_uint64(&arg, end);
1778
1779 if (arg != end) {
1780 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1781 return -1;
1782 }
1783
1784 if (num >= MAX_SESS_STKCTR) {
1785 memprintf(errmsg, "%u track-sc number exceeding "
1786 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1787 return -1;
1788 }
1789
1790 *track_sc_num = num;
1791 return 0;
1792}
1793
Willy Tarreaubaaee002006-06-26 02:48:02 +02001794/*
1795 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001796 * Returns the error code, 0 if OK, or any combination of :
1797 * - ERR_ABORT: must abort ASAP
1798 * - ERR_FATAL: we can continue parsing but not start the service
1799 * - ERR_WARN: a warning has been emitted
1800 * - ERR_ALERT: an alert has been emitted
1801 * Only the two first ones can stop processing, the two others are just
1802 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001803 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001804int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001805{
William Lallemand64e84512015-05-12 14:25:37 +02001806 char *thisline;
1807 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001808 FILE *f;
1809 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001810 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001811 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001812 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001813 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001814 char *outline = NULL;
1815 size_t outlen = 0;
1816 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001817 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001818 int missing_lf = -1;
William Lallemand64e84512015-05-12 14:25:37 +02001819
1820 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001821 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001822 return -1;
1823 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001824
David Carlier97880bb2016-04-08 10:35:26 +01001825 if ((f=fopen(file,"r")) == NULL) {
1826 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001827 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001828 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001829
William Lallemandb2f07452015-05-12 14:27:13 +02001830next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001831 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001832 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001833 char *end;
1834 char *args[MAX_LINE_ARGS + 1];
1835 char *line = thisline;
1836
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001837 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001838 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1839 file, linenum, (missing_lf + 1));
1840 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001841 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001842 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001843 }
1844
Willy Tarreaubaaee002006-06-26 02:48:02 +02001845 linenum++;
1846
Willy Tarreau32234e72020-06-16 17:14:33 +02001847 if (fatal >= 50) {
1848 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1849 break;
1850 }
1851
Willy Tarreaubaaee002006-06-26 02:48:02 +02001852 end = line + strlen(line);
1853
William Lallemand64e84512015-05-12 14:25:37 +02001854 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001855 /* Check if we reached the limit and the last char is not \n.
1856 * Watch out for the last line without the terminating '\n'!
1857 */
William Lallemand64e84512015-05-12 14:25:37 +02001858 char *newline;
1859 int newlinesize = linesize * 2;
1860
1861 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1862 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001863 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1864 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001865 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001866 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001867 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001868 continue;
1869 }
1870
1871 readbytes = linesize - 1;
1872 linesize = newlinesize;
1873 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001874 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001875 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001876 }
1877
William Lallemand64e84512015-05-12 14:25:37 +02001878 readbytes = 0;
1879
Willy Tarreau08488f62020-06-26 17:24:54 +02001880 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001881 /* kill trailing LF */
1882 *(end - 1) = 0;
1883 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001884 else {
1885 /* mark this line as truncated */
1886 missing_lf = end - line;
1887 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001888
Willy Tarreaubaaee002006-06-26 02:48:02 +02001889 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001890 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001891 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001892
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001893 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001894 err_code |= cfg_parse_scope(file, linenum, line);
1895 goto next_line;
1896 }
1897
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001898 while (1) {
1899 uint32_t err;
1900 char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001901
Willy Tarreau61dd44b2020-06-25 07:35:42 +02001902 arg = MAX_LINE_ARGS + 1;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001903 outlen = outlinesize;
1904 err = parse_line(line, outline, &outlen, args, &arg,
1905 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
1906 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP, &errptr);
1907
1908 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001909 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1910
1911 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1912 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001913 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001914 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001915 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001916 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001917
1918 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001919 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1920
1921 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1922 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001923 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001924 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001925 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001926 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001927
1928 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001929 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1930
1931 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1932 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001933 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001934 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001935 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001936 }
William Lallemandb2f07452015-05-12 14:27:13 +02001937
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001938 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001939 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1940
1941 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1942 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001943 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001944 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001945 goto next_line;
1946 }
William Lallemandb2f07452015-05-12 14:27:13 +02001947
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001948 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1949 outlinesize = (outlen + 1023) & -1024;
1950 outline = realloc(outline, outlinesize);
1951 if (outline == NULL) {
1952 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1953 file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001954 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001955 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001956 goto next_line;
William Lallemandb2f07452015-05-12 14:27:13 +02001957 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001958 /* try again */
1959 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001960 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001961
1962 if (err & PARSE_ERR_TOOMANY) {
1963 /* only check this *after* being sure the output is allocated */
1964 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1965 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1966 err_code |= ERR_ALERT | ERR_FATAL;
1967 fatal++;
1968 goto next_line;
1969 }
1970
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001971 /* everything's OK */
1972 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001973 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001974
1975 /* empty line */
1976 if (!**args)
1977 continue;
1978
Willy Tarreau3842f002009-06-14 11:39:52 +02001979 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001980 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02001981 char *tmp;
1982
Willy Tarreau3842f002009-06-14 11:39:52 +02001983 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02001984 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001985 for (arg=0; *args[arg+1]; arg++)
1986 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02001987 *tmp = '\0'; // fix the next arg to \0
1988 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001989 }
Willy Tarreau3842f002009-06-14 11:39:52 +02001990 else if (!strcmp(args[0], "default")) {
1991 kwm = KWM_DEF;
1992 for (arg=0; *args[arg+1]; arg++)
1993 args[arg] = args[arg+1]; // shift args after inversion
1994 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001995
William Dauchyec730982019-10-27 20:08:10 +01001996 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
1997 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01001998 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
1999 strcmp(args[0], "insecure-fork-wanted") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002000 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002001 "supported only for options, log, busy-polling, "
Willy Tarreaud96f1122019-12-03 07:07:36 +01002002 "set-dumpable, strict-limits, and insecure-fork-wanted.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002003 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002004 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002005 }
2006
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002007 /* detect section start */
2008 list_for_each_entry(ics, &sections, list) {
2009 if (strcmp(args[0], ics->section_name) == 0) {
2010 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002011 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002012 cs = ics;
2013 break;
2014 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002015 }
2016
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002017 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002018 int status;
2019
2020 status = pcs->post_section_parser();
2021 err_code |= status;
2022 if (status & ERR_FATAL)
2023 fatal++;
2024
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002025 if (err_code & ERR_ABORT)
2026 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002027 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002028 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002029
William Lallemandd2ff56d2017-10-16 11:06:50 +02002030 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002031 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002032 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002033 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002034 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002035 int status;
2036
2037 status = cs->section_parser(file, linenum, args, kwm);
2038 err_code |= status;
2039 if (status & ERR_FATAL)
2040 fatal++;
2041
William Lallemandd2ff56d2017-10-16 11:06:50 +02002042 if (err_code & ERR_ABORT)
2043 goto err;
2044 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002045 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002046
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002047 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002048 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2049 file, linenum, (missing_lf + 1));
2050 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002051 }
2052
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002053 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002054 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002055
2056err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002057 free(cfg_scope);
2058 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002059 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002060 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002061 free(outline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002062 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002063 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002064}
2065
Willy Tarreau64ab6072014-09-16 12:17:36 +02002066/* This function propagates processes from frontend <from> to backend <to> so
2067 * that it is always guaranteed that a backend pointed to by a frontend is
2068 * bound to all of its processes. After that, if the target is a "listen"
2069 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002070 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002071 * checked first to ensure that <to> is already bound to all processes of
2072 * <from>, there is no risk of looping and we ensure to follow the shortest
2073 * path to the destination.
2074 *
2075 * It is possible to set <to> to NULL for the first call so that the function
2076 * takes care of visiting the initial frontend in <from>.
2077 *
2078 * It is important to note that the function relies on the fact that all names
2079 * have already been resolved.
2080 */
2081void propagate_processes(struct proxy *from, struct proxy *to)
2082{
2083 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002084
2085 if (to) {
2086 /* check whether we need to go down */
2087 if (from->bind_proc &&
2088 (from->bind_proc & to->bind_proc) == from->bind_proc)
2089 return;
2090
2091 if (!from->bind_proc && !to->bind_proc)
2092 return;
2093
2094 to->bind_proc = from->bind_proc ?
2095 (to->bind_proc | from->bind_proc) : 0;
2096
2097 /* now propagate down */
2098 from = to;
2099 }
2100
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002101 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002102 return;
2103
Willy Tarreauf6b70012014-12-18 14:00:43 +01002104 if (from->state == PR_STSTOPPED)
2105 return;
2106
Willy Tarreau64ab6072014-09-16 12:17:36 +02002107 /* default_backend */
2108 if (from->defbe.be)
2109 propagate_processes(from, from->defbe.be);
2110
2111 /* use_backend */
2112 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002113 if (rule->dynamic)
2114 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002115 to = rule->be.backend;
2116 propagate_processes(from, to);
2117 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002118}
2119
Willy Tarreaubb925012009-07-23 13:36:36 +02002120/*
2121 * Returns the error code, 0 if OK, or any combination of :
2122 * - ERR_ABORT: must abort ASAP
2123 * - ERR_FATAL: we can continue parsing but not start the service
2124 * - ERR_WARN: a warning has been emitted
2125 * - ERR_ALERT: an alert has been emitted
2126 * Only the two first ones can stop processing, the two others are just
2127 * indicators.
2128 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002129int check_config_validity()
2130{
2131 int cfgerr = 0;
2132 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002133 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002134 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002135 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002136 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002137 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002138 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002139 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002140 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002141
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002142 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002143 /*
2144 * Now, check for the integrity of all that we have collected.
2145 */
2146
2147 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002148 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002149
Willy Tarreau193b8c62012-11-22 00:17:38 +01002150 if (!global.tune.max_http_hdr)
2151 global.tune.max_http_hdr = MAX_HTTP_HDR;
2152
2153 if (!global.tune.cookie_len)
2154 global.tune.cookie_len = CAPTURE_LEN;
2155
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002156 if (!global.tune.requri_len)
2157 global.tune.requri_len = REQURI_LEN;
2158
Willy Tarreau149ab772019-01-26 14:27:06 +01002159 if (!global.nbthread) {
2160 /* nbthread not set, thus automatic. In this case, and only if
2161 * running on a single process, we enable the same number of
2162 * threads as the number of CPUs the process is bound to. This
2163 * allows to easily control the number of threads using taskset.
2164 */
2165 global.nbthread = 1;
2166#if defined(USE_THREAD)
2167 if (global.nbproc == 1)
2168 global.nbthread = thread_cpus_enabled_at_boot;
2169 all_threads_mask = nbits(global.nbthread);
2170#endif
2171 }
2172
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002173 if (global.nbproc > 1 && global.nbthread > 1) {
2174 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2175 err_code |= ERR_ALERT | ERR_FATAL;
2176 goto out;
2177 }
2178
Willy Tarreaubafbe012017-11-24 17:34:44 +01002179 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002180
Willy Tarreaubafbe012017-11-24 17:34:44 +01002181 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002182
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002183 /* Post initialisation of the users and groups lists. */
2184 err_code = userlist_postinit();
2185 if (err_code != ERR_NONE)
2186 goto out;
2187
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002188 /* first, we will invert the proxy list order */
2189 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002190 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002191 struct proxy *next;
2192
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002193 next = proxies_list->next;
2194 proxies_list->next = curproxy;
2195 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002196 if (!next)
2197 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002198 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002199 }
2200
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002201 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002202 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002203 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002204 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002205 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002206 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002207 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002208 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002209
Willy Tarreau050536d2012-10-04 08:47:34 +02002210 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002211 /* proxy ID not set, use automatic numbering with first
2212 * spare entry starting with next_pxid.
2213 */
2214 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2215 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2216 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002217 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002218 next_pxid++;
2219
Willy Tarreau55ea7572007-06-17 19:56:27 +02002220
Willy Tarreaubaaee002006-06-26 02:48:02 +02002221 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002222 /* ensure we don't keep listeners uselessly bound */
2223 stop_proxy(curproxy);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002224 if (curproxy->table) {
2225 free((void *)curproxy->table->peers.name);
2226 curproxy->table->peers.p = NULL;
2227 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002228 continue;
2229 }
2230
Willy Tarreau102df612014-05-07 23:56:38 +02002231 /* Check multi-process mode compatibility for the current proxy */
2232
2233 if (curproxy->bind_proc) {
2234 /* an explicit bind-process was specified, let's check how many
2235 * processes remain.
2236 */
David Carliere6c39412015-07-02 07:00:17 +00002237 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002238
Willy Tarreaua38a7172019-02-02 17:11:28 +01002239 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002240 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002241 ha_warning("Proxy '%s': the process specified on the 'bind-process' directive refers to a process number that is higher than global.nbproc. The proxy has been forced to run on process 1 only.\n", curproxy->id);
Willy Tarreau102df612014-05-07 23:56:38 +02002242 curproxy->bind_proc = 1;
2243 }
2244 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002245 ha_warning("Proxy '%s': all processes specified on the 'bind-process' directive refer to numbers that are all higher than global.nbproc. The directive was ignored and the proxy will run on all processes.\n", curproxy->id);
Willy Tarreau102df612014-05-07 23:56:38 +02002246 curproxy->bind_proc = 0;
2247 }
2248 }
2249
Willy Tarreau3d209582014-05-09 17:06:11 +02002250 /* check and reduce the bind-proc of each listener */
2251 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2252 unsigned long mask;
2253
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002254 /* HTTP frontends with "h2" as ALPN/NPN will work in
2255 * HTTP/2 and absolutely require buffers 16kB or larger.
2256 */
2257#ifdef USE_OPENSSL
2258 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2259#ifdef OPENSSL_NPN_NEGOTIATED
2260 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002261 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002262 ha_alert("config : HTTP frontend '%s' enables HTTP/2 via NPN at [%s:%d], so global.tune.bufsize must be at least 16384 bytes (%d now).\n",
2263 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002264 cfgerr++;
2265 }
2266#endif
2267#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2268 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002269 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002270 ha_alert("config : HTTP frontend '%s' enables HTTP/2 via ALPN at [%s:%d], so global.tune.bufsize must be at least 16384 bytes (%d now).\n",
2271 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002272 cfgerr++;
2273 }
2274#endif
2275 } /* HTTP && bufsize < 16384 */
2276#endif
2277
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002278 /* detect and address thread affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002279 mask = thread_mask(bind_conf->settings.bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002280 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002281 unsigned long new_mask = 0;
2282
2283 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002284 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002285 mask >>= global.nbthread;
2286 }
2287
Willy Tarreaue26993c2020-09-03 07:18:55 +02002288 bind_conf->settings.bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002289 ha_warning("Proxy '%s': the thread range specified on the 'process' directive of 'bind %s' at [%s:%d] only refers to thread numbers out of the range defined by the global 'nbthread' directive. The thread numbers were remapped to existing threads instead (mask 0x%lx).\n",
2290 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2291 }
2292
2293 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002294 mask = proc_mask(bind_conf->settings.bind_proc) & proc_mask(curproxy->bind_proc);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002295 if (!(mask & all_proc_mask)) {
2296 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02002297 nbproc = my_popcountl(bind_conf->settings.bind_proc);
2298 bind_conf->settings.bind_proc = proc_mask(bind_conf->settings.bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002299
Willy Tarreaue26993c2020-09-03 07:18:55 +02002300 if (!bind_conf->settings.bind_proc && nbproc == 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002301 ha_warning("Proxy '%s': the process number specified on the 'process' directive of 'bind %s' at [%s:%d] refers to a process not covered by the proxy. This has been fixed by forcing it to run on the proxy's first process only.\n",
2302 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002303 bind_conf->settings.bind_proc = mask & ~(mask - 1);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002304 }
Willy Tarreaue26993c2020-09-03 07:18:55 +02002305 else if (!bind_conf->settings.bind_proc && nbproc > 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002306 ha_warning("Proxy '%s': the process range specified on the 'process' directive of 'bind %s' at [%s:%d] only refers to processes not covered by the proxy. The directive was ignored so that all of the proxy's processes are used.\n",
2307 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002308 bind_conf->settings.bind_proc = 0;
Willy Tarreaua36b3242019-02-02 13:14:34 +01002309 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002310 }
2311 }
2312
Willy Tarreauff01a212009-03-15 13:46:16 +01002313 switch (curproxy->mode) {
2314 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002315 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002316 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002317 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2318 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002319 cfgerr++;
2320 }
2321
2322 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002323 ha_warning("config : servers will be ignored for %s '%s'.\n",
2324 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002325 break;
2326
2327 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002328 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002329 break;
2330
2331 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002332 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002333 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002334
2335 case PR_MODE_CLI:
2336 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2337 break;
Emeric Brun54932b42020-07-07 09:43:24 +02002338 case PR_MODE_SYSLOG:
2339 case PR_MODES:
2340 /* should not happen, bug gcc warn missing switch statement */
2341 ha_alert("config : %s '%s' cannot use syslog mode for this proxy.\n",
2342 proxy_type_str(curproxy), curproxy->id);
2343 cfgerr++;
2344 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002345 }
2346
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002347 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002348 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2349 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002350 err_code |= ERR_WARN;
2351 }
2352
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002353 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002354 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002355 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002356 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2357 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002358 cfgerr++;
2359 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002360#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002361 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002362 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2363 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002364 cfgerr++;
2365 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002366#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002367 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002368 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2369 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002370 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002371 }
2372 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002373 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002374 /* If no LB algo is set in a backend, and we're not in
2375 * transparent mode, dispatch mode nor proxy mode, we
2376 * want to use balance roundrobin by default.
2377 */
2378 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2379 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002380 }
2381 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002382
Willy Tarreau1620ec32011-08-06 17:05:02 +02002383 if (curproxy->options & PR_O_DISPATCH)
2384 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2385 else if (curproxy->options & PR_O_HTTP_PROXY)
2386 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2387 else if (curproxy->options & PR_O_TRANSP)
2388 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002389
Christopher Faulete5870d82020-04-15 11:32:03 +02002390 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2391 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2392 proxy_type_str(curproxy), curproxy->id);
2393 err_code |= ERR_WARN;
2394 }
2395
2396 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002397 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002398 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002399 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2400 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002401 err_code |= ERR_WARN;
2402 curproxy->options &= ~PR_O_DISABLE404;
2403 }
2404 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002405 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2406 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002407 err_code |= ERR_WARN;
2408 curproxy->options &= ~PR_O2_CHK_SNDST;
2409 }
Willy Tarreauef781042010-01-27 11:53:01 +01002410 }
2411
Simon Horman98637e52014-06-20 12:30:16 +09002412 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2413 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002414 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2415 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002416 cfgerr++;
2417 }
2418 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002419 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2420 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002421 cfgerr++;
2422 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002423 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2424 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2425 curproxy->id, "option external-check");
2426 err_code |= ERR_WARN;
2427 }
Simon Horman98637e52014-06-20 12:30:16 +09002428 }
2429
Simon Horman64e34162015-02-06 11:11:57 +09002430 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002431 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002432 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2433 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2434 "'email-alert myhostname', or 'email-alert to' "
2435 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2436 "to be present).\n",
2437 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002438 err_code |= ERR_WARN;
2439 free_email_alert(curproxy);
2440 }
2441 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002442 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002443 }
2444
Simon Horman98637e52014-06-20 12:30:16 +09002445 if (curproxy->check_command) {
2446 int clear = 0;
2447 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002448 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2449 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002450 err_code |= ERR_WARN;
2451 clear = 1;
2452 }
2453 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002454 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2455 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002456 cfgerr++;
2457 }
2458 if (clear) {
2459 free(curproxy->check_command);
2460 curproxy->check_command = NULL;
2461 }
2462 }
2463
2464 if (curproxy->check_path) {
2465 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002466 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2467 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002468 err_code |= ERR_WARN;
2469 free(curproxy->check_path);
2470 curproxy->check_path = NULL;
2471 }
2472 }
2473
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002474 /* if a default backend was specified, let's find it */
2475 if (curproxy->defbe.name) {
2476 struct proxy *target;
2477
Willy Tarreauafb39922015-05-26 12:04:09 +02002478 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002479 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002480 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2481 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002482 cfgerr++;
2483 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002484 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2485 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002486 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002487 } else if (target->mode != curproxy->mode &&
2488 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2489
Christopher Faulet767a84b2017-11-24 16:50:31 +01002490 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2491 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2492 curproxy->conf.file, curproxy->conf.line,
2493 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2494 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002495 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002496 } else {
2497 free(curproxy->defbe.name);
2498 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002499 /* Emit a warning if this proxy also has some servers */
2500 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002501 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2502 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002503 err_code |= ERR_WARN;
2504 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002505 }
2506 }
2507
Willy Tarreau55ea7572007-06-17 19:56:27 +02002508 /* find the target proxy for 'use_backend' rules */
2509 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002510 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002511 struct logformat_node *node;
2512 char *pxname;
2513
2514 /* Try to parse the string as a log format expression. If the result
2515 * of the parsing is only one entry containing a simple string, then
2516 * it's a standard string corresponding to a static rule, thus the
2517 * parsing is cancelled and be.name is restored to be resolved.
2518 */
2519 pxname = rule->be.name;
2520 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002521 curproxy->conf.args.ctx = ARGC_UBK;
2522 curproxy->conf.args.file = rule->file;
2523 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002524 err = NULL;
2525 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002526 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2527 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002528 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002529 cfgerr++;
2530 continue;
2531 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002532 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2533
2534 if (!LIST_ISEMPTY(&rule->be.expr)) {
2535 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2536 rule->dynamic = 1;
2537 free(pxname);
2538 continue;
2539 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002540 /* Only one element in the list, a simple string: free the expression and
2541 * fall back to static rule
2542 */
2543 LIST_DEL(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002544 free(node->arg);
2545 free(node);
2546 }
2547
2548 rule->dynamic = 0;
2549 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002550
Willy Tarreauafb39922015-05-26 12:04:09 +02002551 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002552 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002553 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2554 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002555 cfgerr++;
2556 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002557 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2558 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002559 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002560 } else if (target->mode != curproxy->mode &&
2561 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2562
Christopher Faulet767a84b2017-11-24 16:50:31 +01002563 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2564 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2565 curproxy->conf.file, curproxy->conf.line,
2566 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2567 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002568 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002569 } else {
2570 free((void *)rule->be.name);
2571 rule->be.backend = target;
2572 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002573 }
2574
Willy Tarreau64ab6072014-09-16 12:17:36 +02002575 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002576 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002577 struct server *target;
2578 struct logformat_node *node;
2579 char *server_name;
2580
2581 /* We try to parse the string as a log format expression. If the result of the parsing
2582 * is only one entry containing a single string, then it's a standard string corresponding
2583 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2584 */
2585 server_name = srule->srv.name;
2586 LIST_INIT(&srule->expr);
2587 curproxy->conf.args.ctx = ARGC_USRV;
2588 err = NULL;
2589 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2590 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2591 srule->file, srule->line, server_name, err);
2592 free(err);
2593 cfgerr++;
2594 continue;
2595 }
2596 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2597
2598 if (!LIST_ISEMPTY(&srule->expr)) {
2599 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2600 srule->dynamic = 1;
2601 free(server_name);
2602 continue;
2603 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002604 /* Only one element in the list, a simple string: free the expression and
2605 * fall back to static rule
2606 */
2607 LIST_DEL(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002608 free(node->arg);
2609 free(node);
2610 }
2611
2612 srule->dynamic = 0;
2613 srule->srv.name = server_name;
2614 target = findserver(curproxy, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002615
2616 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002617 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2618 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002619 cfgerr++;
2620 continue;
2621 }
2622 free((void *)srule->srv.name);
2623 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002624 }
2625
Emeric Brunb982a3d2010-01-04 15:45:53 +01002626 /* find the target table for 'stick' rules */
2627 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002628 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002629
Emeric Brun1d33b292010-01-04 15:47:17 +01002630 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2631 if (mrule->flags & STK_IS_STORE)
2632 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2633
Emeric Brunb982a3d2010-01-04 15:45:53 +01002634 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002635 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002636 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002637 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002638
2639 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002640 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002641 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002642 cfgerr++;
2643 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002644 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002645 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2646 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002647 cfgerr++;
2648 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002649 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002650 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2651 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002652 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002653 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002654 else {
2655 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002656 mrule->table.t = target;
2657 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002658 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002659 if (!in_proxies_list(target->proxies_list, curproxy)) {
2660 curproxy->next_stkt_ref = target->proxies_list;
2661 target->proxies_list = curproxy;
2662 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002663 }
2664 }
2665
2666 /* find the target table for 'store response' rules */
2667 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002668 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002669
Emeric Brun1d33b292010-01-04 15:47:17 +01002670 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2671
Emeric Brunb982a3d2010-01-04 15:45:53 +01002672 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002673 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002674 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002675 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002676
2677 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002678 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002679 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002680 cfgerr++;
2681 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002682 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002683 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2684 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002685 cfgerr++;
2686 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002687 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002688 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2689 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002690 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002691 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002692 else {
2693 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002694 mrule->table.t = target;
2695 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002696 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002697 if (!in_proxies_list(target->proxies_list, curproxy)) {
2698 curproxy->next_stkt_ref = target->proxies_list;
2699 target->proxies_list = curproxy;
2700 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002701 }
2702 }
2703
Christopher Faulete4e830d2017-09-18 14:51:41 +02002704 /* check validity for 'tcp-request' layer 4 rules */
2705 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2706 err = NULL;
2707 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002708 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002709 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002710 cfgerr++;
2711 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002712 }
2713
Christopher Faulete4e830d2017-09-18 14:51:41 +02002714 /* check validity for 'tcp-request' layer 5 rules */
2715 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2716 err = NULL;
2717 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002718 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002719 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002720 cfgerr++;
2721 }
2722 }
2723
Christopher Faulete4e830d2017-09-18 14:51:41 +02002724 /* check validity for 'tcp-request' layer 6 rules */
2725 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2726 err = NULL;
2727 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002728 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002729 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002730 cfgerr++;
2731 }
2732 }
2733
Christopher Faulete4e830d2017-09-18 14:51:41 +02002734 /* check validity for 'http-request' layer 7 rules */
2735 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2736 err = NULL;
2737 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002738 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002739 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002740 cfgerr++;
2741 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002742 }
2743
Christopher Faulete4e830d2017-09-18 14:51:41 +02002744 /* check validity for 'http-response' layer 7 rules */
2745 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2746 err = NULL;
2747 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002748 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002749 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002750 cfgerr++;
2751 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002752 }
2753
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002754 /* check validity for 'http-after-response' layer 7 rules */
2755 list_for_each_entry(arule, &curproxy->http_after_res_rules, list) {
2756 err = NULL;
2757 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
2758 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
2759 free(err);
2760 cfgerr++;
2761 }
2762 }
2763
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002764 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002765 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002766
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002767 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002768 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
2769 free((void *)curproxy->table->peers.name);
2770 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002771 break;
2772 }
2773 }
2774
2775 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002776 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002777 curproxy->id, curproxy->table->peers.name);
2778 free((void *)curproxy->table->peers.name);
2779 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002780 cfgerr++;
2781 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002782 else if (curpeers->state == PR_STSTOPPED) {
2783 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002784 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002785 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002786 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002787 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2788 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002789 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002790 cfgerr++;
2791 }
2792 }
2793
Simon Horman9dc49962015-01-30 11:22:59 +09002794
2795 if (curproxy->email_alert.mailers.name) {
2796 struct mailers *curmailers = mailers;
2797
2798 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002799 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002800 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002801 }
Simon Horman9dc49962015-01-30 11:22:59 +09002802 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002803 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2804 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002805 free_email_alert(curproxy);
2806 cfgerr++;
2807 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002808 else {
2809 err = NULL;
2810 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002811 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002812 free(err);
2813 cfgerr++;
2814 }
2815 }
Simon Horman9dc49962015-01-30 11:22:59 +09002816 }
2817
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002818 if (curproxy->uri_auth && curproxy->uri_auth != defproxy.uri_auth &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002819 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002820 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002821 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2822 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002823 cfgerr++;
2824 goto out_uri_auth_compat;
2825 }
2826
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002827 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
2828 (curproxy->uri_auth != defproxy.uri_auth ||
2829 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002830 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002831 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002832 int i = 0;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002833 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2834 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002835
2836 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002837 uri_auth_compat_req[i++] = "realm";
2838 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2839 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002840
Willy Tarreau95fa4692010-02-01 13:05:50 +01002841 uri_auth_compat_req[i++] = "unless";
2842 uri_auth_compat_req[i++] = "{";
2843 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2844 uri_auth_compat_req[i++] = "}";
2845 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002846
Willy Tarreauff011f22011-01-06 17:51:27 +01002847 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2848 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002849 cfgerr++;
2850 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002851 }
2852
Willy Tarreauff011f22011-01-06 17:51:27 +01002853 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002854
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002855 if (curproxy->uri_auth->auth_realm) {
2856 free(curproxy->uri_auth->auth_realm);
2857 curproxy->uri_auth->auth_realm = NULL;
2858 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002859 }
2860out_uri_auth_compat:
2861
Dragan Dosen43885c72015-10-01 13:18:13 +02002862 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002863 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002864 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2865 if (!curproxy->conf.logformat_sd_string) {
2866 /* set the default logformat_sd_string */
2867 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2868 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002869 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002870 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002871 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002872
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002873 /* compile the log format */
2874 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002875 if (curproxy->conf.logformat_string != default_http_log_format &&
2876 curproxy->conf.logformat_string != default_tcp_log_format &&
2877 curproxy->conf.logformat_string != clf_http_log_format)
2878 free(curproxy->conf.logformat_string);
2879 curproxy->conf.logformat_string = NULL;
2880 free(curproxy->conf.lfs_file);
2881 curproxy->conf.lfs_file = NULL;
2882 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002883
2884 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2885 free(curproxy->conf.logformat_sd_string);
2886 curproxy->conf.logformat_sd_string = NULL;
2887 free(curproxy->conf.lfsd_file);
2888 curproxy->conf.lfsd_file = NULL;
2889 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002890 }
2891
Willy Tarreau62a61232013-04-12 18:13:46 +02002892 if (curproxy->conf.logformat_string) {
2893 curproxy->conf.args.ctx = ARGC_LOG;
2894 curproxy->conf.args.file = curproxy->conf.lfs_file;
2895 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002896 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002897 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
2898 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002899 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002900 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
2901 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002902 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002903 cfgerr++;
2904 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002905 curproxy->conf.args.file = NULL;
2906 curproxy->conf.args.line = 0;
2907 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002908
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002909 if (curproxy->conf.logformat_sd_string) {
2910 curproxy->conf.args.ctx = ARGC_LOGSD;
2911 curproxy->conf.args.file = curproxy->conf.lfsd_file;
2912 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002913 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002914 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
2915 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002916 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002917 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2918 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002919 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002920 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002921 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002922 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2923 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002924 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002925 cfgerr++;
2926 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002927 curproxy->conf.args.file = NULL;
2928 curproxy->conf.args.line = 0;
2929 }
2930
Willy Tarreau62a61232013-04-12 18:13:46 +02002931 if (curproxy->conf.uniqueid_format_string) {
2932 curproxy->conf.args.ctx = ARGC_UIF;
2933 curproxy->conf.args.file = curproxy->conf.uif_file;
2934 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002935 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002936 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
2937 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES,
2938 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR
2939 : SMP_VAL_BE_HRQ_HDR,
2940 &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002941 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
2942 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002943 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002944 cfgerr++;
2945 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002946 curproxy->conf.args.file = NULL;
2947 curproxy->conf.args.line = 0;
2948 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002949
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002950 /* only now we can check if some args remain unresolved.
2951 * This must be done after the users and groups resolution.
2952 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002953 cfgerr += smp_resolve_args(curproxy);
2954 if (!cfgerr)
2955 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002956
Willy Tarreau2738a142006-07-08 17:28:09 +02002957 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002958 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02002959 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02002960 (!curproxy->timeout.connect ||
2961 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002962 ha_warning("config : missing timeouts for %s '%s'.\n"
2963 " | While not properly invalid, you will certainly encounter various problems\n"
2964 " | with such a configuration. To fix this, please ensure that all following\n"
2965 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
2966 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002967 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02002968 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02002969
Willy Tarreau1fa31262007-12-03 00:36:16 +01002970 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
2971 * We must still support older configurations, so let's find out whether those
2972 * parameters have been set or must be copied from contimeouts.
2973 */
2974 if (curproxy != &defproxy) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002975 if (!curproxy->timeout.tarpit ||
2976 curproxy->timeout.tarpit == defproxy.timeout.tarpit) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01002977 /* tarpit timeout not set. We search in the following order:
2978 * default.tarpit, curr.connect, default.connect.
2979 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002980 if (defproxy.timeout.tarpit)
Willy Tarreau1fa31262007-12-03 00:36:16 +01002981 curproxy->timeout.tarpit = defproxy.timeout.tarpit;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002982 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002983 curproxy->timeout.tarpit = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002984 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002985 curproxy->timeout.tarpit = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002986 }
2987 if ((curproxy->cap & PR_CAP_BE) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002988 (!curproxy->timeout.queue ||
2989 curproxy->timeout.queue == defproxy.timeout.queue)) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01002990 /* queue timeout not set. We search in the following order:
2991 * default.queue, curr.connect, default.connect.
2992 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002993 if (defproxy.timeout.queue)
Willy Tarreau1fa31262007-12-03 00:36:16 +01002994 curproxy->timeout.queue = defproxy.timeout.queue;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002995 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002996 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002997 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002998 curproxy->timeout.queue = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002999 }
3000 }
3001
Christopher Faulete5870d82020-04-15 11:32:03 +02003002 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003003 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
3004 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003005 err_code |= ERR_WARN;
3006 }
3007
Willy Tarreau193b8c62012-11-22 00:17:38 +01003008 /* ensure that cookie capture length is not too large */
3009 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003010 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3011 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003012 err_code |= ERR_WARN;
3013 curproxy->capture_len = global.tune.cookie_len - 1;
3014 }
3015
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003016 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003017 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003018 curproxy->req_cap_pool = create_pool("ptrcap",
3019 curproxy->nb_req_cap * sizeof(char *),
3020 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003021 }
3022
3023 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003024 curproxy->rsp_cap_pool = create_pool("ptrcap",
3025 curproxy->nb_rsp_cap * sizeof(char *),
3026 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003027 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003028
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003029 switch (curproxy->load_server_state_from_file) {
3030 case PR_SRV_STATE_FILE_UNSPEC:
3031 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3032 break;
3033 case PR_SRV_STATE_FILE_GLOBAL:
3034 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003035 ha_warning("config : backend '%s' configured to load server state file from global section 'server-state-file' directive. Unfortunately, 'server-state-file' is not set!\n",
3036 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003037 err_code |= ERR_WARN;
3038 }
3039 break;
3040 }
3041
Willy Tarreaubaaee002006-06-26 02:48:02 +02003042 /* first, we will invert the servers list order */
3043 newsrv = NULL;
3044 while (curproxy->srv) {
3045 struct server *next;
3046
3047 next = curproxy->srv->next;
3048 curproxy->srv->next = newsrv;
3049 newsrv = curproxy->srv;
3050 if (!next)
3051 break;
3052 curproxy->srv = next;
3053 }
3054
Willy Tarreau17edc812014-01-03 12:14:34 +01003055 /* Check that no server name conflicts. This causes trouble in the stats.
3056 * We only emit a warning for the first conflict affecting each server,
3057 * in order to avoid combinatory explosion if all servers have the same
3058 * name. We do that only for servers which do not have an explicit ID,
3059 * because these IDs were made also for distinguishing them and we don't
3060 * want to annoy people who correctly manage them.
3061 */
3062 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3063 struct server *other_srv;
3064
3065 if (newsrv->puid)
3066 continue;
3067
3068 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3069 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003070 ha_alert("parsing [%s:%d] : %s '%s', another server named '%s' was already defined at line %d, please use distinct names.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003071 newsrv->conf.file, newsrv->conf.line,
3072 proxy_type_str(curproxy), curproxy->id,
3073 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003074 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003075 break;
3076 }
3077 }
3078 }
3079
Willy Tarreaudd701652010-05-25 23:03:02 +02003080 /* assign automatic UIDs to servers which don't have one yet */
3081 next_id = 1;
3082 newsrv = curproxy->srv;
3083 while (newsrv != NULL) {
3084 if (!newsrv->puid) {
3085 /* server ID not set, use automatic numbering with first
3086 * spare entry starting with next_svid.
3087 */
3088 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3089 newsrv->conf.id.key = newsrv->puid = next_id;
3090 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003091 newsrv->conf.name.key = newsrv->id;
3092 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003093 }
3094 next_id++;
3095 newsrv = newsrv->next;
3096 }
3097
Willy Tarreau20697042007-11-15 23:26:18 +01003098 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003099 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003100
Willy Tarreau62c3be22012-01-20 13:12:32 +01003101 /*
3102 * If this server supports a maxconn parameter, it needs a dedicated
3103 * tasks to fill the emptied slots when a connection leaves.
3104 * Also, resolve deferred tracking dependency if needed.
3105 */
3106 newsrv = curproxy->srv;
3107 while (newsrv != NULL) {
3108 if (newsrv->minconn > newsrv->maxconn) {
3109 /* Only 'minconn' was specified, or it was higher than or equal
3110 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3111 * this will avoid further useless expensive computations.
3112 */
3113 newsrv->maxconn = newsrv->minconn;
3114 } else if (newsrv->maxconn && !newsrv->minconn) {
3115 /* minconn was not specified, so we set it to maxconn */
3116 newsrv->minconn = newsrv->maxconn;
3117 }
3118
Willy Tarreau17d45382016-12-22 21:16:08 +01003119 /* this will also properly set the transport layer for prod and checks */
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003120 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 || (newsrv->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003121 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3122 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3123 }
Emeric Brun94324a42012-10-11 14:00:19 +02003124
Willy Tarreau034c88c2017-01-23 23:36:45 +01003125 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3126 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3127 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3128 ha_warning("parsing [%s:%d] : %s '%s': server '%s' has tfo activated, the backend should be configured with at least 'conn-failure', 'empty-response' and 'response-timeout' or we wouldn't be able to retry the connection on failure.\n",
3129 newsrv->conf.file, newsrv->conf.line,
3130 proxy_type_str(curproxy), curproxy->id,
3131 newsrv->id);
3132
Willy Tarreau62c3be22012-01-20 13:12:32 +01003133 if (newsrv->trackit) {
3134 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003135 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003136 char *pname, *sname;
3137
3138 pname = newsrv->trackit;
3139 sname = strrchr(pname, '/');
3140
3141 if (sname)
3142 *sname++ = '\0';
3143 else {
3144 sname = pname;
3145 pname = NULL;
3146 }
3147
3148 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003149 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003150 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003151 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3152 proxy_type_str(curproxy), curproxy->id,
3153 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003154 cfgerr++;
3155 goto next_srv;
3156 }
3157 } else
3158 px = curproxy;
3159
3160 srv = findserver(px, sname);
3161 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003162 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3163 proxy_type_str(curproxy), curproxy->id,
3164 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003165 cfgerr++;
3166 goto next_srv;
3167 }
3168
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003169 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003170 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3171 "tracking as it does not have any check nor agent enabled.\n",
3172 proxy_type_str(curproxy), curproxy->id,
3173 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003174 cfgerr++;
3175 goto next_srv;
3176 }
3177
3178 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3179
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003180 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003181 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3182 "belongs to a tracking chain looping back to %s/%s.\n",
3183 proxy_type_str(curproxy), curproxy->id,
3184 newsrv->id, px->id, srv->id, px->id,
3185 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003186 cfgerr++;
3187 goto next_srv;
3188 }
3189
3190 if (curproxy != px &&
3191 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003192 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3193 "tracking: disable-on-404 option inconsistency.\n",
3194 proxy_type_str(curproxy), curproxy->id,
3195 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003196 cfgerr++;
3197 goto next_srv;
3198 }
3199
Willy Tarreau62c3be22012-01-20 13:12:32 +01003200 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003201 newsrv->tracknext = srv->trackers;
3202 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003203
3204 free(newsrv->trackit);
3205 newsrv->trackit = NULL;
3206 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003207
Willy Tarreau62c3be22012-01-20 13:12:32 +01003208 next_srv:
3209 newsrv = newsrv->next;
3210 }
3211
Olivier Houchard4e694042017-03-14 20:01:29 +01003212 /*
3213 * Try to generate dynamic cookies for servers now.
3214 * It couldn't be done earlier, since at the time we parsed
3215 * the server line, we may not have known yet that we
3216 * should use dynamic cookies, or the secret key may not
3217 * have been provided yet.
3218 */
3219 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3220 newsrv = curproxy->srv;
3221 while (newsrv != NULL) {
3222 srv_set_dyncookie(newsrv);
3223 newsrv = newsrv->next;
3224 }
3225
3226 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003227 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003228 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003229 */
3230
3231 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3232 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3233 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003234 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3235 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3236 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003237 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3238 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3239 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003240 } else {
3241 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3242 fwrr_init_server_groups(curproxy);
3243 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003244 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003245
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003246 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003247 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3248 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3249 fwlc_init_server_tree(curproxy);
3250 } else {
3251 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3252 fas_init_server_tree(curproxy);
3253 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003254 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003255
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003256 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003257 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3258 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3259 chash_init_server_tree(curproxy);
3260 } else {
3261 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3262 init_server_map(curproxy);
3263 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003264 break;
3265 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003266 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003267
3268 if (curproxy->options & PR_O_LOGASAP)
3269 curproxy->to_log &= ~LW_BYTES;
3270
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003271 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003272 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3273 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003274 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3275 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003276 err_code |= ERR_WARN;
3277 }
3278
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003279 if (curproxy->mode != PR_MODE_HTTP) {
3280 int optnum;
3281
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003282 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003283 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3284 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003285 err_code |= ERR_WARN;
3286 curproxy->uri_auth = NULL;
3287 }
3288
Willy Tarreaude7dc882017-03-10 11:49:21 +01003289 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003290 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3291 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003292 err_code |= ERR_WARN;
3293 }
3294
3295 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003296 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3297 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003298 err_code |= ERR_WARN;
3299 }
3300
3301 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003302 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3303 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003304 err_code |= ERR_WARN;
3305 }
3306
Willy Tarreaude7dc882017-03-10 11:49:21 +01003307 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003308 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3309 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003310 err_code |= ERR_WARN;
3311 }
3312
Willy Tarreau87cf5142011-08-19 22:57:24 +02003313 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003314 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3315 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003316 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003317 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003318 }
3319
3320 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003321 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3322 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003323 err_code |= ERR_WARN;
3324 curproxy->options &= ~PR_O_ORGTO;
3325 }
3326
3327 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3328 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3329 (curproxy->cap & cfg_opts[optnum].cap) &&
3330 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003331 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3332 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003333 err_code |= ERR_WARN;
3334 curproxy->options &= ~cfg_opts[optnum].val;
3335 }
3336 }
3337
3338 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3339 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3340 (curproxy->cap & cfg_opts2[optnum].cap) &&
3341 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003342 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3343 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003344 err_code |= ERR_WARN;
3345 curproxy->options2 &= ~cfg_opts2[optnum].val;
3346 }
3347 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003348
Willy Tarreau29fbe512015-08-20 19:35:14 +02003349#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003350 if (curproxy->conn_src.bind_hdr_occ) {
3351 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003352 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3353 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003354 err_code |= ERR_WARN;
3355 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003356#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003357 }
3358
Willy Tarreaubaaee002006-06-26 02:48:02 +02003359 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003360 * ensure that we're not cross-dressing a TCP server into HTTP.
3361 */
3362 newsrv = curproxy->srv;
3363 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003364 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003365 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3366 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003367 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003368 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003369
Willy Tarreau0cec3312011-10-31 13:49:26 +01003370 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003371 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3372 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003373 err_code |= ERR_WARN;
3374 }
3375
Willy Tarreauc93cd162014-05-13 15:54:22 +02003376 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003377 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3378 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003379 err_code |= ERR_WARN;
3380 }
3381
Willy Tarreau29fbe512015-08-20 19:35:14 +02003382#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003383 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3384 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003385 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3386 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003387 err_code |= ERR_WARN;
3388 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003389#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003390
Willy Tarreau46deab62018-04-28 07:18:15 +02003391 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3392 curproxy->options &= ~PR_O_REUSE_MASK;
3393
Willy Tarreau21d2af32008-02-14 20:25:24 +01003394 newsrv = newsrv->next;
3395 }
3396
Christopher Fauletd7c91962015-04-30 11:48:27 +02003397 /* Check filter configuration, if any */
3398 cfgerr += flt_check(curproxy);
3399
Willy Tarreauc1a21672009-08-16 22:37:44 +02003400 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003401 if (!curproxy->accept)
3402 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003403
Willy Tarreauc1a21672009-08-16 22:37:44 +02003404 if (curproxy->tcp_req.inspect_delay ||
3405 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003406 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003407
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003408 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003409 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003410 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003411 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003412
William Lallemandcf62f7e2018-10-26 14:47:40 +02003413 if (curproxy->mode == PR_MODE_CLI) {
3414 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3415 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3416 }
3417
Willy Tarreauc1a21672009-08-16 22:37:44 +02003418 /* both TCP and HTTP must check switching rules */
3419 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003420
3421 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003422 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003423 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3424 curproxy->fe_rsp_ana |= AN_RES_FLT_START_FE | AN_RES_FLT_XFER_DATA | AN_RES_FLT_END;
Christopher Faulet309c6412015-12-02 09:57:32 +01003425 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003426 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3427 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003428 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003429 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003430 }
3431
3432 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003433 if (curproxy->tcp_req.inspect_delay ||
3434 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3435 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3436
Emeric Brun97679e72010-09-23 17:56:44 +02003437 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3438 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3439
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003440 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003441 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003442 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003443 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003444
3445 /* If the backend does requires RDP cookie persistence, we have to
3446 * enable the corresponding analyser.
3447 */
3448 if (curproxy->options2 & PR_O2_RDPC_PRST)
3449 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003450
3451 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003452 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003453 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3454 curproxy->be_rsp_ana |= AN_RES_FLT_START_BE | AN_RES_FLT_XFER_DATA | AN_RES_FLT_END;
Christopher Faulet309c6412015-12-02 09:57:32 +01003455 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003456 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3457 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003458 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003459 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003460 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003461
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003462 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003463 * attached to the current proxy */
3464 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3465 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003466 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003467
3468 if (!bind_conf->mux_proto)
3469 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003470
3471 /* it is possible that an incorrect mux was referenced
3472 * due to the proxy's mode not being taken into account
3473 * on first pass. Let's adjust it now.
3474 */
3475 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3476
3477 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003478 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3479 proxy_type_str(curproxy), curproxy->id,
3480 (int)bind_conf->mux_proto->token.len,
3481 bind_conf->mux_proto->token.ptr,
3482 bind_conf->arg, bind_conf->file, bind_conf->line);
3483 cfgerr++;
3484 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003485
3486 /* update the mux */
3487 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003488 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003489 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3490 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003491 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003492
3493 if (!newsrv->mux_proto)
3494 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003495
3496 /* it is possible that an incorrect mux was referenced
3497 * due to the proxy's mode not being taken into account
3498 * on first pass. Let's adjust it now.
3499 */
3500 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3501
3502 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003503 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3504 proxy_type_str(curproxy), curproxy->id,
3505 (int)newsrv->mux_proto->token.len,
3506 newsrv->mux_proto->token.ptr,
3507 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3508 cfgerr++;
3509 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003510
3511 /* update the mux */
3512 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003513 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003514
3515 /* initialize idle conns lists */
3516 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3517 int i;
3518
Willy Tarreauad37c7a2020-07-17 14:18:36 +02003519 newsrv->available_conns = calloc(global.nbthread, sizeof(*newsrv->available_conns));
Willy Tarreau835daa12019-02-07 14:46:29 +01003520
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003521 if (!newsrv->available_conns) {
Willy Tarreau835daa12019-02-07 14:46:29 +01003522 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003523 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau835daa12019-02-07 14:46:29 +01003524 cfgerr++;
3525 continue;
3526 }
3527
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003528 for (i = 0; i < global.nbthread; i++)
3529 LIST_INIT(&newsrv->available_conns[i]);
Willy Tarreau980855b2019-02-07 14:59:29 +01003530
3531 if (newsrv->max_idle_conns != 0) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003532 if (idle_conn_task == NULL) {
3533 idle_conn_task = task_new(MAX_THREADS_MASK);
3534 if (!idle_conn_task)
3535 goto err;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003536
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003537 idle_conn_task->process = srv_cleanup_idle_connections;
3538 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003539
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003540 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003541 idle_conns[i].cleanup_task = task_new(1UL << i);
3542 if (!idle_conns[i].cleanup_task)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003543 goto err;
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003544 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_connections;
3545 idle_conns[i].cleanup_task->context = NULL;
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003546 HA_SPIN_INIT(&idle_conns[i].takeover_lock);
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003547 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003548 }
3549 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003550
Willy Tarreau9b9c1742020-07-17 15:04:53 +02003551 newsrv->idle_conns = calloc((unsigned short)global.nbthread, sizeof(*newsrv->idle_conns));
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003552 if (!newsrv->idle_conns) {
3553 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3554 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3555 cfgerr++;
3556 continue;
3557 }
3558
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003559 for (i = 0; i < global.nbthread; i++)
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003560 MT_LIST_INIT(&newsrv->idle_conns[i]);
3561
Willy Tarreauad37c7a2020-07-17 14:18:36 +02003562 newsrv->safe_conns = calloc(global.nbthread, sizeof(*newsrv->safe_conns));
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003563 if (!newsrv->safe_conns) {
3564 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3565 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3566 cfgerr++;
3567 continue;
3568 }
3569
3570 for (i = 0; i < global.nbthread; i++)
3571 MT_LIST_INIT(&newsrv->safe_conns[i]);
3572
Tim Duesterhusb53dd032020-09-12 20:26:42 +02003573 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
Olivier Houchardf1314812019-02-18 16:41:17 +01003574 if (!newsrv->curr_idle_thr)
3575 goto err;
Willy Tarreau980855b2019-02-07 14:59:29 +01003576 continue;
3577 err:
3578 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3579 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3580 cfgerr++;
3581 continue;
3582 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003583 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003584 }
3585
3586 /***********************************************************/
3587 /* At this point, target names have already been resolved. */
3588 /***********************************************************/
3589
3590 /* Check multi-process mode compatibility */
3591
3592 if (global.nbproc > 1 && global.stats_fe) {
3593 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3594 unsigned long mask;
3595
Willy Tarreau6daac192019-02-02 17:39:53 +01003596 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02003597 mask &= proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003598
3599 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003600 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003601 break;
3602 }
3603 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003604 ha_warning("stats socket will not work as expected in multi-process mode (nbproc > 1), you should force process binding globally using 'stats bind-process' or per socket using the 'process' attribute.\n");
Willy Tarreau419ead82014-09-16 13:41:21 +02003605 }
3606 }
3607
3608 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003609 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003610 if (curproxy->bind_proc)
3611 continue;
3612
3613 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3614 unsigned long mask;
3615
Willy Tarreaue26993c2020-09-03 07:18:55 +02003616 mask = proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003617 curproxy->bind_proc |= mask;
3618 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003619 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003620 }
3621
3622 if (global.stats_fe) {
3623 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3624 unsigned long mask;
3625
Willy Tarreaue26993c2020-09-03 07:18:55 +02003626 mask = bind_conf->settings.bind_proc ? bind_conf->settings.bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003627 global.stats_fe->bind_proc |= mask;
3628 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003629 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003630 }
3631
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003632 /* propagate bindings from frontends to backends. Don't do it if there
3633 * are any fatal errors as we must not call it with unresolved proxies.
3634 */
3635 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003636 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003637 if (curproxy->cap & PR_CAP_FE)
3638 propagate_processes(curproxy, NULL);
3639 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003640 }
3641
3642 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003643 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3644 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003645
3646 /*******************************************************/
3647 /* At this step, all proxies have a non-null bind_proc */
3648 /*******************************************************/
3649
3650 /* perform the final checks before creating tasks */
3651
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003652 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003653 struct listener *listener;
3654 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003655
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003656 /* Configure SSL for each bind line.
3657 * Note: if configuration fails at some point, the ->ctx member
3658 * remains NULL so that listeners can later detach.
3659 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003660 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003661 if (bind_conf->xprt->prepare_bind_conf &&
3662 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003663 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003664 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003665
Willy Tarreaue6b98942007-10-29 01:09:36 +01003666 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003667 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003668 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003669 int nbproc;
3670
3671 nbproc = my_popcountl(curproxy->bind_proc &
Willy Tarreaue26993c2020-09-03 07:18:55 +02003672 (listener->bind_conf->settings.bind_proc ? listener->bind_conf->settings.bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003673 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003674
3675 if (!nbproc) /* no intersection between listener and frontend */
3676 nbproc = 1;
3677
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003678 if (!listener->luid) {
3679 /* listener ID not set, use automatic numbering with first
3680 * spare entry starting with next_luid.
3681 */
3682 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3683 listener->conf.id.key = listener->luid = next_id;
3684 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003685 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003686 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003687
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003688 /* enable separate counters */
3689 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003690 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003691 if (!listener->name)
3692 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003693 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003694
Willy Tarreaue6b98942007-10-29 01:09:36 +01003695 if (curproxy->options & PR_O_TCP_NOLING)
3696 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003697 if (!listener->maxaccept)
3698 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3699
3700 /* we want to have an optimal behaviour on single process mode to
3701 * maximize the work at once, but in multi-process we want to keep
3702 * some fairness between processes, so we target half of the max
3703 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003704 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003705 * used to disable the limit.
3706 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003707 if (listener->maxaccept > 0 && nbproc > 1) {
3708 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003709 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3710 }
3711
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003712 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003713 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003714 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003715
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003716 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003717 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003718
Willy Tarreau620408f2016-10-21 16:37:51 +02003719 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3720 listener->options |= LI_O_TCP_L5_RULES;
3721
Willy Tarreaude3041d2010-05-31 10:56:17 +02003722 if (curproxy->mon_mask.s_addr)
3723 listener->options |= LI_O_CHK_MONNET;
3724
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003725 /* smart accept mode is automatic in HTTP mode */
3726 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003727 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003728 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3729 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003730 }
3731
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003732 /* Release unused SSL configs */
3733 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003734 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3735 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003736 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003737
Willy Tarreaua38a7172019-02-02 17:11:28 +01003738 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003739 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003740 int count, maxproc = 0;
3741
3742 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreaue26993c2020-09-03 07:18:55 +02003743 count = my_popcountl(bind_conf->settings.bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003744 if (count > maxproc)
3745 maxproc = count;
3746 }
3747 /* backends have 0, frontends have 1 or more */
3748 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003749 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3750 " limited to process assigned to the current request.\n",
3751 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003752
Willy Tarreau102df612014-05-07 23:56:38 +02003753 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003754 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3755 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003756 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003757 }
Willy Tarreau102df612014-05-07 23:56:38 +02003758 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003759 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3760 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003761 }
3762 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003763
3764 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003765 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003766 if (curproxy->task) {
3767 curproxy->task->context = curproxy;
3768 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003769 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003770 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3771 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003772 cfgerr++;
3773 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003774 }
3775
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003776 /*
3777 * Recount currently required checks.
3778 */
3779
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003780 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003781 int optnum;
3782
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003783 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3784 if (curproxy->options & cfg_opts[optnum].val)
3785 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003786
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003787 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3788 if (curproxy->options2 & cfg_opts2[optnum].val)
3789 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003790 }
3791
Willy Tarreau0fca4832015-05-01 19:12:05 +02003792 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003793 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003794 if (curproxy->table && curproxy->table->peers.p)
3795 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003796
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003797 /* compute the required process bindings for the peers from <stktables_list>
3798 * for all the stick-tables, the ones coming with "peers" sections included.
3799 */
3800 for (t = stktables_list; t; t = t->next) {
3801 struct proxy *p;
3802
3803 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3804 if (t->peers.p && t->peers.p->peers_fe) {
3805 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3806 }
3807 }
3808 }
3809
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003810 if (cfg_peers) {
3811 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003812 struct peer *p, *pb;
3813
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003814 /* In the case the peers frontend was not initialized by a
3815 stick-table used in the configuration, set its bind_proc
3816 by default to the first process. */
3817 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003818 if (curpeers->peers_fe) {
3819 if (curpeers->peers_fe->bind_proc == 0)
3820 curpeers->peers_fe->bind_proc = 1;
3821 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003822 curpeers = curpeers->next;
3823 }
3824
3825 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003826 /* Remove all peers sections which don't have a valid listener,
3827 * which are not used by any table, or which are bound to more
3828 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003829 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003830 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003831 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003832 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003833 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003834
3835 if (curpeers->state == PR_STSTOPPED) {
3836 /* the "disabled" keyword was present */
3837 if (curpeers->peers_fe)
3838 stop_proxy(curpeers->peers_fe);
3839 curpeers->peers_fe = NULL;
3840 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003841 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003842 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3843 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003844 if (curpeers->peers_fe)
3845 stop_proxy(curpeers->peers_fe);
3846 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003847 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003848 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003849 /* either it's totally stopped or too much used */
3850 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003851 ha_alert("Peers section '%s': peers referenced by sections "
3852 "running in different processes (%d different ones). "
3853 "Check global.nbproc and all tables' bind-process "
3854 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003855 cfgerr++;
3856 }
3857 stop_proxy(curpeers->peers_fe);
3858 curpeers->peers_fe = NULL;
3859 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003860 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003861 /* Initializes the transport layer of the server part of all the peers belonging to
3862 * <curpeers> section if required.
3863 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3864 * of an old process.
3865 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003866 p = curpeers->remote;
3867 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003868 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003869 if (p->srv->use_ssl == 1 && xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003870 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3871 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003872 p = p->next;
3873 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003874 /* Configure the SSL bindings of the local peer if required. */
3875 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3876 struct list *l;
3877 struct bind_conf *bind_conf;
3878
3879 l = &curpeers->peers_fe->conf.bind;
3880 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3881 if (bind_conf->xprt->prepare_bind_conf &&
3882 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3883 cfgerr++;
3884 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003885 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02003886 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3887 curpeers->id);
3888 cfgerr++;
3889 break;
3890 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003891 last = &curpeers->next;
3892 continue;
3893 }
3894
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003895 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003896 p = curpeers->remote;
3897 while (p) {
3898 pb = p->next;
3899 free(p->id);
3900 free(p);
3901 p = pb;
3902 }
3903
3904 /* Destroy and unlink this curpeers section.
3905 * Note: curpeers is backed up into *last.
3906 */
3907 free(curpeers->id);
3908 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003909 /* Reset any refereance to this peers section in the list of stick-tables */
3910 for (t = stktables_list; t; t = t->next) {
3911 if (t->peers.p && t->peers.p == *last)
3912 t->peers.p = NULL;
3913 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003914 free(*last);
3915 *last = curpeers;
3916 }
3917 }
3918
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003919 for (t = stktables_list; t; t = t->next) {
3920 if (t->proxy)
3921 continue;
3922 if (!stktable_init(t)) {
3923 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
3924 cfgerr++;
3925 }
3926 }
3927
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003928 /* initialize stick-tables on backend capable proxies. This must not
3929 * be done earlier because the data size may be discovered while parsing
3930 * other proxies.
3931 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003932 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003933 if (curproxy->state == PR_STSTOPPED || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003934 continue;
3935
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003936 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003937 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003938 cfgerr++;
3939 }
3940 }
3941
Simon Horman0d16a402015-01-30 11:22:58 +09003942 if (mailers) {
3943 struct mailers *curmailers = mailers, **last;
3944 struct mailer *m, *mb;
3945
3946 /* Remove all mailers sections which don't have a valid listener.
3947 * This can happen when a mailers section is never referenced.
3948 */
3949 last = &mailers;
3950 while (*last) {
3951 curmailers = *last;
3952 if (curmailers->users) {
3953 last = &curmailers->next;
3954 continue;
3955 }
3956
Christopher Faulet767a84b2017-11-24 16:50:31 +01003957 ha_warning("Removing incomplete section 'mailers %s'.\n",
3958 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09003959
3960 m = curmailers->mailer_list;
3961 while (m) {
3962 mb = m->next;
3963 free(m->id);
3964 free(m);
3965 m = mb;
3966 }
3967
3968 /* Destroy and unlink this curmailers section.
3969 * Note: curmailers is backed up into *last.
3970 */
3971 free(curmailers->id);
3972 curmailers = curmailers->next;
3973 free(*last);
3974 *last = curmailers;
3975 }
3976 }
3977
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003978 /* Update server_state_file_name to backend name if backend is supposed to use
3979 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003980 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003981 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
3982 curproxy->server_state_file_name == NULL)
3983 curproxy->server_state_file_name = strdup(curproxy->id);
3984 }
3985
Ben Draut054fbee2018-04-13 15:43:04 -06003986 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
3987 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
3988 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
3989 curr_resolvers->id, curr_resolvers->conf.file,
3990 curr_resolvers->conf.line);
3991 err_code |= ERR_WARN;
3992 }
3993 }
3994
William Lallemand48b4bb42017-10-23 14:36:34 +02003995 list_for_each_entry(postparser, &postparsers, list) {
3996 if (postparser->func)
3997 cfgerr += postparser->func();
3998 }
3999
Willy Tarreaubb925012009-07-23 13:36:36 +02004000 if (cfgerr > 0)
4001 err_code |= ERR_ALERT | ERR_FATAL;
4002 out:
4003 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004004}
4005
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004006/*
4007 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4008 * parsing sessions.
4009 */
4010void cfg_register_keywords(struct cfg_kw_list *kwl)
4011{
4012 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
4013}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004014
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004015/*
4016 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4017 */
4018void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4019{
4020 LIST_DEL(&kwl->list);
4021 LIST_INIT(&kwl->list);
4022}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004023
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004024/* this function register new section in the haproxy configuration file.
4025 * <section_name> is the name of this new section and <section_parser>
4026 * is the called parser. If two section declaration have the same name,
4027 * only the first declared is used.
4028 */
4029int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004030 int (*section_parser)(const char *, int, char **, int),
4031 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004032{
4033 struct cfg_section *cs;
4034
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004035 list_for_each_entry(cs, &sections, list) {
4036 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004037 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004038 return 0;
4039 }
4040 }
4041
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004042 cs = calloc(1, sizeof(*cs));
4043 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004044 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004045 return 0;
4046 }
4047
4048 cs->section_name = section_name;
4049 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004050 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004051
4052 LIST_ADDQ(&sections, &cs->list);
4053
4054 return 1;
4055}
4056
William Lallemand48b4bb42017-10-23 14:36:34 +02004057/* this function register a new function which will be called once the haproxy
4058 * configuration file has been parsed. It's useful to check dependencies
4059 * between sections or to resolve items once everything is parsed.
4060 */
4061int cfg_register_postparser(char *name, int (*func)())
4062{
4063 struct cfg_postparser *cp;
4064
4065 cp = calloc(1, sizeof(*cp));
4066 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004067 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004068 return 0;
4069 }
4070 cp->name = name;
4071 cp->func = func;
4072
4073 LIST_ADDQ(&postparsers, &cp->list);
4074
4075 return 1;
4076}
4077
Willy Tarreaubaaee002006-06-26 02:48:02 +02004078/*
David Carlier845efb52015-09-25 11:49:18 +01004079 * free all config section entries
4080 */
4081void cfg_unregister_sections(void)
4082{
4083 struct cfg_section *cs, *ics;
4084
4085 list_for_each_entry_safe(cs, ics, &sections, list) {
4086 LIST_DEL(&cs->list);
4087 free(cs);
4088 }
4089}
4090
Christopher Faulet7110b402016-10-26 11:09:44 +02004091void cfg_backup_sections(struct list *backup_sections)
4092{
4093 struct cfg_section *cs, *ics;
4094
4095 list_for_each_entry_safe(cs, ics, &sections, list) {
4096 LIST_DEL(&cs->list);
4097 LIST_ADDQ(backup_sections, &cs->list);
4098 }
4099}
4100
4101void cfg_restore_sections(struct list *backup_sections)
4102{
4103 struct cfg_section *cs, *ics;
4104
4105 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4106 LIST_DEL(&cs->list);
4107 LIST_ADDQ(&sections, &cs->list);
4108 }
4109}
4110
Willy Tarreaue6552512018-11-26 11:33:13 +01004111/* these are the config sections handled by default */
4112REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4113REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4114REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4115REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4116REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4117REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4118REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4119REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4120REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4121REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004122
David Carlier845efb52015-09-25 11:49:18 +01004123/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004124 * Local variables:
4125 * c-indent-level: 8
4126 * c-basic-offset: 8
4127 * End:
4128 */