blob: 1d85943fff612eb02eb4d29ae61c28f9a43c81e3 [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 Tarreauac13aea2020-06-04 10:36:03 +020040#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020041#include <haproxy/backend.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020042#include <haproxy/capture.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020043#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020044#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020045#include <haproxy/check.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020046#include <haproxy/chunk.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020047#ifdef USE_CPU_AFFINITY
Amaury Denoyellec90932b2021-04-14 16:16:03 +020048#include <haproxy/cpuset.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020049#endif
Willy Tarreau7ea393d2020-06-04 18:02:10 +020050#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020051#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020052#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020053#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020054#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020055#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020056#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020057#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020058#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020059#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020060#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020061#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020062#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020063#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020064#include <haproxy/mailers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020065#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020066#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020067#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020068#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020069#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020070#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020071#include <haproxy/proxy.h>
Emeric Brunc9437992021-02-12 19:42:55 +010072#include <haproxy/resolvers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020073#include <haproxy/sample.h>
74#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020075#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020076#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020077#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020078#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020079#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020080#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020081#include <haproxy/thread.h>
82#include <haproxy/time.h>
83#include <haproxy/tools.h>
84#include <haproxy/uri_auth-t.h>
Frédéric Lécaille884f2e92020-11-23 14:23:21 +010085#include <haproxy/xprt_quic.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020086
87
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010088/* Used to chain configuration sections definitions. This list
89 * stores struct cfg_section
90 */
91struct list sections = LIST_HEAD_INIT(sections);
92
William Lallemand48b4bb42017-10-23 14:36:34 +020093struct list postparsers = LIST_HEAD_INIT(postparsers);
94
Eric Salama1b8dacc2021-03-16 15:12:17 +010095extern struct proxy *mworker_proxy;
96
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010097char *cursection = NULL;
Willy Tarreauc8d5b952019-02-27 17:25:52 +010098int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +010099int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +0100100char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200101
Willy Tarreau8a022d52021-04-27 20:29:11 +0200102/* how to handle default paths */
103static enum default_path_mode {
104 DEFAULT_PATH_CURRENT = 0, /* "current": paths are relative to CWD (this is the default) */
105 DEFAULT_PATH_CONFIG, /* "config": paths are relative to config file */
106 DEFAULT_PATH_PARENT, /* "parent": paths are relative to config file's ".." */
107 DEFAULT_PATH_ORIGIN, /* "origin": paths are relative to default_path_origin */
108} default_path_mode;
109
110static char initial_cwd[PATH_MAX];
111static char current_cwd[PATH_MAX];
112
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200113/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100114struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200115 .list = LIST_HEAD_INIT(cfg_keywords.list)
116};
117
Willy Tarreau4b103022021-02-12 17:59:10 +0100118/* nested if/elif/else/endif block states */
119enum nested_cond_state {
120 NESTED_COND_IF_TAKE, // "if" with a true condition
121 NESTED_COND_IF_DROP, // "if" with a false condition
122 NESTED_COND_IF_SKIP, // "if" masked by an outer false condition
123
124 NESTED_COND_ELIF_TAKE, // "elif" with a true condition from a false one
125 NESTED_COND_ELIF_DROP, // "elif" with a false condition from a false one
126 NESTED_COND_ELIF_SKIP, // "elif" masked by an outer false condition or a previously taken if
127
128 NESTED_COND_ELSE_TAKE, // taken "else" after an if false condition
129 NESTED_COND_ELSE_DROP, // "else" masked by outer false condition or an if true condition
130};
131
132/* 100 levels of nested conditions should already be sufficient */
133#define MAXNESTEDCONDS 100
134
Willy Tarreaubaaee002006-06-26 02:48:02 +0200135/*
136 * converts <str> to a list of listeners which are dynamically allocated.
137 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
138 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
139 * - <port> is a numerical port from 1 to 65535 ;
140 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
141 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200142 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
143 * not NULL, it must be a valid pointer to either NULL or a freeable area that
144 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200145 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200146int 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 +0200147{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200148 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100149 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200150 int port, end;
151
152 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200153
Willy Tarreaubaaee002006-06-26 02:48:02 +0200154 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200155 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100156 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200157
158 str = next;
159 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100160 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200161 *next++ = 0;
162 }
163
Willy Tarreau5fc93282020-09-16 18:25:03 +0200164 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Eric Salama1b8dacc2021-03-16 15:12:17 +0100165 (curproxy == global.cli_fe || curproxy == mworker_proxy) ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200166 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200167 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100168 if (!ss2)
169 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200170
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100171 /* OK the address looks correct */
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100172
173#ifdef USE_QUIC
174 /* The transport layer automatically switches to QUIC when QUIC
175 * is selected, regardless of bind_conf settings. We then need
176 * to initialize QUIC params.
177 */
178 if (proto->sock_type == SOCK_DGRAM && proto->ctrl_type == SOCK_STREAM) {
179 bind_conf->xprt = xprt_get(XPRT_QUIC);
180 quic_transport_params_init(&bind_conf->quic_params, 1);
181 }
182#endif
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200183 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200184 memprintf(err, "%s for address '%s'.\n", *err, str);
185 goto fail;
186 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200187 } /* end while(next) */
188 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200189 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200190 fail:
191 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200192 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200193}
194
William Lallemand6e62fb62015-04-28 16:55:23 +0200195/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200196 * converts <str> to a list of datagram-oriented listeners which are dynamically
197 * allocated.
198 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
199 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
200 * - <port> is a numerical port from 1 to 65535 ;
201 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
202 * This can be repeated as many times as necessary, separated by a coma.
203 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
204 * not NULL, it must be a valid pointer to either NULL or a freeable area that
205 * will be replaced with an error message.
206 */
207int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
208{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200209 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200210 char *next, *dupstr;
211 int port, end;
212
213 next = dupstr = strdup(str);
214
215 while (next && *next) {
216 struct sockaddr_storage *ss2;
217 int fd = -1;
218
219 str = next;
220 /* 1) look for the end of the first address */
221 if ((next = strchr(str, ',')) != NULL) {
222 *next++ = 0;
223 }
224
Willy Tarreau5fc93282020-09-16 18:25:03 +0200225 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreau4975d142021-03-13 11:00:33 +0100226 curproxy == global.cli_fe ? NULL : global.unix_bind.prefix,
Willy Tarreauaa333122020-09-16 15:13:04 +0200227 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
228 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
229 if (!ss2)
230 goto fail;
231
232 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200233 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200234 memprintf(err, "%s for address '%s'.\n", *err, str);
235 goto fail;
236 }
237 } /* end while(next) */
238 free(dupstr);
239 return 1;
240 fail:
241 free(dupstr);
242 return 0;
243}
244
245/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100246 * Report an error in <msg> when there are too many arguments. This version is
247 * intended to be used by keyword parsers so that the message will be included
248 * into the general error message. The index is the current keyword in args.
249 * Return 0 if the number of argument is correct, otherwise build a message and
250 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
251 * message may also be null, it will simply not be produced (useful to check only).
252 * <msg> and <err_code> are only affected on error.
253 */
254int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
255{
256 int i;
257
258 if (!*args[index + maxarg + 1])
259 return 0;
260
261 if (msg) {
262 *msg = NULL;
263 memprintf(msg, "%s", args[0]);
264 for (i = 1; i <= index; i++)
265 memprintf(msg, "%s %s", *msg, args[i]);
266
267 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
268 }
269 if (err_code)
270 *err_code |= ERR_ALERT | ERR_FATAL;
271
272 return 1;
273}
274
275/*
276 * same as too_many_args_idx with a 0 index
277 */
278int too_many_args(int maxarg, char **args, char **msg, int *err_code)
279{
280 return too_many_args_idx(maxarg, 0, args, msg, err_code);
281}
282
283/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200284 * Report a fatal Alert when there is too much arguments
285 * The index is the current keyword in args
286 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
287 * Fill err_code with an ERR_ALERT and an ERR_FATAL
288 */
289int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
290{
291 char *kw = NULL;
292 int i;
293
294 if (!*args[index + maxarg + 1])
295 return 0;
296
297 memprintf(&kw, "%s", args[0]);
298 for (i = 1; i <= index; i++) {
299 memprintf(&kw, "%s %s", kw, args[i]);
300 }
301
Christopher Faulet767a84b2017-11-24 16:50:31 +0100302 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 +0200303 free(kw);
304 *err_code |= ERR_ALERT | ERR_FATAL;
305 return 1;
306}
307
308/*
309 * same as alertif_too_many_args_idx with a 0 index
310 */
311int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
312{
313 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
314}
315
Willy Tarreau61d18892009-03-31 10:49:21 +0200316
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100317/* Report it if a request ACL condition uses some keywords that are incompatible
318 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
319 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
320 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100321 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100322int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100323{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100324 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200325 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100326
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100327 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100328 return 0;
329
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100330 acl = acl_cond_conflicts(cond, where);
331 if (acl) {
332 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100333 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
334 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100335 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100336 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
337 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100338 return ERR_WARN;
339 }
340 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100341 return 0;
342
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100343 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100344 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
345 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100346 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100347 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
348 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100349 return ERR_WARN;
350}
351
Christopher Faulet581db2b2021-03-26 10:02:46 +0100352/* Report it if an ACL uses a L6 sample fetch from an HTTP proxy. It returns
353 * either 0 or ERR_WARN so that its result can be or'ed with err_code. Note that
354 * <cond> may be NULL and then will be ignored.
355*/
356int warnif_tcp_http_cond(const struct proxy *px, const struct acl_cond *cond)
357{
358 if (!cond || px->mode != PR_MODE_HTTP)
359 return 0;
360
361 if (cond->use & (SMP_USE_L6REQ|SMP_USE_L6RES)) {
362 ha_warning("Proxy '%s': L6 sample fetches ignored on HTTP proxies (declared at %s:%d).\n",
363 px->id, cond->file, cond->line);
364 return ERR_WARN;
365 }
366 return 0;
367}
368
Willy Tarreaue2afcc42021-03-12 09:08:04 +0100369/* try to find in <list> the word that looks closest to <word> by counting
370 * transitions between letters, digits and other characters. Will return the
371 * best matching word if found, otherwise NULL. An optional array of extra
372 * words to compare may be passed in <extra>, but it must then be terminated
373 * by a NULL entry. If unused it may be NULL.
374 */
375const char *cfg_find_best_match(const char *word, const struct list *list, int section, const char **extra)
376{
377 uint8_t word_sig[1024]; // 0..25=letter, 26=digit, 27=other, 28=begin, 29=end
378 uint8_t list_sig[1024];
379 const struct cfg_kw_list *kwl;
380 int index;
381 const char *best_ptr = NULL;
382 int dist, best_dist = INT_MAX;
383
384 make_word_fingerprint(word_sig, word);
385 list_for_each_entry(kwl, list, list) {
386 for (index = 0; kwl->kw[index].kw != NULL; index++) {
387 if (kwl->kw[index].section != section)
388 continue;
389
390 make_word_fingerprint(list_sig, kwl->kw[index].kw);
391 dist = word_fingerprint_distance(word_sig, list_sig);
392 if (dist < best_dist) {
393 best_dist = dist;
394 best_ptr = kwl->kw[index].kw;
395 }
396 }
397 }
398
399 while (extra && *extra) {
400 make_word_fingerprint(list_sig, *extra);
401 dist = word_fingerprint_distance(word_sig, list_sig);
402 if (dist < best_dist) {
403 best_dist = dist;
404 best_ptr = *extra;
405 }
406 extra++;
407 }
408
409 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
410 best_ptr = NULL;
411 return best_ptr;
412}
413
Christopher Faulet62519022017-10-16 15:49:32 +0200414/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100415 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100416 * two such numbers delimited by a dash ('-'). On success, it returns
417 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200418 *
419 * Note: this function can also be used to parse a thread number or a set of
420 * threads.
421 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100422int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200423{
Christopher Faulet26028f62017-11-22 15:01:51 +0100424 if (autoinc) {
425 *autoinc = 0;
426 if (strncmp(arg, "auto:", 5) == 0) {
427 arg += 5;
428 *autoinc = 1;
429 }
430 }
431
Christopher Faulet62519022017-10-16 15:49:32 +0200432 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100433 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200434 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100435 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200436 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100437 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200438 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100439 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100440 unsigned int low, high;
441
Christopher Faulet18cca782019-02-07 16:29:41 +0100442 for (p = arg; *p; p++) {
443 if (*p == '-' && !dash)
444 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100445 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100446 memprintf(err, "'%s' is not a valid number/range.", arg);
447 return -1;
448 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100449 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100450
451 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100452 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100453 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100454
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100455 if (high < low) {
456 unsigned int swap = low;
457 low = high;
458 high = swap;
459 }
460
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100461 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100462 memprintf(err, "'%s' is not a valid number/range."
463 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100464 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100465 return 1;
466 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100467
468 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100469 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200470 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100471 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100472
Christopher Faulet5ab51772017-11-22 11:21:58 +0100473 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200474}
475
David Carlier7e351ee2017-12-01 09:14:02 +0000476#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200477/* Parse cpu sets. Each CPU set is either a unique number between 0 and
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200478 * ha_cpuset_size() - 1 or a range with two such numbers delimited by a dash
Amaury Denoyellea8082352021-04-06 16:46:15 +0200479 * ('-'). If <comma_allowed> is set, each CPU set can be a list of unique
480 * numbers or ranges separated by a comma. It is also possible to specify
481 * multiple cpu numbers or ranges in distinct argument in <args>. On success,
482 * it returns 0, otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200483 */
Amaury Denoyellea8082352021-04-06 16:46:15 +0200484unsigned long parse_cpu_set(const char **args, struct hap_cpuset *cpu_set,
485 int comma_allowed, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200486{
487 int cur_arg = 0;
Amaury Denoyellea8082352021-04-06 16:46:15 +0200488 const char *arg;
Christopher Faulet62519022017-10-16 15:49:32 +0200489
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200490 ha_cpuset_zero(cpu_set);
491
Amaury Denoyellea8082352021-04-06 16:46:15 +0200492 arg = args[cur_arg];
493 while (*arg) {
494 const char *dash, *comma;
Christopher Faulet62519022017-10-16 15:49:32 +0200495 unsigned int low, high;
496
Willy Tarreau90807112020-02-25 08:16:33 +0100497 if (!isdigit((unsigned char)*args[cur_arg])) {
Amaury Denoyellea8082352021-04-06 16:46:15 +0200498 memprintf(err, "'%s' is not a CPU range.", arg);
Christopher Faulet62519022017-10-16 15:49:32 +0200499 return -1;
500 }
501
Amaury Denoyellea8082352021-04-06 16:46:15 +0200502 low = high = str2uic(arg);
503
504 comma = comma_allowed ? strchr(arg, ',') : NULL;
505 dash = strchr(arg, '-');
506
507 if (dash && (!comma || dash < comma))
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200508 high = *(dash+1) ? str2uic(dash + 1) : ha_cpuset_size() - 1;
Christopher Faulet62519022017-10-16 15:49:32 +0200509
510 if (high < low) {
511 unsigned int swap = low;
512 low = high;
513 high = swap;
514 }
515
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200516 if (high >= ha_cpuset_size()) {
517 memprintf(err, "supports CPU numbers from 0 to %d.",
518 ha_cpuset_size() - 1);
Christopher Faulet62519022017-10-16 15:49:32 +0200519 return 1;
520 }
521
522 while (low <= high)
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200523 ha_cpuset_set(cpu_set, low++);
Christopher Faulet62519022017-10-16 15:49:32 +0200524
Amaury Denoyellea8082352021-04-06 16:46:15 +0200525 /* if a comma is present, parse the rest of the arg, else
526 * skip to the next arg */
527 arg = comma ? comma + 1 : args[++cur_arg];
Christopher Faulet62519022017-10-16 15:49:32 +0200528 }
529 return 0;
530}
David Carlier7e351ee2017-12-01 09:14:02 +0000531#endif
532
Frédéric Lécaille18251032019-01-11 11:07:15 +0100533/* Allocate and initialize the frontend of a "peers" section found in
534 * file <file> at line <linenum> with <id> as ID.
535 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200536 * Note that this function may be called from "default-server"
537 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100538 */
539static int init_peers_frontend(const char *file, int linenum,
540 const char *id, struct peers *peers)
541{
542 struct proxy *p;
543
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200544 if (peers->peers_fe) {
545 p = peers->peers_fe;
546 goto out;
547 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100548
Frédéric Lécaille18251032019-01-11 11:07:15 +0100549 p = calloc(1, sizeof *p);
550 if (!p) {
551 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
552 return -1;
553 }
554
555 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200556 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100557 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200558 /* Finally store this frontend. */
559 peers->peers_fe = p;
560
561 out:
562 if (id && !p->id)
563 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200564 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100565 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100566 if (linenum != -1)
567 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100568
569 return 0;
570}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100571
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100572/* Only change ->file, ->line and ->arg struct bind_conf member values
573 * if already present.
574 */
575static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
576 const char *file, int line,
577 const char *arg, struct xprt_ops *xprt)
578{
579 struct bind_conf *bind_conf;
580
581 if (!LIST_ISEMPTY(&p->conf.bind)) {
582 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
583 free(bind_conf->file);
584 bind_conf->file = strdup(file);
585 bind_conf->line = line;
586 if (arg) {
587 free(bind_conf->arg);
588 bind_conf->arg = strdup(arg);
589 }
590 }
591 else {
592 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
593 }
594
595 return bind_conf;
596}
597
598/*
599 * Allocate a new struct peer parsed at line <linenum> in file <file>
600 * to be added to <peers>.
601 * Returns the new allocated structure if succeeded, NULL if not.
602 */
603static struct peer *cfg_peers_add_peer(struct peers *peers,
604 const char *file, int linenum,
605 const char *id, int local)
606{
607 struct peer *p;
608
609 p = calloc(1, sizeof *p);
610 if (!p) {
611 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
612 return NULL;
613 }
614
615 /* the peers are linked backwards first */
616 peers->count++;
617 p->next = peers->remote;
618 peers->remote = p;
619 p->conf.file = strdup(file);
620 p->conf.line = linenum;
621 p->last_change = now.tv_sec;
622 p->xprt = xprt_get(XPRT_RAW);
623 p->sock_init_arg = NULL;
624 HA_SPIN_INIT(&p->lock);
625 if (id)
626 p->id = strdup(id);
627 if (local) {
628 p->local = 1;
629 peers->local = p;
630 }
631
632 return p;
633}
634
Willy Tarreaubaaee002006-06-26 02:48:02 +0200635/*
William Lallemand51097192015-04-14 16:35:22 +0200636 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200637 * Returns the error code, 0 if OK, or any combination of :
638 * - ERR_ABORT: must abort ASAP
639 * - ERR_FATAL: we can continue parsing but not start the service
640 * - ERR_WARN: a warning has been emitted
641 * - ERR_ALERT: an alert has been emitted
642 * Only the two first ones can stop processing, the two others are just
643 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200644 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200645int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
646{
647 static struct peers *curpeers = NULL;
648 struct peer *newpeer = NULL;
649 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200650 struct bind_conf *bind_conf;
651 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200652 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100653 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100654 static int bind_line, peer_line;
655
656 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
657 int cur_arg;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100658 struct bind_conf *bind_conf;
659 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200660
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100661 cur_arg = 1;
662
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200663 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
664 err_code |= ERR_ALERT | ERR_ABORT;
665 goto out;
666 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100667
668 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
669 NULL, xprt_get(XPRT_RAW));
670 if (*args[0] == 'b') {
671 struct listener *l;
672
673 if (peer_line) {
674 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
675 err_code |= ERR_ALERT | ERR_FATAL;
676 goto out;
677 }
678
679 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
680 if (errmsg && *errmsg) {
681 indent_msg(&errmsg, 2);
682 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
683 }
684 else
685 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
686 file, linenum, args[0], args[1], args[2]);
687 err_code |= ERR_FATAL;
688 goto out;
689 }
690 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
691 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100692 l->accept = session_accept_fd;
693 l->analysers |= curpeers->peers_fe->fe_req_ana;
694 l->default_target = curpeers->peers_fe->default_target;
695 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100696 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100697
698 bind_line = 1;
699 if (cfg_peers->local) {
700 newpeer = cfg_peers->local;
701 }
702 else {
703 /* This peer is local.
704 * Note that we do not set the peer ID. This latter is initialized
705 * when parsing "peer" or "server" line.
706 */
707 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
708 if (!newpeer) {
709 err_code |= ERR_ALERT | ERR_ABORT;
710 goto out;
711 }
712 }
Willy Tarreau37159062020-08-27 07:48:42 +0200713 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200714 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100715 cur_arg++;
716 }
717
718 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
719 int ret;
720
721 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
722 err_code |= ret;
723 if (ret) {
724 if (errmsg && *errmsg) {
725 indent_msg(&errmsg, 2);
726 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
727 }
728 else
729 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
730 file, linenum, args[cur_arg]);
731 if (ret & ERR_FATAL)
732 goto out;
733 }
734 cur_arg += 1 + kw->skip;
735 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100736 if (*args[cur_arg] != 0) {
Willy Tarreau433b05f2021-03-12 10:14:07 +0100737 const char *best = bind_find_best_kw(args[cur_arg]);
738 if (best)
739 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section; did you mean '%s' maybe ?\n",
740 file, linenum, args[cur_arg], cursection, best);
741 else
742 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.\n",
743 file, linenum, args[cur_arg], cursection);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100744 err_code |= ERR_ALERT | ERR_FATAL;
745 goto out;
746 }
747 }
748 else if (strcmp(args[0], "default-server") == 0) {
749 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
750 err_code |= ERR_ALERT | ERR_ABORT;
751 goto out;
752 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100753 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
754 SRV_PARSE_DEFAULT_SERVER|SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200755 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100756 else if (strcmp(args[0], "log") == 0) {
757 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
758 err_code |= ERR_ALERT | ERR_ABORT;
759 goto out;
760 }
Emeric Brun9533a702021-04-02 10:13:43 +0200761 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), file, linenum, &errmsg)) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100762 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
763 err_code |= ERR_ALERT | ERR_FATAL;
764 goto out;
765 }
766 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200767 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100768 /* Initialize these static variables when entering a new "peers" section*/
769 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100770 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100771 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100772 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100773 goto out;
774 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200775
William Lallemand6e62fb62015-04-28 16:55:23 +0200776 if (alertif_too_many_args(1, file, linenum, args, &err_code))
777 goto out;
778
Emeric Brun32da3c42010-09-23 18:39:19 +0200779 err = invalid_char(args[1]);
780 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100781 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
782 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100783 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100784 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200785 }
786
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200787 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200788 /*
789 * If there are two proxies with the same name only following
790 * combinations are allowed:
791 */
792 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100793 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
794 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200795 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200796 }
797 }
798
Vincent Bernat02779b62016-04-03 13:48:43 +0200799 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100800 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200801 err_code |= ERR_ALERT | ERR_ABORT;
802 goto out;
803 }
804
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200805 curpeers->next = cfg_peers;
806 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200807 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200808 curpeers->conf.line = linenum;
809 curpeers->last_change = now.tv_sec;
810 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200811 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200812 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200813 else if (strcmp(args[0], "peer") == 0 ||
814 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100815 int local_peer, peer;
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100816 int parse_addr = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200817
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100818 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100819 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100820 /* The local peer may have already partially been parsed on a "bind" line. */
821 if (*args[0] == 'p') {
822 if (bind_line) {
823 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
824 err_code |= ERR_ALERT | ERR_FATAL;
825 goto out;
826 }
827 peer_line = 1;
828 }
829 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
830 /* The local peer has already been initialized on a "bind" line.
831 * Let's use it and store its ID.
832 */
833 newpeer = cfg_peers->local;
834 newpeer->id = strdup(localpeer);
835 }
836 else {
837 if (local_peer && cfg_peers->local) {
838 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
839 file, linenum, args[0], args[1],
840 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
841 err_code |= ERR_FATAL;
842 goto out;
843 }
844 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
845 if (!newpeer) {
846 err_code |= ERR_ALERT | ERR_ABORT;
847 goto out;
848 }
849 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200850
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100851 /* Line number and peer ID are updated only if this peer is the local one. */
852 if (init_peers_frontend(file,
853 newpeer->local ? linenum: -1,
854 newpeer->local ? newpeer->id : NULL,
855 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200856 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100857 goto out;
858 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100859
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100860 /* This initializes curpeer->peers->peers_fe->srv.
861 * The server address is parsed only if we are parsing a "peer" line,
862 * or if we are parsing a "server" line and the current peer is not the local one.
863 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100864 parse_addr = (peer || !local_peer) ? SRV_PARSE_PARSE_ADDR : 0;
865 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
866 SRV_PARSE_IN_PEER_SECTION|parse_addr|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200867 if (!curpeers->peers_fe->srv) {
868 /* Remove the newly allocated peer. */
869 if (newpeer != curpeers->local) {
870 struct peer *p;
871
872 p = curpeers->remote;
873 curpeers->remote = curpeers->remote->next;
874 free(p->id);
875 free(p);
876 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200877 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200878 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200879
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100880 /* If the peer address has just been parsed, let's copy it to <newpeer>
881 * and initializes ->proto.
882 */
883 if (peer || !local_peer) {
884 newpeer->addr = curpeers->peers_fe->srv->addr;
885 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
886 }
887
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100888 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200889 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100890 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200891
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100892 newpeer->srv = curpeers->peers_fe->srv;
893 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200894 goto out;
895
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100896 /* The lines above are reserved to "peer" lines. */
897 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200898 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200899
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100900 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 +0100901
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100902 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
903 if (errmsg && *errmsg) {
904 indent_msg(&errmsg, 2);
905 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 +0100906 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100907 else
908 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
909 file, linenum, args[0], args[1], args[2]);
910 err_code |= ERR_FATAL;
911 goto out;
912 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100913
914 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
915 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100916 l->accept = session_accept_fd;
917 l->analysers |= curpeers->peers_fe->fe_req_ana;
918 l->default_target = curpeers->peers_fe->default_target;
919 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100920 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100921 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100922 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100923 struct stktable *t, *other;
924 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100925 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100926
927 /* Line number and peer ID are updated only if this peer is the local one. */
928 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
929 err_code |= ERR_ALERT | ERR_ABORT;
930 goto out;
931 }
932
933 other = stktable_find_by_name(args[1]);
934 if (other) {
935 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
936 file, linenum, args[1],
937 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
938 other->proxy ? other->id : other->peers.p->id,
939 other->conf.file, other->conf.line);
940 err_code |= ERR_ALERT | ERR_FATAL;
941 goto out;
942 }
943
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100944 /* Build the stick-table name, concatenating the "peers" section name
945 * followed by a '/' character and the table name argument.
946 */
947 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100948 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100949 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
950 file, linenum, args[0], args[1]);
951 err_code |= ERR_ALERT | ERR_FATAL;
952 goto out;
953 }
954
955 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100956 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100957 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
958 file, linenum, args[0], args[1]);
959 err_code |= ERR_ALERT | ERR_FATAL;
960 goto out;
961 }
962
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100963 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100964 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100965 if (!t || !id) {
966 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
967 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +0200968 free(t);
969 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100970 err_code |= ERR_ALERT | ERR_FATAL;
971 goto out;
972 }
973
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100974 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +0200975 if (err_code & ERR_FATAL) {
976 free(t);
977 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100978 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +0200979 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100980
981 stktable_store_name(t);
982 t->next = stktables_list;
983 stktables_list = t;
984 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100985 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200986 curpeers->disabled = 1;
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200987 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100988 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200989 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200990 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200991 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100992 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200993 err_code |= ERR_ALERT | ERR_FATAL;
994 goto out;
995 }
996
997out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100998 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200999 return err_code;
1000}
1001
Baptiste Assmann325137d2015-04-13 23:40:55 +02001002/*
William Lallemand51097192015-04-14 16:35:22 +02001003 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001004 * Returns the error code, 0 if OK, or any combination of :
1005 * - ERR_ABORT: must abort ASAP
1006 * - ERR_FATAL: we can continue parsing but not start the service
1007 * - ERR_WARN: a warning has been emitted
1008 * - ERR_ALERT: an alert has been emitted
1009 * Only the two first ones can stop processing, the two others are just
1010 * indicators.
1011 */
1012int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1013{
1014 static struct mailers *curmailers = NULL;
1015 struct mailer *newmailer = NULL;
1016 const char *err;
1017 int err_code = 0;
1018 char *errmsg = NULL;
1019
1020 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1021 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001022 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001023 err_code |= ERR_ALERT | ERR_ABORT;
1024 goto out;
1025 }
1026
1027 err = invalid_char(args[1]);
1028 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001029 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1030 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001031 err_code |= ERR_ALERT | ERR_ABORT;
1032 goto out;
1033 }
1034
1035 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1036 /*
1037 * If there are two proxies with the same name only following
1038 * combinations are allowed:
1039 */
1040 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001041 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1042 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001043 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001044 }
1045 }
1046
Vincent Bernat02779b62016-04-03 13:48:43 +02001047 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001048 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001049 err_code |= ERR_ALERT | ERR_ABORT;
1050 goto out;
1051 }
1052
1053 curmailers->next = mailers;
1054 mailers = curmailers;
1055 curmailers->conf.file = strdup(file);
1056 curmailers->conf.line = linenum;
1057 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001058 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1059 * But need enough time so that timeouts don't occur
1060 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001061 }
1062 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1063 struct sockaddr_storage *sk;
1064 int port1, port2;
1065 struct protocol *proto;
1066
1067 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001068 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1069 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001070 err_code |= ERR_ALERT | ERR_FATAL;
1071 goto out;
1072 }
1073
1074 err = invalid_char(args[1]);
1075 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001076 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1077 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001078 err_code |= ERR_ALERT | ERR_FATAL;
1079 goto out;
1080 }
1081
Vincent Bernat02779b62016-04-03 13:48:43 +02001082 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001083 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001084 err_code |= ERR_ALERT | ERR_ABORT;
1085 goto out;
1086 }
1087
1088 /* the mailers are linked backwards first */
1089 curmailers->count++;
1090 newmailer->next = curmailers->mailer_list;
1091 curmailers->mailer_list = newmailer;
1092 newmailer->mailers = curmailers;
1093 newmailer->conf.file = strdup(file);
1094 newmailer->conf.line = linenum;
1095
1096 newmailer->id = strdup(args[1]);
1097
Willy Tarreau5fc93282020-09-16 18:25:03 +02001098 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001099 &errmsg, NULL, NULL,
1100 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 +09001101 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001102 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001103 err_code |= ERR_ALERT | ERR_FATAL;
1104 goto out;
1105 }
1106
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001107 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001108 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1109 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001110 err_code |= ERR_ALERT | ERR_FATAL;
1111 goto out;
1112 }
1113
Simon Horman0d16a402015-01-30 11:22:58 +09001114 newmailer->addr = *sk;
1115 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001116 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001117 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001118 }
1119 else if (strcmp(args[0], "timeout") == 0) {
1120 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001121 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1122 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001123 err_code |= ERR_ALERT | ERR_FATAL;
1124 goto out;
1125 }
1126 else if (strcmp(args[1], "mail") == 0) {
1127 const char *res;
1128 unsigned int timeout_mail;
1129 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001130 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1131 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001132 err_code |= ERR_ALERT | ERR_FATAL;
1133 goto out;
1134 }
1135 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001136 if (res == PARSE_TIME_OVER) {
1137 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1138 file, linenum, args[2], args[0], args[1]);
1139 err_code |= ERR_ALERT | ERR_FATAL;
1140 goto out;
1141 }
1142 else if (res == PARSE_TIME_UNDER) {
1143 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1144 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001145 err_code |= ERR_ALERT | ERR_FATAL;
1146 goto out;
1147 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001148 else if (res) {
1149 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1150 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001151 err_code |= ERR_ALERT | ERR_FATAL;
1152 goto out;
1153 }
1154 curmailers->timeout.mail = timeout_mail;
1155 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001156 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001157 file, linenum, args[0], args[1]);
1158 err_code |= ERR_ALERT | ERR_FATAL;
1159 goto out;
1160 }
1161 }
Simon Horman0d16a402015-01-30 11:22:58 +09001162 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001163 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001164 err_code |= ERR_ALERT | ERR_FATAL;
1165 goto out;
1166 }
1167
1168out:
1169 free(errmsg);
1170 return err_code;
1171}
1172
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001173void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001174{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001175 ha_free(&p->email_alert.mailers.name);
1176 ha_free(&p->email_alert.from);
1177 ha_free(&p->email_alert.to);
1178 ha_free(&p->email_alert.myhostname);
Simon Horman9dc49962015-01-30 11:22:59 +09001179}
1180
Willy Tarreaubaaee002006-06-26 02:48:02 +02001181
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001182int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001183cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1184{
Willy Tarreaue5733232019-05-22 19:24:06 +02001185#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001186 const char *err;
1187 const char *item = args[0];
1188
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001189 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001190 return 0;
1191 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001192 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001193 size_t idx = 1;
1194 const char *current;
1195 while (*(current = args[idx++])) {
1196 err = invalid_char(current);
1197 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001198 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1199 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001200 return ERR_ALERT | ERR_FATAL;
1201 }
1202
1203 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001204 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1205 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001206 return ERR_ALERT | ERR_FATAL;
1207 }
1208 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001209 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1210 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001211 return ERR_ALERT | ERR_FATAL;
1212 }
1213 }
1214 }
1215
1216 return 0;
1217#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001218 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1219 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001220 return ERR_ALERT | ERR_FATAL;
1221#endif
1222}
1223
1224int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001225cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1226{
1227
1228 int err_code = 0;
1229 const char *err;
1230
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001231 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001232 struct userlist *newul;
1233
1234 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001235 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1236 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001237 err_code |= ERR_ALERT | ERR_FATAL;
1238 goto out;
1239 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001240 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1241 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001242
1243 err = invalid_char(args[1]);
1244 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001245 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1246 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001247 err_code |= ERR_ALERT | ERR_FATAL;
1248 goto out;
1249 }
1250
1251 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001252 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001253 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1254 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001255 err_code |= ERR_WARN;
1256 goto out;
1257 }
1258
Vincent Bernat02779b62016-04-03 13:48:43 +02001259 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001260 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001261 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001262 err_code |= ERR_ALERT | ERR_ABORT;
1263 goto out;
1264 }
1265
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001266 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001267 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001268 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001269 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001270 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001271 goto out;
1272 }
1273
1274 newul->next = userlist;
1275 userlist = newul;
1276
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001277 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001278 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001279 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001280 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001281
1282 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001283 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1284 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001285 err_code |= ERR_ALERT | ERR_FATAL;
1286 goto out;
1287 }
1288
1289 err = invalid_char(args[1]);
1290 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001291 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1292 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001293 err_code |= ERR_ALERT | ERR_FATAL;
1294 goto out;
1295 }
1296
William Lallemand4ac9f542015-05-28 18:03:51 +02001297 if (!userlist)
1298 goto out;
1299
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001300 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001301 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001302 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1303 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001304 err_code |= ERR_ALERT;
1305 goto out;
1306 }
1307
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001308 ag = calloc(1, sizeof(*ag));
1309 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001310 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001311 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001312 goto out;
1313 }
1314
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001315 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001316 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001317 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001318 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001319 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001320 goto out;
1321 }
1322
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001323 cur_arg = 2;
1324
1325 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001326 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001327 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001328 cur_arg += 2;
1329 continue;
1330 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001331 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1332 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001333 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001334 free(ag->groupusers);
1335 free(ag->name);
1336 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001337 goto out;
1338 }
1339 }
1340
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001341 ag->next = userlist->groups;
1342 userlist->groups = ag;
1343
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001344 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001345 struct auth_users *newuser;
1346 int cur_arg;
1347
1348 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001349 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1350 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001351 err_code |= ERR_ALERT | ERR_FATAL;
1352 goto out;
1353 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001354 if (!userlist)
1355 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001356
1357 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001358 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001359 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1360 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001361 err_code |= ERR_ALERT;
1362 goto out;
1363 }
1364
Vincent Bernat02779b62016-04-03 13:48:43 +02001365 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001366 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001367 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001368 err_code |= ERR_ALERT | ERR_ABORT;
1369 goto out;
1370 }
1371
1372 newuser->user = strdup(args[1]);
1373
1374 newuser->next = userlist->users;
1375 userlist->users = newuser;
1376
1377 cur_arg = 2;
1378
1379 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001380 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001381#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001382 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001383 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1384 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001385 err_code |= ERR_ALERT | ERR_FATAL;
1386 goto out;
1387 }
1388#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001389 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1390 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001391 err_code |= ERR_ALERT;
1392#endif
1393 newuser->pass = strdup(args[cur_arg + 1]);
1394 cur_arg += 2;
1395 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001396 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001397 newuser->pass = strdup(args[cur_arg + 1]);
1398 newuser->flags |= AU_O_INSECURE;
1399 cur_arg += 2;
1400 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001401 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001402 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001403 cur_arg += 2;
1404 continue;
1405 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001406 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1407 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001408 err_code |= ERR_ALERT | ERR_FATAL;
1409 goto out;
1410 }
1411 }
1412 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001413 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 +01001414 err_code |= ERR_ALERT | ERR_FATAL;
1415 }
1416
1417out:
1418 return err_code;
1419}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001420
Christopher Faulet79bdef32016-11-04 22:36:15 +01001421int
1422cfg_parse_scope(const char *file, int linenum, char *line)
1423{
1424 char *beg, *end, *scope = NULL;
1425 int err_code = 0;
1426 const char *err;
1427
1428 beg = line + 1;
1429 end = strchr(beg, ']');
1430
1431 /* Detect end of scope declaration */
1432 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001433 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1434 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001435 err_code |= ERR_ALERT | ERR_FATAL;
1436 goto out;
1437 }
1438
1439 /* Get scope name and check its validity */
1440 scope = my_strndup(beg, end-beg);
1441 err = invalid_char(scope);
1442 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001443 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1444 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001445 err_code |= ERR_ALERT | ERR_ABORT;
1446 goto out;
1447 }
1448
1449 /* Be sure to have a scope declaration alone on its line */
1450 line = end+1;
1451 while (isspace((unsigned char)*line))
1452 line++;
1453 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001454 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1455 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001456 err_code |= ERR_ALERT | ERR_ABORT;
1457 goto out;
1458 }
1459
1460 /* We have a valid scope declaration, save it */
1461 free(cfg_scope);
1462 cfg_scope = scope;
1463 scope = NULL;
1464
1465 out:
1466 free(scope);
1467 return err_code;
1468}
1469
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001470int
1471cfg_parse_track_sc_num(unsigned int *track_sc_num,
1472 const char *arg, const char *end, char **errmsg)
1473{
1474 const char *p;
1475 unsigned int num;
1476
1477 p = arg;
1478 num = read_uint64(&arg, end);
1479
1480 if (arg != end) {
1481 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1482 return -1;
1483 }
1484
1485 if (num >= MAX_SESS_STKCTR) {
1486 memprintf(errmsg, "%u track-sc number exceeding "
1487 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1488 return -1;
1489 }
1490
1491 *track_sc_num = num;
1492 return 0;
1493}
1494
Willy Tarreaubaaee002006-06-26 02:48:02 +02001495/*
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001496 * Detect a global section after a non-global one and output a diagnostic
1497 * warning.
1498 */
1499static void check_section_position(char *section_name,
1500 const char *file, int linenum,
1501 int *non_global_parsed)
1502{
1503 if (!strcmp(section_name, "global")) {
1504 if (*non_global_parsed == 1)
1505 _ha_diag_warning("parsing [%s:%d] : global section detected after a non-global one, the prevalence of their statements is unspecified\n", file, linenum);
1506 }
1507 else if (*non_global_parsed == 0) {
1508 *non_global_parsed = 1;
1509 }
1510}
1511
Willy Tarreau8a022d52021-04-27 20:29:11 +02001512/* apply the current default_path setting for config file <file>, and
1513 * optionally replace the current path to <origin> if not NULL while the
1514 * default-path mode is set to "origin". Errors are returned into an
1515 * allocated string passed to <err> if it's not NULL. Returns 0 on failure
1516 * or non-zero on success.
1517 */
1518static int cfg_apply_default_path(const char *file, const char *origin, char **err)
1519{
1520 const char *beg, *end;
1521
1522 /* make path start at <beg> and end before <end>, and switch it to ""
1523 * if no slash was passed.
1524 */
1525 beg = file;
1526 end = strrchr(beg, '/');
1527 if (!end)
1528 end = beg;
1529
1530 if (!*initial_cwd) {
1531 if (getcwd(initial_cwd, sizeof(initial_cwd)) == NULL) {
1532 if (err)
1533 memprintf(err, "Impossible to retrieve startup directory name: %s", strerror(errno));
1534 return 0;
1535 }
1536 }
1537 else if (chdir(initial_cwd) == -1) {
1538 if (err)
1539 memprintf(err, "Impossible to get back to initial directory '%s': %s", initial_cwd, strerror(errno));
1540 return 0;
1541 }
1542
1543 /* OK now we're (back) to initial_cwd */
1544
1545 switch (default_path_mode) {
1546 case DEFAULT_PATH_CURRENT:
1547 /* current_cwd never set, nothing to do */
1548 return 1;
1549
1550 case DEFAULT_PATH_ORIGIN:
1551 /* current_cwd set in the config */
1552 if (origin &&
1553 snprintf(current_cwd, sizeof(current_cwd), "%s", origin) > sizeof(current_cwd)) {
1554 if (err)
1555 memprintf(err, "Absolute path too long: '%s'", origin);
1556 return 0;
1557 }
1558 break;
1559
1560 case DEFAULT_PATH_CONFIG:
1561 if (end - beg >= sizeof(current_cwd)) {
1562 if (err)
1563 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1564 return 0;
1565 }
1566 memcpy(current_cwd, beg, end - beg);
1567 current_cwd[end - beg] = 0;
1568 break;
1569
1570 case DEFAULT_PATH_PARENT:
1571 if (end - beg + 3 >= sizeof(current_cwd)) {
1572 if (err)
1573 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1574 return 0;
1575 }
1576 memcpy(current_cwd, beg, end - beg);
1577 if (end > beg)
1578 memcpy(current_cwd + (end - beg), "/..\0", 4);
1579 else
1580 memcpy(current_cwd + (end - beg), "..\0", 3);
1581 break;
1582 }
1583
1584 if (*current_cwd && chdir(current_cwd) == -1) {
1585 if (err)
1586 memprintf(err, "Impossible to get back to directory '%s': %s", initial_cwd, strerror(errno));
1587 return 0;
1588 }
1589
1590 return 1;
1591}
1592
1593/* parses a global "default-path" directive. */
1594static int cfg_parse_global_def_path(char **args, int section_type, struct proxy *curpx,
1595 const struct proxy *defpx, const char *file, int line,
1596 char **err)
1597{
1598 int ret = -1;
1599
1600 /* "current", "config", "parent", "origin <path>" */
1601
1602 if (strcmp(args[1], "current") == 0)
1603 default_path_mode = DEFAULT_PATH_CURRENT;
1604 else if (strcmp(args[1], "config") == 0)
1605 default_path_mode = DEFAULT_PATH_CONFIG;
1606 else if (strcmp(args[1], "parent") == 0)
1607 default_path_mode = DEFAULT_PATH_PARENT;
1608 else if (strcmp(args[1], "origin") == 0)
1609 default_path_mode = DEFAULT_PATH_ORIGIN;
1610 else {
1611 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]);
1612 goto end;
1613 }
1614
1615 if (default_path_mode == DEFAULT_PATH_ORIGIN) {
1616 if (!*args[2]) {
1617 memprintf(err, "'%s %s' expects a directory as an argument.", args[0], args[1]);
1618 goto end;
1619 }
1620 if (!cfg_apply_default_path(file, args[2], err)) {
1621 memprintf(err, "couldn't set '%s' to origin '%s': %s.", args[0], args[2], *err);
1622 goto end;
1623 }
1624 }
1625 else if (!cfg_apply_default_path(file, NULL, err)) {
1626 memprintf(err, "couldn't set '%s' to '%s': %s.", args[0], args[1], *err);
1627 goto end;
1628 }
1629
1630 /* note that once applied, the path is immediately updated */
1631
1632 ret = 0;
1633 end:
1634 return ret;
1635}
1636
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001637/* evaluate a condition on a .if/.elif line. The condition is already tokenized
1638 * in <err>. Returns -1 on error (in which case err is filled with a message,
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001639 * and only in this case), 0 if the condition is false, 1 if it's true. If
1640 * <errptr> is not NULL, it's set to the first invalid character on error.
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001641 */
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001642static int cfg_eval_condition(char **args, char **err, const char **errptr)
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001643{
1644 char *end;
1645 long val;
1646
1647 if (!*args[0]) /* note: empty = false */
1648 return 0;
1649
1650 val = strtol(args[0], &end, 0);
1651 if (end && *end == '\0')
1652 return val != 0;
1653
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001654 memprintf(err, "unparsable conditional expression '%s'", args[0]);
1655 if (errptr)
1656 *errptr = args[0];
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001657 return -1;
1658}
Willy Tarreau8a022d52021-04-27 20:29:11 +02001659
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001660/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001661 * This function reads and parses the configuration file given in the argument.
Willy Tarreauda543e12021-04-27 18:30:28 +02001662 * Returns the error code, 0 if OK, -1 if the config file couldn't be opened,
1663 * or any combination of :
Willy Tarreau058e9072009-07-20 09:30:05 +02001664 * - ERR_ABORT: must abort ASAP
1665 * - ERR_FATAL: we can continue parsing but not start the service
1666 * - ERR_WARN: a warning has been emitted
1667 * - ERR_ALERT: an alert has been emitted
1668 * Only the two first ones can stop processing, the two others are just
1669 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001670 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001671int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001672{
Willy Tarreauda543e12021-04-27 18:30:28 +02001673 char *thisline = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001674 int linesize = LINESIZE;
Willy Tarreauda543e12021-04-27 18:30:28 +02001675 FILE *f = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001676 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001677 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001678 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001679 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001680 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001681 char *outline = NULL;
1682 size_t outlen = 0;
1683 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001684 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001685 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001686 int nested_cond_lvl = 0;
1687 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001688 int non_global_section_parsed = 0;
Willy Tarreau8a022d52021-04-27 20:29:11 +02001689 char *errmsg = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001690
Willy Tarreau51508052021-05-06 10:04:45 +02001691 global.cfg_curr_line = 0;
1692 global.cfg_curr_file = file;
1693
William Lallemand64e84512015-05-12 14:25:37 +02001694 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Willy Tarreauda543e12021-04-27 18:30:28 +02001695 ha_alert("Out of memory trying to allocate a buffer for a configuration line.\n");
1696 err_code = -1;
1697 goto err;
William Lallemand64e84512015-05-12 14:25:37 +02001698 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001699
Willy Tarreauda543e12021-04-27 18:30:28 +02001700 if ((f = fopen(file,"r")) == NULL) {
1701 err_code = -1;
1702 goto err;
David Carlier97880bb2016-04-08 10:35:26 +01001703 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001704
Willy Tarreau8a022d52021-04-27 20:29:11 +02001705 /* change to the new dir if required */
1706 if (!cfg_apply_default_path(file, NULL, &errmsg)) {
1707 ha_alert("parsing [%s:%d]: failed to apply default-path: %s.\n", file, linenum, errmsg);
1708 free(errmsg);
1709 err_code = -1;
1710 goto err;
1711 }
1712
William Lallemandb2f07452015-05-12 14:27:13 +02001713next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001714 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001715 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001716 char *end;
1717 char *args[MAX_LINE_ARGS + 1];
1718 char *line = thisline;
1719
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001720 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001721 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1722 file, linenum, (missing_lf + 1));
1723 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001724 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001725 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001726 }
1727
Willy Tarreaubaaee002006-06-26 02:48:02 +02001728 linenum++;
Willy Tarreau51508052021-05-06 10:04:45 +02001729 global.cfg_curr_line = linenum;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001730
Willy Tarreau32234e72020-06-16 17:14:33 +02001731 if (fatal >= 50) {
1732 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1733 break;
1734 }
1735
Willy Tarreaubaaee002006-06-26 02:48:02 +02001736 end = line + strlen(line);
1737
William Lallemand64e84512015-05-12 14:25:37 +02001738 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001739 /* Check if we reached the limit and the last char is not \n.
1740 * Watch out for the last line without the terminating '\n'!
1741 */
William Lallemand64e84512015-05-12 14:25:37 +02001742 char *newline;
1743 int newlinesize = linesize * 2;
1744
1745 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1746 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001747 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1748 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001749 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001750 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001751 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001752 continue;
1753 }
1754
1755 readbytes = linesize - 1;
1756 linesize = newlinesize;
1757 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001758 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001759 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001760 }
1761
William Lallemand64e84512015-05-12 14:25:37 +02001762 readbytes = 0;
1763
Willy Tarreau08488f62020-06-26 17:24:54 +02001764 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001765 /* kill trailing LF */
1766 *(end - 1) = 0;
1767 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001768 else {
1769 /* mark this line as truncated */
1770 missing_lf = end - line;
1771 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001772
Willy Tarreaubaaee002006-06-26 02:48:02 +02001773 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001774 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001775 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001776
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001777 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001778 err_code |= cfg_parse_scope(file, linenum, line);
1779 goto next_line;
1780 }
1781
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001782 while (1) {
1783 uint32_t err;
1784 char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001785
Willy Tarreau61dd44b2020-06-25 07:35:42 +02001786 arg = MAX_LINE_ARGS + 1;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001787 outlen = outlinesize;
1788 err = parse_line(line, outline, &outlen, args, &arg,
1789 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001790 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1791 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001792
1793 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001794 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1795
1796 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1797 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001798 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001799 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001800 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001801 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001802
1803 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001804 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1805
1806 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1807 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001808 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001809 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001810 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001811 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001812
1813 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001814 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1815
1816 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1817 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001818 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001819 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001820 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001821 }
William Lallemandb2f07452015-05-12 14:27:13 +02001822
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001823 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001824 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1825
1826 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1827 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001828 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001829 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001830 goto next_line;
1831 }
William Lallemandb2f07452015-05-12 14:27:13 +02001832
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001833 if (err & PARSE_ERR_WRONG_EXPAND) {
1834 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1835
1836 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1837 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1838 err_code |= ERR_ALERT | ERR_FATAL;
1839 fatal++;
1840 goto next_line;
1841 }
1842
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001843 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1844 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001845 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001846 if (outline == NULL) {
1847 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1848 file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001849 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001850 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001851 goto next_line;
William Lallemandb2f07452015-05-12 14:27:13 +02001852 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001853 /* try again */
1854 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001855 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001856
1857 if (err & PARSE_ERR_TOOMANY) {
1858 /* only check this *after* being sure the output is allocated */
1859 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1860 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1861 err_code |= ERR_ALERT | ERR_FATAL;
1862 fatal++;
1863 goto next_line;
1864 }
1865
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001866 /* everything's OK */
1867 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001868 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001869
1870 /* empty line */
1871 if (!**args)
1872 continue;
1873
Willy Tarreau4b103022021-02-12 17:59:10 +01001874 /* check for config macros */
1875 if (*args[0] == '.') {
1876 if (strcmp(args[0], ".if") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001877 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001878 char *errmsg = NULL;
1879 int cond;
1880
Willy Tarreau4b103022021-02-12 17:59:10 +01001881 nested_cond_lvl++;
1882 if (nested_cond_lvl >= MAXNESTEDCONDS) {
1883 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
1884 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1885 goto err;
1886 }
1887
Willy Tarreau6e647c92021-05-06 08:46:11 +02001888 if (nested_cond_lvl > 1 &&
1889 (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
1890 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
1891 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
1892 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
1893 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP)) {
Willy Tarreau4b103022021-02-12 17:59:10 +01001894 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001895 goto next_line;
1896 }
1897
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001898 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001899 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001900 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 76);
1901
1902 ha_alert("parsing [%s:%d]: %s in '.if' at position %d:\n .if %s\n %*s\n",
1903 file, linenum, errmsg,
1904 (int)(errptr-args[1]+1), args[1], (int)(newpos+5), "^");
1905
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001906 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01001907 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1908 goto err;
1909 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001910
1911 if (cond)
1912 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
1913 else
1914 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
1915
Willy Tarreau4b103022021-02-12 17:59:10 +01001916 goto next_line;
1917 }
1918 else if (strcmp(args[0], ".elif") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001919 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001920 char *errmsg = NULL;
1921 int cond;
1922
Willy Tarreau4b103022021-02-12 17:59:10 +01001923 if (!nested_cond_lvl) {
1924 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
1925 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1926 goto err;
1927 }
1928
1929 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
1930 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
1931 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
1932 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1933 goto err;
1934 }
1935
1936 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
1937 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
Willy Tarreauf67ff022021-05-06 08:48:09 +02001938 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
Willy Tarreau4b103022021-02-12 17:59:10 +01001939 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
1940 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001941 goto next_line;
1942 }
1943
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001944 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001945 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001946 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 74);
1947
1948 ha_alert("parsing [%s:%d]: %s in '.elif' at position %d:\n .elif %s\n %*s\n",
1949 file, linenum, errmsg,
1950 (int)(errptr-args[1]+1), args[1], (int)(newpos+7), "^");
1951
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001952 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01001953 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1954 goto err;
1955 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001956
1957 if (cond)
1958 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
1959 else
1960 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
1961
Willy Tarreau4b103022021-02-12 17:59:10 +01001962 goto next_line;
1963 }
1964 else if (strcmp(args[0], ".else") == 0) {
1965 if (!nested_cond_lvl) {
1966 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
1967 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1968 goto err;
1969 }
1970
1971 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
1972 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
1973 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
1974 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1975 goto err;
1976 }
1977
1978 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
1979 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
1980 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
1981 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
1982 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
1983 } else {
1984 /* otherwise we take the "else" */
1985 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
1986 }
1987 goto next_line;
1988 }
1989 else if (strcmp(args[0], ".endif") == 0) {
1990 if (!nested_cond_lvl) {
1991 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
1992 err_code |= ERR_ALERT | ERR_FATAL;
1993 fatal++;
1994 break;
1995 }
1996 nested_cond_lvl--;
1997 goto next_line;
1998 }
1999 }
2000
2001 if (nested_cond_lvl &&
2002 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
2003 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2004 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
2005 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
2006 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
2007 /* The current block is masked out by the conditions */
2008 goto next_line;
2009 }
2010
2011 /* .warning/.error/.notice */
2012 if (*args[0] == '.') {
2013 if (strcmp(args[0], ".alert") == 0) {
2014 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2015 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2016 goto err;
2017 }
2018 else if (strcmp(args[0], ".warning") == 0) {
2019 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2020 err_code |= ERR_WARN;
2021 goto next_line;
2022 }
2023 else if (strcmp(args[0], ".notice") == 0) {
2024 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2025 goto next_line;
2026 }
2027 else {
2028 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
2029 err_code |= ERR_ALERT | ERR_FATAL;
2030 fatal++;
2031 break;
2032 }
2033 }
2034
Willy Tarreau3842f002009-06-14 11:39:52 +02002035 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002036 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02002037 char *tmp;
2038
Willy Tarreau3842f002009-06-14 11:39:52 +02002039 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002040 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002041 for (arg=0; *args[arg+1]; arg++)
2042 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002043 *tmp = '\0'; // fix the next arg to \0
2044 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002045 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002046 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02002047 kwm = KWM_DEF;
2048 for (arg=0; *args[arg+1]; arg++)
2049 args[arg] = args[arg+1]; // shift args after inversion
2050 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002051
William Dauchyec730982019-10-27 20:08:10 +01002052 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2053 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002054 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002055 strcmp(args[0], "insecure-fork-wanted") != 0 &&
2056 strcmp(args[0], "numa-cpu-mapping") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002057 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002058 "supported only for options, log, busy-polling, "
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002059 "set-dumpable, strict-limits, insecure-fork-wanted "
2060 "and numa-cpu-mapping.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002061 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002062 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002063 }
2064
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002065 /* detect section start */
2066 list_for_each_entry(ics, &sections, list) {
2067 if (strcmp(args[0], ics->section_name) == 0) {
2068 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002069 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002070 cs = ics;
Willy Tarreau51508052021-05-06 10:04:45 +02002071 free(global.cfg_curr_section);
2072 global.cfg_curr_section = strdup(*args[1] ? args[1] : args[0]);
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02002073
2074 if (global.mode & MODE_DIAG) {
2075 check_section_position(args[0], file, linenum,
2076 &non_global_section_parsed);
2077 }
2078
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002079 break;
2080 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002081 }
2082
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002083 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002084 int status;
2085
2086 status = pcs->post_section_parser();
2087 err_code |= status;
2088 if (status & ERR_FATAL)
2089 fatal++;
2090
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002091 if (err_code & ERR_ABORT)
2092 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002093 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002094 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002095
William Lallemandd2ff56d2017-10-16 11:06:50 +02002096 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002097 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002098 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002099 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002100 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002101 int status;
2102
2103 status = cs->section_parser(file, linenum, args, kwm);
2104 err_code |= status;
2105 if (status & ERR_FATAL)
2106 fatal++;
2107
William Lallemandd2ff56d2017-10-16 11:06:50 +02002108 if (err_code & ERR_ABORT)
2109 goto err;
2110 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002111 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002112
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002113 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002114 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2115 file, linenum, (missing_lf + 1));
2116 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002117 }
2118
Willy Tarreau51508052021-05-06 10:04:45 +02002119 ha_free(&global.cfg_curr_section);
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002120 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002121 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002122
Willy Tarreau4b103022021-02-12 17:59:10 +01002123 if (nested_cond_lvl) {
2124 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
2125 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2126 }
Willy Tarreau8a022d52021-04-27 20:29:11 +02002127
2128 if (*initial_cwd && chdir(initial_cwd) == -1) {
2129 ha_alert("Impossible to get back to initial directory '%s' : %s\n", initial_cwd, strerror(errno));
2130 err_code |= ERR_ALERT | ERR_FATAL;
2131 }
2132
William Lallemandd2ff56d2017-10-16 11:06:50 +02002133err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002134 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01002135 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002136 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002137 free(outline);
Willy Tarreau51508052021-05-06 10:04:45 +02002138 global.cfg_curr_line = 0;
2139 global.cfg_curr_file = NULL;
2140
Willy Tarreauda543e12021-04-27 18:30:28 +02002141 if (f)
2142 fclose(f);
2143
Willy Tarreau058e9072009-07-20 09:30:05 +02002144 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002145}
2146
Willy Tarreau64ab6072014-09-16 12:17:36 +02002147/* This function propagates processes from frontend <from> to backend <to> so
2148 * that it is always guaranteed that a backend pointed to by a frontend is
2149 * bound to all of its processes. After that, if the target is a "listen"
2150 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002151 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002152 * checked first to ensure that <to> is already bound to all processes of
2153 * <from>, there is no risk of looping and we ensure to follow the shortest
2154 * path to the destination.
2155 *
2156 * It is possible to set <to> to NULL for the first call so that the function
2157 * takes care of visiting the initial frontend in <from>.
2158 *
2159 * It is important to note that the function relies on the fact that all names
2160 * have already been resolved.
2161 */
2162void propagate_processes(struct proxy *from, struct proxy *to)
2163{
2164 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002165
2166 if (to) {
2167 /* check whether we need to go down */
2168 if (from->bind_proc &&
2169 (from->bind_proc & to->bind_proc) == from->bind_proc)
2170 return;
2171
2172 if (!from->bind_proc && !to->bind_proc)
2173 return;
2174
2175 to->bind_proc = from->bind_proc ?
2176 (to->bind_proc | from->bind_proc) : 0;
2177
2178 /* now propagate down */
2179 from = to;
2180 }
2181
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002182 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002183 return;
2184
Willy Tarreauc3914d42020-09-24 08:39:22 +02002185 if (from->disabled)
Willy Tarreauf6b70012014-12-18 14:00:43 +01002186 return;
2187
Willy Tarreau64ab6072014-09-16 12:17:36 +02002188 /* default_backend */
2189 if (from->defbe.be)
2190 propagate_processes(from, from->defbe.be);
2191
2192 /* use_backend */
2193 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002194 if (rule->dynamic)
2195 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002196 to = rule->be.backend;
2197 propagate_processes(from, to);
2198 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002199}
2200
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002201#if defined(__linux__) && defined USE_CPU_AFFINITY
2202/* filter directory name of the pattern node<X> */
2203static int numa_filter(const struct dirent *dir)
2204{
2205 char *endptr;
2206
2207 /* dir name must start with "node" prefix */
2208 if (strncmp(dir->d_name, "node", 4))
2209 return 0;
2210
2211 /* dir name must be at least 5 characters long */
2212 if (!dir->d_name[4])
2213 return 0;
2214
2215 /* dir name must end with a numeric id */
2216 if (strtol(&dir->d_name[4], &endptr, 10) < 0 || *endptr)
2217 return 0;
2218
2219 /* all tests succeeded */
2220 return 1;
2221}
2222
2223/* Parse a linux cpu map string representing to a numeric cpu mask map
2224 * The cpu map string is a list of 4-byte hex strings separated by commas, with
2225 * most-significant byte first, one bit per cpu number.
2226 */
2227static void parse_cpumap(char *cpumap_str, struct hap_cpuset *cpu_set)
2228{
2229 unsigned long cpumap;
2230 char *start, *endptr, *comma;
2231 int i, j;
2232
2233 ha_cpuset_zero(cpu_set);
2234
2235 i = 0;
2236 do {
2237 /* reverse-search for a comma, parse the string after the comma
2238 * or at the beginning if no comma found
2239 */
2240 comma = strrchr(cpumap_str, ',');
2241 start = comma ? comma + 1 : cpumap_str;
2242
2243 cpumap = strtoul(start, &endptr, 16);
2244 for (j = 0; cpumap; cpumap >>= 1, ++j) {
2245 if (cpumap & 0x1)
2246 ha_cpuset_set(cpu_set, j + i * 32);
2247 }
2248
2249 if (comma)
2250 *comma = '\0';
2251 ++i;
2252 } while (comma);
2253}
2254
2255/* Read the first line of a file from <path> into the trash buffer.
2256 * Returns 0 on success, otherwise non-zero.
2257 */
2258static int read_file_to_trash(const char *path)
2259{
2260 FILE *file;
2261 int ret = 1;
2262
2263 file = fopen(path, "r");
2264 if (file) {
2265 if (fgets(trash.area, trash.size, file))
2266 ret = 0;
2267
2268 fclose(file);
2269 }
2270
2271 return ret;
2272}
2273
2274/* Inspect the cpu topology of the machine on startup. If a multi-socket
2275 * machine is detected, try to bind on the first node with active cpu. This is
2276 * done to prevent an impact on the overall performance when the topology of
2277 * the machine is unknown. This function is not called if one of the conditions
2278 * is met :
2279 * - a non-null nbthread directive is active
2280 * - a restrictive cpu-map directive is active
2281 * - a restrictive affinity is already applied, for example via taskset
2282 *
2283 * Returns the count of cpus selected. If no automatic binding was required or
2284 * an error occurred and the topology is unknown, 0 is returned.
2285 */
2286static int numa_detect_topology()
2287{
2288 struct dirent **node_dirlist;
2289 int node_dirlist_size;
2290
2291 struct hap_cpuset active_cpus, node_cpu_set;
2292 const char *parse_cpu_set_args[2];
2293 char cpumap_path[PATH_MAX];
2294 char *err = NULL;
2295
2296 /* node_cpu_set count is used as return value */
2297 ha_cpuset_zero(&node_cpu_set);
2298
2299 /* 1. count the sysfs node<X> directories */
Willy Tarreau07bf21c2021-04-23 19:09:16 +02002300 node_dirlist = NULL;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002301 node_dirlist_size = scandir(NUMA_DETECT_SYSTEM_SYSFS_PATH"/node", &node_dirlist, numa_filter, alphasort);
2302 if (node_dirlist_size <= 1)
2303 goto free_scandir_entries;
2304
2305 /* 2. read and parse the list of currently online cpu */
2306 if (read_file_to_trash(NUMA_DETECT_SYSTEM_SYSFS_PATH"/cpu/online")) {
2307 ha_notice("Cannot read online CPUs list, will not try to refine binding\n");
2308 goto free_scandir_entries;
2309 }
2310
2311 parse_cpu_set_args[0] = trash.area;
2312 parse_cpu_set_args[1] = "\0";
2313 if (parse_cpu_set(parse_cpu_set_args, &active_cpus, 1, &err)) {
2314 ha_notice("Cannot read online CPUs list: '%s'. Will not try to refine binding\n", err);
2315 free(err);
2316 goto free_scandir_entries;
2317 }
2318
2319 /* 3. loop through nodes dirs and find the first one with active cpus */
2320 while (node_dirlist_size--) {
2321 const char *node = node_dirlist[node_dirlist_size]->d_name;
2322 ha_cpuset_zero(&node_cpu_set);
2323
2324 snprintf(cpumap_path, PATH_MAX, "%s/node/%s/cpumap",
2325 NUMA_DETECT_SYSTEM_SYSFS_PATH, node);
2326
2327 if (read_file_to_trash(cpumap_path)) {
2328 ha_notice("Cannot read CPUs list of '%s', will not select them to refine binding\n", node);
2329 free(node_dirlist[node_dirlist_size]);
2330 continue;
2331 }
2332
2333 parse_cpumap(trash.area, &node_cpu_set);
2334 ha_cpuset_and(&node_cpu_set, &active_cpus);
2335
2336 /* 5. set affinity on the first found node with active cpus */
2337 if (!ha_cpuset_count(&node_cpu_set)) {
2338 free(node_dirlist[node_dirlist_size]);
2339 continue;
2340 }
2341
2342 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));
2343 if (sched_setaffinity(getpid(), sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2344 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2345
2346 /* clear the cpuset used as return value */
2347 ha_cpuset_zero(&node_cpu_set);
2348 }
2349
2350 free(node_dirlist[node_dirlist_size]);
2351 break;
2352 }
2353
2354 free_scandir_entries:
2355 while (node_dirlist_size-- > 0)
2356 free(node_dirlist[node_dirlist_size]);
2357 free(node_dirlist);
2358
2359 return ha_cpuset_count(&node_cpu_set);
2360}
2361#endif /* __linux__ && USE_CPU_AFFINITY */
2362
Willy Tarreaubb925012009-07-23 13:36:36 +02002363/*
2364 * Returns the error code, 0 if OK, or any combination of :
2365 * - ERR_ABORT: must abort ASAP
2366 * - ERR_FATAL: we can continue parsing but not start the service
2367 * - ERR_WARN: a warning has been emitted
2368 * - ERR_ALERT: an alert has been emitted
2369 * Only the two first ones can stop processing, the two others are just
2370 * indicators.
2371 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002372int check_config_validity()
2373{
2374 int cfgerr = 0;
2375 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002376 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002377 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002378 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002379 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002380 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002381 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002382 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01002383 struct resolvers *curr_resolvers = NULL;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002384 int i;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002385
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002386 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002387 /*
2388 * Now, check for the integrity of all that we have collected.
2389 */
2390
2391 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002392 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002393
Willy Tarreau193b8c62012-11-22 00:17:38 +01002394 if (!global.tune.max_http_hdr)
2395 global.tune.max_http_hdr = MAX_HTTP_HDR;
2396
2397 if (!global.tune.cookie_len)
2398 global.tune.cookie_len = CAPTURE_LEN;
2399
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002400 if (!global.tune.requri_len)
2401 global.tune.requri_len = REQURI_LEN;
2402
Willy Tarreau149ab772019-01-26 14:27:06 +01002403 if (!global.nbthread) {
2404 /* nbthread not set, thus automatic. In this case, and only if
2405 * running on a single process, we enable the same number of
2406 * threads as the number of CPUs the process is bound to. This
2407 * allows to easily control the number of threads using taskset.
2408 */
2409 global.nbthread = 1;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002410
Willy Tarreau149ab772019-01-26 14:27:06 +01002411#if defined(USE_THREAD)
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002412 if (global.nbproc == 1) {
2413 int numa_cores = 0;
2414#if defined(__linux__) && defined USE_CPU_AFFINITY
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002415 if (global.numa_cpu_mapping && !thread_cpu_mask_forced())
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002416 numa_cores = numa_detect_topology();
2417#endif
2418 global.nbthread = numa_cores ? numa_cores :
2419 thread_cpus_enabled_at_boot;
2420 }
Willy Tarreau149ab772019-01-26 14:27:06 +01002421 all_threads_mask = nbits(global.nbthread);
2422#endif
2423 }
2424
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002425 if (global.nbproc > 1 && global.nbthread > 1) {
2426 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2427 err_code |= ERR_ALERT | ERR_FATAL;
2428 goto out;
2429 }
2430
Willy Tarreaubafbe012017-11-24 17:34:44 +01002431 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002432
Willy Tarreaubafbe012017-11-24 17:34:44 +01002433 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002434
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002435 /* Post initialisation of the users and groups lists. */
2436 err_code = userlist_postinit();
2437 if (err_code != ERR_NONE)
2438 goto out;
2439
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002440 /* first, we will invert the proxy list order */
2441 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002442 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002443 struct proxy *next;
2444
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002445 next = proxies_list->next;
2446 proxies_list->next = curproxy;
2447 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002448 if (!next)
2449 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002450 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002451 }
2452
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002453 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002454 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002455 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002456 struct sticking_rule *mrule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002457 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002458 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002459 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002460
Willy Tarreau050536d2012-10-04 08:47:34 +02002461 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002462 /* proxy ID not set, use automatic numbering with first
2463 * spare entry starting with next_pxid.
2464 */
2465 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2466 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2467 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002468 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002469 next_pxid++;
2470
Willy Tarreau55ea7572007-06-17 19:56:27 +02002471
Willy Tarreauc3914d42020-09-24 08:39:22 +02002472 if (curproxy->disabled) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002473 /* ensure we don't keep listeners uselessly bound. We
2474 * can't disable their listeners yet (fdtab not
2475 * allocated yet) but let's skip them.
2476 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002477 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002478 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002479 curproxy->table->peers.p = NULL;
2480 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002481 continue;
2482 }
2483
Willy Tarreau102df612014-05-07 23:56:38 +02002484 /* Check multi-process mode compatibility for the current proxy */
2485
2486 if (curproxy->bind_proc) {
2487 /* an explicit bind-process was specified, let's check how many
2488 * processes remain.
2489 */
David Carliere6c39412015-07-02 07:00:17 +00002490 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002491
Willy Tarreaua38a7172019-02-02 17:11:28 +01002492 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002493 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002494 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 +02002495 curproxy->bind_proc = 1;
2496 }
2497 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002498 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 +02002499 curproxy->bind_proc = 0;
2500 }
2501 }
2502
Willy Tarreau3d209582014-05-09 17:06:11 +02002503 /* check and reduce the bind-proc of each listener */
2504 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2505 unsigned long mask;
2506
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002507 /* HTTP frontends with "h2" as ALPN/NPN will work in
2508 * HTTP/2 and absolutely require buffers 16kB or larger.
2509 */
2510#ifdef USE_OPENSSL
2511 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2512#ifdef OPENSSL_NPN_NEGOTIATED
2513 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002514 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002515 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",
2516 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002517 cfgerr++;
2518 }
2519#endif
2520#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2521 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002522 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002523 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",
2524 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002525 cfgerr++;
2526 }
2527#endif
2528 } /* HTTP && bufsize < 16384 */
2529#endif
2530
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002531 /* detect and address thread affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002532 mask = thread_mask(bind_conf->settings.bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002533 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002534 unsigned long new_mask = 0;
2535
2536 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002537 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002538 mask >>= global.nbthread;
2539 }
2540
Willy Tarreaue26993c2020-09-03 07:18:55 +02002541 bind_conf->settings.bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002542 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",
2543 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2544 }
2545
2546 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002547 mask = proc_mask(bind_conf->settings.bind_proc) & proc_mask(curproxy->bind_proc);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002548 if (!(mask & all_proc_mask)) {
2549 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02002550 nbproc = my_popcountl(bind_conf->settings.bind_proc);
2551 bind_conf->settings.bind_proc = proc_mask(bind_conf->settings.bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002552
Willy Tarreaue26993c2020-09-03 07:18:55 +02002553 if (!bind_conf->settings.bind_proc && nbproc == 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002554 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",
2555 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002556 bind_conf->settings.bind_proc = mask & ~(mask - 1);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002557 }
Willy Tarreaue26993c2020-09-03 07:18:55 +02002558 else if (!bind_conf->settings.bind_proc && nbproc > 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002559 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",
2560 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002561 bind_conf->settings.bind_proc = 0;
Willy Tarreaua36b3242019-02-02 13:14:34 +01002562 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002563 }
2564 }
2565
Willy Tarreauff01a212009-03-15 13:46:16 +01002566 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01002567 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002568 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002569 break;
2570
2571 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002572 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002573 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002574
2575 case PR_MODE_CLI:
2576 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2577 break;
Emeric Brun54932b42020-07-07 09:43:24 +02002578 case PR_MODE_SYSLOG:
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002579 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02002580 case PR_MODES:
2581 /* should not happen, bug gcc warn missing switch statement */
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002582 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 +02002583 proxy_type_str(curproxy), curproxy->id);
2584 cfgerr++;
2585 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002586 }
2587
Willy Tarreau4975d142021-03-13 11:00:33 +01002588 if (curproxy != global.cli_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002589 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2590 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002591 err_code |= ERR_WARN;
2592 }
2593
Willy Tarreau77e0dae2020-10-14 15:44:27 +02002594 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002595 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002596 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002597 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2598 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002599 cfgerr++;
2600 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002601#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002602 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002603 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2604 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002605 cfgerr++;
2606 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002607#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002608 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002609 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2610 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002611 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002612 }
2613 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002614 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002615 /* If no LB algo is set in a backend, and we're not in
2616 * transparent mode, dispatch mode nor proxy mode, we
2617 * want to use balance roundrobin by default.
2618 */
2619 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2620 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002621 }
2622 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002623
Willy Tarreau1620ec32011-08-06 17:05:02 +02002624 if (curproxy->options & PR_O_DISPATCH)
2625 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2626 else if (curproxy->options & PR_O_HTTP_PROXY)
2627 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2628 else if (curproxy->options & PR_O_TRANSP)
2629 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002630
Christopher Faulete5870d82020-04-15 11:32:03 +02002631 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2632 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2633 proxy_type_str(curproxy), curproxy->id);
2634 err_code |= ERR_WARN;
2635 }
2636
2637 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002638 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002639 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002640 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2641 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002642 err_code |= ERR_WARN;
2643 curproxy->options &= ~PR_O_DISABLE404;
2644 }
2645 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002646 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2647 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002648 err_code |= ERR_WARN;
2649 curproxy->options &= ~PR_O2_CHK_SNDST;
2650 }
Willy Tarreauef781042010-01-27 11:53:01 +01002651 }
2652
Simon Horman98637e52014-06-20 12:30:16 +09002653 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2654 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002655 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2656 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002657 cfgerr++;
2658 }
2659 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002660 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2661 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002662 cfgerr++;
2663 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002664 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2665 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2666 curproxy->id, "option external-check");
2667 err_code |= ERR_WARN;
2668 }
Simon Horman98637e52014-06-20 12:30:16 +09002669 }
2670
Simon Horman64e34162015-02-06 11:11:57 +09002671 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002672 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002673 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2674 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2675 "'email-alert myhostname', or 'email-alert to' "
2676 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2677 "to be present).\n",
2678 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002679 err_code |= ERR_WARN;
2680 free_email_alert(curproxy);
2681 }
2682 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002683 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002684 }
2685
Simon Horman98637e52014-06-20 12:30:16 +09002686 if (curproxy->check_command) {
2687 int clear = 0;
2688 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002689 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2690 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002691 err_code |= ERR_WARN;
2692 clear = 1;
2693 }
2694 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002695 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2696 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002697 cfgerr++;
2698 }
2699 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002700 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09002701 }
2702 }
2703
2704 if (curproxy->check_path) {
2705 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002706 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2707 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002708 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002709 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09002710 }
2711 }
2712
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002713 /* if a default backend was specified, let's find it */
2714 if (curproxy->defbe.name) {
2715 struct proxy *target;
2716
Willy Tarreauafb39922015-05-26 12:04:09 +02002717 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002718 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002719 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2720 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002721 cfgerr++;
2722 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002723 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2724 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002725 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002726 } else if (target->mode != curproxy->mode &&
2727 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2728
Christopher Faulet767a84b2017-11-24 16:50:31 +01002729 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2730 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2731 curproxy->conf.file, curproxy->conf.line,
2732 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2733 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002734 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002735 } else {
2736 free(curproxy->defbe.name);
2737 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002738 /* Emit a warning if this proxy also has some servers */
2739 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002740 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2741 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002742 err_code |= ERR_WARN;
2743 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002744 }
2745 }
2746
Willy Tarreau55ea7572007-06-17 19:56:27 +02002747 /* find the target proxy for 'use_backend' rules */
2748 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002749 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002750 struct logformat_node *node;
2751 char *pxname;
2752
2753 /* Try to parse the string as a log format expression. If the result
2754 * of the parsing is only one entry containing a simple string, then
2755 * it's a standard string corresponding to a static rule, thus the
2756 * parsing is cancelled and be.name is restored to be resolved.
2757 */
2758 pxname = rule->be.name;
2759 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002760 curproxy->conf.args.ctx = ARGC_UBK;
2761 curproxy->conf.args.file = rule->file;
2762 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002763 err = NULL;
2764 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002765 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2766 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002767 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002768 cfgerr++;
2769 continue;
2770 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002771 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2772
2773 if (!LIST_ISEMPTY(&rule->be.expr)) {
2774 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2775 rule->dynamic = 1;
2776 free(pxname);
2777 continue;
2778 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002779 /* Only one element in the list, a simple string: free the expression and
2780 * fall back to static rule
2781 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002782 LIST_DELETE(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002783 free(node->arg);
2784 free(node);
2785 }
2786
2787 rule->dynamic = 0;
2788 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002789
Willy Tarreauafb39922015-05-26 12:04:09 +02002790 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002791 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002792 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2793 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002794 cfgerr++;
2795 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002796 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2797 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002798 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002799 } else if (target->mode != curproxy->mode &&
2800 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2801
Christopher Faulet767a84b2017-11-24 16:50:31 +01002802 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2803 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2804 curproxy->conf.file, curproxy->conf.line,
2805 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2806 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002807 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002808 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002809 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002810 rule->be.backend = target;
2811 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01002812 err_code |= warnif_tcp_http_cond(curproxy, rule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002813 }
2814
Willy Tarreau64ab6072014-09-16 12:17:36 +02002815 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002816 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002817 struct server *target;
2818 struct logformat_node *node;
2819 char *server_name;
2820
2821 /* We try to parse the string as a log format expression. If the result of the parsing
2822 * is only one entry containing a single string, then it's a standard string corresponding
2823 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2824 */
2825 server_name = srule->srv.name;
2826 LIST_INIT(&srule->expr);
2827 curproxy->conf.args.ctx = ARGC_USRV;
2828 err = NULL;
2829 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2830 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2831 srule->file, srule->line, server_name, err);
2832 free(err);
2833 cfgerr++;
2834 continue;
2835 }
2836 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2837
2838 if (!LIST_ISEMPTY(&srule->expr)) {
2839 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2840 srule->dynamic = 1;
2841 free(server_name);
2842 continue;
2843 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002844 /* Only one element in the list, a simple string: free the expression and
2845 * fall back to static rule
2846 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002847 LIST_DELETE(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002848 free(node->arg);
2849 free(node);
2850 }
2851
2852 srule->dynamic = 0;
2853 srule->srv.name = server_name;
2854 target = findserver(curproxy, srule->srv.name);
Christopher Faulet581db2b2021-03-26 10:02:46 +01002855 err_code |= warnif_tcp_http_cond(curproxy, srule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002856
2857 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002858 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2859 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002860 cfgerr++;
2861 continue;
2862 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01002863 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002864 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002865 }
2866
Emeric Brunb982a3d2010-01-04 15:45:53 +01002867 /* find the target table for 'stick' rules */
2868 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002869 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002870
Emeric Brun1d33b292010-01-04 15:47:17 +01002871 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2872 if (mrule->flags & STK_IS_STORE)
2873 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2874
Emeric Brunb982a3d2010-01-04 15:45:53 +01002875 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002876 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002877 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002878 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002879
2880 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002881 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002882 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002883 cfgerr++;
2884 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002885 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002886 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2887 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002888 cfgerr++;
2889 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002890 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002891 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2892 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002893 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002894 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002895 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002896 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002897 mrule->table.t = target;
2898 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07002899 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002900 if (!in_proxies_list(target->proxies_list, curproxy)) {
2901 curproxy->next_stkt_ref = target->proxies_list;
2902 target->proxies_list = curproxy;
2903 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002904 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01002905 err_code |= warnif_tcp_http_cond(curproxy, mrule->cond);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002906 }
2907
2908 /* find the target table for 'store response' rules */
2909 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002910 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002911
Emeric Brun1d33b292010-01-04 15:47:17 +01002912 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2913
Emeric Brunb982a3d2010-01-04 15:45:53 +01002914 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002915 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002916 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002917 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002918
2919 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002920 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002921 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002922 cfgerr++;
2923 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002924 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002925 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2926 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002927 cfgerr++;
2928 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002929 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002930 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2931 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002932 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002933 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002934 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002935 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002936 mrule->table.t = target;
2937 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07002938 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002939 if (!in_proxies_list(target->proxies_list, curproxy)) {
2940 curproxy->next_stkt_ref = target->proxies_list;
2941 target->proxies_list = curproxy;
2942 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002943 }
2944 }
2945
Christopher Faulet42c6cf92021-03-25 17:19:04 +01002946 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
2947 cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code);
2948 cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code);
2949 cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code);
2950 cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code);
2951 cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code);
2952 cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code);
2953 cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002954
Christopher Faulet5eef0182021-03-31 17:13:49 +02002955 /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */
2956 if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) {
2957 if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP)
2958 ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. "
2959 "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n",
2960 curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy));
2961 }
2962
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002963 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002964 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002965
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002966 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002967 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002968 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002969 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002970 break;
2971 }
2972 }
2973
2974 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002975 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002976 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01002977 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002978 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002979 cfgerr++;
2980 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02002981 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002982 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002983 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002984 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002985 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002986 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2987 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002988 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002989 cfgerr++;
2990 }
2991 }
2992
Simon Horman9dc49962015-01-30 11:22:59 +09002993
2994 if (curproxy->email_alert.mailers.name) {
2995 struct mailers *curmailers = mailers;
2996
2997 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002998 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09002999 break;
Simon Horman9dc49962015-01-30 11:22:59 +09003000 }
Simon Horman9dc49962015-01-30 11:22:59 +09003001 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003002 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
3003 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09003004 free_email_alert(curproxy);
3005 cfgerr++;
3006 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02003007 else {
3008 err = NULL;
3009 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003010 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003011 free(err);
3012 cfgerr++;
3013 }
3014 }
Simon Horman9dc49962015-01-30 11:22:59 +09003015 }
3016
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003017 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01003018 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003019 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003020 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
3021 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003022 cfgerr++;
3023 goto out_uri_auth_compat;
3024 }
3025
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003026 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003027 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003028 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003029 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003030 struct act_rule *rule;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003031 i = 0;
3032
Willy Tarreau95fa4692010-02-01 13:05:50 +01003033 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
3034 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003035
3036 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003037 uri_auth_compat_req[i++] = "realm";
3038 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
3039 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003040
Willy Tarreau95fa4692010-02-01 13:05:50 +01003041 uri_auth_compat_req[i++] = "unless";
3042 uri_auth_compat_req[i++] = "{";
3043 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
3044 uri_auth_compat_req[i++] = "}";
3045 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003046
Willy Tarreauff011f22011-01-06 17:51:27 +01003047 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
3048 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003049 cfgerr++;
3050 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003051 }
3052
Willy Tarreau2b718102021-04-21 07:32:39 +02003053 LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01003054
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003055 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003056 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003057 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003058 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003059 }
3060out_uri_auth_compat:
3061
Dragan Dosen43885c72015-10-01 13:18:13 +02003062 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02003063 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02003064 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
3065 if (!curproxy->conf.logformat_sd_string) {
3066 /* set the default logformat_sd_string */
3067 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
3068 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003069 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02003070 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003071 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02003072
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003073 /* compile the log format */
3074 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02003075 if (curproxy->conf.logformat_string != default_http_log_format &&
3076 curproxy->conf.logformat_string != default_tcp_log_format &&
3077 curproxy->conf.logformat_string != clf_http_log_format)
3078 free(curproxy->conf.logformat_string);
3079 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003080 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02003081 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003082
3083 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3084 free(curproxy->conf.logformat_sd_string);
3085 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003086 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003087 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003088 }
3089
Willy Tarreau62a61232013-04-12 18:13:46 +02003090 if (curproxy->conf.logformat_string) {
3091 curproxy->conf.args.ctx = ARGC_LOG;
3092 curproxy->conf.args.file = curproxy->conf.lfs_file;
3093 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003094 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003095 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
3096 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003097 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003098 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3099 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003100 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003101 cfgerr++;
3102 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003103 curproxy->conf.args.file = NULL;
3104 curproxy->conf.args.line = 0;
3105 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003106
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003107 if (curproxy->conf.logformat_sd_string) {
3108 curproxy->conf.args.ctx = ARGC_LOGSD;
3109 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3110 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003111 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003112 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
3113 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003114 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003115 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3116 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003117 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003118 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003119 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003120 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3121 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003122 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003123 cfgerr++;
3124 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003125 curproxy->conf.args.file = NULL;
3126 curproxy->conf.args.line = 0;
3127 }
3128
Willy Tarreau62a61232013-04-12 18:13:46 +02003129 if (curproxy->conf.uniqueid_format_string) {
3130 curproxy->conf.args.ctx = ARGC_UIF;
3131 curproxy->conf.args.file = curproxy->conf.uif_file;
3132 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003133 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003134 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
3135 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES,
3136 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR
3137 : SMP_VAL_BE_HRQ_HDR,
3138 &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003139 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3140 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003141 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003142 cfgerr++;
3143 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003144 curproxy->conf.args.file = NULL;
3145 curproxy->conf.args.line = 0;
3146 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003147
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003148 /* only now we can check if some args remain unresolved.
3149 * This must be done after the users and groups resolution.
3150 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01003151 err = NULL;
3152 i = smp_resolve_args(curproxy, &err);
3153 cfgerr += i;
3154 if (i) {
3155 indent_msg(&err, 8);
3156 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
3157 ha_free(&err);
3158 } else
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003159 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003160
Willy Tarreau2738a142006-07-08 17:28:09 +02003161 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003162 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003163 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003164 (!curproxy->timeout.connect ||
3165 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003166 ha_warning("config : missing timeouts for %s '%s'.\n"
3167 " | While not properly invalid, you will certainly encounter various problems\n"
3168 " | with such a configuration. To fix this, please ensure that all following\n"
3169 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3170 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003171 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003172 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003173
Willy Tarreau1fa31262007-12-03 00:36:16 +01003174 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3175 * We must still support older configurations, so let's find out whether those
3176 * parameters have been set or must be copied from contimeouts.
3177 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01003178 if (!curproxy->timeout.tarpit)
3179 curproxy->timeout.tarpit = curproxy->timeout.connect;
3180 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
3181 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003182
Christopher Faulete5870d82020-04-15 11:32:03 +02003183 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003184 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
3185 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003186 err_code |= ERR_WARN;
3187 }
3188
Willy Tarreau193b8c62012-11-22 00:17:38 +01003189 /* ensure that cookie capture length is not too large */
3190 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003191 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3192 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003193 err_code |= ERR_WARN;
3194 curproxy->capture_len = global.tune.cookie_len - 1;
3195 }
3196
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003197 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003198 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003199 curproxy->req_cap_pool = create_pool("ptrcap",
3200 curproxy->nb_req_cap * sizeof(char *),
3201 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003202 }
3203
3204 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003205 curproxy->rsp_cap_pool = create_pool("ptrcap",
3206 curproxy->nb_rsp_cap * sizeof(char *),
3207 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003208 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003209
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003210 switch (curproxy->load_server_state_from_file) {
3211 case PR_SRV_STATE_FILE_UNSPEC:
3212 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3213 break;
3214 case PR_SRV_STATE_FILE_GLOBAL:
3215 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003216 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",
3217 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003218 err_code |= ERR_WARN;
3219 }
3220 break;
3221 }
3222
Willy Tarreaubaaee002006-06-26 02:48:02 +02003223 /* first, we will invert the servers list order */
3224 newsrv = NULL;
3225 while (curproxy->srv) {
3226 struct server *next;
3227
3228 next = curproxy->srv->next;
3229 curproxy->srv->next = newsrv;
3230 newsrv = curproxy->srv;
3231 if (!next)
3232 break;
3233 curproxy->srv = next;
3234 }
3235
Willy Tarreau17edc812014-01-03 12:14:34 +01003236 /* Check that no server name conflicts. This causes trouble in the stats.
3237 * We only emit a warning for the first conflict affecting each server,
3238 * in order to avoid combinatory explosion if all servers have the same
3239 * name. We do that only for servers which do not have an explicit ID,
3240 * because these IDs were made also for distinguishing them and we don't
3241 * want to annoy people who correctly manage them.
3242 */
3243 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3244 struct server *other_srv;
3245
3246 if (newsrv->puid)
3247 continue;
3248
3249 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3250 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003251 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 +01003252 newsrv->conf.file, newsrv->conf.line,
3253 proxy_type_str(curproxy), curproxy->id,
3254 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003255 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003256 break;
3257 }
3258 }
3259 }
3260
Willy Tarreaudd701652010-05-25 23:03:02 +02003261 /* assign automatic UIDs to servers which don't have one yet */
3262 next_id = 1;
3263 newsrv = curproxy->srv;
3264 while (newsrv != NULL) {
3265 if (!newsrv->puid) {
3266 /* server ID not set, use automatic numbering with first
3267 * spare entry starting with next_svid.
3268 */
3269 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3270 newsrv->conf.id.key = newsrv->puid = next_id;
3271 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003272 newsrv->conf.name.key = newsrv->id;
3273 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003274 }
3275 next_id++;
3276 newsrv = newsrv->next;
3277 }
3278
Willy Tarreau20697042007-11-15 23:26:18 +01003279 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003280 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003281
Willy Tarreau62c3be22012-01-20 13:12:32 +01003282 /*
3283 * If this server supports a maxconn parameter, it needs a dedicated
3284 * tasks to fill the emptied slots when a connection leaves.
3285 * Also, resolve deferred tracking dependency if needed.
3286 */
3287 newsrv = curproxy->srv;
3288 while (newsrv != NULL) {
3289 if (newsrv->minconn > newsrv->maxconn) {
3290 /* Only 'minconn' was specified, or it was higher than or equal
3291 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3292 * this will avoid further useless expensive computations.
3293 */
3294 newsrv->maxconn = newsrv->minconn;
3295 } else if (newsrv->maxconn && !newsrv->minconn) {
3296 /* minconn was not specified, so we set it to maxconn */
3297 newsrv->minconn = newsrv->maxconn;
3298 }
3299
William Dauchyf6370442020-11-14 19:25:33 +01003300 /* this will also properly set the transport layer for
3301 * prod and checks
3302 * if default-server have use_ssl, prerare ssl init
3303 * without activating it */
3304 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
3305 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3306 (newsrv->use_ssl != 1 && curproxy->defsrv.use_ssl == 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003307 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3308 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3309 }
Emeric Brun94324a42012-10-11 14:00:19 +02003310
Willy Tarreau034c88c2017-01-23 23:36:45 +01003311 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3312 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3313 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3314 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",
3315 newsrv->conf.file, newsrv->conf.line,
3316 proxy_type_str(curproxy), curproxy->id,
3317 newsrv->id);
3318
Willy Tarreau62c3be22012-01-20 13:12:32 +01003319 if (newsrv->trackit) {
3320 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003321 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003322 char *pname, *sname;
3323
3324 pname = newsrv->trackit;
3325 sname = strrchr(pname, '/');
3326
3327 if (sname)
3328 *sname++ = '\0';
3329 else {
3330 sname = pname;
3331 pname = NULL;
3332 }
3333
3334 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003335 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003336 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003337 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3338 proxy_type_str(curproxy), curproxy->id,
3339 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003340 cfgerr++;
3341 goto next_srv;
3342 }
3343 } else
3344 px = curproxy;
3345
3346 srv = findserver(px, sname);
3347 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003348 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3349 proxy_type_str(curproxy), curproxy->id,
3350 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003351 cfgerr++;
3352 goto next_srv;
3353 }
3354
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003355 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003356 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3357 "tracking as it does not have any check nor agent enabled.\n",
3358 proxy_type_str(curproxy), curproxy->id,
3359 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003360 cfgerr++;
3361 goto next_srv;
3362 }
3363
3364 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3365
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003366 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003367 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3368 "belongs to a tracking chain looping back to %s/%s.\n",
3369 proxy_type_str(curproxy), curproxy->id,
3370 newsrv->id, px->id, srv->id, px->id,
3371 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003372 cfgerr++;
3373 goto next_srv;
3374 }
3375
3376 if (curproxy != px &&
3377 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003378 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3379 "tracking: disable-on-404 option inconsistency.\n",
3380 proxy_type_str(curproxy), curproxy->id,
3381 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003382 cfgerr++;
3383 goto next_srv;
3384 }
3385
Willy Tarreau62c3be22012-01-20 13:12:32 +01003386 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003387 newsrv->tracknext = srv->trackers;
3388 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003389
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003390 ha_free(&newsrv->trackit);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003391 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003392
Willy Tarreau62c3be22012-01-20 13:12:32 +01003393 next_srv:
3394 newsrv = newsrv->next;
3395 }
3396
Olivier Houchard4e694042017-03-14 20:01:29 +01003397 /*
3398 * Try to generate dynamic cookies for servers now.
3399 * It couldn't be done earlier, since at the time we parsed
3400 * the server line, we may not have known yet that we
3401 * should use dynamic cookies, or the secret key may not
3402 * have been provided yet.
3403 */
3404 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3405 newsrv = curproxy->srv;
3406 while (newsrv != NULL) {
3407 srv_set_dyncookie(newsrv);
3408 newsrv = newsrv->next;
3409 }
3410
3411 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003412 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003413 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003414 */
3415
3416 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3417 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3418 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003419 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3420 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3421 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003422 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3423 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3424 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003425 } else {
3426 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3427 fwrr_init_server_groups(curproxy);
3428 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003429 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003430
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003431 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003432 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3433 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3434 fwlc_init_server_tree(curproxy);
3435 } else {
3436 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3437 fas_init_server_tree(curproxy);
3438 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003439 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003440
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003441 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003442 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3443 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3444 chash_init_server_tree(curproxy);
3445 } else {
3446 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3447 init_server_map(curproxy);
3448 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003449 break;
3450 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003451 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003452
3453 if (curproxy->options & PR_O_LOGASAP)
3454 curproxy->to_log &= ~LW_BYTES;
3455
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003456 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003457 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3458 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003459 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3460 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003461 err_code |= ERR_WARN;
3462 }
3463
Christopher Faulet3b6446f2021-03-15 15:10:38 +01003464 if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) {
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003465 int optnum;
3466
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003467 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003468 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3469 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003470 err_code |= ERR_WARN;
3471 curproxy->uri_auth = NULL;
3472 }
3473
Willy Tarreaude7dc882017-03-10 11:49:21 +01003474 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003475 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3476 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003477 err_code |= ERR_WARN;
3478 }
3479
3480 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003481 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3482 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003483 err_code |= ERR_WARN;
3484 }
3485
3486 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003487 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3488 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003489 err_code |= ERR_WARN;
3490 }
3491
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003492 if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) {
3493 ha_warning("config : 'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3494 proxy_type_str(curproxy), curproxy->id);
3495 err_code |= ERR_WARN;
3496 }
3497
Willy Tarreaude7dc882017-03-10 11:49:21 +01003498 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003499 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3500 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003501 err_code |= ERR_WARN;
3502 }
3503
Willy Tarreau87cf5142011-08-19 22:57:24 +02003504 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003505 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3506 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003507 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003508 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003509 }
3510
3511 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003512 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3513 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003514 err_code |= ERR_WARN;
3515 curproxy->options &= ~PR_O_ORGTO;
3516 }
3517
3518 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3519 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3520 (curproxy->cap & cfg_opts[optnum].cap) &&
3521 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003522 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3523 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003524 err_code |= ERR_WARN;
3525 curproxy->options &= ~cfg_opts[optnum].val;
3526 }
3527 }
3528
3529 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3530 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3531 (curproxy->cap & cfg_opts2[optnum].cap) &&
3532 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003533 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3534 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003535 err_code |= ERR_WARN;
3536 curproxy->options2 &= ~cfg_opts2[optnum].val;
3537 }
3538 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003539
Willy Tarreau29fbe512015-08-20 19:35:14 +02003540#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003541 if (curproxy->conn_src.bind_hdr_occ) {
3542 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003543 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3544 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003545 err_code |= ERR_WARN;
3546 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003547#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003548 }
3549
Willy Tarreaubaaee002006-06-26 02:48:02 +02003550 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003551 * ensure that we're not cross-dressing a TCP server into HTTP.
3552 */
3553 newsrv = curproxy->srv;
3554 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003555 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003556 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3557 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003558 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003559 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003560
Willy Tarreau0cec3312011-10-31 13:49:26 +01003561 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003562 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3563 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003564 err_code |= ERR_WARN;
3565 }
3566
Willy Tarreauc93cd162014-05-13 15:54:22 +02003567 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003568 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3569 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003570 err_code |= ERR_WARN;
3571 }
3572
Willy Tarreau29fbe512015-08-20 19:35:14 +02003573#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003574 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3575 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003576 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3577 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003578 err_code |= ERR_WARN;
3579 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003580#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003581
Willy Tarreau46deab62018-04-28 07:18:15 +02003582 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3583 curproxy->options &= ~PR_O_REUSE_MASK;
3584
Willy Tarreau21d2af32008-02-14 20:25:24 +01003585 newsrv = newsrv->next;
3586 }
3587
Christopher Fauletd7c91962015-04-30 11:48:27 +02003588 /* Check filter configuration, if any */
3589 cfgerr += flt_check(curproxy);
3590
Willy Tarreauc1a21672009-08-16 22:37:44 +02003591 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003592 if (!curproxy->accept)
3593 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003594
Willy Tarreauc1a21672009-08-16 22:37:44 +02003595 if (curproxy->tcp_req.inspect_delay ||
3596 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003597 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003598
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003599 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003600 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003601 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003602 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003603
William Lallemandcf62f7e2018-10-26 14:47:40 +02003604 if (curproxy->mode == PR_MODE_CLI) {
3605 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3606 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3607 }
3608
Willy Tarreauc1a21672009-08-16 22:37:44 +02003609 /* both TCP and HTTP must check switching rules */
3610 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003611
3612 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003613 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003614 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3615 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 +02003616 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003617 }
3618
3619 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003620 if (curproxy->tcp_req.inspect_delay ||
3621 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3622 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3623
Emeric Brun97679e72010-09-23 17:56:44 +02003624 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3625 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3626
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003627 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003628 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003629 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003630 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003631
3632 /* If the backend does requires RDP cookie persistence, we have to
3633 * enable the corresponding analyser.
3634 */
3635 if (curproxy->options2 & PR_O2_RDPC_PRST)
3636 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003637
3638 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003639 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003640 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3641 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 +02003642 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003643 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003644
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003645 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003646 * attached to the current proxy */
3647 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3648 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003649 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003650
3651 if (!bind_conf->mux_proto)
3652 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003653
3654 /* it is possible that an incorrect mux was referenced
3655 * due to the proxy's mode not being taken into account
3656 * on first pass. Let's adjust it now.
3657 */
3658 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3659
3660 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003661 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3662 proxy_type_str(curproxy), curproxy->id,
3663 (int)bind_conf->mux_proto->token.len,
3664 bind_conf->mux_proto->token.ptr,
3665 bind_conf->arg, bind_conf->file, bind_conf->line);
3666 cfgerr++;
3667 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003668
3669 /* update the mux */
3670 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003671 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003672 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3673 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003674 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003675
3676 if (!newsrv->mux_proto)
3677 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003678
3679 /* it is possible that an incorrect mux was referenced
3680 * due to the proxy's mode not being taken into account
3681 * on first pass. Let's adjust it now.
3682 */
3683 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3684
3685 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003686 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3687 proxy_type_str(curproxy), curproxy->id,
3688 (int)newsrv->mux_proto->token.len,
3689 newsrv->mux_proto->token.ptr,
3690 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3691 cfgerr++;
3692 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003693
3694 /* update the mux */
3695 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003696 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01003697 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003698
Willy Tarreau4cdac162021-03-05 10:48:42 +01003699 /***********************************************************/
3700 /* At this point, target names have already been resolved. */
3701 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01003702
Willy Tarreau4cdac162021-03-05 10:48:42 +01003703 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01003704
Willy Tarreau4cdac162021-03-05 10:48:42 +01003705 list_for_each_entry(newsrv, &servers_list, global_list) {
3706 /* initialize idle conns lists */
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003707 newsrv->per_thr = calloc(global.nbthread, sizeof(*newsrv->per_thr));
3708 if (!newsrv->per_thr) {
3709 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
3710 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01003711 cfgerr++;
3712 continue;
3713 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003714
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003715 for (i = 0; i < global.nbthread; i++) {
3716 newsrv->per_thr[i].idle_conns = EB_ROOT;
3717 newsrv->per_thr[i].safe_conns = EB_ROOT;
3718 newsrv->per_thr[i].avail_conns = EB_ROOT;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01003719 MT_LIST_INIT(&newsrv->per_thr[i].streams);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003720 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003721
Willy Tarreau4cdac162021-03-05 10:48:42 +01003722 if (newsrv->max_idle_conns != 0) {
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003723 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
3724 if (!newsrv->curr_idle_thr) {
3725 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3726 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3727 cfgerr++;
3728 continue;
3729 }
3730 }
3731 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003732
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003733 idle_conn_task = task_new(MAX_THREADS_MASK);
3734 if (!idle_conn_task) {
3735 ha_alert("parsing : failed to allocate global idle connection task.\n");
3736 cfgerr++;
3737 }
3738 else {
3739 idle_conn_task->process = srv_cleanup_idle_conns;
3740 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003741
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003742 for (i = 0; i < global.nbthread; i++) {
3743 idle_conns[i].cleanup_task = task_new(1UL << i);
3744 if (!idle_conns[i].cleanup_task) {
3745 ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i);
3746 cfgerr++;
3747 break;
Willy Tarreau4cdac162021-03-05 10:48:42 +01003748 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003749
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003750 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
3751 idle_conns[i].cleanup_task->context = NULL;
3752 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
3753 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Willy Tarreau835daa12019-02-07 14:46:29 +01003754 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003755 }
3756
Willy Tarreau419ead82014-09-16 13:41:21 +02003757 /* Check multi-process mode compatibility */
3758
Willy Tarreau4975d142021-03-13 11:00:33 +01003759 if (global.nbproc > 1 && global.cli_fe) {
3760 list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003761 unsigned long mask;
3762
Willy Tarreau4975d142021-03-13 11:00:33 +01003763 mask = proc_mask(global.cli_fe->bind_proc) && all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02003764 mask &= proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003765
3766 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003767 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003768 break;
3769 }
Willy Tarreau4975d142021-03-13 11:00:33 +01003770 if (&bind_conf->by_fe != &global.cli_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003771 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 +02003772 }
3773 }
3774
3775 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003776 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003777 if (curproxy->bind_proc)
3778 continue;
3779
3780 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3781 unsigned long mask;
3782
Willy Tarreaue26993c2020-09-03 07:18:55 +02003783 mask = proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003784 curproxy->bind_proc |= mask;
3785 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003786 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003787 }
3788
Willy Tarreau4975d142021-03-13 11:00:33 +01003789 if (global.cli_fe) {
3790 list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003791 unsigned long mask;
3792
Willy Tarreaue26993c2020-09-03 07:18:55 +02003793 mask = bind_conf->settings.bind_proc ? bind_conf->settings.bind_proc : 0;
Willy Tarreau4975d142021-03-13 11:00:33 +01003794 global.cli_fe->bind_proc |= mask;
Willy Tarreau419ead82014-09-16 13:41:21 +02003795 }
Willy Tarreau4975d142021-03-13 11:00:33 +01003796 global.cli_fe->bind_proc = proc_mask(global.cli_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003797 }
3798
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003799 /* propagate bindings from frontends to backends. Don't do it if there
3800 * are any fatal errors as we must not call it with unresolved proxies.
3801 */
3802 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003803 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003804 if (curproxy->cap & PR_CAP_FE)
3805 propagate_processes(curproxy, NULL);
3806 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003807 }
3808
3809 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003810 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3811 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003812
3813 /*******************************************************/
3814 /* At this step, all proxies have a non-null bind_proc */
3815 /*******************************************************/
3816
3817 /* perform the final checks before creating tasks */
3818
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003819 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003820 struct listener *listener;
3821 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003822
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003823 /* Configure SSL for each bind line.
3824 * Note: if configuration fails at some point, the ->ctx member
3825 * remains NULL so that listeners can later detach.
3826 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003827 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003828 if (bind_conf->xprt->prepare_bind_conf &&
3829 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003830 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003831 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003832
Willy Tarreaue6b98942007-10-29 01:09:36 +01003833 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003834 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003835 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003836 int nbproc;
3837
3838 nbproc = my_popcountl(curproxy->bind_proc &
Willy Tarreaue26993c2020-09-03 07:18:55 +02003839 (listener->bind_conf->settings.bind_proc ? listener->bind_conf->settings.bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003840 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003841
3842 if (!nbproc) /* no intersection between listener and frontend */
3843 nbproc = 1;
3844
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003845 if (!listener->luid) {
3846 /* listener ID not set, use automatic numbering with first
3847 * spare entry starting with next_luid.
3848 */
3849 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3850 listener->conf.id.key = listener->luid = next_id;
3851 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003852 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003853 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003854
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003855 /* enable separate counters */
3856 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003857 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003858 if (!listener->name)
3859 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003860 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003861
Willy Tarreaue6b98942007-10-29 01:09:36 +01003862 if (curproxy->options & PR_O_TCP_NOLING)
3863 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003864 if (!listener->maxaccept)
Willy Tarreau66161322021-02-19 15:50:27 +01003865 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau16a21472012-11-19 12:39:59 +01003866
3867 /* we want to have an optimal behaviour on single process mode to
3868 * maximize the work at once, but in multi-process we want to keep
3869 * some fairness between processes, so we target half of the max
3870 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003871 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003872 * used to disable the limit.
3873 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003874 if (listener->maxaccept > 0 && nbproc > 1) {
3875 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003876 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3877 }
3878
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003879 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003880 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003881 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003882
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003883 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003884 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003885
Willy Tarreau620408f2016-10-21 16:37:51 +02003886 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3887 listener->options |= LI_O_TCP_L5_RULES;
3888
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003889 /* smart accept mode is automatic in HTTP mode */
3890 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003891 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003892 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3893 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003894 }
3895
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003896 /* Release unused SSL configs */
3897 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003898 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3899 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003900 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003901
Willy Tarreaua38a7172019-02-02 17:11:28 +01003902 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003903 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003904 int count, maxproc = 0;
3905
3906 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreaue26993c2020-09-03 07:18:55 +02003907 count = my_popcountl(bind_conf->settings.bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003908 if (count > maxproc)
3909 maxproc = count;
3910 }
3911 /* backends have 0, frontends have 1 or more */
3912 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003913 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3914 " limited to process assigned to the current request.\n",
3915 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003916
Willy Tarreau102df612014-05-07 23:56:38 +02003917 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003918 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3919 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003920 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003921 }
Willy Tarreau102df612014-05-07 23:56:38 +02003922 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003923 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3924 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003925 }
3926 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003927
3928 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003929 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003930 if (curproxy->task) {
3931 curproxy->task->context = curproxy;
3932 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003933 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003934 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3935 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003936 cfgerr++;
3937 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003938 }
3939
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003940 /*
3941 * Recount currently required checks.
3942 */
3943
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003944 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003945 int optnum;
3946
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003947 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3948 if (curproxy->options & cfg_opts[optnum].val)
3949 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003950
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003951 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3952 if (curproxy->options2 & cfg_opts2[optnum].val)
3953 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003954 }
3955
Willy Tarreau0fca4832015-05-01 19:12:05 +02003956 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003957 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003958 if (curproxy->table && curproxy->table->peers.p)
3959 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003960
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003961 /* compute the required process bindings for the peers from <stktables_list>
3962 * for all the stick-tables, the ones coming with "peers" sections included.
3963 */
3964 for (t = stktables_list; t; t = t->next) {
3965 struct proxy *p;
3966
3967 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3968 if (t->peers.p && t->peers.p->peers_fe) {
3969 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3970 }
3971 }
3972 }
3973
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003974 if (cfg_peers) {
3975 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003976 struct peer *p, *pb;
3977
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003978 /* In the case the peers frontend was not initialized by a
3979 stick-table used in the configuration, set its bind_proc
3980 by default to the first process. */
3981 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003982 if (curpeers->peers_fe) {
3983 if (curpeers->peers_fe->bind_proc == 0)
3984 curpeers->peers_fe->bind_proc = 1;
3985 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003986 curpeers = curpeers->next;
3987 }
3988
3989 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003990 /* Remove all peers sections which don't have a valid listener,
3991 * which are not used by any table, or which are bound to more
3992 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003993 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003994 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003995 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003996 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003997 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003998
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003999 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004000 /* the "disabled" keyword was present */
4001 if (curpeers->peers_fe)
4002 stop_proxy(curpeers->peers_fe);
4003 curpeers->peers_fe = NULL;
4004 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02004005 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004006 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
4007 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004008 if (curpeers->peers_fe)
4009 stop_proxy(curpeers->peers_fe);
4010 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004011 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02004012 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02004013 /* either it's totally stopped or too much used */
4014 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004015 ha_alert("Peers section '%s': peers referenced by sections "
4016 "running in different processes (%d different ones). "
4017 "Check global.nbproc and all tables' bind-process "
4018 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02004019 cfgerr++;
4020 }
4021 stop_proxy(curpeers->peers_fe);
4022 curpeers->peers_fe = NULL;
4023 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004024 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004025 /* Initializes the transport layer of the server part of all the peers belonging to
4026 * <curpeers> section if required.
4027 * Note that ->srv is used by the local peer of a new process to connect to the local peer
4028 * of an old process.
4029 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004030 p = curpeers->remote;
4031 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004032 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004033 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 +01004034 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
4035 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004036 p = p->next;
4037 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004038 /* Configure the SSL bindings of the local peer if required. */
4039 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
4040 struct list *l;
4041 struct bind_conf *bind_conf;
4042
4043 l = &curpeers->peers_fe->conf.bind;
4044 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
4045 if (bind_conf->xprt->prepare_bind_conf &&
4046 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4047 cfgerr++;
4048 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004049 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004050 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4051 curpeers->id);
4052 cfgerr++;
4053 break;
4054 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004055 last = &curpeers->next;
4056 continue;
4057 }
4058
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004059 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004060 p = curpeers->remote;
4061 while (p) {
4062 pb = p->next;
4063 free(p->id);
4064 free(p);
4065 p = pb;
4066 }
4067
4068 /* Destroy and unlink this curpeers section.
4069 * Note: curpeers is backed up into *last.
4070 */
4071 free(curpeers->id);
4072 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004073 /* Reset any refereance to this peers section in the list of stick-tables */
4074 for (t = stktables_list; t; t = t->next) {
4075 if (t->peers.p && t->peers.p == *last)
4076 t->peers.p = NULL;
4077 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004078 free(*last);
4079 *last = curpeers;
4080 }
4081 }
4082
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004083 for (t = stktables_list; t; t = t->next) {
4084 if (t->proxy)
4085 continue;
4086 if (!stktable_init(t)) {
4087 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4088 cfgerr++;
4089 }
4090 }
4091
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004092 /* initialize stick-tables on backend capable proxies. This must not
4093 * be done earlier because the data size may be discovered while parsing
4094 * other proxies.
4095 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004096 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauc3914d42020-09-24 08:39:22 +02004097 if (curproxy->disabled || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004098 continue;
4099
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004100 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004101 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004102 cfgerr++;
4103 }
4104 }
4105
Simon Horman0d16a402015-01-30 11:22:58 +09004106 if (mailers) {
4107 struct mailers *curmailers = mailers, **last;
4108 struct mailer *m, *mb;
4109
4110 /* Remove all mailers sections which don't have a valid listener.
4111 * This can happen when a mailers section is never referenced.
4112 */
4113 last = &mailers;
4114 while (*last) {
4115 curmailers = *last;
4116 if (curmailers->users) {
4117 last = &curmailers->next;
4118 continue;
4119 }
4120
Christopher Faulet767a84b2017-11-24 16:50:31 +01004121 ha_warning("Removing incomplete section 'mailers %s'.\n",
4122 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004123
4124 m = curmailers->mailer_list;
4125 while (m) {
4126 mb = m->next;
4127 free(m->id);
4128 free(m);
4129 m = mb;
4130 }
4131
4132 /* Destroy and unlink this curmailers section.
4133 * Note: curmailers is backed up into *last.
4134 */
4135 free(curmailers->id);
4136 curmailers = curmailers->next;
4137 free(*last);
4138 *last = curmailers;
4139 }
4140 }
4141
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004142 /* Update server_state_file_name to backend name if backend is supposed to use
4143 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004144 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004145 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4146 curproxy->server_state_file_name == NULL)
4147 curproxy->server_state_file_name = strdup(curproxy->id);
4148 }
4149
Emeric Brun750fe792020-12-23 16:51:12 +01004150 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06004151 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
4152 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
4153 curr_resolvers->id, curr_resolvers->conf.file,
4154 curr_resolvers->conf.line);
4155 err_code |= ERR_WARN;
4156 }
4157 }
4158
William Lallemand48b4bb42017-10-23 14:36:34 +02004159 list_for_each_entry(postparser, &postparsers, list) {
4160 if (postparser->func)
4161 cfgerr += postparser->func();
4162 }
4163
Willy Tarreaubb925012009-07-23 13:36:36 +02004164 if (cfgerr > 0)
4165 err_code |= ERR_ALERT | ERR_FATAL;
4166 out:
4167 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004168}
4169
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004170/*
4171 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4172 * parsing sessions.
4173 */
4174void cfg_register_keywords(struct cfg_kw_list *kwl)
4175{
Willy Tarreau2b718102021-04-21 07:32:39 +02004176 LIST_APPEND(&cfg_keywords.list, &kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004177}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004178
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004179/*
4180 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4181 */
4182void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4183{
Willy Tarreau2b718102021-04-21 07:32:39 +02004184 LIST_DELETE(&kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004185 LIST_INIT(&kwl->list);
4186}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004187
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004188/* this function register new section in the haproxy configuration file.
4189 * <section_name> is the name of this new section and <section_parser>
4190 * is the called parser. If two section declaration have the same name,
4191 * only the first declared is used.
4192 */
4193int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004194 int (*section_parser)(const char *, int, char **, int),
4195 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004196{
4197 struct cfg_section *cs;
4198
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004199 list_for_each_entry(cs, &sections, list) {
4200 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004201 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004202 return 0;
4203 }
4204 }
4205
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004206 cs = calloc(1, sizeof(*cs));
4207 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004208 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004209 return 0;
4210 }
4211
4212 cs->section_name = section_name;
4213 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004214 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004215
Willy Tarreau2b718102021-04-21 07:32:39 +02004216 LIST_APPEND(&sections, &cs->list);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004217
4218 return 1;
4219}
4220
William Lallemand48b4bb42017-10-23 14:36:34 +02004221/* this function register a new function which will be called once the haproxy
4222 * configuration file has been parsed. It's useful to check dependencies
4223 * between sections or to resolve items once everything is parsed.
4224 */
4225int cfg_register_postparser(char *name, int (*func)())
4226{
4227 struct cfg_postparser *cp;
4228
4229 cp = calloc(1, sizeof(*cp));
4230 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004231 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004232 return 0;
4233 }
4234 cp->name = name;
4235 cp->func = func;
4236
Willy Tarreau2b718102021-04-21 07:32:39 +02004237 LIST_APPEND(&postparsers, &cp->list);
William Lallemand48b4bb42017-10-23 14:36:34 +02004238
4239 return 1;
4240}
4241
Willy Tarreaubaaee002006-06-26 02:48:02 +02004242/*
David Carlier845efb52015-09-25 11:49:18 +01004243 * free all config section entries
4244 */
4245void cfg_unregister_sections(void)
4246{
4247 struct cfg_section *cs, *ics;
4248
4249 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004250 LIST_DELETE(&cs->list);
David Carlier845efb52015-09-25 11:49:18 +01004251 free(cs);
4252 }
4253}
4254
Christopher Faulet7110b402016-10-26 11:09:44 +02004255void cfg_backup_sections(struct list *backup_sections)
4256{
4257 struct cfg_section *cs, *ics;
4258
4259 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004260 LIST_DELETE(&cs->list);
4261 LIST_APPEND(backup_sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004262 }
4263}
4264
4265void cfg_restore_sections(struct list *backup_sections)
4266{
4267 struct cfg_section *cs, *ics;
4268
4269 list_for_each_entry_safe(cs, ics, backup_sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004270 LIST_DELETE(&cs->list);
4271 LIST_APPEND(&sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004272 }
4273}
4274
Willy Tarreaue6552512018-11-26 11:33:13 +01004275/* these are the config sections handled by default */
4276REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4277REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4278REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4279REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4280REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4281REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4282REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4283REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4284REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004285
Willy Tarreau8a022d52021-04-27 20:29:11 +02004286static struct cfg_kw_list cfg_kws = {{ },{
4287 { CFG_GLOBAL, "default-path", cfg_parse_global_def_path },
4288 { /* END */ }
4289}};
4290
4291INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4292
David Carlier845efb52015-09-25 11:49:18 +01004293/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004294 * Local variables:
4295 * c-indent-level: 8
4296 * c-basic-offset: 8
4297 * End:
4298 */