blob: 707046e4734ef2deaf413c4afc6f91dc52c4de8c [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 Tarreau2dd0d472006-06-29 17:53:05 +020036#include <common/cfgparse.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020037#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020038#include <common/config.h>
Willy Tarreau058e9072009-07-20 09:30:05 +020039#include <common/errors.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020040#include <common/memory.h>
41#include <common/standard.h>
42#include <common/time.h>
43#include <common/uri_auth.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010044#include <common/namespace.h>
Emeric Brunc60def82017-09-27 14:59:38 +020045#include <common/hathreads.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020046
47#include <types/capture.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020048#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020049#include <types/global.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010050#include <types/obj_type.h>
Emeric Brun32da3c42010-09-23 18:39:19 +020051#include <types/peers.h>
Simon Horman0d16a402015-01-30 11:22:58 +090052#include <types/mailers.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +020053#include <types/dns.h>
William Lallemand9ed62032016-11-21 17:49:11 +010054#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020055
Willy Tarreaueb0c6142007-05-07 00:53:22 +020056#include <proto/acl.h>
Christopher Faulet4fce0d82017-09-18 11:57:31 +020057#include <proto/action.h>
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +010058#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020059#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020060#include <proto/channel.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020061#include <proto/checks.h>
Baptiste Assmann201c07f2017-05-22 15:17:15 +020062#include <proto/dns.h>
William Lallemand9ed62032016-11-21 17:49:11 +010063#include <proto/stats.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020064#include <proto/filters.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020065#include <proto/frontend.h>
Willy Tarreau61c112a2018-10-02 16:43:32 +020066#include <proto/http_rules.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020067#include <proto/lb_chash.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010068#include <proto/lb_fas.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020069#include <proto/lb_fwlc.h>
70#include <proto/lb_fwrr.h>
71#include <proto/lb_map.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020072#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020073#include <proto/log.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020074#include <proto/protocol.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020075#include <proto/http_ana.h>
Willy Tarreau2b5652f2006-12-31 17:46:05 +010076#include <proto/proxy.h>
Emeric Brun32da3c42010-09-23 18:39:19 +020077#include <proto/peers.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020078#include <proto/sample.h>
Willy Tarreau9903f0e2015-04-04 18:50:31 +020079#include <proto/session.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020080#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020081#include <proto/stream.h>
Emeric Brunb982a3d2010-01-04 15:45:53 +010082#include <proto/stick_table.h>
Willy Tarreau39713102016-11-25 15:49:32 +010083#include <proto/task.h>
84#include <proto/tcp_rules.h>
Olivier Houchard673867c2018-05-25 16:58:52 +020085#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020086
87
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010088/* Used to chain configuration sections definitions. This list
89 * stores struct cfg_section
90 */
91struct list sections = LIST_HEAD_INIT(sections);
92
William Lallemand48b4bb42017-10-23 14:36:34 +020093struct list postparsers = LIST_HEAD_INIT(postparsers);
94
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010095char *cursection = NULL;
96struct proxy defproxy = { }; /* fake proxy used to assign default values on all instances */
Willy Tarreauc8d5b952019-02-27 17:25:52 +010097int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +010098int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +010099char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200100
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200101/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100102struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200103 .list = LIST_HEAD_INIT(cfg_keywords.list)
104};
105
Willy Tarreaubaaee002006-06-26 02:48:02 +0200106/*
107 * converts <str> to a list of listeners which are dynamically allocated.
108 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
109 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
110 * - <port> is a numerical port from 1 to 65535 ;
111 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
112 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200113 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
114 * not NULL, it must be a valid pointer to either NULL or a freeable area that
115 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200116 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200117int 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 +0200118{
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100119 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200120 int port, end;
121
122 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200123
Willy Tarreaubaaee002006-06-26 02:48:02 +0200124 while (next && *next) {
William Lallemand75ea0a02017-11-15 19:02:58 +0100125 int inherited = 0;
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200126 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100127 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200128
129 str = next;
130 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100131 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200132 *next++ = 0;
133 }
134
Willy Tarreau48ef4c92017-01-06 18:32:38 +0100135 ss2 = str2sa_range(str, NULL, &port, &end, err,
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200136 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +0200137 NULL, 1);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100138 if (!ss2)
139 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200140
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100141 if (ss2->ss_family == AF_INET || ss2->ss_family == AF_INET6) {
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100142 if (!port && !end) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200143 memprintf(err, "missing port number: '%s'\n", str);
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100144 goto fail;
Emeric Bruned760922010-10-22 17:59:25 +0200145 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200146
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100147 if (!port || !end) {
148 memprintf(err, "port offsets are not allowed in 'bind': '%s'\n", str);
149 goto fail;
150 }
151
Emeric Bruned760922010-10-22 17:59:25 +0200152 if (port < 1 || port > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200153 memprintf(err, "invalid port '%d' specified for address '%s'.\n", port, str);
Emeric Bruned760922010-10-22 17:59:25 +0200154 goto fail;
155 }
156
157 if (end < 1 || end > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200158 memprintf(err, "invalid port '%d' specified for address '%s'.\n", end, str);
Emeric Bruned760922010-10-22 17:59:25 +0200159 goto fail;
160 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200161 }
Willy Tarreau40aa0702013-03-10 23:51:38 +0100162 else if (ss2->ss_family == AF_UNSPEC) {
163 socklen_t addr_len;
William Lallemand75ea0a02017-11-15 19:02:58 +0100164 inherited = 1;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100165
166 /* We want to attach to an already bound fd whose number
167 * is in the addr part of ss2 when cast to sockaddr_in.
168 * Note that by definition there is a single listener.
169 * We still have to determine the address family to
170 * register the correct protocol.
171 */
172 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
173 addr_len = sizeof(*ss2);
174 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
175 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
176 goto fail;
177 }
178
179 port = end = get_host_port(ss2);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200180
181 } else if (ss2->ss_family == AF_CUST_SOCKPAIR) {
182 socklen_t addr_len;
183 inherited = 1;
184
185 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
186 addr_len = sizeof(*ss2);
187 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
188 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
189 goto fail;
190 }
191
192 ss2->ss_family = AF_CUST_SOCKPAIR; /* reassign AF_CUST_SOCKPAIR because of getsockname */
193 port = end = 0;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100194 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200195
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100196 /* OK the address looks correct */
William Lallemand75ea0a02017-11-15 19:02:58 +0100197 if (!create_listeners(bind_conf, ss2, port, end, fd, inherited, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200198 memprintf(err, "%s for address '%s'.\n", *err, str);
199 goto fail;
200 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200201 } /* end while(next) */
202 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200203 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200204 fail:
205 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200206 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200207}
208
William Lallemand6e62fb62015-04-28 16:55:23 +0200209/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100210 * Report an error in <msg> when there are too many arguments. This version is
211 * intended to be used by keyword parsers so that the message will be included
212 * into the general error message. The index is the current keyword in args.
213 * Return 0 if the number of argument is correct, otherwise build a message and
214 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
215 * message may also be null, it will simply not be produced (useful to check only).
216 * <msg> and <err_code> are only affected on error.
217 */
218int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
219{
220 int i;
221
222 if (!*args[index + maxarg + 1])
223 return 0;
224
225 if (msg) {
226 *msg = NULL;
227 memprintf(msg, "%s", args[0]);
228 for (i = 1; i <= index; i++)
229 memprintf(msg, "%s %s", *msg, args[i]);
230
231 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
232 }
233 if (err_code)
234 *err_code |= ERR_ALERT | ERR_FATAL;
235
236 return 1;
237}
238
239/*
240 * same as too_many_args_idx with a 0 index
241 */
242int too_many_args(int maxarg, char **args, char **msg, int *err_code)
243{
244 return too_many_args_idx(maxarg, 0, args, msg, err_code);
245}
246
247/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200248 * Report a fatal Alert when there is too much arguments
249 * The index is the current keyword in args
250 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
251 * Fill err_code with an ERR_ALERT and an ERR_FATAL
252 */
253int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
254{
255 char *kw = NULL;
256 int i;
257
258 if (!*args[index + maxarg + 1])
259 return 0;
260
261 memprintf(&kw, "%s", args[0]);
262 for (i = 1; i <= index; i++) {
263 memprintf(&kw, "%s %s", kw, args[i]);
264 }
265
Christopher Faulet767a84b2017-11-24 16:50:31 +0100266 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 +0200267 free(kw);
268 *err_code |= ERR_ALERT | ERR_FATAL;
269 return 1;
270}
271
272/*
273 * same as alertif_too_many_args_idx with a 0 index
274 */
275int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
276{
277 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
278}
279
Willy Tarreau61d18892009-03-31 10:49:21 +0200280
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100281/* Report it if a request ACL condition uses some keywords that are incompatible
282 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
283 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
284 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100285 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100286int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100287{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100288 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200289 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100290
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100291 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100292 return 0;
293
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100294 acl = acl_cond_conflicts(cond, where);
295 if (acl) {
296 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100297 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
298 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100299 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100300 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
301 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100302 return ERR_WARN;
303 }
304 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100305 return 0;
306
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100307 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100308 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
309 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100310 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100311 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
312 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100313 return ERR_WARN;
314}
315
Christopher Faulet62519022017-10-16 15:49:32 +0200316/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100317 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100318 * two such numbers delimited by a dash ('-'). On success, it returns
319 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200320 *
321 * Note: this function can also be used to parse a thread number or a set of
322 * threads.
323 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100324int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200325{
Christopher Faulet26028f62017-11-22 15:01:51 +0100326 if (autoinc) {
327 *autoinc = 0;
328 if (strncmp(arg, "auto:", 5) == 0) {
329 arg += 5;
330 *autoinc = 1;
331 }
332 }
333
Christopher Faulet62519022017-10-16 15:49:32 +0200334 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100335 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200336 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100337 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200338 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100339 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200340 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100341 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100342 unsigned int low, high;
343
Christopher Faulet18cca782019-02-07 16:29:41 +0100344 for (p = arg; *p; p++) {
345 if (*p == '-' && !dash)
346 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100347 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100348 memprintf(err, "'%s' is not a valid number/range.", arg);
349 return -1;
350 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100351 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100352
353 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100354 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100355 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100356
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100357 if (high < low) {
358 unsigned int swap = low;
359 low = high;
360 high = swap;
361 }
362
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100363 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100364 memprintf(err, "'%s' is not a valid number/range."
365 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100366 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100367 return 1;
368 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100369
370 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100371 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200372 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100373 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100374
Christopher Faulet5ab51772017-11-22 11:21:58 +0100375 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200376}
377
David Carlier7e351ee2017-12-01 09:14:02 +0000378#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200379/* Parse cpu sets. Each CPU set is either a unique number between 0 and
380 * <LONGBITS> or a range with two such numbers delimited by a dash
381 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
382 * returns 0. otherwise it returns 1 with an error message in <err>.
383 */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100384unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200385{
386 int cur_arg = 0;
387
388 *cpu_set = 0;
389 while (*args[cur_arg]) {
390 char *dash;
391 unsigned int low, high;
392
Willy Tarreau90807112020-02-25 08:16:33 +0100393 if (!isdigit((unsigned char)*args[cur_arg])) {
Christopher Faulet62519022017-10-16 15:49:32 +0200394 memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
395 return -1;
396 }
397
398 low = high = str2uic(args[cur_arg]);
399 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100400 high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
Christopher Faulet62519022017-10-16 15:49:32 +0200401
402 if (high < low) {
403 unsigned int swap = low;
404 low = high;
405 high = swap;
406 }
407
408 if (high >= LONGBITS) {
409 memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
410 return 1;
411 }
412
413 while (low <= high)
414 *cpu_set |= 1UL << low++;
415
416 cur_arg++;
417 }
418 return 0;
419}
David Carlier7e351ee2017-12-01 09:14:02 +0000420#endif
421
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200422void init_default_instance()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200423{
Willy Tarreau97cb7802010-01-03 20:23:58 +0100424 init_new_proxy(&defproxy);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200425 defproxy.mode = PR_MODE_TCP;
426 defproxy.state = PR_STNEW;
427 defproxy.maxconn = cfg_maxpconn;
428 defproxy.conn_retries = CONN_RETRIES;
Joseph Lynch726ab712015-05-11 23:25:34 -0700429 defproxy.redispatch_after = 0;
Olivier Houchard86006a52018-12-14 19:37:49 +0100430 defproxy.options = PR_O_REUSE_SAFE;
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +0100431 defproxy.max_out_conns = MAX_SRV_LIST;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100432
Simon Horman66183002013-02-23 10:16:43 +0900433 defproxy.defsrv.check.inter = DEF_CHKINTR;
434 defproxy.defsrv.check.fastinter = 0;
435 defproxy.defsrv.check.downinter = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900436 defproxy.defsrv.agent.inter = DEF_CHKINTR;
437 defproxy.defsrv.agent.fastinter = 0;
438 defproxy.defsrv.agent.downinter = 0;
Simon Horman58c32972013-11-25 10:46:38 +0900439 defproxy.defsrv.check.rise = DEF_RISETIME;
440 defproxy.defsrv.check.fall = DEF_FALLTIME;
441 defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME;
442 defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME;
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200443 defproxy.defsrv.check.port = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900444 defproxy.defsrv.agent.port = 0;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100445 defproxy.defsrv.maxqueue = 0;
446 defproxy.defsrv.minconn = 0;
447 defproxy.defsrv.maxconn = 0;
Willy Tarreau9c538e02019-01-23 10:21:49 +0100448 defproxy.defsrv.max_reuse = -1;
Olivier Houchard006e3102018-12-10 18:30:32 +0100449 defproxy.defsrv.max_idle_conns = -1;
Willy Tarreau975b1552019-06-06 16:25:55 +0200450 defproxy.defsrv.pool_purge_delay = 5000;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100451 defproxy.defsrv.slowstart = 0;
452 defproxy.defsrv.onerror = DEF_HANA_ONERR;
453 defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT;
454 defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1;
Simon Horman64e34162015-02-06 11:11:57 +0900455
456 defproxy.email_alert.level = LOG_ALERT;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +0200457 defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200458}
459
Frédéric Lécaille18251032019-01-11 11:07:15 +0100460/* Allocate and initialize the frontend of a "peers" section found in
461 * file <file> at line <linenum> with <id> as ID.
462 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200463 * Note that this function may be called from "default-server"
464 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100465 */
466static int init_peers_frontend(const char *file, int linenum,
467 const char *id, struct peers *peers)
468{
469 struct proxy *p;
470
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200471 if (peers->peers_fe) {
472 p = peers->peers_fe;
473 goto out;
474 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100475
Frédéric Lécaille18251032019-01-11 11:07:15 +0100476 p = calloc(1, sizeof *p);
477 if (!p) {
478 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
479 return -1;
480 }
481
482 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200483 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100484 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200485 /* Finally store this frontend. */
486 peers->peers_fe = p;
487
488 out:
489 if (id && !p->id)
490 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200491 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100492 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100493 if (linenum != -1)
494 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100495
496 return 0;
497}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100498
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100499/* Only change ->file, ->line and ->arg struct bind_conf member values
500 * if already present.
501 */
502static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
503 const char *file, int line,
504 const char *arg, struct xprt_ops *xprt)
505{
506 struct bind_conf *bind_conf;
507
508 if (!LIST_ISEMPTY(&p->conf.bind)) {
509 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
510 free(bind_conf->file);
511 bind_conf->file = strdup(file);
512 bind_conf->line = line;
513 if (arg) {
514 free(bind_conf->arg);
515 bind_conf->arg = strdup(arg);
516 }
517 }
518 else {
519 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
520 }
521
522 return bind_conf;
523}
524
525/*
526 * Allocate a new struct peer parsed at line <linenum> in file <file>
527 * to be added to <peers>.
528 * Returns the new allocated structure if succeeded, NULL if not.
529 */
530static struct peer *cfg_peers_add_peer(struct peers *peers,
531 const char *file, int linenum,
532 const char *id, int local)
533{
534 struct peer *p;
535
536 p = calloc(1, sizeof *p);
537 if (!p) {
538 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
539 return NULL;
540 }
541
542 /* the peers are linked backwards first */
543 peers->count++;
544 p->next = peers->remote;
545 peers->remote = p;
546 p->conf.file = strdup(file);
547 p->conf.line = linenum;
548 p->last_change = now.tv_sec;
549 p->xprt = xprt_get(XPRT_RAW);
550 p->sock_init_arg = NULL;
551 HA_SPIN_INIT(&p->lock);
552 if (id)
553 p->id = strdup(id);
554 if (local) {
555 p->local = 1;
556 peers->local = p;
557 }
558
559 return p;
560}
561
Willy Tarreaubaaee002006-06-26 02:48:02 +0200562/*
William Lallemand51097192015-04-14 16:35:22 +0200563 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200564 * Returns the error code, 0 if OK, or any combination of :
565 * - ERR_ABORT: must abort ASAP
566 * - ERR_FATAL: we can continue parsing but not start the service
567 * - ERR_WARN: a warning has been emitted
568 * - ERR_ALERT: an alert has been emitted
569 * Only the two first ones can stop processing, the two others are just
570 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200571 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200572int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
573{
574 static struct peers *curpeers = NULL;
575 struct peer *newpeer = NULL;
576 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200577 struct bind_conf *bind_conf;
578 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200579 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100580 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100581 static int bind_line, peer_line;
582
583 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
584 int cur_arg;
585 static int kws_dumped;
586 struct bind_conf *bind_conf;
587 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200588
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100589 cur_arg = 1;
590
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200591 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
592 err_code |= ERR_ALERT | ERR_ABORT;
593 goto out;
594 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100595
596 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
597 NULL, xprt_get(XPRT_RAW));
598 if (*args[0] == 'b') {
599 struct listener *l;
600
601 if (peer_line) {
602 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
603 err_code |= ERR_ALERT | ERR_FATAL;
604 goto out;
605 }
606
607 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
608 if (errmsg && *errmsg) {
609 indent_msg(&errmsg, 2);
610 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
611 }
612 else
613 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
614 file, linenum, args[0], args[1], args[2]);
615 err_code |= ERR_FATAL;
616 goto out;
617 }
618 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
619 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100620 l->accept = session_accept_fd;
621 l->analysers |= curpeers->peers_fe->fe_req_ana;
622 l->default_target = curpeers->peers_fe->default_target;
623 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100624 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100625
626 bind_line = 1;
627 if (cfg_peers->local) {
628 newpeer = cfg_peers->local;
629 }
630 else {
631 /* This peer is local.
632 * Note that we do not set the peer ID. This latter is initialized
633 * when parsing "peer" or "server" line.
634 */
635 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
636 if (!newpeer) {
637 err_code |= ERR_ALERT | ERR_ABORT;
638 goto out;
639 }
640 }
641 newpeer->addr = l->addr;
642 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
643 cur_arg++;
644 }
645
646 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
647 int ret;
648
649 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
650 err_code |= ret;
651 if (ret) {
652 if (errmsg && *errmsg) {
653 indent_msg(&errmsg, 2);
654 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
655 }
656 else
657 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
658 file, linenum, args[cur_arg]);
659 if (ret & ERR_FATAL)
660 goto out;
661 }
662 cur_arg += 1 + kw->skip;
663 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100664 if (*args[cur_arg] != 0) {
Tim Duesterhus04bcaa12019-05-12 22:54:50 +0200665 char *kws = NULL;
666
667 if (!kws_dumped) {
668 kws_dumped = 1;
669 bind_dump_kws(&kws);
670 indent_msg(&kws, 4);
671 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100672 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.%s%s\n",
673 file, linenum, args[cur_arg], cursection,
674 kws ? " Registered keywords :" : "", kws ? kws: "");
675 free(kws);
676 err_code |= ERR_ALERT | ERR_FATAL;
677 goto out;
678 }
679 }
680 else if (strcmp(args[0], "default-server") == 0) {
681 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
682 err_code |= ERR_ALERT | ERR_ABORT;
683 goto out;
684 }
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200685 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, 0, 1);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200686 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100687 else if (strcmp(args[0], "log") == 0) {
688 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
689 err_code |= ERR_ALERT | ERR_ABORT;
690 goto out;
691 }
692 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), &errmsg)) {
693 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
694 err_code |= ERR_ALERT | ERR_FATAL;
695 goto out;
696 }
697 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200698 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100699 /* Initialize these static variables when entering a new "peers" section*/
700 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100701 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100702 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100703 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100704 goto out;
705 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200706
William Lallemand6e62fb62015-04-28 16:55:23 +0200707 if (alertif_too_many_args(1, file, linenum, args, &err_code))
708 goto out;
709
Emeric Brun32da3c42010-09-23 18:39:19 +0200710 err = invalid_char(args[1]);
711 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100712 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
713 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100714 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100715 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200716 }
717
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200718 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200719 /*
720 * If there are two proxies with the same name only following
721 * combinations are allowed:
722 */
723 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100724 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
725 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200726 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200727 }
728 }
729
Vincent Bernat02779b62016-04-03 13:48:43 +0200730 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100731 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200732 err_code |= ERR_ALERT | ERR_ABORT;
733 goto out;
734 }
735
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200736 curpeers->next = cfg_peers;
737 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200738 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200739 curpeers->conf.line = linenum;
740 curpeers->last_change = now.tv_sec;
741 curpeers->id = strdup(args[1]);
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200742 curpeers->state = PR_STNEW;
Emeric Brun32da3c42010-09-23 18:39:19 +0200743 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200744 else if (strcmp(args[0], "peer") == 0 ||
745 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100746 int local_peer, peer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200747
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100748 peer = *args[0] == 'p';
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100749 local_peer = !strcmp(args[1], localpeer);
750 /* The local peer may have already partially been parsed on a "bind" line. */
751 if (*args[0] == 'p') {
752 if (bind_line) {
753 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
754 err_code |= ERR_ALERT | ERR_FATAL;
755 goto out;
756 }
757 peer_line = 1;
758 }
759 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
760 /* The local peer has already been initialized on a "bind" line.
761 * Let's use it and store its ID.
762 */
763 newpeer = cfg_peers->local;
764 newpeer->id = strdup(localpeer);
765 }
766 else {
767 if (local_peer && cfg_peers->local) {
768 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
769 file, linenum, args[0], args[1],
770 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
771 err_code |= ERR_FATAL;
772 goto out;
773 }
774 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
775 if (!newpeer) {
776 err_code |= ERR_ALERT | ERR_ABORT;
777 goto out;
778 }
779 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200780
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100781 /* Line number and peer ID are updated only if this peer is the local one. */
782 if (init_peers_frontend(file,
783 newpeer->local ? linenum: -1,
784 newpeer->local ? newpeer->id : NULL,
785 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200786 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100787 goto out;
788 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100789
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100790 /* This initializes curpeer->peers->peers_fe->srv.
791 * The server address is parsed only if we are parsing a "peer" line,
792 * or if we are parsing a "server" line and the current peer is not the local one.
793 */
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200794 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, peer || !local_peer, 1);
795 if (!curpeers->peers_fe->srv) {
796 /* Remove the newly allocated peer. */
797 if (newpeer != curpeers->local) {
798 struct peer *p;
799
800 p = curpeers->remote;
801 curpeers->remote = curpeers->remote->next;
802 free(p->id);
803 free(p);
804 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200805 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200806 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200807
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100808 /* If the peer address has just been parsed, let's copy it to <newpeer>
809 * and initializes ->proto.
810 */
811 if (peer || !local_peer) {
812 newpeer->addr = curpeers->peers_fe->srv->addr;
813 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
814 }
815
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100816 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200817 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100818 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200819
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100820 newpeer->srv = curpeers->peers_fe->srv;
821 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200822 goto out;
823
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100824 /* The lines above are reserved to "peer" lines. */
825 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200826 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200827
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100828 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 +0100829
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100830 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
831 if (errmsg && *errmsg) {
832 indent_msg(&errmsg, 2);
833 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 +0100834 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100835 else
836 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
837 file, linenum, args[0], args[1], args[2]);
838 err_code |= ERR_FATAL;
839 goto out;
840 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100841
842 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
843 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100844 l->accept = session_accept_fd;
845 l->analysers |= curpeers->peers_fe->fe_req_ana;
846 l->default_target = curpeers->peers_fe->default_target;
847 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100848 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100849 }
850 else if (!strcmp(args[0], "table")) {
851 struct stktable *t, *other;
852 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100853 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100854
855 /* Line number and peer ID are updated only if this peer is the local one. */
856 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
857 err_code |= ERR_ALERT | ERR_ABORT;
858 goto out;
859 }
860
861 other = stktable_find_by_name(args[1]);
862 if (other) {
863 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
864 file, linenum, args[1],
865 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
866 other->proxy ? other->id : other->peers.p->id,
867 other->conf.file, other->conf.line);
868 err_code |= ERR_ALERT | ERR_FATAL;
869 goto out;
870 }
871
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100872 /* Build the stick-table name, concatenating the "peers" section name
873 * followed by a '/' character and the table name argument.
874 */
875 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100876 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100877 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
878 file, linenum, args[0], args[1]);
879 err_code |= ERR_ALERT | ERR_FATAL;
880 goto out;
881 }
882
883 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100884 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100885 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
886 file, linenum, args[0], args[1]);
887 err_code |= ERR_ALERT | ERR_FATAL;
888 goto out;
889 }
890
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100891 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100892 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100893 if (!t || !id) {
894 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
895 file, linenum, args[0], args[1]);
896 err_code |= ERR_ALERT | ERR_FATAL;
897 goto out;
898 }
899
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100900 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100901 if (err_code & ERR_FATAL)
902 goto out;
903
904 stktable_store_name(t);
905 t->next = stktables_list;
906 stktables_list = t;
907 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200908 else if (!strcmp(args[0], "disabled")) { /* disables this peers section */
909 curpeers->state = PR_STSTOPPED;
910 }
911 else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */
912 curpeers->state = PR_STNEW;
913 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200914 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100915 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200916 err_code |= ERR_ALERT | ERR_FATAL;
917 goto out;
918 }
919
920out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100921 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200922 return err_code;
923}
924
Baptiste Assmann325137d2015-04-13 23:40:55 +0200925/*
926 * Parse a <resolvers> section.
927 * Returns the error code, 0 if OK, or any combination of :
928 * - ERR_ABORT: must abort ASAP
929 * - ERR_FATAL: we can continue parsing but not start the service
930 * - ERR_WARN: a warning has been emitted
931 * - ERR_ALERT: an alert has been emitted
932 * Only the two first ones can stop processing, the two others are just
933 * indicators.
934 */
935int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
936{
937 static struct dns_resolvers *curr_resolvers = NULL;
938 struct dns_nameserver *newnameserver = NULL;
939 const char *err;
940 int err_code = 0;
941 char *errmsg = NULL;
942
943 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
944 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100945 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200946 err_code |= ERR_ALERT | ERR_ABORT;
947 goto out;
948 }
949
950 err = invalid_char(args[1]);
951 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100952 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
953 file, linenum, *err, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200954 err_code |= ERR_ALERT | ERR_ABORT;
955 goto out;
956 }
957
958 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
959 /* Error if two resolvers owns the same name */
960 if (strcmp(curr_resolvers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100961 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
962 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200963 err_code |= ERR_ALERT | ERR_ABORT;
964 }
965 }
966
Vincent Bernat02779b62016-04-03 13:48:43 +0200967 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100968 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200969 err_code |= ERR_ALERT | ERR_ABORT;
970 goto out;
971 }
972
973 /* default values */
974 LIST_ADDQ(&dns_resolvers, &curr_resolvers->list);
975 curr_resolvers->conf.file = strdup(file);
976 curr_resolvers->conf.line = linenum;
977 curr_resolvers->id = strdup(args[1]);
978 curr_resolvers->query_ids = EB_ROOT;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200979 /* default maximum response size */
980 curr_resolvers->accepted_payload_size = 512;
Baptiste Assmann987e16d2016-11-02 22:23:31 +0100981 /* default hold period for nx, other, refuse and timeout is 30s */
982 curr_resolvers->hold.nx = 30000;
983 curr_resolvers->hold.other = 30000;
984 curr_resolvers->hold.refused = 30000;
985 curr_resolvers->hold.timeout = 30000;
Baptiste Assmann686408b2017-08-18 10:15:42 +0200986 curr_resolvers->hold.obsolete = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200987 /* default hold period for valid is 10s */
Baptiste Assmann4c5490a2015-07-14 21:42:49 +0200988 curr_resolvers->hold.valid = 10000;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200989 curr_resolvers->timeout.resolve = 1000;
990 curr_resolvers->timeout.retry = 1000;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200991 curr_resolvers->resolve_retries = 3;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200992 curr_resolvers->nb_nameservers = 0;
993 LIST_INIT(&curr_resolvers->nameservers);
994 LIST_INIT(&curr_resolvers->resolutions.curr);
995 LIST_INIT(&curr_resolvers->resolutions.wait);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100996 HA_SPIN_INIT(&curr_resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200997 }
998 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
999 struct sockaddr_storage *sk;
1000 int port1, port2;
1001 struct protocol *proto;
1002
1003 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001004 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1005 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001006 err_code |= ERR_ALERT | ERR_FATAL;
1007 goto out;
1008 }
1009
1010 err = invalid_char(args[1]);
1011 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001012 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1013 file, linenum, *err, args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001014 err_code |= ERR_ALERT | ERR_FATAL;
1015 goto out;
1016 }
1017
Christopher Faulet67957bd2017-09-27 11:00:59 +02001018 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
Baptiste Assmanna315c552015-11-02 22:55:49 +01001019 /* Error if two resolvers owns the same name */
1020 if (strcmp(newnameserver->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001021 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 -06001022 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
Baptiste Assmanna315c552015-11-02 22:55:49 +01001023 err_code |= ERR_ALERT | ERR_FATAL;
1024 }
1025 }
1026
Vincent Bernat02779b62016-04-03 13:48:43 +02001027 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001028 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001029 err_code |= ERR_ALERT | ERR_ABORT;
1030 goto out;
1031 }
1032
1033 /* the nameservers are linked backward first */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001034 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001035 newnameserver->resolvers = curr_resolvers;
1036 newnameserver->conf.file = strdup(file);
1037 newnameserver->conf.line = linenum;
1038 newnameserver->id = strdup(args[1]);
1039
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001040 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001041 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001042 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001043 err_code |= ERR_ALERT | ERR_FATAL;
1044 goto out;
1045 }
1046
1047 proto = protocol_by_family(sk->ss_family);
1048 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001049 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Baptiste Assmann325137d2015-04-13 23:40:55 +02001050 file, linenum, args[0], args[1]);
1051 err_code |= ERR_ALERT | ERR_FATAL;
1052 goto out;
1053 }
1054
1055 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001056 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1057 file, linenum, args[0], args[1], args[2]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001058 err_code |= ERR_ALERT | ERR_FATAL;
1059 goto out;
1060 }
1061
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001062 if (!port1 && !port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001063 ha_alert("parsing [%s:%d] : '%s %s' : no UDP port specified\n",
1064 file, linenum, args[0], args[1]);
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001065 err_code |= ERR_ALERT | ERR_FATAL;
1066 goto out;
1067 }
1068
Baptiste Assmann325137d2015-04-13 23:40:55 +02001069 newnameserver->addr = *sk;
1070 }
Ben Draut44e609b2018-05-29 15:40:08 -06001071 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
1072 const char *whitespace = "\r\n\t ";
1073 char *resolv_line = NULL;
1074 int resolv_linenum = 0;
1075 FILE *f = NULL;
1076 char *address = NULL;
1077 struct sockaddr_storage *sk = NULL;
1078 struct protocol *proto;
1079 int duplicate_name = 0;
1080
1081 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
1082 ha_alert("parsing [%s:%d] : out of memory.\n",
1083 file, linenum);
1084 err_code |= ERR_ALERT | ERR_FATAL;
1085 goto resolv_out;
1086 }
1087
1088 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
1089 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
1090 file, linenum);
1091 err_code |= ERR_ALERT | ERR_FATAL;
1092 goto resolv_out;
1093 }
1094
1095 sk = calloc(1, sizeof(*sk));
1096 if (sk == NULL) {
1097 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
1098 resolv_linenum);
1099 err_code |= ERR_ALERT | ERR_FATAL;
1100 goto resolv_out;
1101 }
1102
1103 while (fgets(resolv_line, LINESIZE, f) != NULL) {
1104 resolv_linenum++;
1105 if (strncmp(resolv_line, "nameserver", 10) != 0)
1106 continue;
1107
1108 address = strtok(resolv_line + 10, whitespace);
1109 if (address == resolv_line + 10)
1110 continue;
1111
1112 if (address == NULL) {
1113 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
1114 resolv_linenum);
1115 err_code |= ERR_WARN;
1116 continue;
1117 }
1118
1119 duplicate_name = 0;
1120 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
1121 if (strcmp(newnameserver->id, address) == 0) {
1122 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",
1123 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
1124 err_code |= ERR_WARN;
1125 duplicate_name = 1;
1126 }
1127 }
1128
1129 if (duplicate_name)
1130 continue;
1131
1132 memset(sk, 0, sizeof(*sk));
1133 sk = str2ip2(address, sk, 1);
1134 if (!sk) {
1135 ha_warning("parsing [/etc/resolv.conf:%d] : address '%s' could not be recognized, namerserver will be excluded.\n",
1136 resolv_linenum, address);
1137 err_code |= ERR_WARN;
1138 continue;
1139 }
1140
1141 set_host_port(sk, 53);
1142
1143 proto = protocol_by_family(sk->ss_family);
1144 if (!proto || !proto->connect) {
1145 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
1146 resolv_linenum, address);
1147 err_code |= ERR_WARN;
1148 continue;
1149 }
1150
1151 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
1152 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1153 err_code |= ERR_ALERT | ERR_FATAL;
1154 goto resolv_out;
1155 }
1156
1157 newnameserver->conf.file = strdup("/etc/resolv.conf");
1158 if (newnameserver->conf.file == NULL) {
1159 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1160 err_code |= ERR_ALERT | ERR_FATAL;
1161 goto resolv_out;
1162 }
1163
1164 newnameserver->id = strdup(address);
1165 if (newnameserver->id == NULL) {
1166 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1167 err_code |= ERR_ALERT | ERR_FATAL;
1168 goto resolv_out;
1169 }
1170
1171 newnameserver->resolvers = curr_resolvers;
1172 newnameserver->conf.line = resolv_linenum;
1173 newnameserver->addr = *sk;
1174
1175 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
1176 }
1177
1178resolv_out:
1179 free(sk);
1180 free(resolv_line);
1181 if (f != NULL)
1182 fclose(f);
1183 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001184 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
1185 const char *res;
1186 unsigned int time;
1187
1188 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001189 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
1190 file, linenum, args[0]);
1191 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
Baptiste Assmann325137d2015-04-13 23:40:55 +02001192 err_code |= ERR_ALERT | ERR_FATAL;
1193 goto out;
1194 }
1195 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001196 if (res == PARSE_TIME_OVER) {
1197 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s>, maximum value is 2147483647 ms (~24.8 days).\n",
1198 file, linenum, args[1], args[0]);
1199 err_code |= ERR_ALERT | ERR_FATAL;
1200 goto out;
1201 }
1202 else if (res == PARSE_TIME_UNDER) {
1203 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s>, minimum non-null value is 1 ms.\n",
1204 file, linenum, args[1], args[0]);
1205 err_code |= ERR_ALERT | ERR_FATAL;
1206 goto out;
1207 }
1208 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001209 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1210 file, linenum, *res, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001211 err_code |= ERR_ALERT | ERR_FATAL;
1212 goto out;
1213 }
Baptiste Assmann987e16d2016-11-02 22:23:31 +01001214 if (strcmp(args[1], "nx") == 0)
1215 curr_resolvers->hold.nx = time;
1216 else if (strcmp(args[1], "other") == 0)
1217 curr_resolvers->hold.other = time;
1218 else if (strcmp(args[1], "refused") == 0)
1219 curr_resolvers->hold.refused = time;
1220 else if (strcmp(args[1], "timeout") == 0)
1221 curr_resolvers->hold.timeout = time;
1222 else if (strcmp(args[1], "valid") == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001223 curr_resolvers->hold.valid = time;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001224 else if (strcmp(args[1], "obsolete") == 0)
1225 curr_resolvers->hold.obsolete = time;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001226 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001227 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
1228 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001229 err_code |= ERR_ALERT | ERR_FATAL;
1230 goto out;
1231 }
1232
1233 }
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001234 else if (strcmp(args[0], "accepted_payload_size") == 0) {
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001235 int i = 0;
1236
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001237 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001238 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1239 file, linenum, args[0]);
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001240 err_code |= ERR_ALERT | ERR_FATAL;
1241 goto out;
1242 }
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001243
1244 i = atoi(args[1]);
Willy Tarreau0c219be2017-08-22 12:01:26 +02001245 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001246 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
1247 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001248 err_code |= ERR_ALERT | ERR_FATAL;
1249 goto out;
1250 }
1251
1252 curr_resolvers->accepted_payload_size = i;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001253 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001254 else if (strcmp(args[0], "resolution_pool_size") == 0) {
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001255 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 +01001256 file, linenum, args[0]);
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001257 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001258 goto out;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001259 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001260 else if (strcmp(args[0], "resolve_retries") == 0) {
1261 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001262 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1263 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001264 err_code |= ERR_ALERT | ERR_FATAL;
1265 goto out;
1266 }
1267 curr_resolvers->resolve_retries = atoi(args[1]);
1268 }
1269 else if (strcmp(args[0], "timeout") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001270 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001271 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
1272 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001273 err_code |= ERR_ALERT | ERR_FATAL;
1274 goto out;
1275 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001276 else if (strcmp(args[1], "retry") == 0 ||
1277 strcmp(args[1], "resolve") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001278 const char *res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001279 unsigned int tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001280
1281 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001282 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1283 file, linenum, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001284 err_code |= ERR_ALERT | ERR_FATAL;
1285 goto out;
1286 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001287 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001288 if (res == PARSE_TIME_OVER) {
1289 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1290 file, linenum, args[2], args[0], args[1]);
1291 err_code |= ERR_ALERT | ERR_FATAL;
1292 goto out;
1293 }
1294 else if (res == PARSE_TIME_UNDER) {
1295 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1296 file, linenum, args[2], args[0], args[1]);
1297 err_code |= ERR_ALERT | ERR_FATAL;
1298 goto out;
1299 }
1300 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001301 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1302 file, linenum, *res, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001303 err_code |= ERR_ALERT | ERR_FATAL;
1304 goto out;
1305 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001306 if (args[1][2] == 't')
1307 curr_resolvers->timeout.retry = tout;
1308 else
1309 curr_resolvers->timeout.resolve = tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001310 }
1311 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001312 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
1313 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001314 err_code |= ERR_ALERT | ERR_FATAL;
1315 goto out;
1316 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001317 } /* neither "nameserver" nor "resolvers" */
1318 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001319 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001320 err_code |= ERR_ALERT | ERR_FATAL;
1321 goto out;
1322 }
1323
1324 out:
1325 free(errmsg);
1326 return err_code;
1327}
Simon Horman0d16a402015-01-30 11:22:58 +09001328
1329/*
William Lallemand51097192015-04-14 16:35:22 +02001330 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001331 * Returns the error code, 0 if OK, or any combination of :
1332 * - ERR_ABORT: must abort ASAP
1333 * - ERR_FATAL: we can continue parsing but not start the service
1334 * - ERR_WARN: a warning has been emitted
1335 * - ERR_ALERT: an alert has been emitted
1336 * Only the two first ones can stop processing, the two others are just
1337 * indicators.
1338 */
1339int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1340{
1341 static struct mailers *curmailers = NULL;
1342 struct mailer *newmailer = NULL;
1343 const char *err;
1344 int err_code = 0;
1345 char *errmsg = NULL;
1346
1347 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1348 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001349 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001350 err_code |= ERR_ALERT | ERR_ABORT;
1351 goto out;
1352 }
1353
1354 err = invalid_char(args[1]);
1355 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001356 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1357 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001358 err_code |= ERR_ALERT | ERR_ABORT;
1359 goto out;
1360 }
1361
1362 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1363 /*
1364 * If there are two proxies with the same name only following
1365 * combinations are allowed:
1366 */
1367 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001368 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1369 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001370 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001371 }
1372 }
1373
Vincent Bernat02779b62016-04-03 13:48:43 +02001374 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001375 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001376 err_code |= ERR_ALERT | ERR_ABORT;
1377 goto out;
1378 }
1379
1380 curmailers->next = mailers;
1381 mailers = curmailers;
1382 curmailers->conf.file = strdup(file);
1383 curmailers->conf.line = linenum;
1384 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001385 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1386 * But need enough time so that timeouts don't occur
1387 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001388 }
1389 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1390 struct sockaddr_storage *sk;
1391 int port1, port2;
1392 struct protocol *proto;
1393
1394 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001395 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1396 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001397 err_code |= ERR_ALERT | ERR_FATAL;
1398 goto out;
1399 }
1400
1401 err = invalid_char(args[1]);
1402 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001403 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1404 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001405 err_code |= ERR_ALERT | ERR_FATAL;
1406 goto out;
1407 }
1408
Vincent Bernat02779b62016-04-03 13:48:43 +02001409 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001410 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001411 err_code |= ERR_ALERT | ERR_ABORT;
1412 goto out;
1413 }
1414
1415 /* the mailers are linked backwards first */
1416 curmailers->count++;
1417 newmailer->next = curmailers->mailer_list;
1418 curmailers->mailer_list = newmailer;
1419 newmailer->mailers = curmailers;
1420 newmailer->conf.file = strdup(file);
1421 newmailer->conf.line = linenum;
1422
1423 newmailer->id = strdup(args[1]);
1424
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001425 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Simon Horman0d16a402015-01-30 11:22:58 +09001426 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001427 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001428 err_code |= ERR_ALERT | ERR_FATAL;
1429 goto out;
1430 }
1431
1432 proto = protocol_by_family(sk->ss_family);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09001433 if (!proto || !proto->connect || proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001434 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1435 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001436 err_code |= ERR_ALERT | ERR_FATAL;
1437 goto out;
1438 }
1439
1440 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001441 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1442 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001443 err_code |= ERR_ALERT | ERR_FATAL;
1444 goto out;
1445 }
1446
1447 if (!port1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001448 ha_alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n",
1449 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001450 err_code |= ERR_ALERT | ERR_FATAL;
1451 goto out;
1452 }
1453
1454 newmailer->addr = *sk;
1455 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001456 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001457 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001458 }
1459 else if (strcmp(args[0], "timeout") == 0) {
1460 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001461 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1462 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001463 err_code |= ERR_ALERT | ERR_FATAL;
1464 goto out;
1465 }
1466 else if (strcmp(args[1], "mail") == 0) {
1467 const char *res;
1468 unsigned int timeout_mail;
1469 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001470 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1471 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001472 err_code |= ERR_ALERT | ERR_FATAL;
1473 goto out;
1474 }
1475 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001476 if (res == PARSE_TIME_OVER) {
1477 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1478 file, linenum, args[2], args[0], args[1]);
1479 err_code |= ERR_ALERT | ERR_FATAL;
1480 goto out;
1481 }
1482 else if (res == PARSE_TIME_UNDER) {
1483 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1484 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001485 err_code |= ERR_ALERT | ERR_FATAL;
1486 goto out;
1487 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001488 else if (res) {
1489 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1490 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001491 err_code |= ERR_ALERT | ERR_FATAL;
1492 goto out;
1493 }
1494 curmailers->timeout.mail = timeout_mail;
1495 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001496 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001497 file, linenum, args[0], args[1]);
1498 err_code |= ERR_ALERT | ERR_FATAL;
1499 goto out;
1500 }
1501 }
Simon Horman0d16a402015-01-30 11:22:58 +09001502 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001503 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001504 err_code |= ERR_ALERT | ERR_FATAL;
1505 goto out;
1506 }
1507
1508out:
1509 free(errmsg);
1510 return err_code;
1511}
1512
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001513void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001514{
1515 free(p->email_alert.mailers.name);
1516 p->email_alert.mailers.name = NULL;
1517 free(p->email_alert.from);
1518 p->email_alert.from = NULL;
1519 free(p->email_alert.to);
1520 p->email_alert.to = NULL;
1521 free(p->email_alert.myhostname);
1522 p->email_alert.myhostname = NULL;
1523}
1524
Willy Tarreaubaaee002006-06-26 02:48:02 +02001525
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001526int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001527cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1528{
Willy Tarreaue5733232019-05-22 19:24:06 +02001529#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001530 const char *err;
1531 const char *item = args[0];
1532
1533 if (!strcmp(item, "namespace_list")) {
1534 return 0;
1535 }
1536 else if (!strcmp(item, "namespace")) {
1537 size_t idx = 1;
1538 const char *current;
1539 while (*(current = args[idx++])) {
1540 err = invalid_char(current);
1541 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001542 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1543 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001544 return ERR_ALERT | ERR_FATAL;
1545 }
1546
1547 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001548 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1549 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001550 return ERR_ALERT | ERR_FATAL;
1551 }
1552 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001553 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1554 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001555 return ERR_ALERT | ERR_FATAL;
1556 }
1557 }
1558 }
1559
1560 return 0;
1561#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001562 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1563 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001564 return ERR_ALERT | ERR_FATAL;
1565#endif
1566}
1567
1568int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001569cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1570{
1571
1572 int err_code = 0;
1573 const char *err;
1574
1575 if (!strcmp(args[0], "userlist")) { /* new userlist */
1576 struct userlist *newul;
1577
1578 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001579 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1580 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001581 err_code |= ERR_ALERT | ERR_FATAL;
1582 goto out;
1583 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001584 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1585 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001586
1587 err = invalid_char(args[1]);
1588 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001589 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1590 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001591 err_code |= ERR_ALERT | ERR_FATAL;
1592 goto out;
1593 }
1594
1595 for (newul = userlist; newul; newul = newul->next)
1596 if (!strcmp(newul->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001597 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1598 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001599 err_code |= ERR_WARN;
1600 goto out;
1601 }
1602
Vincent Bernat02779b62016-04-03 13:48:43 +02001603 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001604 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001605 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001606 err_code |= ERR_ALERT | ERR_ABORT;
1607 goto out;
1608 }
1609
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001610 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001611 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001612 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001613 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001614 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001615 goto out;
1616 }
1617
1618 newul->next = userlist;
1619 userlist = newul;
1620
1621 } else if (!strcmp(args[0], "group")) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001622 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001623 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001624 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001625
1626 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001627 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1628 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001629 err_code |= ERR_ALERT | ERR_FATAL;
1630 goto out;
1631 }
1632
1633 err = invalid_char(args[1]);
1634 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001635 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1636 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001637 err_code |= ERR_ALERT | ERR_FATAL;
1638 goto out;
1639 }
1640
William Lallemand4ac9f542015-05-28 18:03:51 +02001641 if (!userlist)
1642 goto out;
1643
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001644 for (ag = userlist->groups; ag; ag = ag->next)
1645 if (!strcmp(ag->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001646 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1647 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001648 err_code |= ERR_ALERT;
1649 goto out;
1650 }
1651
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001652 ag = calloc(1, sizeof(*ag));
1653 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001654 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001655 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001656 goto out;
1657 }
1658
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001659 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001660 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001661 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001662 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001663 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001664 goto out;
1665 }
1666
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001667 cur_arg = 2;
1668
1669 while (*args[cur_arg]) {
1670 if (!strcmp(args[cur_arg], "users")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001671 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001672 cur_arg += 2;
1673 continue;
1674 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001675 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1676 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001677 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001678 free(ag->groupusers);
1679 free(ag->name);
1680 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001681 goto out;
1682 }
1683 }
1684
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001685 ag->next = userlist->groups;
1686 userlist->groups = ag;
1687
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001688 } else if (!strcmp(args[0], "user")) { /* new user */
1689 struct auth_users *newuser;
1690 int cur_arg;
1691
1692 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001693 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1694 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001695 err_code |= ERR_ALERT | ERR_FATAL;
1696 goto out;
1697 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001698 if (!userlist)
1699 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001700
1701 for (newuser = userlist->users; newuser; newuser = newuser->next)
1702 if (!strcmp(newuser->user, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001703 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1704 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001705 err_code |= ERR_ALERT;
1706 goto out;
1707 }
1708
Vincent Bernat02779b62016-04-03 13:48:43 +02001709 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001710 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001711 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001712 err_code |= ERR_ALERT | ERR_ABORT;
1713 goto out;
1714 }
1715
1716 newuser->user = strdup(args[1]);
1717
1718 newuser->next = userlist->users;
1719 userlist->users = newuser;
1720
1721 cur_arg = 2;
1722
1723 while (*args[cur_arg]) {
1724 if (!strcmp(args[cur_arg], "password")) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001725#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001726 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001727 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1728 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001729 err_code |= ERR_ALERT | ERR_FATAL;
1730 goto out;
1731 }
1732#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001733 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1734 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001735 err_code |= ERR_ALERT;
1736#endif
1737 newuser->pass = strdup(args[cur_arg + 1]);
1738 cur_arg += 2;
1739 continue;
1740 } else if (!strcmp(args[cur_arg], "insecure-password")) {
1741 newuser->pass = strdup(args[cur_arg + 1]);
1742 newuser->flags |= AU_O_INSECURE;
1743 cur_arg += 2;
1744 continue;
1745 } else if (!strcmp(args[cur_arg], "groups")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001746 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001747 cur_arg += 2;
1748 continue;
1749 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001750 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1751 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001752 err_code |= ERR_ALERT | ERR_FATAL;
1753 goto out;
1754 }
1755 }
1756 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001757 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 +01001758 err_code |= ERR_ALERT | ERR_FATAL;
1759 }
1760
1761out:
1762 return err_code;
1763}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001764
Christopher Faulet79bdef32016-11-04 22:36:15 +01001765int
1766cfg_parse_scope(const char *file, int linenum, char *line)
1767{
1768 char *beg, *end, *scope = NULL;
1769 int err_code = 0;
1770 const char *err;
1771
1772 beg = line + 1;
1773 end = strchr(beg, ']');
1774
1775 /* Detect end of scope declaration */
1776 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001777 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1778 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001779 err_code |= ERR_ALERT | ERR_FATAL;
1780 goto out;
1781 }
1782
1783 /* Get scope name and check its validity */
1784 scope = my_strndup(beg, end-beg);
1785 err = invalid_char(scope);
1786 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001787 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1788 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001789 err_code |= ERR_ALERT | ERR_ABORT;
1790 goto out;
1791 }
1792
1793 /* Be sure to have a scope declaration alone on its line */
1794 line = end+1;
1795 while (isspace((unsigned char)*line))
1796 line++;
1797 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001798 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1799 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001800 err_code |= ERR_ALERT | ERR_ABORT;
1801 goto out;
1802 }
1803
1804 /* We have a valid scope declaration, save it */
1805 free(cfg_scope);
1806 cfg_scope = scope;
1807 scope = NULL;
1808
1809 out:
1810 free(scope);
1811 return err_code;
1812}
1813
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001814int
1815cfg_parse_track_sc_num(unsigned int *track_sc_num,
1816 const char *arg, const char *end, char **errmsg)
1817{
1818 const char *p;
1819 unsigned int num;
1820
1821 p = arg;
1822 num = read_uint64(&arg, end);
1823
1824 if (arg != end) {
1825 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1826 return -1;
1827 }
1828
1829 if (num >= MAX_SESS_STKCTR) {
1830 memprintf(errmsg, "%u track-sc number exceeding "
1831 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1832 return -1;
1833 }
1834
1835 *track_sc_num = num;
1836 return 0;
1837}
1838
Willy Tarreaubaaee002006-06-26 02:48:02 +02001839/*
1840 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001841 * Returns the error code, 0 if OK, or any combination of :
1842 * - ERR_ABORT: must abort ASAP
1843 * - ERR_FATAL: we can continue parsing but not start the service
1844 * - ERR_WARN: a warning has been emitted
1845 * - ERR_ALERT: an alert has been emitted
1846 * Only the two first ones can stop processing, the two others are just
1847 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001848 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001849int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001850{
William Lallemand64e84512015-05-12 14:25:37 +02001851 char *thisline;
1852 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001853 FILE *f;
1854 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001855 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001856 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001857 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001858 int readbytes = 0;
1859
1860 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001861 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001862 return -1;
1863 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001864
David Carlier97880bb2016-04-08 10:35:26 +01001865 if ((f=fopen(file,"r")) == NULL) {
1866 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001867 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001868 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001869
William Lallemandb2f07452015-05-12 14:27:13 +02001870next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001871 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001872 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001873 char *end;
1874 char *args[MAX_LINE_ARGS + 1];
1875 char *line = thisline;
William Lallemandf9873ba2015-05-05 17:37:14 +02001876 int dquote = 0; /* double quote */
1877 int squote = 0; /* simple quote */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001878
Willy Tarreaubaaee002006-06-26 02:48:02 +02001879 linenum++;
1880
1881 end = line + strlen(line);
1882
William Lallemand64e84512015-05-12 14:25:37 +02001883 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001884 /* Check if we reached the limit and the last char is not \n.
1885 * Watch out for the last line without the terminating '\n'!
1886 */
William Lallemand64e84512015-05-12 14:25:37 +02001887 char *newline;
1888 int newlinesize = linesize * 2;
1889
1890 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1891 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001892 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1893 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001894 err_code |= ERR_ALERT | ERR_FATAL;
1895 continue;
1896 }
1897
1898 readbytes = linesize - 1;
1899 linesize = newlinesize;
1900 thisline = newline;
1901 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001902 }
1903
William Lallemand64e84512015-05-12 14:25:37 +02001904 readbytes = 0;
1905
Willy Tarreaubaaee002006-06-26 02:48:02 +02001906 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001907 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001908 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001909
Christopher Faulet79bdef32016-11-04 22:36:15 +01001910
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001911 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001912 err_code |= cfg_parse_scope(file, linenum, line);
1913 goto next_line;
1914 }
1915
Willy Tarreaubaaee002006-06-26 02:48:02 +02001916 arg = 0;
1917 args[arg] = line;
1918
1919 while (*line && arg < MAX_LINE_ARGS) {
William Lallemandf9873ba2015-05-05 17:37:14 +02001920 if (*line == '"' && !squote) { /* double quote outside single quotes */
1921 if (dquote)
1922 dquote = 0;
1923 else
1924 dquote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001925 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001926 end--;
1927 }
1928 else if (*line == '\'' && !dquote) { /* single quote outside double quotes */
1929 if (squote)
1930 squote = 0;
1931 else
1932 squote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001933 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001934 end--;
1935 }
1936 else if (*line == '\\' && !squote) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001937 /* first, we'll replace \\, \<space>, \#, \r, \n, \t, \xXX with their
1938 * C equivalent value. Other combinations left unchanged (eg: \1).
1939 */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001940 int skip = 0;
1941 if (line[1] == ' ' || line[1] == '\\' || line[1] == '#') {
1942 *line = line[1];
1943 skip = 1;
1944 }
1945 else if (line[1] == 'r') {
1946 *line = '\r';
1947 skip = 1;
William Lallemandf9873ba2015-05-05 17:37:14 +02001948 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001949 else if (line[1] == 'n') {
1950 *line = '\n';
1951 skip = 1;
1952 }
1953 else if (line[1] == 't') {
1954 *line = '\t';
1955 skip = 1;
1956 }
1957 else if (line[1] == 'x') {
Emeric Brunb982a3d2010-01-04 15:45:53 +01001958 if ((line + 3 < end) && ishex(line[2]) && ishex(line[3])) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001959 unsigned char hex1, hex2;
1960 hex1 = toupper(line[2]) - '0';
1961 hex2 = toupper(line[3]) - '0';
1962 if (hex1 > 9) hex1 -= 'A' - '9' - 1;
1963 if (hex2 > 9) hex2 -= 'A' - '9' - 1;
1964 *line = (hex1<<4) + hex2;
1965 skip = 3;
1966 }
1967 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001968 ha_alert("parsing [%s:%d] : invalid or incomplete '\\x' sequence in '%s'.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02001969 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001970 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001971 } else if (line[1] == '"') {
1972 *line = '"';
1973 skip = 1;
1974 } else if (line[1] == '\'') {
1975 *line = '\'';
1976 skip = 1;
William Lallemandb2f07452015-05-12 14:27:13 +02001977 } else if (line[1] == '$' && dquote) { /* escaping of $ only inside double quotes */
1978 *line = '$';
1979 skip = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001980 }
1981 if (skip) {
Cyril Bontédd1b01d2009-12-06 13:43:42 +01001982 memmove(line + 1, line + 1 + skip, end - (line + skip));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001983 end -= skip;
1984 }
1985 line++;
1986 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001987 else if ((!squote && !dquote && *line == '#') || *line == '\n' || *line == '\r') {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001988 /* end of string, end of loop */
1989 *line = 0;
1990 break;
1991 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001992 else if (!squote && !dquote && isspace((unsigned char)*line)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001993 /* a non-escaped space is an argument separator */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001994 *line++ = '\0';
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001995 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001996 line++;
1997 args[++arg] = line;
1998 }
William Lallemandb2f07452015-05-12 14:27:13 +02001999 else if (dquote && *line == '$') {
2000 /* environment variables are evaluated inside double quotes */
2001 char *var_beg;
2002 char *var_end;
2003 char save_char;
2004 char *value;
2005 int val_len;
2006 int newlinesize;
2007 int braces = 0;
2008
2009 var_beg = line + 1;
2010 var_end = var_beg;
2011
2012 if (*var_beg == '{') {
2013 var_beg++;
2014 var_end++;
2015 braces = 1;
2016 }
2017
Willy Tarreau90807112020-02-25 08:16:33 +01002018 if (!isalpha((unsigned char)*var_beg) && *var_beg != '_') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002019 ha_alert("parsing [%s:%d] : Variable expansion: Unrecognized character '%c' in variable name.\n", file, linenum, *var_beg);
William Lallemandb2f07452015-05-12 14:27:13 +02002020 err_code |= ERR_ALERT | ERR_FATAL;
2021 goto next_line; /* skip current line */
2022 }
2023
Willy Tarreau90807112020-02-25 08:16:33 +01002024 while (isalnum((unsigned char)*var_end) || *var_end == '_')
William Lallemandb2f07452015-05-12 14:27:13 +02002025 var_end++;
2026
2027 save_char = *var_end;
2028 *var_end = '\0';
2029 value = getenv(var_beg);
2030 *var_end = save_char;
2031 val_len = value ? strlen(value) : 0;
2032
2033 if (braces) {
2034 if (*var_end == '}') {
2035 var_end++;
2036 braces = 0;
2037 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002038 ha_alert("parsing [%s:%d] : Variable expansion: Mismatched braces.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02002039 err_code |= ERR_ALERT | ERR_FATAL;
2040 goto next_line; /* skip current line */
2041 }
2042 }
2043
2044 newlinesize = (end - thisline) - (var_end - line) + val_len + 1;
2045
2046 /* if not enough space in thisline */
2047 if (newlinesize > linesize) {
2048 char *newline;
2049
2050 newline = realloc(thisline, newlinesize * sizeof(*thisline));
2051 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002052 ha_alert("parsing [%s:%d] : Variable expansion: Not enough memory.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02002053 err_code |= ERR_ALERT | ERR_FATAL;
2054 goto next_line; /* slip current line */
2055 }
2056 /* recompute pointers if realloc returns a new pointer */
2057 if (newline != thisline) {
2058 int i;
2059 int diff;
2060
2061 for (i = 0; i <= arg; i++) {
2062 diff = args[i] - thisline;
2063 args[i] = newline + diff;
2064 }
2065
2066 diff = var_end - thisline;
2067 var_end = newline + diff;
2068 diff = end - thisline;
2069 end = newline + diff;
2070 diff = line - thisline;
2071 line = newline + diff;
2072 thisline = newline;
2073 }
2074 linesize = newlinesize;
2075 }
2076
2077 /* insert value inside the line */
2078 memmove(line + val_len, var_end, end - var_end + 1);
2079 memcpy(line, value, val_len);
2080 end += val_len - (var_end - line);
2081 line += val_len;
2082 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002083 else {
2084 line++;
2085 }
2086 }
William Lallemandb2f07452015-05-12 14:27:13 +02002087
William Lallemandf9873ba2015-05-05 17:37:14 +02002088 if (dquote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002089 ha_alert("parsing [%s:%d] : Mismatched double quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002090 err_code |= ERR_ALERT | ERR_FATAL;
2091 }
2092
2093 if (squote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002094 ha_alert("parsing [%s:%d] : Mismatched simple quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002095 err_code |= ERR_ALERT | ERR_FATAL;
2096 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002097
2098 /* empty line */
2099 if (!**args)
2100 continue;
2101
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002102 if (*line) {
2103 /* we had to stop due to too many args.
2104 * Let's terminate the string, print the offending part then cut the
2105 * last arg.
2106 */
2107 while (*line && *line != '#' && *line != '\n' && *line != '\r')
2108 line++;
2109 *line = '\0';
2110
Christopher Faulet767a84b2017-11-24 16:50:31 +01002111 ha_alert("parsing [%s:%d]: line too long, truncating at word %d, position %ld: <%s>.\n",
2112 file, linenum, arg + 1, (long)(args[arg] - thisline + 1), args[arg]);
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002113 err_code |= ERR_ALERT | ERR_FATAL;
2114 args[arg] = line;
2115 }
2116
Willy Tarreau540abe42007-05-02 20:50:16 +02002117 /* zero out remaining args and ensure that at least one entry
2118 * is zeroed out.
2119 */
2120 while (++arg <= MAX_LINE_ARGS) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002121 args[arg] = line;
2122 }
2123
Willy Tarreau3842f002009-06-14 11:39:52 +02002124 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002125 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02002126 char *tmp;
2127
Willy Tarreau3842f002009-06-14 11:39:52 +02002128 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002129 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002130 for (arg=0; *args[arg+1]; arg++)
2131 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002132 *tmp = '\0'; // fix the next arg to \0
2133 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002134 }
Willy Tarreau3842f002009-06-14 11:39:52 +02002135 else if (!strcmp(args[0], "default")) {
2136 kwm = KWM_DEF;
2137 for (arg=0; *args[arg+1]; arg++)
2138 args[arg] = args[arg+1]; // shift args after inversion
2139 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002140
William Dauchyec730982019-10-27 20:08:10 +01002141 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2142 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002143 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
2144 strcmp(args[0], "insecure-fork-wanted") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002145 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002146 "supported only for options, log, busy-polling, "
Willy Tarreaud96f1122019-12-03 07:07:36 +01002147 "set-dumpable, strict-limits, and insecure-fork-wanted.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002148 err_code |= ERR_ALERT | ERR_FATAL;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002149 }
2150
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002151 /* detect section start */
2152 list_for_each_entry(ics, &sections, list) {
2153 if (strcmp(args[0], ics->section_name) == 0) {
2154 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002155 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002156 cs = ics;
2157 break;
2158 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002159 }
2160
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002161 if (pcs && pcs->post_section_parser) {
2162 err_code |= pcs->post_section_parser();
2163 if (err_code & ERR_ABORT)
2164 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002165 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002166 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002167
William Lallemandd2ff56d2017-10-16 11:06:50 +02002168 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002169 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002170 err_code |= ERR_ALERT | ERR_FATAL;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002171 } else {
William Lallemandd2ff56d2017-10-16 11:06:50 +02002172 err_code |= cs->section_parser(file, linenum, args, kwm);
2173 if (err_code & ERR_ABORT)
2174 goto err;
2175 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002176 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002177
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002178 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002179 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002180
2181err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002182 free(cfg_scope);
2183 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002184 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002185 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002186 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002187 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002188}
2189
Willy Tarreau64ab6072014-09-16 12:17:36 +02002190/* This function propagates processes from frontend <from> to backend <to> so
2191 * that it is always guaranteed that a backend pointed to by a frontend is
2192 * bound to all of its processes. After that, if the target is a "listen"
2193 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002194 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002195 * checked first to ensure that <to> is already bound to all processes of
2196 * <from>, there is no risk of looping and we ensure to follow the shortest
2197 * path to the destination.
2198 *
2199 * It is possible to set <to> to NULL for the first call so that the function
2200 * takes care of visiting the initial frontend in <from>.
2201 *
2202 * It is important to note that the function relies on the fact that all names
2203 * have already been resolved.
2204 */
2205void propagate_processes(struct proxy *from, struct proxy *to)
2206{
2207 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002208
2209 if (to) {
2210 /* check whether we need to go down */
2211 if (from->bind_proc &&
2212 (from->bind_proc & to->bind_proc) == from->bind_proc)
2213 return;
2214
2215 if (!from->bind_proc && !to->bind_proc)
2216 return;
2217
2218 to->bind_proc = from->bind_proc ?
2219 (to->bind_proc | from->bind_proc) : 0;
2220
2221 /* now propagate down */
2222 from = to;
2223 }
2224
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002225 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002226 return;
2227
Willy Tarreauf6b70012014-12-18 14:00:43 +01002228 if (from->state == PR_STSTOPPED)
2229 return;
2230
Willy Tarreau64ab6072014-09-16 12:17:36 +02002231 /* default_backend */
2232 if (from->defbe.be)
2233 propagate_processes(from, from->defbe.be);
2234
2235 /* use_backend */
2236 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002237 if (rule->dynamic)
2238 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002239 to = rule->be.backend;
2240 propagate_processes(from, to);
2241 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002242}
2243
Willy Tarreaubb925012009-07-23 13:36:36 +02002244/*
2245 * Returns the error code, 0 if OK, or any combination of :
2246 * - ERR_ABORT: must abort ASAP
2247 * - ERR_FATAL: we can continue parsing but not start the service
2248 * - ERR_WARN: a warning has been emitted
2249 * - ERR_ALERT: an alert has been emitted
2250 * Only the two first ones can stop processing, the two others are just
2251 * indicators.
2252 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002253int check_config_validity()
2254{
2255 int cfgerr = 0;
2256 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002257 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002258 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002259 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002260 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002261 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002262 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002263 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002264 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002265
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002266 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002267 /*
2268 * Now, check for the integrity of all that we have collected.
2269 */
2270
2271 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002272 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002273
Willy Tarreau193b8c62012-11-22 00:17:38 +01002274 if (!global.tune.max_http_hdr)
2275 global.tune.max_http_hdr = MAX_HTTP_HDR;
2276
2277 if (!global.tune.cookie_len)
2278 global.tune.cookie_len = CAPTURE_LEN;
2279
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002280 if (!global.tune.requri_len)
2281 global.tune.requri_len = REQURI_LEN;
2282
Willy Tarreau149ab772019-01-26 14:27:06 +01002283 if (!global.nbthread) {
2284 /* nbthread not set, thus automatic. In this case, and only if
2285 * running on a single process, we enable the same number of
2286 * threads as the number of CPUs the process is bound to. This
2287 * allows to easily control the number of threads using taskset.
2288 */
2289 global.nbthread = 1;
2290#if defined(USE_THREAD)
2291 if (global.nbproc == 1)
2292 global.nbthread = thread_cpus_enabled_at_boot;
2293 all_threads_mask = nbits(global.nbthread);
2294#endif
2295 }
2296
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002297 if (global.nbproc > 1 && global.nbthread > 1) {
2298 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2299 err_code |= ERR_ALERT | ERR_FATAL;
2300 goto out;
2301 }
2302
Willy Tarreaubafbe012017-11-24 17:34:44 +01002303 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002304
Willy Tarreaubafbe012017-11-24 17:34:44 +01002305 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002306
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002307 /* Post initialisation of the users and groups lists. */
2308 err_code = userlist_postinit();
2309 if (err_code != ERR_NONE)
2310 goto out;
2311
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002312 /* first, we will invert the proxy list order */
2313 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002314 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002315 struct proxy *next;
2316
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002317 next = proxies_list->next;
2318 proxies_list->next = curproxy;
2319 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002320 if (!next)
2321 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002322 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002323 }
2324
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002325 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002326 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002327 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002328 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002329 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002330 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002331 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002332 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002333
Willy Tarreau050536d2012-10-04 08:47:34 +02002334 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002335 /* proxy ID not set, use automatic numbering with first
2336 * spare entry starting with next_pxid.
2337 */
2338 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2339 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2340 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002341 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002342 next_pxid++;
2343
Willy Tarreau55ea7572007-06-17 19:56:27 +02002344
Willy Tarreaubaaee002006-06-26 02:48:02 +02002345 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002346 /* ensure we don't keep listeners uselessly bound */
2347 stop_proxy(curproxy);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002348 if (curproxy->table) {
2349 free((void *)curproxy->table->peers.name);
2350 curproxy->table->peers.p = NULL;
2351 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002352 continue;
2353 }
2354
Willy Tarreau102df612014-05-07 23:56:38 +02002355 /* Check multi-process mode compatibility for the current proxy */
2356
2357 if (curproxy->bind_proc) {
2358 /* an explicit bind-process was specified, let's check how many
2359 * processes remain.
2360 */
David Carliere6c39412015-07-02 07:00:17 +00002361 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002362
Willy Tarreaua38a7172019-02-02 17:11:28 +01002363 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002364 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002365 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 +02002366 curproxy->bind_proc = 1;
2367 }
2368 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002369 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 +02002370 curproxy->bind_proc = 0;
2371 }
2372 }
2373
Willy Tarreau3d209582014-05-09 17:06:11 +02002374 /* check and reduce the bind-proc of each listener */
2375 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2376 unsigned long mask;
2377
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002378 /* HTTP frontends with "h2" as ALPN/NPN will work in
2379 * HTTP/2 and absolutely require buffers 16kB or larger.
2380 */
2381#ifdef USE_OPENSSL
2382 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2383#ifdef OPENSSL_NPN_NEGOTIATED
2384 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002385 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002386 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",
2387 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002388 cfgerr++;
2389 }
2390#endif
2391#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2392 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002393 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002394 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",
2395 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002396 cfgerr++;
2397 }
2398#endif
2399 } /* HTTP && bufsize < 16384 */
2400#endif
2401
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002402 /* detect and address thread affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002403 mask = thread_mask(bind_conf->bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002404 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002405 unsigned long new_mask = 0;
2406
2407 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002408 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002409 mask >>= global.nbthread;
2410 }
2411
Willy Tarreaua36b3242019-02-02 13:14:34 +01002412 bind_conf->bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002413 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",
2414 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2415 }
2416
2417 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002418 mask = proc_mask(bind_conf->bind_proc) & proc_mask(curproxy->bind_proc);
2419 if (!(mask & all_proc_mask)) {
2420 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
2421 nbproc = my_popcountl(bind_conf->bind_proc);
2422 bind_conf->bind_proc = proc_mask(bind_conf->bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002423
Willy Tarreaua36b3242019-02-02 13:14:34 +01002424 if (!bind_conf->bind_proc && nbproc == 1) {
2425 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",
2426 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2427 bind_conf->bind_proc = mask & ~(mask - 1);
2428 }
2429 else if (!bind_conf->bind_proc && nbproc > 1) {
2430 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",
2431 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2432 bind_conf->bind_proc = 0;
2433 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002434 }
2435 }
2436
Willy Tarreauff01a212009-03-15 13:46:16 +01002437 switch (curproxy->mode) {
2438 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002439 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002440 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002441 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2442 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002443 cfgerr++;
2444 }
2445
2446 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002447 ha_warning("config : servers will be ignored for %s '%s'.\n",
2448 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002449 break;
2450
2451 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002452 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002453 break;
2454
2455 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002456 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002457 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002458
2459 case PR_MODE_CLI:
2460 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2461 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002462 }
2463
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002464 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002465 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2466 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002467 err_code |= ERR_WARN;
2468 }
2469
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002470 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002471 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002472 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002473 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2474 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002475 cfgerr++;
2476 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002477#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002478 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002479 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2480 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002481 cfgerr++;
2482 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002483#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002484 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002485 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2486 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002487 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002488 }
2489 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002490 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002491 /* If no LB algo is set in a backend, and we're not in
2492 * transparent mode, dispatch mode nor proxy mode, we
2493 * want to use balance roundrobin by default.
2494 */
2495 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2496 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002497 }
2498 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002499
Willy Tarreau1620ec32011-08-06 17:05:02 +02002500 if (curproxy->options & PR_O_DISPATCH)
2501 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2502 else if (curproxy->options & PR_O_HTTP_PROXY)
2503 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2504 else if (curproxy->options & PR_O_TRANSP)
2505 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002506
Willy Tarreau1620ec32011-08-06 17:05:02 +02002507 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_HTTP_CHK) {
2508 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002509 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2510 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002511 err_code |= ERR_WARN;
2512 curproxy->options &= ~PR_O_DISABLE404;
2513 }
2514 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002515 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2516 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002517 err_code |= ERR_WARN;
2518 curproxy->options &= ~PR_O2_CHK_SNDST;
2519 }
Willy Tarreauef781042010-01-27 11:53:01 +01002520 }
2521
Simon Horman98637e52014-06-20 12:30:16 +09002522 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2523 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002524 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2525 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002526 cfgerr++;
2527 }
2528 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002529 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2530 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002531 cfgerr++;
2532 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002533 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2534 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2535 curproxy->id, "option external-check");
2536 err_code |= ERR_WARN;
2537 }
Simon Horman98637e52014-06-20 12:30:16 +09002538 }
2539
Simon Horman64e34162015-02-06 11:11:57 +09002540 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002541 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002542 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2543 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2544 "'email-alert myhostname', or 'email-alert to' "
2545 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2546 "to be present).\n",
2547 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002548 err_code |= ERR_WARN;
2549 free_email_alert(curproxy);
2550 }
2551 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002552 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002553 }
2554
Simon Horman98637e52014-06-20 12:30:16 +09002555 if (curproxy->check_command) {
2556 int clear = 0;
2557 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002558 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2559 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002560 err_code |= ERR_WARN;
2561 clear = 1;
2562 }
2563 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002564 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2565 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002566 cfgerr++;
2567 }
2568 if (clear) {
2569 free(curproxy->check_command);
2570 curproxy->check_command = NULL;
2571 }
2572 }
2573
2574 if (curproxy->check_path) {
2575 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002576 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2577 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002578 err_code |= ERR_WARN;
2579 free(curproxy->check_path);
2580 curproxy->check_path = NULL;
2581 }
2582 }
2583
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002584 /* if a default backend was specified, let's find it */
2585 if (curproxy->defbe.name) {
2586 struct proxy *target;
2587
Willy Tarreauafb39922015-05-26 12:04:09 +02002588 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002589 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002590 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2591 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002592 cfgerr++;
2593 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002594 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2595 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002596 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002597 } else if (target->mode != curproxy->mode &&
2598 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2599
Christopher Faulet767a84b2017-11-24 16:50:31 +01002600 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2601 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2602 curproxy->conf.file, curproxy->conf.line,
2603 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2604 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002605 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002606 } else {
2607 free(curproxy->defbe.name);
2608 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002609 /* Emit a warning if this proxy also has some servers */
2610 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002611 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2612 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002613 err_code |= ERR_WARN;
2614 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002615 }
2616 }
2617
Willy Tarreau55ea7572007-06-17 19:56:27 +02002618 /* find the target proxy for 'use_backend' rules */
2619 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002620 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002621 struct logformat_node *node;
2622 char *pxname;
2623
2624 /* Try to parse the string as a log format expression. If the result
2625 * of the parsing is only one entry containing a simple string, then
2626 * it's a standard string corresponding to a static rule, thus the
2627 * parsing is cancelled and be.name is restored to be resolved.
2628 */
2629 pxname = rule->be.name;
2630 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002631 curproxy->conf.args.ctx = ARGC_UBK;
2632 curproxy->conf.args.file = rule->file;
2633 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002634 err = NULL;
2635 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002636 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2637 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002638 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002639 cfgerr++;
2640 continue;
2641 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002642 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2643
2644 if (!LIST_ISEMPTY(&rule->be.expr)) {
2645 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2646 rule->dynamic = 1;
2647 free(pxname);
2648 continue;
2649 }
2650 /* simple string: free the expression and fall back to static rule */
2651 free(node->arg);
2652 free(node);
2653 }
2654
2655 rule->dynamic = 0;
2656 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002657
Willy Tarreauafb39922015-05-26 12:04:09 +02002658 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002659 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002660 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2661 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002662 cfgerr++;
2663 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002664 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2665 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002666 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002667 } else if (target->mode != curproxy->mode &&
2668 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2669
Christopher Faulet767a84b2017-11-24 16:50:31 +01002670 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2671 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2672 curproxy->conf.file, curproxy->conf.line,
2673 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2674 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002675 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002676 } else {
2677 free((void *)rule->be.name);
2678 rule->be.backend = target;
2679 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002680 }
2681
Willy Tarreau64ab6072014-09-16 12:17:36 +02002682 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002683 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002684 struct server *target;
2685 struct logformat_node *node;
2686 char *server_name;
2687
2688 /* We try to parse the string as a log format expression. If the result of the parsing
2689 * is only one entry containing a single string, then it's a standard string corresponding
2690 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2691 */
2692 server_name = srule->srv.name;
2693 LIST_INIT(&srule->expr);
2694 curproxy->conf.args.ctx = ARGC_USRV;
2695 err = NULL;
2696 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2697 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2698 srule->file, srule->line, server_name, err);
2699 free(err);
2700 cfgerr++;
2701 continue;
2702 }
2703 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2704
2705 if (!LIST_ISEMPTY(&srule->expr)) {
2706 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2707 srule->dynamic = 1;
2708 free(server_name);
2709 continue;
2710 }
2711 free(node->arg);
2712 free(node);
2713 }
2714
2715 srule->dynamic = 0;
2716 srule->srv.name = server_name;
2717 target = findserver(curproxy, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002718
2719 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002720 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2721 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002722 cfgerr++;
2723 continue;
2724 }
2725 free((void *)srule->srv.name);
2726 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002727 }
2728
Emeric Brunb982a3d2010-01-04 15:45:53 +01002729 /* find the target table for 'stick' rules */
2730 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002731 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002732
Emeric Brun1d33b292010-01-04 15:47:17 +01002733 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2734 if (mrule->flags & STK_IS_STORE)
2735 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2736
Emeric Brunb982a3d2010-01-04 15:45:53 +01002737 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002738 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002739 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002740 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002741
2742 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002743 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002744 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002745 cfgerr++;
2746 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002747 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002748 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2749 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002750 cfgerr++;
2751 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002752 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002753 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2754 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002755 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002756 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002757 else {
2758 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002759 mrule->table.t = target;
2760 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002761 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002762 if (!in_proxies_list(target->proxies_list, curproxy)) {
2763 curproxy->next_stkt_ref = target->proxies_list;
2764 target->proxies_list = curproxy;
2765 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002766 }
2767 }
2768
2769 /* find the target table for 'store response' rules */
2770 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002771 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002772
Emeric Brun1d33b292010-01-04 15:47:17 +01002773 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2774
Emeric Brunb982a3d2010-01-04 15:45:53 +01002775 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002776 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002777 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002778 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002779
2780 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002781 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002782 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002783 cfgerr++;
2784 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002785 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002786 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2787 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002788 cfgerr++;
2789 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002790 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002791 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2792 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002793 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002794 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002795 else {
2796 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002797 mrule->table.t = target;
2798 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002799 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002800 if (!in_proxies_list(target->proxies_list, curproxy)) {
2801 curproxy->next_stkt_ref = target->proxies_list;
2802 target->proxies_list = curproxy;
2803 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002804 }
2805 }
2806
Christopher Faulete4e830d2017-09-18 14:51:41 +02002807 /* check validity for 'tcp-request' layer 4 rules */
2808 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2809 err = NULL;
2810 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002811 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002812 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002813 cfgerr++;
2814 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002815 }
2816
Christopher Faulete4e830d2017-09-18 14:51:41 +02002817 /* check validity for 'tcp-request' layer 5 rules */
2818 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2819 err = NULL;
2820 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002821 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002822 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002823 cfgerr++;
2824 }
2825 }
2826
Christopher Faulete4e830d2017-09-18 14:51:41 +02002827 /* check validity for 'tcp-request' layer 6 rules */
2828 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2829 err = NULL;
2830 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002831 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002832 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002833 cfgerr++;
2834 }
2835 }
2836
Christopher Faulete4e830d2017-09-18 14:51:41 +02002837 /* check validity for 'http-request' layer 7 rules */
2838 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2839 err = NULL;
2840 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002841 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002842 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002843 cfgerr++;
2844 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002845 }
2846
Christopher Faulete4e830d2017-09-18 14:51:41 +02002847 /* check validity for 'http-response' layer 7 rules */
2848 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2849 err = NULL;
2850 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002851 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002852 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002853 cfgerr++;
2854 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002855 }
2856
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002857 /* check validity for 'http-after-response' layer 7 rules */
2858 list_for_each_entry(arule, &curproxy->http_after_res_rules, list) {
2859 err = NULL;
2860 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
2861 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
2862 free(err);
2863 cfgerr++;
2864 }
2865 }
2866
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002867 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002868 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002869
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002870 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002871 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
2872 free((void *)curproxy->table->peers.name);
2873 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002874 break;
2875 }
2876 }
2877
2878 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002879 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002880 curproxy->id, curproxy->table->peers.name);
2881 free((void *)curproxy->table->peers.name);
2882 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002883 cfgerr++;
2884 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002885 else if (curpeers->state == PR_STSTOPPED) {
2886 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002887 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002888 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002889 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002890 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2891 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002892 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002893 cfgerr++;
2894 }
2895 }
2896
Simon Horman9dc49962015-01-30 11:22:59 +09002897
2898 if (curproxy->email_alert.mailers.name) {
2899 struct mailers *curmailers = mailers;
2900
2901 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002902 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002903 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002904 }
Simon Horman9dc49962015-01-30 11:22:59 +09002905 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002906 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2907 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002908 free_email_alert(curproxy);
2909 cfgerr++;
2910 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002911 else {
2912 err = NULL;
2913 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002914 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002915 free(err);
2916 cfgerr++;
2917 }
2918 }
Simon Horman9dc49962015-01-30 11:22:59 +09002919 }
2920
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002921 if (curproxy->uri_auth && curproxy->uri_auth != defproxy.uri_auth &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002922 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002923 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002924 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2925 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002926 cfgerr++;
2927 goto out_uri_auth_compat;
2928 }
2929
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002930 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
2931 (curproxy->uri_auth != defproxy.uri_auth ||
2932 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002933 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002934 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002935 int i = 0;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002936 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2937 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002938
2939 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002940 uri_auth_compat_req[i++] = "realm";
2941 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2942 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002943
Willy Tarreau95fa4692010-02-01 13:05:50 +01002944 uri_auth_compat_req[i++] = "unless";
2945 uri_auth_compat_req[i++] = "{";
2946 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2947 uri_auth_compat_req[i++] = "}";
2948 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002949
Willy Tarreauff011f22011-01-06 17:51:27 +01002950 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2951 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002952 cfgerr++;
2953 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002954 }
2955
Willy Tarreauff011f22011-01-06 17:51:27 +01002956 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002957
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002958 if (curproxy->uri_auth->auth_realm) {
2959 free(curproxy->uri_auth->auth_realm);
2960 curproxy->uri_auth->auth_realm = NULL;
2961 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002962 }
2963out_uri_auth_compat:
2964
Dragan Dosen43885c72015-10-01 13:18:13 +02002965 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002966 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002967 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2968 if (!curproxy->conf.logformat_sd_string) {
2969 /* set the default logformat_sd_string */
2970 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2971 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002972 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002973 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002974 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002975
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002976 /* compile the log format */
2977 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002978 if (curproxy->conf.logformat_string != default_http_log_format &&
2979 curproxy->conf.logformat_string != default_tcp_log_format &&
2980 curproxy->conf.logformat_string != clf_http_log_format)
2981 free(curproxy->conf.logformat_string);
2982 curproxy->conf.logformat_string = NULL;
2983 free(curproxy->conf.lfs_file);
2984 curproxy->conf.lfs_file = NULL;
2985 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002986
2987 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2988 free(curproxy->conf.logformat_sd_string);
2989 curproxy->conf.logformat_sd_string = NULL;
2990 free(curproxy->conf.lfsd_file);
2991 curproxy->conf.lfsd_file = NULL;
2992 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002993 }
2994
Willy Tarreau62a61232013-04-12 18:13:46 +02002995 if (curproxy->conf.logformat_string) {
2996 curproxy->conf.args.ctx = ARGC_LOG;
2997 curproxy->conf.args.file = curproxy->conf.lfs_file;
2998 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002999 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003000 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003001 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003002 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3003 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003004 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003005 cfgerr++;
3006 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003007 curproxy->conf.args.file = NULL;
3008 curproxy->conf.args.line = 0;
3009 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003010
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003011 if (curproxy->conf.logformat_sd_string) {
3012 curproxy->conf.args.ctx = ARGC_LOGSD;
3013 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3014 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003015 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003016 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003017 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003018 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3019 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003020 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003021 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003022 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003023 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3024 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003025 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003026 cfgerr++;
3027 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003028 curproxy->conf.args.file = NULL;
3029 curproxy->conf.args.line = 0;
3030 }
3031
Willy Tarreau62a61232013-04-12 18:13:46 +02003032 if (curproxy->conf.uniqueid_format_string) {
3033 curproxy->conf.args.ctx = ARGC_UIF;
3034 curproxy->conf.args.file = curproxy->conf.uif_file;
3035 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003036 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003037 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003038 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003039 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3040 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003041 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003042 cfgerr++;
3043 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003044 curproxy->conf.args.file = NULL;
3045 curproxy->conf.args.line = 0;
3046 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003047
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003048 /* only now we can check if some args remain unresolved.
3049 * This must be done after the users and groups resolution.
3050 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003051 cfgerr += smp_resolve_args(curproxy);
3052 if (!cfgerr)
3053 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003054
Willy Tarreau2738a142006-07-08 17:28:09 +02003055 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003056 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003057 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003058 (!curproxy->timeout.connect ||
3059 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003060 ha_warning("config : missing timeouts for %s '%s'.\n"
3061 " | While not properly invalid, you will certainly encounter various problems\n"
3062 " | with such a configuration. To fix this, please ensure that all following\n"
3063 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3064 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003065 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003066 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003067
Willy Tarreau1fa31262007-12-03 00:36:16 +01003068 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3069 * We must still support older configurations, so let's find out whether those
3070 * parameters have been set or must be copied from contimeouts.
3071 */
3072 if (curproxy != &defproxy) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003073 if (!curproxy->timeout.tarpit ||
3074 curproxy->timeout.tarpit == defproxy.timeout.tarpit) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003075 /* tarpit timeout not set. We search in the following order:
3076 * default.tarpit, curr.connect, default.connect.
3077 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003078 if (defproxy.timeout.tarpit)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003079 curproxy->timeout.tarpit = defproxy.timeout.tarpit;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003080 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003081 curproxy->timeout.tarpit = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003082 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003083 curproxy->timeout.tarpit = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003084 }
3085 if ((curproxy->cap & PR_CAP_BE) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003086 (!curproxy->timeout.queue ||
3087 curproxy->timeout.queue == defproxy.timeout.queue)) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003088 /* queue timeout not set. We search in the following order:
3089 * default.queue, curr.connect, default.connect.
3090 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003091 if (defproxy.timeout.queue)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003092 curproxy->timeout.queue = defproxy.timeout.queue;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003093 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003094 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003095 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003096 curproxy->timeout.queue = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003097 }
3098 }
3099
Christopher Faulet5d503fc2020-03-30 20:34:34 +02003100 if (curproxy->tcpcheck_rules.list != NULL &&
Willy Tarreau215663d2014-06-13 18:30:23 +02003101 (curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_TCPCHK_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003102 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
3103 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003104 err_code |= ERR_WARN;
3105 }
3106
Willy Tarreau193b8c62012-11-22 00:17:38 +01003107 /* ensure that cookie capture length is not too large */
3108 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003109 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3110 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003111 err_code |= ERR_WARN;
3112 curproxy->capture_len = global.tune.cookie_len - 1;
3113 }
3114
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003115 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003116 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003117 curproxy->req_cap_pool = create_pool("ptrcap",
3118 curproxy->nb_req_cap * sizeof(char *),
3119 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003120 }
3121
3122 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003123 curproxy->rsp_cap_pool = create_pool("ptrcap",
3124 curproxy->nb_rsp_cap * sizeof(char *),
3125 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003126 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003127
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003128 switch (curproxy->load_server_state_from_file) {
3129 case PR_SRV_STATE_FILE_UNSPEC:
3130 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3131 break;
3132 case PR_SRV_STATE_FILE_GLOBAL:
3133 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003134 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",
3135 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003136 err_code |= ERR_WARN;
3137 }
3138 break;
3139 }
3140
Willy Tarreaubaaee002006-06-26 02:48:02 +02003141 /* first, we will invert the servers list order */
3142 newsrv = NULL;
3143 while (curproxy->srv) {
3144 struct server *next;
3145
3146 next = curproxy->srv->next;
3147 curproxy->srv->next = newsrv;
3148 newsrv = curproxy->srv;
3149 if (!next)
3150 break;
3151 curproxy->srv = next;
3152 }
3153
Willy Tarreau17edc812014-01-03 12:14:34 +01003154 /* Check that no server name conflicts. This causes trouble in the stats.
3155 * We only emit a warning for the first conflict affecting each server,
3156 * in order to avoid combinatory explosion if all servers have the same
3157 * name. We do that only for servers which do not have an explicit ID,
3158 * because these IDs were made also for distinguishing them and we don't
3159 * want to annoy people who correctly manage them.
3160 */
3161 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3162 struct server *other_srv;
3163
3164 if (newsrv->puid)
3165 continue;
3166
3167 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3168 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003169 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 +01003170 newsrv->conf.file, newsrv->conf.line,
3171 proxy_type_str(curproxy), curproxy->id,
3172 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003173 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003174 break;
3175 }
3176 }
3177 }
3178
Willy Tarreaudd701652010-05-25 23:03:02 +02003179 /* assign automatic UIDs to servers which don't have one yet */
3180 next_id = 1;
3181 newsrv = curproxy->srv;
3182 while (newsrv != NULL) {
3183 if (!newsrv->puid) {
3184 /* server ID not set, use automatic numbering with first
3185 * spare entry starting with next_svid.
3186 */
3187 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3188 newsrv->conf.id.key = newsrv->puid = next_id;
3189 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003190 newsrv->conf.name.key = newsrv->id;
3191 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003192 }
3193 next_id++;
3194 newsrv = newsrv->next;
3195 }
3196
Willy Tarreau20697042007-11-15 23:26:18 +01003197 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003198 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003199
Willy Tarreau62c3be22012-01-20 13:12:32 +01003200 /*
3201 * If this server supports a maxconn parameter, it needs a dedicated
3202 * tasks to fill the emptied slots when a connection leaves.
3203 * Also, resolve deferred tracking dependency if needed.
3204 */
3205 newsrv = curproxy->srv;
3206 while (newsrv != NULL) {
3207 if (newsrv->minconn > newsrv->maxconn) {
3208 /* Only 'minconn' was specified, or it was higher than or equal
3209 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3210 * this will avoid further useless expensive computations.
3211 */
3212 newsrv->maxconn = newsrv->minconn;
3213 } else if (newsrv->maxconn && !newsrv->minconn) {
3214 /* minconn was not specified, so we set it to maxconn */
3215 newsrv->minconn = newsrv->maxconn;
3216 }
3217
Willy Tarreau17d45382016-12-22 21:16:08 +01003218 /* this will also properly set the transport layer for prod and checks */
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003219 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 || (newsrv->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003220 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3221 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3222 }
Emeric Brun94324a42012-10-11 14:00:19 +02003223
Willy Tarreau034c88c2017-01-23 23:36:45 +01003224 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3225 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3226 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3227 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",
3228 newsrv->conf.file, newsrv->conf.line,
3229 proxy_type_str(curproxy), curproxy->id,
3230 newsrv->id);
3231
Willy Tarreau62c3be22012-01-20 13:12:32 +01003232 if (newsrv->trackit) {
3233 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003234 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003235 char *pname, *sname;
3236
3237 pname = newsrv->trackit;
3238 sname = strrchr(pname, '/');
3239
3240 if (sname)
3241 *sname++ = '\0';
3242 else {
3243 sname = pname;
3244 pname = NULL;
3245 }
3246
3247 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003248 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003249 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003250 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3251 proxy_type_str(curproxy), curproxy->id,
3252 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003253 cfgerr++;
3254 goto next_srv;
3255 }
3256 } else
3257 px = curproxy;
3258
3259 srv = findserver(px, sname);
3260 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003261 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3262 proxy_type_str(curproxy), curproxy->id,
3263 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003264 cfgerr++;
3265 goto next_srv;
3266 }
3267
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003268 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003269 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3270 "tracking as it does not have any check nor agent enabled.\n",
3271 proxy_type_str(curproxy), curproxy->id,
3272 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003273 cfgerr++;
3274 goto next_srv;
3275 }
3276
3277 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3278
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003279 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003280 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3281 "belongs to a tracking chain looping back to %s/%s.\n",
3282 proxy_type_str(curproxy), curproxy->id,
3283 newsrv->id, px->id, srv->id, px->id,
3284 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003285 cfgerr++;
3286 goto next_srv;
3287 }
3288
3289 if (curproxy != px &&
3290 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003291 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3292 "tracking: disable-on-404 option inconsistency.\n",
3293 proxy_type_str(curproxy), curproxy->id,
3294 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003295 cfgerr++;
3296 goto next_srv;
3297 }
3298
Willy Tarreau62c3be22012-01-20 13:12:32 +01003299 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003300 newsrv->tracknext = srv->trackers;
3301 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003302
3303 free(newsrv->trackit);
3304 newsrv->trackit = NULL;
3305 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003306
Willy Tarreau62c3be22012-01-20 13:12:32 +01003307 next_srv:
3308 newsrv = newsrv->next;
3309 }
3310
Olivier Houchard4e694042017-03-14 20:01:29 +01003311 /*
3312 * Try to generate dynamic cookies for servers now.
3313 * It couldn't be done earlier, since at the time we parsed
3314 * the server line, we may not have known yet that we
3315 * should use dynamic cookies, or the secret key may not
3316 * have been provided yet.
3317 */
3318 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3319 newsrv = curproxy->srv;
3320 while (newsrv != NULL) {
3321 srv_set_dyncookie(newsrv);
3322 newsrv = newsrv->next;
3323 }
3324
3325 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003326 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003327 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003328 */
3329
3330 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3331 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3332 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003333 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3334 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3335 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003336 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3337 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3338 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003339 } else {
3340 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3341 fwrr_init_server_groups(curproxy);
3342 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003343 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003344
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003345 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003346 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3347 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3348 fwlc_init_server_tree(curproxy);
3349 } else {
3350 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3351 fas_init_server_tree(curproxy);
3352 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003353 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003354
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003355 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003356 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3357 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3358 chash_init_server_tree(curproxy);
3359 } else {
3360 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3361 init_server_map(curproxy);
3362 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003363 break;
3364 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003365 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003366
3367 if (curproxy->options & PR_O_LOGASAP)
3368 curproxy->to_log &= ~LW_BYTES;
3369
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003370 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003371 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3372 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003373 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3374 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003375 err_code |= ERR_WARN;
3376 }
3377
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003378 if (curproxy->mode != PR_MODE_HTTP) {
3379 int optnum;
3380
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003381 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003382 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3383 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003384 err_code |= ERR_WARN;
3385 curproxy->uri_auth = NULL;
3386 }
3387
Willy Tarreaude7dc882017-03-10 11:49:21 +01003388 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003389 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3390 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003391 err_code |= ERR_WARN;
3392 }
3393
3394 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003395 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3396 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003397 err_code |= ERR_WARN;
3398 }
3399
3400 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003401 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3402 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003403 err_code |= ERR_WARN;
3404 }
3405
Willy Tarreaude7dc882017-03-10 11:49:21 +01003406 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003407 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3408 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003409 err_code |= ERR_WARN;
3410 }
3411
Willy Tarreau87cf5142011-08-19 22:57:24 +02003412 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003413 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3414 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003415 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003416 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003417 }
3418
3419 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003420 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3421 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003422 err_code |= ERR_WARN;
3423 curproxy->options &= ~PR_O_ORGTO;
3424 }
3425
3426 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3427 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3428 (curproxy->cap & cfg_opts[optnum].cap) &&
3429 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003430 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3431 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003432 err_code |= ERR_WARN;
3433 curproxy->options &= ~cfg_opts[optnum].val;
3434 }
3435 }
3436
3437 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3438 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3439 (curproxy->cap & cfg_opts2[optnum].cap) &&
3440 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003441 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3442 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003443 err_code |= ERR_WARN;
3444 curproxy->options2 &= ~cfg_opts2[optnum].val;
3445 }
3446 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003447
Willy Tarreau29fbe512015-08-20 19:35:14 +02003448#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003449 if (curproxy->conn_src.bind_hdr_occ) {
3450 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003451 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3452 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003453 err_code |= ERR_WARN;
3454 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003455#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003456 }
3457
Willy Tarreaubaaee002006-06-26 02:48:02 +02003458 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003459 * ensure that we're not cross-dressing a TCP server into HTTP.
3460 */
3461 newsrv = curproxy->srv;
3462 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003463 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003464 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3465 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003466 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003467 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003468
Willy Tarreau0cec3312011-10-31 13:49:26 +01003469 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003470 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3471 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003472 err_code |= ERR_WARN;
3473 }
3474
Willy Tarreauc93cd162014-05-13 15:54:22 +02003475 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003476 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3477 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003478 err_code |= ERR_WARN;
3479 }
3480
Willy Tarreau29fbe512015-08-20 19:35:14 +02003481#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003482 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3483 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003484 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3485 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003486 err_code |= ERR_WARN;
3487 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003488#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003489
Willy Tarreau46deab62018-04-28 07:18:15 +02003490 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3491 curproxy->options &= ~PR_O_REUSE_MASK;
3492
Willy Tarreau21d2af32008-02-14 20:25:24 +01003493 newsrv = newsrv->next;
3494 }
3495
Christopher Fauletd7c91962015-04-30 11:48:27 +02003496 /* Check filter configuration, if any */
3497 cfgerr += flt_check(curproxy);
3498
Willy Tarreauc1a21672009-08-16 22:37:44 +02003499 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003500 if (!curproxy->accept)
3501 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003502
Willy Tarreauc1a21672009-08-16 22:37:44 +02003503 if (curproxy->tcp_req.inspect_delay ||
3504 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003505 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003506
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003507 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003508 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003509 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003510 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003511
William Lallemandcf62f7e2018-10-26 14:47:40 +02003512 if (curproxy->mode == PR_MODE_CLI) {
3513 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3514 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3515 }
3516
Willy Tarreauc1a21672009-08-16 22:37:44 +02003517 /* both TCP and HTTP must check switching rules */
3518 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003519
3520 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003521 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003522 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3523 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 +01003524 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003525 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3526 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003527 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003528 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003529 }
3530
3531 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003532 if (curproxy->tcp_req.inspect_delay ||
3533 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3534 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3535
Emeric Brun97679e72010-09-23 17:56:44 +02003536 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3537 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3538
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003539 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003540 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003541 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003542 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003543
3544 /* If the backend does requires RDP cookie persistence, we have to
3545 * enable the corresponding analyser.
3546 */
3547 if (curproxy->options2 & PR_O2_RDPC_PRST)
3548 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003549
3550 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003551 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003552 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3553 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 +01003554 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003555 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3556 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003557 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003558 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003559 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003560
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003561 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003562 * attached to the current proxy */
3563 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3564 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003565 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003566
3567 if (!bind_conf->mux_proto)
3568 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003569
3570 /* it is possible that an incorrect mux was referenced
3571 * due to the proxy's mode not being taken into account
3572 * on first pass. Let's adjust it now.
3573 */
3574 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3575
3576 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003577 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3578 proxy_type_str(curproxy), curproxy->id,
3579 (int)bind_conf->mux_proto->token.len,
3580 bind_conf->mux_proto->token.ptr,
3581 bind_conf->arg, bind_conf->file, bind_conf->line);
3582 cfgerr++;
3583 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003584
3585 /* update the mux */
3586 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003587 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003588 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3589 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003590 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003591
3592 if (!newsrv->mux_proto)
3593 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003594
3595 /* it is possible that an incorrect mux was referenced
3596 * due to the proxy's mode not being taken into account
3597 * on first pass. Let's adjust it now.
3598 */
3599 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3600
3601 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003602 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3603 proxy_type_str(curproxy), curproxy->id,
3604 (int)newsrv->mux_proto->token.len,
3605 newsrv->mux_proto->token.ptr,
3606 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3607 cfgerr++;
3608 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003609
3610 /* update the mux */
3611 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003612 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003613
3614 /* initialize idle conns lists */
3615 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3616 int i;
3617
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003618 newsrv->available_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->available_conns));
Willy Tarreau835daa12019-02-07 14:46:29 +01003619
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003620 if (!newsrv->available_conns) {
Willy Tarreau835daa12019-02-07 14:46:29 +01003621 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003622 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau835daa12019-02-07 14:46:29 +01003623 cfgerr++;
3624 continue;
3625 }
3626
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003627 for (i = 0; i < global.nbthread; i++)
3628 LIST_INIT(&newsrv->available_conns[i]);
Willy Tarreau980855b2019-02-07 14:59:29 +01003629
3630 if (newsrv->max_idle_conns != 0) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003631 if (idle_conn_task == NULL) {
3632 idle_conn_task = task_new(MAX_THREADS_MASK);
3633 if (!idle_conn_task)
3634 goto err;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003635
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003636 idle_conn_task->process = srv_cleanup_idle_connections;
3637 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003638
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003639 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubbb5f1d2019-10-18 08:50:49 +02003640 idle_conn_cleanup[i] = task_new(1UL << i);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003641 if (!idle_conn_cleanup[i])
3642 goto err;
3643 idle_conn_cleanup[i]->process = srv_cleanup_toremove_connections;
3644 idle_conn_cleanup[i]->context = NULL;
Olivier Houchard859dc802019-08-08 15:47:21 +02003645 MT_LIST_INIT(&toremove_connections[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003646 }
3647 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003648
3649 newsrv->idle_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->idle_conns));
3650 if (!newsrv->idle_conns) {
3651 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3652 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3653 cfgerr++;
3654 continue;
3655 }
3656
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003657 for (i = 0; i < global.nbthread; i++)
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003658 MT_LIST_INIT(&newsrv->idle_conns[i]);
3659
3660 newsrv->safe_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->safe_conns));
3661 if (!newsrv->safe_conns) {
3662 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3663 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3664 cfgerr++;
3665 continue;
3666 }
3667
3668 for (i = 0; i < global.nbthread; i++)
3669 MT_LIST_INIT(&newsrv->safe_conns[i]);
3670
3671 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(int));
Olivier Houchardf1314812019-02-18 16:41:17 +01003672 if (!newsrv->curr_idle_thr)
3673 goto err;
Willy Tarreau980855b2019-02-07 14:59:29 +01003674 continue;
3675 err:
3676 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3677 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3678 cfgerr++;
3679 continue;
3680 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003681 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003682 }
3683
3684 /***********************************************************/
3685 /* At this point, target names have already been resolved. */
3686 /***********************************************************/
3687
3688 /* Check multi-process mode compatibility */
3689
3690 if (global.nbproc > 1 && global.stats_fe) {
3691 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3692 unsigned long mask;
3693
Willy Tarreau6daac192019-02-02 17:39:53 +01003694 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
3695 mask &= proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003696
3697 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003698 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003699 break;
3700 }
3701 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003702 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 +02003703 }
3704 }
3705
3706 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003707 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003708 if (curproxy->bind_proc)
3709 continue;
3710
3711 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3712 unsigned long mask;
3713
Willy Tarreau6daac192019-02-02 17:39:53 +01003714 mask = proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003715 curproxy->bind_proc |= mask;
3716 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003717 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003718 }
3719
3720 if (global.stats_fe) {
3721 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3722 unsigned long mask;
3723
Cyril Bonté06181952016-02-24 00:14:54 +01003724 mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003725 global.stats_fe->bind_proc |= mask;
3726 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003727 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003728 }
3729
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003730 /* propagate bindings from frontends to backends. Don't do it if there
3731 * are any fatal errors as we must not call it with unresolved proxies.
3732 */
3733 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003734 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003735 if (curproxy->cap & PR_CAP_FE)
3736 propagate_processes(curproxy, NULL);
3737 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003738 }
3739
3740 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003741 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3742 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003743
3744 /*******************************************************/
3745 /* At this step, all proxies have a non-null bind_proc */
3746 /*******************************************************/
3747
3748 /* perform the final checks before creating tasks */
3749
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003750 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003751 struct listener *listener;
3752 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003753
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003754 /* Configure SSL for each bind line.
3755 * Note: if configuration fails at some point, the ->ctx member
3756 * remains NULL so that listeners can later detach.
3757 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003758 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003759 if (bind_conf->xprt->prepare_bind_conf &&
3760 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003761 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003762 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003763
Willy Tarreaue6b98942007-10-29 01:09:36 +01003764 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003765 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003766 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003767 int nbproc;
3768
3769 nbproc = my_popcountl(curproxy->bind_proc &
Cyril Bonté4920d702016-04-15 07:58:43 +02003770 (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003771 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003772
3773 if (!nbproc) /* no intersection between listener and frontend */
3774 nbproc = 1;
3775
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003776 if (!listener->luid) {
3777 /* listener ID not set, use automatic numbering with first
3778 * spare entry starting with next_luid.
3779 */
3780 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3781 listener->conf.id.key = listener->luid = next_id;
3782 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003783 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003784 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003785
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003786 /* enable separate counters */
3787 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003788 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003789 if (!listener->name)
3790 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003791 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003792
Willy Tarreaue6b98942007-10-29 01:09:36 +01003793 if (curproxy->options & PR_O_TCP_NOLING)
3794 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003795 if (!listener->maxaccept)
3796 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3797
3798 /* we want to have an optimal behaviour on single process mode to
3799 * maximize the work at once, but in multi-process we want to keep
3800 * some fairness between processes, so we target half of the max
3801 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003802 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003803 * used to disable the limit.
3804 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003805 if (listener->maxaccept > 0 && nbproc > 1) {
3806 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003807 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3808 }
3809
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003810 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003811 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003812 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003813
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003814 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003815 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003816
Willy Tarreau620408f2016-10-21 16:37:51 +02003817 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3818 listener->options |= LI_O_TCP_L5_RULES;
3819
Willy Tarreaude3041d2010-05-31 10:56:17 +02003820 if (curproxy->mon_mask.s_addr)
3821 listener->options |= LI_O_CHK_MONNET;
3822
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003823 /* smart accept mode is automatic in HTTP mode */
3824 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003825 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003826 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3827 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003828 }
3829
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003830 /* Release unused SSL configs */
3831 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003832 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3833 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003834 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003835
Willy Tarreaua38a7172019-02-02 17:11:28 +01003836 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003837 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003838 int count, maxproc = 0;
3839
3840 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
David Carliere6c39412015-07-02 07:00:17 +00003841 count = my_popcountl(bind_conf->bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003842 if (count > maxproc)
3843 maxproc = count;
3844 }
3845 /* backends have 0, frontends have 1 or more */
3846 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003847 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3848 " limited to process assigned to the current request.\n",
3849 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003850
Willy Tarreau102df612014-05-07 23:56:38 +02003851 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003852 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3853 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003854 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003855 }
Willy Tarreau102df612014-05-07 23:56:38 +02003856 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003857 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3858 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003859 }
3860 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003861
3862 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003863 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003864 if (curproxy->task) {
3865 curproxy->task->context = curproxy;
3866 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003867 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003868 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3869 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003870 cfgerr++;
3871 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003872 }
3873
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003874 /*
3875 * Recount currently required checks.
3876 */
3877
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003878 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003879 int optnum;
3880
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003881 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3882 if (curproxy->options & cfg_opts[optnum].val)
3883 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003884
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003885 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3886 if (curproxy->options2 & cfg_opts2[optnum].val)
3887 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003888 }
3889
Willy Tarreau0fca4832015-05-01 19:12:05 +02003890 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003891 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003892 if (curproxy->table && curproxy->table->peers.p)
3893 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003894
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003895 /* compute the required process bindings for the peers from <stktables_list>
3896 * for all the stick-tables, the ones coming with "peers" sections included.
3897 */
3898 for (t = stktables_list; t; t = t->next) {
3899 struct proxy *p;
3900
3901 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3902 if (t->peers.p && t->peers.p->peers_fe) {
3903 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3904 }
3905 }
3906 }
3907
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003908 if (cfg_peers) {
3909 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003910 struct peer *p, *pb;
3911
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003912 /* In the case the peers frontend was not initialized by a
3913 stick-table used in the configuration, set its bind_proc
3914 by default to the first process. */
3915 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003916 if (curpeers->peers_fe) {
3917 if (curpeers->peers_fe->bind_proc == 0)
3918 curpeers->peers_fe->bind_proc = 1;
3919 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003920 curpeers = curpeers->next;
3921 }
3922
3923 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003924 /* Remove all peers sections which don't have a valid listener,
3925 * which are not used by any table, or which are bound to more
3926 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003927 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003928 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003929 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003930 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003931 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003932
3933 if (curpeers->state == PR_STSTOPPED) {
3934 /* the "disabled" keyword was present */
3935 if (curpeers->peers_fe)
3936 stop_proxy(curpeers->peers_fe);
3937 curpeers->peers_fe = NULL;
3938 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003939 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003940 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3941 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003942 if (curpeers->peers_fe)
3943 stop_proxy(curpeers->peers_fe);
3944 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003945 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003946 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003947 /* either it's totally stopped or too much used */
3948 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003949 ha_alert("Peers section '%s': peers referenced by sections "
3950 "running in different processes (%d different ones). "
3951 "Check global.nbproc and all tables' bind-process "
3952 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003953 cfgerr++;
3954 }
3955 stop_proxy(curpeers->peers_fe);
3956 curpeers->peers_fe = NULL;
3957 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003958 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003959 /* Initializes the transport layer of the server part of all the peers belonging to
3960 * <curpeers> section if required.
3961 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3962 * of an old process.
3963 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003964 p = curpeers->remote;
3965 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003966 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003967 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 +01003968 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3969 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003970 p = p->next;
3971 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003972 /* Configure the SSL bindings of the local peer if required. */
3973 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3974 struct list *l;
3975 struct bind_conf *bind_conf;
3976
3977 l = &curpeers->peers_fe->conf.bind;
3978 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3979 if (bind_conf->xprt->prepare_bind_conf &&
3980 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3981 cfgerr++;
3982 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003983 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02003984 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3985 curpeers->id);
3986 cfgerr++;
3987 break;
3988 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003989 last = &curpeers->next;
3990 continue;
3991 }
3992
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003993 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003994 p = curpeers->remote;
3995 while (p) {
3996 pb = p->next;
3997 free(p->id);
3998 free(p);
3999 p = pb;
4000 }
4001
4002 /* Destroy and unlink this curpeers section.
4003 * Note: curpeers is backed up into *last.
4004 */
4005 free(curpeers->id);
4006 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004007 /* Reset any refereance to this peers section in the list of stick-tables */
4008 for (t = stktables_list; t; t = t->next) {
4009 if (t->peers.p && t->peers.p == *last)
4010 t->peers.p = NULL;
4011 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004012 free(*last);
4013 *last = curpeers;
4014 }
4015 }
4016
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004017 for (t = stktables_list; t; t = t->next) {
4018 if (t->proxy)
4019 continue;
4020 if (!stktable_init(t)) {
4021 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4022 cfgerr++;
4023 }
4024 }
4025
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004026 /* initialize stick-tables on backend capable proxies. This must not
4027 * be done earlier because the data size may be discovered while parsing
4028 * other proxies.
4029 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004030 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004031 if (curproxy->state == PR_STSTOPPED || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004032 continue;
4033
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004034 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004035 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004036 cfgerr++;
4037 }
4038 }
4039
Simon Horman0d16a402015-01-30 11:22:58 +09004040 if (mailers) {
4041 struct mailers *curmailers = mailers, **last;
4042 struct mailer *m, *mb;
4043
4044 /* Remove all mailers sections which don't have a valid listener.
4045 * This can happen when a mailers section is never referenced.
4046 */
4047 last = &mailers;
4048 while (*last) {
4049 curmailers = *last;
4050 if (curmailers->users) {
4051 last = &curmailers->next;
4052 continue;
4053 }
4054
Christopher Faulet767a84b2017-11-24 16:50:31 +01004055 ha_warning("Removing incomplete section 'mailers %s'.\n",
4056 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004057
4058 m = curmailers->mailer_list;
4059 while (m) {
4060 mb = m->next;
4061 free(m->id);
4062 free(m);
4063 m = mb;
4064 }
4065
4066 /* Destroy and unlink this curmailers section.
4067 * Note: curmailers is backed up into *last.
4068 */
4069 free(curmailers->id);
4070 curmailers = curmailers->next;
4071 free(*last);
4072 *last = curmailers;
4073 }
4074 }
4075
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004076 /* Update server_state_file_name to backend name if backend is supposed to use
4077 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004078 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004079 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4080 curproxy->server_state_file_name == NULL)
4081 curproxy->server_state_file_name = strdup(curproxy->id);
4082 }
4083
Ben Draut054fbee2018-04-13 15:43:04 -06004084 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
4085 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
4086 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
4087 curr_resolvers->id, curr_resolvers->conf.file,
4088 curr_resolvers->conf.line);
4089 err_code |= ERR_WARN;
4090 }
4091 }
4092
William Lallemand48b4bb42017-10-23 14:36:34 +02004093 list_for_each_entry(postparser, &postparsers, list) {
4094 if (postparser->func)
4095 cfgerr += postparser->func();
4096 }
4097
Willy Tarreaubb925012009-07-23 13:36:36 +02004098 if (cfgerr > 0)
4099 err_code |= ERR_ALERT | ERR_FATAL;
4100 out:
4101 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004102}
4103
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004104/*
4105 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4106 * parsing sessions.
4107 */
4108void cfg_register_keywords(struct cfg_kw_list *kwl)
4109{
4110 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
4111}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004112
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004113/*
4114 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4115 */
4116void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4117{
4118 LIST_DEL(&kwl->list);
4119 LIST_INIT(&kwl->list);
4120}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004121
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004122/* this function register new section in the haproxy configuration file.
4123 * <section_name> is the name of this new section and <section_parser>
4124 * is the called parser. If two section declaration have the same name,
4125 * only the first declared is used.
4126 */
4127int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004128 int (*section_parser)(const char *, int, char **, int),
4129 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004130{
4131 struct cfg_section *cs;
4132
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004133 list_for_each_entry(cs, &sections, list) {
4134 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004135 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004136 return 0;
4137 }
4138 }
4139
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004140 cs = calloc(1, sizeof(*cs));
4141 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004142 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004143 return 0;
4144 }
4145
4146 cs->section_name = section_name;
4147 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004148 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004149
4150 LIST_ADDQ(&sections, &cs->list);
4151
4152 return 1;
4153}
4154
William Lallemand48b4bb42017-10-23 14:36:34 +02004155/* this function register a new function which will be called once the haproxy
4156 * configuration file has been parsed. It's useful to check dependencies
4157 * between sections or to resolve items once everything is parsed.
4158 */
4159int cfg_register_postparser(char *name, int (*func)())
4160{
4161 struct cfg_postparser *cp;
4162
4163 cp = calloc(1, sizeof(*cp));
4164 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004165 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004166 return 0;
4167 }
4168 cp->name = name;
4169 cp->func = func;
4170
4171 LIST_ADDQ(&postparsers, &cp->list);
4172
4173 return 1;
4174}
4175
Willy Tarreaubaaee002006-06-26 02:48:02 +02004176/*
David Carlier845efb52015-09-25 11:49:18 +01004177 * free all config section entries
4178 */
4179void cfg_unregister_sections(void)
4180{
4181 struct cfg_section *cs, *ics;
4182
4183 list_for_each_entry_safe(cs, ics, &sections, list) {
4184 LIST_DEL(&cs->list);
4185 free(cs);
4186 }
4187}
4188
Christopher Faulet7110b402016-10-26 11:09:44 +02004189void cfg_backup_sections(struct list *backup_sections)
4190{
4191 struct cfg_section *cs, *ics;
4192
4193 list_for_each_entry_safe(cs, ics, &sections, list) {
4194 LIST_DEL(&cs->list);
4195 LIST_ADDQ(backup_sections, &cs->list);
4196 }
4197}
4198
4199void cfg_restore_sections(struct list *backup_sections)
4200{
4201 struct cfg_section *cs, *ics;
4202
4203 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4204 LIST_DEL(&cs->list);
4205 LIST_ADDQ(&sections, &cs->list);
4206 }
4207}
4208
Willy Tarreaue6552512018-11-26 11:33:13 +01004209/* these are the config sections handled by default */
4210REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4211REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4212REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4213REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4214REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4215REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4216REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4217REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4218REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4219REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004220
David Carlier845efb52015-09-25 11:49:18 +01004221/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004222 * Local variables:
4223 * c-indent-level: 8
4224 * c-basic-offset: 8
4225 * End:
4226 */