blob: 9daac06c2f027d74679285f965b34136e426142e [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
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +010023#include <dirent.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020024#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <netdb.h>
28#include <ctype.h>
Willy Tarreau95c20ac2007-03-25 15:39:23 +020029#include <pwd.h>
30#include <grp.h>
Willy Tarreau0b4ed902007-03-26 00:18:40 +020031#include <errno.h>
Willy Tarreau3f49b302007-06-11 00:29:26 +020032#include <sys/types.h>
33#include <sys/stat.h>
34#include <fcntl.h>
35#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036
Willy Tarreaudcc048a2020-06-04 19:11:43 +020037#include <haproxy/acl.h>
Christopher Faulet42c6cf92021-03-25 17:19:04 +010038#include <haproxy/action.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020039#include <haproxy/api.h>
Willy Tarreau732525f2021-05-06 15:49:04 +020040#include <haproxy/arg.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020041#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020042#include <haproxy/backend.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020043#include <haproxy/capture.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020044#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020045#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020046#include <haproxy/check.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020047#include <haproxy/chunk.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020048#ifdef USE_CPU_AFFINITY
Amaury Denoyellec90932b2021-04-14 16:16:03 +020049#include <haproxy/cpuset.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020050#endif
Willy Tarreau7ea393d2020-06-04 18:02:10 +020051#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020052#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020053#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020054#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020055#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020056#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020057#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020058#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020059#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020060#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020061#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020062#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020063#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020064#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020065#include <haproxy/mailers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020066#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020067#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020068#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020069#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020070#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020071#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020072#include <haproxy/proxy.h>
Emeric Brunc9437992021-02-12 19:42:55 +010073#include <haproxy/resolvers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020074#include <haproxy/sample.h>
75#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020076#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020077#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020078#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020079#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020080#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020081#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020082#include <haproxy/thread.h>
83#include <haproxy/time.h>
84#include <haproxy/tools.h>
85#include <haproxy/uri_auth-t.h>
Frédéric Lécaille884f2e92020-11-23 14:23:21 +010086#include <haproxy/xprt_quic.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020087
88
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010089/* Used to chain configuration sections definitions. This list
90 * stores struct cfg_section
91 */
92struct list sections = LIST_HEAD_INIT(sections);
93
William Lallemand48b4bb42017-10-23 14:36:34 +020094struct list postparsers = LIST_HEAD_INIT(postparsers);
95
Eric Salama1b8dacc2021-03-16 15:12:17 +010096extern struct proxy *mworker_proxy;
97
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010098char *cursection = NULL;
Willy Tarreauc8d5b952019-02-27 17:25:52 +010099int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +0100100int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +0100101char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200102
Willy Tarreau8a022d52021-04-27 20:29:11 +0200103/* how to handle default paths */
104static enum default_path_mode {
105 DEFAULT_PATH_CURRENT = 0, /* "current": paths are relative to CWD (this is the default) */
106 DEFAULT_PATH_CONFIG, /* "config": paths are relative to config file */
107 DEFAULT_PATH_PARENT, /* "parent": paths are relative to config file's ".." */
108 DEFAULT_PATH_ORIGIN, /* "origin": paths are relative to default_path_origin */
109} default_path_mode;
110
111static char initial_cwd[PATH_MAX];
112static char current_cwd[PATH_MAX];
113
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200114/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100115struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200116 .list = LIST_HEAD_INIT(cfg_keywords.list)
117};
118
Willy Tarreau4b103022021-02-12 17:59:10 +0100119/* nested if/elif/else/endif block states */
120enum nested_cond_state {
121 NESTED_COND_IF_TAKE, // "if" with a true condition
122 NESTED_COND_IF_DROP, // "if" with a false condition
123 NESTED_COND_IF_SKIP, // "if" masked by an outer false condition
124
125 NESTED_COND_ELIF_TAKE, // "elif" with a true condition from a false one
126 NESTED_COND_ELIF_DROP, // "elif" with a false condition from a false one
127 NESTED_COND_ELIF_SKIP, // "elif" masked by an outer false condition or a previously taken if
128
129 NESTED_COND_ELSE_TAKE, // taken "else" after an if false condition
130 NESTED_COND_ELSE_DROP, // "else" masked by outer false condition or an if true condition
131};
132
133/* 100 levels of nested conditions should already be sufficient */
134#define MAXNESTEDCONDS 100
135
Willy Tarreau732525f2021-05-06 15:49:04 +0200136/* supported conditional predicates for .if/.elif */
137enum cond_predicate {
138 CFG_PRED_NONE, // none
Willy Tarreau42ed14b2021-05-06 15:55:14 +0200139 CFG_PRED_DEFINED, // "defined"
Willy Tarreau6492e872021-05-06 16:10:09 +0200140 CFG_PRED_STREQ, // "streq"
141 CFG_PRED_STRNEQ, // "strneq"
Willy Tarreau732525f2021-05-06 15:49:04 +0200142};
143
144struct cond_pred_kw {
145 const char *word; // NULL marks the end of the list
146 enum cond_predicate prd; // one of the CFG_PRED_* above
147 uint64_t arg_mask; // mask of supported arguments (strings only)
148};
149
150/* supported condition predicates */
151const struct cond_pred_kw cond_predicates[] = {
Willy Tarreau42ed14b2021-05-06 15:55:14 +0200152 { "defined", CFG_PRED_DEFINED, ARG1(1, STR) },
Willy Tarreau6492e872021-05-06 16:10:09 +0200153 { "streq", CFG_PRED_STREQ, ARG2(2, STR, STR) },
154 { "strneq", CFG_PRED_STRNEQ, ARG2(2, STR, STR) },
Willy Tarreau732525f2021-05-06 15:49:04 +0200155 { NULL, CFG_PRED_NONE, 0 }
156};
157
Willy Tarreaubaaee002006-06-26 02:48:02 +0200158/*
159 * converts <str> to a list of listeners which are dynamically allocated.
160 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
161 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
162 * - <port> is a numerical port from 1 to 65535 ;
163 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
164 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200165 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
166 * not NULL, it must be a valid pointer to either NULL or a freeable area that
167 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200168 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200169int 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 +0200170{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200171 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100172 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200173 int port, end;
174
175 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200176
Willy Tarreaubaaee002006-06-26 02:48:02 +0200177 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200178 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100179 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200180
181 str = next;
182 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100183 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200184 *next++ = 0;
185 }
186
Willy Tarreau5fc93282020-09-16 18:25:03 +0200187 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Eric Salama1b8dacc2021-03-16 15:12:17 +0100188 (curproxy == global.cli_fe || curproxy == mworker_proxy) ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200189 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200190 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100191 if (!ss2)
192 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200193
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100194 /* OK the address looks correct */
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100195
196#ifdef USE_QUIC
197 /* The transport layer automatically switches to QUIC when QUIC
198 * is selected, regardless of bind_conf settings. We then need
199 * to initialize QUIC params.
200 */
201 if (proto->sock_type == SOCK_DGRAM && proto->ctrl_type == SOCK_STREAM) {
202 bind_conf->xprt = xprt_get(XPRT_QUIC);
203 quic_transport_params_init(&bind_conf->quic_params, 1);
204 }
205#endif
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200206 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200207 memprintf(err, "%s for address '%s'.\n", *err, str);
208 goto fail;
209 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200210 } /* end while(next) */
211 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200212 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200213 fail:
214 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200215 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200216}
217
William Lallemand6e62fb62015-04-28 16:55:23 +0200218/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200219 * converts <str> to a list of datagram-oriented listeners which are dynamically
220 * allocated.
221 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
222 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
223 * - <port> is a numerical port from 1 to 65535 ;
224 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
225 * This can be repeated as many times as necessary, separated by a coma.
226 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
227 * not NULL, it must be a valid pointer to either NULL or a freeable area that
228 * will be replaced with an error message.
229 */
230int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
231{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200232 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200233 char *next, *dupstr;
234 int port, end;
235
236 next = dupstr = strdup(str);
237
238 while (next && *next) {
239 struct sockaddr_storage *ss2;
240 int fd = -1;
241
242 str = next;
243 /* 1) look for the end of the first address */
244 if ((next = strchr(str, ',')) != NULL) {
245 *next++ = 0;
246 }
247
Willy Tarreau5fc93282020-09-16 18:25:03 +0200248 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreau4975d142021-03-13 11:00:33 +0100249 curproxy == global.cli_fe ? NULL : global.unix_bind.prefix,
Willy Tarreauaa333122020-09-16 15:13:04 +0200250 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
251 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
252 if (!ss2)
253 goto fail;
254
255 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200256 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200257 memprintf(err, "%s for address '%s'.\n", *err, str);
258 goto fail;
259 }
260 } /* end while(next) */
261 free(dupstr);
262 return 1;
263 fail:
264 free(dupstr);
265 return 0;
266}
267
268/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100269 * Report an error in <msg> when there are too many arguments. This version is
270 * intended to be used by keyword parsers so that the message will be included
271 * into the general error message. The index is the current keyword in args.
272 * Return 0 if the number of argument is correct, otherwise build a message and
273 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
274 * message may also be null, it will simply not be produced (useful to check only).
275 * <msg> and <err_code> are only affected on error.
276 */
277int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
278{
279 int i;
280
281 if (!*args[index + maxarg + 1])
282 return 0;
283
284 if (msg) {
285 *msg = NULL;
286 memprintf(msg, "%s", args[0]);
287 for (i = 1; i <= index; i++)
288 memprintf(msg, "%s %s", *msg, args[i]);
289
290 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
291 }
292 if (err_code)
293 *err_code |= ERR_ALERT | ERR_FATAL;
294
295 return 1;
296}
297
298/*
299 * same as too_many_args_idx with a 0 index
300 */
301int too_many_args(int maxarg, char **args, char **msg, int *err_code)
302{
303 return too_many_args_idx(maxarg, 0, args, msg, err_code);
304}
305
306/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200307 * Report a fatal Alert when there is too much arguments
308 * The index is the current keyword in args
309 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
310 * Fill err_code with an ERR_ALERT and an ERR_FATAL
311 */
312int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
313{
314 char *kw = NULL;
315 int i;
316
317 if (!*args[index + maxarg + 1])
318 return 0;
319
320 memprintf(&kw, "%s", args[0]);
321 for (i = 1; i <= index; i++) {
322 memprintf(&kw, "%s %s", kw, args[i]);
323 }
324
Christopher Faulet767a84b2017-11-24 16:50:31 +0100325 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 +0200326 free(kw);
327 *err_code |= ERR_ALERT | ERR_FATAL;
328 return 1;
329}
330
331/*
332 * same as alertif_too_many_args_idx with a 0 index
333 */
334int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
335{
336 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
337}
338
Willy Tarreau61d18892009-03-31 10:49:21 +0200339
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100340/* Report it if a request ACL condition uses some keywords that are incompatible
341 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
342 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
343 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100344 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100345int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100346{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100347 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200348 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100349
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100350 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100351 return 0;
352
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100353 acl = acl_cond_conflicts(cond, where);
354 if (acl) {
355 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100356 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
357 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100358 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100359 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
360 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100361 return ERR_WARN;
362 }
363 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100364 return 0;
365
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100366 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100367 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
368 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100369 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100370 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
371 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100372 return ERR_WARN;
373}
374
Christopher Faulet581db2b2021-03-26 10:02:46 +0100375/* Report it if an ACL uses a L6 sample fetch from an HTTP proxy. It returns
376 * either 0 or ERR_WARN so that its result can be or'ed with err_code. Note that
377 * <cond> may be NULL and then will be ignored.
378*/
379int warnif_tcp_http_cond(const struct proxy *px, const struct acl_cond *cond)
380{
381 if (!cond || px->mode != PR_MODE_HTTP)
382 return 0;
383
384 if (cond->use & (SMP_USE_L6REQ|SMP_USE_L6RES)) {
385 ha_warning("Proxy '%s': L6 sample fetches ignored on HTTP proxies (declared at %s:%d).\n",
386 px->id, cond->file, cond->line);
387 return ERR_WARN;
388 }
389 return 0;
390}
391
Willy Tarreaue2afcc42021-03-12 09:08:04 +0100392/* try to find in <list> the word that looks closest to <word> by counting
393 * transitions between letters, digits and other characters. Will return the
394 * best matching word if found, otherwise NULL. An optional array of extra
395 * words to compare may be passed in <extra>, but it must then be terminated
396 * by a NULL entry. If unused it may be NULL.
397 */
398const char *cfg_find_best_match(const char *word, const struct list *list, int section, const char **extra)
399{
400 uint8_t word_sig[1024]; // 0..25=letter, 26=digit, 27=other, 28=begin, 29=end
401 uint8_t list_sig[1024];
402 const struct cfg_kw_list *kwl;
403 int index;
404 const char *best_ptr = NULL;
405 int dist, best_dist = INT_MAX;
406
407 make_word_fingerprint(word_sig, word);
408 list_for_each_entry(kwl, list, list) {
409 for (index = 0; kwl->kw[index].kw != NULL; index++) {
410 if (kwl->kw[index].section != section)
411 continue;
412
413 make_word_fingerprint(list_sig, kwl->kw[index].kw);
414 dist = word_fingerprint_distance(word_sig, list_sig);
415 if (dist < best_dist) {
416 best_dist = dist;
417 best_ptr = kwl->kw[index].kw;
418 }
419 }
420 }
421
422 while (extra && *extra) {
423 make_word_fingerprint(list_sig, *extra);
424 dist = word_fingerprint_distance(word_sig, list_sig);
425 if (dist < best_dist) {
426 best_dist = dist;
427 best_ptr = *extra;
428 }
429 extra++;
430 }
431
432 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
433 best_ptr = NULL;
434 return best_ptr;
435}
436
Christopher Faulet62519022017-10-16 15:49:32 +0200437/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100438 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100439 * two such numbers delimited by a dash ('-'). On success, it returns
440 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200441 *
442 * Note: this function can also be used to parse a thread number or a set of
443 * threads.
444 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100445int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200446{
Christopher Faulet26028f62017-11-22 15:01:51 +0100447 if (autoinc) {
448 *autoinc = 0;
449 if (strncmp(arg, "auto:", 5) == 0) {
450 arg += 5;
451 *autoinc = 1;
452 }
453 }
454
Christopher Faulet62519022017-10-16 15:49:32 +0200455 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100456 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200457 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100458 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200459 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100460 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200461 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100462 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100463 unsigned int low, high;
464
Christopher Faulet18cca782019-02-07 16:29:41 +0100465 for (p = arg; *p; p++) {
466 if (*p == '-' && !dash)
467 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100468 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100469 memprintf(err, "'%s' is not a valid number/range.", arg);
470 return -1;
471 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100472 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100473
474 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100475 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100476 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100477
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100478 if (high < low) {
479 unsigned int swap = low;
480 low = high;
481 high = swap;
482 }
483
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100484 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100485 memprintf(err, "'%s' is not a valid number/range."
486 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100487 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100488 return 1;
489 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100490
491 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100492 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200493 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100494 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100495
Christopher Faulet5ab51772017-11-22 11:21:58 +0100496 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200497}
498
David Carlier7e351ee2017-12-01 09:14:02 +0000499#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200500/* Parse cpu sets. Each CPU set is either a unique number between 0 and
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200501 * ha_cpuset_size() - 1 or a range with two such numbers delimited by a dash
Amaury Denoyellea8082352021-04-06 16:46:15 +0200502 * ('-'). If <comma_allowed> is set, each CPU set can be a list of unique
503 * numbers or ranges separated by a comma. It is also possible to specify
504 * multiple cpu numbers or ranges in distinct argument in <args>. On success,
505 * it returns 0, otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200506 */
Amaury Denoyellea8082352021-04-06 16:46:15 +0200507unsigned long parse_cpu_set(const char **args, struct hap_cpuset *cpu_set,
508 int comma_allowed, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200509{
510 int cur_arg = 0;
Amaury Denoyellea8082352021-04-06 16:46:15 +0200511 const char *arg;
Christopher Faulet62519022017-10-16 15:49:32 +0200512
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200513 ha_cpuset_zero(cpu_set);
514
Amaury Denoyellea8082352021-04-06 16:46:15 +0200515 arg = args[cur_arg];
516 while (*arg) {
517 const char *dash, *comma;
Christopher Faulet62519022017-10-16 15:49:32 +0200518 unsigned int low, high;
519
Willy Tarreau90807112020-02-25 08:16:33 +0100520 if (!isdigit((unsigned char)*args[cur_arg])) {
Amaury Denoyellea8082352021-04-06 16:46:15 +0200521 memprintf(err, "'%s' is not a CPU range.", arg);
Christopher Faulet62519022017-10-16 15:49:32 +0200522 return -1;
523 }
524
Amaury Denoyellea8082352021-04-06 16:46:15 +0200525 low = high = str2uic(arg);
526
527 comma = comma_allowed ? strchr(arg, ',') : NULL;
528 dash = strchr(arg, '-');
529
530 if (dash && (!comma || dash < comma))
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200531 high = *(dash+1) ? str2uic(dash + 1) : ha_cpuset_size() - 1;
Christopher Faulet62519022017-10-16 15:49:32 +0200532
533 if (high < low) {
534 unsigned int swap = low;
535 low = high;
536 high = swap;
537 }
538
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200539 if (high >= ha_cpuset_size()) {
540 memprintf(err, "supports CPU numbers from 0 to %d.",
541 ha_cpuset_size() - 1);
Christopher Faulet62519022017-10-16 15:49:32 +0200542 return 1;
543 }
544
545 while (low <= high)
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200546 ha_cpuset_set(cpu_set, low++);
Christopher Faulet62519022017-10-16 15:49:32 +0200547
Amaury Denoyellea8082352021-04-06 16:46:15 +0200548 /* if a comma is present, parse the rest of the arg, else
549 * skip to the next arg */
550 arg = comma ? comma + 1 : args[++cur_arg];
Christopher Faulet62519022017-10-16 15:49:32 +0200551 }
552 return 0;
553}
David Carlier7e351ee2017-12-01 09:14:02 +0000554#endif
555
Frédéric Lécaille18251032019-01-11 11:07:15 +0100556/* Allocate and initialize the frontend of a "peers" section found in
557 * file <file> at line <linenum> with <id> as ID.
558 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200559 * Note that this function may be called from "default-server"
560 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100561 */
562static int init_peers_frontend(const char *file, int linenum,
563 const char *id, struct peers *peers)
564{
565 struct proxy *p;
566
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200567 if (peers->peers_fe) {
568 p = peers->peers_fe;
569 goto out;
570 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100571
Frédéric Lécaille18251032019-01-11 11:07:15 +0100572 p = calloc(1, sizeof *p);
573 if (!p) {
574 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
575 return -1;
576 }
577
578 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200579 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100580 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200581 /* Finally store this frontend. */
582 peers->peers_fe = p;
583
584 out:
585 if (id && !p->id)
586 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200587 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100588 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100589 if (linenum != -1)
590 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100591
592 return 0;
593}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100594
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100595/* Only change ->file, ->line and ->arg struct bind_conf member values
596 * if already present.
597 */
598static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
599 const char *file, int line,
600 const char *arg, struct xprt_ops *xprt)
601{
602 struct bind_conf *bind_conf;
603
604 if (!LIST_ISEMPTY(&p->conf.bind)) {
605 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
606 free(bind_conf->file);
607 bind_conf->file = strdup(file);
608 bind_conf->line = line;
609 if (arg) {
610 free(bind_conf->arg);
611 bind_conf->arg = strdup(arg);
612 }
613 }
614 else {
615 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
616 }
617
618 return bind_conf;
619}
620
621/*
622 * Allocate a new struct peer parsed at line <linenum> in file <file>
623 * to be added to <peers>.
624 * Returns the new allocated structure if succeeded, NULL if not.
625 */
626static struct peer *cfg_peers_add_peer(struct peers *peers,
627 const char *file, int linenum,
628 const char *id, int local)
629{
630 struct peer *p;
631
632 p = calloc(1, sizeof *p);
633 if (!p) {
634 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
635 return NULL;
636 }
637
638 /* the peers are linked backwards first */
639 peers->count++;
640 p->next = peers->remote;
641 peers->remote = p;
642 p->conf.file = strdup(file);
643 p->conf.line = linenum;
644 p->last_change = now.tv_sec;
645 p->xprt = xprt_get(XPRT_RAW);
646 p->sock_init_arg = NULL;
647 HA_SPIN_INIT(&p->lock);
648 if (id)
649 p->id = strdup(id);
650 if (local) {
651 p->local = 1;
652 peers->local = p;
653 }
654
655 return p;
656}
657
Willy Tarreaubaaee002006-06-26 02:48:02 +0200658/*
William Lallemand51097192015-04-14 16:35:22 +0200659 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200660 * Returns the error code, 0 if OK, or any combination of :
661 * - ERR_ABORT: must abort ASAP
662 * - ERR_FATAL: we can continue parsing but not start the service
663 * - ERR_WARN: a warning has been emitted
664 * - ERR_ALERT: an alert has been emitted
665 * Only the two first ones can stop processing, the two others are just
666 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200667 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200668int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
669{
670 static struct peers *curpeers = NULL;
671 struct peer *newpeer = NULL;
672 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200673 struct bind_conf *bind_conf;
674 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200675 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100676 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100677 static int bind_line, peer_line;
678
679 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
680 int cur_arg;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100681 struct bind_conf *bind_conf;
682 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200683
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100684 cur_arg = 1;
685
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200686 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
687 err_code |= ERR_ALERT | ERR_ABORT;
688 goto out;
689 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100690
691 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
692 NULL, xprt_get(XPRT_RAW));
693 if (*args[0] == 'b') {
694 struct listener *l;
695
696 if (peer_line) {
697 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
698 err_code |= ERR_ALERT | ERR_FATAL;
699 goto out;
700 }
701
702 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
703 if (errmsg && *errmsg) {
704 indent_msg(&errmsg, 2);
705 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
706 }
707 else
708 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
709 file, linenum, args[0], args[1], args[2]);
710 err_code |= ERR_FATAL;
711 goto out;
712 }
713 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
714 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100715 l->accept = session_accept_fd;
716 l->analysers |= curpeers->peers_fe->fe_req_ana;
717 l->default_target = curpeers->peers_fe->default_target;
718 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100719 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100720
721 bind_line = 1;
722 if (cfg_peers->local) {
723 newpeer = cfg_peers->local;
724 }
725 else {
726 /* This peer is local.
727 * Note that we do not set the peer ID. This latter is initialized
728 * when parsing "peer" or "server" line.
729 */
730 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
731 if (!newpeer) {
732 err_code |= ERR_ALERT | ERR_ABORT;
733 goto out;
734 }
735 }
Willy Tarreau37159062020-08-27 07:48:42 +0200736 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200737 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100738 cur_arg++;
739 }
740
741 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
742 int ret;
743
744 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
745 err_code |= ret;
746 if (ret) {
747 if (errmsg && *errmsg) {
748 indent_msg(&errmsg, 2);
749 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
750 }
751 else
752 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
753 file, linenum, args[cur_arg]);
754 if (ret & ERR_FATAL)
755 goto out;
756 }
757 cur_arg += 1 + kw->skip;
758 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100759 if (*args[cur_arg] != 0) {
Willy Tarreau433b05f2021-03-12 10:14:07 +0100760 const char *best = bind_find_best_kw(args[cur_arg]);
761 if (best)
762 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section; did you mean '%s' maybe ?\n",
763 file, linenum, args[cur_arg], cursection, best);
764 else
765 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.\n",
766 file, linenum, args[cur_arg], cursection);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100767 err_code |= ERR_ALERT | ERR_FATAL;
768 goto out;
769 }
770 }
771 else if (strcmp(args[0], "default-server") == 0) {
772 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
773 err_code |= ERR_ALERT | ERR_ABORT;
774 goto out;
775 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100776 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
777 SRV_PARSE_DEFAULT_SERVER|SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200778 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100779 else if (strcmp(args[0], "log") == 0) {
780 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
781 err_code |= ERR_ALERT | ERR_ABORT;
782 goto out;
783 }
Emeric Brun9533a702021-04-02 10:13:43 +0200784 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), file, linenum, &errmsg)) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100785 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
786 err_code |= ERR_ALERT | ERR_FATAL;
787 goto out;
788 }
789 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200790 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100791 /* Initialize these static variables when entering a new "peers" section*/
792 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100793 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100794 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100795 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100796 goto out;
797 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200798
William Lallemand6e62fb62015-04-28 16:55:23 +0200799 if (alertif_too_many_args(1, file, linenum, args, &err_code))
800 goto out;
801
Emeric Brun32da3c42010-09-23 18:39:19 +0200802 err = invalid_char(args[1]);
803 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100804 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
805 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100806 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100807 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200808 }
809
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200810 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200811 /*
812 * If there are two proxies with the same name only following
813 * combinations are allowed:
814 */
815 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100816 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
817 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200818 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200819 }
820 }
821
Vincent Bernat02779b62016-04-03 13:48:43 +0200822 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100823 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200824 err_code |= ERR_ALERT | ERR_ABORT;
825 goto out;
826 }
827
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200828 curpeers->next = cfg_peers;
829 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200830 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200831 curpeers->conf.line = linenum;
832 curpeers->last_change = now.tv_sec;
833 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200834 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200835 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200836 else if (strcmp(args[0], "peer") == 0 ||
837 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100838 int local_peer, peer;
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100839 int parse_addr = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200840
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100841 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100842 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100843 /* The local peer may have already partially been parsed on a "bind" line. */
844 if (*args[0] == 'p') {
845 if (bind_line) {
846 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
847 err_code |= ERR_ALERT | ERR_FATAL;
848 goto out;
849 }
850 peer_line = 1;
851 }
852 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
853 /* The local peer has already been initialized on a "bind" line.
854 * Let's use it and store its ID.
855 */
856 newpeer = cfg_peers->local;
857 newpeer->id = strdup(localpeer);
858 }
859 else {
860 if (local_peer && cfg_peers->local) {
861 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
862 file, linenum, args[0], args[1],
863 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
864 err_code |= ERR_FATAL;
865 goto out;
866 }
867 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
868 if (!newpeer) {
869 err_code |= ERR_ALERT | ERR_ABORT;
870 goto out;
871 }
872 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200873
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100874 /* Line number and peer ID are updated only if this peer is the local one. */
875 if (init_peers_frontend(file,
876 newpeer->local ? linenum: -1,
877 newpeer->local ? newpeer->id : NULL,
878 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200879 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100880 goto out;
881 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100882
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100883 /* This initializes curpeer->peers->peers_fe->srv.
884 * The server address is parsed only if we are parsing a "peer" line,
885 * or if we are parsing a "server" line and the current peer is not the local one.
886 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100887 parse_addr = (peer || !local_peer) ? SRV_PARSE_PARSE_ADDR : 0;
888 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
889 SRV_PARSE_IN_PEER_SECTION|parse_addr|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200890 if (!curpeers->peers_fe->srv) {
891 /* Remove the newly allocated peer. */
892 if (newpeer != curpeers->local) {
893 struct peer *p;
894
895 p = curpeers->remote;
896 curpeers->remote = curpeers->remote->next;
897 free(p->id);
898 free(p);
899 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200900 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200901 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200902
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100903 /* If the peer address has just been parsed, let's copy it to <newpeer>
904 * and initializes ->proto.
905 */
906 if (peer || !local_peer) {
907 newpeer->addr = curpeers->peers_fe->srv->addr;
908 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
909 }
910
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100911 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200912 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100913 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200914
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100915 newpeer->srv = curpeers->peers_fe->srv;
916 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200917 goto out;
918
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100919 /* The lines above are reserved to "peer" lines. */
920 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200921 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200922
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100923 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 +0100924
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100925 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
926 if (errmsg && *errmsg) {
927 indent_msg(&errmsg, 2);
928 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 +0100929 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100930 else
931 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
932 file, linenum, args[0], args[1], args[2]);
933 err_code |= ERR_FATAL;
934 goto out;
935 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100936
937 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
938 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100939 l->accept = session_accept_fd;
940 l->analysers |= curpeers->peers_fe->fe_req_ana;
941 l->default_target = curpeers->peers_fe->default_target;
942 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100943 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100944 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100945 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100946 struct stktable *t, *other;
947 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100948 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100949
950 /* Line number and peer ID are updated only if this peer is the local one. */
951 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
952 err_code |= ERR_ALERT | ERR_ABORT;
953 goto out;
954 }
955
956 other = stktable_find_by_name(args[1]);
957 if (other) {
958 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
959 file, linenum, args[1],
960 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
961 other->proxy ? other->id : other->peers.p->id,
962 other->conf.file, other->conf.line);
963 err_code |= ERR_ALERT | ERR_FATAL;
964 goto out;
965 }
966
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100967 /* Build the stick-table name, concatenating the "peers" section name
968 * followed by a '/' character and the table name argument.
969 */
970 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100971 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100972 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
973 file, linenum, args[0], args[1]);
974 err_code |= ERR_ALERT | ERR_FATAL;
975 goto out;
976 }
977
978 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100979 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100980 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
981 file, linenum, args[0], args[1]);
982 err_code |= ERR_ALERT | ERR_FATAL;
983 goto out;
984 }
985
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100986 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100987 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100988 if (!t || !id) {
989 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
990 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +0200991 free(t);
992 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100993 err_code |= ERR_ALERT | ERR_FATAL;
994 goto out;
995 }
996
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100997 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +0200998 if (err_code & ERR_FATAL) {
999 free(t);
1000 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001001 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +02001002 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001003
1004 stktable_store_name(t);
1005 t->next = stktables_list;
1006 stktables_list = t;
1007 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001008 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02001009 curpeers->disabled = 1;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001010 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001011 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02001012 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001013 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001014 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001015 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +02001016 err_code |= ERR_ALERT | ERR_FATAL;
1017 goto out;
1018 }
1019
1020out:
Willy Tarreau902636f2013-03-10 19:44:48 +01001021 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +02001022 return err_code;
1023}
1024
Baptiste Assmann325137d2015-04-13 23:40:55 +02001025/*
William Lallemand51097192015-04-14 16:35:22 +02001026 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001027 * Returns the error code, 0 if OK, or any combination of :
1028 * - ERR_ABORT: must abort ASAP
1029 * - ERR_FATAL: we can continue parsing but not start the service
1030 * - ERR_WARN: a warning has been emitted
1031 * - ERR_ALERT: an alert has been emitted
1032 * Only the two first ones can stop processing, the two others are just
1033 * indicators.
1034 */
1035int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1036{
1037 static struct mailers *curmailers = NULL;
1038 struct mailer *newmailer = NULL;
1039 const char *err;
1040 int err_code = 0;
1041 char *errmsg = NULL;
1042
1043 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1044 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001045 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001046 err_code |= ERR_ALERT | ERR_ABORT;
1047 goto out;
1048 }
1049
1050 err = invalid_char(args[1]);
1051 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001052 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1053 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001054 err_code |= ERR_ALERT | ERR_ABORT;
1055 goto out;
1056 }
1057
1058 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1059 /*
1060 * If there are two proxies with the same name only following
1061 * combinations are allowed:
1062 */
1063 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001064 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1065 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001066 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001067 }
1068 }
1069
Vincent Bernat02779b62016-04-03 13:48:43 +02001070 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001071 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001072 err_code |= ERR_ALERT | ERR_ABORT;
1073 goto out;
1074 }
1075
1076 curmailers->next = mailers;
1077 mailers = curmailers;
1078 curmailers->conf.file = strdup(file);
1079 curmailers->conf.line = linenum;
1080 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001081 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1082 * But need enough time so that timeouts don't occur
1083 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001084 }
1085 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1086 struct sockaddr_storage *sk;
1087 int port1, port2;
1088 struct protocol *proto;
1089
1090 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001091 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1092 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001093 err_code |= ERR_ALERT | ERR_FATAL;
1094 goto out;
1095 }
1096
1097 err = invalid_char(args[1]);
1098 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001099 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1100 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001101 err_code |= ERR_ALERT | ERR_FATAL;
1102 goto out;
1103 }
1104
Vincent Bernat02779b62016-04-03 13:48:43 +02001105 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001106 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001107 err_code |= ERR_ALERT | ERR_ABORT;
1108 goto out;
1109 }
1110
1111 /* the mailers are linked backwards first */
1112 curmailers->count++;
1113 newmailer->next = curmailers->mailer_list;
1114 curmailers->mailer_list = newmailer;
1115 newmailer->mailers = curmailers;
1116 newmailer->conf.file = strdup(file);
1117 newmailer->conf.line = linenum;
1118
1119 newmailer->id = strdup(args[1]);
1120
Willy Tarreau5fc93282020-09-16 18:25:03 +02001121 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001122 &errmsg, NULL, NULL,
1123 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 +09001124 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001125 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001126 err_code |= ERR_ALERT | ERR_FATAL;
1127 goto out;
1128 }
1129
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001130 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001131 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1132 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001133 err_code |= ERR_ALERT | ERR_FATAL;
1134 goto out;
1135 }
1136
Simon Horman0d16a402015-01-30 11:22:58 +09001137 newmailer->addr = *sk;
1138 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001139 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001140 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001141 }
1142 else if (strcmp(args[0], "timeout") == 0) {
1143 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001144 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1145 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001146 err_code |= ERR_ALERT | ERR_FATAL;
1147 goto out;
1148 }
1149 else if (strcmp(args[1], "mail") == 0) {
1150 const char *res;
1151 unsigned int timeout_mail;
1152 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001153 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1154 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001155 err_code |= ERR_ALERT | ERR_FATAL;
1156 goto out;
1157 }
1158 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001159 if (res == PARSE_TIME_OVER) {
1160 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1161 file, linenum, args[2], args[0], args[1]);
1162 err_code |= ERR_ALERT | ERR_FATAL;
1163 goto out;
1164 }
1165 else if (res == PARSE_TIME_UNDER) {
1166 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1167 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001168 err_code |= ERR_ALERT | ERR_FATAL;
1169 goto out;
1170 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001171 else if (res) {
1172 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1173 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001174 err_code |= ERR_ALERT | ERR_FATAL;
1175 goto out;
1176 }
1177 curmailers->timeout.mail = timeout_mail;
1178 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001179 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001180 file, linenum, args[0], args[1]);
1181 err_code |= ERR_ALERT | ERR_FATAL;
1182 goto out;
1183 }
1184 }
Simon Horman0d16a402015-01-30 11:22:58 +09001185 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001186 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001187 err_code |= ERR_ALERT | ERR_FATAL;
1188 goto out;
1189 }
1190
1191out:
1192 free(errmsg);
1193 return err_code;
1194}
1195
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001196void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001197{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001198 ha_free(&p->email_alert.mailers.name);
1199 ha_free(&p->email_alert.from);
1200 ha_free(&p->email_alert.to);
1201 ha_free(&p->email_alert.myhostname);
Simon Horman9dc49962015-01-30 11:22:59 +09001202}
1203
Willy Tarreaubaaee002006-06-26 02:48:02 +02001204
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001205int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001206cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1207{
Willy Tarreaue5733232019-05-22 19:24:06 +02001208#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001209 const char *err;
1210 const char *item = args[0];
1211
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001212 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001213 return 0;
1214 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001215 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001216 size_t idx = 1;
1217 const char *current;
1218 while (*(current = args[idx++])) {
1219 err = invalid_char(current);
1220 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001221 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1222 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001223 return ERR_ALERT | ERR_FATAL;
1224 }
1225
1226 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001227 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1228 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001229 return ERR_ALERT | ERR_FATAL;
1230 }
1231 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001232 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1233 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001234 return ERR_ALERT | ERR_FATAL;
1235 }
1236 }
1237 }
1238
1239 return 0;
1240#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001241 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1242 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001243 return ERR_ALERT | ERR_FATAL;
1244#endif
1245}
1246
1247int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001248cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1249{
1250
1251 int err_code = 0;
1252 const char *err;
1253
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001254 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001255 struct userlist *newul;
1256
1257 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001258 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1259 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001260 err_code |= ERR_ALERT | ERR_FATAL;
1261 goto out;
1262 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001263 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1264 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001265
1266 err = invalid_char(args[1]);
1267 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001268 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1269 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001270 err_code |= ERR_ALERT | ERR_FATAL;
1271 goto out;
1272 }
1273
1274 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001275 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001276 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1277 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001278 err_code |= ERR_WARN;
1279 goto out;
1280 }
1281
Vincent Bernat02779b62016-04-03 13:48:43 +02001282 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001283 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001284 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001285 err_code |= ERR_ALERT | ERR_ABORT;
1286 goto out;
1287 }
1288
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001289 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001290 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001291 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001292 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001293 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001294 goto out;
1295 }
1296
1297 newul->next = userlist;
1298 userlist = newul;
1299
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001300 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001301 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001302 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001303 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001304
1305 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001306 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1307 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001308 err_code |= ERR_ALERT | ERR_FATAL;
1309 goto out;
1310 }
1311
1312 err = invalid_char(args[1]);
1313 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001314 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1315 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001316 err_code |= ERR_ALERT | ERR_FATAL;
1317 goto out;
1318 }
1319
William Lallemand4ac9f542015-05-28 18:03:51 +02001320 if (!userlist)
1321 goto out;
1322
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001323 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001324 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001325 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1326 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001327 err_code |= ERR_ALERT;
1328 goto out;
1329 }
1330
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001331 ag = calloc(1, sizeof(*ag));
1332 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001333 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001334 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001335 goto out;
1336 }
1337
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001338 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001339 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001340 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001341 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001342 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001343 goto out;
1344 }
1345
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001346 cur_arg = 2;
1347
1348 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001349 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001350 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001351 cur_arg += 2;
1352 continue;
1353 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001354 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1355 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001356 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001357 free(ag->groupusers);
1358 free(ag->name);
1359 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001360 goto out;
1361 }
1362 }
1363
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001364 ag->next = userlist->groups;
1365 userlist->groups = ag;
1366
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001367 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001368 struct auth_users *newuser;
1369 int cur_arg;
1370
1371 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001372 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1373 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001374 err_code |= ERR_ALERT | ERR_FATAL;
1375 goto out;
1376 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001377 if (!userlist)
1378 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001379
1380 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001381 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001382 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1383 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001384 err_code |= ERR_ALERT;
1385 goto out;
1386 }
1387
Vincent Bernat02779b62016-04-03 13:48:43 +02001388 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001389 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001390 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001391 err_code |= ERR_ALERT | ERR_ABORT;
1392 goto out;
1393 }
1394
1395 newuser->user = strdup(args[1]);
1396
1397 newuser->next = userlist->users;
1398 userlist->users = newuser;
1399
1400 cur_arg = 2;
1401
1402 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001403 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001404#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001405 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001406 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1407 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001408 err_code |= ERR_ALERT | ERR_FATAL;
1409 goto out;
1410 }
1411#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001412 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1413 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001414 err_code |= ERR_ALERT;
1415#endif
1416 newuser->pass = strdup(args[cur_arg + 1]);
1417 cur_arg += 2;
1418 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001419 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001420 newuser->pass = strdup(args[cur_arg + 1]);
1421 newuser->flags |= AU_O_INSECURE;
1422 cur_arg += 2;
1423 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001424 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001425 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001426 cur_arg += 2;
1427 continue;
1428 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001429 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1430 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001431 err_code |= ERR_ALERT | ERR_FATAL;
1432 goto out;
1433 }
1434 }
1435 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001436 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 +01001437 err_code |= ERR_ALERT | ERR_FATAL;
1438 }
1439
1440out:
1441 return err_code;
1442}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001443
Christopher Faulet79bdef32016-11-04 22:36:15 +01001444int
1445cfg_parse_scope(const char *file, int linenum, char *line)
1446{
1447 char *beg, *end, *scope = NULL;
1448 int err_code = 0;
1449 const char *err;
1450
1451 beg = line + 1;
1452 end = strchr(beg, ']');
1453
1454 /* Detect end of scope declaration */
1455 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001456 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1457 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001458 err_code |= ERR_ALERT | ERR_FATAL;
1459 goto out;
1460 }
1461
1462 /* Get scope name and check its validity */
1463 scope = my_strndup(beg, end-beg);
1464 err = invalid_char(scope);
1465 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001466 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1467 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001468 err_code |= ERR_ALERT | ERR_ABORT;
1469 goto out;
1470 }
1471
1472 /* Be sure to have a scope declaration alone on its line */
1473 line = end+1;
1474 while (isspace((unsigned char)*line))
1475 line++;
1476 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001477 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1478 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001479 err_code |= ERR_ALERT | ERR_ABORT;
1480 goto out;
1481 }
1482
1483 /* We have a valid scope declaration, save it */
1484 free(cfg_scope);
1485 cfg_scope = scope;
1486 scope = NULL;
1487
1488 out:
1489 free(scope);
1490 return err_code;
1491}
1492
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001493int
1494cfg_parse_track_sc_num(unsigned int *track_sc_num,
1495 const char *arg, const char *end, char **errmsg)
1496{
1497 const char *p;
1498 unsigned int num;
1499
1500 p = arg;
1501 num = read_uint64(&arg, end);
1502
1503 if (arg != end) {
1504 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1505 return -1;
1506 }
1507
1508 if (num >= MAX_SESS_STKCTR) {
1509 memprintf(errmsg, "%u track-sc number exceeding "
1510 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1511 return -1;
1512 }
1513
1514 *track_sc_num = num;
1515 return 0;
1516}
1517
Willy Tarreaubaaee002006-06-26 02:48:02 +02001518/*
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001519 * Detect a global section after a non-global one and output a diagnostic
1520 * warning.
1521 */
1522static void check_section_position(char *section_name,
1523 const char *file, int linenum,
1524 int *non_global_parsed)
1525{
1526 if (!strcmp(section_name, "global")) {
1527 if (*non_global_parsed == 1)
1528 _ha_diag_warning("parsing [%s:%d] : global section detected after a non-global one, the prevalence of their statements is unspecified\n", file, linenum);
1529 }
1530 else if (*non_global_parsed == 0) {
1531 *non_global_parsed = 1;
1532 }
1533}
1534
Willy Tarreau8a022d52021-04-27 20:29:11 +02001535/* apply the current default_path setting for config file <file>, and
1536 * optionally replace the current path to <origin> if not NULL while the
1537 * default-path mode is set to "origin". Errors are returned into an
1538 * allocated string passed to <err> if it's not NULL. Returns 0 on failure
1539 * or non-zero on success.
1540 */
1541static int cfg_apply_default_path(const char *file, const char *origin, char **err)
1542{
1543 const char *beg, *end;
1544
1545 /* make path start at <beg> and end before <end>, and switch it to ""
1546 * if no slash was passed.
1547 */
1548 beg = file;
1549 end = strrchr(beg, '/');
1550 if (!end)
1551 end = beg;
1552
1553 if (!*initial_cwd) {
1554 if (getcwd(initial_cwd, sizeof(initial_cwd)) == NULL) {
1555 if (err)
1556 memprintf(err, "Impossible to retrieve startup directory name: %s", strerror(errno));
1557 return 0;
1558 }
1559 }
1560 else if (chdir(initial_cwd) == -1) {
1561 if (err)
1562 memprintf(err, "Impossible to get back to initial directory '%s': %s", initial_cwd, strerror(errno));
1563 return 0;
1564 }
1565
1566 /* OK now we're (back) to initial_cwd */
1567
1568 switch (default_path_mode) {
1569 case DEFAULT_PATH_CURRENT:
1570 /* current_cwd never set, nothing to do */
1571 return 1;
1572
1573 case DEFAULT_PATH_ORIGIN:
1574 /* current_cwd set in the config */
1575 if (origin &&
1576 snprintf(current_cwd, sizeof(current_cwd), "%s", origin) > sizeof(current_cwd)) {
1577 if (err)
1578 memprintf(err, "Absolute path too long: '%s'", origin);
1579 return 0;
1580 }
1581 break;
1582
1583 case DEFAULT_PATH_CONFIG:
1584 if (end - beg >= sizeof(current_cwd)) {
1585 if (err)
1586 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1587 return 0;
1588 }
1589 memcpy(current_cwd, beg, end - beg);
1590 current_cwd[end - beg] = 0;
1591 break;
1592
1593 case DEFAULT_PATH_PARENT:
1594 if (end - beg + 3 >= sizeof(current_cwd)) {
1595 if (err)
1596 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1597 return 0;
1598 }
1599 memcpy(current_cwd, beg, end - beg);
1600 if (end > beg)
1601 memcpy(current_cwd + (end - beg), "/..\0", 4);
1602 else
1603 memcpy(current_cwd + (end - beg), "..\0", 3);
1604 break;
1605 }
1606
1607 if (*current_cwd && chdir(current_cwd) == -1) {
1608 if (err)
1609 memprintf(err, "Impossible to get back to directory '%s': %s", initial_cwd, strerror(errno));
1610 return 0;
1611 }
1612
1613 return 1;
1614}
1615
1616/* parses a global "default-path" directive. */
1617static int cfg_parse_global_def_path(char **args, int section_type, struct proxy *curpx,
1618 const struct proxy *defpx, const char *file, int line,
1619 char **err)
1620{
1621 int ret = -1;
1622
1623 /* "current", "config", "parent", "origin <path>" */
1624
1625 if (strcmp(args[1], "current") == 0)
1626 default_path_mode = DEFAULT_PATH_CURRENT;
1627 else if (strcmp(args[1], "config") == 0)
1628 default_path_mode = DEFAULT_PATH_CONFIG;
1629 else if (strcmp(args[1], "parent") == 0)
1630 default_path_mode = DEFAULT_PATH_PARENT;
1631 else if (strcmp(args[1], "origin") == 0)
1632 default_path_mode = DEFAULT_PATH_ORIGIN;
1633 else {
1634 memprintf(err, "%s default-path mode '%s' for '%s', supported modes include 'current', 'config', 'parent', and 'origin'.", *args[1] ? "unsupported" : "missing", args[1], args[0]);
1635 goto end;
1636 }
1637
1638 if (default_path_mode == DEFAULT_PATH_ORIGIN) {
1639 if (!*args[2]) {
1640 memprintf(err, "'%s %s' expects a directory as an argument.", args[0], args[1]);
1641 goto end;
1642 }
1643 if (!cfg_apply_default_path(file, args[2], err)) {
1644 memprintf(err, "couldn't set '%s' to origin '%s': %s.", args[0], args[2], *err);
1645 goto end;
1646 }
1647 }
1648 else if (!cfg_apply_default_path(file, NULL, err)) {
1649 memprintf(err, "couldn't set '%s' to '%s': %s.", args[0], args[1], *err);
1650 goto end;
1651 }
1652
1653 /* note that once applied, the path is immediately updated */
1654
1655 ret = 0;
1656 end:
1657 return ret;
1658}
1659
Willy Tarreau732525f2021-05-06 15:49:04 +02001660/* looks up a cond predicate matching the keyword in <str>, possibly followed
1661 * by a parenthesis. Returns a pointer to it or NULL if not found.
1662 */
1663static const struct cond_pred_kw *cfg_lookup_cond_pred(const char *str)
1664{
1665 const struct cond_pred_kw *ret;
1666 int len = strcspn(str, " (");
1667
1668 for (ret = &cond_predicates[0]; ret->word; ret++) {
1669 if (len != strlen(ret->word))
1670 continue;
1671 if (strncmp(str, ret->word, len) != 0)
1672 continue;
1673 return ret;
1674 }
1675 return NULL;
1676}
1677
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001678/* evaluate a condition on a .if/.elif line. The condition is already tokenized
1679 * in <err>. Returns -1 on error (in which case err is filled with a message,
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001680 * and only in this case), 0 if the condition is false, 1 if it's true. If
1681 * <errptr> is not NULL, it's set to the first invalid character on error.
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001682 */
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001683static int cfg_eval_condition(char **args, char **err, const char **errptr)
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001684{
Willy Tarreau732525f2021-05-06 15:49:04 +02001685 const struct cond_pred_kw *cond_pred = NULL;
1686 const char *end_ptr;
1687 struct arg *argp = NULL;
1688 int err_arg;
1689 int nbargs;
1690 int ret = -1;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001691 char *end;
1692 long val;
1693
1694 if (!*args[0]) /* note: empty = false */
1695 return 0;
1696
1697 val = strtol(args[0], &end, 0);
1698 if (end && *end == '\0')
1699 return val != 0;
1700
Willy Tarreau732525f2021-05-06 15:49:04 +02001701 /* below we'll likely all make_arg_list() so we must return only via
1702 * the <done> label which frees the arg list.
1703 */
1704 cond_pred = cfg_lookup_cond_pred(args[0]);
1705 if (cond_pred) {
1706 nbargs = make_arg_list(args[0] + strlen(cond_pred->word), -1,
1707 cond_pred->arg_mask, &argp, err,
1708 &end_ptr, &err_arg, NULL);
1709
1710 if (nbargs < 0) {
1711 memprintf(err, "%s in argument %d of predicate '%s' used in conditional expression", *err, err_arg, cond_pred->word);
1712 if (errptr)
1713 *errptr = end_ptr;
1714 goto done;
1715 }
1716
1717 /* here we know we have a valid predicate with <nbargs> valid
1718 * arguments, placed in <argp> (which we'll need to free).
1719 */
1720 switch (cond_pred->prd) {
Willy Tarreau42ed14b2021-05-06 15:55:14 +02001721 case CFG_PRED_DEFINED: // checks if arg exists as an environment variable
1722 ret = getenv(argp[0].data.str.area) != NULL;
1723 goto done;
1724
Willy Tarreau6492e872021-05-06 16:10:09 +02001725 case CFG_PRED_STREQ: // checks if the two arg are equal
1726 ret = strcmp(argp[0].data.str.area, argp[1].data.str.area) == 0;
1727 goto done;
1728
1729 case CFG_PRED_STRNEQ: // checks if the two arg are different
1730 ret = strcmp(argp[0].data.str.area, argp[1].data.str.area) != 0;
1731 goto done;
1732
Willy Tarreau732525f2021-05-06 15:49:04 +02001733 default:
1734 memprintf(err, "internal error: unhandled conditional expression predicate '%s'", cond_pred->word);
1735 if (errptr)
1736 *errptr = args[0];
1737 goto done;
1738 }
1739 }
1740
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001741 memprintf(err, "unparsable conditional expression '%s'", args[0]);
1742 if (errptr)
1743 *errptr = args[0];
Willy Tarreau732525f2021-05-06 15:49:04 +02001744 done:
1745 for (nbargs = 0; argp && argp[nbargs].type != ARGT_STOP; nbargs++) {
1746 if (argp[nbargs].type == ARGT_STR)
1747 free(argp[nbargs].data.str.area);
1748 }
1749 free(argp);
1750 return ret;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001751}
Willy Tarreau8a022d52021-04-27 20:29:11 +02001752
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001753/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001754 * This function reads and parses the configuration file given in the argument.
Willy Tarreauda543e12021-04-27 18:30:28 +02001755 * Returns the error code, 0 if OK, -1 if the config file couldn't be opened,
1756 * or any combination of :
Willy Tarreau058e9072009-07-20 09:30:05 +02001757 * - ERR_ABORT: must abort ASAP
1758 * - ERR_FATAL: we can continue parsing but not start the service
1759 * - ERR_WARN: a warning has been emitted
1760 * - ERR_ALERT: an alert has been emitted
1761 * Only the two first ones can stop processing, the two others are just
1762 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001763 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001764int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001765{
Willy Tarreauda543e12021-04-27 18:30:28 +02001766 char *thisline = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001767 int linesize = LINESIZE;
Willy Tarreauda543e12021-04-27 18:30:28 +02001768 FILE *f = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001769 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001770 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001771 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001772 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001773 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001774 char *outline = NULL;
1775 size_t outlen = 0;
1776 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001777 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001778 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001779 int nested_cond_lvl = 0;
1780 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001781 int non_global_section_parsed = 0;
Willy Tarreau8a022d52021-04-27 20:29:11 +02001782 char *errmsg = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001783
Willy Tarreau51508052021-05-06 10:04:45 +02001784 global.cfg_curr_line = 0;
1785 global.cfg_curr_file = file;
1786
William Lallemand64e84512015-05-12 14:25:37 +02001787 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Willy Tarreauda543e12021-04-27 18:30:28 +02001788 ha_alert("Out of memory trying to allocate a buffer for a configuration line.\n");
1789 err_code = -1;
1790 goto err;
William Lallemand64e84512015-05-12 14:25:37 +02001791 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001792
Willy Tarreauda543e12021-04-27 18:30:28 +02001793 if ((f = fopen(file,"r")) == NULL) {
1794 err_code = -1;
1795 goto err;
David Carlier97880bb2016-04-08 10:35:26 +01001796 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001797
Willy Tarreau8a022d52021-04-27 20:29:11 +02001798 /* change to the new dir if required */
1799 if (!cfg_apply_default_path(file, NULL, &errmsg)) {
1800 ha_alert("parsing [%s:%d]: failed to apply default-path: %s.\n", file, linenum, errmsg);
1801 free(errmsg);
1802 err_code = -1;
1803 goto err;
1804 }
1805
William Lallemandb2f07452015-05-12 14:27:13 +02001806next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001807 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001808 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001809 char *end;
1810 char *args[MAX_LINE_ARGS + 1];
1811 char *line = thisline;
1812
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001813 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001814 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1815 file, linenum, (missing_lf + 1));
1816 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001817 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001818 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001819 }
1820
Willy Tarreaubaaee002006-06-26 02:48:02 +02001821 linenum++;
Willy Tarreau51508052021-05-06 10:04:45 +02001822 global.cfg_curr_line = linenum;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001823
Willy Tarreau32234e72020-06-16 17:14:33 +02001824 if (fatal >= 50) {
1825 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1826 break;
1827 }
1828
Willy Tarreaubaaee002006-06-26 02:48:02 +02001829 end = line + strlen(line);
1830
William Lallemand64e84512015-05-12 14:25:37 +02001831 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001832 /* Check if we reached the limit and the last char is not \n.
1833 * Watch out for the last line without the terminating '\n'!
1834 */
William Lallemand64e84512015-05-12 14:25:37 +02001835 char *newline;
1836 int newlinesize = linesize * 2;
1837
1838 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1839 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001840 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1841 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001842 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001843 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001844 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001845 continue;
1846 }
1847
1848 readbytes = linesize - 1;
1849 linesize = newlinesize;
1850 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001851 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001852 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001853 }
1854
William Lallemand64e84512015-05-12 14:25:37 +02001855 readbytes = 0;
1856
Willy Tarreau08488f62020-06-26 17:24:54 +02001857 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001858 /* kill trailing LF */
1859 *(end - 1) = 0;
1860 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001861 else {
1862 /* mark this line as truncated */
1863 missing_lf = end - line;
1864 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001865
Willy Tarreaubaaee002006-06-26 02:48:02 +02001866 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001867 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001868 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001869
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001870 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001871 err_code |= cfg_parse_scope(file, linenum, line);
1872 goto next_line;
1873 }
1874
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001875 while (1) {
1876 uint32_t err;
1877 char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001878
Willy Tarreau61dd44b2020-06-25 07:35:42 +02001879 arg = MAX_LINE_ARGS + 1;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001880 outlen = outlinesize;
1881 err = parse_line(line, outline, &outlen, args, &arg,
1882 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001883 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1884 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001885
1886 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001887 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1888
1889 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1890 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001891 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001892 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001893 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001894 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001895
1896 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001897 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1898
1899 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1900 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001901 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001902 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001903 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001904 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001905
1906 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001907 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1908
1909 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1910 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001911 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001912 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001913 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001914 }
William Lallemandb2f07452015-05-12 14:27:13 +02001915
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001916 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001917 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1918
1919 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1920 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001921 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001922 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001923 goto next_line;
1924 }
William Lallemandb2f07452015-05-12 14:27:13 +02001925
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001926 if (err & PARSE_ERR_WRONG_EXPAND) {
1927 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1928
1929 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1930 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1931 err_code |= ERR_ALERT | ERR_FATAL;
1932 fatal++;
1933 goto next_line;
1934 }
1935
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001936 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1937 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001938 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001939 if (outline == NULL) {
1940 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1941 file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001942 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001943 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001944 goto next_line;
William Lallemandb2f07452015-05-12 14:27:13 +02001945 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001946 /* try again */
1947 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001948 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001949
1950 if (err & PARSE_ERR_TOOMANY) {
1951 /* only check this *after* being sure the output is allocated */
1952 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1953 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1954 err_code |= ERR_ALERT | ERR_FATAL;
1955 fatal++;
1956 goto next_line;
1957 }
1958
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001959 /* everything's OK */
1960 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001961 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001962
1963 /* empty line */
1964 if (!**args)
1965 continue;
1966
Willy Tarreau4b103022021-02-12 17:59:10 +01001967 /* check for config macros */
1968 if (*args[0] == '.') {
1969 if (strcmp(args[0], ".if") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001970 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001971 char *errmsg = NULL;
1972 int cond;
1973
Willy Tarreau4b103022021-02-12 17:59:10 +01001974 nested_cond_lvl++;
1975 if (nested_cond_lvl >= MAXNESTEDCONDS) {
1976 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
1977 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1978 goto err;
1979 }
1980
Willy Tarreau6e647c92021-05-06 08:46:11 +02001981 if (nested_cond_lvl > 1 &&
1982 (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
1983 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
1984 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
1985 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
1986 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP)) {
Willy Tarreau4b103022021-02-12 17:59:10 +01001987 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001988 goto next_line;
1989 }
1990
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001991 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001992 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001993 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 76);
1994
1995 ha_alert("parsing [%s:%d]: %s in '.if' at position %d:\n .if %s\n %*s\n",
1996 file, linenum, errmsg,
1997 (int)(errptr-args[1]+1), args[1], (int)(newpos+5), "^");
1998
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001999 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01002000 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2001 goto err;
2002 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002003
2004 if (cond)
2005 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
2006 else
2007 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
2008
Willy Tarreau4b103022021-02-12 17:59:10 +01002009 goto next_line;
2010 }
2011 else if (strcmp(args[0], ".elif") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002012 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002013 char *errmsg = NULL;
2014 int cond;
2015
Willy Tarreau4b103022021-02-12 17:59:10 +01002016 if (!nested_cond_lvl) {
2017 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
2018 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2019 goto err;
2020 }
2021
2022 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2023 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2024 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
2025 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2026 goto err;
2027 }
2028
2029 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2030 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
Willy Tarreauf67ff022021-05-06 08:48:09 +02002031 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
Willy Tarreau4b103022021-02-12 17:59:10 +01002032 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2033 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002034 goto next_line;
2035 }
2036
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002037 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002038 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002039 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 74);
2040
2041 ha_alert("parsing [%s:%d]: %s in '.elif' at position %d:\n .elif %s\n %*s\n",
2042 file, linenum, errmsg,
2043 (int)(errptr-args[1]+1), args[1], (int)(newpos+7), "^");
2044
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002045 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01002046 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2047 goto err;
2048 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002049
2050 if (cond)
2051 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
2052 else
2053 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
2054
Willy Tarreau4b103022021-02-12 17:59:10 +01002055 goto next_line;
2056 }
2057 else if (strcmp(args[0], ".else") == 0) {
2058 if (!nested_cond_lvl) {
2059 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
2060 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2061 goto err;
2062 }
2063
2064 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2065 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2066 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
2067 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2068 goto err;
2069 }
2070
2071 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2072 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2073 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
2074 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2075 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
2076 } else {
2077 /* otherwise we take the "else" */
2078 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
2079 }
2080 goto next_line;
2081 }
2082 else if (strcmp(args[0], ".endif") == 0) {
2083 if (!nested_cond_lvl) {
2084 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
2085 err_code |= ERR_ALERT | ERR_FATAL;
2086 fatal++;
2087 break;
2088 }
2089 nested_cond_lvl--;
2090 goto next_line;
2091 }
2092 }
2093
2094 if (nested_cond_lvl &&
2095 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
2096 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2097 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
2098 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
2099 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
2100 /* The current block is masked out by the conditions */
2101 goto next_line;
2102 }
2103
2104 /* .warning/.error/.notice */
2105 if (*args[0] == '.') {
2106 if (strcmp(args[0], ".alert") == 0) {
2107 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2108 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2109 goto err;
2110 }
2111 else if (strcmp(args[0], ".warning") == 0) {
2112 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2113 err_code |= ERR_WARN;
2114 goto next_line;
2115 }
2116 else if (strcmp(args[0], ".notice") == 0) {
2117 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2118 goto next_line;
2119 }
2120 else {
2121 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
2122 err_code |= ERR_ALERT | ERR_FATAL;
2123 fatal++;
2124 break;
2125 }
2126 }
2127
Willy Tarreau3842f002009-06-14 11:39:52 +02002128 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002129 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02002130 char *tmp;
2131
Willy Tarreau3842f002009-06-14 11:39:52 +02002132 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002133 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002134 for (arg=0; *args[arg+1]; arg++)
2135 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002136 *tmp = '\0'; // fix the next arg to \0
2137 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002138 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002139 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02002140 kwm = KWM_DEF;
2141 for (arg=0; *args[arg+1]; arg++)
2142 args[arg] = args[arg+1]; // shift args after inversion
2143 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002144
William Dauchyec730982019-10-27 20:08:10 +01002145 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2146 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002147 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002148 strcmp(args[0], "insecure-fork-wanted") != 0 &&
2149 strcmp(args[0], "numa-cpu-mapping") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002150 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002151 "supported only for options, log, busy-polling, "
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002152 "set-dumpable, strict-limits, insecure-fork-wanted "
2153 "and numa-cpu-mapping.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002154 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002155 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002156 }
2157
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002158 /* detect section start */
2159 list_for_each_entry(ics, &sections, list) {
2160 if (strcmp(args[0], ics->section_name) == 0) {
2161 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002162 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002163 cs = ics;
Willy Tarreau51508052021-05-06 10:04:45 +02002164 free(global.cfg_curr_section);
2165 global.cfg_curr_section = strdup(*args[1] ? args[1] : args[0]);
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02002166
2167 if (global.mode & MODE_DIAG) {
2168 check_section_position(args[0], file, linenum,
2169 &non_global_section_parsed);
2170 }
2171
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002172 break;
2173 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002174 }
2175
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002176 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002177 int status;
2178
2179 status = pcs->post_section_parser();
2180 err_code |= status;
2181 if (status & ERR_FATAL)
2182 fatal++;
2183
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002184 if (err_code & ERR_ABORT)
2185 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002186 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002187 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002188
William Lallemandd2ff56d2017-10-16 11:06:50 +02002189 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002190 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002191 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002192 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002193 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002194 int status;
2195
2196 status = cs->section_parser(file, linenum, args, kwm);
2197 err_code |= status;
2198 if (status & ERR_FATAL)
2199 fatal++;
2200
William Lallemandd2ff56d2017-10-16 11:06:50 +02002201 if (err_code & ERR_ABORT)
2202 goto err;
2203 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002204 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002205
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002206 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002207 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2208 file, linenum, (missing_lf + 1));
2209 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002210 }
2211
Willy Tarreau51508052021-05-06 10:04:45 +02002212 ha_free(&global.cfg_curr_section);
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002213 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002214 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002215
Willy Tarreau4b103022021-02-12 17:59:10 +01002216 if (nested_cond_lvl) {
2217 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
2218 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2219 }
Willy Tarreau8a022d52021-04-27 20:29:11 +02002220
2221 if (*initial_cwd && chdir(initial_cwd) == -1) {
2222 ha_alert("Impossible to get back to initial directory '%s' : %s\n", initial_cwd, strerror(errno));
2223 err_code |= ERR_ALERT | ERR_FATAL;
2224 }
2225
William Lallemandd2ff56d2017-10-16 11:06:50 +02002226err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002227 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01002228 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002229 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002230 free(outline);
Willy Tarreau51508052021-05-06 10:04:45 +02002231 global.cfg_curr_line = 0;
2232 global.cfg_curr_file = NULL;
2233
Willy Tarreauda543e12021-04-27 18:30:28 +02002234 if (f)
2235 fclose(f);
2236
Willy Tarreau058e9072009-07-20 09:30:05 +02002237 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002238}
2239
Willy Tarreau64ab6072014-09-16 12:17:36 +02002240/* This function propagates processes from frontend <from> to backend <to> so
2241 * that it is always guaranteed that a backend pointed to by a frontend is
2242 * bound to all of its processes. After that, if the target is a "listen"
2243 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002244 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002245 * checked first to ensure that <to> is already bound to all processes of
2246 * <from>, there is no risk of looping and we ensure to follow the shortest
2247 * path to the destination.
2248 *
2249 * It is possible to set <to> to NULL for the first call so that the function
2250 * takes care of visiting the initial frontend in <from>.
2251 *
2252 * It is important to note that the function relies on the fact that all names
2253 * have already been resolved.
2254 */
2255void propagate_processes(struct proxy *from, struct proxy *to)
2256{
2257 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002258
2259 if (to) {
2260 /* check whether we need to go down */
2261 if (from->bind_proc &&
2262 (from->bind_proc & to->bind_proc) == from->bind_proc)
2263 return;
2264
2265 if (!from->bind_proc && !to->bind_proc)
2266 return;
2267
2268 to->bind_proc = from->bind_proc ?
2269 (to->bind_proc | from->bind_proc) : 0;
2270
2271 /* now propagate down */
2272 from = to;
2273 }
2274
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002275 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002276 return;
2277
Willy Tarreauc3914d42020-09-24 08:39:22 +02002278 if (from->disabled)
Willy Tarreauf6b70012014-12-18 14:00:43 +01002279 return;
2280
Willy Tarreau64ab6072014-09-16 12:17:36 +02002281 /* default_backend */
2282 if (from->defbe.be)
2283 propagate_processes(from, from->defbe.be);
2284
2285 /* use_backend */
2286 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002287 if (rule->dynamic)
2288 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002289 to = rule->be.backend;
2290 propagate_processes(from, to);
2291 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002292}
2293
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002294#if defined(__linux__) && defined USE_CPU_AFFINITY
2295/* filter directory name of the pattern node<X> */
2296static int numa_filter(const struct dirent *dir)
2297{
2298 char *endptr;
2299
2300 /* dir name must start with "node" prefix */
2301 if (strncmp(dir->d_name, "node", 4))
2302 return 0;
2303
2304 /* dir name must be at least 5 characters long */
2305 if (!dir->d_name[4])
2306 return 0;
2307
2308 /* dir name must end with a numeric id */
2309 if (strtol(&dir->d_name[4], &endptr, 10) < 0 || *endptr)
2310 return 0;
2311
2312 /* all tests succeeded */
2313 return 1;
2314}
2315
2316/* Parse a linux cpu map string representing to a numeric cpu mask map
2317 * The cpu map string is a list of 4-byte hex strings separated by commas, with
2318 * most-significant byte first, one bit per cpu number.
2319 */
2320static void parse_cpumap(char *cpumap_str, struct hap_cpuset *cpu_set)
2321{
2322 unsigned long cpumap;
2323 char *start, *endptr, *comma;
2324 int i, j;
2325
2326 ha_cpuset_zero(cpu_set);
2327
2328 i = 0;
2329 do {
2330 /* reverse-search for a comma, parse the string after the comma
2331 * or at the beginning if no comma found
2332 */
2333 comma = strrchr(cpumap_str, ',');
2334 start = comma ? comma + 1 : cpumap_str;
2335
2336 cpumap = strtoul(start, &endptr, 16);
2337 for (j = 0; cpumap; cpumap >>= 1, ++j) {
2338 if (cpumap & 0x1)
2339 ha_cpuset_set(cpu_set, j + i * 32);
2340 }
2341
2342 if (comma)
2343 *comma = '\0';
2344 ++i;
2345 } while (comma);
2346}
2347
2348/* Read the first line of a file from <path> into the trash buffer.
2349 * Returns 0 on success, otherwise non-zero.
2350 */
2351static int read_file_to_trash(const char *path)
2352{
2353 FILE *file;
2354 int ret = 1;
2355
2356 file = fopen(path, "r");
2357 if (file) {
2358 if (fgets(trash.area, trash.size, file))
2359 ret = 0;
2360
2361 fclose(file);
2362 }
2363
2364 return ret;
2365}
2366
2367/* Inspect the cpu topology of the machine on startup. If a multi-socket
2368 * machine is detected, try to bind on the first node with active cpu. This is
2369 * done to prevent an impact on the overall performance when the topology of
2370 * the machine is unknown. This function is not called if one of the conditions
2371 * is met :
2372 * - a non-null nbthread directive is active
2373 * - a restrictive cpu-map directive is active
2374 * - a restrictive affinity is already applied, for example via taskset
2375 *
2376 * Returns the count of cpus selected. If no automatic binding was required or
2377 * an error occurred and the topology is unknown, 0 is returned.
2378 */
2379static int numa_detect_topology()
2380{
2381 struct dirent **node_dirlist;
2382 int node_dirlist_size;
2383
2384 struct hap_cpuset active_cpus, node_cpu_set;
2385 const char *parse_cpu_set_args[2];
2386 char cpumap_path[PATH_MAX];
2387 char *err = NULL;
2388
2389 /* node_cpu_set count is used as return value */
2390 ha_cpuset_zero(&node_cpu_set);
2391
2392 /* 1. count the sysfs node<X> directories */
Willy Tarreau07bf21c2021-04-23 19:09:16 +02002393 node_dirlist = NULL;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002394 node_dirlist_size = scandir(NUMA_DETECT_SYSTEM_SYSFS_PATH"/node", &node_dirlist, numa_filter, alphasort);
2395 if (node_dirlist_size <= 1)
2396 goto free_scandir_entries;
2397
2398 /* 2. read and parse the list of currently online cpu */
2399 if (read_file_to_trash(NUMA_DETECT_SYSTEM_SYSFS_PATH"/cpu/online")) {
2400 ha_notice("Cannot read online CPUs list, will not try to refine binding\n");
2401 goto free_scandir_entries;
2402 }
2403
2404 parse_cpu_set_args[0] = trash.area;
2405 parse_cpu_set_args[1] = "\0";
2406 if (parse_cpu_set(parse_cpu_set_args, &active_cpus, 1, &err)) {
2407 ha_notice("Cannot read online CPUs list: '%s'. Will not try to refine binding\n", err);
2408 free(err);
2409 goto free_scandir_entries;
2410 }
2411
2412 /* 3. loop through nodes dirs and find the first one with active cpus */
2413 while (node_dirlist_size--) {
2414 const char *node = node_dirlist[node_dirlist_size]->d_name;
2415 ha_cpuset_zero(&node_cpu_set);
2416
2417 snprintf(cpumap_path, PATH_MAX, "%s/node/%s/cpumap",
2418 NUMA_DETECT_SYSTEM_SYSFS_PATH, node);
2419
2420 if (read_file_to_trash(cpumap_path)) {
2421 ha_notice("Cannot read CPUs list of '%s', will not select them to refine binding\n", node);
2422 free(node_dirlist[node_dirlist_size]);
2423 continue;
2424 }
2425
2426 parse_cpumap(trash.area, &node_cpu_set);
2427 ha_cpuset_and(&node_cpu_set, &active_cpus);
2428
2429 /* 5. set affinity on the first found node with active cpus */
2430 if (!ha_cpuset_count(&node_cpu_set)) {
2431 free(node_dirlist[node_dirlist_size]);
2432 continue;
2433 }
2434
2435 ha_diag_warning("Multi-socket cpu detected, automatically binding on active CPUs of '%s' (%u active cpu(s))\n", node, ha_cpuset_count(&node_cpu_set));
2436 if (sched_setaffinity(getpid(), sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2437 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2438
2439 /* clear the cpuset used as return value */
2440 ha_cpuset_zero(&node_cpu_set);
2441 }
2442
2443 free(node_dirlist[node_dirlist_size]);
2444 break;
2445 }
2446
2447 free_scandir_entries:
2448 while (node_dirlist_size-- > 0)
2449 free(node_dirlist[node_dirlist_size]);
2450 free(node_dirlist);
2451
2452 return ha_cpuset_count(&node_cpu_set);
2453}
2454#endif /* __linux__ && USE_CPU_AFFINITY */
2455
Willy Tarreaubb925012009-07-23 13:36:36 +02002456/*
2457 * Returns the error code, 0 if OK, or any combination of :
2458 * - ERR_ABORT: must abort ASAP
2459 * - ERR_FATAL: we can continue parsing but not start the service
2460 * - ERR_WARN: a warning has been emitted
2461 * - ERR_ALERT: an alert has been emitted
2462 * Only the two first ones can stop processing, the two others are just
2463 * indicators.
2464 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002465int check_config_validity()
2466{
2467 int cfgerr = 0;
2468 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002469 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002470 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002471 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002472 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002473 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002474 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002475 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01002476 struct resolvers *curr_resolvers = NULL;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002477 int i;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002478
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002479 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002480 /*
2481 * Now, check for the integrity of all that we have collected.
2482 */
2483
2484 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002485 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002486
Willy Tarreau193b8c62012-11-22 00:17:38 +01002487 if (!global.tune.max_http_hdr)
2488 global.tune.max_http_hdr = MAX_HTTP_HDR;
2489
2490 if (!global.tune.cookie_len)
2491 global.tune.cookie_len = CAPTURE_LEN;
2492
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002493 if (!global.tune.requri_len)
2494 global.tune.requri_len = REQURI_LEN;
2495
Willy Tarreau149ab772019-01-26 14:27:06 +01002496 if (!global.nbthread) {
2497 /* nbthread not set, thus automatic. In this case, and only if
2498 * running on a single process, we enable the same number of
2499 * threads as the number of CPUs the process is bound to. This
2500 * allows to easily control the number of threads using taskset.
2501 */
2502 global.nbthread = 1;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002503
Willy Tarreau149ab772019-01-26 14:27:06 +01002504#if defined(USE_THREAD)
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002505 if (global.nbproc == 1) {
2506 int numa_cores = 0;
2507#if defined(__linux__) && defined USE_CPU_AFFINITY
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002508 if (global.numa_cpu_mapping && !thread_cpu_mask_forced())
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002509 numa_cores = numa_detect_topology();
2510#endif
2511 global.nbthread = numa_cores ? numa_cores :
2512 thread_cpus_enabled_at_boot;
2513 }
Willy Tarreau149ab772019-01-26 14:27:06 +01002514 all_threads_mask = nbits(global.nbthread);
2515#endif
2516 }
2517
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002518 if (global.nbproc > 1 && global.nbthread > 1) {
2519 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2520 err_code |= ERR_ALERT | ERR_FATAL;
2521 goto out;
2522 }
2523
Willy Tarreaubafbe012017-11-24 17:34:44 +01002524 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002525
Willy Tarreaubafbe012017-11-24 17:34:44 +01002526 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002527
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002528 /* Post initialisation of the users and groups lists. */
2529 err_code = userlist_postinit();
2530 if (err_code != ERR_NONE)
2531 goto out;
2532
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002533 /* first, we will invert the proxy list order */
2534 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002535 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002536 struct proxy *next;
2537
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002538 next = proxies_list->next;
2539 proxies_list->next = curproxy;
2540 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002541 if (!next)
2542 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002543 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002544 }
2545
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002546 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002547 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002548 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002549 struct sticking_rule *mrule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002550 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002551 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002552 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002553
Willy Tarreau050536d2012-10-04 08:47:34 +02002554 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002555 /* proxy ID not set, use automatic numbering with first
2556 * spare entry starting with next_pxid.
2557 */
2558 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2559 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2560 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002561 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002562 next_pxid++;
2563
Willy Tarreau55ea7572007-06-17 19:56:27 +02002564
Willy Tarreauc3914d42020-09-24 08:39:22 +02002565 if (curproxy->disabled) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002566 /* ensure we don't keep listeners uselessly bound. We
2567 * can't disable their listeners yet (fdtab not
2568 * allocated yet) but let's skip them.
2569 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002570 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002571 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002572 curproxy->table->peers.p = NULL;
2573 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002574 continue;
2575 }
2576
Willy Tarreau102df612014-05-07 23:56:38 +02002577 /* Check multi-process mode compatibility for the current proxy */
2578
2579 if (curproxy->bind_proc) {
2580 /* an explicit bind-process was specified, let's check how many
2581 * processes remain.
2582 */
David Carliere6c39412015-07-02 07:00:17 +00002583 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002584
Willy Tarreaua38a7172019-02-02 17:11:28 +01002585 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002586 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002587 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 +02002588 curproxy->bind_proc = 1;
2589 }
2590 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002591 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 +02002592 curproxy->bind_proc = 0;
2593 }
2594 }
2595
Willy Tarreau3d209582014-05-09 17:06:11 +02002596 /* check and reduce the bind-proc of each listener */
2597 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2598 unsigned long mask;
2599
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002600 /* HTTP frontends with "h2" as ALPN/NPN will work in
2601 * HTTP/2 and absolutely require buffers 16kB or larger.
2602 */
2603#ifdef USE_OPENSSL
2604 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2605#ifdef OPENSSL_NPN_NEGOTIATED
2606 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002607 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002608 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",
2609 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002610 cfgerr++;
2611 }
2612#endif
2613#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2614 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002615 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002616 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",
2617 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002618 cfgerr++;
2619 }
2620#endif
2621 } /* HTTP && bufsize < 16384 */
2622#endif
2623
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002624 /* detect and address thread affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002625 mask = thread_mask(bind_conf->settings.bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002626 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002627 unsigned long new_mask = 0;
2628
2629 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002630 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002631 mask >>= global.nbthread;
2632 }
2633
Willy Tarreaue26993c2020-09-03 07:18:55 +02002634 bind_conf->settings.bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002635 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",
2636 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2637 }
2638
2639 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002640 mask = proc_mask(bind_conf->settings.bind_proc) & proc_mask(curproxy->bind_proc);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002641 if (!(mask & all_proc_mask)) {
2642 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02002643 nbproc = my_popcountl(bind_conf->settings.bind_proc);
2644 bind_conf->settings.bind_proc = proc_mask(bind_conf->settings.bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002645
Willy Tarreaue26993c2020-09-03 07:18:55 +02002646 if (!bind_conf->settings.bind_proc && nbproc == 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002647 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",
2648 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002649 bind_conf->settings.bind_proc = mask & ~(mask - 1);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002650 }
Willy Tarreaue26993c2020-09-03 07:18:55 +02002651 else if (!bind_conf->settings.bind_proc && nbproc > 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002652 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",
2653 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002654 bind_conf->settings.bind_proc = 0;
Willy Tarreaua36b3242019-02-02 13:14:34 +01002655 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002656 }
2657 }
2658
Willy Tarreauff01a212009-03-15 13:46:16 +01002659 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01002660 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002661 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002662 break;
2663
2664 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002665 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002666 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002667
2668 case PR_MODE_CLI:
2669 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2670 break;
Emeric Brun54932b42020-07-07 09:43:24 +02002671 case PR_MODE_SYSLOG:
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002672 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02002673 case PR_MODES:
2674 /* should not happen, bug gcc warn missing switch statement */
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002675 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 +02002676 proxy_type_str(curproxy), curproxy->id);
2677 cfgerr++;
2678 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002679 }
2680
Willy Tarreau4975d142021-03-13 11:00:33 +01002681 if (curproxy != global.cli_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002682 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2683 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002684 err_code |= ERR_WARN;
2685 }
2686
Willy Tarreau77e0dae2020-10-14 15:44:27 +02002687 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002688 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002689 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002690 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2691 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002692 cfgerr++;
2693 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002694#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002695 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002696 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2697 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002698 cfgerr++;
2699 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002700#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002701 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002702 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2703 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002704 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002705 }
2706 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002707 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002708 /* If no LB algo is set in a backend, and we're not in
2709 * transparent mode, dispatch mode nor proxy mode, we
2710 * want to use balance roundrobin by default.
2711 */
2712 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2713 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002714 }
2715 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002716
Willy Tarreau1620ec32011-08-06 17:05:02 +02002717 if (curproxy->options & PR_O_DISPATCH)
2718 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2719 else if (curproxy->options & PR_O_HTTP_PROXY)
2720 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2721 else if (curproxy->options & PR_O_TRANSP)
2722 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002723
Christopher Faulete5870d82020-04-15 11:32:03 +02002724 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2725 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2726 proxy_type_str(curproxy), curproxy->id);
2727 err_code |= ERR_WARN;
2728 }
2729
2730 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002731 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002732 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002733 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2734 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002735 err_code |= ERR_WARN;
2736 curproxy->options &= ~PR_O_DISABLE404;
2737 }
2738 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002739 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2740 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002741 err_code |= ERR_WARN;
2742 curproxy->options &= ~PR_O2_CHK_SNDST;
2743 }
Willy Tarreauef781042010-01-27 11:53:01 +01002744 }
2745
Simon Horman98637e52014-06-20 12:30:16 +09002746 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2747 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002748 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2749 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002750 cfgerr++;
2751 }
2752 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002753 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2754 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002755 cfgerr++;
2756 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002757 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2758 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2759 curproxy->id, "option external-check");
2760 err_code |= ERR_WARN;
2761 }
Simon Horman98637e52014-06-20 12:30:16 +09002762 }
2763
Simon Horman64e34162015-02-06 11:11:57 +09002764 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002765 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002766 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2767 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2768 "'email-alert myhostname', or 'email-alert to' "
2769 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2770 "to be present).\n",
2771 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002772 err_code |= ERR_WARN;
2773 free_email_alert(curproxy);
2774 }
2775 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002776 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002777 }
2778
Simon Horman98637e52014-06-20 12:30:16 +09002779 if (curproxy->check_command) {
2780 int clear = 0;
2781 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002782 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2783 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002784 err_code |= ERR_WARN;
2785 clear = 1;
2786 }
2787 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002788 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2789 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002790 cfgerr++;
2791 }
2792 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002793 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09002794 }
2795 }
2796
2797 if (curproxy->check_path) {
2798 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002799 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2800 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002801 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002802 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09002803 }
2804 }
2805
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002806 /* if a default backend was specified, let's find it */
2807 if (curproxy->defbe.name) {
2808 struct proxy *target;
2809
Willy Tarreauafb39922015-05-26 12:04:09 +02002810 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002811 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002812 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2813 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002814 cfgerr++;
2815 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002816 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2817 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002818 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002819 } else if (target->mode != curproxy->mode &&
2820 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2821
Christopher Faulet767a84b2017-11-24 16:50:31 +01002822 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2823 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2824 curproxy->conf.file, curproxy->conf.line,
2825 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2826 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002827 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002828 } else {
2829 free(curproxy->defbe.name);
2830 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002831 /* Emit a warning if this proxy also has some servers */
2832 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002833 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2834 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002835 err_code |= ERR_WARN;
2836 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002837 }
2838 }
2839
Willy Tarreau55ea7572007-06-17 19:56:27 +02002840 /* find the target proxy for 'use_backend' rules */
2841 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002842 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002843 struct logformat_node *node;
2844 char *pxname;
2845
2846 /* Try to parse the string as a log format expression. If the result
2847 * of the parsing is only one entry containing a simple string, then
2848 * it's a standard string corresponding to a static rule, thus the
2849 * parsing is cancelled and be.name is restored to be resolved.
2850 */
2851 pxname = rule->be.name;
2852 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002853 curproxy->conf.args.ctx = ARGC_UBK;
2854 curproxy->conf.args.file = rule->file;
2855 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002856 err = NULL;
2857 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002858 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2859 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002860 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002861 cfgerr++;
2862 continue;
2863 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002864 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2865
2866 if (!LIST_ISEMPTY(&rule->be.expr)) {
2867 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2868 rule->dynamic = 1;
2869 free(pxname);
2870 continue;
2871 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002872 /* Only one element in the list, a simple string: free the expression and
2873 * fall back to static rule
2874 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002875 LIST_DELETE(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002876 free(node->arg);
2877 free(node);
2878 }
2879
2880 rule->dynamic = 0;
2881 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002882
Willy Tarreauafb39922015-05-26 12:04:09 +02002883 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002884 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002885 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2886 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002887 cfgerr++;
2888 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002889 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2890 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002891 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002892 } else if (target->mode != curproxy->mode &&
2893 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2894
Christopher Faulet767a84b2017-11-24 16:50:31 +01002895 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2896 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2897 curproxy->conf.file, curproxy->conf.line,
2898 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2899 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002900 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002901 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002902 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002903 rule->be.backend = target;
2904 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01002905 err_code |= warnif_tcp_http_cond(curproxy, rule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002906 }
2907
Willy Tarreau64ab6072014-09-16 12:17:36 +02002908 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002909 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002910 struct server *target;
2911 struct logformat_node *node;
2912 char *server_name;
2913
2914 /* We try to parse the string as a log format expression. If the result of the parsing
2915 * is only one entry containing a single string, then it's a standard string corresponding
2916 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2917 */
2918 server_name = srule->srv.name;
2919 LIST_INIT(&srule->expr);
2920 curproxy->conf.args.ctx = ARGC_USRV;
2921 err = NULL;
2922 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2923 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2924 srule->file, srule->line, server_name, err);
2925 free(err);
2926 cfgerr++;
2927 continue;
2928 }
2929 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2930
2931 if (!LIST_ISEMPTY(&srule->expr)) {
2932 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2933 srule->dynamic = 1;
2934 free(server_name);
2935 continue;
2936 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002937 /* Only one element in the list, a simple string: free the expression and
2938 * fall back to static rule
2939 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002940 LIST_DELETE(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002941 free(node->arg);
2942 free(node);
2943 }
2944
2945 srule->dynamic = 0;
2946 srule->srv.name = server_name;
2947 target = findserver(curproxy, srule->srv.name);
Christopher Faulet581db2b2021-03-26 10:02:46 +01002948 err_code |= warnif_tcp_http_cond(curproxy, srule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002949
2950 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002951 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2952 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002953 cfgerr++;
2954 continue;
2955 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01002956 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002957 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002958 }
2959
Emeric Brunb982a3d2010-01-04 15:45:53 +01002960 /* find the target table for 'stick' rules */
2961 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002962 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002963
Emeric Brun1d33b292010-01-04 15:47:17 +01002964 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2965 if (mrule->flags & STK_IS_STORE)
2966 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2967
Emeric Brunb982a3d2010-01-04 15:45:53 +01002968 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002969 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002970 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002971 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002972
2973 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002974 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002975 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002976 cfgerr++;
2977 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002978 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002979 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2980 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002981 cfgerr++;
2982 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002983 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002984 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2985 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002986 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002987 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002988 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002989 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002990 mrule->table.t = target;
2991 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07002992 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002993 if (!in_proxies_list(target->proxies_list, curproxy)) {
2994 curproxy->next_stkt_ref = target->proxies_list;
2995 target->proxies_list = curproxy;
2996 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002997 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01002998 err_code |= warnif_tcp_http_cond(curproxy, mrule->cond);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002999 }
3000
3001 /* find the target table for 'store response' rules */
3002 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003003 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003004
Emeric Brun1d33b292010-01-04 15:47:17 +01003005 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3006
Emeric Brunb982a3d2010-01-04 15:45:53 +01003007 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003008 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003009 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003010 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003011
3012 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003013 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003014 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003015 cfgerr++;
3016 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003017 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003018 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3019 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003020 cfgerr++;
3021 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003022 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01003023 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
3024 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01003025 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01003026 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003027 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003028 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003029 mrule->table.t = target;
3030 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07003031 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003032 if (!in_proxies_list(target->proxies_list, curproxy)) {
3033 curproxy->next_stkt_ref = target->proxies_list;
3034 target->proxies_list = curproxy;
3035 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003036 }
3037 }
3038
Christopher Faulet42c6cf92021-03-25 17:19:04 +01003039 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
3040 cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code);
3041 cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code);
3042 cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code);
3043 cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code);
3044 cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code);
3045 cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code);
3046 cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003047
Christopher Faulet5eef0182021-03-31 17:13:49 +02003048 /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */
3049 if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) {
3050 if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP)
3051 ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. "
3052 "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n",
3053 curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy));
3054 }
3055
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003056 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003057 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003058
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003059 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003060 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003061 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003062 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003063 break;
3064 }
3065 }
3066
3067 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003068 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003069 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01003070 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003071 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003072 cfgerr++;
3073 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003074 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003075 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003076 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003077 }
Emeric Brun32da3c42010-09-23 18:39:19 +02003078 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003079 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
3080 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003081 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003082 cfgerr++;
3083 }
3084 }
3085
Simon Horman9dc49962015-01-30 11:22:59 +09003086
3087 if (curproxy->email_alert.mailers.name) {
3088 struct mailers *curmailers = mailers;
3089
3090 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003091 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09003092 break;
Simon Horman9dc49962015-01-30 11:22:59 +09003093 }
Simon Horman9dc49962015-01-30 11:22:59 +09003094 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003095 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
3096 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09003097 free_email_alert(curproxy);
3098 cfgerr++;
3099 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02003100 else {
3101 err = NULL;
3102 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003103 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003104 free(err);
3105 cfgerr++;
3106 }
3107 }
Simon Horman9dc49962015-01-30 11:22:59 +09003108 }
3109
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003110 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01003111 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003112 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003113 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
3114 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003115 cfgerr++;
3116 goto out_uri_auth_compat;
3117 }
3118
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003119 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003120 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003121 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003122 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003123 struct act_rule *rule;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003124 i = 0;
3125
Willy Tarreau95fa4692010-02-01 13:05:50 +01003126 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
3127 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003128
3129 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003130 uri_auth_compat_req[i++] = "realm";
3131 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
3132 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003133
Willy Tarreau95fa4692010-02-01 13:05:50 +01003134 uri_auth_compat_req[i++] = "unless";
3135 uri_auth_compat_req[i++] = "{";
3136 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
3137 uri_auth_compat_req[i++] = "}";
3138 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003139
Willy Tarreauff011f22011-01-06 17:51:27 +01003140 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
3141 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003142 cfgerr++;
3143 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003144 }
3145
Willy Tarreau2b718102021-04-21 07:32:39 +02003146 LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01003147
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003148 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003149 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003150 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003151 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003152 }
3153out_uri_auth_compat:
3154
Dragan Dosen43885c72015-10-01 13:18:13 +02003155 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02003156 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02003157 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
3158 if (!curproxy->conf.logformat_sd_string) {
3159 /* set the default logformat_sd_string */
3160 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
3161 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003162 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02003163 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003164 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02003165
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003166 /* compile the log format */
3167 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02003168 if (curproxy->conf.logformat_string != default_http_log_format &&
3169 curproxy->conf.logformat_string != default_tcp_log_format &&
3170 curproxy->conf.logformat_string != clf_http_log_format)
3171 free(curproxy->conf.logformat_string);
3172 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003173 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02003174 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003175
3176 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3177 free(curproxy->conf.logformat_sd_string);
3178 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003179 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003180 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003181 }
3182
Willy Tarreau62a61232013-04-12 18:13:46 +02003183 if (curproxy->conf.logformat_string) {
3184 curproxy->conf.args.ctx = ARGC_LOG;
3185 curproxy->conf.args.file = curproxy->conf.lfs_file;
3186 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003187 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003188 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
3189 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003190 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003191 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3192 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003193 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003194 cfgerr++;
3195 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003196 curproxy->conf.args.file = NULL;
3197 curproxy->conf.args.line = 0;
3198 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003199
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003200 if (curproxy->conf.logformat_sd_string) {
3201 curproxy->conf.args.ctx = ARGC_LOGSD;
3202 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3203 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003204 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003205 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
3206 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003207 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003208 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3209 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003210 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003211 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003212 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003213 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3214 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003215 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003216 cfgerr++;
3217 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003218 curproxy->conf.args.file = NULL;
3219 curproxy->conf.args.line = 0;
3220 }
3221
Willy Tarreau62a61232013-04-12 18:13:46 +02003222 if (curproxy->conf.uniqueid_format_string) {
3223 curproxy->conf.args.ctx = ARGC_UIF;
3224 curproxy->conf.args.file = curproxy->conf.uif_file;
3225 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003226 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003227 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
3228 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES,
3229 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR
3230 : SMP_VAL_BE_HRQ_HDR,
3231 &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003232 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3233 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003234 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003235 cfgerr++;
3236 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003237 curproxy->conf.args.file = NULL;
3238 curproxy->conf.args.line = 0;
3239 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003240
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003241 /* only now we can check if some args remain unresolved.
3242 * This must be done after the users and groups resolution.
3243 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01003244 err = NULL;
3245 i = smp_resolve_args(curproxy, &err);
3246 cfgerr += i;
3247 if (i) {
3248 indent_msg(&err, 8);
3249 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
3250 ha_free(&err);
3251 } else
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003252 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003253
Willy Tarreau2738a142006-07-08 17:28:09 +02003254 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003255 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003256 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003257 (!curproxy->timeout.connect ||
3258 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003259 ha_warning("config : missing timeouts for %s '%s'.\n"
3260 " | While not properly invalid, you will certainly encounter various problems\n"
3261 " | with such a configuration. To fix this, please ensure that all following\n"
3262 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3263 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003264 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003265 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003266
Willy Tarreau1fa31262007-12-03 00:36:16 +01003267 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3268 * We must still support older configurations, so let's find out whether those
3269 * parameters have been set or must be copied from contimeouts.
3270 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01003271 if (!curproxy->timeout.tarpit)
3272 curproxy->timeout.tarpit = curproxy->timeout.connect;
3273 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
3274 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003275
Christopher Faulete5870d82020-04-15 11:32:03 +02003276 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003277 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
3278 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003279 err_code |= ERR_WARN;
3280 }
3281
Willy Tarreau193b8c62012-11-22 00:17:38 +01003282 /* ensure that cookie capture length is not too large */
3283 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003284 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3285 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003286 err_code |= ERR_WARN;
3287 curproxy->capture_len = global.tune.cookie_len - 1;
3288 }
3289
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003290 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003291 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003292 curproxy->req_cap_pool = create_pool("ptrcap",
3293 curproxy->nb_req_cap * sizeof(char *),
3294 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003295 }
3296
3297 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003298 curproxy->rsp_cap_pool = create_pool("ptrcap",
3299 curproxy->nb_rsp_cap * sizeof(char *),
3300 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003301 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003302
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003303 switch (curproxy->load_server_state_from_file) {
3304 case PR_SRV_STATE_FILE_UNSPEC:
3305 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3306 break;
3307 case PR_SRV_STATE_FILE_GLOBAL:
3308 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003309 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",
3310 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003311 err_code |= ERR_WARN;
3312 }
3313 break;
3314 }
3315
Willy Tarreaubaaee002006-06-26 02:48:02 +02003316 /* first, we will invert the servers list order */
3317 newsrv = NULL;
3318 while (curproxy->srv) {
3319 struct server *next;
3320
3321 next = curproxy->srv->next;
3322 curproxy->srv->next = newsrv;
3323 newsrv = curproxy->srv;
3324 if (!next)
3325 break;
3326 curproxy->srv = next;
3327 }
3328
Willy Tarreau17edc812014-01-03 12:14:34 +01003329 /* Check that no server name conflicts. This causes trouble in the stats.
3330 * We only emit a warning for the first conflict affecting each server,
3331 * in order to avoid combinatory explosion if all servers have the same
3332 * name. We do that only for servers which do not have an explicit ID,
3333 * because these IDs were made also for distinguishing them and we don't
3334 * want to annoy people who correctly manage them.
3335 */
3336 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3337 struct server *other_srv;
3338
3339 if (newsrv->puid)
3340 continue;
3341
3342 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3343 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003344 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 +01003345 newsrv->conf.file, newsrv->conf.line,
3346 proxy_type_str(curproxy), curproxy->id,
3347 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003348 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003349 break;
3350 }
3351 }
3352 }
3353
Willy Tarreaudd701652010-05-25 23:03:02 +02003354 /* assign automatic UIDs to servers which don't have one yet */
3355 next_id = 1;
3356 newsrv = curproxy->srv;
3357 while (newsrv != NULL) {
3358 if (!newsrv->puid) {
3359 /* server ID not set, use automatic numbering with first
3360 * spare entry starting with next_svid.
3361 */
3362 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3363 newsrv->conf.id.key = newsrv->puid = next_id;
3364 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003365 newsrv->conf.name.key = newsrv->id;
3366 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003367 }
3368 next_id++;
3369 newsrv = newsrv->next;
3370 }
3371
Willy Tarreau20697042007-11-15 23:26:18 +01003372 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003373 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003374
Willy Tarreau62c3be22012-01-20 13:12:32 +01003375 /*
3376 * If this server supports a maxconn parameter, it needs a dedicated
3377 * tasks to fill the emptied slots when a connection leaves.
3378 * Also, resolve deferred tracking dependency if needed.
3379 */
3380 newsrv = curproxy->srv;
3381 while (newsrv != NULL) {
3382 if (newsrv->minconn > newsrv->maxconn) {
3383 /* Only 'minconn' was specified, or it was higher than or equal
3384 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3385 * this will avoid further useless expensive computations.
3386 */
3387 newsrv->maxconn = newsrv->minconn;
3388 } else if (newsrv->maxconn && !newsrv->minconn) {
3389 /* minconn was not specified, so we set it to maxconn */
3390 newsrv->minconn = newsrv->maxconn;
3391 }
3392
William Dauchyf6370442020-11-14 19:25:33 +01003393 /* this will also properly set the transport layer for
3394 * prod and checks
3395 * if default-server have use_ssl, prerare ssl init
3396 * without activating it */
3397 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
3398 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3399 (newsrv->use_ssl != 1 && curproxy->defsrv.use_ssl == 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003400 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3401 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3402 }
Emeric Brun94324a42012-10-11 14:00:19 +02003403
Willy Tarreau034c88c2017-01-23 23:36:45 +01003404 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3405 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3406 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3407 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",
3408 newsrv->conf.file, newsrv->conf.line,
3409 proxy_type_str(curproxy), curproxy->id,
3410 newsrv->id);
3411
Willy Tarreau62c3be22012-01-20 13:12:32 +01003412 if (newsrv->trackit) {
3413 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003414 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003415 char *pname, *sname;
3416
3417 pname = newsrv->trackit;
3418 sname = strrchr(pname, '/');
3419
3420 if (sname)
3421 *sname++ = '\0';
3422 else {
3423 sname = pname;
3424 pname = NULL;
3425 }
3426
3427 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003428 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003429 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003430 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3431 proxy_type_str(curproxy), curproxy->id,
3432 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003433 cfgerr++;
3434 goto next_srv;
3435 }
3436 } else
3437 px = curproxy;
3438
3439 srv = findserver(px, sname);
3440 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003441 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3442 proxy_type_str(curproxy), curproxy->id,
3443 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003444 cfgerr++;
3445 goto next_srv;
3446 }
3447
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003448 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003449 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3450 "tracking as it does not have any check nor agent enabled.\n",
3451 proxy_type_str(curproxy), curproxy->id,
3452 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003453 cfgerr++;
3454 goto next_srv;
3455 }
3456
3457 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3458
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003459 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003460 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3461 "belongs to a tracking chain looping back to %s/%s.\n",
3462 proxy_type_str(curproxy), curproxy->id,
3463 newsrv->id, px->id, srv->id, px->id,
3464 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003465 cfgerr++;
3466 goto next_srv;
3467 }
3468
3469 if (curproxy != px &&
3470 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003471 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3472 "tracking: disable-on-404 option inconsistency.\n",
3473 proxy_type_str(curproxy), curproxy->id,
3474 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003475 cfgerr++;
3476 goto next_srv;
3477 }
3478
Willy Tarreau62c3be22012-01-20 13:12:32 +01003479 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003480 newsrv->tracknext = srv->trackers;
3481 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003482
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003483 ha_free(&newsrv->trackit);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003484 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003485
Willy Tarreau62c3be22012-01-20 13:12:32 +01003486 next_srv:
3487 newsrv = newsrv->next;
3488 }
3489
Olivier Houchard4e694042017-03-14 20:01:29 +01003490 /*
3491 * Try to generate dynamic cookies for servers now.
3492 * It couldn't be done earlier, since at the time we parsed
3493 * the server line, we may not have known yet that we
3494 * should use dynamic cookies, or the secret key may not
3495 * have been provided yet.
3496 */
3497 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3498 newsrv = curproxy->srv;
3499 while (newsrv != NULL) {
3500 srv_set_dyncookie(newsrv);
3501 newsrv = newsrv->next;
3502 }
3503
3504 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003505 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003506 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003507 */
3508
3509 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3510 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3511 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003512 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3513 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3514 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003515 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3516 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3517 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003518 } else {
3519 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3520 fwrr_init_server_groups(curproxy);
3521 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003522 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003523
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003524 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003525 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3526 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3527 fwlc_init_server_tree(curproxy);
3528 } else {
3529 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3530 fas_init_server_tree(curproxy);
3531 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003532 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003533
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003534 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003535 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3536 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3537 chash_init_server_tree(curproxy);
3538 } else {
3539 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3540 init_server_map(curproxy);
3541 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003542 break;
3543 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003544 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003545
3546 if (curproxy->options & PR_O_LOGASAP)
3547 curproxy->to_log &= ~LW_BYTES;
3548
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003549 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003550 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3551 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003552 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3553 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003554 err_code |= ERR_WARN;
3555 }
3556
Christopher Faulet3b6446f2021-03-15 15:10:38 +01003557 if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) {
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003558 int optnum;
3559
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003560 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003561 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3562 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003563 err_code |= ERR_WARN;
3564 curproxy->uri_auth = NULL;
3565 }
3566
Willy Tarreaude7dc882017-03-10 11:49:21 +01003567 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003568 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3569 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003570 err_code |= ERR_WARN;
3571 }
3572
3573 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003574 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3575 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003576 err_code |= ERR_WARN;
3577 }
3578
3579 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003580 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3581 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003582 err_code |= ERR_WARN;
3583 }
3584
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003585 if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) {
3586 ha_warning("config : 'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3587 proxy_type_str(curproxy), curproxy->id);
3588 err_code |= ERR_WARN;
3589 }
3590
Willy Tarreaude7dc882017-03-10 11:49:21 +01003591 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003592 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3593 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003594 err_code |= ERR_WARN;
3595 }
3596
Willy Tarreau87cf5142011-08-19 22:57:24 +02003597 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003598 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3599 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003600 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003601 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003602 }
3603
3604 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003605 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3606 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003607 err_code |= ERR_WARN;
3608 curproxy->options &= ~PR_O_ORGTO;
3609 }
3610
3611 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3612 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3613 (curproxy->cap & cfg_opts[optnum].cap) &&
3614 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003615 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3616 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003617 err_code |= ERR_WARN;
3618 curproxy->options &= ~cfg_opts[optnum].val;
3619 }
3620 }
3621
3622 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3623 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3624 (curproxy->cap & cfg_opts2[optnum].cap) &&
3625 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003626 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3627 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003628 err_code |= ERR_WARN;
3629 curproxy->options2 &= ~cfg_opts2[optnum].val;
3630 }
3631 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003632
Willy Tarreau29fbe512015-08-20 19:35:14 +02003633#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003634 if (curproxy->conn_src.bind_hdr_occ) {
3635 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003636 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3637 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003638 err_code |= ERR_WARN;
3639 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003640#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003641 }
3642
Willy Tarreaubaaee002006-06-26 02:48:02 +02003643 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003644 * ensure that we're not cross-dressing a TCP server into HTTP.
3645 */
3646 newsrv = curproxy->srv;
3647 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003648 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003649 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3650 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003651 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003652 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003653
Willy Tarreau0cec3312011-10-31 13:49:26 +01003654 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003655 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3656 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003657 err_code |= ERR_WARN;
3658 }
3659
Willy Tarreauc93cd162014-05-13 15:54:22 +02003660 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003661 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3662 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003663 err_code |= ERR_WARN;
3664 }
3665
Willy Tarreau29fbe512015-08-20 19:35:14 +02003666#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003667 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3668 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003669 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3670 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003671 err_code |= ERR_WARN;
3672 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003673#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003674
Willy Tarreau46deab62018-04-28 07:18:15 +02003675 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3676 curproxy->options &= ~PR_O_REUSE_MASK;
3677
Willy Tarreau21d2af32008-02-14 20:25:24 +01003678 newsrv = newsrv->next;
3679 }
3680
Christopher Fauletd7c91962015-04-30 11:48:27 +02003681 /* Check filter configuration, if any */
3682 cfgerr += flt_check(curproxy);
3683
Willy Tarreauc1a21672009-08-16 22:37:44 +02003684 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003685 if (!curproxy->accept)
3686 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003687
Willy Tarreauc1a21672009-08-16 22:37:44 +02003688 if (curproxy->tcp_req.inspect_delay ||
3689 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003690 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003691
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003692 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003693 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003694 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003695 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003696
William Lallemandcf62f7e2018-10-26 14:47:40 +02003697 if (curproxy->mode == PR_MODE_CLI) {
3698 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3699 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3700 }
3701
Willy Tarreauc1a21672009-08-16 22:37:44 +02003702 /* both TCP and HTTP must check switching rules */
3703 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003704
3705 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003706 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003707 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3708 curproxy->fe_rsp_ana |= AN_RES_FLT_START_FE | AN_RES_FLT_XFER_DATA | AN_RES_FLT_END;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003709 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003710 }
3711
3712 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003713 if (curproxy->tcp_req.inspect_delay ||
3714 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3715 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3716
Emeric Brun97679e72010-09-23 17:56:44 +02003717 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3718 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3719
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003720 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003721 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003722 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003723 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003724
3725 /* If the backend does requires RDP cookie persistence, we have to
3726 * enable the corresponding analyser.
3727 */
3728 if (curproxy->options2 & PR_O2_RDPC_PRST)
3729 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003730
3731 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003732 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003733 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3734 curproxy->be_rsp_ana |= AN_RES_FLT_START_BE | AN_RES_FLT_XFER_DATA | AN_RES_FLT_END;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003735 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003736 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003737
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003738 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003739 * attached to the current proxy */
3740 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3741 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003742 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003743
3744 if (!bind_conf->mux_proto)
3745 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003746
3747 /* it is possible that an incorrect mux was referenced
3748 * due to the proxy's mode not being taken into account
3749 * on first pass. Let's adjust it now.
3750 */
3751 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3752
3753 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003754 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3755 proxy_type_str(curproxy), curproxy->id,
3756 (int)bind_conf->mux_proto->token.len,
3757 bind_conf->mux_proto->token.ptr,
3758 bind_conf->arg, bind_conf->file, bind_conf->line);
3759 cfgerr++;
3760 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003761
3762 /* update the mux */
3763 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003764 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003765 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3766 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003767 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003768
3769 if (!newsrv->mux_proto)
3770 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003771
3772 /* it is possible that an incorrect mux was referenced
3773 * due to the proxy's mode not being taken into account
3774 * on first pass. Let's adjust it now.
3775 */
3776 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3777
3778 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003779 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3780 proxy_type_str(curproxy), curproxy->id,
3781 (int)newsrv->mux_proto->token.len,
3782 newsrv->mux_proto->token.ptr,
3783 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3784 cfgerr++;
3785 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003786
3787 /* update the mux */
3788 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003789 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01003790 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003791
Willy Tarreau4cdac162021-03-05 10:48:42 +01003792 /***********************************************************/
3793 /* At this point, target names have already been resolved. */
3794 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01003795
Willy Tarreau4cdac162021-03-05 10:48:42 +01003796 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01003797
Willy Tarreau4cdac162021-03-05 10:48:42 +01003798 list_for_each_entry(newsrv, &servers_list, global_list) {
3799 /* initialize idle conns lists */
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003800 newsrv->per_thr = calloc(global.nbthread, sizeof(*newsrv->per_thr));
3801 if (!newsrv->per_thr) {
3802 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
3803 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01003804 cfgerr++;
3805 continue;
3806 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003807
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003808 for (i = 0; i < global.nbthread; i++) {
3809 newsrv->per_thr[i].idle_conns = EB_ROOT;
3810 newsrv->per_thr[i].safe_conns = EB_ROOT;
3811 newsrv->per_thr[i].avail_conns = EB_ROOT;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01003812 MT_LIST_INIT(&newsrv->per_thr[i].streams);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003813 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003814
Willy Tarreau4cdac162021-03-05 10:48:42 +01003815 if (newsrv->max_idle_conns != 0) {
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003816 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
3817 if (!newsrv->curr_idle_thr) {
3818 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3819 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3820 cfgerr++;
3821 continue;
3822 }
3823 }
3824 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003825
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003826 idle_conn_task = task_new(MAX_THREADS_MASK);
3827 if (!idle_conn_task) {
3828 ha_alert("parsing : failed to allocate global idle connection task.\n");
3829 cfgerr++;
3830 }
3831 else {
3832 idle_conn_task->process = srv_cleanup_idle_conns;
3833 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003834
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003835 for (i = 0; i < global.nbthread; i++) {
3836 idle_conns[i].cleanup_task = task_new(1UL << i);
3837 if (!idle_conns[i].cleanup_task) {
3838 ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i);
3839 cfgerr++;
3840 break;
Willy Tarreau4cdac162021-03-05 10:48:42 +01003841 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003842
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003843 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
3844 idle_conns[i].cleanup_task->context = NULL;
3845 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
3846 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Willy Tarreau835daa12019-02-07 14:46:29 +01003847 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003848 }
3849
Willy Tarreau419ead82014-09-16 13:41:21 +02003850 /* Check multi-process mode compatibility */
3851
Willy Tarreau4975d142021-03-13 11:00:33 +01003852 if (global.nbproc > 1 && global.cli_fe) {
3853 list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003854 unsigned long mask;
3855
Willy Tarreau4975d142021-03-13 11:00:33 +01003856 mask = proc_mask(global.cli_fe->bind_proc) && all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02003857 mask &= proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003858
3859 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003860 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003861 break;
3862 }
Willy Tarreau4975d142021-03-13 11:00:33 +01003863 if (&bind_conf->by_fe != &global.cli_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003864 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 +02003865 }
3866 }
3867
3868 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003869 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003870 if (curproxy->bind_proc)
3871 continue;
3872
3873 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3874 unsigned long mask;
3875
Willy Tarreaue26993c2020-09-03 07:18:55 +02003876 mask = proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003877 curproxy->bind_proc |= mask;
3878 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003879 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003880 }
3881
Willy Tarreau4975d142021-03-13 11:00:33 +01003882 if (global.cli_fe) {
3883 list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003884 unsigned long mask;
3885
Willy Tarreaue26993c2020-09-03 07:18:55 +02003886 mask = bind_conf->settings.bind_proc ? bind_conf->settings.bind_proc : 0;
Willy Tarreau4975d142021-03-13 11:00:33 +01003887 global.cli_fe->bind_proc |= mask;
Willy Tarreau419ead82014-09-16 13:41:21 +02003888 }
Willy Tarreau4975d142021-03-13 11:00:33 +01003889 global.cli_fe->bind_proc = proc_mask(global.cli_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003890 }
3891
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003892 /* propagate bindings from frontends to backends. Don't do it if there
3893 * are any fatal errors as we must not call it with unresolved proxies.
3894 */
3895 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003896 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003897 if (curproxy->cap & PR_CAP_FE)
3898 propagate_processes(curproxy, NULL);
3899 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003900 }
3901
3902 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003903 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3904 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003905
3906 /*******************************************************/
3907 /* At this step, all proxies have a non-null bind_proc */
3908 /*******************************************************/
3909
3910 /* perform the final checks before creating tasks */
3911
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003912 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003913 struct listener *listener;
3914 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003915
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003916 /* Configure SSL for each bind line.
3917 * Note: if configuration fails at some point, the ->ctx member
3918 * remains NULL so that listeners can later detach.
3919 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003920 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003921 if (bind_conf->xprt->prepare_bind_conf &&
3922 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003923 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003924 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003925
Willy Tarreaue6b98942007-10-29 01:09:36 +01003926 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003927 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003928 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003929 int nbproc;
3930
3931 nbproc = my_popcountl(curproxy->bind_proc &
Willy Tarreaue26993c2020-09-03 07:18:55 +02003932 (listener->bind_conf->settings.bind_proc ? listener->bind_conf->settings.bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003933 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003934
3935 if (!nbproc) /* no intersection between listener and frontend */
3936 nbproc = 1;
3937
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003938 if (!listener->luid) {
3939 /* listener ID not set, use automatic numbering with first
3940 * spare entry starting with next_luid.
3941 */
3942 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3943 listener->conf.id.key = listener->luid = next_id;
3944 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003945 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003946 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003947
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003948 /* enable separate counters */
3949 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003950 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003951 if (!listener->name)
3952 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003953 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003954
Willy Tarreaue6b98942007-10-29 01:09:36 +01003955 if (curproxy->options & PR_O_TCP_NOLING)
3956 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003957 if (!listener->maxaccept)
Willy Tarreau66161322021-02-19 15:50:27 +01003958 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau16a21472012-11-19 12:39:59 +01003959
3960 /* we want to have an optimal behaviour on single process mode to
3961 * maximize the work at once, but in multi-process we want to keep
3962 * some fairness between processes, so we target half of the max
3963 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003964 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003965 * used to disable the limit.
3966 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003967 if (listener->maxaccept > 0 && nbproc > 1) {
3968 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003969 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3970 }
3971
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003972 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003973 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003974 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003975
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003976 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003977 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003978
Willy Tarreau620408f2016-10-21 16:37:51 +02003979 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3980 listener->options |= LI_O_TCP_L5_RULES;
3981
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003982 /* smart accept mode is automatic in HTTP mode */
3983 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003984 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003985 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3986 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003987 }
3988
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003989 /* Release unused SSL configs */
3990 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003991 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3992 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003993 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003994
Willy Tarreaua38a7172019-02-02 17:11:28 +01003995 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003996 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003997 int count, maxproc = 0;
3998
3999 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreaue26993c2020-09-03 07:18:55 +02004000 count = my_popcountl(bind_conf->settings.bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02004001 if (count > maxproc)
4002 maxproc = count;
4003 }
4004 /* backends have 0, frontends have 1 or more */
4005 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01004006 ha_warning("Proxy '%s': in multi-process mode, stats will be"
4007 " limited to process assigned to the current request.\n",
4008 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02004009
Willy Tarreau102df612014-05-07 23:56:38 +02004010 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004011 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
4012 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01004013 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01004014 }
Willy Tarreau102df612014-05-07 23:56:38 +02004015 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004016 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
4017 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01004018 }
4019 }
Willy Tarreau918ff602011-07-25 16:33:49 +02004020
4021 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02004022 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02004023 if (curproxy->task) {
4024 curproxy->task->context = curproxy;
4025 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02004026 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004027 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
4028 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02004029 cfgerr++;
4030 }
Willy Tarreaub369a042014-09-16 13:21:03 +02004031 }
4032
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004033 /*
4034 * Recount currently required checks.
4035 */
4036
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004037 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004038 int optnum;
4039
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004040 for (optnum = 0; cfg_opts[optnum].name; optnum++)
4041 if (curproxy->options & cfg_opts[optnum].val)
4042 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004043
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004044 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
4045 if (curproxy->options2 & cfg_opts2[optnum].val)
4046 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004047 }
4048
Willy Tarreau0fca4832015-05-01 19:12:05 +02004049 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004050 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004051 if (curproxy->table && curproxy->table->peers.p)
4052 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02004053
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01004054 /* compute the required process bindings for the peers from <stktables_list>
4055 * for all the stick-tables, the ones coming with "peers" sections included.
4056 */
4057 for (t = stktables_list; t; t = t->next) {
4058 struct proxy *p;
4059
4060 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
4061 if (t->peers.p && t->peers.p->peers_fe) {
4062 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
4063 }
4064 }
4065 }
4066
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004067 if (cfg_peers) {
4068 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02004069 struct peer *p, *pb;
4070
William Lallemanda2cfd7e2020-03-24 16:02:48 +01004071 /* In the case the peers frontend was not initialized by a
4072 stick-table used in the configuration, set its bind_proc
4073 by default to the first process. */
4074 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01004075 if (curpeers->peers_fe) {
4076 if (curpeers->peers_fe->bind_proc == 0)
4077 curpeers->peers_fe->bind_proc = 1;
4078 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01004079 curpeers = curpeers->next;
4080 }
4081
4082 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02004083 /* Remove all peers sections which don't have a valid listener,
4084 * which are not used by any table, or which are bound to more
4085 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02004086 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004087 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02004088 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004089 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02004090 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004091
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02004092 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004093 /* the "disabled" keyword was present */
4094 if (curpeers->peers_fe)
4095 stop_proxy(curpeers->peers_fe);
4096 curpeers->peers_fe = NULL;
4097 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02004098 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004099 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
4100 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004101 if (curpeers->peers_fe)
4102 stop_proxy(curpeers->peers_fe);
4103 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004104 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02004105 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02004106 /* either it's totally stopped or too much used */
4107 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004108 ha_alert("Peers section '%s': peers referenced by sections "
4109 "running in different processes (%d different ones). "
4110 "Check global.nbproc and all tables' bind-process "
4111 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02004112 cfgerr++;
4113 }
4114 stop_proxy(curpeers->peers_fe);
4115 curpeers->peers_fe = NULL;
4116 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004117 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004118 /* Initializes the transport layer of the server part of all the peers belonging to
4119 * <curpeers> section if required.
4120 * Note that ->srv is used by the local peer of a new process to connect to the local peer
4121 * of an old process.
4122 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004123 p = curpeers->remote;
4124 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004125 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004126 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 +01004127 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
4128 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004129 p = p->next;
4130 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004131 /* Configure the SSL bindings of the local peer if required. */
4132 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
4133 struct list *l;
4134 struct bind_conf *bind_conf;
4135
4136 l = &curpeers->peers_fe->conf.bind;
4137 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
4138 if (bind_conf->xprt->prepare_bind_conf &&
4139 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4140 cfgerr++;
4141 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004142 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004143 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4144 curpeers->id);
4145 cfgerr++;
4146 break;
4147 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004148 last = &curpeers->next;
4149 continue;
4150 }
4151
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004152 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004153 p = curpeers->remote;
4154 while (p) {
4155 pb = p->next;
4156 free(p->id);
4157 free(p);
4158 p = pb;
4159 }
4160
4161 /* Destroy and unlink this curpeers section.
4162 * Note: curpeers is backed up into *last.
4163 */
4164 free(curpeers->id);
4165 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004166 /* Reset any refereance to this peers section in the list of stick-tables */
4167 for (t = stktables_list; t; t = t->next) {
4168 if (t->peers.p && t->peers.p == *last)
4169 t->peers.p = NULL;
4170 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004171 free(*last);
4172 *last = curpeers;
4173 }
4174 }
4175
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004176 for (t = stktables_list; t; t = t->next) {
4177 if (t->proxy)
4178 continue;
4179 if (!stktable_init(t)) {
4180 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4181 cfgerr++;
4182 }
4183 }
4184
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004185 /* initialize stick-tables on backend capable proxies. This must not
4186 * be done earlier because the data size may be discovered while parsing
4187 * other proxies.
4188 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004189 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauc3914d42020-09-24 08:39:22 +02004190 if (curproxy->disabled || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004191 continue;
4192
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004193 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004194 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004195 cfgerr++;
4196 }
4197 }
4198
Simon Horman0d16a402015-01-30 11:22:58 +09004199 if (mailers) {
4200 struct mailers *curmailers = mailers, **last;
4201 struct mailer *m, *mb;
4202
4203 /* Remove all mailers sections which don't have a valid listener.
4204 * This can happen when a mailers section is never referenced.
4205 */
4206 last = &mailers;
4207 while (*last) {
4208 curmailers = *last;
4209 if (curmailers->users) {
4210 last = &curmailers->next;
4211 continue;
4212 }
4213
Christopher Faulet767a84b2017-11-24 16:50:31 +01004214 ha_warning("Removing incomplete section 'mailers %s'.\n",
4215 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004216
4217 m = curmailers->mailer_list;
4218 while (m) {
4219 mb = m->next;
4220 free(m->id);
4221 free(m);
4222 m = mb;
4223 }
4224
4225 /* Destroy and unlink this curmailers section.
4226 * Note: curmailers is backed up into *last.
4227 */
4228 free(curmailers->id);
4229 curmailers = curmailers->next;
4230 free(*last);
4231 *last = curmailers;
4232 }
4233 }
4234
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004235 /* Update server_state_file_name to backend name if backend is supposed to use
4236 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004237 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004238 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4239 curproxy->server_state_file_name == NULL)
4240 curproxy->server_state_file_name = strdup(curproxy->id);
4241 }
4242
Emeric Brun750fe792020-12-23 16:51:12 +01004243 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06004244 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
4245 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
4246 curr_resolvers->id, curr_resolvers->conf.file,
4247 curr_resolvers->conf.line);
4248 err_code |= ERR_WARN;
4249 }
4250 }
4251
William Lallemand48b4bb42017-10-23 14:36:34 +02004252 list_for_each_entry(postparser, &postparsers, list) {
4253 if (postparser->func)
4254 cfgerr += postparser->func();
4255 }
4256
Willy Tarreaubb925012009-07-23 13:36:36 +02004257 if (cfgerr > 0)
4258 err_code |= ERR_ALERT | ERR_FATAL;
4259 out:
4260 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004261}
4262
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004263/*
4264 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4265 * parsing sessions.
4266 */
4267void cfg_register_keywords(struct cfg_kw_list *kwl)
4268{
Willy Tarreau2b718102021-04-21 07:32:39 +02004269 LIST_APPEND(&cfg_keywords.list, &kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004270}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004271
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004272/*
4273 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4274 */
4275void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4276{
Willy Tarreau2b718102021-04-21 07:32:39 +02004277 LIST_DELETE(&kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004278 LIST_INIT(&kwl->list);
4279}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004280
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004281/* this function register new section in the haproxy configuration file.
4282 * <section_name> is the name of this new section and <section_parser>
4283 * is the called parser. If two section declaration have the same name,
4284 * only the first declared is used.
4285 */
4286int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004287 int (*section_parser)(const char *, int, char **, int),
4288 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004289{
4290 struct cfg_section *cs;
4291
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004292 list_for_each_entry(cs, &sections, list) {
4293 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004294 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004295 return 0;
4296 }
4297 }
4298
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004299 cs = calloc(1, sizeof(*cs));
4300 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004301 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004302 return 0;
4303 }
4304
4305 cs->section_name = section_name;
4306 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004307 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004308
Willy Tarreau2b718102021-04-21 07:32:39 +02004309 LIST_APPEND(&sections, &cs->list);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004310
4311 return 1;
4312}
4313
William Lallemand48b4bb42017-10-23 14:36:34 +02004314/* this function register a new function which will be called once the haproxy
4315 * configuration file has been parsed. It's useful to check dependencies
4316 * between sections or to resolve items once everything is parsed.
4317 */
4318int cfg_register_postparser(char *name, int (*func)())
4319{
4320 struct cfg_postparser *cp;
4321
4322 cp = calloc(1, sizeof(*cp));
4323 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004324 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004325 return 0;
4326 }
4327 cp->name = name;
4328 cp->func = func;
4329
Willy Tarreau2b718102021-04-21 07:32:39 +02004330 LIST_APPEND(&postparsers, &cp->list);
William Lallemand48b4bb42017-10-23 14:36:34 +02004331
4332 return 1;
4333}
4334
Willy Tarreaubaaee002006-06-26 02:48:02 +02004335/*
David Carlier845efb52015-09-25 11:49:18 +01004336 * free all config section entries
4337 */
4338void cfg_unregister_sections(void)
4339{
4340 struct cfg_section *cs, *ics;
4341
4342 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004343 LIST_DELETE(&cs->list);
David Carlier845efb52015-09-25 11:49:18 +01004344 free(cs);
4345 }
4346}
4347
Christopher Faulet7110b402016-10-26 11:09:44 +02004348void cfg_backup_sections(struct list *backup_sections)
4349{
4350 struct cfg_section *cs, *ics;
4351
4352 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004353 LIST_DELETE(&cs->list);
4354 LIST_APPEND(backup_sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004355 }
4356}
4357
4358void cfg_restore_sections(struct list *backup_sections)
4359{
4360 struct cfg_section *cs, *ics;
4361
4362 list_for_each_entry_safe(cs, ics, backup_sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004363 LIST_DELETE(&cs->list);
4364 LIST_APPEND(&sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004365 }
4366}
4367
Willy Tarreaue6552512018-11-26 11:33:13 +01004368/* these are the config sections handled by default */
4369REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4370REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4371REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4372REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4373REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4374REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4375REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4376REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4377REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004378
Willy Tarreau8a022d52021-04-27 20:29:11 +02004379static struct cfg_kw_list cfg_kws = {{ },{
4380 { CFG_GLOBAL, "default-path", cfg_parse_global_def_path },
4381 { /* END */ }
4382}};
4383
4384INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4385
David Carlier845efb52015-09-25 11:49:18 +01004386/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004387 * Local variables:
4388 * c-indent-level: 8
4389 * c-basic-offset: 8
4390 * End:
4391 */