blob: 077a584a6af02cc6851049f037ae413471298881 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Configuration parser
3 *
Willy Tarreauff011f22011-01-06 17:51:27 +01004 * Copyright 2000-2011 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreaue5733232019-05-22 19:24:06 +020013#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +020014/* This is to have crypt() defined on Linux */
15#define _GNU_SOURCE
16
Willy Tarreaue5733232019-05-22 19:24:06 +020017#ifdef USE_CRYPT_H
Cyril Bonté1a0191d2014-08-29 20:20:02 +020018/* some platforms such as Solaris need this */
19#include <crypt.h>
20#endif
Willy Tarreaue5733232019-05-22 19:24:06 +020021#endif /* USE_LIBCRYPT */
Cyril Bonté1a0191d2014-08-29 20:20:02 +020022
Willy Tarreaubaaee002006-06-26 02:48:02 +020023#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <netdb.h>
27#include <ctype.h>
Willy Tarreau95c20ac2007-03-25 15:39:23 +020028#include <pwd.h>
29#include <grp.h>
Willy Tarreau0b4ed902007-03-26 00:18:40 +020030#include <errno.h>
Willy Tarreau3f49b302007-06-11 00:29:26 +020031#include <sys/types.h>
32#include <sys/stat.h>
33#include <fcntl.h>
34#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035
Willy Tarreaudcc048a2020-06-04 19:11:43 +020036#include <haproxy/acl.h>
Willy Tarreau122eba92020-06-04 10:15:32 +020037#include <haproxy/action-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020038#include <haproxy/api.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020039#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020040#include <haproxy/backend.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020041#include <haproxy/capture.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020042#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020043#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020044#include <haproxy/check.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020045#include <haproxy/chunk.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020046#include <haproxy/connection.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020047#include <haproxy/dns.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020048#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020049#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020050#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020051#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020052#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020053#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020054#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020055#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020056#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020057#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020058#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020059#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020060#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020061#include <haproxy/mailers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020062#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020063#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020064#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020065#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020066#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020067#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020068#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020069#include <haproxy/sample.h>
70#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020071#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020072#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020073#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020074#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020075#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020076#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020077#include <haproxy/thread.h>
78#include <haproxy/time.h>
79#include <haproxy/tools.h>
80#include <haproxy/uri_auth-t.h>
Frédéric Lécaille884f2e92020-11-23 14:23:21 +010081#include <haproxy/xprt_quic.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020082
83
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010084/* Used to chain configuration sections definitions. This list
85 * stores struct cfg_section
86 */
87struct list sections = LIST_HEAD_INIT(sections);
88
William Lallemand48b4bb42017-10-23 14:36:34 +020089struct list postparsers = LIST_HEAD_INIT(postparsers);
90
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010091char *cursection = NULL;
Willy Tarreauc8d5b952019-02-27 17:25:52 +010092int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +010093int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +010094char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +020095
Willy Tarreau5b2c3362008-07-09 19:39:06 +020096/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +010097struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +020098 .list = LIST_HEAD_INIT(cfg_keywords.list)
99};
100
Willy Tarreau4b103022021-02-12 17:59:10 +0100101/* nested if/elif/else/endif block states */
102enum nested_cond_state {
103 NESTED_COND_IF_TAKE, // "if" with a true condition
104 NESTED_COND_IF_DROP, // "if" with a false condition
105 NESTED_COND_IF_SKIP, // "if" masked by an outer false condition
106
107 NESTED_COND_ELIF_TAKE, // "elif" with a true condition from a false one
108 NESTED_COND_ELIF_DROP, // "elif" with a false condition from a false one
109 NESTED_COND_ELIF_SKIP, // "elif" masked by an outer false condition or a previously taken if
110
111 NESTED_COND_ELSE_TAKE, // taken "else" after an if false condition
112 NESTED_COND_ELSE_DROP, // "else" masked by outer false condition or an if true condition
113};
114
115/* 100 levels of nested conditions should already be sufficient */
116#define MAXNESTEDCONDS 100
117
Willy Tarreaubaaee002006-06-26 02:48:02 +0200118/*
119 * converts <str> to a list of listeners which are dynamically allocated.
120 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
121 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
122 * - <port> is a numerical port from 1 to 65535 ;
123 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
124 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200125 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
126 * not NULL, it must be a valid pointer to either NULL or a freeable area that
127 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200128 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200129int 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 +0200130{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200131 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100132 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200133 int port, end;
134
135 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200136
Willy Tarreaubaaee002006-06-26 02:48:02 +0200137 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200138 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100139 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200140
141 str = next;
142 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100143 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200144 *next++ = 0;
145 }
146
Willy Tarreau5fc93282020-09-16 18:25:03 +0200147 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200148 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200149 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200150 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100151 if (!ss2)
152 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200153
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100154 /* OK the address looks correct */
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100155
156#ifdef USE_QUIC
157 /* The transport layer automatically switches to QUIC when QUIC
158 * is selected, regardless of bind_conf settings. We then need
159 * to initialize QUIC params.
160 */
161 if (proto->sock_type == SOCK_DGRAM && proto->ctrl_type == SOCK_STREAM) {
162 bind_conf->xprt = xprt_get(XPRT_QUIC);
163 quic_transport_params_init(&bind_conf->quic_params, 1);
164 }
165#endif
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200166 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200167 memprintf(err, "%s for address '%s'.\n", *err, str);
168 goto fail;
169 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200170 } /* end while(next) */
171 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200172 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200173 fail:
174 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200175 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200176}
177
William Lallemand6e62fb62015-04-28 16:55:23 +0200178/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200179 * converts <str> to a list of datagram-oriented listeners which are dynamically
180 * allocated.
181 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
182 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
183 * - <port> is a numerical port from 1 to 65535 ;
184 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
185 * This can be repeated as many times as necessary, separated by a coma.
186 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
187 * not NULL, it must be a valid pointer to either NULL or a freeable area that
188 * will be replaced with an error message.
189 */
190int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
191{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200192 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200193 char *next, *dupstr;
194 int port, end;
195
196 next = dupstr = strdup(str);
197
198 while (next && *next) {
199 struct sockaddr_storage *ss2;
200 int fd = -1;
201
202 str = next;
203 /* 1) look for the end of the first address */
204 if ((next = strchr(str, ',')) != NULL) {
205 *next++ = 0;
206 }
207
Willy Tarreau5fc93282020-09-16 18:25:03 +0200208 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreauaa333122020-09-16 15:13:04 +0200209 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
210 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
211 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
212 if (!ss2)
213 goto fail;
214
215 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200216 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200217 memprintf(err, "%s for address '%s'.\n", *err, str);
218 goto fail;
219 }
220 } /* end while(next) */
221 free(dupstr);
222 return 1;
223 fail:
224 free(dupstr);
225 return 0;
226}
227
228/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100229 * Report an error in <msg> when there are too many arguments. This version is
230 * intended to be used by keyword parsers so that the message will be included
231 * into the general error message. The index is the current keyword in args.
232 * Return 0 if the number of argument is correct, otherwise build a message and
233 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
234 * message may also be null, it will simply not be produced (useful to check only).
235 * <msg> and <err_code> are only affected on error.
236 */
237int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
238{
239 int i;
240
241 if (!*args[index + maxarg + 1])
242 return 0;
243
244 if (msg) {
245 *msg = NULL;
246 memprintf(msg, "%s", args[0]);
247 for (i = 1; i <= index; i++)
248 memprintf(msg, "%s %s", *msg, args[i]);
249
250 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
251 }
252 if (err_code)
253 *err_code |= ERR_ALERT | ERR_FATAL;
254
255 return 1;
256}
257
258/*
259 * same as too_many_args_idx with a 0 index
260 */
261int too_many_args(int maxarg, char **args, char **msg, int *err_code)
262{
263 return too_many_args_idx(maxarg, 0, args, msg, err_code);
264}
265
266/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200267 * Report a fatal Alert when there is too much arguments
268 * The index is the current keyword in args
269 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
270 * Fill err_code with an ERR_ALERT and an ERR_FATAL
271 */
272int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
273{
274 char *kw = NULL;
275 int i;
276
277 if (!*args[index + maxarg + 1])
278 return 0;
279
280 memprintf(&kw, "%s", args[0]);
281 for (i = 1; i <= index; i++) {
282 memprintf(&kw, "%s %s", kw, args[i]);
283 }
284
Christopher Faulet767a84b2017-11-24 16:50:31 +0100285 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 +0200286 free(kw);
287 *err_code |= ERR_ALERT | ERR_FATAL;
288 return 1;
289}
290
291/*
292 * same as alertif_too_many_args_idx with a 0 index
293 */
294int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
295{
296 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
297}
298
Willy Tarreau61d18892009-03-31 10:49:21 +0200299
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100300/* Report it if a request ACL condition uses some keywords that are incompatible
301 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
302 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
303 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100304 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100305int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100306{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100307 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200308 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100309
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100310 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100311 return 0;
312
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100313 acl = acl_cond_conflicts(cond, where);
314 if (acl) {
315 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100316 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
317 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100318 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100319 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
320 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100321 return ERR_WARN;
322 }
323 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100324 return 0;
325
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100326 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100327 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
328 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100329 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100330 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
331 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100332 return ERR_WARN;
333}
334
Christopher Faulet62519022017-10-16 15:49:32 +0200335/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100336 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100337 * two such numbers delimited by a dash ('-'). On success, it returns
338 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200339 *
340 * Note: this function can also be used to parse a thread number or a set of
341 * threads.
342 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100343int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200344{
Christopher Faulet26028f62017-11-22 15:01:51 +0100345 if (autoinc) {
346 *autoinc = 0;
347 if (strncmp(arg, "auto:", 5) == 0) {
348 arg += 5;
349 *autoinc = 1;
350 }
351 }
352
Christopher Faulet62519022017-10-16 15:49:32 +0200353 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100354 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200355 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100356 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200357 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100358 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200359 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100360 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100361 unsigned int low, high;
362
Christopher Faulet18cca782019-02-07 16:29:41 +0100363 for (p = arg; *p; p++) {
364 if (*p == '-' && !dash)
365 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100366 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100367 memprintf(err, "'%s' is not a valid number/range.", arg);
368 return -1;
369 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100370 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100371
372 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100373 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100374 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100375
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100376 if (high < low) {
377 unsigned int swap = low;
378 low = high;
379 high = swap;
380 }
381
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100382 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100383 memprintf(err, "'%s' is not a valid number/range."
384 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100385 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100386 return 1;
387 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100388
389 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100390 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200391 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100392 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100393
Christopher Faulet5ab51772017-11-22 11:21:58 +0100394 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200395}
396
David Carlier7e351ee2017-12-01 09:14:02 +0000397#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200398/* Parse cpu sets. Each CPU set is either a unique number between 0 and
399 * <LONGBITS> or a range with two such numbers delimited by a dash
400 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
401 * returns 0. otherwise it returns 1 with an error message in <err>.
402 */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100403unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200404{
405 int cur_arg = 0;
406
407 *cpu_set = 0;
408 while (*args[cur_arg]) {
409 char *dash;
410 unsigned int low, high;
411
Willy Tarreau90807112020-02-25 08:16:33 +0100412 if (!isdigit((unsigned char)*args[cur_arg])) {
Christopher Faulet62519022017-10-16 15:49:32 +0200413 memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
414 return -1;
415 }
416
417 low = high = str2uic(args[cur_arg]);
418 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100419 high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
Christopher Faulet62519022017-10-16 15:49:32 +0200420
421 if (high < low) {
422 unsigned int swap = low;
423 low = high;
424 high = swap;
425 }
426
427 if (high >= LONGBITS) {
428 memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
429 return 1;
430 }
431
432 while (low <= high)
433 *cpu_set |= 1UL << low++;
434
435 cur_arg++;
436 }
437 return 0;
438}
David Carlier7e351ee2017-12-01 09:14:02 +0000439#endif
440
Frédéric Lécaille18251032019-01-11 11:07:15 +0100441/* Allocate and initialize the frontend of a "peers" section found in
442 * file <file> at line <linenum> with <id> as ID.
443 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200444 * Note that this function may be called from "default-server"
445 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100446 */
447static int init_peers_frontend(const char *file, int linenum,
448 const char *id, struct peers *peers)
449{
450 struct proxy *p;
451
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200452 if (peers->peers_fe) {
453 p = peers->peers_fe;
454 goto out;
455 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100456
Frédéric Lécaille18251032019-01-11 11:07:15 +0100457 p = calloc(1, sizeof *p);
458 if (!p) {
459 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
460 return -1;
461 }
462
463 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200464 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100465 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200466 /* Finally store this frontend. */
467 peers->peers_fe = p;
468
469 out:
470 if (id && !p->id)
471 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200472 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100473 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100474 if (linenum != -1)
475 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100476
477 return 0;
478}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100479
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100480/* Only change ->file, ->line and ->arg struct bind_conf member values
481 * if already present.
482 */
483static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
484 const char *file, int line,
485 const char *arg, struct xprt_ops *xprt)
486{
487 struct bind_conf *bind_conf;
488
489 if (!LIST_ISEMPTY(&p->conf.bind)) {
490 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
491 free(bind_conf->file);
492 bind_conf->file = strdup(file);
493 bind_conf->line = line;
494 if (arg) {
495 free(bind_conf->arg);
496 bind_conf->arg = strdup(arg);
497 }
498 }
499 else {
500 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
501 }
502
503 return bind_conf;
504}
505
506/*
507 * Allocate a new struct peer parsed at line <linenum> in file <file>
508 * to be added to <peers>.
509 * Returns the new allocated structure if succeeded, NULL if not.
510 */
511static struct peer *cfg_peers_add_peer(struct peers *peers,
512 const char *file, int linenum,
513 const char *id, int local)
514{
515 struct peer *p;
516
517 p = calloc(1, sizeof *p);
518 if (!p) {
519 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
520 return NULL;
521 }
522
523 /* the peers are linked backwards first */
524 peers->count++;
525 p->next = peers->remote;
526 peers->remote = p;
527 p->conf.file = strdup(file);
528 p->conf.line = linenum;
529 p->last_change = now.tv_sec;
530 p->xprt = xprt_get(XPRT_RAW);
531 p->sock_init_arg = NULL;
532 HA_SPIN_INIT(&p->lock);
533 if (id)
534 p->id = strdup(id);
535 if (local) {
536 p->local = 1;
537 peers->local = p;
538 }
539
540 return p;
541}
542
Willy Tarreaubaaee002006-06-26 02:48:02 +0200543/*
William Lallemand51097192015-04-14 16:35:22 +0200544 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200545 * Returns the error code, 0 if OK, or any combination of :
546 * - ERR_ABORT: must abort ASAP
547 * - ERR_FATAL: we can continue parsing but not start the service
548 * - ERR_WARN: a warning has been emitted
549 * - ERR_ALERT: an alert has been emitted
550 * Only the two first ones can stop processing, the two others are just
551 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200552 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200553int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
554{
555 static struct peers *curpeers = NULL;
556 struct peer *newpeer = NULL;
557 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200558 struct bind_conf *bind_conf;
559 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200560 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100561 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100562 static int bind_line, peer_line;
563
564 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
565 int cur_arg;
566 static int kws_dumped;
567 struct bind_conf *bind_conf;
568 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200569
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100570 cur_arg = 1;
571
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200572 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
573 err_code |= ERR_ALERT | ERR_ABORT;
574 goto out;
575 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100576
577 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
578 NULL, xprt_get(XPRT_RAW));
579 if (*args[0] == 'b') {
580 struct listener *l;
581
582 if (peer_line) {
583 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
584 err_code |= ERR_ALERT | ERR_FATAL;
585 goto out;
586 }
587
588 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
589 if (errmsg && *errmsg) {
590 indent_msg(&errmsg, 2);
591 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
592 }
593 else
594 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
595 file, linenum, args[0], args[1], args[2]);
596 err_code |= ERR_FATAL;
597 goto out;
598 }
599 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
600 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100601 l->accept = session_accept_fd;
602 l->analysers |= curpeers->peers_fe->fe_req_ana;
603 l->default_target = curpeers->peers_fe->default_target;
604 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100605 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100606
607 bind_line = 1;
608 if (cfg_peers->local) {
609 newpeer = cfg_peers->local;
610 }
611 else {
612 /* This peer is local.
613 * Note that we do not set the peer ID. This latter is initialized
614 * when parsing "peer" or "server" line.
615 */
616 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
617 if (!newpeer) {
618 err_code |= ERR_ALERT | ERR_ABORT;
619 goto out;
620 }
621 }
Willy Tarreau37159062020-08-27 07:48:42 +0200622 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200623 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100624 cur_arg++;
625 }
626
627 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
628 int ret;
629
630 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
631 err_code |= ret;
632 if (ret) {
633 if (errmsg && *errmsg) {
634 indent_msg(&errmsg, 2);
635 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
636 }
637 else
638 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
639 file, linenum, args[cur_arg]);
640 if (ret & ERR_FATAL)
641 goto out;
642 }
643 cur_arg += 1 + kw->skip;
644 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100645 if (*args[cur_arg] != 0) {
Tim Duesterhus04bcaa12019-05-12 22:54:50 +0200646 char *kws = NULL;
647
648 if (!kws_dumped) {
649 kws_dumped = 1;
650 bind_dump_kws(&kws);
651 indent_msg(&kws, 4);
652 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100653 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.%s%s\n",
654 file, linenum, args[cur_arg], cursection,
655 kws ? " Registered keywords :" : "", kws ? kws: "");
656 free(kws);
657 err_code |= ERR_ALERT | ERR_FATAL;
658 goto out;
659 }
660 }
661 else if (strcmp(args[0], "default-server") == 0) {
662 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
663 err_code |= ERR_ALERT | ERR_ABORT;
664 goto out;
665 }
Emeric Brund3db3842020-07-21 16:54:36 +0200666 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, 0, 1, 1);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200667 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100668 else if (strcmp(args[0], "log") == 0) {
669 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
670 err_code |= ERR_ALERT | ERR_ABORT;
671 goto out;
672 }
673 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), &errmsg)) {
674 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
675 err_code |= ERR_ALERT | ERR_FATAL;
676 goto out;
677 }
678 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200679 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100680 /* Initialize these static variables when entering a new "peers" section*/
681 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100682 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100683 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100684 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100685 goto out;
686 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200687
William Lallemand6e62fb62015-04-28 16:55:23 +0200688 if (alertif_too_many_args(1, file, linenum, args, &err_code))
689 goto out;
690
Emeric Brun32da3c42010-09-23 18:39:19 +0200691 err = invalid_char(args[1]);
692 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100693 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
694 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100695 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100696 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200697 }
698
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200699 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200700 /*
701 * If there are two proxies with the same name only following
702 * combinations are allowed:
703 */
704 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100705 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
706 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200707 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200708 }
709 }
710
Vincent Bernat02779b62016-04-03 13:48:43 +0200711 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100712 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200713 err_code |= ERR_ALERT | ERR_ABORT;
714 goto out;
715 }
716
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200717 curpeers->next = cfg_peers;
718 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200719 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200720 curpeers->conf.line = linenum;
721 curpeers->last_change = now.tv_sec;
722 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200723 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200724 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200725 else if (strcmp(args[0], "peer") == 0 ||
726 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100727 int local_peer, peer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200728
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100729 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100730 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100731 /* The local peer may have already partially been parsed on a "bind" line. */
732 if (*args[0] == 'p') {
733 if (bind_line) {
734 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
735 err_code |= ERR_ALERT | ERR_FATAL;
736 goto out;
737 }
738 peer_line = 1;
739 }
740 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
741 /* The local peer has already been initialized on a "bind" line.
742 * Let's use it and store its ID.
743 */
744 newpeer = cfg_peers->local;
745 newpeer->id = strdup(localpeer);
746 }
747 else {
748 if (local_peer && cfg_peers->local) {
749 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
750 file, linenum, args[0], args[1],
751 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
752 err_code |= ERR_FATAL;
753 goto out;
754 }
755 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
756 if (!newpeer) {
757 err_code |= ERR_ALERT | ERR_ABORT;
758 goto out;
759 }
760 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200761
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100762 /* Line number and peer ID are updated only if this peer is the local one. */
763 if (init_peers_frontend(file,
764 newpeer->local ? linenum: -1,
765 newpeer->local ? newpeer->id : NULL,
766 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200767 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100768 goto out;
769 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100770
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100771 /* This initializes curpeer->peers->peers_fe->srv.
772 * The server address is parsed only if we are parsing a "peer" line,
773 * or if we are parsing a "server" line and the current peer is not the local one.
774 */
Emeric Brund3db3842020-07-21 16:54:36 +0200775 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, peer || !local_peer, 1, 1);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200776 if (!curpeers->peers_fe->srv) {
777 /* Remove the newly allocated peer. */
778 if (newpeer != curpeers->local) {
779 struct peer *p;
780
781 p = curpeers->remote;
782 curpeers->remote = curpeers->remote->next;
783 free(p->id);
784 free(p);
785 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200786 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200787 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200788
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100789 /* If the peer address has just been parsed, let's copy it to <newpeer>
790 * and initializes ->proto.
791 */
792 if (peer || !local_peer) {
793 newpeer->addr = curpeers->peers_fe->srv->addr;
794 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
795 }
796
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100797 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200798 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100799 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200800
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100801 newpeer->srv = curpeers->peers_fe->srv;
802 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200803 goto out;
804
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100805 /* The lines above are reserved to "peer" lines. */
806 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200807 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200808
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100809 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 +0100810
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100811 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
812 if (errmsg && *errmsg) {
813 indent_msg(&errmsg, 2);
814 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 +0100815 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100816 else
817 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
818 file, linenum, args[0], args[1], args[2]);
819 err_code |= ERR_FATAL;
820 goto out;
821 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100822
823 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
824 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100825 l->accept = session_accept_fd;
826 l->analysers |= curpeers->peers_fe->fe_req_ana;
827 l->default_target = curpeers->peers_fe->default_target;
828 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100829 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100830 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100831 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100832 struct stktable *t, *other;
833 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100834 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100835
836 /* Line number and peer ID are updated only if this peer is the local one. */
837 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
838 err_code |= ERR_ALERT | ERR_ABORT;
839 goto out;
840 }
841
842 other = stktable_find_by_name(args[1]);
843 if (other) {
844 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
845 file, linenum, args[1],
846 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
847 other->proxy ? other->id : other->peers.p->id,
848 other->conf.file, other->conf.line);
849 err_code |= ERR_ALERT | ERR_FATAL;
850 goto out;
851 }
852
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100853 /* Build the stick-table name, concatenating the "peers" section name
854 * followed by a '/' character and the table name argument.
855 */
856 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100857 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100858 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
859 file, linenum, args[0], args[1]);
860 err_code |= ERR_ALERT | ERR_FATAL;
861 goto out;
862 }
863
864 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100865 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100866 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
867 file, linenum, args[0], args[1]);
868 err_code |= ERR_ALERT | ERR_FATAL;
869 goto out;
870 }
871
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100872 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100873 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100874 if (!t || !id) {
875 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
876 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +0200877 free(t);
878 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100879 err_code |= ERR_ALERT | ERR_FATAL;
880 goto out;
881 }
882
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100883 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +0200884 if (err_code & ERR_FATAL) {
885 free(t);
886 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100887 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +0200888 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100889
890 stktable_store_name(t);
891 t->next = stktables_list;
892 stktables_list = t;
893 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100894 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200895 curpeers->disabled = 1;
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200896 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100897 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200898 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200899 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200900 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100901 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200902 err_code |= ERR_ALERT | ERR_FATAL;
903 goto out;
904 }
905
906out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100907 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200908 return err_code;
909}
910
Baptiste Assmann325137d2015-04-13 23:40:55 +0200911/*
912 * Parse a <resolvers> section.
913 * Returns the error code, 0 if OK, or any combination of :
914 * - ERR_ABORT: must abort ASAP
915 * - ERR_FATAL: we can continue parsing but not start the service
916 * - ERR_WARN: a warning has been emitted
917 * - ERR_ALERT: an alert has been emitted
918 * Only the two first ones can stop processing, the two others are just
919 * indicators.
920 */
921int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
922{
923 static struct dns_resolvers *curr_resolvers = NULL;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200924 const char *err;
925 int err_code = 0;
926 char *errmsg = NULL;
927
928 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
929 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100930 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200931 err_code |= ERR_ALERT | ERR_ABORT;
932 goto out;
933 }
934
935 err = invalid_char(args[1]);
936 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100937 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
938 file, linenum, *err, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200939 err_code |= ERR_ALERT | ERR_ABORT;
940 goto out;
941 }
942
943 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
944 /* Error if two resolvers owns the same name */
945 if (strcmp(curr_resolvers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100946 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
947 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200948 err_code |= ERR_ALERT | ERR_ABORT;
949 }
950 }
951
Vincent Bernat02779b62016-04-03 13:48:43 +0200952 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100953 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200954 err_code |= ERR_ALERT | ERR_ABORT;
955 goto out;
956 }
957
958 /* default values */
959 LIST_ADDQ(&dns_resolvers, &curr_resolvers->list);
960 curr_resolvers->conf.file = strdup(file);
961 curr_resolvers->conf.line = linenum;
962 curr_resolvers->id = strdup(args[1]);
963 curr_resolvers->query_ids = EB_ROOT;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200964 /* default maximum response size */
965 curr_resolvers->accepted_payload_size = 512;
Baptiste Assmann987e16d2016-11-02 22:23:31 +0100966 /* default hold period for nx, other, refuse and timeout is 30s */
967 curr_resolvers->hold.nx = 30000;
968 curr_resolvers->hold.other = 30000;
969 curr_resolvers->hold.refused = 30000;
970 curr_resolvers->hold.timeout = 30000;
Baptiste Assmann686408b2017-08-18 10:15:42 +0200971 curr_resolvers->hold.obsolete = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200972 /* default hold period for valid is 10s */
Baptiste Assmann4c5490a2015-07-14 21:42:49 +0200973 curr_resolvers->hold.valid = 10000;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200974 curr_resolvers->timeout.resolve = 1000;
975 curr_resolvers->timeout.retry = 1000;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200976 curr_resolvers->resolve_retries = 3;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200977 curr_resolvers->nb_nameservers = 0;
978 LIST_INIT(&curr_resolvers->nameservers);
979 LIST_INIT(&curr_resolvers->resolutions.curr);
980 LIST_INIT(&curr_resolvers->resolutions.wait);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100981 HA_SPIN_INIT(&curr_resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200982 }
983 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
Eric Salama9139ec32020-11-13 15:56:36 +0100984 struct dns_nameserver *newnameserver = NULL;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200985 struct sockaddr_storage *sk;
986 int port1, port2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200987
988 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100989 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
990 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200991 err_code |= ERR_ALERT | ERR_FATAL;
992 goto out;
993 }
994
995 err = invalid_char(args[1]);
996 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100997 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
998 file, linenum, *err, args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200999 err_code |= ERR_ALERT | ERR_FATAL;
1000 goto out;
1001 }
1002
Christopher Faulet67957bd2017-09-27 11:00:59 +02001003 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
Baptiste Assmanna315c552015-11-02 22:55:49 +01001004 /* Error if two resolvers owns the same name */
1005 if (strcmp(newnameserver->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001006 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 -06001007 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
Baptiste Assmanna315c552015-11-02 22:55:49 +01001008 err_code |= ERR_ALERT | ERR_FATAL;
1009 }
1010 }
1011
Vincent Bernat02779b62016-04-03 13:48:43 +02001012 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001013 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001014 err_code |= ERR_ALERT | ERR_ABORT;
1015 goto out;
1016 }
1017
1018 /* the nameservers are linked backward first */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001019 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001020 newnameserver->resolvers = curr_resolvers;
1021 newnameserver->conf.file = strdup(file);
1022 newnameserver->conf.line = linenum;
1023 newnameserver->id = strdup(args[1]);
1024
Willy Tarreau5fc93282020-09-16 18:25:03 +02001025 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, NULL,
1026 &errmsg, NULL, NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_DGRAM);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001027 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001028 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001029 err_code |= ERR_ALERT | ERR_FATAL;
1030 goto out;
1031 }
1032
Baptiste Assmann325137d2015-04-13 23:40:55 +02001033 newnameserver->addr = *sk;
1034 }
Ben Draut44e609b2018-05-29 15:40:08 -06001035 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
Eric Salama9139ec32020-11-13 15:56:36 +01001036 struct dns_nameserver *newnameserver = NULL;
Ben Draut44e609b2018-05-29 15:40:08 -06001037 const char *whitespace = "\r\n\t ";
1038 char *resolv_line = NULL;
1039 int resolv_linenum = 0;
1040 FILE *f = NULL;
1041 char *address = NULL;
1042 struct sockaddr_storage *sk = NULL;
1043 struct protocol *proto;
1044 int duplicate_name = 0;
1045
1046 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
1047 ha_alert("parsing [%s:%d] : out of memory.\n",
1048 file, linenum);
1049 err_code |= ERR_ALERT | ERR_FATAL;
1050 goto resolv_out;
1051 }
1052
1053 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
1054 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
1055 file, linenum);
1056 err_code |= ERR_ALERT | ERR_FATAL;
1057 goto resolv_out;
1058 }
1059
1060 sk = calloc(1, sizeof(*sk));
1061 if (sk == NULL) {
1062 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
1063 resolv_linenum);
1064 err_code |= ERR_ALERT | ERR_FATAL;
1065 goto resolv_out;
1066 }
1067
1068 while (fgets(resolv_line, LINESIZE, f) != NULL) {
1069 resolv_linenum++;
1070 if (strncmp(resolv_line, "nameserver", 10) != 0)
1071 continue;
1072
1073 address = strtok(resolv_line + 10, whitespace);
1074 if (address == resolv_line + 10)
1075 continue;
1076
1077 if (address == NULL) {
1078 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
1079 resolv_linenum);
1080 err_code |= ERR_WARN;
1081 continue;
1082 }
1083
1084 duplicate_name = 0;
1085 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
1086 if (strcmp(newnameserver->id, address) == 0) {
1087 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",
1088 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
1089 err_code |= ERR_WARN;
1090 duplicate_name = 1;
1091 }
1092 }
1093
1094 if (duplicate_name)
1095 continue;
1096
1097 memset(sk, 0, sizeof(*sk));
Willy Tarreau78675252020-05-28 18:07:10 +02001098 if (!str2ip2(address, sk, 1)) {
1099 ha_warning("parsing [/etc/resolv.conf:%d] : address '%s' could not be recognized, nameserver will be excluded.\n",
Ben Draut44e609b2018-05-29 15:40:08 -06001100 resolv_linenum, address);
1101 err_code |= ERR_WARN;
1102 continue;
1103 }
1104
1105 set_host_port(sk, 53);
1106
1107 proto = protocol_by_family(sk->ss_family);
1108 if (!proto || !proto->connect) {
1109 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
1110 resolv_linenum, address);
1111 err_code |= ERR_WARN;
1112 continue;
1113 }
1114
1115 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
1116 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1117 err_code |= ERR_ALERT | ERR_FATAL;
1118 goto resolv_out;
1119 }
1120
1121 newnameserver->conf.file = strdup("/etc/resolv.conf");
1122 if (newnameserver->conf.file == NULL) {
1123 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1124 err_code |= ERR_ALERT | ERR_FATAL;
Eric Salama9139ec32020-11-13 15:56:36 +01001125 free(newnameserver);
Ben Draut44e609b2018-05-29 15:40:08 -06001126 goto resolv_out;
1127 }
1128
1129 newnameserver->id = strdup(address);
1130 if (newnameserver->id == NULL) {
1131 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1132 err_code |= ERR_ALERT | ERR_FATAL;
Eric Salama9139ec32020-11-13 15:56:36 +01001133 free((char *)newnameserver->conf.file);
1134 free(newnameserver);
Ben Draut44e609b2018-05-29 15:40:08 -06001135 goto resolv_out;
1136 }
1137
1138 newnameserver->resolvers = curr_resolvers;
1139 newnameserver->conf.line = resolv_linenum;
1140 newnameserver->addr = *sk;
1141
1142 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
1143 }
1144
1145resolv_out:
1146 free(sk);
1147 free(resolv_line);
1148 if (f != NULL)
1149 fclose(f);
1150 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001151 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
1152 const char *res;
1153 unsigned int time;
1154
1155 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001156 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
1157 file, linenum, args[0]);
1158 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
Baptiste Assmann325137d2015-04-13 23:40:55 +02001159 err_code |= ERR_ALERT | ERR_FATAL;
1160 goto out;
1161 }
1162 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001163 if (res == PARSE_TIME_OVER) {
1164 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s>, maximum value is 2147483647 ms (~24.8 days).\n",
1165 file, linenum, args[1], args[0]);
1166 err_code |= ERR_ALERT | ERR_FATAL;
1167 goto out;
1168 }
1169 else if (res == PARSE_TIME_UNDER) {
1170 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s>, minimum non-null value is 1 ms.\n",
1171 file, linenum, args[1], args[0]);
1172 err_code |= ERR_ALERT | ERR_FATAL;
1173 goto out;
1174 }
1175 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001176 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1177 file, linenum, *res, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001178 err_code |= ERR_ALERT | ERR_FATAL;
1179 goto out;
1180 }
Baptiste Assmann987e16d2016-11-02 22:23:31 +01001181 if (strcmp(args[1], "nx") == 0)
1182 curr_resolvers->hold.nx = time;
1183 else if (strcmp(args[1], "other") == 0)
1184 curr_resolvers->hold.other = time;
1185 else if (strcmp(args[1], "refused") == 0)
1186 curr_resolvers->hold.refused = time;
1187 else if (strcmp(args[1], "timeout") == 0)
1188 curr_resolvers->hold.timeout = time;
1189 else if (strcmp(args[1], "valid") == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001190 curr_resolvers->hold.valid = time;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001191 else if (strcmp(args[1], "obsolete") == 0)
1192 curr_resolvers->hold.obsolete = time;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001193 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001194 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
1195 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001196 err_code |= ERR_ALERT | ERR_FATAL;
1197 goto out;
1198 }
1199
1200 }
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001201 else if (strcmp(args[0], "accepted_payload_size") == 0) {
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001202 int i = 0;
1203
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001204 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001205 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1206 file, linenum, args[0]);
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001207 err_code |= ERR_ALERT | ERR_FATAL;
1208 goto out;
1209 }
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001210
1211 i = atoi(args[1]);
Willy Tarreau0c219be2017-08-22 12:01:26 +02001212 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001213 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
1214 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001215 err_code |= ERR_ALERT | ERR_FATAL;
1216 goto out;
1217 }
1218
1219 curr_resolvers->accepted_payload_size = i;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001220 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001221 else if (strcmp(args[0], "resolution_pool_size") == 0) {
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001222 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 +01001223 file, linenum, args[0]);
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001224 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001225 goto out;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001226 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001227 else if (strcmp(args[0], "resolve_retries") == 0) {
1228 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001229 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1230 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001231 err_code |= ERR_ALERT | ERR_FATAL;
1232 goto out;
1233 }
1234 curr_resolvers->resolve_retries = atoi(args[1]);
1235 }
1236 else if (strcmp(args[0], "timeout") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001237 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001238 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
1239 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001240 err_code |= ERR_ALERT | ERR_FATAL;
1241 goto out;
1242 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001243 else if (strcmp(args[1], "retry") == 0 ||
1244 strcmp(args[1], "resolve") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001245 const char *res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001246 unsigned int tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001247
1248 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001249 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1250 file, linenum, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001251 err_code |= ERR_ALERT | ERR_FATAL;
1252 goto out;
1253 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001254 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001255 if (res == PARSE_TIME_OVER) {
1256 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1257 file, linenum, args[2], args[0], args[1]);
1258 err_code |= ERR_ALERT | ERR_FATAL;
1259 goto out;
1260 }
1261 else if (res == PARSE_TIME_UNDER) {
1262 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1263 file, linenum, args[2], args[0], args[1]);
1264 err_code |= ERR_ALERT | ERR_FATAL;
1265 goto out;
1266 }
1267 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001268 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1269 file, linenum, *res, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001270 err_code |= ERR_ALERT | ERR_FATAL;
1271 goto out;
1272 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001273 if (args[1][2] == 't')
1274 curr_resolvers->timeout.retry = tout;
1275 else
1276 curr_resolvers->timeout.resolve = tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001277 }
1278 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001279 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
1280 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001281 err_code |= ERR_ALERT | ERR_FATAL;
1282 goto out;
1283 }
Eric Salama9139ec32020-11-13 15:56:36 +01001284 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001285 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001286 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001287 err_code |= ERR_ALERT | ERR_FATAL;
1288 goto out;
1289 }
1290
1291 out:
1292 free(errmsg);
1293 return err_code;
1294}
Simon Horman0d16a402015-01-30 11:22:58 +09001295
1296/*
William Lallemand51097192015-04-14 16:35:22 +02001297 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001298 * Returns the error code, 0 if OK, or any combination of :
1299 * - ERR_ABORT: must abort ASAP
1300 * - ERR_FATAL: we can continue parsing but not start the service
1301 * - ERR_WARN: a warning has been emitted
1302 * - ERR_ALERT: an alert has been emitted
1303 * Only the two first ones can stop processing, the two others are just
1304 * indicators.
1305 */
1306int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1307{
1308 static struct mailers *curmailers = NULL;
1309 struct mailer *newmailer = NULL;
1310 const char *err;
1311 int err_code = 0;
1312 char *errmsg = NULL;
1313
1314 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1315 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001316 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001317 err_code |= ERR_ALERT | ERR_ABORT;
1318 goto out;
1319 }
1320
1321 err = invalid_char(args[1]);
1322 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001323 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1324 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001325 err_code |= ERR_ALERT | ERR_ABORT;
1326 goto out;
1327 }
1328
1329 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1330 /*
1331 * If there are two proxies with the same name only following
1332 * combinations are allowed:
1333 */
1334 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001335 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1336 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001337 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001338 }
1339 }
1340
Vincent Bernat02779b62016-04-03 13:48:43 +02001341 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001342 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001343 err_code |= ERR_ALERT | ERR_ABORT;
1344 goto out;
1345 }
1346
1347 curmailers->next = mailers;
1348 mailers = curmailers;
1349 curmailers->conf.file = strdup(file);
1350 curmailers->conf.line = linenum;
1351 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001352 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1353 * But need enough time so that timeouts don't occur
1354 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001355 }
1356 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1357 struct sockaddr_storage *sk;
1358 int port1, port2;
1359 struct protocol *proto;
1360
1361 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001362 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1363 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001364 err_code |= ERR_ALERT | ERR_FATAL;
1365 goto out;
1366 }
1367
1368 err = invalid_char(args[1]);
1369 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001370 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1371 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001372 err_code |= ERR_ALERT | ERR_FATAL;
1373 goto out;
1374 }
1375
Vincent Bernat02779b62016-04-03 13:48:43 +02001376 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001377 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001378 err_code |= ERR_ALERT | ERR_ABORT;
1379 goto out;
1380 }
1381
1382 /* the mailers are linked backwards first */
1383 curmailers->count++;
1384 newmailer->next = curmailers->mailer_list;
1385 curmailers->mailer_list = newmailer;
1386 newmailer->mailers = curmailers;
1387 newmailer->conf.file = strdup(file);
1388 newmailer->conf.line = linenum;
1389
1390 newmailer->id = strdup(args[1]);
1391
Willy Tarreau5fc93282020-09-16 18:25:03 +02001392 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001393 &errmsg, NULL, NULL,
1394 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_XPRT | PA_O_CONNECT);
Simon Horman0d16a402015-01-30 11:22:58 +09001395 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001396 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001397 err_code |= ERR_ALERT | ERR_FATAL;
1398 goto out;
1399 }
1400
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001401 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001402 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1403 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001404 err_code |= ERR_ALERT | ERR_FATAL;
1405 goto out;
1406 }
1407
Simon Horman0d16a402015-01-30 11:22:58 +09001408 newmailer->addr = *sk;
1409 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001410 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001411 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001412 }
1413 else if (strcmp(args[0], "timeout") == 0) {
1414 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001415 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1416 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001417 err_code |= ERR_ALERT | ERR_FATAL;
1418 goto out;
1419 }
1420 else if (strcmp(args[1], "mail") == 0) {
1421 const char *res;
1422 unsigned int timeout_mail;
1423 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001424 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1425 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001426 err_code |= ERR_ALERT | ERR_FATAL;
1427 goto out;
1428 }
1429 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001430 if (res == PARSE_TIME_OVER) {
1431 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1432 file, linenum, args[2], args[0], args[1]);
1433 err_code |= ERR_ALERT | ERR_FATAL;
1434 goto out;
1435 }
1436 else if (res == PARSE_TIME_UNDER) {
1437 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1438 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001439 err_code |= ERR_ALERT | ERR_FATAL;
1440 goto out;
1441 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001442 else if (res) {
1443 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1444 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001445 err_code |= ERR_ALERT | ERR_FATAL;
1446 goto out;
1447 }
1448 curmailers->timeout.mail = timeout_mail;
1449 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001450 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001451 file, linenum, args[0], args[1]);
1452 err_code |= ERR_ALERT | ERR_FATAL;
1453 goto out;
1454 }
1455 }
Simon Horman0d16a402015-01-30 11:22:58 +09001456 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001457 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001458 err_code |= ERR_ALERT | ERR_FATAL;
1459 goto out;
1460 }
1461
1462out:
1463 free(errmsg);
1464 return err_code;
1465}
1466
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001467void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001468{
1469 free(p->email_alert.mailers.name);
1470 p->email_alert.mailers.name = NULL;
1471 free(p->email_alert.from);
1472 p->email_alert.from = NULL;
1473 free(p->email_alert.to);
1474 p->email_alert.to = NULL;
1475 free(p->email_alert.myhostname);
1476 p->email_alert.myhostname = NULL;
1477}
1478
Willy Tarreaubaaee002006-06-26 02:48:02 +02001479
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001480int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001481cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1482{
Willy Tarreaue5733232019-05-22 19:24:06 +02001483#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001484 const char *err;
1485 const char *item = args[0];
1486
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001487 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001488 return 0;
1489 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001490 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001491 size_t idx = 1;
1492 const char *current;
1493 while (*(current = args[idx++])) {
1494 err = invalid_char(current);
1495 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001496 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1497 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001498 return ERR_ALERT | ERR_FATAL;
1499 }
1500
1501 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001502 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1503 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001504 return ERR_ALERT | ERR_FATAL;
1505 }
1506 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001507 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1508 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001509 return ERR_ALERT | ERR_FATAL;
1510 }
1511 }
1512 }
1513
1514 return 0;
1515#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001516 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1517 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001518 return ERR_ALERT | ERR_FATAL;
1519#endif
1520}
1521
1522int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001523cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1524{
1525
1526 int err_code = 0;
1527 const char *err;
1528
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001529 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001530 struct userlist *newul;
1531
1532 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001533 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1534 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001535 err_code |= ERR_ALERT | ERR_FATAL;
1536 goto out;
1537 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001538 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1539 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001540
1541 err = invalid_char(args[1]);
1542 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001543 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1544 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001545 err_code |= ERR_ALERT | ERR_FATAL;
1546 goto out;
1547 }
1548
1549 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001550 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001551 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1552 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001553 err_code |= ERR_WARN;
1554 goto out;
1555 }
1556
Vincent Bernat02779b62016-04-03 13:48:43 +02001557 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001558 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001559 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001560 err_code |= ERR_ALERT | ERR_ABORT;
1561 goto out;
1562 }
1563
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001564 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001565 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001566 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001567 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001568 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001569 goto out;
1570 }
1571
1572 newul->next = userlist;
1573 userlist = newul;
1574
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001575 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001576 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001577 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001578 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001579
1580 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001581 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1582 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001583 err_code |= ERR_ALERT | ERR_FATAL;
1584 goto out;
1585 }
1586
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
William Lallemand4ac9f542015-05-28 18:03:51 +02001595 if (!userlist)
1596 goto out;
1597
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001598 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001599 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001600 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1601 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001602 err_code |= ERR_ALERT;
1603 goto out;
1604 }
1605
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001606 ag = calloc(1, sizeof(*ag));
1607 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001608 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001609 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001610 goto out;
1611 }
1612
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001613 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001614 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001615 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001616 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001617 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001618 goto out;
1619 }
1620
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001621 cur_arg = 2;
1622
1623 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001624 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001625 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001626 cur_arg += 2;
1627 continue;
1628 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001629 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1630 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001631 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001632 free(ag->groupusers);
1633 free(ag->name);
1634 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001635 goto out;
1636 }
1637 }
1638
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001639 ag->next = userlist->groups;
1640 userlist->groups = ag;
1641
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001642 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001643 struct auth_users *newuser;
1644 int cur_arg;
1645
1646 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001647 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1648 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001649 err_code |= ERR_ALERT | ERR_FATAL;
1650 goto out;
1651 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001652 if (!userlist)
1653 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001654
1655 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001656 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001657 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1658 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001659 err_code |= ERR_ALERT;
1660 goto out;
1661 }
1662
Vincent Bernat02779b62016-04-03 13:48:43 +02001663 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001664 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001665 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001666 err_code |= ERR_ALERT | ERR_ABORT;
1667 goto out;
1668 }
1669
1670 newuser->user = strdup(args[1]);
1671
1672 newuser->next = userlist->users;
1673 userlist->users = newuser;
1674
1675 cur_arg = 2;
1676
1677 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001678 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001679#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001680 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001681 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1682 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001683 err_code |= ERR_ALERT | ERR_FATAL;
1684 goto out;
1685 }
1686#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001687 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1688 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001689 err_code |= ERR_ALERT;
1690#endif
1691 newuser->pass = strdup(args[cur_arg + 1]);
1692 cur_arg += 2;
1693 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001694 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001695 newuser->pass = strdup(args[cur_arg + 1]);
1696 newuser->flags |= AU_O_INSECURE;
1697 cur_arg += 2;
1698 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001699 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001700 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001701 cur_arg += 2;
1702 continue;
1703 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001704 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1705 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001706 err_code |= ERR_ALERT | ERR_FATAL;
1707 goto out;
1708 }
1709 }
1710 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001711 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 +01001712 err_code |= ERR_ALERT | ERR_FATAL;
1713 }
1714
1715out:
1716 return err_code;
1717}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001718
Christopher Faulet79bdef32016-11-04 22:36:15 +01001719int
1720cfg_parse_scope(const char *file, int linenum, char *line)
1721{
1722 char *beg, *end, *scope = NULL;
1723 int err_code = 0;
1724 const char *err;
1725
1726 beg = line + 1;
1727 end = strchr(beg, ']');
1728
1729 /* Detect end of scope declaration */
1730 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001731 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1732 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001733 err_code |= ERR_ALERT | ERR_FATAL;
1734 goto out;
1735 }
1736
1737 /* Get scope name and check its validity */
1738 scope = my_strndup(beg, end-beg);
1739 err = invalid_char(scope);
1740 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001741 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1742 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001743 err_code |= ERR_ALERT | ERR_ABORT;
1744 goto out;
1745 }
1746
1747 /* Be sure to have a scope declaration alone on its line */
1748 line = end+1;
1749 while (isspace((unsigned char)*line))
1750 line++;
1751 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001752 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1753 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001754 err_code |= ERR_ALERT | ERR_ABORT;
1755 goto out;
1756 }
1757
1758 /* We have a valid scope declaration, save it */
1759 free(cfg_scope);
1760 cfg_scope = scope;
1761 scope = NULL;
1762
1763 out:
1764 free(scope);
1765 return err_code;
1766}
1767
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001768int
1769cfg_parse_track_sc_num(unsigned int *track_sc_num,
1770 const char *arg, const char *end, char **errmsg)
1771{
1772 const char *p;
1773 unsigned int num;
1774
1775 p = arg;
1776 num = read_uint64(&arg, end);
1777
1778 if (arg != end) {
1779 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1780 return -1;
1781 }
1782
1783 if (num >= MAX_SESS_STKCTR) {
1784 memprintf(errmsg, "%u track-sc number exceeding "
1785 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1786 return -1;
1787 }
1788
1789 *track_sc_num = num;
1790 return 0;
1791}
1792
Willy Tarreaubaaee002006-06-26 02:48:02 +02001793/*
1794 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001795 * Returns the error code, 0 if OK, or any combination of :
1796 * - ERR_ABORT: must abort ASAP
1797 * - ERR_FATAL: we can continue parsing but not start the service
1798 * - ERR_WARN: a warning has been emitted
1799 * - ERR_ALERT: an alert has been emitted
1800 * Only the two first ones can stop processing, the two others are just
1801 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001802 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001803int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001804{
William Lallemand64e84512015-05-12 14:25:37 +02001805 char *thisline;
1806 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001807 FILE *f;
1808 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001809 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001810 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001811 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001812 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001813 char *outline = NULL;
1814 size_t outlen = 0;
1815 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001816 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001817 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001818 int nested_cond_lvl = 0;
1819 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
William Lallemand64e84512015-05-12 14:25:37 +02001820
1821 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001822 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001823 return -1;
1824 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001825
David Carlier97880bb2016-04-08 10:35:26 +01001826 if ((f=fopen(file,"r")) == NULL) {
1827 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001828 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001829 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001830
William Lallemandb2f07452015-05-12 14:27:13 +02001831next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001832 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001833 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001834 char *end;
1835 char *args[MAX_LINE_ARGS + 1];
1836 char *line = thisline;
1837
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001838 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001839 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1840 file, linenum, (missing_lf + 1));
1841 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001842 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001843 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001844 }
1845
Willy Tarreaubaaee002006-06-26 02:48:02 +02001846 linenum++;
1847
Willy Tarreau32234e72020-06-16 17:14:33 +02001848 if (fatal >= 50) {
1849 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1850 break;
1851 }
1852
Willy Tarreaubaaee002006-06-26 02:48:02 +02001853 end = line + strlen(line);
1854
William Lallemand64e84512015-05-12 14:25:37 +02001855 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001856 /* Check if we reached the limit and the last char is not \n.
1857 * Watch out for the last line without the terminating '\n'!
1858 */
William Lallemand64e84512015-05-12 14:25:37 +02001859 char *newline;
1860 int newlinesize = linesize * 2;
1861
1862 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1863 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001864 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1865 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001866 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001867 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001868 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001869 continue;
1870 }
1871
1872 readbytes = linesize - 1;
1873 linesize = newlinesize;
1874 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001875 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001876 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001877 }
1878
William Lallemand64e84512015-05-12 14:25:37 +02001879 readbytes = 0;
1880
Willy Tarreau08488f62020-06-26 17:24:54 +02001881 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001882 /* kill trailing LF */
1883 *(end - 1) = 0;
1884 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001885 else {
1886 /* mark this line as truncated */
1887 missing_lf = end - line;
1888 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001889
Willy Tarreaubaaee002006-06-26 02:48:02 +02001890 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001891 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001892 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001893
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001894 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001895 err_code |= cfg_parse_scope(file, linenum, line);
1896 goto next_line;
1897 }
1898
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001899 while (1) {
1900 uint32_t err;
1901 char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001902
Willy Tarreau61dd44b2020-06-25 07:35:42 +02001903 arg = MAX_LINE_ARGS + 1;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001904 outlen = outlinesize;
1905 err = parse_line(line, outline, &outlen, args, &arg,
1906 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001907 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1908 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001909
1910 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001911 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1912
1913 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1914 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001915 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001916 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001917 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001918 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001919
1920 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001921 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1922
1923 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1924 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001925 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001926 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001927 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001928 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001929
1930 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001931 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1932
1933 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1934 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001935 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001936 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001937 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001938 }
William Lallemandb2f07452015-05-12 14:27:13 +02001939
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001940 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001941 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1942
1943 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1944 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001945 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001946 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001947 goto next_line;
1948 }
William Lallemandb2f07452015-05-12 14:27:13 +02001949
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001950 if (err & PARSE_ERR_WRONG_EXPAND) {
1951 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1952
1953 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1954 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1955 err_code |= ERR_ALERT | ERR_FATAL;
1956 fatal++;
1957 goto next_line;
1958 }
1959
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001960 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1961 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001962 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001963 if (outline == NULL) {
1964 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1965 file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001966 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001967 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001968 goto next_line;
William Lallemandb2f07452015-05-12 14:27:13 +02001969 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001970 /* try again */
1971 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001972 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001973
1974 if (err & PARSE_ERR_TOOMANY) {
1975 /* only check this *after* being sure the output is allocated */
1976 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1977 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1978 err_code |= ERR_ALERT | ERR_FATAL;
1979 fatal++;
1980 goto next_line;
1981 }
1982
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001983 /* everything's OK */
1984 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001985 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001986
1987 /* empty line */
1988 if (!**args)
1989 continue;
1990
Willy Tarreau4b103022021-02-12 17:59:10 +01001991 /* check for config macros */
1992 if (*args[0] == '.') {
1993 if (strcmp(args[0], ".if") == 0) {
1994 nested_cond_lvl++;
1995 if (nested_cond_lvl >= MAXNESTEDCONDS) {
1996 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
1997 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1998 goto err;
1999 }
2000
2001 if (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
2002 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
2003 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
2004 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
2005 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP) {
2006 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
2007 } else if (!*args[1] || *args[1] == '0') {
2008 /* empty = false */
2009 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
2010 } else if (atoi(args[1]) > 0) {
2011 /* true */
2012 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
2013 } else {
2014 ha_alert("parsing [%s:%d]: unparsable conditional expression '%s'.\n", file, linenum, args[1]);
2015 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2016 goto err;
2017 }
2018 goto next_line;
2019 }
2020 else if (strcmp(args[0], ".elif") == 0) {
2021 if (!nested_cond_lvl) {
2022 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
2023 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2024 goto err;
2025 }
2026
2027 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2028 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2029 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
2030 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2031 goto err;
2032 }
2033
2034 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2035 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2036 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2037 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
2038 } else if (!*args[1] || *args[1] == '0') {
2039 /* empty = false */
2040 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
2041 } else if (atoi(args[1]) > 0) {
2042 /* true */
2043 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
2044 } else {
2045 ha_alert("parsing [%s:%d]: unparsable conditional expression '%s'.\n", file, linenum, args[1]);
2046 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2047 goto err;
2048 }
2049 goto next_line;
2050 }
2051 else if (strcmp(args[0], ".else") == 0) {
2052 if (!nested_cond_lvl) {
2053 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
2054 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2055 goto err;
2056 }
2057
2058 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2059 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2060 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
2061 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2062 goto err;
2063 }
2064
2065 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2066 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2067 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
2068 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2069 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
2070 } else {
2071 /* otherwise we take the "else" */
2072 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
2073 }
2074 goto next_line;
2075 }
2076 else if (strcmp(args[0], ".endif") == 0) {
2077 if (!nested_cond_lvl) {
2078 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
2079 err_code |= ERR_ALERT | ERR_FATAL;
2080 fatal++;
2081 break;
2082 }
2083 nested_cond_lvl--;
2084 goto next_line;
2085 }
2086 }
2087
2088 if (nested_cond_lvl &&
2089 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
2090 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2091 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
2092 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
2093 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
2094 /* The current block is masked out by the conditions */
2095 goto next_line;
2096 }
2097
2098 /* .warning/.error/.notice */
2099 if (*args[0] == '.') {
2100 if (strcmp(args[0], ".alert") == 0) {
2101 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2102 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2103 goto err;
2104 }
2105 else if (strcmp(args[0], ".warning") == 0) {
2106 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2107 err_code |= ERR_WARN;
2108 goto next_line;
2109 }
2110 else if (strcmp(args[0], ".notice") == 0) {
2111 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2112 goto next_line;
2113 }
2114 else {
2115 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
2116 err_code |= ERR_ALERT | ERR_FATAL;
2117 fatal++;
2118 break;
2119 }
2120 }
2121
Willy Tarreau3842f002009-06-14 11:39:52 +02002122 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002123 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02002124 char *tmp;
2125
Willy Tarreau3842f002009-06-14 11:39:52 +02002126 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002127 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002128 for (arg=0; *args[arg+1]; arg++)
2129 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002130 *tmp = '\0'; // fix the next arg to \0
2131 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002132 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002133 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02002134 kwm = KWM_DEF;
2135 for (arg=0; *args[arg+1]; arg++)
2136 args[arg] = args[arg+1]; // shift args after inversion
2137 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002138
William Dauchyec730982019-10-27 20:08:10 +01002139 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2140 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002141 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
2142 strcmp(args[0], "insecure-fork-wanted") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002143 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002144 "supported only for options, log, busy-polling, "
Willy Tarreaud96f1122019-12-03 07:07:36 +01002145 "set-dumpable, strict-limits, and insecure-fork-wanted.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002146 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002147 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002148 }
2149
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002150 /* detect section start */
2151 list_for_each_entry(ics, &sections, list) {
2152 if (strcmp(args[0], ics->section_name) == 0) {
2153 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002154 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002155 cs = ics;
2156 break;
2157 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002158 }
2159
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002160 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002161 int status;
2162
2163 status = pcs->post_section_parser();
2164 err_code |= status;
2165 if (status & ERR_FATAL)
2166 fatal++;
2167
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002168 if (err_code & ERR_ABORT)
2169 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002170 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002171 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002172
William Lallemandd2ff56d2017-10-16 11:06:50 +02002173 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002174 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002175 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002176 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002177 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002178 int status;
2179
2180 status = cs->section_parser(file, linenum, args, kwm);
2181 err_code |= status;
2182 if (status & ERR_FATAL)
2183 fatal++;
2184
William Lallemandd2ff56d2017-10-16 11:06:50 +02002185 if (err_code & ERR_ABORT)
2186 goto err;
2187 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002188 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002189
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002190 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002191 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2192 file, linenum, (missing_lf + 1));
2193 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002194 }
2195
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002196 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002197 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002198
Willy Tarreau4b103022021-02-12 17:59:10 +01002199 if (nested_cond_lvl) {
2200 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
2201 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2202 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002203err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002204 free(cfg_scope);
2205 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002206 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002207 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002208 free(outline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002209 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002210 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002211}
2212
Willy Tarreau64ab6072014-09-16 12:17:36 +02002213/* This function propagates processes from frontend <from> to backend <to> so
2214 * that it is always guaranteed that a backend pointed to by a frontend is
2215 * bound to all of its processes. After that, if the target is a "listen"
2216 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002217 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002218 * checked first to ensure that <to> is already bound to all processes of
2219 * <from>, there is no risk of looping and we ensure to follow the shortest
2220 * path to the destination.
2221 *
2222 * It is possible to set <to> to NULL for the first call so that the function
2223 * takes care of visiting the initial frontend in <from>.
2224 *
2225 * It is important to note that the function relies on the fact that all names
2226 * have already been resolved.
2227 */
2228void propagate_processes(struct proxy *from, struct proxy *to)
2229{
2230 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002231
2232 if (to) {
2233 /* check whether we need to go down */
2234 if (from->bind_proc &&
2235 (from->bind_proc & to->bind_proc) == from->bind_proc)
2236 return;
2237
2238 if (!from->bind_proc && !to->bind_proc)
2239 return;
2240
2241 to->bind_proc = from->bind_proc ?
2242 (to->bind_proc | from->bind_proc) : 0;
2243
2244 /* now propagate down */
2245 from = to;
2246 }
2247
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002248 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002249 return;
2250
Willy Tarreauc3914d42020-09-24 08:39:22 +02002251 if (from->disabled)
Willy Tarreauf6b70012014-12-18 14:00:43 +01002252 return;
2253
Willy Tarreau64ab6072014-09-16 12:17:36 +02002254 /* default_backend */
2255 if (from->defbe.be)
2256 propagate_processes(from, from->defbe.be);
2257
2258 /* use_backend */
2259 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002260 if (rule->dynamic)
2261 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002262 to = rule->be.backend;
2263 propagate_processes(from, to);
2264 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002265}
2266
Willy Tarreaubb925012009-07-23 13:36:36 +02002267/*
2268 * Returns the error code, 0 if OK, or any combination of :
2269 * - ERR_ABORT: must abort ASAP
2270 * - ERR_FATAL: we can continue parsing but not start the service
2271 * - ERR_WARN: a warning has been emitted
2272 * - ERR_ALERT: an alert has been emitted
2273 * Only the two first ones can stop processing, the two others are just
2274 * indicators.
2275 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002276int check_config_validity()
2277{
2278 int cfgerr = 0;
2279 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002280 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002281 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002282 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002283 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002284 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002285 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002286 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002287 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002288
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002289 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002290 /*
2291 * Now, check for the integrity of all that we have collected.
2292 */
2293
2294 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002295 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002296
Willy Tarreau193b8c62012-11-22 00:17:38 +01002297 if (!global.tune.max_http_hdr)
2298 global.tune.max_http_hdr = MAX_HTTP_HDR;
2299
2300 if (!global.tune.cookie_len)
2301 global.tune.cookie_len = CAPTURE_LEN;
2302
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002303 if (!global.tune.requri_len)
2304 global.tune.requri_len = REQURI_LEN;
2305
Willy Tarreau149ab772019-01-26 14:27:06 +01002306 if (!global.nbthread) {
2307 /* nbthread not set, thus automatic. In this case, and only if
2308 * running on a single process, we enable the same number of
2309 * threads as the number of CPUs the process is bound to. This
2310 * allows to easily control the number of threads using taskset.
2311 */
2312 global.nbthread = 1;
2313#if defined(USE_THREAD)
2314 if (global.nbproc == 1)
2315 global.nbthread = thread_cpus_enabled_at_boot;
2316 all_threads_mask = nbits(global.nbthread);
2317#endif
2318 }
2319
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002320 if (global.nbproc > 1 && global.nbthread > 1) {
2321 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2322 err_code |= ERR_ALERT | ERR_FATAL;
2323 goto out;
2324 }
2325
Willy Tarreaubafbe012017-11-24 17:34:44 +01002326 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002327
Willy Tarreaubafbe012017-11-24 17:34:44 +01002328 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002329
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002330 /* Post initialisation of the users and groups lists. */
2331 err_code = userlist_postinit();
2332 if (err_code != ERR_NONE)
2333 goto out;
2334
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002335 /* first, we will invert the proxy list order */
2336 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002337 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002338 struct proxy *next;
2339
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002340 next = proxies_list->next;
2341 proxies_list->next = curproxy;
2342 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002343 if (!next)
2344 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002345 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002346 }
2347
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002348 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002349 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002350 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002351 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002352 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002353 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002354 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002355 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002356
Willy Tarreau050536d2012-10-04 08:47:34 +02002357 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002358 /* proxy ID not set, use automatic numbering with first
2359 * spare entry starting with next_pxid.
2360 */
2361 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2362 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2363 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002364 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002365 next_pxid++;
2366
Willy Tarreau55ea7572007-06-17 19:56:27 +02002367
Willy Tarreauc3914d42020-09-24 08:39:22 +02002368 if (curproxy->disabled) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002369 /* ensure we don't keep listeners uselessly bound. We
2370 * can't disable their listeners yet (fdtab not
2371 * allocated yet) but let's skip them.
2372 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002373 if (curproxy->table) {
2374 free((void *)curproxy->table->peers.name);
Willy Tarreau02b092f2020-10-07 18:36:54 +02002375 curproxy->table->peers.name = NULL;
Dragan Dosen7d61a332019-05-07 14:16:18 +02002376 curproxy->table->peers.p = NULL;
2377 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002378 continue;
2379 }
2380
Willy Tarreau102df612014-05-07 23:56:38 +02002381 /* Check multi-process mode compatibility for the current proxy */
2382
2383 if (curproxy->bind_proc) {
2384 /* an explicit bind-process was specified, let's check how many
2385 * processes remain.
2386 */
David Carliere6c39412015-07-02 07:00:17 +00002387 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002388
Willy Tarreaua38a7172019-02-02 17:11:28 +01002389 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002390 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002391 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 +02002392 curproxy->bind_proc = 1;
2393 }
2394 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002395 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 +02002396 curproxy->bind_proc = 0;
2397 }
2398 }
2399
Willy Tarreau3d209582014-05-09 17:06:11 +02002400 /* check and reduce the bind-proc of each listener */
2401 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2402 unsigned long mask;
2403
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002404 /* HTTP frontends with "h2" as ALPN/NPN will work in
2405 * HTTP/2 and absolutely require buffers 16kB or larger.
2406 */
2407#ifdef USE_OPENSSL
2408 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2409#ifdef OPENSSL_NPN_NEGOTIATED
2410 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002411 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002412 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",
2413 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002414 cfgerr++;
2415 }
2416#endif
2417#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2418 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002419 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002420 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",
2421 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002422 cfgerr++;
2423 }
2424#endif
2425 } /* HTTP && bufsize < 16384 */
2426#endif
2427
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002428 /* detect and address thread affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002429 mask = thread_mask(bind_conf->settings.bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002430 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002431 unsigned long new_mask = 0;
2432
2433 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002434 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002435 mask >>= global.nbthread;
2436 }
2437
Willy Tarreaue26993c2020-09-03 07:18:55 +02002438 bind_conf->settings.bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002439 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",
2440 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2441 }
2442
2443 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002444 mask = proc_mask(bind_conf->settings.bind_proc) & proc_mask(curproxy->bind_proc);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002445 if (!(mask & all_proc_mask)) {
2446 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02002447 nbproc = my_popcountl(bind_conf->settings.bind_proc);
2448 bind_conf->settings.bind_proc = proc_mask(bind_conf->settings.bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002449
Willy Tarreaue26993c2020-09-03 07:18:55 +02002450 if (!bind_conf->settings.bind_proc && nbproc == 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002451 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",
2452 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002453 bind_conf->settings.bind_proc = mask & ~(mask - 1);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002454 }
Willy Tarreaue26993c2020-09-03 07:18:55 +02002455 else if (!bind_conf->settings.bind_proc && nbproc > 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002456 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",
2457 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002458 bind_conf->settings.bind_proc = 0;
Willy Tarreaua36b3242019-02-02 13:14:34 +01002459 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002460 }
2461 }
2462
Willy Tarreauff01a212009-03-15 13:46:16 +01002463 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01002464 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002465 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002466 break;
2467
2468 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002469 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002470 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002471
2472 case PR_MODE_CLI:
2473 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2474 break;
Emeric Brun54932b42020-07-07 09:43:24 +02002475 case PR_MODE_SYSLOG:
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002476 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02002477 case PR_MODES:
2478 /* should not happen, bug gcc warn missing switch statement */
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002479 ha_alert("config : %s '%s' cannot use peers or syslog mode for this proxy. NOTE: PLEASE REPORT THIS TO DEVELOPERS AS YOU'RE NOT SUPPOSED TO BE ABLE TO CREATE A CONFIGURATION TRIGGERING THIS!\n",
Emeric Brun54932b42020-07-07 09:43:24 +02002480 proxy_type_str(curproxy), curproxy->id);
2481 cfgerr++;
2482 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002483 }
2484
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002485 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002486 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2487 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002488 err_code |= ERR_WARN;
2489 }
2490
Willy Tarreau77e0dae2020-10-14 15:44:27 +02002491 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002492 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002493 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002494 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2495 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002496 cfgerr++;
2497 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002498#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002499 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002500 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2501 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002502 cfgerr++;
2503 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002504#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002505 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002506 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2507 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002508 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002509 }
2510 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002511 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002512 /* If no LB algo is set in a backend, and we're not in
2513 * transparent mode, dispatch mode nor proxy mode, we
2514 * want to use balance roundrobin by default.
2515 */
2516 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2517 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002518 }
2519 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002520
Willy Tarreau1620ec32011-08-06 17:05:02 +02002521 if (curproxy->options & PR_O_DISPATCH)
2522 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2523 else if (curproxy->options & PR_O_HTTP_PROXY)
2524 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2525 else if (curproxy->options & PR_O_TRANSP)
2526 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002527
Christopher Faulete5870d82020-04-15 11:32:03 +02002528 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2529 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2530 proxy_type_str(curproxy), curproxy->id);
2531 err_code |= ERR_WARN;
2532 }
2533
2534 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002535 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002536 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002537 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2538 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002539 err_code |= ERR_WARN;
2540 curproxy->options &= ~PR_O_DISABLE404;
2541 }
2542 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002543 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2544 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002545 err_code |= ERR_WARN;
2546 curproxy->options &= ~PR_O2_CHK_SNDST;
2547 }
Willy Tarreauef781042010-01-27 11:53:01 +01002548 }
2549
Simon Horman98637e52014-06-20 12:30:16 +09002550 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2551 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002552 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2553 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002554 cfgerr++;
2555 }
2556 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002557 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2558 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002559 cfgerr++;
2560 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002561 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2562 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2563 curproxy->id, "option external-check");
2564 err_code |= ERR_WARN;
2565 }
Simon Horman98637e52014-06-20 12:30:16 +09002566 }
2567
Simon Horman64e34162015-02-06 11:11:57 +09002568 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002569 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002570 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2571 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2572 "'email-alert myhostname', or 'email-alert to' "
2573 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2574 "to be present).\n",
2575 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002576 err_code |= ERR_WARN;
2577 free_email_alert(curproxy);
2578 }
2579 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002580 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002581 }
2582
Simon Horman98637e52014-06-20 12:30:16 +09002583 if (curproxy->check_command) {
2584 int clear = 0;
2585 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002586 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2587 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002588 err_code |= ERR_WARN;
2589 clear = 1;
2590 }
2591 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002592 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2593 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002594 cfgerr++;
2595 }
2596 if (clear) {
2597 free(curproxy->check_command);
2598 curproxy->check_command = NULL;
2599 }
2600 }
2601
2602 if (curproxy->check_path) {
2603 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002604 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2605 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002606 err_code |= ERR_WARN;
2607 free(curproxy->check_path);
2608 curproxy->check_path = NULL;
2609 }
2610 }
2611
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002612 /* if a default backend was specified, let's find it */
2613 if (curproxy->defbe.name) {
2614 struct proxy *target;
2615
Willy Tarreauafb39922015-05-26 12:04:09 +02002616 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002617 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002618 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2619 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002620 cfgerr++;
2621 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002622 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2623 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002624 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002625 } else if (target->mode != curproxy->mode &&
2626 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2627
Christopher Faulet767a84b2017-11-24 16:50:31 +01002628 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2629 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2630 curproxy->conf.file, curproxy->conf.line,
2631 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2632 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002633 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002634 } else {
2635 free(curproxy->defbe.name);
2636 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002637 /* Emit a warning if this proxy also has some servers */
2638 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002639 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2640 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002641 err_code |= ERR_WARN;
2642 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002643 }
2644 }
2645
Willy Tarreau55ea7572007-06-17 19:56:27 +02002646 /* find the target proxy for 'use_backend' rules */
2647 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002648 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002649 struct logformat_node *node;
2650 char *pxname;
2651
2652 /* Try to parse the string as a log format expression. If the result
2653 * of the parsing is only one entry containing a simple string, then
2654 * it's a standard string corresponding to a static rule, thus the
2655 * parsing is cancelled and be.name is restored to be resolved.
2656 */
2657 pxname = rule->be.name;
2658 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002659 curproxy->conf.args.ctx = ARGC_UBK;
2660 curproxy->conf.args.file = rule->file;
2661 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002662 err = NULL;
2663 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002664 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2665 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002666 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002667 cfgerr++;
2668 continue;
2669 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002670 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2671
2672 if (!LIST_ISEMPTY(&rule->be.expr)) {
2673 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2674 rule->dynamic = 1;
2675 free(pxname);
2676 continue;
2677 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002678 /* Only one element in the list, a simple string: free the expression and
2679 * fall back to static rule
2680 */
2681 LIST_DEL(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002682 free(node->arg);
2683 free(node);
2684 }
2685
2686 rule->dynamic = 0;
2687 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002688
Willy Tarreauafb39922015-05-26 12:04:09 +02002689 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002690 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002691 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2692 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002693 cfgerr++;
2694 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002695 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2696 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002697 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002698 } else if (target->mode != curproxy->mode &&
2699 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2700
Christopher Faulet767a84b2017-11-24 16:50:31 +01002701 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2702 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2703 curproxy->conf.file, curproxy->conf.line,
2704 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2705 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002706 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002707 } else {
2708 free((void *)rule->be.name);
2709 rule->be.backend = target;
2710 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002711 }
2712
Willy Tarreau64ab6072014-09-16 12:17:36 +02002713 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002714 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002715 struct server *target;
2716 struct logformat_node *node;
2717 char *server_name;
2718
2719 /* We try to parse the string as a log format expression. If the result of the parsing
2720 * is only one entry containing a single string, then it's a standard string corresponding
2721 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2722 */
2723 server_name = srule->srv.name;
2724 LIST_INIT(&srule->expr);
2725 curproxy->conf.args.ctx = ARGC_USRV;
2726 err = NULL;
2727 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2728 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2729 srule->file, srule->line, server_name, err);
2730 free(err);
2731 cfgerr++;
2732 continue;
2733 }
2734 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2735
2736 if (!LIST_ISEMPTY(&srule->expr)) {
2737 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2738 srule->dynamic = 1;
2739 free(server_name);
2740 continue;
2741 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002742 /* Only one element in the list, a simple string: free the expression and
2743 * fall back to static rule
2744 */
2745 LIST_DEL(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002746 free(node->arg);
2747 free(node);
2748 }
2749
2750 srule->dynamic = 0;
2751 srule->srv.name = server_name;
2752 target = findserver(curproxy, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002753
2754 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002755 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2756 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002757 cfgerr++;
2758 continue;
2759 }
2760 free((void *)srule->srv.name);
2761 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002762 }
2763
Emeric Brunb982a3d2010-01-04 15:45:53 +01002764 /* find the target table for 'stick' rules */
2765 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002766 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002767
Emeric Brun1d33b292010-01-04 15:47:17 +01002768 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2769 if (mrule->flags & STK_IS_STORE)
2770 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2771
Emeric Brunb982a3d2010-01-04 15:45:53 +01002772 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002773 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002774 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002775 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002776
2777 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002778 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002779 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002780 cfgerr++;
2781 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002782 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002783 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2784 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002785 cfgerr++;
2786 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002787 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002788 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2789 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002790 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002791 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002792 else {
2793 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002794 mrule->table.t = target;
2795 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07002796 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002797 if (!in_proxies_list(target->proxies_list, curproxy)) {
2798 curproxy->next_stkt_ref = target->proxies_list;
2799 target->proxies_list = curproxy;
2800 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002801 }
2802 }
2803
2804 /* find the target table for 'store response' rules */
2805 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002806 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002807
Emeric Brun1d33b292010-01-04 15:47:17 +01002808 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2809
Emeric Brunb982a3d2010-01-04 15:45:53 +01002810 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002811 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002812 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002813 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002814
2815 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002816 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002817 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002818 cfgerr++;
2819 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002820 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002821 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2822 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002823 cfgerr++;
2824 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002825 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002826 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2827 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002828 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002829 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002830 else {
2831 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002832 mrule->table.t = target;
2833 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07002834 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002835 if (!in_proxies_list(target->proxies_list, curproxy)) {
2836 curproxy->next_stkt_ref = target->proxies_list;
2837 target->proxies_list = curproxy;
2838 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002839 }
2840 }
2841
Christopher Faulete4e830d2017-09-18 14:51:41 +02002842 /* check validity for 'tcp-request' layer 4 rules */
2843 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2844 err = NULL;
2845 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002846 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002847 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002848 cfgerr++;
2849 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002850 }
2851
Christopher Faulete4e830d2017-09-18 14:51:41 +02002852 /* check validity for 'tcp-request' layer 5 rules */
2853 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2854 err = NULL;
2855 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002856 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002857 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002858 cfgerr++;
2859 }
2860 }
2861
Christopher Faulete4e830d2017-09-18 14:51:41 +02002862 /* check validity for 'tcp-request' layer 6 rules */
2863 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2864 err = NULL;
2865 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002866 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002867 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002868 cfgerr++;
2869 }
2870 }
2871
Christopher Faulete4e830d2017-09-18 14:51:41 +02002872 /* check validity for 'http-request' layer 7 rules */
2873 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2874 err = NULL;
2875 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002876 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002877 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002878 cfgerr++;
2879 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002880 }
2881
Christopher Faulete4e830d2017-09-18 14:51:41 +02002882 /* check validity for 'http-response' layer 7 rules */
2883 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2884 err = NULL;
2885 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002886 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002887 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002888 cfgerr++;
2889 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002890 }
2891
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002892 /* check validity for 'http-after-response' layer 7 rules */
2893 list_for_each_entry(arule, &curproxy->http_after_res_rules, list) {
2894 err = NULL;
2895 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
2896 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
2897 free(err);
2898 cfgerr++;
2899 }
2900 }
2901
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002902 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002903 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002904
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002905 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002906 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
2907 free((void *)curproxy->table->peers.name);
2908 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002909 break;
2910 }
2911 }
2912
2913 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002914 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002915 curproxy->id, curproxy->table->peers.name);
2916 free((void *)curproxy->table->peers.name);
2917 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002918 cfgerr++;
2919 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02002920 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002921 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002922 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002923 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002924 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002925 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2926 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002927 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002928 cfgerr++;
2929 }
2930 }
2931
Simon Horman9dc49962015-01-30 11:22:59 +09002932
2933 if (curproxy->email_alert.mailers.name) {
2934 struct mailers *curmailers = mailers;
2935
2936 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002937 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09002938 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002939 }
Simon Horman9dc49962015-01-30 11:22:59 +09002940 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002941 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2942 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002943 free_email_alert(curproxy);
2944 cfgerr++;
2945 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002946 else {
2947 err = NULL;
2948 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002949 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002950 free(err);
2951 cfgerr++;
2952 }
2953 }
Simon Horman9dc49962015-01-30 11:22:59 +09002954 }
2955
Willy Tarreau5bbc6762021-02-12 11:49:25 +01002956 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002957 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002958 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002959 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2960 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002961 cfgerr++;
2962 goto out_uri_auth_compat;
2963 }
2964
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002965 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01002966 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002967 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002968 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002969 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002970 int i = 0;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002971 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2972 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002973
2974 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002975 uri_auth_compat_req[i++] = "realm";
2976 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2977 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002978
Willy Tarreau95fa4692010-02-01 13:05:50 +01002979 uri_auth_compat_req[i++] = "unless";
2980 uri_auth_compat_req[i++] = "{";
2981 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2982 uri_auth_compat_req[i++] = "}";
2983 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002984
Willy Tarreauff011f22011-01-06 17:51:27 +01002985 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2986 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002987 cfgerr++;
2988 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002989 }
2990
Willy Tarreauff011f22011-01-06 17:51:27 +01002991 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002992
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002993 if (curproxy->uri_auth->auth_realm) {
2994 free(curproxy->uri_auth->auth_realm);
2995 curproxy->uri_auth->auth_realm = NULL;
2996 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01002997 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002998 }
2999out_uri_auth_compat:
3000
Dragan Dosen43885c72015-10-01 13:18:13 +02003001 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02003002 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02003003 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
3004 if (!curproxy->conf.logformat_sd_string) {
3005 /* set the default logformat_sd_string */
3006 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
3007 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003008 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02003009 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003010 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02003011
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003012 /* compile the log format */
3013 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02003014 if (curproxy->conf.logformat_string != default_http_log_format &&
3015 curproxy->conf.logformat_string != default_tcp_log_format &&
3016 curproxy->conf.logformat_string != clf_http_log_format)
3017 free(curproxy->conf.logformat_string);
3018 curproxy->conf.logformat_string = NULL;
3019 free(curproxy->conf.lfs_file);
3020 curproxy->conf.lfs_file = NULL;
3021 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003022
3023 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3024 free(curproxy->conf.logformat_sd_string);
3025 curproxy->conf.logformat_sd_string = NULL;
3026 free(curproxy->conf.lfsd_file);
3027 curproxy->conf.lfsd_file = NULL;
3028 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003029 }
3030
Willy Tarreau62a61232013-04-12 18:13:46 +02003031 if (curproxy->conf.logformat_string) {
3032 curproxy->conf.args.ctx = ARGC_LOG;
3033 curproxy->conf.args.file = curproxy->conf.lfs_file;
3034 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003035 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003036 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
3037 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003038 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003039 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3040 curproxy->conf.lfs_file, curproxy->conf.lfs_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
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003048 if (curproxy->conf.logformat_sd_string) {
3049 curproxy->conf.args.ctx = ARGC_LOGSD;
3050 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3051 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003052 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003053 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
3054 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003055 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003056 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3057 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003058 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003059 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003060 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003061 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3062 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003063 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003064 cfgerr++;
3065 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003066 curproxy->conf.args.file = NULL;
3067 curproxy->conf.args.line = 0;
3068 }
3069
Willy Tarreau62a61232013-04-12 18:13:46 +02003070 if (curproxy->conf.uniqueid_format_string) {
3071 curproxy->conf.args.ctx = ARGC_UIF;
3072 curproxy->conf.args.file = curproxy->conf.uif_file;
3073 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003074 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003075 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
3076 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES,
3077 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR
3078 : SMP_VAL_BE_HRQ_HDR,
3079 &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003080 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3081 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003082 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003083 cfgerr++;
3084 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003085 curproxy->conf.args.file = NULL;
3086 curproxy->conf.args.line = 0;
3087 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003088
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003089 /* only now we can check if some args remain unresolved.
3090 * This must be done after the users and groups resolution.
3091 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003092 cfgerr += smp_resolve_args(curproxy);
3093 if (!cfgerr)
3094 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003095
Willy Tarreau2738a142006-07-08 17:28:09 +02003096 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003097 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003098 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003099 (!curproxy->timeout.connect ||
3100 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003101 ha_warning("config : missing timeouts for %s '%s'.\n"
3102 " | While not properly invalid, you will certainly encounter various problems\n"
3103 " | with such a configuration. To fix this, please ensure that all following\n"
3104 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3105 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003106 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003107 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003108
Willy Tarreau1fa31262007-12-03 00:36:16 +01003109 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3110 * We must still support older configurations, so let's find out whether those
3111 * parameters have been set or must be copied from contimeouts.
3112 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01003113 if (!curproxy->timeout.tarpit)
3114 curproxy->timeout.tarpit = curproxy->timeout.connect;
3115 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
3116 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003117
Christopher Faulete5870d82020-04-15 11:32:03 +02003118 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003119 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
3120 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003121 err_code |= ERR_WARN;
3122 }
3123
Willy Tarreau193b8c62012-11-22 00:17:38 +01003124 /* ensure that cookie capture length is not too large */
3125 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003126 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3127 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003128 err_code |= ERR_WARN;
3129 curproxy->capture_len = global.tune.cookie_len - 1;
3130 }
3131
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003132 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003133 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003134 curproxy->req_cap_pool = create_pool("ptrcap",
3135 curproxy->nb_req_cap * sizeof(char *),
3136 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003137 }
3138
3139 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003140 curproxy->rsp_cap_pool = create_pool("ptrcap",
3141 curproxy->nb_rsp_cap * sizeof(char *),
3142 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003143 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003144
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003145 switch (curproxy->load_server_state_from_file) {
3146 case PR_SRV_STATE_FILE_UNSPEC:
3147 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3148 break;
3149 case PR_SRV_STATE_FILE_GLOBAL:
3150 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003151 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",
3152 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003153 err_code |= ERR_WARN;
3154 }
3155 break;
3156 }
3157
Willy Tarreaubaaee002006-06-26 02:48:02 +02003158 /* first, we will invert the servers list order */
3159 newsrv = NULL;
3160 while (curproxy->srv) {
3161 struct server *next;
3162
3163 next = curproxy->srv->next;
3164 curproxy->srv->next = newsrv;
3165 newsrv = curproxy->srv;
3166 if (!next)
3167 break;
3168 curproxy->srv = next;
3169 }
3170
Willy Tarreau17edc812014-01-03 12:14:34 +01003171 /* Check that no server name conflicts. This causes trouble in the stats.
3172 * We only emit a warning for the first conflict affecting each server,
3173 * in order to avoid combinatory explosion if all servers have the same
3174 * name. We do that only for servers which do not have an explicit ID,
3175 * because these IDs were made also for distinguishing them and we don't
3176 * want to annoy people who correctly manage them.
3177 */
3178 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3179 struct server *other_srv;
3180
3181 if (newsrv->puid)
3182 continue;
3183
3184 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3185 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003186 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 +01003187 newsrv->conf.file, newsrv->conf.line,
3188 proxy_type_str(curproxy), curproxy->id,
3189 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003190 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003191 break;
3192 }
3193 }
3194 }
3195
Willy Tarreaudd701652010-05-25 23:03:02 +02003196 /* assign automatic UIDs to servers which don't have one yet */
3197 next_id = 1;
3198 newsrv = curproxy->srv;
3199 while (newsrv != NULL) {
3200 if (!newsrv->puid) {
3201 /* server ID not set, use automatic numbering with first
3202 * spare entry starting with next_svid.
3203 */
3204 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3205 newsrv->conf.id.key = newsrv->puid = next_id;
3206 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003207 newsrv->conf.name.key = newsrv->id;
3208 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003209 }
3210 next_id++;
3211 newsrv = newsrv->next;
3212 }
3213
Willy Tarreau20697042007-11-15 23:26:18 +01003214 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003215 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003216
Willy Tarreau62c3be22012-01-20 13:12:32 +01003217 /*
3218 * If this server supports a maxconn parameter, it needs a dedicated
3219 * tasks to fill the emptied slots when a connection leaves.
3220 * Also, resolve deferred tracking dependency if needed.
3221 */
3222 newsrv = curproxy->srv;
3223 while (newsrv != NULL) {
3224 if (newsrv->minconn > newsrv->maxconn) {
3225 /* Only 'minconn' was specified, or it was higher than or equal
3226 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3227 * this will avoid further useless expensive computations.
3228 */
3229 newsrv->maxconn = newsrv->minconn;
3230 } else if (newsrv->maxconn && !newsrv->minconn) {
3231 /* minconn was not specified, so we set it to maxconn */
3232 newsrv->minconn = newsrv->maxconn;
3233 }
3234
William Dauchyf6370442020-11-14 19:25:33 +01003235 /* this will also properly set the transport layer for
3236 * prod and checks
3237 * if default-server have use_ssl, prerare ssl init
3238 * without activating it */
3239 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
3240 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3241 (newsrv->use_ssl != 1 && curproxy->defsrv.use_ssl == 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003242 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3243 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3244 }
Emeric Brun94324a42012-10-11 14:00:19 +02003245
Willy Tarreau034c88c2017-01-23 23:36:45 +01003246 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3247 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3248 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3249 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",
3250 newsrv->conf.file, newsrv->conf.line,
3251 proxy_type_str(curproxy), curproxy->id,
3252 newsrv->id);
3253
Willy Tarreau62c3be22012-01-20 13:12:32 +01003254 if (newsrv->trackit) {
3255 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003256 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003257 char *pname, *sname;
3258
3259 pname = newsrv->trackit;
3260 sname = strrchr(pname, '/');
3261
3262 if (sname)
3263 *sname++ = '\0';
3264 else {
3265 sname = pname;
3266 pname = NULL;
3267 }
3268
3269 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003270 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003271 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003272 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3273 proxy_type_str(curproxy), curproxy->id,
3274 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003275 cfgerr++;
3276 goto next_srv;
3277 }
3278 } else
3279 px = curproxy;
3280
3281 srv = findserver(px, sname);
3282 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003283 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3284 proxy_type_str(curproxy), curproxy->id,
3285 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003286 cfgerr++;
3287 goto next_srv;
3288 }
3289
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003290 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003291 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3292 "tracking as it does not have any check nor agent enabled.\n",
3293 proxy_type_str(curproxy), curproxy->id,
3294 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003295 cfgerr++;
3296 goto next_srv;
3297 }
3298
3299 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3300
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003301 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003302 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3303 "belongs to a tracking chain looping back to %s/%s.\n",
3304 proxy_type_str(curproxy), curproxy->id,
3305 newsrv->id, px->id, srv->id, px->id,
3306 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003307 cfgerr++;
3308 goto next_srv;
3309 }
3310
3311 if (curproxy != px &&
3312 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003313 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3314 "tracking: disable-on-404 option inconsistency.\n",
3315 proxy_type_str(curproxy), curproxy->id,
3316 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003317 cfgerr++;
3318 goto next_srv;
3319 }
3320
Willy Tarreau62c3be22012-01-20 13:12:32 +01003321 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003322 newsrv->tracknext = srv->trackers;
3323 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003324
3325 free(newsrv->trackit);
3326 newsrv->trackit = NULL;
3327 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003328
Willy Tarreau62c3be22012-01-20 13:12:32 +01003329 next_srv:
3330 newsrv = newsrv->next;
3331 }
3332
Olivier Houchard4e694042017-03-14 20:01:29 +01003333 /*
3334 * Try to generate dynamic cookies for servers now.
3335 * It couldn't be done earlier, since at the time we parsed
3336 * the server line, we may not have known yet that we
3337 * should use dynamic cookies, or the secret key may not
3338 * have been provided yet.
3339 */
3340 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3341 newsrv = curproxy->srv;
3342 while (newsrv != NULL) {
3343 srv_set_dyncookie(newsrv);
3344 newsrv = newsrv->next;
3345 }
3346
3347 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003348 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003349 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003350 */
3351
3352 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3353 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3354 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003355 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3356 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3357 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003358 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3359 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3360 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003361 } else {
3362 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3363 fwrr_init_server_groups(curproxy);
3364 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003365 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003366
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003367 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003368 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3369 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3370 fwlc_init_server_tree(curproxy);
3371 } else {
3372 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3373 fas_init_server_tree(curproxy);
3374 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003375 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003376
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003377 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003378 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3379 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3380 chash_init_server_tree(curproxy);
3381 } else {
3382 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3383 init_server_map(curproxy);
3384 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003385 break;
3386 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003387 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003388
3389 if (curproxy->options & PR_O_LOGASAP)
3390 curproxy->to_log &= ~LW_BYTES;
3391
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003392 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003393 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3394 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003395 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3396 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003397 err_code |= ERR_WARN;
3398 }
3399
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003400 if (curproxy->mode != PR_MODE_HTTP) {
3401 int optnum;
3402
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003403 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003404 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3405 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003406 err_code |= ERR_WARN;
3407 curproxy->uri_auth = NULL;
3408 }
3409
Willy Tarreaude7dc882017-03-10 11:49:21 +01003410 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003411 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3412 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003413 err_code |= ERR_WARN;
3414 }
3415
3416 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003417 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3418 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003419 err_code |= ERR_WARN;
3420 }
3421
3422 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003423 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3424 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003425 err_code |= ERR_WARN;
3426 }
3427
Willy Tarreaude7dc882017-03-10 11:49:21 +01003428 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003429 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3430 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003431 err_code |= ERR_WARN;
3432 }
3433
Willy Tarreau87cf5142011-08-19 22:57:24 +02003434 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003435 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3436 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003437 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003438 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003439 }
3440
3441 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003442 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3443 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003444 err_code |= ERR_WARN;
3445 curproxy->options &= ~PR_O_ORGTO;
3446 }
3447
3448 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3449 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3450 (curproxy->cap & cfg_opts[optnum].cap) &&
3451 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003452 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3453 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003454 err_code |= ERR_WARN;
3455 curproxy->options &= ~cfg_opts[optnum].val;
3456 }
3457 }
3458
3459 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3460 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3461 (curproxy->cap & cfg_opts2[optnum].cap) &&
3462 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003463 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3464 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003465 err_code |= ERR_WARN;
3466 curproxy->options2 &= ~cfg_opts2[optnum].val;
3467 }
3468 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003469
Willy Tarreau29fbe512015-08-20 19:35:14 +02003470#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003471 if (curproxy->conn_src.bind_hdr_occ) {
3472 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003473 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3474 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003475 err_code |= ERR_WARN;
3476 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003477#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003478 }
3479
Willy Tarreaubaaee002006-06-26 02:48:02 +02003480 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003481 * ensure that we're not cross-dressing a TCP server into HTTP.
3482 */
3483 newsrv = curproxy->srv;
3484 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003485 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003486 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3487 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003488 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003489 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003490
Willy Tarreau0cec3312011-10-31 13:49:26 +01003491 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003492 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3493 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003494 err_code |= ERR_WARN;
3495 }
3496
Willy Tarreauc93cd162014-05-13 15:54:22 +02003497 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003498 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3499 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003500 err_code |= ERR_WARN;
3501 }
3502
Willy Tarreau29fbe512015-08-20 19:35:14 +02003503#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003504 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3505 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003506 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3507 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003508 err_code |= ERR_WARN;
3509 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003510#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003511
Willy Tarreau46deab62018-04-28 07:18:15 +02003512 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3513 curproxy->options &= ~PR_O_REUSE_MASK;
3514
Willy Tarreau21d2af32008-02-14 20:25:24 +01003515 newsrv = newsrv->next;
3516 }
3517
Christopher Fauletd7c91962015-04-30 11:48:27 +02003518 /* Check filter configuration, if any */
3519 cfgerr += flt_check(curproxy);
3520
Willy Tarreauc1a21672009-08-16 22:37:44 +02003521 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003522 if (!curproxy->accept)
3523 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003524
Willy Tarreauc1a21672009-08-16 22:37:44 +02003525 if (curproxy->tcp_req.inspect_delay ||
3526 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003527 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003528
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003529 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003530 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003531 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003532 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003533
William Lallemandcf62f7e2018-10-26 14:47:40 +02003534 if (curproxy->mode == PR_MODE_CLI) {
3535 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3536 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3537 }
3538
Willy Tarreauc1a21672009-08-16 22:37:44 +02003539 /* both TCP and HTTP must check switching rules */
3540 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003541
3542 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003543 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003544 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3545 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 +01003546 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003547 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3548 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003549 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003550 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003551 }
3552
3553 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003554 if (curproxy->tcp_req.inspect_delay ||
3555 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3556 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3557
Emeric Brun97679e72010-09-23 17:56:44 +02003558 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3559 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3560
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003561 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003562 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003563 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003564 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003565
3566 /* If the backend does requires RDP cookie persistence, we have to
3567 * enable the corresponding analyser.
3568 */
3569 if (curproxy->options2 & PR_O2_RDPC_PRST)
3570 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003571
3572 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003573 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003574 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3575 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 +01003576 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003577 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3578 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003579 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003580 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003581 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003582
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003583 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003584 * attached to the current proxy */
3585 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3586 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003587 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003588
3589 if (!bind_conf->mux_proto)
3590 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003591
3592 /* it is possible that an incorrect mux was referenced
3593 * due to the proxy's mode not being taken into account
3594 * on first pass. Let's adjust it now.
3595 */
3596 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3597
3598 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003599 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3600 proxy_type_str(curproxy), curproxy->id,
3601 (int)bind_conf->mux_proto->token.len,
3602 bind_conf->mux_proto->token.ptr,
3603 bind_conf->arg, bind_conf->file, bind_conf->line);
3604 cfgerr++;
3605 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003606
3607 /* update the mux */
3608 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003609 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003610 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3611 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003612 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003613
3614 if (!newsrv->mux_proto)
3615 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003616
3617 /* it is possible that an incorrect mux was referenced
3618 * due to the proxy's mode not being taken into account
3619 * on first pass. Let's adjust it now.
3620 */
3621 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3622
3623 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003624 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3625 proxy_type_str(curproxy), curproxy->id,
3626 (int)newsrv->mux_proto->token.len,
3627 newsrv->mux_proto->token.ptr,
3628 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3629 cfgerr++;
3630 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003631
3632 /* update the mux */
3633 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003634 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003635
3636 /* initialize idle conns lists */
3637 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3638 int i;
3639
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003640 newsrv->available_conns_tree = calloc(global.nbthread, sizeof(*newsrv->available_conns_tree));
Willy Tarreau835daa12019-02-07 14:46:29 +01003641
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003642 if (!newsrv->available_conns_tree) {
Willy Tarreau835daa12019-02-07 14:46:29 +01003643 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003644 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau835daa12019-02-07 14:46:29 +01003645 cfgerr++;
3646 continue;
3647 }
3648
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003649 for (i = 0; i < global.nbthread; i++)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003650 newsrv->available_conns_tree[i] = EB_ROOT;
Willy Tarreau980855b2019-02-07 14:59:29 +01003651
3652 if (newsrv->max_idle_conns != 0) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003653 if (idle_conn_task == NULL) {
3654 idle_conn_task = task_new(MAX_THREADS_MASK);
3655 if (!idle_conn_task)
3656 goto err;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003657
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003658 idle_conn_task->process = srv_cleanup_idle_connections;
3659 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003660
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003661 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003662 idle_conns[i].cleanup_task = task_new(1UL << i);
3663 if (!idle_conns[i].cleanup_task)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003664 goto err;
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003665 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_connections;
3666 idle_conns[i].cleanup_task->context = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003667 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003668 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003669 }
3670 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003671
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003672 newsrv->idle_conns_tree = calloc((unsigned short)global.nbthread, sizeof(*newsrv->idle_conns_tree));
3673 if (!newsrv->idle_conns_tree) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003674 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003675 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003676 cfgerr++;
3677 continue;
3678 }
3679
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003680 for (i = 0; i < global.nbthread; i++)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003681 newsrv->idle_conns_tree[i] = EB_ROOT;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003682
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003683 newsrv->safe_conns_tree = calloc(global.nbthread, sizeof(*newsrv->safe_conns_tree));
3684 if (!newsrv->safe_conns_tree) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003685 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003686 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003687 cfgerr++;
3688 continue;
3689 }
3690
3691 for (i = 0; i < global.nbthread; i++)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003692 newsrv->safe_conns_tree[i] = EB_ROOT;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003693
Tim Duesterhusb53dd032020-09-12 20:26:42 +02003694 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
Olivier Houchardf1314812019-02-18 16:41:17 +01003695 if (!newsrv->curr_idle_thr)
3696 goto err;
Willy Tarreau980855b2019-02-07 14:59:29 +01003697 continue;
3698 err:
3699 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3700 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3701 cfgerr++;
3702 continue;
3703 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003704 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003705 }
3706
3707 /***********************************************************/
3708 /* At this point, target names have already been resolved. */
3709 /***********************************************************/
3710
3711 /* Check multi-process mode compatibility */
3712
3713 if (global.nbproc > 1 && global.stats_fe) {
3714 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3715 unsigned long mask;
3716
Willy Tarreau6daac192019-02-02 17:39:53 +01003717 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02003718 mask &= proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003719
3720 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003721 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003722 break;
3723 }
3724 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003725 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 +02003726 }
3727 }
3728
3729 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003730 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003731 if (curproxy->bind_proc)
3732 continue;
3733
3734 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3735 unsigned long mask;
3736
Willy Tarreaue26993c2020-09-03 07:18:55 +02003737 mask = proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003738 curproxy->bind_proc |= mask;
3739 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003740 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003741 }
3742
3743 if (global.stats_fe) {
3744 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3745 unsigned long mask;
3746
Willy Tarreaue26993c2020-09-03 07:18:55 +02003747 mask = bind_conf->settings.bind_proc ? bind_conf->settings.bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003748 global.stats_fe->bind_proc |= mask;
3749 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003750 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003751 }
3752
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003753 /* propagate bindings from frontends to backends. Don't do it if there
3754 * are any fatal errors as we must not call it with unresolved proxies.
3755 */
3756 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003757 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003758 if (curproxy->cap & PR_CAP_FE)
3759 propagate_processes(curproxy, NULL);
3760 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003761 }
3762
3763 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003764 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3765 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003766
3767 /*******************************************************/
3768 /* At this step, all proxies have a non-null bind_proc */
3769 /*******************************************************/
3770
3771 /* perform the final checks before creating tasks */
3772
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003773 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003774 struct listener *listener;
3775 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003776
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003777 /* Configure SSL for each bind line.
3778 * Note: if configuration fails at some point, the ->ctx member
3779 * remains NULL so that listeners can later detach.
3780 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003781 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003782 if (bind_conf->xprt->prepare_bind_conf &&
3783 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003784 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003785 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003786
Willy Tarreaue6b98942007-10-29 01:09:36 +01003787 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003788 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003789 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003790 int nbproc;
3791
3792 nbproc = my_popcountl(curproxy->bind_proc &
Willy Tarreaue26993c2020-09-03 07:18:55 +02003793 (listener->bind_conf->settings.bind_proc ? listener->bind_conf->settings.bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003794 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003795
3796 if (!nbproc) /* no intersection between listener and frontend */
3797 nbproc = 1;
3798
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003799 if (!listener->luid) {
3800 /* listener ID not set, use automatic numbering with first
3801 * spare entry starting with next_luid.
3802 */
3803 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3804 listener->conf.id.key = listener->luid = next_id;
3805 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003806 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003807 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003808
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003809 /* enable separate counters */
3810 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003811 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003812 if (!listener->name)
3813 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003814 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003815
Willy Tarreaue6b98942007-10-29 01:09:36 +01003816 if (curproxy->options & PR_O_TCP_NOLING)
3817 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003818 if (!listener->maxaccept)
3819 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3820
3821 /* we want to have an optimal behaviour on single process mode to
3822 * maximize the work at once, but in multi-process we want to keep
3823 * some fairness between processes, so we target half of the max
3824 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003825 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003826 * used to disable the limit.
3827 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003828 if (listener->maxaccept > 0 && nbproc > 1) {
3829 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003830 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3831 }
3832
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003833 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003834 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003835 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003836
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003837 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003838 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003839
Willy Tarreau620408f2016-10-21 16:37:51 +02003840 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3841 listener->options |= LI_O_TCP_L5_RULES;
3842
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003843 /* smart accept mode is automatic in HTTP mode */
3844 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003845 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003846 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3847 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003848 }
3849
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003850 /* Release unused SSL configs */
3851 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003852 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3853 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003854 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003855
Willy Tarreaua38a7172019-02-02 17:11:28 +01003856 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003857 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003858 int count, maxproc = 0;
3859
3860 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreaue26993c2020-09-03 07:18:55 +02003861 count = my_popcountl(bind_conf->settings.bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003862 if (count > maxproc)
3863 maxproc = count;
3864 }
3865 /* backends have 0, frontends have 1 or more */
3866 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003867 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3868 " limited to process assigned to the current request.\n",
3869 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003870
Willy Tarreau102df612014-05-07 23:56:38 +02003871 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003872 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3873 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003874 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003875 }
Willy Tarreau102df612014-05-07 23:56:38 +02003876 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003877 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3878 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003879 }
3880 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003881
3882 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003883 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003884 if (curproxy->task) {
3885 curproxy->task->context = curproxy;
3886 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003887 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003888 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3889 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003890 cfgerr++;
3891 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003892 }
3893
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003894 /*
3895 * Recount currently required checks.
3896 */
3897
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003898 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003899 int optnum;
3900
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003901 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3902 if (curproxy->options & cfg_opts[optnum].val)
3903 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003904
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003905 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3906 if (curproxy->options2 & cfg_opts2[optnum].val)
3907 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003908 }
3909
Willy Tarreau0fca4832015-05-01 19:12:05 +02003910 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003911 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003912 if (curproxy->table && curproxy->table->peers.p)
3913 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003914
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003915 /* compute the required process bindings for the peers from <stktables_list>
3916 * for all the stick-tables, the ones coming with "peers" sections included.
3917 */
3918 for (t = stktables_list; t; t = t->next) {
3919 struct proxy *p;
3920
3921 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3922 if (t->peers.p && t->peers.p->peers_fe) {
3923 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3924 }
3925 }
3926 }
3927
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003928 if (cfg_peers) {
3929 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003930 struct peer *p, *pb;
3931
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003932 /* In the case the peers frontend was not initialized by a
3933 stick-table used in the configuration, set its bind_proc
3934 by default to the first process. */
3935 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003936 if (curpeers->peers_fe) {
3937 if (curpeers->peers_fe->bind_proc == 0)
3938 curpeers->peers_fe->bind_proc = 1;
3939 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003940 curpeers = curpeers->next;
3941 }
3942
3943 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003944 /* Remove all peers sections which don't have a valid listener,
3945 * which are not used by any table, or which are bound to more
3946 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003947 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003948 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003949 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003950 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003951 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003952
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003953 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003954 /* the "disabled" keyword was present */
3955 if (curpeers->peers_fe)
3956 stop_proxy(curpeers->peers_fe);
3957 curpeers->peers_fe = NULL;
3958 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003959 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003960 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3961 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003962 if (curpeers->peers_fe)
3963 stop_proxy(curpeers->peers_fe);
3964 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003965 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003966 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003967 /* either it's totally stopped or too much used */
3968 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003969 ha_alert("Peers section '%s': peers referenced by sections "
3970 "running in different processes (%d different ones). "
3971 "Check global.nbproc and all tables' bind-process "
3972 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003973 cfgerr++;
3974 }
3975 stop_proxy(curpeers->peers_fe);
3976 curpeers->peers_fe = NULL;
3977 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003978 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003979 /* Initializes the transport layer of the server part of all the peers belonging to
3980 * <curpeers> section if required.
3981 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3982 * of an old process.
3983 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003984 p = curpeers->remote;
3985 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003986 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003987 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 +01003988 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3989 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003990 p = p->next;
3991 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003992 /* Configure the SSL bindings of the local peer if required. */
3993 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3994 struct list *l;
3995 struct bind_conf *bind_conf;
3996
3997 l = &curpeers->peers_fe->conf.bind;
3998 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3999 if (bind_conf->xprt->prepare_bind_conf &&
4000 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4001 cfgerr++;
4002 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004003 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004004 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4005 curpeers->id);
4006 cfgerr++;
4007 break;
4008 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004009 last = &curpeers->next;
4010 continue;
4011 }
4012
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004013 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004014 p = curpeers->remote;
4015 while (p) {
4016 pb = p->next;
4017 free(p->id);
4018 free(p);
4019 p = pb;
4020 }
4021
4022 /* Destroy and unlink this curpeers section.
4023 * Note: curpeers is backed up into *last.
4024 */
4025 free(curpeers->id);
4026 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004027 /* Reset any refereance to this peers section in the list of stick-tables */
4028 for (t = stktables_list; t; t = t->next) {
4029 if (t->peers.p && t->peers.p == *last)
4030 t->peers.p = NULL;
4031 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004032 free(*last);
4033 *last = curpeers;
4034 }
4035 }
4036
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004037 for (t = stktables_list; t; t = t->next) {
4038 if (t->proxy)
4039 continue;
4040 if (!stktable_init(t)) {
4041 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4042 cfgerr++;
4043 }
4044 }
4045
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004046 /* initialize stick-tables on backend capable proxies. This must not
4047 * be done earlier because the data size may be discovered while parsing
4048 * other proxies.
4049 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004050 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauc3914d42020-09-24 08:39:22 +02004051 if (curproxy->disabled || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004052 continue;
4053
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004054 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004055 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004056 cfgerr++;
4057 }
4058 }
4059
Simon Horman0d16a402015-01-30 11:22:58 +09004060 if (mailers) {
4061 struct mailers *curmailers = mailers, **last;
4062 struct mailer *m, *mb;
4063
4064 /* Remove all mailers sections which don't have a valid listener.
4065 * This can happen when a mailers section is never referenced.
4066 */
4067 last = &mailers;
4068 while (*last) {
4069 curmailers = *last;
4070 if (curmailers->users) {
4071 last = &curmailers->next;
4072 continue;
4073 }
4074
Christopher Faulet767a84b2017-11-24 16:50:31 +01004075 ha_warning("Removing incomplete section 'mailers %s'.\n",
4076 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004077
4078 m = curmailers->mailer_list;
4079 while (m) {
4080 mb = m->next;
4081 free(m->id);
4082 free(m);
4083 m = mb;
4084 }
4085
4086 /* Destroy and unlink this curmailers section.
4087 * Note: curmailers is backed up into *last.
4088 */
4089 free(curmailers->id);
4090 curmailers = curmailers->next;
4091 free(*last);
4092 *last = curmailers;
4093 }
4094 }
4095
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004096 /* Update server_state_file_name to backend name if backend is supposed to use
4097 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004098 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004099 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4100 curproxy->server_state_file_name == NULL)
4101 curproxy->server_state_file_name = strdup(curproxy->id);
4102 }
4103
Ben Draut054fbee2018-04-13 15:43:04 -06004104 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
4105 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
4106 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
4107 curr_resolvers->id, curr_resolvers->conf.file,
4108 curr_resolvers->conf.line);
4109 err_code |= ERR_WARN;
4110 }
4111 }
4112
William Lallemand48b4bb42017-10-23 14:36:34 +02004113 list_for_each_entry(postparser, &postparsers, list) {
4114 if (postparser->func)
4115 cfgerr += postparser->func();
4116 }
4117
Willy Tarreaubb925012009-07-23 13:36:36 +02004118 if (cfgerr > 0)
4119 err_code |= ERR_ALERT | ERR_FATAL;
4120 out:
4121 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004122}
4123
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004124/*
4125 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4126 * parsing sessions.
4127 */
4128void cfg_register_keywords(struct cfg_kw_list *kwl)
4129{
4130 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
4131}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004132
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004133/*
4134 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4135 */
4136void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4137{
4138 LIST_DEL(&kwl->list);
4139 LIST_INIT(&kwl->list);
4140}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004141
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004142/* this function register new section in the haproxy configuration file.
4143 * <section_name> is the name of this new section and <section_parser>
4144 * is the called parser. If two section declaration have the same name,
4145 * only the first declared is used.
4146 */
4147int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004148 int (*section_parser)(const char *, int, char **, int),
4149 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004150{
4151 struct cfg_section *cs;
4152
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004153 list_for_each_entry(cs, &sections, list) {
4154 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004155 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004156 return 0;
4157 }
4158 }
4159
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004160 cs = calloc(1, sizeof(*cs));
4161 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004162 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004163 return 0;
4164 }
4165
4166 cs->section_name = section_name;
4167 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004168 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004169
4170 LIST_ADDQ(&sections, &cs->list);
4171
4172 return 1;
4173}
4174
William Lallemand48b4bb42017-10-23 14:36:34 +02004175/* this function register a new function which will be called once the haproxy
4176 * configuration file has been parsed. It's useful to check dependencies
4177 * between sections or to resolve items once everything is parsed.
4178 */
4179int cfg_register_postparser(char *name, int (*func)())
4180{
4181 struct cfg_postparser *cp;
4182
4183 cp = calloc(1, sizeof(*cp));
4184 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004185 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004186 return 0;
4187 }
4188 cp->name = name;
4189 cp->func = func;
4190
4191 LIST_ADDQ(&postparsers, &cp->list);
4192
4193 return 1;
4194}
4195
Willy Tarreaubaaee002006-06-26 02:48:02 +02004196/*
David Carlier845efb52015-09-25 11:49:18 +01004197 * free all config section entries
4198 */
4199void cfg_unregister_sections(void)
4200{
4201 struct cfg_section *cs, *ics;
4202
4203 list_for_each_entry_safe(cs, ics, &sections, list) {
4204 LIST_DEL(&cs->list);
4205 free(cs);
4206 }
4207}
4208
Christopher Faulet7110b402016-10-26 11:09:44 +02004209void cfg_backup_sections(struct list *backup_sections)
4210{
4211 struct cfg_section *cs, *ics;
4212
4213 list_for_each_entry_safe(cs, ics, &sections, list) {
4214 LIST_DEL(&cs->list);
4215 LIST_ADDQ(backup_sections, &cs->list);
4216 }
4217}
4218
4219void cfg_restore_sections(struct list *backup_sections)
4220{
4221 struct cfg_section *cs, *ics;
4222
4223 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4224 LIST_DEL(&cs->list);
4225 LIST_ADDQ(&sections, &cs->list);
4226 }
4227}
4228
Willy Tarreaue6552512018-11-26 11:33:13 +01004229/* these are the config sections handled by default */
4230REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4231REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4232REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4233REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4234REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4235REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4236REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4237REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4238REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4239REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004240
David Carlier845efb52015-09-25 11:49:18 +01004241/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004242 * Local variables:
4243 * c-indent-level: 8
4244 * c-basic-offset: 8
4245 * End:
4246 */