blob: f229e3b6b0b147e47a466ee3657ffaa0e155149a [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 Tarreau2e644722022-08-07 16:55:07 +020013/* This is to have crypt() and sched_setaffinity() defined on Linux */
Cyril Bonté1a0191d2014-08-29 20:20:02 +020014#define _GNU_SOURCE
15
Willy Tarreau2e644722022-08-07 16:55:07 +020016#ifdef USE_LIBCRYPT
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 Tarreau2e644722022-08-07 16:55:07 +020032#ifdef USE_CPU_AFFINITY
33#include <sched.h>
34#endif
Willy Tarreau3f49b302007-06-11 00:29:26 +020035#include <sys/types.h>
36#include <sys/stat.h>
Willy Tarreau3f49b302007-06-11 00:29:26 +020037#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038
Willy Tarreaudcc048a2020-06-04 19:11:43 +020039#include <haproxy/acl.h>
Christopher Faulet42c6cf92021-03-25 17:19:04 +010040#include <haproxy/action.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020041#include <haproxy/api.h>
Willy Tarreau732525f2021-05-06 15:49:04 +020042#include <haproxy/arg.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020043#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020044#include <haproxy/backend.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020045#include <haproxy/capture.h>
Willy Tarreau66243b42021-07-16 15:39:28 +020046#include <haproxy/cfgcond.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020047#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020048#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020049#include <haproxy/check.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020050#include <haproxy/chunk.h>
Willy Tarreau55542642021-10-08 09:33:24 +020051#include <haproxy/clock.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020052#ifdef USE_CPU_AFFINITY
Amaury Denoyellec90932b2021-04-14 16:16:03 +020053#include <haproxy/cpuset.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020054#endif
Willy Tarreau7ea393d2020-06-04 18:02:10 +020055#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020056#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020057#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020058#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020059#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020060#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020061#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020062#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020063#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020064#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020065#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020066#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020067#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020068#include <haproxy/log.h>
Emeric Brund6e581d2022-09-13 16:16:30 +020069#include <haproxy/sink.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020070#include <haproxy/mailers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020071#include <haproxy/namespace.h>
Amaury Denoyelleb59b8892022-01-25 17:48:47 +010072#include <haproxy/quic_sock.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020073#include <haproxy/obj_type-t.h>
Willy Tarreaube336622023-04-19 10:41:55 +020074#include <haproxy/openssl-compat.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020075#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020076#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020077#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020078#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020079#include <haproxy/proxy.h>
Emeric Brunc9437992021-02-12 19:42:55 +010080#include <haproxy/resolvers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020081#include <haproxy/sample.h>
82#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020083#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020084#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020085#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020086#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020087#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020088#include <haproxy/tcp_rules.h>
Amaury Denoyellef2c27a52021-07-23 15:46:46 +020089#include <haproxy/tcpcheck.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020090#include <haproxy/thread.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020091#include <haproxy/tools.h>
92#include <haproxy/uri_auth-t.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020093
94
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010095/* Used to chain configuration sections definitions. This list
96 * stores struct cfg_section
97 */
98struct list sections = LIST_HEAD_INIT(sections);
99
William Lallemand48b4bb42017-10-23 14:36:34 +0200100struct list postparsers = LIST_HEAD_INIT(postparsers);
101
Eric Salama1b8dacc2021-03-16 15:12:17 +0100102extern struct proxy *mworker_proxy;
103
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100104char *cursection = NULL;
Willy Tarreauc8d5b952019-02-27 17:25:52 +0100105int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +0100106int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +0100107char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Christopher Faulet037e3f82022-11-18 15:46:06 +0100108int non_global_section_parsed = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200109
Willy Tarreau8a022d52021-04-27 20:29:11 +0200110/* how to handle default paths */
111static enum default_path_mode {
112 DEFAULT_PATH_CURRENT = 0, /* "current": paths are relative to CWD (this is the default) */
113 DEFAULT_PATH_CONFIG, /* "config": paths are relative to config file */
114 DEFAULT_PATH_PARENT, /* "parent": paths are relative to config file's ".." */
115 DEFAULT_PATH_ORIGIN, /* "origin": paths are relative to default_path_origin */
116} default_path_mode;
117
118static char initial_cwd[PATH_MAX];
119static char current_cwd[PATH_MAX];
120
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200121/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100122struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200123 .list = LIST_HEAD_INIT(cfg_keywords.list)
124};
125
Willy Tarreaubaaee002006-06-26 02:48:02 +0200126/*
127 * converts <str> to a list of listeners which are dynamically allocated.
128 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
129 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
130 * - <port> is a numerical port from 1 to 65535 ;
131 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
132 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200133 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
134 * not NULL, it must be a valid pointer to either NULL or a freeable area that
135 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200136 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200137int 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 +0200138{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200139 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100140 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200141 int port, end;
142
143 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200144
Willy Tarreaubaaee002006-06-26 02:48:02 +0200145 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200146 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100147 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200148
149 str = next;
150 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100151 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200152 *next++ = 0;
153 }
154
Willy Tarreau5fc93282020-09-16 18:25:03 +0200155 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Eric Salama1b8dacc2021-03-16 15:12:17 +0100156 (curproxy == global.cli_fe || curproxy == mworker_proxy) ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200157 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200158 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100159 if (!ss2)
160 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200161
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100162 /* OK the address looks correct */
Willy Tarreau91b780a2022-05-20 16:15:01 +0200163 if (proto->proto_type == PROTO_TYPE_DGRAM)
164 bind_conf->options |= BC_O_USE_SOCK_DGRAM;
165 else
166 bind_conf->options |= BC_O_USE_SOCK_STREAM;
167
168 if (proto->xprt_type == PROTO_TYPE_DGRAM)
169 bind_conf->options |= BC_O_USE_XPRT_DGRAM;
170 else
171 bind_conf->options |= BC_O_USE_XPRT_STREAM;
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100172
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200173 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200174 memprintf(err, "%s for address '%s'.\n", *err, str);
175 goto fail;
176 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200177 } /* end while(next) */
178 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200179 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200180 fail:
181 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200182 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200183}
184
William Lallemand6e62fb62015-04-28 16:55:23 +0200185/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200186 * converts <str> to a list of datagram-oriented listeners which are dynamically
187 * allocated.
188 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
189 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
190 * - <port> is a numerical port from 1 to 65535 ;
191 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
192 * This can be repeated as many times as necessary, separated by a coma.
193 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
194 * not NULL, it must be a valid pointer to either NULL or a freeable area that
195 * will be replaced with an error message.
196 */
197int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
198{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200199 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200200 char *next, *dupstr;
201 int port, end;
202
203 next = dupstr = strdup(str);
204
205 while (next && *next) {
206 struct sockaddr_storage *ss2;
207 int fd = -1;
208
209 str = next;
210 /* 1) look for the end of the first address */
211 if ((next = strchr(str, ',')) != NULL) {
212 *next++ = 0;
213 }
214
Willy Tarreau5fc93282020-09-16 18:25:03 +0200215 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreau4975d142021-03-13 11:00:33 +0100216 curproxy == global.cli_fe ? NULL : global.unix_bind.prefix,
Willy Tarreauaa333122020-09-16 15:13:04 +0200217 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
218 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
219 if (!ss2)
220 goto fail;
221
222 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200223 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200224 memprintf(err, "%s for address '%s'.\n", *err, str);
225 goto fail;
226 }
227 } /* end while(next) */
228 free(dupstr);
229 return 1;
230 fail:
231 free(dupstr);
232 return 0;
233}
234
235/*
Willy Tarreau08138612021-05-08 19:58:37 +0200236 * Sends a warning if proxy <proxy> does not have at least one of the
237 * capabilities in <cap>. An optional <hint> may be added at the end
238 * of the warning to help the user. Returns 1 if a warning was emitted
239 * or 0 if the condition is valid.
240 */
241int warnifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint)
242{
243 char *msg;
244
245 switch (cap) {
246 case PR_CAP_BE: msg = "no backend"; break;
247 case PR_CAP_FE: msg = "no frontend"; break;
248 case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break;
249 default: msg = "not enough"; break;
250 }
251
252 if (!(proxy->cap & cap)) {
253 ha_warning("parsing [%s:%d] : '%s' ignored because %s '%s' has %s capability.%s\n",
254 file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : "");
255 return 1;
256 }
257 return 0;
258}
259
260/*
261 * Sends an alert if proxy <proxy> does not have at least one of the
262 * capabilities in <cap>. An optional <hint> may be added at the end
263 * of the alert to help the user. Returns 1 if an alert was emitted
264 * or 0 if the condition is valid.
265 */
266int failifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint)
267{
268 char *msg;
269
270 switch (cap) {
271 case PR_CAP_BE: msg = "no backend"; break;
272 case PR_CAP_FE: msg = "no frontend"; break;
273 case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break;
274 default: msg = "not enough"; break;
275 }
276
277 if (!(proxy->cap & cap)) {
278 ha_alert("parsing [%s:%d] : '%s' not allowed because %s '%s' has %s capability.%s\n",
279 file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : "");
280 return 1;
281 }
282 return 0;
283}
284
285/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100286 * Report an error in <msg> when there are too many arguments. This version is
287 * intended to be used by keyword parsers so that the message will be included
288 * into the general error message. The index is the current keyword in args.
289 * Return 0 if the number of argument is correct, otherwise build a message and
290 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
291 * message may also be null, it will simply not be produced (useful to check only).
292 * <msg> and <err_code> are only affected on error.
293 */
294int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
295{
296 int i;
297
298 if (!*args[index + maxarg + 1])
299 return 0;
300
301 if (msg) {
302 *msg = NULL;
303 memprintf(msg, "%s", args[0]);
304 for (i = 1; i <= index; i++)
305 memprintf(msg, "%s %s", *msg, args[i]);
306
307 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
308 }
309 if (err_code)
310 *err_code |= ERR_ALERT | ERR_FATAL;
311
312 return 1;
313}
314
315/*
316 * same as too_many_args_idx with a 0 index
317 */
318int too_many_args(int maxarg, char **args, char **msg, int *err_code)
319{
320 return too_many_args_idx(maxarg, 0, args, msg, err_code);
321}
322
323/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200324 * Report a fatal Alert when there is too much arguments
325 * The index is the current keyword in args
326 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
327 * Fill err_code with an ERR_ALERT and an ERR_FATAL
328 */
329int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
330{
331 char *kw = NULL;
332 int i;
333
334 if (!*args[index + maxarg + 1])
335 return 0;
336
337 memprintf(&kw, "%s", args[0]);
338 for (i = 1; i <= index; i++) {
339 memprintf(&kw, "%s %s", kw, args[i]);
340 }
341
Christopher Faulet767a84b2017-11-24 16:50:31 +0100342 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 +0200343 free(kw);
344 *err_code |= ERR_ALERT | ERR_FATAL;
345 return 1;
346}
347
348/*
349 * same as alertif_too_many_args_idx with a 0 index
350 */
351int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
352{
353 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
354}
355
Willy Tarreau61d18892009-03-31 10:49:21 +0200356
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100357/* Report it if a request ACL condition uses some keywords that are incompatible
358 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
359 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
360 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100361 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100362int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100363{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100364 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200365 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100366
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100367 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100368 return 0;
369
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100370 acl = acl_cond_conflicts(cond, where);
371 if (acl) {
372 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100373 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
374 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100375 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100376 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
377 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100378 return ERR_WARN;
379 }
380 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100381 return 0;
382
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100383 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100384 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
385 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100386 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100387 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
388 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100389 return ERR_WARN;
390}
391
Christopher Faulet581db2b2021-03-26 10:02:46 +0100392/* Report it if an ACL uses a L6 sample fetch from an HTTP proxy. It returns
393 * either 0 or ERR_WARN so that its result can be or'ed with err_code. Note that
394 * <cond> may be NULL and then will be ignored.
395*/
396int warnif_tcp_http_cond(const struct proxy *px, const struct acl_cond *cond)
397{
398 if (!cond || px->mode != PR_MODE_HTTP)
399 return 0;
400
401 if (cond->use & (SMP_USE_L6REQ|SMP_USE_L6RES)) {
402 ha_warning("Proxy '%s': L6 sample fetches ignored on HTTP proxies (declared at %s:%d).\n",
403 px->id, cond->file, cond->line);
404 return ERR_WARN;
405 }
406 return 0;
407}
408
Willy Tarreaue2afcc42021-03-12 09:08:04 +0100409/* try to find in <list> the word that looks closest to <word> by counting
410 * transitions between letters, digits and other characters. Will return the
411 * best matching word if found, otherwise NULL. An optional array of extra
412 * words to compare may be passed in <extra>, but it must then be terminated
413 * by a NULL entry. If unused it may be NULL.
414 */
415const char *cfg_find_best_match(const char *word, const struct list *list, int section, const char **extra)
416{
417 uint8_t word_sig[1024]; // 0..25=letter, 26=digit, 27=other, 28=begin, 29=end
418 uint8_t list_sig[1024];
419 const struct cfg_kw_list *kwl;
420 int index;
421 const char *best_ptr = NULL;
422 int dist, best_dist = INT_MAX;
423
424 make_word_fingerprint(word_sig, word);
425 list_for_each_entry(kwl, list, list) {
426 for (index = 0; kwl->kw[index].kw != NULL; index++) {
427 if (kwl->kw[index].section != section)
428 continue;
429
430 make_word_fingerprint(list_sig, kwl->kw[index].kw);
431 dist = word_fingerprint_distance(word_sig, list_sig);
432 if (dist < best_dist) {
433 best_dist = dist;
434 best_ptr = kwl->kw[index].kw;
435 }
436 }
437 }
438
439 while (extra && *extra) {
440 make_word_fingerprint(list_sig, *extra);
441 dist = word_fingerprint_distance(word_sig, list_sig);
442 if (dist < best_dist) {
443 best_dist = dist;
444 best_ptr = *extra;
445 }
446 extra++;
447 }
448
449 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
450 best_ptr = NULL;
451 return best_ptr;
452}
453
Christopher Faulet62519022017-10-16 15:49:32 +0200454/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100455 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100456 * two such numbers delimited by a dash ('-'). On success, it returns
457 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200458 *
459 * Note: this function can also be used to parse a thread number or a set of
460 * threads.
461 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100462int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200463{
Christopher Faulet26028f62017-11-22 15:01:51 +0100464 if (autoinc) {
465 *autoinc = 0;
466 if (strncmp(arg, "auto:", 5) == 0) {
467 arg += 5;
468 *autoinc = 1;
469 }
470 }
471
Christopher Faulet62519022017-10-16 15:49:32 +0200472 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100473 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200474 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100475 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200476 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100477 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200478 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100479 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100480 unsigned int low, high;
481
Christopher Faulet18cca782019-02-07 16:29:41 +0100482 for (p = arg; *p; p++) {
483 if (*p == '-' && !dash)
484 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100485 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100486 memprintf(err, "'%s' is not a valid number/range.", arg);
487 return -1;
488 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100489 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100490
491 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100492 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100493 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100494
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100495 if (high < low) {
496 unsigned int swap = low;
497 low = high;
498 high = swap;
499 }
500
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100501 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100502 memprintf(err, "'%s' is not a valid number/range."
503 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100504 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100505 return 1;
506 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100507
508 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100509 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200510 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100511 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100512
Christopher Faulet5ab51772017-11-22 11:21:58 +0100513 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200514}
515
David Carlier7e351ee2017-12-01 09:14:02 +0000516#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200517/* Parse cpu sets. Each CPU set is either a unique number between 0 and
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200518 * ha_cpuset_size() - 1 or a range with two such numbers delimited by a dash
Amaury Denoyellea8082352021-04-06 16:46:15 +0200519 * ('-'). If <comma_allowed> is set, each CPU set can be a list of unique
520 * numbers or ranges separated by a comma. It is also possible to specify
521 * multiple cpu numbers or ranges in distinct argument in <args>. On success,
522 * it returns 0, otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200523 */
Amaury Denoyellea8082352021-04-06 16:46:15 +0200524unsigned long parse_cpu_set(const char **args, struct hap_cpuset *cpu_set,
525 int comma_allowed, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200526{
527 int cur_arg = 0;
Amaury Denoyellea8082352021-04-06 16:46:15 +0200528 const char *arg;
Christopher Faulet62519022017-10-16 15:49:32 +0200529
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200530 ha_cpuset_zero(cpu_set);
531
Amaury Denoyellea8082352021-04-06 16:46:15 +0200532 arg = args[cur_arg];
533 while (*arg) {
534 const char *dash, *comma;
Christopher Faulet62519022017-10-16 15:49:32 +0200535 unsigned int low, high;
536
Willy Tarreau90807112020-02-25 08:16:33 +0100537 if (!isdigit((unsigned char)*args[cur_arg])) {
Amaury Denoyellea8082352021-04-06 16:46:15 +0200538 memprintf(err, "'%s' is not a CPU range.", arg);
Christopher Faulet62519022017-10-16 15:49:32 +0200539 return -1;
540 }
541
Amaury Denoyellea8082352021-04-06 16:46:15 +0200542 low = high = str2uic(arg);
543
544 comma = comma_allowed ? strchr(arg, ',') : NULL;
545 dash = strchr(arg, '-');
546
547 if (dash && (!comma || dash < comma))
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200548 high = *(dash+1) ? str2uic(dash + 1) : ha_cpuset_size() - 1;
Christopher Faulet62519022017-10-16 15:49:32 +0200549
550 if (high < low) {
551 unsigned int swap = low;
552 low = high;
553 high = swap;
554 }
555
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200556 if (high >= ha_cpuset_size()) {
557 memprintf(err, "supports CPU numbers from 0 to %d.",
558 ha_cpuset_size() - 1);
Christopher Faulet62519022017-10-16 15:49:32 +0200559 return 1;
560 }
561
562 while (low <= high)
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200563 ha_cpuset_set(cpu_set, low++);
Christopher Faulet62519022017-10-16 15:49:32 +0200564
Amaury Denoyellea8082352021-04-06 16:46:15 +0200565 /* if a comma is present, parse the rest of the arg, else
566 * skip to the next arg */
567 arg = comma ? comma + 1 : args[++cur_arg];
Christopher Faulet62519022017-10-16 15:49:32 +0200568 }
569 return 0;
570}
David Carlier7e351ee2017-12-01 09:14:02 +0000571#endif
572
Frédéric Lécaille18251032019-01-11 11:07:15 +0100573/* Allocate and initialize the frontend of a "peers" section found in
Christopher Faulet244331f2022-07-25 15:10:44 +0200574 * file <file> at line <linenum> with <id> as ID.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100575 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200576 * Note that this function may be called from "default-server"
577 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100578 */
Christopher Faulet244331f2022-07-25 15:10:44 +0200579static int init_peers_frontend(const char *file, int linenum,
580 const char *id, struct peers *peers)
Frédéric Lécaille18251032019-01-11 11:07:15 +0100581{
582 struct proxy *p;
583
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200584 if (peers->peers_fe) {
585 p = peers->peers_fe;
586 goto out;
587 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100588
Frédéric Lécaille18251032019-01-11 11:07:15 +0100589 p = calloc(1, sizeof *p);
590 if (!p) {
591 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
592 return -1;
593 }
594
595 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200596 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100597 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200598 /* Finally store this frontend. */
599 peers->peers_fe = p;
600
601 out:
Christopher Faulet244331f2022-07-25 15:10:44 +0200602 if (id && !p->id)
603 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200604 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100605 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100606 if (linenum != -1)
607 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100608
609 return 0;
610}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100611
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100612/* Only change ->file, ->line and ->arg struct bind_conf member values
613 * if already present.
614 */
615static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
616 const char *file, int line,
617 const char *arg, struct xprt_ops *xprt)
618{
619 struct bind_conf *bind_conf;
620
621 if (!LIST_ISEMPTY(&p->conf.bind)) {
622 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200623 /*
624 * We keep bind_conf->file and bind_conf->line unchanged
625 * to make them available for error messages
626 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100627 if (arg) {
628 free(bind_conf->arg);
629 bind_conf->arg = strdup(arg);
630 }
631 }
632 else {
633 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
634 }
635
636 return bind_conf;
637}
638
639/*
640 * Allocate a new struct peer parsed at line <linenum> in file <file>
641 * to be added to <peers>.
642 * Returns the new allocated structure if succeeded, NULL if not.
643 */
644static struct peer *cfg_peers_add_peer(struct peers *peers,
645 const char *file, int linenum,
646 const char *id, int local)
647{
648 struct peer *p;
649
650 p = calloc(1, sizeof *p);
651 if (!p) {
652 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
653 return NULL;
654 }
655
656 /* the peers are linked backwards first */
657 peers->count++;
Christopher Faulet387e7972022-05-12 14:47:52 +0200658 p->peers = peers;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100659 p->next = peers->remote;
660 peers->remote = p;
661 p->conf.file = strdup(file);
662 p->conf.line = linenum;
663 p->last_change = now.tv_sec;
664 p->xprt = xprt_get(XPRT_RAW);
665 p->sock_init_arg = NULL;
666 HA_SPIN_INIT(&p->lock);
667 if (id)
668 p->id = strdup(id);
669 if (local) {
670 p->local = 1;
671 peers->local = p;
672 }
673
674 return p;
675}
676
Willy Tarreaubaaee002006-06-26 02:48:02 +0200677/*
William Lallemand51097192015-04-14 16:35:22 +0200678 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200679 * Returns the error code, 0 if OK, or any combination of :
680 * - ERR_ABORT: must abort ASAP
681 * - ERR_FATAL: we can continue parsing but not start the service
682 * - ERR_WARN: a warning has been emitted
683 * - ERR_ALERT: an alert has been emitted
684 * Only the two first ones can stop processing, the two others are just
685 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200686 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200687int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
688{
689 static struct peers *curpeers = NULL;
Frédéric Lécaille36d15652022-10-17 14:58:19 +0200690 static int nb_shards = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200691 struct peer *newpeer = NULL;
692 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200693 struct bind_conf *bind_conf;
Emeric Brun32da3c42010-09-23 18:39:19 +0200694 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100695 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100696 static int bind_line, peer_line;
697
698 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
699 int cur_arg;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100700 struct bind_conf *bind_conf;
Willy Tarreau55f0f7b2022-05-20 15:44:17 +0200701 int ret;
Emeric Brun32da3c42010-09-23 18:39:19 +0200702
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100703 cur_arg = 1;
704
Christopher Faulet244331f2022-07-25 15:10:44 +0200705 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200706 err_code |= ERR_ALERT | ERR_ABORT;
707 goto out;
708 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100709
710 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
Willy Tarreau8d158132022-07-05 15:54:09 +0200711 args[1], xprt_get(XPRT_RAW));
William Lallemand1d932172022-07-06 14:30:23 +0200712 if (!bind_conf) {
713 ha_alert("parsing [%s:%d] : '%s %s' : cannot allocate memory.\n", file, linenum, args[0], args[1]);
714 err_code |= ERR_FATAL;
715 goto out;
716 }
Willy Tarreau882f2482023-01-12 18:52:23 +0100717
718 bind_conf->maxaccept = 1;
Willy Tarreau30836152023-01-12 19:10:17 +0100719 bind_conf->accept = session_accept_fd;
Willy Tarreau17146802023-01-12 19:58:42 +0100720 bind_conf->options |= BC_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau882f2482023-01-12 18:52:23 +0100721
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100722 if (*args[0] == 'b') {
723 struct listener *l;
724
725 if (peer_line) {
726 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
727 err_code |= ERR_ALERT | ERR_FATAL;
728 goto out;
729 }
730
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200731 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
732 ha_alert("parsing [%s:%d] : One listener per \"peers\" section is authorized but another is already configured at [%s:%d].\n", file, linenum, bind_conf->file, bind_conf->line);
733 err_code |= ERR_FATAL;
734 }
735
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100736 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
737 if (errmsg && *errmsg) {
738 indent_msg(&errmsg, 2);
739 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
740 }
741 else
742 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
Willy Tarreau0d044102022-05-20 15:19:48 +0200743 file, linenum, args[0], args[1], args[1]);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100744 err_code |= ERR_FATAL;
745 goto out;
746 }
Willy Tarreau17146802023-01-12 19:58:42 +0100747
Emeric Brunca825782022-05-25 10:25:45 +0200748 /*
749 * Newly allocated listener is at the end of the list
750 */
751 l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind);
Willy Tarreau17146802023-01-12 19:58:42 +0100752
Willy Tarreau18215cb2019-02-27 16:25:28 +0100753 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100754
755 bind_line = 1;
756 if (cfg_peers->local) {
757 newpeer = cfg_peers->local;
758 }
759 else {
760 /* This peer is local.
761 * Note that we do not set the peer ID. This latter is initialized
762 * when parsing "peer" or "server" line.
763 */
764 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
765 if (!newpeer) {
766 err_code |= ERR_ALERT | ERR_ABORT;
767 goto out;
768 }
769 }
Willy Tarreau37159062020-08-27 07:48:42 +0200770 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200771 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100772 cur_arg++;
773 }
774
Willy Tarreau55f0f7b2022-05-20 15:44:17 +0200775 ret = bind_parse_args_list(bind_conf, args, cur_arg, cursection, file, linenum);
776 err_code |= ret;
777 if (ret != 0)
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100778 goto out;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100779 }
780 else if (strcmp(args[0], "default-server") == 0) {
Christopher Faulet244331f2022-07-25 15:10:44 +0200781 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100782 err_code |= ERR_ALERT | ERR_ABORT;
783 goto out;
784 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100785 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
786 SRV_PARSE_DEFAULT_SERVER|SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200787 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100788 else if (strcmp(args[0], "log") == 0) {
Christopher Faulet244331f2022-07-25 15:10:44 +0200789 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100790 err_code |= ERR_ALERT | ERR_ABORT;
791 goto out;
792 }
Emeric Brun9533a702021-04-02 10:13:43 +0200793 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), file, linenum, &errmsg)) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100794 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
795 err_code |= ERR_ALERT | ERR_FATAL;
796 goto out;
797 }
798 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200799 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100800 /* Initialize these static variables when entering a new "peers" section*/
801 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100802 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100803 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100804 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100805 goto out;
806 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200807
William Lallemand6e62fb62015-04-28 16:55:23 +0200808 if (alertif_too_many_args(1, file, linenum, args, &err_code))
809 goto out;
810
Emeric Brun32da3c42010-09-23 18:39:19 +0200811 err = invalid_char(args[1]);
812 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100813 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
814 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100815 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100816 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200817 }
818
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200819 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200820 /*
821 * If there are two proxies with the same name only following
822 * combinations are allowed:
823 */
824 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100825 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
826 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200827 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200828 }
829 }
830
Vincent Bernat02779b62016-04-03 13:48:43 +0200831 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100832 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200833 err_code |= ERR_ALERT | ERR_ABORT;
834 goto out;
835 }
836
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200837 curpeers->next = cfg_peers;
838 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200839 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200840 curpeers->conf.line = linenum;
841 curpeers->last_change = now.tv_sec;
842 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200843 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200844 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200845 else if (strcmp(args[0], "peer") == 0 ||
846 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100847 int local_peer, peer;
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100848 int parse_addr = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200849
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100850 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100851 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100852 /* The local peer may have already partially been parsed on a "bind" line. */
853 if (*args[0] == 'p') {
854 if (bind_line) {
855 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
856 err_code |= ERR_ALERT | ERR_FATAL;
857 goto out;
858 }
859 peer_line = 1;
860 }
861 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
862 /* The local peer has already been initialized on a "bind" line.
863 * Let's use it and store its ID.
864 */
865 newpeer = cfg_peers->local;
866 newpeer->id = strdup(localpeer);
867 }
868 else {
869 if (local_peer && cfg_peers->local) {
870 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
871 file, linenum, args[0], args[1],
872 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
873 err_code |= ERR_FATAL;
874 goto out;
875 }
876 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
877 if (!newpeer) {
878 err_code |= ERR_ALERT | ERR_ABORT;
879 goto out;
880 }
881 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200882
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100883 /* Line number and peer ID are updated only if this peer is the local one. */
884 if (init_peers_frontend(file,
885 newpeer->local ? linenum: -1,
Christopher Faulet244331f2022-07-25 15:10:44 +0200886 newpeer->local ? newpeer->id : NULL,
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100887 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200888 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100889 goto out;
890 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100891
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100892 /* This initializes curpeer->peers->peers_fe->srv.
893 * The server address is parsed only if we are parsing a "peer" line,
894 * or if we are parsing a "server" line and the current peer is not the local one.
895 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100896 parse_addr = (peer || !local_peer) ? SRV_PARSE_PARSE_ADDR : 0;
897 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
898 SRV_PARSE_IN_PEER_SECTION|parse_addr|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200899 if (!curpeers->peers_fe->srv) {
900 /* Remove the newly allocated peer. */
901 if (newpeer != curpeers->local) {
902 struct peer *p;
903
904 p = curpeers->remote;
905 curpeers->remote = curpeers->remote->next;
906 free(p->id);
907 free(p);
908 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200909 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200910 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200911
Frédéric Lécaille36d15652022-10-17 14:58:19 +0200912 if (nb_shards && curpeers->peers_fe->srv->shard > nb_shards) {
913 ha_warning("parsing [%s:%d] : '%s %s' : %d peer shard greater value than %d shards value is ignored.\n",
914 file, linenum, args[0], args[1], curpeers->peers_fe->srv->shard, nb_shards);
915 curpeers->peers_fe->srv->shard = 0;
916 err_code |= ERR_WARN;
917 }
918
Willy Tarreau824c8c52022-05-31 09:42:44 +0200919 if (curpeers->peers_fe->srv->init_addr_methods || curpeers->peers_fe->srv->resolvers_id ||
920 curpeers->peers_fe->srv->do_check || curpeers->peers_fe->srv->do_agent) {
921 ha_warning("parsing [%s:%d] : '%s %s' : init_addr, resolvers, check and agent are ignored for peers.\n", file, linenum, args[0], args[1]);
922 err_code |= ERR_WARN;
923 }
924
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100925 /* If the peer address has just been parsed, let's copy it to <newpeer>
926 * and initializes ->proto.
927 */
928 if (peer || !local_peer) {
929 newpeer->addr = curpeers->peers_fe->srv->addr;
Willy Tarreau14e7f292021-10-27 17:41:07 +0200930 newpeer->proto = protocol_lookup(newpeer->addr.ss_family, PROTO_TYPE_STREAM, 0);
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100931 }
932
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100933 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200934 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100935 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200936
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100937 newpeer->srv = curpeers->peers_fe->srv;
938 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200939 goto out;
940
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100941 /* The lines above are reserved to "peer" lines. */
942 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200943 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200944
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100945 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW));
William Lallemand1d932172022-07-06 14:30:23 +0200946 if (!bind_conf) {
947 ha_alert("parsing [%s:%d] : '%s %s' : Cannot allocate memory.\n", file, linenum, args[0], args[1]);
948 err_code |= ERR_FATAL;
949 goto out;
950 }
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100951
Willy Tarreau882f2482023-01-12 18:52:23 +0100952 bind_conf->maxaccept = 1;
Willy Tarreau30836152023-01-12 19:10:17 +0100953 bind_conf->accept = session_accept_fd;
Willy Tarreau17146802023-01-12 19:58:42 +0100954 bind_conf->options |= BC_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau882f2482023-01-12 18:52:23 +0100955
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200956 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
957 ha_alert("parsing [%s:%d] : One listener per \"peers\" section is authorized but another is already configured at [%s:%d].\n", file, linenum, bind_conf->file, bind_conf->line);
958 err_code |= ERR_FATAL;
959 }
960
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100961 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
962 if (errmsg && *errmsg) {
963 indent_msg(&errmsg, 2);
964 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 +0100965 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100966 else
967 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
968 file, linenum, args[0], args[1], args[2]);
969 err_code |= ERR_FATAL;
970 goto out;
971 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100972
Willy Tarreau18215cb2019-02-27 16:25:28 +0100973 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100974 }
Frédéric Lécaille36d15652022-10-17 14:58:19 +0200975 else if (strcmp(args[0], "shards") == 0) {
976 char *endptr;
977
978 if (!*args[1]) {
979 ha_alert("parsing [%s:%d] : '%s' : missing value\n", file, linenum, args[0]);
980 err_code |= ERR_FATAL;
981 goto out;
982 }
983
984 curpeers->nb_shards = strtol(args[1], &endptr, 10);
985 if (*endptr != '\0') {
986 ha_alert("parsing [%s:%d] : '%s' : expects an integer argument, found '%s'\n",
987 file, linenum, args[0], args[1]);
988 err_code |= ERR_FATAL;
989 goto out;
990 }
991
992 if (!curpeers->nb_shards) {
993 ha_alert("parsing [%s:%d] : '%s' : expects a strictly positive integer argument\n",
994 file, linenum, args[0]);
995 err_code |= ERR_FATAL;
996 goto out;
997 }
998
999 nb_shards = curpeers->nb_shards;
1000 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001001 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001002 struct stktable *t, *other;
1003 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001004 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001005
1006 /* Line number and peer ID are updated only if this peer is the local one. */
Christopher Faulet244331f2022-07-25 15:10:44 +02001007 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001008 err_code |= ERR_ALERT | ERR_ABORT;
1009 goto out;
1010 }
1011
1012 other = stktable_find_by_name(args[1]);
1013 if (other) {
1014 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
1015 file, linenum, args[1],
1016 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
1017 other->proxy ? other->id : other->peers.p->id,
1018 other->conf.file, other->conf.line);
1019 err_code |= ERR_ALERT | ERR_FATAL;
1020 goto out;
1021 }
1022
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001023 /* Build the stick-table name, concatenating the "peers" section name
1024 * followed by a '/' character and the table name argument.
1025 */
1026 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001027 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001028 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
1029 file, linenum, args[0], args[1]);
1030 err_code |= ERR_ALERT | ERR_FATAL;
1031 goto out;
1032 }
1033
1034 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001035 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001036 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
1037 file, linenum, args[0], args[1]);
1038 err_code |= ERR_ALERT | ERR_FATAL;
1039 goto out;
1040 }
1041
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001042 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001043 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001044 if (!t || !id) {
1045 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
1046 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +02001047 free(t);
1048 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001049 err_code |= ERR_ALERT | ERR_FATAL;
1050 goto out;
1051 }
1052
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001053 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +02001054 if (err_code & ERR_FATAL) {
1055 free(t);
1056 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001057 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +02001058 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001059
1060 stktable_store_name(t);
1061 t->next = stktables_list;
1062 stktables_list = t;
1063 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001064 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001065 curpeers->disabled |= PR_FL_DISABLED;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001066 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001067 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02001068 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001069 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001070 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001071 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +02001072 err_code |= ERR_ALERT | ERR_FATAL;
1073 goto out;
1074 }
1075
1076out:
Willy Tarreau902636f2013-03-10 19:44:48 +01001077 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +02001078 return err_code;
1079}
1080
Baptiste Assmann325137d2015-04-13 23:40:55 +02001081/*
William Lallemand51097192015-04-14 16:35:22 +02001082 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001083 * Returns the error code, 0 if OK, or any combination of :
1084 * - ERR_ABORT: must abort ASAP
1085 * - ERR_FATAL: we can continue parsing but not start the service
1086 * - ERR_WARN: a warning has been emitted
1087 * - ERR_ALERT: an alert has been emitted
1088 * Only the two first ones can stop processing, the two others are just
1089 * indicators.
1090 */
1091int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1092{
1093 static struct mailers *curmailers = NULL;
1094 struct mailer *newmailer = NULL;
1095 const char *err;
1096 int err_code = 0;
1097 char *errmsg = NULL;
1098
1099 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1100 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001101 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001102 err_code |= ERR_ALERT | ERR_ABORT;
1103 goto out;
1104 }
1105
1106 err = invalid_char(args[1]);
1107 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001108 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1109 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001110 err_code |= ERR_ALERT | ERR_ABORT;
1111 goto out;
1112 }
1113
1114 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1115 /*
1116 * If there are two proxies with the same name only following
1117 * combinations are allowed:
1118 */
1119 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001120 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1121 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001122 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001123 }
1124 }
1125
Vincent Bernat02779b62016-04-03 13:48:43 +02001126 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001127 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001128 err_code |= ERR_ALERT | ERR_ABORT;
1129 goto out;
1130 }
1131
1132 curmailers->next = mailers;
1133 mailers = curmailers;
1134 curmailers->conf.file = strdup(file);
1135 curmailers->conf.line = linenum;
1136 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001137 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1138 * But need enough time so that timeouts don't occur
1139 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001140 }
1141 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1142 struct sockaddr_storage *sk;
1143 int port1, port2;
1144 struct protocol *proto;
1145
1146 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001147 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1148 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001149 err_code |= ERR_ALERT | ERR_FATAL;
1150 goto out;
1151 }
1152
1153 err = invalid_char(args[1]);
1154 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001155 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1156 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001157 err_code |= ERR_ALERT | ERR_FATAL;
1158 goto out;
1159 }
1160
Vincent Bernat02779b62016-04-03 13:48:43 +02001161 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001162 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001163 err_code |= ERR_ALERT | ERR_ABORT;
1164 goto out;
1165 }
1166
1167 /* the mailers are linked backwards first */
1168 curmailers->count++;
1169 newmailer->next = curmailers->mailer_list;
1170 curmailers->mailer_list = newmailer;
1171 newmailer->mailers = curmailers;
1172 newmailer->conf.file = strdup(file);
1173 newmailer->conf.line = linenum;
1174
1175 newmailer->id = strdup(args[1]);
1176
Willy Tarreau5fc93282020-09-16 18:25:03 +02001177 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001178 &errmsg, NULL, NULL,
1179 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 +09001180 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001181 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001182 err_code |= ERR_ALERT | ERR_FATAL;
1183 goto out;
1184 }
1185
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001186 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001187 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1188 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001189 err_code |= ERR_ALERT | ERR_FATAL;
1190 goto out;
1191 }
1192
Simon Horman0d16a402015-01-30 11:22:58 +09001193 newmailer->addr = *sk;
1194 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001195 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001196 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001197 }
1198 else if (strcmp(args[0], "timeout") == 0) {
1199 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001200 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1201 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001202 err_code |= ERR_ALERT | ERR_FATAL;
1203 goto out;
1204 }
1205 else if (strcmp(args[1], "mail") == 0) {
1206 const char *res;
1207 unsigned int timeout_mail;
1208 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001209 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1210 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001211 err_code |= ERR_ALERT | ERR_FATAL;
1212 goto out;
1213 }
1214 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001215 if (res == PARSE_TIME_OVER) {
1216 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1217 file, linenum, args[2], args[0], args[1]);
1218 err_code |= ERR_ALERT | ERR_FATAL;
1219 goto out;
1220 }
1221 else if (res == PARSE_TIME_UNDER) {
1222 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1223 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001224 err_code |= ERR_ALERT | ERR_FATAL;
1225 goto out;
1226 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001227 else if (res) {
1228 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1229 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001230 err_code |= ERR_ALERT | ERR_FATAL;
1231 goto out;
1232 }
1233 curmailers->timeout.mail = timeout_mail;
1234 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001235 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001236 file, linenum, args[0], args[1]);
1237 err_code |= ERR_ALERT | ERR_FATAL;
1238 goto out;
1239 }
1240 }
Simon Horman0d16a402015-01-30 11:22:58 +09001241 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001242 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001243 err_code |= ERR_ALERT | ERR_FATAL;
1244 goto out;
1245 }
1246
1247out:
1248 free(errmsg);
1249 return err_code;
1250}
1251
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001252void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001253{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001254 ha_free(&p->email_alert.mailers.name);
1255 ha_free(&p->email_alert.from);
1256 ha_free(&p->email_alert.to);
1257 ha_free(&p->email_alert.myhostname);
Simon Horman9dc49962015-01-30 11:22:59 +09001258}
1259
Willy Tarreaubaaee002006-06-26 02:48:02 +02001260
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001261int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001262cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1263{
Willy Tarreaue5733232019-05-22 19:24:06 +02001264#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001265 const char *err;
1266 const char *item = args[0];
1267
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001268 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001269 return 0;
1270 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001271 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001272 size_t idx = 1;
1273 const char *current;
1274 while (*(current = args[idx++])) {
1275 err = invalid_char(current);
1276 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001277 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1278 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001279 return ERR_ALERT | ERR_FATAL;
1280 }
1281
1282 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001283 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1284 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001285 return ERR_ALERT | ERR_FATAL;
1286 }
1287 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001288 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1289 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001290 return ERR_ALERT | ERR_FATAL;
1291 }
1292 }
1293 }
1294
1295 return 0;
1296#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001297 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1298 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001299 return ERR_ALERT | ERR_FATAL;
1300#endif
1301}
1302
1303int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001304cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1305{
1306
1307 int err_code = 0;
1308 const char *err;
1309
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001310 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001311 struct userlist *newul;
1312
1313 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001314 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1315 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001316 err_code |= ERR_ALERT | ERR_FATAL;
1317 goto out;
1318 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001319 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1320 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001321
1322 err = invalid_char(args[1]);
1323 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001324 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1325 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001326 err_code |= ERR_ALERT | ERR_FATAL;
1327 goto out;
1328 }
1329
1330 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001331 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001332 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1333 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001334 err_code |= ERR_WARN;
1335 goto out;
1336 }
1337
Vincent Bernat02779b62016-04-03 13:48:43 +02001338 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001339 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001340 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001341 err_code |= ERR_ALERT | ERR_ABORT;
1342 goto out;
1343 }
1344
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001345 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001346 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001347 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001348 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001349 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001350 goto out;
1351 }
1352
1353 newul->next = userlist;
1354 userlist = newul;
1355
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001356 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001357 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001358 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001359 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001360
1361 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001362 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1363 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001364 err_code |= ERR_ALERT | ERR_FATAL;
1365 goto out;
1366 }
1367
1368 err = invalid_char(args[1]);
1369 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001370 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1371 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001372 err_code |= ERR_ALERT | ERR_FATAL;
1373 goto out;
1374 }
1375
William Lallemand4ac9f542015-05-28 18:03:51 +02001376 if (!userlist)
1377 goto out;
1378
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001379 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001380 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001381 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1382 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001383 err_code |= ERR_ALERT;
1384 goto out;
1385 }
1386
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001387 ag = calloc(1, sizeof(*ag));
1388 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001389 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001390 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001391 goto out;
1392 }
1393
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001394 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001395 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001396 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001397 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001398 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001399 goto out;
1400 }
1401
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001402 cur_arg = 2;
1403
1404 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001405 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001406 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001407 cur_arg += 2;
1408 continue;
1409 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001410 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1411 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001412 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001413 free(ag->groupusers);
1414 free(ag->name);
1415 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001416 goto out;
1417 }
1418 }
1419
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001420 ag->next = userlist->groups;
1421 userlist->groups = ag;
1422
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001423 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001424 struct auth_users *newuser;
1425 int cur_arg;
1426
1427 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001428 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1429 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001430 err_code |= ERR_ALERT | ERR_FATAL;
1431 goto out;
1432 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001433 if (!userlist)
1434 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001435
1436 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001437 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001438 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1439 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001440 err_code |= ERR_ALERT;
1441 goto out;
1442 }
1443
Vincent Bernat02779b62016-04-03 13:48:43 +02001444 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001445 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001446 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001447 err_code |= ERR_ALERT | ERR_ABORT;
1448 goto out;
1449 }
1450
1451 newuser->user = strdup(args[1]);
1452
1453 newuser->next = userlist->users;
1454 userlist->users = newuser;
1455
1456 cur_arg = 2;
1457
1458 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001459 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001460#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001461 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001462 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1463 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001464 err_code |= ERR_ALERT | ERR_FATAL;
1465 goto out;
1466 }
1467#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001468 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1469 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001470 err_code |= ERR_ALERT;
1471#endif
1472 newuser->pass = strdup(args[cur_arg + 1]);
1473 cur_arg += 2;
1474 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001475 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001476 newuser->pass = strdup(args[cur_arg + 1]);
1477 newuser->flags |= AU_O_INSECURE;
1478 cur_arg += 2;
1479 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001480 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001481 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001482 cur_arg += 2;
1483 continue;
1484 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001485 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1486 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001487 err_code |= ERR_ALERT | ERR_FATAL;
1488 goto out;
1489 }
1490 }
1491 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001492 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 +01001493 err_code |= ERR_ALERT | ERR_FATAL;
1494 }
1495
1496out:
1497 return err_code;
1498}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001499
Christopher Faulet79bdef32016-11-04 22:36:15 +01001500int
1501cfg_parse_scope(const char *file, int linenum, char *line)
1502{
1503 char *beg, *end, *scope = NULL;
1504 int err_code = 0;
1505 const char *err;
1506
1507 beg = line + 1;
1508 end = strchr(beg, ']');
1509
1510 /* Detect end of scope declaration */
1511 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001512 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1513 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001514 err_code |= ERR_ALERT | ERR_FATAL;
1515 goto out;
1516 }
1517
1518 /* Get scope name and check its validity */
1519 scope = my_strndup(beg, end-beg);
1520 err = invalid_char(scope);
1521 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001522 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1523 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001524 err_code |= ERR_ALERT | ERR_ABORT;
1525 goto out;
1526 }
1527
1528 /* Be sure to have a scope declaration alone on its line */
1529 line = end+1;
1530 while (isspace((unsigned char)*line))
1531 line++;
1532 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001533 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1534 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001535 err_code |= ERR_ALERT | ERR_ABORT;
1536 goto out;
1537 }
1538
1539 /* We have a valid scope declaration, save it */
1540 free(cfg_scope);
1541 cfg_scope = scope;
1542 scope = NULL;
1543
1544 out:
1545 free(scope);
1546 return err_code;
1547}
1548
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001549int
1550cfg_parse_track_sc_num(unsigned int *track_sc_num,
1551 const char *arg, const char *end, char **errmsg)
1552{
1553 const char *p;
1554 unsigned int num;
1555
1556 p = arg;
1557 num = read_uint64(&arg, end);
1558
1559 if (arg != end) {
1560 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1561 return -1;
1562 }
1563
Willy Tarreau6c011712023-01-06 16:09:58 +01001564 if (num >= global.tune.nb_stk_ctr) {
1565 if (!global.tune.nb_stk_ctr)
1566 memprintf(errmsg, "%u track-sc number not usable, stick-counters "
1567 "are disabled by tune.stick-counters", num);
1568 else
1569 memprintf(errmsg, "%u track-sc number exceeding "
1570 "%d (tune.stick-counters-1) value", num, global.tune.nb_stk_ctr - 1);
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001571 return -1;
1572 }
1573
1574 *track_sc_num = num;
1575 return 0;
1576}
1577
Willy Tarreaubaaee002006-06-26 02:48:02 +02001578/*
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001579 * Detect a global section after a non-global one and output a diagnostic
1580 * warning.
1581 */
Christopher Faulet037e3f82022-11-18 15:46:06 +01001582static void check_section_position(char *section_name, const char *file, int linenum)
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001583{
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02001584 if (strcmp(section_name, "global") == 0) {
Christopher Faulet037e3f82022-11-18 15:46:06 +01001585 if ((global.mode & MODE_DIAG) && non_global_section_parsed == 1)
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001586 _ha_diag_warning("parsing [%s:%d] : global section detected after a non-global one, the prevalence of their statements is unspecified\n", file, linenum);
1587 }
Christopher Faulet037e3f82022-11-18 15:46:06 +01001588 else if (non_global_section_parsed == 0) {
1589 non_global_section_parsed = 1;
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001590 }
1591}
1592
Willy Tarreau8a022d52021-04-27 20:29:11 +02001593/* apply the current default_path setting for config file <file>, and
1594 * optionally replace the current path to <origin> if not NULL while the
1595 * default-path mode is set to "origin". Errors are returned into an
1596 * allocated string passed to <err> if it's not NULL. Returns 0 on failure
1597 * or non-zero on success.
1598 */
1599static int cfg_apply_default_path(const char *file, const char *origin, char **err)
1600{
1601 const char *beg, *end;
1602
1603 /* make path start at <beg> and end before <end>, and switch it to ""
1604 * if no slash was passed.
1605 */
1606 beg = file;
1607 end = strrchr(beg, '/');
1608 if (!end)
1609 end = beg;
1610
1611 if (!*initial_cwd) {
1612 if (getcwd(initial_cwd, sizeof(initial_cwd)) == NULL) {
1613 if (err)
1614 memprintf(err, "Impossible to retrieve startup directory name: %s", strerror(errno));
1615 return 0;
1616 }
1617 }
1618 else if (chdir(initial_cwd) == -1) {
1619 if (err)
1620 memprintf(err, "Impossible to get back to initial directory '%s': %s", initial_cwd, strerror(errno));
1621 return 0;
1622 }
1623
1624 /* OK now we're (back) to initial_cwd */
1625
1626 switch (default_path_mode) {
1627 case DEFAULT_PATH_CURRENT:
1628 /* current_cwd never set, nothing to do */
1629 return 1;
1630
1631 case DEFAULT_PATH_ORIGIN:
1632 /* current_cwd set in the config */
1633 if (origin &&
1634 snprintf(current_cwd, sizeof(current_cwd), "%s", origin) > sizeof(current_cwd)) {
1635 if (err)
1636 memprintf(err, "Absolute path too long: '%s'", origin);
1637 return 0;
1638 }
1639 break;
1640
1641 case DEFAULT_PATH_CONFIG:
1642 if (end - beg >= sizeof(current_cwd)) {
1643 if (err)
1644 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1645 return 0;
1646 }
1647 memcpy(current_cwd, beg, end - beg);
1648 current_cwd[end - beg] = 0;
1649 break;
1650
1651 case DEFAULT_PATH_PARENT:
1652 if (end - beg + 3 >= sizeof(current_cwd)) {
1653 if (err)
1654 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1655 return 0;
1656 }
1657 memcpy(current_cwd, beg, end - beg);
1658 if (end > beg)
1659 memcpy(current_cwd + (end - beg), "/..\0", 4);
1660 else
1661 memcpy(current_cwd + (end - beg), "..\0", 3);
1662 break;
1663 }
1664
1665 if (*current_cwd && chdir(current_cwd) == -1) {
1666 if (err)
1667 memprintf(err, "Impossible to get back to directory '%s': %s", initial_cwd, strerror(errno));
1668 return 0;
1669 }
1670
1671 return 1;
1672}
1673
1674/* parses a global "default-path" directive. */
1675static int cfg_parse_global_def_path(char **args, int section_type, struct proxy *curpx,
1676 const struct proxy *defpx, const char *file, int line,
1677 char **err)
1678{
1679 int ret = -1;
1680
1681 /* "current", "config", "parent", "origin <path>" */
1682
1683 if (strcmp(args[1], "current") == 0)
1684 default_path_mode = DEFAULT_PATH_CURRENT;
1685 else if (strcmp(args[1], "config") == 0)
1686 default_path_mode = DEFAULT_PATH_CONFIG;
1687 else if (strcmp(args[1], "parent") == 0)
1688 default_path_mode = DEFAULT_PATH_PARENT;
1689 else if (strcmp(args[1], "origin") == 0)
1690 default_path_mode = DEFAULT_PATH_ORIGIN;
1691 else {
1692 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]);
1693 goto end;
1694 }
1695
1696 if (default_path_mode == DEFAULT_PATH_ORIGIN) {
1697 if (!*args[2]) {
1698 memprintf(err, "'%s %s' expects a directory as an argument.", args[0], args[1]);
1699 goto end;
1700 }
1701 if (!cfg_apply_default_path(file, args[2], err)) {
1702 memprintf(err, "couldn't set '%s' to origin '%s': %s.", args[0], args[2], *err);
1703 goto end;
1704 }
1705 }
1706 else if (!cfg_apply_default_path(file, NULL, err)) {
1707 memprintf(err, "couldn't set '%s' to '%s': %s.", args[0], args[1], *err);
1708 goto end;
1709 }
1710
1711 /* note that once applied, the path is immediately updated */
1712
1713 ret = 0;
1714 end:
1715 return ret;
1716}
1717
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001718/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001719 * This function reads and parses the configuration file given in the argument.
Willy Tarreauda543e12021-04-27 18:30:28 +02001720 * Returns the error code, 0 if OK, -1 if the config file couldn't be opened,
1721 * or any combination of :
Willy Tarreau058e9072009-07-20 09:30:05 +02001722 * - ERR_ABORT: must abort ASAP
1723 * - ERR_FATAL: we can continue parsing but not start the service
1724 * - ERR_WARN: a warning has been emitted
1725 * - ERR_ALERT: an alert has been emitted
1726 * Only the two first ones can stop processing, the two others are just
1727 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001728 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001729int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001730{
Willy Tarreauda543e12021-04-27 18:30:28 +02001731 char *thisline = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001732 int linesize = LINESIZE;
Willy Tarreauda543e12021-04-27 18:30:28 +02001733 FILE *f = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001734 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001735 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001736 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001737 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001738 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001739 char *outline = NULL;
1740 size_t outlen = 0;
1741 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001742 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001743 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001744 int nested_cond_lvl = 0;
1745 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
Willy Tarreau8a022d52021-04-27 20:29:11 +02001746 char *errmsg = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001747
Willy Tarreau51508052021-05-06 10:04:45 +02001748 global.cfg_curr_line = 0;
1749 global.cfg_curr_file = file;
1750
William Lallemand64e84512015-05-12 14:25:37 +02001751 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Willy Tarreauda543e12021-04-27 18:30:28 +02001752 ha_alert("Out of memory trying to allocate a buffer for a configuration line.\n");
1753 err_code = -1;
1754 goto err;
William Lallemand64e84512015-05-12 14:25:37 +02001755 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001756
Willy Tarreauda543e12021-04-27 18:30:28 +02001757 if ((f = fopen(file,"r")) == NULL) {
1758 err_code = -1;
1759 goto err;
David Carlier97880bb2016-04-08 10:35:26 +01001760 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001761
Willy Tarreau8a022d52021-04-27 20:29:11 +02001762 /* change to the new dir if required */
1763 if (!cfg_apply_default_path(file, NULL, &errmsg)) {
1764 ha_alert("parsing [%s:%d]: failed to apply default-path: %s.\n", file, linenum, errmsg);
1765 free(errmsg);
1766 err_code = -1;
1767 goto err;
1768 }
1769
William Lallemandb2f07452015-05-12 14:27:13 +02001770next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001771 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001772 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001773 char *end;
1774 char *args[MAX_LINE_ARGS + 1];
1775 char *line = thisline;
1776
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001777 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001778 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1779 file, linenum, (missing_lf + 1));
1780 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001781 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001782 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001783 }
1784
Willy Tarreaubaaee002006-06-26 02:48:02 +02001785 linenum++;
Willy Tarreau51508052021-05-06 10:04:45 +02001786 global.cfg_curr_line = linenum;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001787
Willy Tarreau32234e72020-06-16 17:14:33 +02001788 if (fatal >= 50) {
1789 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1790 break;
1791 }
1792
Willy Tarreaubaaee002006-06-26 02:48:02 +02001793 end = line + strlen(line);
1794
William Lallemand64e84512015-05-12 14:25:37 +02001795 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001796 /* Check if we reached the limit and the last char is not \n.
1797 * Watch out for the last line without the terminating '\n'!
1798 */
William Lallemand64e84512015-05-12 14:25:37 +02001799 char *newline;
1800 int newlinesize = linesize * 2;
1801
1802 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1803 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001804 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1805 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001806 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001807 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001808 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001809 continue;
1810 }
1811
1812 readbytes = linesize - 1;
1813 linesize = newlinesize;
1814 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001815 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001816 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001817 }
1818
William Lallemand64e84512015-05-12 14:25:37 +02001819 readbytes = 0;
1820
Willy Tarreau08488f62020-06-26 17:24:54 +02001821 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001822 /* kill trailing LF */
1823 *(end - 1) = 0;
1824 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001825 else {
1826 /* mark this line as truncated */
1827 missing_lf = end - line;
1828 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001829
Willy Tarreaubaaee002006-06-26 02:48:02 +02001830 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001831 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001832 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001833
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001834 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001835 err_code |= cfg_parse_scope(file, linenum, line);
1836 goto next_line;
1837 }
1838
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001839 while (1) {
1840 uint32_t err;
Maximilian Mader29c6cd72021-06-06 00:50:21 +02001841 const char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001842
Tim Duesterhusb3168b32021-06-06 00:50:20 +02001843 arg = sizeof(args) / sizeof(*args);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001844 outlen = outlinesize;
1845 err = parse_line(line, outline, &outlen, args, &arg,
1846 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001847 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1848 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001849
1850 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001851 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1852
1853 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1854 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001855 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001856 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001857 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001858 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001859
1860 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001861 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1862
1863 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1864 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001865 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001866 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001867 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001868 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001869
1870 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001871 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1872
1873 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1874 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001875 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001876 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001877 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001878 }
William Lallemandb2f07452015-05-12 14:27:13 +02001879
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001880 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001881 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1882
1883 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1884 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001885 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001886 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001887 goto next_line;
1888 }
William Lallemandb2f07452015-05-12 14:27:13 +02001889
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001890 if (err & PARSE_ERR_WRONG_EXPAND) {
1891 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1892
1893 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1894 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1895 err_code |= ERR_ALERT | ERR_FATAL;
1896 fatal++;
1897 goto next_line;
1898 }
1899
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001900 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1901 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001902 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001903 if (outline == NULL) {
1904 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1905 file, linenum);
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001906 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau32234e72020-06-16 17:14:33 +02001907 fatal++;
Christopher Fauletdfe32c72022-05-18 16:22:43 +02001908 outlinesize = 0;
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001909 goto err;
William Lallemandb2f07452015-05-12 14:27:13 +02001910 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001911 /* try again */
1912 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001913 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001914
1915 if (err & PARSE_ERR_TOOMANY) {
1916 /* only check this *after* being sure the output is allocated */
1917 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1918 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1919 err_code |= ERR_ALERT | ERR_FATAL;
1920 fatal++;
1921 goto next_line;
1922 }
1923
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001924 /* everything's OK */
1925 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001926 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001927
Erwan Le Goasb0c05012022-09-14 17:51:55 +02001928 /* dump cfg */
1929 if (global.mode & MODE_DUMP_CFG) {
1930 if (args[0] != NULL) {
1931 struct cfg_section *sect;
1932 int is_sect = 0;
1933 int i = 0;
1934 uint32_t g_key = HA_ATOMIC_LOAD(&global.anon_key);
1935
Erwan Le Goasf30c5d72022-09-29 10:34:04 +02001936 if (global.mode & MODE_DUMP_NB_L)
1937 qfprintf(stdout, "%d\t", linenum);
Erwan Le Goasb0c05012022-09-14 17:51:55 +02001938
1939 /* if a word is in sections list, is_sect = 1 */
1940 list_for_each_entry(sect, &sections, list) {
1941 if (strcmp(args[0], sect->section_name) == 0) {
1942 is_sect = 1;
1943 break;
1944 }
1945 }
1946
1947 if (g_key == 0) {
1948 /* no anonymizing needed, dump the config as-is (but without comments).
1949 * Note: tabs were lost during tokenizing, so we reinsert for non-section
1950 * keywords.
1951 */
1952 if (!is_sect)
1953 qfprintf(stdout, "\t");
1954
1955 for (i = 0; i < arg; i++) {
1956 qfprintf(stdout, "%s ", args[i]);
1957 }
1958 qfprintf(stdout, "\n");
1959 continue;
1960 }
1961
1962 /* We're anonymizing */
1963
1964 if (is_sect) {
1965 /* new sections are optionally followed by an identifier */
1966 if (arg >= 2) {
1967 qfprintf(stdout, "%s %s\n", args[0], HA_ANON_ID(g_key, args[1]));
1968 }
1969 else {
1970 qfprintf(stdout, "%s\n", args[0]);
1971 }
1972 continue;
1973 }
1974
1975 /* non-section keywords start indented */
1976 qfprintf(stdout, "\t");
1977
1978 /* some keywords deserve special treatment */
1979 if (!*args[0]) {
1980 qfprintf(stdout, "\n");
1981 }
1982
1983 else if (strcmp(args[0], "anonkey") == 0) {
1984 qfprintf(stdout, "%s [...]\n", args[0]);
1985 }
1986
1987 else if (strcmp(args[0], "maxconn") == 0) {
1988 qfprintf(stdout, "%s %s\n", args[0], args[1]);
1989 }
1990
1991 else if (strcmp(args[0], "stats") == 0 &&
1992 (strcmp(args[1], "timeout") == 0 || strcmp(args[1], "maxconn") == 0)) {
1993 qfprintf(stdout, "%s %s %s\n", args[0], args[1], args[2]);
1994 }
1995
1996 else if (strcmp(args[0], "stats") == 0 && strcmp(args[1], "socket") == 0) {
1997 qfprintf(stdout, "%s %s ", args[0], args[1]);
1998
Erwan Le Goasbe5ed922022-09-29 10:30:00 +02001999 if (arg > 2) {
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002000 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[2], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002001
Erwan Le Goasbe5ed922022-09-29 10:30:00 +02002002 if (arg > 3) {
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002003 qfprintf(stdout, "[...]\n");
2004 }
2005 else {
2006 qfprintf(stdout, "\n");
2007 }
2008 }
2009 else {
2010 qfprintf(stdout, "\n");
2011 }
2012 }
2013
2014 else if (strcmp(args[0], "timeout") == 0) {
2015 qfprintf(stdout, "%s %s %s\n", args[0], args[1], args[2]);
2016 }
2017
2018 else if (strcmp(args[0], "mode") == 0) {
2019 qfprintf(stdout, "%s %s\n", args[0], args[1]);
2020 }
2021
Ilya Shipitsin4a689da2022-10-29 09:34:32 +05002022 /* It concerns user in global section and in userlist */
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002023 else if (strcmp(args[0], "user") == 0) {
2024 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
2025
2026 if (arg > 2) {
2027 qfprintf(stdout, "[...]\n");
2028 }
2029 else {
2030 qfprintf(stdout, "\n");
2031 }
2032 }
2033
2034 else if (strcmp(args[0], "bind") == 0) {
2035 qfprintf(stdout, "%s ", args[0]);
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002036 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[1], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002037 if (arg > 2) {
2038 qfprintf(stdout, "[...]\n");
2039 }
2040 else {
2041 qfprintf(stdout, "\n");
2042 }
2043 }
2044
2045 else if (strcmp(args[0], "server") == 0) {
Erwan Le Goas059d05f2022-09-29 10:31:18 +02002046 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002047
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002048 if (arg > 2) {
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002049 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[2], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002050 }
2051 if (arg > 3) {
2052 qfprintf(stdout, "[...]\n");
2053 }
2054 else {
2055 qfprintf(stdout, "\n");
2056 }
2057 }
2058
2059 else if (strcmp(args[0], "redirect") == 0) {
2060 qfprintf(stdout, "%s %s ", args[0], args[1]);
2061
2062 if (strcmp(args[1], "prefix") == 0 || strcmp(args[1], "location") == 0) {
2063 qfprintf(stdout, "%s ", HA_ANON_PATH(g_key, args[2]));
2064 }
2065 else {
2066 qfprintf(stdout, "%s ", args[2]);
2067 }
2068 if (arg > 3) {
2069 qfprintf(stdout, "[...]");
2070 }
2071 qfprintf(stdout, "\n");
2072 }
2073
2074 else if (strcmp(args[0], "acl") == 0) {
2075 qfprintf(stdout, "%s %s %s ", args[0], HA_ANON_ID(g_key, args[1]), args[2]);
2076
2077 if (arg > 3) {
2078 qfprintf(stdout, "[...]");
2079 }
2080 qfprintf(stdout, "\n");
2081 }
2082
2083 else if (strcmp(args[0], "log") == 0) {
2084 qfprintf(stdout, "log ");
2085
2086 if (strcmp(args[1], "global") == 0) {
2087 qfprintf(stdout, "%s ", args[1]);
2088 }
2089 else {
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002090 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[1], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002091 }
2092 if (arg > 2) {
2093 qfprintf(stdout, "[...]");
2094 }
2095 qfprintf(stdout, "\n");
2096 }
2097
2098 else if (strcmp(args[0], "peer") == 0) {
2099 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002100 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[2], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002101
2102 if (arg > 3) {
2103 qfprintf(stdout, "[...]");
2104 }
2105 qfprintf(stdout, "\n");
2106 }
2107
2108 else if (strcmp(args[0], "use_backend") == 0) {
2109 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
2110
2111 if (arg > 2) {
2112 qfprintf(stdout, "[...]");
2113 }
2114 qfprintf(stdout, "\n");
2115 }
2116
2117 else if (strcmp(args[0], "default_backend") == 0) {
2118 qfprintf(stdout, "%s %s\n", args[0], HA_ANON_ID(g_key, args[1]));
2119 }
2120
Erwan Le Goas059d05f2022-09-29 10:31:18 +02002121 else if (strcmp(args[0], "source") == 0) {
2122 qfprintf(stdout, "%s %s ", args[0], hash_ipanon(g_key, args[1], 1));
2123
2124 if (arg > 2) {
2125 qfprintf(stdout, "[...]");
2126 }
2127 qfprintf(stdout, "\n");
2128 }
2129
2130 else if (strcmp(args[0], "nameserver") == 0) {
2131 qfprintf(stdout, "%s %s %s ", args[0],
2132 HA_ANON_ID(g_key, args[1]), hash_ipanon(g_key, args[2], 1));
2133 if (arg > 3) {
2134 qfprintf(stdout, "[...]");
2135 }
2136 qfprintf(stdout, "\n");
2137 }
2138
2139 else if (strcmp(args[0], "http-request") == 0) {
2140 qfprintf(stdout, "%s %s ", args[0], args[1]);
2141 if (arg > 2)
2142 qfprintf(stdout, "[...]");
2143 qfprintf(stdout, "\n");
2144 }
2145
2146 else if (strcmp(args[0], "http-response") == 0) {
2147 qfprintf(stdout, "%s %s ", args[0], args[1]);
2148 if (arg > 2)
2149 qfprintf(stdout, "[...]");
2150 qfprintf(stdout, "\n");
2151 }
2152
2153 else if (strcmp(args[0], "http-after-response") == 0) {
2154 qfprintf(stdout, "%s %s ", args[0], args[1]);
2155 if (arg > 2)
2156 qfprintf(stdout, "[...]");
2157 qfprintf(stdout, "\n");
2158 }
2159
2160 else if (strcmp(args[0], "filter") == 0) {
2161 qfprintf(stdout, "%s %s ", args[0], args[1]);
2162 if (arg > 2)
2163 qfprintf(stdout, "[...]");
2164 qfprintf(stdout, "\n");
2165 }
2166
2167 else if (strcmp(args[0], "errorfile") == 0) {
2168 qfprintf(stdout, "%s %s %s\n", args[0], args[1], HA_ANON_PATH(g_key, args[2]));
2169 }
2170
2171 else if (strcmp(args[0], "cookie") == 0) {
2172 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
2173 if (arg > 2)
2174 qfprintf(stdout, "%s ", args[2]);
2175 if (arg > 3)
2176 qfprintf(stdout, "[...]");
2177 qfprintf(stdout, "\n");
2178 }
2179
2180 else if (strcmp(args[0], "stats") == 0 && strcmp(args[1], "auth") == 0) {
2181 qfprintf(stdout, "%s %s %s\n", args[0], args[1], HA_ANON_STR(g_key, args[2]));
2182 }
2183
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002184 else {
2185 /* display up to 3 words and mask the rest which might be confidential */
2186 for (i = 0; i < MIN(arg, 3); i++) {
2187 qfprintf(stdout, "%s ", args[i]);
2188 }
2189 if (arg > 3) {
2190 qfprintf(stdout, "[...]");
2191 }
2192 qfprintf(stdout, "\n");
2193 }
2194 }
2195 continue;
2196 }
2197 /* end of config dump */
2198
Willy Tarreaubaaee002006-06-26 02:48:02 +02002199 /* empty line */
2200 if (!**args)
2201 continue;
2202
Willy Tarreau4b103022021-02-12 17:59:10 +01002203 /* check for config macros */
2204 if (*args[0] == '.') {
2205 if (strcmp(args[0], ".if") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002206 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002207 char *errmsg = NULL;
2208 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02002209 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002210
Willy Tarreauc8194c32021-07-16 16:38:58 +02002211 /* remerge all words into a single expression */
2212 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
2213 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002214
Willy Tarreau4b103022021-02-12 17:59:10 +01002215 nested_cond_lvl++;
2216 if (nested_cond_lvl >= MAXNESTEDCONDS) {
2217 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
2218 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2219 goto err;
2220 }
2221
Willy Tarreau6e647c92021-05-06 08:46:11 +02002222 if (nested_cond_lvl > 1 &&
2223 (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
2224 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
2225 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
2226 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
2227 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP)) {
Willy Tarreau4b103022021-02-12 17:59:10 +01002228 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002229 goto next_line;
2230 }
2231
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002232 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002233 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002234 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 76);
2235
2236 ha_alert("parsing [%s:%d]: %s in '.if' at position %d:\n .if %s\n %*s\n",
2237 file, linenum, errmsg,
2238 (int)(errptr-args[1]+1), args[1], (int)(newpos+5), "^");
2239
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002240 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01002241 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2242 goto err;
2243 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002244
2245 if (cond)
2246 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
2247 else
2248 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
2249
Willy Tarreau4b103022021-02-12 17:59:10 +01002250 goto next_line;
2251 }
2252 else if (strcmp(args[0], ".elif") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002253 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002254 char *errmsg = NULL;
2255 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02002256 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002257
Willy Tarreauc8194c32021-07-16 16:38:58 +02002258 /* remerge all words into a single expression */
2259 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
2260 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002261
Willy Tarreau4b103022021-02-12 17:59:10 +01002262 if (!nested_cond_lvl) {
2263 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
2264 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2265 goto err;
2266 }
2267
2268 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2269 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2270 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
2271 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2272 goto err;
2273 }
2274
2275 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2276 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
Willy Tarreauf67ff022021-05-06 08:48:09 +02002277 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
Willy Tarreau4b103022021-02-12 17:59:10 +01002278 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2279 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002280 goto next_line;
2281 }
2282
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002283 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002284 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002285 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 74);
2286
2287 ha_alert("parsing [%s:%d]: %s in '.elif' at position %d:\n .elif %s\n %*s\n",
2288 file, linenum, errmsg,
2289 (int)(errptr-args[1]+1), args[1], (int)(newpos+7), "^");
2290
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002291 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01002292 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2293 goto err;
2294 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002295
2296 if (cond)
2297 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
2298 else
2299 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
2300
Willy Tarreau4b103022021-02-12 17:59:10 +01002301 goto next_line;
2302 }
2303 else if (strcmp(args[0], ".else") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002304 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002305 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002306 file, linenum, args[1], args[0]);
2307 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2308 break;
2309 }
2310
Willy Tarreau4b103022021-02-12 17:59:10 +01002311 if (!nested_cond_lvl) {
2312 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
2313 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2314 goto err;
2315 }
2316
2317 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2318 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2319 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
2320 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2321 goto err;
2322 }
2323
2324 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2325 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2326 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
2327 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2328 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
2329 } else {
2330 /* otherwise we take the "else" */
2331 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
2332 }
2333 goto next_line;
2334 }
2335 else if (strcmp(args[0], ".endif") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002336 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002337 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002338 file, linenum, args[1], args[0]);
2339 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2340 break;
2341 }
2342
Willy Tarreau4b103022021-02-12 17:59:10 +01002343 if (!nested_cond_lvl) {
2344 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002345 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau4b103022021-02-12 17:59:10 +01002346 break;
2347 }
2348 nested_cond_lvl--;
2349 goto next_line;
2350 }
2351 }
2352
2353 if (nested_cond_lvl &&
2354 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
2355 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2356 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
2357 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
2358 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
2359 /* The current block is masked out by the conditions */
2360 goto next_line;
2361 }
2362
Willy Tarreau7190b982021-05-07 08:59:50 +02002363 /* .warning/.error/.notice/.diag */
Willy Tarreau4b103022021-02-12 17:59:10 +01002364 if (*args[0] == '.') {
2365 if (strcmp(args[0], ".alert") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002366 if (*args[2]) {
2367 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2368 file, linenum, args[2], args[0]);
2369 err_code |= ERR_ALERT | ERR_FATAL;
2370 goto next_line;
2371 }
2372
Willy Tarreau4b103022021-02-12 17:59:10 +01002373 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2374 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2375 goto err;
2376 }
2377 else if (strcmp(args[0], ".warning") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002378 if (*args[2]) {
2379 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2380 file, linenum, args[2], args[0]);
2381 err_code |= ERR_ALERT | ERR_FATAL;
2382 goto next_line;
2383 }
2384
Willy Tarreau4b103022021-02-12 17:59:10 +01002385 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2386 err_code |= ERR_WARN;
2387 goto next_line;
2388 }
2389 else if (strcmp(args[0], ".notice") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002390 if (*args[2]) {
2391 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2392 file, linenum, args[2], args[0]);
2393 err_code |= ERR_ALERT | ERR_FATAL;
2394 goto next_line;
2395 }
2396
Willy Tarreau4b103022021-02-12 17:59:10 +01002397 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2398 goto next_line;
2399 }
Willy Tarreau7190b982021-05-07 08:59:50 +02002400 else if (strcmp(args[0], ".diag") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002401 if (*args[2]) {
2402 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2403 file, linenum, args[2], args[0]);
2404 err_code |= ERR_ALERT | ERR_FATAL;
2405 goto next_line;
2406 }
2407
Willy Tarreau7190b982021-05-07 08:59:50 +02002408 ha_diag_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2409 goto next_line;
2410 }
Willy Tarreau4b103022021-02-12 17:59:10 +01002411 else {
2412 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
2413 err_code |= ERR_ALERT | ERR_FATAL;
2414 fatal++;
2415 break;
2416 }
2417 }
2418
Willy Tarreau3842f002009-06-14 11:39:52 +02002419 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002420 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02002421 char *tmp;
2422
Willy Tarreau3842f002009-06-14 11:39:52 +02002423 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002424 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002425 for (arg=0; *args[arg+1]; arg++)
2426 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002427 *tmp = '\0'; // fix the next arg to \0
2428 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002429 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002430 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02002431 kwm = KWM_DEF;
2432 for (arg=0; *args[arg+1]; arg++)
2433 args[arg] = args[arg+1]; // shift args after inversion
2434 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002435
William Dauchyec730982019-10-27 20:08:10 +01002436 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2437 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002438 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002439 strcmp(args[0], "insecure-fork-wanted") != 0 &&
2440 strcmp(args[0], "numa-cpu-mapping") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002441 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002442 "supported only for options, log, busy-polling, "
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002443 "set-dumpable, strict-limits, insecure-fork-wanted "
2444 "and numa-cpu-mapping.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002445 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002446 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002447 }
2448
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002449 /* detect section start */
2450 list_for_each_entry(ics, &sections, list) {
2451 if (strcmp(args[0], ics->section_name) == 0) {
2452 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002453 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002454 cs = ics;
Willy Tarreau51508052021-05-06 10:04:45 +02002455 free(global.cfg_curr_section);
2456 global.cfg_curr_section = strdup(*args[1] ? args[1] : args[0]);
Christopher Faulet037e3f82022-11-18 15:46:06 +01002457 check_section_position(args[0], file, linenum);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002458 break;
2459 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002460 }
2461
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002462 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002463 int status;
2464
2465 status = pcs->post_section_parser();
2466 err_code |= status;
2467 if (status & ERR_FATAL)
2468 fatal++;
2469
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002470 if (err_code & ERR_ABORT)
2471 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002472 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002473 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002474
William Lallemandd2ff56d2017-10-16 11:06:50 +02002475 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002476 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002477 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002478 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002479 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002480 int status;
2481
2482 status = cs->section_parser(file, linenum, args, kwm);
2483 err_code |= status;
2484 if (status & ERR_FATAL)
2485 fatal++;
2486
William Lallemandd2ff56d2017-10-16 11:06:50 +02002487 if (err_code & ERR_ABORT)
2488 goto err;
2489 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002490 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002491
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002492 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002493 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2494 file, linenum, (missing_lf + 1));
2495 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002496 }
2497
Willy Tarreau51508052021-05-06 10:04:45 +02002498 ha_free(&global.cfg_curr_section);
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002499 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002500 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002501
Willy Tarreau4b103022021-02-12 17:59:10 +01002502 if (nested_cond_lvl) {
2503 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
2504 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2505 }
Willy Tarreau8a022d52021-04-27 20:29:11 +02002506
2507 if (*initial_cwd && chdir(initial_cwd) == -1) {
2508 ha_alert("Impossible to get back to initial directory '%s' : %s\n", initial_cwd, strerror(errno));
2509 err_code |= ERR_ALERT | ERR_FATAL;
2510 }
2511
William Lallemandd2ff56d2017-10-16 11:06:50 +02002512err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002513 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01002514 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002515 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002516 free(outline);
Willy Tarreau51508052021-05-06 10:04:45 +02002517 global.cfg_curr_line = 0;
2518 global.cfg_curr_file = NULL;
2519
Willy Tarreauda543e12021-04-27 18:30:28 +02002520 if (f)
2521 fclose(f);
2522
Willy Tarreau058e9072009-07-20 09:30:05 +02002523 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002524}
2525
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002526#if defined(USE_THREAD) && defined USE_CPU_AFFINITY
2527#if defined(__linux__)
2528
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002529/* filter directory name of the pattern node<X> */
2530static int numa_filter(const struct dirent *dir)
2531{
2532 char *endptr;
2533
2534 /* dir name must start with "node" prefix */
2535 if (strncmp(dir->d_name, "node", 4))
2536 return 0;
2537
2538 /* dir name must be at least 5 characters long */
2539 if (!dir->d_name[4])
2540 return 0;
2541
2542 /* dir name must end with a numeric id */
2543 if (strtol(&dir->d_name[4], &endptr, 10) < 0 || *endptr)
2544 return 0;
2545
2546 /* all tests succeeded */
2547 return 1;
2548}
2549
2550/* Parse a linux cpu map string representing to a numeric cpu mask map
2551 * The cpu map string is a list of 4-byte hex strings separated by commas, with
2552 * most-significant byte first, one bit per cpu number.
2553 */
2554static void parse_cpumap(char *cpumap_str, struct hap_cpuset *cpu_set)
2555{
2556 unsigned long cpumap;
2557 char *start, *endptr, *comma;
2558 int i, j;
2559
2560 ha_cpuset_zero(cpu_set);
2561
2562 i = 0;
2563 do {
2564 /* reverse-search for a comma, parse the string after the comma
2565 * or at the beginning if no comma found
2566 */
2567 comma = strrchr(cpumap_str, ',');
2568 start = comma ? comma + 1 : cpumap_str;
2569
2570 cpumap = strtoul(start, &endptr, 16);
2571 for (j = 0; cpumap; cpumap >>= 1, ++j) {
2572 if (cpumap & 0x1)
2573 ha_cpuset_set(cpu_set, j + i * 32);
2574 }
2575
2576 if (comma)
2577 *comma = '\0';
2578 ++i;
2579 } while (comma);
2580}
2581
2582/* Read the first line of a file from <path> into the trash buffer.
2583 * Returns 0 on success, otherwise non-zero.
2584 */
2585static int read_file_to_trash(const char *path)
2586{
2587 FILE *file;
2588 int ret = 1;
2589
2590 file = fopen(path, "r");
2591 if (file) {
2592 if (fgets(trash.area, trash.size, file))
2593 ret = 0;
2594
2595 fclose(file);
2596 }
2597
2598 return ret;
2599}
2600
2601/* Inspect the cpu topology of the machine on startup. If a multi-socket
2602 * machine is detected, try to bind on the first node with active cpu. This is
2603 * done to prevent an impact on the overall performance when the topology of
2604 * the machine is unknown. This function is not called if one of the conditions
2605 * is met :
2606 * - a non-null nbthread directive is active
2607 * - a restrictive cpu-map directive is active
2608 * - a restrictive affinity is already applied, for example via taskset
2609 *
2610 * Returns the count of cpus selected. If no automatic binding was required or
2611 * an error occurred and the topology is unknown, 0 is returned.
2612 */
2613static int numa_detect_topology()
2614{
2615 struct dirent **node_dirlist;
2616 int node_dirlist_size;
2617
2618 struct hap_cpuset active_cpus, node_cpu_set;
2619 const char *parse_cpu_set_args[2];
2620 char cpumap_path[PATH_MAX];
2621 char *err = NULL;
2622
2623 /* node_cpu_set count is used as return value */
2624 ha_cpuset_zero(&node_cpu_set);
2625
2626 /* 1. count the sysfs node<X> directories */
Willy Tarreau07bf21c2021-04-23 19:09:16 +02002627 node_dirlist = NULL;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002628 node_dirlist_size = scandir(NUMA_DETECT_SYSTEM_SYSFS_PATH"/node", &node_dirlist, numa_filter, alphasort);
2629 if (node_dirlist_size <= 1)
2630 goto free_scandir_entries;
2631
2632 /* 2. read and parse the list of currently online cpu */
2633 if (read_file_to_trash(NUMA_DETECT_SYSTEM_SYSFS_PATH"/cpu/online")) {
2634 ha_notice("Cannot read online CPUs list, will not try to refine binding\n");
2635 goto free_scandir_entries;
2636 }
2637
2638 parse_cpu_set_args[0] = trash.area;
2639 parse_cpu_set_args[1] = "\0";
2640 if (parse_cpu_set(parse_cpu_set_args, &active_cpus, 1, &err)) {
2641 ha_notice("Cannot read online CPUs list: '%s'. Will not try to refine binding\n", err);
2642 free(err);
2643 goto free_scandir_entries;
2644 }
2645
2646 /* 3. loop through nodes dirs and find the first one with active cpus */
2647 while (node_dirlist_size--) {
2648 const char *node = node_dirlist[node_dirlist_size]->d_name;
2649 ha_cpuset_zero(&node_cpu_set);
2650
2651 snprintf(cpumap_path, PATH_MAX, "%s/node/%s/cpumap",
2652 NUMA_DETECT_SYSTEM_SYSFS_PATH, node);
2653
2654 if (read_file_to_trash(cpumap_path)) {
2655 ha_notice("Cannot read CPUs list of '%s', will not select them to refine binding\n", node);
2656 free(node_dirlist[node_dirlist_size]);
2657 continue;
2658 }
2659
2660 parse_cpumap(trash.area, &node_cpu_set);
2661 ha_cpuset_and(&node_cpu_set, &active_cpus);
2662
2663 /* 5. set affinity on the first found node with active cpus */
2664 if (!ha_cpuset_count(&node_cpu_set)) {
2665 free(node_dirlist[node_dirlist_size]);
2666 continue;
2667 }
2668
2669 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));
2670 if (sched_setaffinity(getpid(), sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2671 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2672
2673 /* clear the cpuset used as return value */
2674 ha_cpuset_zero(&node_cpu_set);
2675 }
2676
2677 free(node_dirlist[node_dirlist_size]);
2678 break;
2679 }
2680
2681 free_scandir_entries:
2682 while (node_dirlist_size-- > 0)
2683 free(node_dirlist[node_dirlist_size]);
2684 free(node_dirlist);
2685
2686 return ha_cpuset_count(&node_cpu_set);
2687}
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002688
David CARLIERf5d48f82021-12-06 11:00:10 +00002689#elif defined(__FreeBSD__)
2690static int numa_detect_topology()
2691{
2692 struct hap_cpuset node_cpu_set;
2693 int ndomains = 0, i;
2694 size_t len = sizeof(ndomains);
2695
2696 if (sysctlbyname("vm.ndomains", &ndomains, &len, NULL, 0) == -1) {
2697 ha_notice("Cannot assess the number of CPUs domains\n");
2698 return 0;
2699 }
2700
2701 BUG_ON(ndomains > MAXMEMDOM);
2702 ha_cpuset_zero(&node_cpu_set);
2703
2704 /*
2705 * We retrieve the first active valid CPU domain
2706 * with active cpu and binding it, we returns
2707 * the number of cpu from the said domain
2708 */
2709 for (i = 0; i < ndomains; i ++) {
2710 struct hap_cpuset dom;
2711 ha_cpuset_zero(&dom);
2712 if (cpuset_getaffinity(CPU_LEVEL_WHICH, CPU_WHICH_DOMAIN, i, sizeof(dom.cpuset), &dom.cpuset) == -1)
2713 continue;
2714
2715 if (!ha_cpuset_count(&dom))
2716 continue;
2717
2718 ha_cpuset_assign(&node_cpu_set, &dom);
2719
2720 ha_diag_warning("Multi-socket cpu detected, automatically binding on active CPUs of '%d' (%u active cpu(s))\n", i, ha_cpuset_count(&node_cpu_set));
2721 if (cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2722 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2723
2724 /* clear the cpuset used as return value */
2725 ha_cpuset_zero(&node_cpu_set);
2726 }
2727 break;
2728 }
2729
2730 return ha_cpuset_count(&node_cpu_set);
2731}
2732
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002733#else
2734static int numa_detect_topology()
2735{
2736 return 0;
2737}
2738
2739#endif
2740#endif /* USE_THREAD && USE_CPU_AFFINITY */
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002741
Willy Tarreaubb925012009-07-23 13:36:36 +02002742/*
2743 * Returns the error code, 0 if OK, or any combination of :
2744 * - ERR_ABORT: must abort ASAP
2745 * - ERR_FATAL: we can continue parsing but not start the service
2746 * - ERR_WARN: a warning has been emitted
2747 * - ERR_ALERT: an alert has been emitted
2748 * Only the two first ones can stop processing, the two others are just
2749 * indicators.
2750 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002751int check_config_validity()
2752{
2753 int cfgerr = 0;
2754 struct proxy *curproxy = NULL;
Emeric Brun3b68b602022-08-18 15:53:21 +02002755 struct proxy *init_proxies_list = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002756 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002757 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002758 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002759 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002760 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002761 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002762 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01002763 struct resolvers *curr_resolvers = NULL;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002764 int i;
Frédéric Lécaille372508c2022-05-06 08:53:16 +02002765 int diag_no_cluster_secret = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002766
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002767 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002768 /*
2769 * Now, check for the integrity of all that we have collected.
2770 */
2771
2772 /* will be needed further to delay some tasks */
Willy Tarreau55542642021-10-08 09:33:24 +02002773 clock_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002774
Willy Tarreau193b8c62012-11-22 00:17:38 +01002775 if (!global.tune.max_http_hdr)
2776 global.tune.max_http_hdr = MAX_HTTP_HDR;
2777
2778 if (!global.tune.cookie_len)
2779 global.tune.cookie_len = CAPTURE_LEN;
2780
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002781 if (!global.tune.requri_len)
2782 global.tune.requri_len = REQURI_LEN;
2783
Willy Tarreau149ab772019-01-26 14:27:06 +01002784 if (!global.nbthread) {
2785 /* nbthread not set, thus automatic. In this case, and only if
2786 * running on a single process, we enable the same number of
2787 * threads as the number of CPUs the process is bound to. This
2788 * allows to easily control the number of threads using taskset.
2789 */
2790 global.nbthread = 1;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002791
Willy Tarreau149ab772019-01-26 14:27:06 +01002792#if defined(USE_THREAD)
Willy Tarreaub63dbb72021-06-11 16:50:29 +02002793 {
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002794 int numa_cores = 0;
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002795#if defined(USE_CPU_AFFINITY)
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002796 if (global.numa_cpu_mapping && !thread_cpu_mask_forced())
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002797 numa_cores = numa_detect_topology();
2798#endif
2799 global.nbthread = numa_cores ? numa_cores :
2800 thread_cpus_enabled_at_boot;
Willy Tarreau400b3ae2022-12-08 08:04:46 +01002801
2802 /* Note that we cannot have more than 32 or 64 threads per group */
2803 if (!global.nbtgroups)
2804 global.nbtgroups = 1;
2805
2806 if (global.nbthread > MAX_THREADS_PER_GROUP * global.nbtgroups) {
2807 ha_diag_warning("nbthread not set, found %d CPUs, limiting to %d threads (maximum is %d per thread group). Please set nbthreads and/or increase thread-groups in the global section to silence this warning.\n",
2808 global.nbthread, MAX_THREADS_PER_GROUP * global.nbtgroups, MAX_THREADS_PER_GROUP);
2809 global.nbthread = MAX_THREADS_PER_GROUP * global.nbtgroups;
2810 }
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002811 }
Willy Tarreau149ab772019-01-26 14:27:06 +01002812#endif
2813 }
2814
Willy Tarreauc33b9692021-09-22 12:07:23 +02002815 if (!global.nbtgroups)
2816 global.nbtgroups = 1;
2817
Willy Tarreaue6806eb2021-09-27 10:10:26 +02002818 if (thread_map_to_groups() < 0) {
2819 err_code |= ERR_ALERT | ERR_FATAL;
2820 goto out;
2821 }
2822
Willy Tarreaubafbe012017-11-24 17:34:44 +01002823 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002824
Willy Tarreaubafbe012017-11-24 17:34:44 +01002825 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002826
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002827 /* Post initialisation of the users and groups lists. */
2828 err_code = userlist_postinit();
2829 if (err_code != ERR_NONE)
2830 goto out;
2831
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002832 /* first, we will invert the proxy list order */
2833 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002834 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002835 struct proxy *next;
2836
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002837 next = proxies_list->next;
2838 proxies_list->next = curproxy;
2839 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002840 if (!next)
2841 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002842 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002843 }
2844
Emeric Brun3b68b602022-08-18 15:53:21 +02002845 /* starting to initialize the main proxies list */
2846 init_proxies_list = proxies_list;
2847
2848init_proxies_list_stage1:
2849 for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002850 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002851 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002852 struct sticking_rule *mrule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002853 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002854 unsigned int next_id;
2855
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002856 if (!(curproxy->cap & PR_CAP_INT) && curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002857 /* proxy ID not set, use automatic numbering with first
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002858 * spare entry starting with next_pxid. We don't assign
2859 * numbers for internal proxies as they may depend on
2860 * build or config options and we don't want them to
2861 * possibly reuse existing IDs.
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002862 */
2863 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2864 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2865 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002866 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002867
Willy Tarreau32b51cd2021-08-26 15:59:44 +02002868 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize >= (256 << 20) && ONLY_ONCE()) {
2869 ha_alert("global.tune.bufsize must be below 256 MB when HTTP is in use (current value = %d).\n",
2870 global.tune.bufsize);
2871 cfgerr++;
2872 }
2873
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002874 /* next IDs are shifted even if the proxy is disabled, this
2875 * guarantees that a proxy that is temporarily disabled in the
2876 * configuration doesn't cause a renumbering. Internal proxies
2877 * that are not assigned a static ID must never shift the IDs
2878 * either since they may appear in any order (Lua, logs, etc).
2879 * The GLOBAL proxy that carries the stats socket has its ID
2880 * forced to zero.
2881 */
2882 if (curproxy->uuid >= 0)
2883 next_pxid++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002884
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002885 if (curproxy->flags & PR_FL_DISABLED) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002886 /* ensure we don't keep listeners uselessly bound. We
2887 * can't disable their listeners yet (fdtab not
2888 * allocated yet) but let's skip them.
2889 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002890 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002891 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002892 curproxy->table->peers.p = NULL;
2893 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002894 continue;
2895 }
2896
Christopher Fauletff556272021-10-13 11:04:10 +02002897 /* The current proxy is referencing a default proxy. We must
2898 * finalize its config, but only once. If the default proxy is
2899 * ready (PR_FL_READY) it means it was already fully configured.
2900 */
2901 if (curproxy->defpx) {
2902 if (!(curproxy->defpx->flags & PR_FL_READY)) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02002903 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
2904 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l4_rules, curproxy->defpx, &err_code);
2905 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l5_rules, curproxy->defpx, &err_code);
2906 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.inspect_rules, curproxy->defpx, &err_code);
2907 cfgerr += check_action_rules(&curproxy->defpx->tcp_rep.inspect_rules, curproxy->defpx, &err_code);
2908 cfgerr += check_action_rules(&curproxy->defpx->http_req_rules, curproxy->defpx, &err_code);
2909 cfgerr += check_action_rules(&curproxy->defpx->http_res_rules, curproxy->defpx, &err_code);
2910 cfgerr += check_action_rules(&curproxy->defpx->http_after_res_rules, curproxy->defpx, &err_code);
2911
Christopher Fauletff556272021-10-13 11:04:10 +02002912 err = NULL;
2913 i = smp_resolve_args(curproxy->defpx, &err);
2914 cfgerr += i;
2915 if (i) {
2916 indent_msg(&err, 8);
2917 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
2918 ha_free(&err);
2919 }
2920 else
2921 cfgerr += acl_find_targets(curproxy->defpx);
2922
2923 /* default proxy is now ready. Set the right FE/BE capabilities */
2924 curproxy->defpx->flags |= PR_FL_READY;
2925 }
2926 }
2927
Willy Tarreau3d209582014-05-09 17:06:11 +02002928 /* check and reduce the bind-proc of each listener */
2929 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002930 struct listener *li;
Willy Tarreau3d209582014-05-09 17:06:11 +02002931
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002932 /* HTTP frontends with "h2" as ALPN/NPN will work in
2933 * HTTP/2 and absolutely require buffers 16kB or larger.
2934 */
2935#ifdef USE_OPENSSL
Willy Tarreau158c18e2023-04-19 08:28:40 +02002936 /* no-alpn ? If so, it's the right moment to remove it */
2937 if (bind_conf->ssl_conf.alpn_str && !bind_conf->ssl_conf.alpn_len) {
2938 free(bind_conf->ssl_conf.alpn_str);
2939 bind_conf->ssl_conf.alpn_str = NULL;
2940 }
Willy Tarreau5003ac72023-04-19 09:12:33 +02002941#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2942 else if (!bind_conf->ssl_conf.alpn_str && !bind_conf->ssl_conf.npn_str &&
2943 ((bind_conf->options & BC_O_USE_SSL) || bind_conf->xprt == xprt_get(XPRT_QUIC)) &&
2944 curproxy->mode == PR_MODE_HTTP && global.tune.bufsize >= 16384) {
2945
2946 /* Neither ALPN nor NPN were explicitly set nor disabled, we're
2947 * in HTTP mode with an SSL or QUIC listener, we can enable ALPN.
2948 * Note that it's in binary form.
2949 */
2950 if (bind_conf->xprt == xprt_get(XPRT_QUIC))
2951 bind_conf->ssl_conf.alpn_str = strdup("\002h3");
2952 else
2953 bind_conf->ssl_conf.alpn_str = strdup("\002h2\010http/1.1");
2954
2955 if (!bind_conf->ssl_conf.alpn_str) {
2956 ha_alert("Proxy '%s': out of memory while trying to allocate a default alpn string in 'bind %s' at [%s:%d].\n",
2957 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2958 cfgerr++;
2959 err_code |= ERR_FATAL | ERR_ALERT;
2960 goto out;
2961 }
2962 bind_conf->ssl_conf.alpn_len = strlen(bind_conf->ssl_conf.alpn_str);
2963 }
2964#endif
Willy Tarreau158c18e2023-04-19 08:28:40 +02002965
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002966 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2967#ifdef OPENSSL_NPN_NEGOTIATED
2968 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002969 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002970 ha_alert("HTTP frontend '%s' enables HTTP/2 via NPN at [%s:%d], so global.tune.bufsize must be at least 16384 bytes (%d now).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002971 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002972 cfgerr++;
2973 }
2974#endif
2975#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2976 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002977 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002978 ha_alert("HTTP frontend '%s' enables HTTP/2 via ALPN at [%s:%d], so global.tune.bufsize must be at least 16384 bytes (%d now).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002979 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002980 cfgerr++;
2981 }
2982#endif
2983 } /* HTTP && bufsize < 16384 */
2984#endif
2985
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002986 /* detect and address thread affinity inconsistencies */
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002987 err = NULL;
Willy Tarreauf2988e12023-02-02 17:01:10 +01002988 if (thread_resolve_group_mask(&bind_conf->thread_set, (curproxy == global.cli_fe) ? 1 : 0, &err) < 0) {
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002989 ha_alert("Proxy '%s': %s in 'bind %s' at [%s:%d].\n",
2990 curproxy->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
2991 free(err);
2992 cfgerr++;
Willy Tarreau655a7bc2023-02-06 18:06:14 +01002993 continue;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002994 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002995
2996 /* apply thread masks and groups to all receivers */
2997 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
Willy Tarreau484093d2023-02-03 14:53:34 +01002998 struct listener *new_li;
Willy Tarreau50440452023-02-03 15:52:07 +01002999 struct thread_set new_ts;
3000 int shard, shards, todo, done, grp;
3001 ulong mask, bit;
Willy Tarreau6dfbef42021-10-12 15:23:03 +02003002
Willy Tarreau484093d2023-02-03 14:53:34 +01003003 shards = bind_conf->settings.shards;
Willy Tarreau50440452023-02-03 15:52:07 +01003004 todo = thread_set_count(&bind_conf->thread_set);
Willy Tarreau6dfbef42021-10-12 15:23:03 +02003005
Willy Tarreaua07635e2023-04-13 17:25:43 +02003006 /* special values: -1 = "by-thread", -2 = "by-group" */
Willy Tarreaud30e82b2023-04-13 17:11:23 +02003007 if (shards == -1)
3008 shards = todo;
Willy Tarreaua07635e2023-04-13 17:25:43 +02003009 else if (shards == -2)
3010 shards = my_popcountl(bind_conf->thread_set.grps);
Willy Tarreaud30e82b2023-04-13 17:11:23 +02003011
Willy Tarreau484093d2023-02-03 14:53:34 +01003012 /* no more shards than total threads */
3013 if (shards > todo)
3014 shards = todo;
Willy Tarreau6dfbef42021-10-12 15:23:03 +02003015
Willy Tarreau50440452023-02-03 15:52:07 +01003016 shard = done = grp = bit = mask = 0;
Willy Tarreau484093d2023-02-03 14:53:34 +01003017 new_li = li;
Willy Tarreau6dfbef42021-10-12 15:23:03 +02003018
Willy Tarreau50440452023-02-03 15:52:07 +01003019 while (shard < shards) {
3020 memset(&new_ts, 0, sizeof(new_ts));
3021 while (grp < global.nbtgroups && done < todo) {
3022 /* enlarge mask to cover next bit of bind_thread till we
3023 * have enough bits for one shard. We restart from the
3024 * current grp+bit.
3025 */
3026
3027 /* first let's find the first non-empty group starting at <mask> */
3028 if (!(bind_conf->thread_set.rel[grp] & ha_tgroup_info[grp].threads_enabled & ~mask)) {
3029 grp++;
3030 mask = 0;
3031 continue;
3032 }
3033
3034 /* take next unassigned bit */
3035 bit = (bind_conf->thread_set.rel[grp] & ~mask) & -(bind_conf->thread_set.rel[grp] & ~mask);
3036 new_ts.rel[grp] |= bit;
3037 mask |= bit;
Willy Tarreau97da9422023-03-01 11:24:29 +01003038 new_ts.grps |= 1UL << grp;
Willy Tarreau50440452023-02-03 15:52:07 +01003039
Willy Tarreau484093d2023-02-03 14:53:34 +01003040 done += shards;
Willy Tarreau50440452023-02-03 15:52:07 +01003041 };
3042
Willy Tarreau97da9422023-03-01 11:24:29 +01003043 BUG_ON(!new_ts.grps); // no more bits left unassigned
Willy Tarreau50440452023-02-03 15:52:07 +01003044
Willy Tarreau97da9422023-03-01 11:24:29 +01003045 if (atleast2(new_ts.grps)) {
Willy Tarreau50440452023-02-03 15:52:07 +01003046 ha_alert("Proxy '%s': shard number %d spans %d groups in 'bind %s' at [%s:%d]\n",
Willy Tarreau97da9422023-03-01 11:24:29 +01003047 curproxy->id, shard, my_popcountl(new_ts.grps), bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau50440452023-02-03 15:52:07 +01003048 cfgerr++;
3049 err_code |= ERR_FATAL | ERR_ALERT;
3050 goto out;
Willy Tarreau484093d2023-02-03 14:53:34 +01003051 }
Willy Tarreau6dfbef42021-10-12 15:23:03 +02003052
Willy Tarreau50440452023-02-03 15:52:07 +01003053 /* assign the first (and only) thread and group */
Willy Tarreau7b8aac42023-02-27 11:27:38 +01003054 new_li->rx.bind_thread = thread_set_nth_tmask(&new_ts, 0);
3055 new_li->rx.bind_tgroup = thread_set_nth_group(&new_ts, 0);
Willy Tarreau484093d2023-02-03 14:53:34 +01003056 done -= todo;
Willy Tarreau6dfbef42021-10-12 15:23:03 +02003057
Willy Tarreau484093d2023-02-03 14:53:34 +01003058 shard++;
3059 if (shard >= shards)
3060 break;
Willy Tarreau6dfbef42021-10-12 15:23:03 +02003061
Willy Tarreau484093d2023-02-03 14:53:34 +01003062 /* create another listener for new shards */
3063 new_li = clone_listener(li);
3064 if (!new_li) {
3065 ha_alert("Out of memory while trying to allocate extra listener for shard %d in %s %s\n",
3066 shard, proxy_type_str(curproxy), curproxy->id);
3067 cfgerr++;
3068 err_code |= ERR_FATAL | ERR_ALERT;
3069 goto out;
Willy Tarreau6dfbef42021-10-12 15:23:03 +02003070 }
3071 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02003072 }
Willy Tarreau3d209582014-05-09 17:06:11 +02003073 }
3074
Willy Tarreauff01a212009-03-15 13:46:16 +01003075 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01003076 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02003077 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01003078 break;
3079
3080 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01003081 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01003082 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02003083
3084 case PR_MODE_CLI:
3085 cfgerr += proxy_cfg_ensure_no_http(curproxy);
3086 break;
Emeric Brun3b68b602022-08-18 15:53:21 +02003087
Emeric Brun54932b42020-07-07 09:43:24 +02003088 case PR_MODE_SYSLOG:
Emeric Brun3b68b602022-08-18 15:53:21 +02003089 /* this mode is initialized as the classic tcp proxy */
3090 cfgerr += proxy_cfg_ensure_no_http(curproxy);
3091 break;
3092
Willy Tarreaua389c9e2020-10-07 17:49:42 +02003093 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02003094 case PR_MODES:
3095 /* should not happen, bug gcc warn missing switch statement */
Emeric Brun3b68b602022-08-18 15:53:21 +02003096 ha_alert("%s '%s' cannot initialize this proxy mode (peers) in this way. 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 +02003097 proxy_type_str(curproxy), curproxy->id);
3098 cfgerr++;
3099 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01003100 }
3101
William Lallemand2c04a5a2021-08-13 15:21:12 +02003102 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003103 ha_warning("%s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003104 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02003105 err_code |= ERR_WARN;
3106 }
3107
Willy Tarreau77e0dae2020-10-14 15:44:27 +02003108 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003109 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003110 if (curproxy->options & PR_O_TRANSP) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003111 ha_alert("%s '%s' cannot use both transparent and balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003112 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003113 cfgerr++;
3114 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003115#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003116 else if (curproxy->srv == NULL) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003117 ha_alert("%s '%s' needs at least 1 server in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003118 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003119 cfgerr++;
3120 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003121#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02003122 else if (curproxy->options & PR_O_DISPATCH) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003123 ha_warning("dispatch address of %s '%s' will be ignored in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003124 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003125 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003126 }
3127 }
Willy Tarreau25241232021-07-18 19:18:56 +02003128 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003129 /* If no LB algo is set in a backend, and we're not in
3130 * transparent mode, dispatch mode nor proxy mode, we
3131 * want to use balance roundrobin by default.
3132 */
3133 curproxy->lbprm.algo &= ~BE_LB_ALGO;
3134 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003135 }
3136 }
Willy Tarreau193cf932007-09-17 10:17:23 +02003137
Willy Tarreau1620ec32011-08-06 17:05:02 +02003138 if (curproxy->options & PR_O_DISPATCH)
Willy Tarreau25241232021-07-18 19:18:56 +02003139 curproxy->options &= ~PR_O_TRANSP;
Willy Tarreau1620ec32011-08-06 17:05:02 +02003140 else if (curproxy->options & PR_O_TRANSP)
Willy Tarreau25241232021-07-18 19:18:56 +02003141 curproxy->options &= ~PR_O_DISPATCH;
Willy Tarreau82936582007-11-30 15:20:09 +01003142
Christopher Faulete5870d82020-04-15 11:32:03 +02003143 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003144 ha_warning("%s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
Christopher Faulete5870d82020-04-15 11:32:03 +02003145 proxy_type_str(curproxy), curproxy->id);
3146 err_code |= ERR_WARN;
3147 }
3148
3149 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02003150 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02003151 if (curproxy->options & PR_O_DISABLE404) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003152 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003153 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02003154 err_code |= ERR_WARN;
3155 curproxy->options &= ~PR_O_DISABLE404;
3156 }
3157 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003158 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003159 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02003160 err_code |= ERR_WARN;
3161 curproxy->options &= ~PR_O2_CHK_SNDST;
3162 }
Willy Tarreauef781042010-01-27 11:53:01 +01003163 }
3164
Simon Horman98637e52014-06-20 12:30:16 +09003165 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
3166 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003167 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
3168 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09003169 cfgerr++;
3170 }
3171 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003172 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
3173 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09003174 cfgerr++;
3175 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01003176 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
3177 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
3178 curproxy->id, "option external-check");
3179 err_code |= ERR_WARN;
3180 }
Simon Horman98637e52014-06-20 12:30:16 +09003181 }
3182
Simon Horman64e34162015-02-06 11:11:57 +09003183 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003184 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003185 ha_warning("'email-alert' will be ignored for %s '%s' (the presence any of "
Christopher Faulet767a84b2017-11-24 16:50:31 +01003186 "'email-alert from', 'email-alert level' 'email-alert mailers', "
3187 "'email-alert myhostname', or 'email-alert to' "
3188 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
3189 "to be present).\n",
3190 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003191 err_code |= ERR_WARN;
3192 free_email_alert(curproxy);
3193 }
3194 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01003195 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09003196 }
3197
Simon Horman98637e52014-06-20 12:30:16 +09003198 if (curproxy->check_command) {
3199 int clear = 0;
3200 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003201 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003202 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09003203 err_code |= ERR_WARN;
3204 clear = 1;
3205 }
3206 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003207 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
3208 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09003209 cfgerr++;
3210 }
3211 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003212 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09003213 }
3214 }
3215
3216 if (curproxy->check_path) {
3217 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003218 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003219 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09003220 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003221 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09003222 }
3223 }
3224
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003225 /* if a default backend was specified, let's find it */
3226 if (curproxy->defbe.name) {
3227 struct proxy *target;
3228
Willy Tarreauafb39922015-05-26 12:04:09 +02003229 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01003230 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003231 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
3232 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003233 cfgerr++;
3234 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003235 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
3236 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02003237 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02003238 } else if (target->mode != curproxy->mode &&
3239 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
3240
Christopher Faulet767a84b2017-11-24 16:50:31 +01003241 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
3242 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
3243 curproxy->conf.file, curproxy->conf.line,
3244 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
3245 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02003246 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003247 } else {
3248 free(curproxy->defbe.name);
3249 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01003250 /* Emit a warning if this proxy also has some servers */
3251 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003252 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
3253 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01003254 err_code |= ERR_WARN;
3255 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003256 }
3257 }
3258
Willy Tarreau55ea7572007-06-17 19:56:27 +02003259 /* find the target proxy for 'use_backend' rules */
3260 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02003261 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003262 struct logformat_node *node;
3263 char *pxname;
3264
3265 /* Try to parse the string as a log format expression. If the result
3266 * of the parsing is only one entry containing a simple string, then
3267 * it's a standard string corresponding to a static rule, thus the
3268 * parsing is cancelled and be.name is restored to be resolved.
3269 */
3270 pxname = rule->be.name;
3271 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01003272 curproxy->conf.args.ctx = ARGC_UBK;
3273 curproxy->conf.args.file = rule->file;
3274 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003275 err = NULL;
3276 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003277 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
3278 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003279 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003280 cfgerr++;
3281 continue;
3282 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003283 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
3284
3285 if (!LIST_ISEMPTY(&rule->be.expr)) {
3286 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
3287 rule->dynamic = 1;
3288 free(pxname);
3289 continue;
3290 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02003291 /* Only one element in the list, a simple string: free the expression and
3292 * fall back to static rule
3293 */
Willy Tarreau2b718102021-04-21 07:32:39 +02003294 LIST_DELETE(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003295 free(node->arg);
3296 free(node);
3297 }
3298
3299 rule->dynamic = 0;
3300 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003301
Willy Tarreauafb39922015-05-26 12:04:09 +02003302 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01003303 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003304 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
3305 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003306 cfgerr++;
3307 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003308 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
3309 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003310 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02003311 } else if (target->mode != curproxy->mode &&
3312 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
3313
Christopher Faulet767a84b2017-11-24 16:50:31 +01003314 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
3315 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
3316 curproxy->conf.file, curproxy->conf.line,
3317 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
3318 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02003319 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003320 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003321 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003322 rule->be.backend = target;
3323 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003324 err_code |= warnif_tcp_http_cond(curproxy, rule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003325 }
3326
Willy Tarreau64ab6072014-09-16 12:17:36 +02003327 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003328 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02003329 struct server *target;
3330 struct logformat_node *node;
3331 char *server_name;
3332
3333 /* We try to parse the string as a log format expression. If the result of the parsing
3334 * is only one entry containing a single string, then it's a standard string corresponding
3335 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
3336 */
3337 server_name = srule->srv.name;
3338 LIST_INIT(&srule->expr);
3339 curproxy->conf.args.ctx = ARGC_USRV;
3340 err = NULL;
3341 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
3342 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
3343 srule->file, srule->line, server_name, err);
3344 free(err);
3345 cfgerr++;
3346 continue;
3347 }
3348 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
3349
3350 if (!LIST_ISEMPTY(&srule->expr)) {
3351 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
3352 srule->dynamic = 1;
3353 free(server_name);
3354 continue;
3355 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02003356 /* Only one element in the list, a simple string: free the expression and
3357 * fall back to static rule
3358 */
Willy Tarreau2b718102021-04-21 07:32:39 +02003359 LIST_DELETE(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02003360 free(node->arg);
3361 free(node);
3362 }
3363
3364 srule->dynamic = 0;
3365 srule->srv.name = server_name;
3366 target = findserver(curproxy, srule->srv.name);
Christopher Faulet581db2b2021-03-26 10:02:46 +01003367 err_code |= warnif_tcp_http_cond(curproxy, srule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003368
3369 if (!target) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003370 ha_alert("%s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003371 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003372 cfgerr++;
3373 continue;
3374 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01003375 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003376 srule->srv.ptr = target;
Amaury Denoyelle06269612021-08-23 14:05:07 +02003377 target->flags |= SRV_F_NON_PURGEABLE;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003378 }
3379
Emeric Brunb982a3d2010-01-04 15:45:53 +01003380 /* find the target table for 'stick' rules */
3381 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003382 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003383
Emeric Brun1d33b292010-01-04 15:47:17 +01003384 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
3385 if (mrule->flags & STK_IS_STORE)
3386 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3387
Emeric Brunb982a3d2010-01-04 15:45:53 +01003388 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003389 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003390 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003391 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003392
3393 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003394 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003395 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003396 cfgerr++;
3397 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003398 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003399 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3400 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003401 cfgerr++;
3402 }
3403 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003404 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003405 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003406 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3407 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003408 if (!in_proxies_list(target->proxies_list, curproxy)) {
3409 curproxy->next_stkt_ref = target->proxies_list;
3410 target->proxies_list = curproxy;
3411 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003412 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003413 err_code |= warnif_tcp_http_cond(curproxy, mrule->cond);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003414 }
3415
3416 /* find the target table for 'store response' rules */
3417 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003418 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003419
Emeric Brun1d33b292010-01-04 15:47:17 +01003420 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3421
Emeric Brunb982a3d2010-01-04 15:45:53 +01003422 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003423 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003424 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003425 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003426
3427 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003428 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003429 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003430 cfgerr++;
3431 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003432 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003433 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3434 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003435 cfgerr++;
3436 }
3437 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003438 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003439 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003440 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3441 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003442 if (!in_proxies_list(target->proxies_list, curproxy)) {
3443 curproxy->next_stkt_ref = target->proxies_list;
3444 target->proxies_list = curproxy;
3445 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003446 }
3447 }
3448
Christopher Faulet42c6cf92021-03-25 17:19:04 +01003449 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
3450 cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code);
3451 cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code);
3452 cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code);
3453 cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code);
3454 cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code);
3455 cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code);
3456 cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003457
Christopher Faulet5eef0182021-03-31 17:13:49 +02003458 /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */
3459 if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) {
3460 if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP)
3461 ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. "
3462 "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n",
3463 curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy));
3464 }
3465
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003466 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003467 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003468
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003469 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003470 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003471 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003472 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003473 break;
3474 }
3475 }
3476
3477 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003478 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003479 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01003480 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003481 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003482 cfgerr++;
3483 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003484 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003485 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003486 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003487 }
Emeric Brun32da3c42010-09-23 18:39:19 +02003488 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003489 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
3490 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003491 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003492 cfgerr++;
3493 }
3494 }
3495
Simon Horman9dc49962015-01-30 11:22:59 +09003496
3497 if (curproxy->email_alert.mailers.name) {
3498 struct mailers *curmailers = mailers;
3499
3500 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003501 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09003502 break;
Simon Horman9dc49962015-01-30 11:22:59 +09003503 }
Simon Horman9dc49962015-01-30 11:22:59 +09003504 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003505 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
3506 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09003507 free_email_alert(curproxy);
3508 cfgerr++;
3509 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02003510 else {
3511 err = NULL;
3512 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003513 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003514 free(err);
3515 cfgerr++;
3516 }
3517 }
Simon Horman9dc49962015-01-30 11:22:59 +09003518 }
3519
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003520 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01003521 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003522 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003523 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
3524 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003525 cfgerr++;
3526 goto out_uri_auth_compat;
3527 }
3528
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003529 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003530 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003531 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003532 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003533 struct act_rule *rule;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003534 i = 0;
3535
Willy Tarreau95fa4692010-02-01 13:05:50 +01003536 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
3537 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003538
3539 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003540 uri_auth_compat_req[i++] = "realm";
3541 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
3542 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003543
Willy Tarreau95fa4692010-02-01 13:05:50 +01003544 uri_auth_compat_req[i++] = "unless";
3545 uri_auth_compat_req[i++] = "{";
3546 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
3547 uri_auth_compat_req[i++] = "}";
3548 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003549
Willy Tarreauff011f22011-01-06 17:51:27 +01003550 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
3551 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003552 cfgerr++;
3553 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003554 }
3555
Willy Tarreau2b718102021-04-21 07:32:39 +02003556 LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01003557
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003558 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003559 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003560 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003561 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003562 }
3563out_uri_auth_compat:
3564
Dragan Dosen43885c72015-10-01 13:18:13 +02003565 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02003566 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02003567 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
3568 if (!curproxy->conf.logformat_sd_string) {
3569 /* set the default logformat_sd_string */
3570 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
3571 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003572 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02003573 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003574 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02003575
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003576 /* compile the log format */
3577 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02003578 if (curproxy->conf.logformat_string != default_http_log_format &&
3579 curproxy->conf.logformat_string != default_tcp_log_format &&
3580 curproxy->conf.logformat_string != clf_http_log_format)
3581 free(curproxy->conf.logformat_string);
3582 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003583 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02003584 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003585
3586 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3587 free(curproxy->conf.logformat_sd_string);
3588 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003589 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003590 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003591 }
3592
Willy Tarreau62a61232013-04-12 18:13:46 +02003593 if (curproxy->conf.logformat_string) {
3594 curproxy->conf.args.ctx = ARGC_LOG;
3595 curproxy->conf.args.file = curproxy->conf.lfs_file;
3596 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003597 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003598 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
3599 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003600 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003601 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3602 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003603 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003604 cfgerr++;
3605 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003606 curproxy->conf.args.file = NULL;
3607 curproxy->conf.args.line = 0;
3608 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003609
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003610 if (curproxy->conf.logformat_sd_string) {
3611 curproxy->conf.args.ctx = ARGC_LOGSD;
3612 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3613 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003614 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003615 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
3616 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003617 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003618 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3619 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003620 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003621 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003622 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003623 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3624 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003625 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003626 cfgerr++;
3627 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003628 curproxy->conf.args.file = NULL;
3629 curproxy->conf.args.line = 0;
3630 }
3631
Willy Tarreau62a61232013-04-12 18:13:46 +02003632 if (curproxy->conf.uniqueid_format_string) {
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003633 int where = 0;
3634
Willy Tarreau62a61232013-04-12 18:13:46 +02003635 curproxy->conf.args.ctx = ARGC_UIF;
3636 curproxy->conf.args.file = curproxy->conf.uif_file;
3637 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003638 err = NULL;
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003639 if (curproxy->cap & PR_CAP_FE)
3640 where |= SMP_VAL_FE_HRQ_HDR;
3641 if (curproxy->cap & PR_CAP_BE)
3642 where |= SMP_VAL_BE_HRQ_HDR;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003643 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003644 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES, where, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003645 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3646 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003647 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003648 cfgerr++;
3649 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003650 curproxy->conf.args.file = NULL;
3651 curproxy->conf.args.line = 0;
3652 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003653
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +02003654 if (curproxy->conf.error_logformat_string) {
3655 curproxy->conf.args.ctx = ARGC_LOG;
3656 curproxy->conf.args.file = curproxy->conf.elfs_file;
3657 curproxy->conf.args.line = curproxy->conf.elfs_line;
3658 err = NULL;
3659 if (!parse_logformat_string(curproxy->conf.error_logformat_string, curproxy, &curproxy->logformat_error,
3660 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
3661 SMP_VAL_FE_LOG_END, &err)) {
3662 ha_alert("Parsing [%s:%d]: failed to parse error-log-format : %s.\n",
3663 curproxy->conf.elfs_file, curproxy->conf.elfs_line, err);
3664 free(err);
3665 cfgerr++;
3666 }
3667 curproxy->conf.args.file = NULL;
3668 curproxy->conf.args.line = 0;
3669 }
3670
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +02003671 /* "balance hash" needs to compile its expression */
3672 if ((curproxy->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_SMP) {
3673 int idx = 0;
3674 const char *args[] = {
3675 curproxy->lbprm.arg_str,
3676 NULL,
3677 };
3678
3679 err = NULL;
3680 curproxy->conf.args.ctx = ARGC_USRV; // same context as use_server.
3681 curproxy->lbprm.expr =
3682 sample_parse_expr((char **)args, &idx,
3683 curproxy->conf.file, curproxy->conf.line,
3684 &err, &curproxy->conf.args, NULL);
3685
3686 if (!curproxy->lbprm.expr) {
3687 ha_alert("%s '%s' [%s:%d]: failed to parse 'balance hash' expression '%s' in : %s.\n",
3688 proxy_type_str(curproxy), curproxy->id,
3689 curproxy->conf.file, curproxy->conf.line,
3690 curproxy->lbprm.arg_str, err);
3691 ha_free(&err);
3692 cfgerr++;
3693 }
3694 else if (!(curproxy->lbprm.expr->fetch->val & SMP_VAL_BE_SET_SRV)) {
3695 ha_alert("%s '%s' [%s:%d]: error detected while parsing 'balance hash' expression '%s' "
3696 "which requires information from %s, which is not available here.\n",
3697 proxy_type_str(curproxy), curproxy->id,
3698 curproxy->conf.file, curproxy->conf.line,
3699 curproxy->lbprm.arg_str, sample_src_names(curproxy->lbprm.expr->fetch->use));
3700 cfgerr++;
3701 }
3702 else if (curproxy->mode == PR_MODE_HTTP && (curproxy->lbprm.expr->fetch->use & SMP_USE_L6REQ)) {
3703 ha_warning("%s '%s' [%s:%d]: L6 sample fetch <%s> will be ignored in 'balance hash' expression in HTTP mode.\n",
3704 proxy_type_str(curproxy), curproxy->id,
3705 curproxy->conf.file, curproxy->conf.line,
3706 curproxy->lbprm.arg_str);
3707 }
3708 else
3709 curproxy->http_needed |= !!(curproxy->lbprm.expr->fetch->use & SMP_USE_HTTP_ANY);
3710 }
Aurelien DARRAGONb2e2ec52023-01-09 11:09:03 +01003711
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003712 /* only now we can check if some args remain unresolved.
3713 * This must be done after the users and groups resolution.
3714 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01003715 err = NULL;
3716 i = smp_resolve_args(curproxy, &err);
3717 cfgerr += i;
3718 if (i) {
3719 indent_msg(&err, 8);
3720 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
3721 ha_free(&err);
3722 } else
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003723 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003724
William Lallemand2c04a5a2021-08-13 15:21:12 +02003725 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003726 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003727 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003728 (!curproxy->timeout.connect ||
3729 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003730 ha_warning("missing timeouts for %s '%s'.\n"
Christopher Faulet767a84b2017-11-24 16:50:31 +01003731 " | While not properly invalid, you will certainly encounter various problems\n"
3732 " | with such a configuration. To fix this, please ensure that all following\n"
3733 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3734 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003735 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003736 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003737
Willy Tarreau1fa31262007-12-03 00:36:16 +01003738 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3739 * We must still support older configurations, so let's find out whether those
3740 * parameters have been set or must be copied from contimeouts.
3741 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01003742 if (!curproxy->timeout.tarpit)
3743 curproxy->timeout.tarpit = curproxy->timeout.connect;
3744 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
3745 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003746
Christopher Faulete5870d82020-04-15 11:32:03 +02003747 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003748 ha_warning("%s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003749 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003750 err_code |= ERR_WARN;
3751 }
3752
Willy Tarreau193b8c62012-11-22 00:17:38 +01003753 /* ensure that cookie capture length is not too large */
3754 if (curproxy->capture_len >= global.tune.cookie_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003755 ha_warning("truncating capture length to %d bytes for %s '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003756 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003757 err_code |= ERR_WARN;
3758 curproxy->capture_len = global.tune.cookie_len - 1;
3759 }
3760
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003761 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003762 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003763 curproxy->req_cap_pool = create_pool("ptrcap",
3764 curproxy->nb_req_cap * sizeof(char *),
3765 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003766 }
3767
3768 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003769 curproxy->rsp_cap_pool = create_pool("ptrcap",
3770 curproxy->nb_rsp_cap * sizeof(char *),
3771 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003772 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003773
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003774 switch (curproxy->load_server_state_from_file) {
3775 case PR_SRV_STATE_FILE_UNSPEC:
3776 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3777 break;
3778 case PR_SRV_STATE_FILE_GLOBAL:
3779 if (!global.server_state_file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003780 ha_warning("backend '%s' configured to load server state file from global section 'server-state-file' directive. Unfortunately, 'server-state-file' is not set!\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003781 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003782 err_code |= ERR_WARN;
3783 }
3784 break;
3785 }
3786
Willy Tarreaubaaee002006-06-26 02:48:02 +02003787 /* first, we will invert the servers list order */
3788 newsrv = NULL;
3789 while (curproxy->srv) {
3790 struct server *next;
3791
3792 next = curproxy->srv->next;
3793 curproxy->srv->next = newsrv;
3794 newsrv = curproxy->srv;
3795 if (!next)
3796 break;
3797 curproxy->srv = next;
3798 }
3799
Willy Tarreau17edc812014-01-03 12:14:34 +01003800 /* Check that no server name conflicts. This causes trouble in the stats.
3801 * We only emit a warning for the first conflict affecting each server,
3802 * in order to avoid combinatory explosion if all servers have the same
3803 * name. We do that only for servers which do not have an explicit ID,
3804 * because these IDs were made also for distinguishing them and we don't
3805 * want to annoy people who correctly manage them.
3806 */
3807 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3808 struct server *other_srv;
3809
3810 if (newsrv->puid)
3811 continue;
3812
3813 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3814 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003815 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 +01003816 newsrv->conf.file, newsrv->conf.line,
3817 proxy_type_str(curproxy), curproxy->id,
3818 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003819 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003820 break;
3821 }
3822 }
3823 }
3824
Willy Tarreaudd701652010-05-25 23:03:02 +02003825 /* assign automatic UIDs to servers which don't have one yet */
3826 next_id = 1;
3827 newsrv = curproxy->srv;
3828 while (newsrv != NULL) {
3829 if (!newsrv->puid) {
3830 /* server ID not set, use automatic numbering with first
3831 * spare entry starting with next_svid.
3832 */
3833 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3834 newsrv->conf.id.key = newsrv->puid = next_id;
3835 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
3836 }
Amaury Denoyelle077c6b82021-06-14 17:04:25 +02003837 newsrv->conf.name.key = newsrv->id;
3838 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
3839
Willy Tarreaudd701652010-05-25 23:03:02 +02003840 next_id++;
3841 newsrv = newsrv->next;
3842 }
3843
Willy Tarreau20697042007-11-15 23:26:18 +01003844 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003845 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003846
Willy Tarreau62c3be22012-01-20 13:12:32 +01003847 /*
3848 * If this server supports a maxconn parameter, it needs a dedicated
3849 * tasks to fill the emptied slots when a connection leaves.
3850 * Also, resolve deferred tracking dependency if needed.
3851 */
3852 newsrv = curproxy->srv;
3853 while (newsrv != NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003854 set_usermsgs_ctx(newsrv->conf.file, newsrv->conf.line, &newsrv->obj_type);
3855
Aurelien DARRAGON3e7a0bb2023-02-08 11:49:02 +01003856 srv_minmax_conn_apply(newsrv);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003857
William Dauchyf6370442020-11-14 19:25:33 +01003858 /* this will also properly set the transport layer for
3859 * prod and checks
3860 * if default-server have use_ssl, prerare ssl init
3861 * without activating it */
3862 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
Christopher Faulet4ab26792021-12-01 09:50:41 +01003863 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3864 ((newsrv->flags & SRV_F_DEFSRV_USE_SSL) && newsrv->use_ssl != 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003865 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3866 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3867 }
Emeric Brun94324a42012-10-11 14:00:19 +02003868
Willy Tarreau034c88c2017-01-23 23:36:45 +01003869 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3870 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3871 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003872 ha_warning("server 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");
Willy Tarreau034c88c2017-01-23 23:36:45 +01003873
Willy Tarreau62c3be22012-01-20 13:12:32 +01003874 if (newsrv->trackit) {
Amaury Denoyelle669b6202021-07-13 10:35:23 +02003875 if (srv_apply_track(newsrv, curproxy)) {
3876 ++cfgerr;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003877 goto next_srv;
3878 }
Willy Tarreau62c3be22012-01-20 13:12:32 +01003879 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003880
Willy Tarreau62c3be22012-01-20 13:12:32 +01003881 next_srv:
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003882 reset_usermsgs_ctx();
Willy Tarreau62c3be22012-01-20 13:12:32 +01003883 newsrv = newsrv->next;
3884 }
3885
Olivier Houchard4e694042017-03-14 20:01:29 +01003886 /*
3887 * Try to generate dynamic cookies for servers now.
3888 * It couldn't be done earlier, since at the time we parsed
3889 * the server line, we may not have known yet that we
3890 * should use dynamic cookies, or the secret key may not
3891 * have been provided yet.
3892 */
3893 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3894 newsrv = curproxy->srv;
3895 while (newsrv != NULL) {
3896 srv_set_dyncookie(newsrv);
3897 newsrv = newsrv->next;
3898 }
3899
3900 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003901 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003902 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003903 */
3904
3905 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3906 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3907 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003908 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3909 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3910 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003911 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3912 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003913 if (chash_init_server_tree(curproxy) < 0) {
3914 cfgerr++;
3915 }
Willy Tarreau9757a382009-10-03 12:56:50 +02003916 } else {
3917 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3918 fwrr_init_server_groups(curproxy);
3919 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003920 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003921
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003922 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003923 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3924 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3925 fwlc_init_server_tree(curproxy);
3926 } else {
3927 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3928 fas_init_server_tree(curproxy);
3929 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003930 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003931
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003932 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003933 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3934 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003935 if (chash_init_server_tree(curproxy) < 0) {
3936 cfgerr++;
3937 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003938 } else {
3939 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3940 init_server_map(curproxy);
3941 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003942 break;
3943 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003944 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003945
3946 if (curproxy->options & PR_O_LOGASAP)
3947 curproxy->to_log &= ~LW_BYTES;
3948
William Lallemand2c04a5a2021-08-13 15:21:12 +02003949 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003950 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3951 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003952 ha_warning("log format ignored for %s '%s' since it has no log address.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003953 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003954 err_code |= ERR_WARN;
3955 }
3956
Christopher Faulet3b6446f2021-03-15 15:10:38 +01003957 if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) {
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003958 int optnum;
3959
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003960 if (curproxy->uri_auth) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003961 ha_warning("'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003962 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003963 err_code |= ERR_WARN;
3964 curproxy->uri_auth = NULL;
3965 }
3966
Willy Tarreaude7dc882017-03-10 11:49:21 +01003967 if (curproxy->capture_name) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003968 ha_warning("'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003969 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003970 err_code |= ERR_WARN;
3971 }
3972
3973 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003974 ha_warning("'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003975 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003976 err_code |= ERR_WARN;
3977 }
3978
3979 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003980 ha_warning("'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003981 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003982 err_code |= ERR_WARN;
3983 }
3984
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003985 if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003986 ha_warning("'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003987 proxy_type_str(curproxy), curproxy->id);
3988 err_code |= ERR_WARN;
3989 }
3990
Willy Tarreaude7dc882017-03-10 11:49:21 +01003991 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003992 ha_warning("'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003993 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003994 err_code |= ERR_WARN;
3995 }
3996
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003997 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3998 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3999 (curproxy->cap & cfg_opts[optnum].cap) &&
4000 (curproxy->options & cfg_opts[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004001 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004002 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01004003 err_code |= ERR_WARN;
4004 curproxy->options &= ~cfg_opts[optnum].val;
4005 }
4006 }
4007
4008 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
4009 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
4010 (curproxy->cap & cfg_opts2[optnum].cap) &&
4011 (curproxy->options2 & cfg_opts2[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004012 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004013 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01004014 err_code |= ERR_WARN;
4015 curproxy->options2 &= ~cfg_opts2[optnum].val;
4016 }
4017 }
Willy Tarreaubce70882009-09-07 11:51:47 +02004018
Willy Tarreau29fbe512015-08-20 19:35:14 +02004019#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01004020 if (curproxy->conn_src.bind_hdr_occ) {
4021 curproxy->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02004022 ha_warning("%s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004023 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02004024 err_code |= ERR_WARN;
4025 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02004026#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01004027 }
4028
Willy Tarreaubaaee002006-06-26 02:48:02 +02004029 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01004030 * ensure that we're not cross-dressing a TCP server into HTTP.
4031 */
4032 newsrv = curproxy->srv;
4033 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01004034 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004035 ha_alert("%s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004036 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02004037 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01004038 }
Willy Tarreaubce70882009-09-07 11:51:47 +02004039
Willy Tarreau0cec3312011-10-31 13:49:26 +01004040 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004041 ha_warning("%s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004042 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01004043 err_code |= ERR_WARN;
4044 }
4045
Willy Tarreauc93cd162014-05-13 15:54:22 +02004046 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004047 ha_warning("%s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004048 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02004049 err_code |= ERR_WARN;
4050 }
4051
Willy Tarreau29fbe512015-08-20 19:35:14 +02004052#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01004053 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
4054 newsrv->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02004055 ha_warning("%s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004056 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02004057 err_code |= ERR_WARN;
4058 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02004059#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01004060
Willy Tarreau46deab62018-04-28 07:18:15 +02004061 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
4062 curproxy->options &= ~PR_O_REUSE_MASK;
4063
Willy Tarreau21d2af32008-02-14 20:25:24 +01004064 newsrv = newsrv->next;
4065 }
4066
Christopher Fauletd7c91962015-04-30 11:48:27 +02004067 /* Check filter configuration, if any */
4068 cfgerr += flt_check(curproxy);
4069
Willy Tarreauc1a21672009-08-16 22:37:44 +02004070 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02004071 if (!curproxy->accept)
4072 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02004073
Christopher Fauletee08d6c2021-10-13 15:40:15 +02004074 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
4075 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02004076 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02004077
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004078 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02004079 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004080 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004081 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004082
William Lallemandcf62f7e2018-10-26 14:47:40 +02004083 if (curproxy->mode == PR_MODE_CLI) {
4084 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
4085 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
4086 }
4087
Willy Tarreauc1a21672009-08-16 22:37:44 +02004088 /* both TCP and HTTP must check switching rules */
4089 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02004090
4091 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01004092 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01004093 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
4094 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 +02004095 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004096 }
4097
4098 if (curproxy->cap & PR_CAP_BE) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02004099 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
4100 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02004101 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
4102
Christopher Fauletee08d6c2021-10-13 15:40:15 +02004103 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules) ||
4104 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_rep.inspect_rules)))
Emeric Brun97679e72010-09-23 17:56:44 +02004105 curproxy->be_rsp_ana |= AN_RES_INSPECT;
4106
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004107 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02004108 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004109 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004110 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004111
4112 /* If the backend does requires RDP cookie persistence, we have to
4113 * enable the corresponding analyser.
4114 */
4115 if (curproxy->options2 & PR_O2_RDPC_PRST)
4116 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02004117
4118 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01004119 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01004120 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
4121 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 +02004122 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004123 }
Christopher Fauleta717b992018-04-10 14:43:00 +02004124
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004125 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02004126 * attached to the current proxy */
4127 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
4128 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01004129 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02004130
Willy Tarreau730cc022022-05-20 18:07:06 +02004131 if (!bind_conf->mux_proto) {
4132 /* No protocol was specified. If we're using QUIC at the transport
4133 * layer, we'll instantiate it as a mux as well. If QUIC is not
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05004134 * compiled in, this will remain NULL.
Willy Tarreau730cc022022-05-20 18:07:06 +02004135 */
4136 if (bind_conf->xprt && bind_conf->xprt == xprt_get(XPRT_QUIC))
4137 bind_conf->mux_proto = get_mux_proto(ist("quic"));
4138 }
4139
Christopher Fauleta717b992018-04-10 14:43:00 +02004140 if (!bind_conf->mux_proto)
4141 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01004142
4143 /* it is possible that an incorrect mux was referenced
4144 * due to the proxy's mode not being taken into account
4145 * on first pass. Let's adjust it now.
4146 */
4147 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
4148
4149 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004150 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
Christopher Fauleta717b992018-04-10 14:43:00 +02004151 proxy_type_str(curproxy), curproxy->id,
4152 (int)bind_conf->mux_proto->token.len,
4153 bind_conf->mux_proto->token.ptr,
4154 bind_conf->arg, bind_conf->file, bind_conf->line);
4155 cfgerr++;
Willy Tarreaucac619b2022-05-20 17:53:32 +02004156 } else {
4157 if ((mux_ent->mux->flags & MX_FL_FRAMED) && !(bind_conf->options & BC_O_USE_SOCK_DGRAM)) {
4158 ha_alert("%s '%s' : frame-based MUX protocol '%.*s' is incompatible with stream transport of 'bind %s' at [%s:%d].\n",
4159 proxy_type_str(curproxy), curproxy->id,
4160 (int)bind_conf->mux_proto->token.len,
4161 bind_conf->mux_proto->token.ptr,
4162 bind_conf->arg, bind_conf->file, bind_conf->line);
4163 cfgerr++;
4164 }
4165 else if (!(mux_ent->mux->flags & MX_FL_FRAMED) && !(bind_conf->options & BC_O_USE_SOCK_STREAM)) {
4166 ha_alert("%s '%s' : stream-based MUX protocol '%.*s' is incompatible with framed transport of 'bind %s' at [%s:%d].\n",
4167 proxy_type_str(curproxy), curproxy->id,
4168 (int)bind_conf->mux_proto->token.len,
4169 bind_conf->mux_proto->token.ptr,
4170 bind_conf->arg, bind_conf->file, bind_conf->line);
4171 cfgerr++;
4172 }
Christopher Fauleta717b992018-04-10 14:43:00 +02004173 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01004174
4175 /* update the mux */
4176 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02004177 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004178 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
4179 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01004180 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004181
4182 if (!newsrv->mux_proto)
4183 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01004184
4185 /* it is possible that an incorrect mux was referenced
4186 * due to the proxy's mode not being taken into account
4187 * on first pass. Let's adjust it now.
4188 */
4189 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
4190
4191 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004192 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004193 proxy_type_str(curproxy), curproxy->id,
4194 (int)newsrv->mux_proto->token.len,
4195 newsrv->mux_proto->token.ptr,
4196 newsrv->id, newsrv->conf.file, newsrv->conf.line);
4197 cfgerr++;
4198 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01004199
4200 /* update the mux */
4201 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004202 }
Amaury Denoyellef2c27a52021-07-23 15:46:46 +02004203
4204 /* Allocate default tcp-check rules for proxies without
4205 * explicit rules.
4206 */
4207 if (curproxy->cap & PR_CAP_BE) {
4208 if (!(curproxy->options2 & PR_O2_CHK_ANY)) {
4209 struct tcpcheck_ruleset *rs = NULL;
4210 struct tcpcheck_rules *rules = &curproxy->tcpcheck_rules;
4211
4212 curproxy->options2 |= PR_O2_TCPCHK_CHK;
4213
4214 rs = find_tcpcheck_ruleset("*tcp-check");
4215 if (!rs) {
4216 rs = create_tcpcheck_ruleset("*tcp-check");
4217 if (rs == NULL) {
4218 ha_alert("config: %s '%s': out of memory.\n",
4219 proxy_type_str(curproxy), curproxy->id);
4220 cfgerr++;
4221 }
4222 }
4223
4224 free_tcpcheck_vars(&rules->preset_vars);
4225 rules->list = &rs->rules;
4226 rules->flags = 0;
4227 }
4228 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01004229 }
Willy Tarreau835daa12019-02-07 14:46:29 +01004230
Emeric Brun3b68b602022-08-18 15:53:21 +02004231 /*
4232 * We have just initialized the main proxies list
4233 * we must also configure the log-forward proxies list
4234 */
4235 if (init_proxies_list == proxies_list) {
4236 init_proxies_list = cfg_log_forward;
Emeric Brun8032a272022-08-22 10:25:11 +02004237 /* check if list is not null to avoid infinite loop */
4238 if (init_proxies_list)
4239 goto init_proxies_list_stage1;
Emeric Brun3b68b602022-08-18 15:53:21 +02004240 }
4241
Emeric Brund6e581d2022-09-13 16:16:30 +02004242 if (init_proxies_list == cfg_log_forward) {
4243 init_proxies_list = sink_proxies_list;
4244 /* check if list is not null to avoid infinite loop */
4245 if (init_proxies_list)
4246 goto init_proxies_list_stage1;
4247 }
4248
Willy Tarreau4cdac162021-03-05 10:48:42 +01004249 /***********************************************************/
4250 /* At this point, target names have already been resolved. */
4251 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01004252
Willy Tarreau4cdac162021-03-05 10:48:42 +01004253 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01004254
Willy Tarreau4cdac162021-03-05 10:48:42 +01004255 list_for_each_entry(newsrv, &servers_list, global_list) {
4256 /* initialize idle conns lists */
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004257 if (srv_init_per_thr(newsrv) == -1) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004258 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
4259 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01004260 cfgerr++;
4261 continue;
4262 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004263
Willy Tarreau4cdac162021-03-05 10:48:42 +01004264 if (newsrv->max_idle_conns != 0) {
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004265 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
4266 if (!newsrv->curr_idle_thr) {
4267 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
4268 newsrv->conf.file, newsrv->conf.line, newsrv->id);
4269 cfgerr++;
4270 continue;
4271 }
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02004272
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004273 }
4274 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004275
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004276 idle_conn_task = task_new_anywhere();
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004277 if (!idle_conn_task) {
4278 ha_alert("parsing : failed to allocate global idle connection task.\n");
4279 cfgerr++;
4280 }
4281 else {
4282 idle_conn_task->process = srv_cleanup_idle_conns;
4283 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004284
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004285 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004286 idle_conns[i].cleanup_task = task_new_on(i);
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004287 if (!idle_conns[i].cleanup_task) {
4288 ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i);
4289 cfgerr++;
4290 break;
Willy Tarreau4cdac162021-03-05 10:48:42 +01004291 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004292
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004293 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
4294 idle_conns[i].cleanup_task->context = NULL;
4295 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
4296 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Willy Tarreau835daa12019-02-07 14:46:29 +01004297 }
Willy Tarreau419ead82014-09-16 13:41:21 +02004298 }
4299
Willy Tarreau419ead82014-09-16 13:41:21 +02004300 /* perform the final checks before creating tasks */
4301
Emeric Brun3b68b602022-08-18 15:53:21 +02004302 /* starting to initialize the main proxies list */
4303 init_proxies_list = proxies_list;
4304
4305init_proxies_list_stage2:
4306 for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02004307 struct listener *listener;
4308 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02004309
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004310 /* Configure SSL for each bind line.
4311 * Note: if configuration fails at some point, the ->ctx member
4312 * remains NULL so that listeners can later detach.
4313 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004314 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01004315 if (bind_conf->xprt->prepare_bind_conf &&
4316 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004317 cfgerr++;
Willy Tarreau7866e8e2023-01-12 18:39:42 +01004318 bind_conf->analysers |= curproxy->fe_req_ana;
Willy Tarreau882f2482023-01-12 18:52:23 +01004319 if (!bind_conf->maxaccept)
4320 bind_conf->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau30836152023-01-12 19:10:17 +01004321 bind_conf->accept = session_accept_fd;
Willy Tarreaucfb7c2f2023-01-12 19:37:07 +01004322 if (curproxy->options & PR_O_TCP_NOLING)
4323 bind_conf->options |= BC_O_NOLINGER;
Willy Tarreau9bdcf422023-01-12 19:40:42 +01004324
4325 /* smart accept mode is automatic in HTTP mode */
4326 if ((curproxy->options2 & PR_O2_SMARTACC) ||
4327 ((curproxy->mode == PR_MODE_HTTP || (bind_conf->options & BC_O_USE_SSL)) &&
4328 !(curproxy->no_options2 & PR_O2_SMARTACC)))
4329 bind_conf->options |= BC_O_NOQUICKACK;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004330 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004331
Willy Tarreaue6b98942007-10-29 01:09:36 +01004332 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004333 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02004334 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004335 if (!listener->luid) {
4336 /* listener ID not set, use automatic numbering with first
4337 * spare entry starting with next_luid.
4338 */
4339 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
4340 listener->conf.id.key = listener->luid = next_id;
4341 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004342 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01004343 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004344
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004345 /* enable separate counters */
4346 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01004347 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004348 if (!listener->name)
4349 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004350 }
Willy Tarreau81796be2012-09-22 19:11:47 +02004351
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01004352#ifdef USE_QUIC
Willy Tarreau9e2682a2023-01-12 20:20:57 +01004353 if (listener->bind_conf->xprt == xprt_get(XPRT_QUIC)) {
Amaury Denoyelle996ca7d2022-11-14 16:17:13 +01004354 if (!global.cluster_secret) {
Frédéric Lécaille372508c2022-05-06 08:53:16 +02004355 diag_no_cluster_secret = 1;
Amaury Denoyelle996ca7d2022-11-14 16:17:13 +01004356 if (listener->bind_conf->options & BC_O_QUIC_FORCE_RETRY) {
4357 ha_alert("QUIC listener with quic-force-retry requires global cluster-secret to be set.\n");
4358 cfgerr++;
4359 }
4360 }
Amaury Denoyelle0aba11e2022-09-29 18:31:24 +02004361
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01004362 li_init_per_thr(listener);
4363 }
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01004364#endif
Willy Tarreaue6b98942007-10-29 01:09:36 +01004365 }
4366
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004367 /* Release unused SSL configs */
4368 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau11ba4042022-05-20 15:56:32 +02004369 if (!(bind_conf->options & BC_O_USE_SSL) && bind_conf->xprt->destroy_bind_conf)
Willy Tarreau795cdab2016-12-22 17:30:54 +01004370 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004371 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004372
Willy Tarreau918ff602011-07-25 16:33:49 +02004373 /* create the task associated with the proxy */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004374 curproxy->task = task_new_anywhere();
Willy Tarreau918ff602011-07-25 16:33:49 +02004375 if (curproxy->task) {
4376 curproxy->task->context = curproxy;
4377 curproxy->task->process = manage_proxy;
Christopher Faulet56717802021-10-13 10:10:09 +02004378 curproxy->flags |= PR_FL_READY;
Willy Tarreau918ff602011-07-25 16:33:49 +02004379 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004380 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
4381 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02004382 cfgerr++;
4383 }
Willy Tarreaub369a042014-09-16 13:21:03 +02004384 }
4385
Emeric Brun3b68b602022-08-18 15:53:21 +02004386 /*
4387 * We have just initialized the main proxies list
4388 * we must also configure the log-forward proxies list
4389 */
4390 if (init_proxies_list == proxies_list) {
4391 init_proxies_list = cfg_log_forward;
Emeric Brun8032a272022-08-22 10:25:11 +02004392 /* check if list is not null to avoid infinite loop */
4393 if (init_proxies_list)
4394 goto init_proxies_list_stage2;
Emeric Brun3b68b602022-08-18 15:53:21 +02004395 }
4396
Amaury Denoyelle28ea31c2022-11-14 16:18:46 +01004397 if (diag_no_cluster_secret) {
4398 ha_diag_warning("Generating a random cluster secret. "
4399 "You should define your own one in the configuration to ensure consistency "
4400 "after reload/restart or across your whole cluster.\n");
4401 }
Frédéric Lécaille372508c2022-05-06 08:53:16 +02004402
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004403 /*
4404 * Recount currently required checks.
4405 */
4406
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004407 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004408 int optnum;
4409
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004410 for (optnum = 0; cfg_opts[optnum].name; optnum++)
4411 if (curproxy->options & cfg_opts[optnum].val)
4412 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004413
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004414 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
4415 if (curproxy->options2 & cfg_opts2[optnum].val)
4416 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004417 }
4418
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004419 if (cfg_peers) {
4420 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02004421 struct peer *p, *pb;
4422
Willy Tarreau1e273012015-05-01 19:15:17 +02004423 /* Remove all peers sections which don't have a valid listener,
4424 * which are not used by any table, or which are bound to more
4425 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02004426 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004427 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02004428 while (*last) {
Frédéric Lécaille36d15652022-10-17 14:58:19 +02004429 struct peer *peer;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004430 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02004431 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004432
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02004433 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004434 /* the "disabled" keyword was present */
4435 if (curpeers->peers_fe)
4436 stop_proxy(curpeers->peers_fe);
4437 curpeers->peers_fe = NULL;
4438 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02004439 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004440 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
4441 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004442 if (curpeers->peers_fe)
4443 stop_proxy(curpeers->peers_fe);
4444 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004445 }
4446 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004447 /* Initializes the transport layer of the server part of all the peers belonging to
4448 * <curpeers> section if required.
4449 * Note that ->srv is used by the local peer of a new process to connect to the local peer
4450 * of an old process.
4451 */
Christopher Faulet56717802021-10-13 10:10:09 +02004452 curpeers->peers_fe->flags |= PR_FL_READY;
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004453 p = curpeers->remote;
4454 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004455 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004456 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 +01004457 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
4458 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004459 p = p->next;
4460 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004461 /* Configure the SSL bindings of the local peer if required. */
4462 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
4463 struct list *l;
4464 struct bind_conf *bind_conf;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004465 struct listener *li;
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004466
4467 l = &curpeers->peers_fe->conf.bind;
4468 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
Willy Tarreaud2494e02022-07-05 16:00:56 +02004469
Christopher Faulet1b6fa7f2022-07-26 19:03:51 +02004470 if (curpeers->local->srv) {
4471 if (curpeers->local->srv->use_ssl == 1 && !(bind_conf->options & BC_O_USE_SSL)) {
4472 ha_warning("Peers section '%s': local peer have a non-SSL listener and a SSL server configured at line %s:%d.\n",
4473 curpeers->peers_fe->id, curpeers->local->conf.file, curpeers->local->conf.line);
4474 }
4475 else if (curpeers->local->srv->use_ssl != 1 && (bind_conf->options & BC_O_USE_SSL)) {
4476 ha_warning("Peers section '%s': local peer have a SSL listener and a non-SSL server configured at line %s:%d.\n",
4477 curpeers->peers_fe->id, curpeers->local->conf.file, curpeers->local->conf.line);
4478 }
4479 }
4480
Willy Tarreaud2494e02022-07-05 16:00:56 +02004481 err = NULL;
Willy Tarreauf2988e12023-02-02 17:01:10 +01004482 if (thread_resolve_group_mask(&bind_conf->thread_set, 1, &err) < 0) {
Willy Tarreaud2494e02022-07-05 16:00:56 +02004483 ha_alert("Peers section '%s': %s in 'bind %s' at [%s:%d].\n",
4484 curpeers->peers_fe->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
4485 free(err);
4486 cfgerr++;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004487 }
Willy Tarreau97da9422023-03-01 11:24:29 +01004488 else if (atleast2(bind_conf->thread_set.grps)) {
Willy Tarreauf0de8ca2023-01-31 19:31:27 +01004489 ha_alert("Peers section '%s': 'thread' spans more than one group in 'bind %s' at [%s:%d].\n",
4490 curpeers->peers_fe->id, bind_conf->arg, bind_conf->file, bind_conf->line);
4491 cfgerr++;
4492 }
Willy Tarreaud2494e02022-07-05 16:00:56 +02004493
4494 /* apply thread masks and groups to all receivers */
4495 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
Willy Tarreau7b8aac42023-02-27 11:27:38 +01004496 li->rx.bind_thread = thread_set_nth_tmask(&bind_conf->thread_set, 0);
4497 li->rx.bind_tgroup = thread_set_nth_group(&bind_conf->thread_set, 0);
Willy Tarreaud2494e02022-07-05 16:00:56 +02004498 }
4499
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004500 if (bind_conf->xprt->prepare_bind_conf &&
4501 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4502 cfgerr++;
4503 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004504 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004505 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4506 curpeers->id);
4507 cfgerr++;
4508 break;
4509 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004510 last = &curpeers->next;
Frédéric Lécaille36d15652022-10-17 14:58:19 +02004511
4512 /* Ignore the peer shard greater than the number of peer shard for this section.
4513 * Also ignore the peer shard of the local peer.
4514 */
4515 for (peer = curpeers->remote; peer; peer = peer->next) {
4516 if (peer == curpeers->local) {
4517 if (peer->srv->shard) {
4518 ha_warning("Peers section '%s': shard ignored for '%s' local peer\n",
4519 curpeers->id, peer->id);
4520 peer->srv->shard = 0;
4521 }
4522 }
4523 else if (peer->srv->shard > curpeers->nb_shards) {
4524 ha_warning("Peers section '%s': shard ignored for '%s' local peer because "
4525 "%d shard value is greater than the section number of shards (%d)\n",
4526 curpeers->id, peer->id, peer->srv->shard, curpeers->nb_shards);
4527 peer->srv->shard = 0;
4528 }
4529 }
4530
Willy Tarreau122541c2011-09-07 21:24:49 +02004531 continue;
4532 }
4533
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004534 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004535 p = curpeers->remote;
4536 while (p) {
4537 pb = p->next;
4538 free(p->id);
4539 free(p);
4540 p = pb;
4541 }
4542
4543 /* Destroy and unlink this curpeers section.
4544 * Note: curpeers is backed up into *last.
4545 */
4546 free(curpeers->id);
4547 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004548 /* Reset any refereance to this peers section in the list of stick-tables */
4549 for (t = stktables_list; t; t = t->next) {
4550 if (t->peers.p && t->peers.p == *last)
4551 t->peers.p = NULL;
4552 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004553 free(*last);
4554 *last = curpeers;
4555 }
4556 }
4557
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004558 for (t = stktables_list; t; t = t->next) {
4559 if (t->proxy)
4560 continue;
4561 if (!stktable_init(t)) {
4562 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4563 cfgerr++;
4564 }
4565 }
4566
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004567 /* initialize stick-tables on backend capable proxies. This must not
4568 * be done earlier because the data size may be discovered while parsing
4569 * other proxies.
4570 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004571 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004572 if ((curproxy->flags & PR_FL_DISABLED) || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004573 continue;
4574
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004575 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004576 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004577 cfgerr++;
4578 }
4579 }
4580
Simon Horman0d16a402015-01-30 11:22:58 +09004581 if (mailers) {
4582 struct mailers *curmailers = mailers, **last;
4583 struct mailer *m, *mb;
4584
4585 /* Remove all mailers sections which don't have a valid listener.
4586 * This can happen when a mailers section is never referenced.
4587 */
4588 last = &mailers;
4589 while (*last) {
4590 curmailers = *last;
4591 if (curmailers->users) {
4592 last = &curmailers->next;
4593 continue;
4594 }
4595
Christopher Faulet767a84b2017-11-24 16:50:31 +01004596 ha_warning("Removing incomplete section 'mailers %s'.\n",
4597 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004598
4599 m = curmailers->mailer_list;
4600 while (m) {
4601 mb = m->next;
4602 free(m->id);
4603 free(m);
4604 m = mb;
4605 }
4606
4607 /* Destroy and unlink this curmailers section.
4608 * Note: curmailers is backed up into *last.
4609 */
4610 free(curmailers->id);
4611 curmailers = curmailers->next;
4612 free(*last);
4613 *last = curmailers;
4614 }
4615 }
4616
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004617 /* Update server_state_file_name to backend name if backend is supposed to use
4618 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004619 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004620 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4621 curproxy->server_state_file_name == NULL)
4622 curproxy->server_state_file_name = strdup(curproxy->id);
4623 }
4624
Emeric Brun750fe792020-12-23 16:51:12 +01004625 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06004626 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004627 ha_warning("resolvers '%s' [%s:%d] has no nameservers configured!\n",
Ben Draut054fbee2018-04-13 15:43:04 -06004628 curr_resolvers->id, curr_resolvers->conf.file,
4629 curr_resolvers->conf.line);
4630 err_code |= ERR_WARN;
4631 }
4632 }
4633
William Lallemand48b4bb42017-10-23 14:36:34 +02004634 list_for_each_entry(postparser, &postparsers, list) {
4635 if (postparser->func)
4636 cfgerr += postparser->func();
4637 }
4638
Willy Tarreaubb925012009-07-23 13:36:36 +02004639 if (cfgerr > 0)
4640 err_code |= ERR_ALERT | ERR_FATAL;
4641 out:
4642 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004643}
4644
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004645/*
4646 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4647 * parsing sessions.
4648 */
4649void cfg_register_keywords(struct cfg_kw_list *kwl)
4650{
Willy Tarreau2b718102021-04-21 07:32:39 +02004651 LIST_APPEND(&cfg_keywords.list, &kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004652}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004653
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004654/*
4655 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4656 */
4657void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4658{
Willy Tarreau2b718102021-04-21 07:32:39 +02004659 LIST_DELETE(&kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004660 LIST_INIT(&kwl->list);
4661}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004662
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004663/* this function register new section in the haproxy configuration file.
4664 * <section_name> is the name of this new section and <section_parser>
4665 * is the called parser. If two section declaration have the same name,
4666 * only the first declared is used.
4667 */
4668int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004669 int (*section_parser)(const char *, int, char **, int),
4670 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004671{
4672 struct cfg_section *cs;
4673
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004674 list_for_each_entry(cs, &sections, list) {
4675 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004676 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004677 return 0;
4678 }
4679 }
4680
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004681 cs = calloc(1, sizeof(*cs));
4682 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004683 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004684 return 0;
4685 }
4686
4687 cs->section_name = section_name;
4688 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004689 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004690
Willy Tarreau2b718102021-04-21 07:32:39 +02004691 LIST_APPEND(&sections, &cs->list);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004692
4693 return 1;
4694}
4695
William Lallemand48b4bb42017-10-23 14:36:34 +02004696/* this function register a new function which will be called once the haproxy
4697 * configuration file has been parsed. It's useful to check dependencies
4698 * between sections or to resolve items once everything is parsed.
4699 */
4700int cfg_register_postparser(char *name, int (*func)())
4701{
4702 struct cfg_postparser *cp;
4703
4704 cp = calloc(1, sizeof(*cp));
4705 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004706 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004707 return 0;
4708 }
4709 cp->name = name;
4710 cp->func = func;
4711
Willy Tarreau2b718102021-04-21 07:32:39 +02004712 LIST_APPEND(&postparsers, &cp->list);
William Lallemand48b4bb42017-10-23 14:36:34 +02004713
4714 return 1;
4715}
4716
Willy Tarreaubaaee002006-06-26 02:48:02 +02004717/*
David Carlier845efb52015-09-25 11:49:18 +01004718 * free all config section entries
4719 */
4720void cfg_unregister_sections(void)
4721{
4722 struct cfg_section *cs, *ics;
4723
4724 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004725 LIST_DELETE(&cs->list);
David Carlier845efb52015-09-25 11:49:18 +01004726 free(cs);
4727 }
4728}
4729
Christopher Faulet7110b402016-10-26 11:09:44 +02004730void cfg_backup_sections(struct list *backup_sections)
4731{
4732 struct cfg_section *cs, *ics;
4733
4734 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004735 LIST_DELETE(&cs->list);
4736 LIST_APPEND(backup_sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004737 }
4738}
4739
4740void cfg_restore_sections(struct list *backup_sections)
4741{
4742 struct cfg_section *cs, *ics;
4743
4744 list_for_each_entry_safe(cs, ics, backup_sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004745 LIST_DELETE(&cs->list);
4746 LIST_APPEND(&sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004747 }
4748}
4749
Willy Tarreauca1acd62022-03-29 15:02:44 +02004750/* dumps all registered keywords by section on stdout */
4751void cfg_dump_registered_keywords()
4752{
William Lallemand44979ad2023-02-13 15:24:01 +01004753 /* CFG_GLOBAL, CFG_LISTEN, CFG_USERLIST, CFG_PEERS, CFG_CRTLIST */
4754 const char* sect_names[] = { "", "global", "listen", "userlist", "peers", "crt-list", 0 };
Willy Tarreauca1acd62022-03-29 15:02:44 +02004755 int section;
4756 int index;
4757
4758 for (section = 1; sect_names[section]; section++) {
4759 struct cfg_kw_list *kwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004760 const struct cfg_keyword *kwp, *kwn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004761
4762 printf("%s\n", sect_names[section]);
Willy Tarreaud9058262022-03-30 11:21:32 +02004763
4764 for (kwn = kwp = NULL;; kwp = kwn) {
4765 list_for_each_entry(kwl, &cfg_keywords.list, list) {
4766 for (index = 0; kwl->kw[index].kw != NULL; index++)
4767 if (kwl->kw[index].section == section &&
4768 strordered(kwp ? kwp->kw : NULL, kwl->kw[index].kw, kwn != kwp ? kwn->kw : NULL))
4769 kwn = &kwl->kw[index];
4770 }
4771 if (kwn == kwp)
4772 break;
4773 printf("\t%s\n", kwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004774 }
4775
4776 if (section == CFG_LISTEN) {
4777 /* there are plenty of other keywords there */
4778 extern struct list tcp_req_conn_keywords, tcp_req_sess_keywords,
4779 tcp_req_cont_keywords, tcp_res_cont_keywords;
4780 extern struct bind_kw_list bind_keywords;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004781 extern struct srv_kw_list srv_keywords;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004782 struct bind_kw_list *bkwl;
4783 struct srv_kw_list *skwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004784 const struct bind_kw *bkwp, *bkwn;
4785 const struct srv_kw *skwp, *skwn;
Willy Tarreaud9058262022-03-30 11:21:32 +02004786 const struct cfg_opt *coptp, *coptn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004787
William Lallemand44979ad2023-02-13 15:24:01 +01004788 /* display the non-ssl keywords */
Willy Tarreaud9058262022-03-30 11:21:32 +02004789 for (bkwn = bkwp = NULL;; bkwp = bkwn) {
4790 list_for_each_entry(bkwl, &bind_keywords.list, list) {
William Lallemand44979ad2023-02-13 15:24:01 +01004791 if (strcmp(bkwl->scope, "SSL") == 0) /* skip SSL keywords */
4792 continue;
4793 for (index = 0; bkwl->kw[index].kw != NULL; index++) {
Willy Tarreaud9058262022-03-30 11:21:32 +02004794 if (strordered(bkwp ? bkwp->kw : NULL,
4795 bkwl->kw[index].kw,
4796 bkwn != bkwp ? bkwn->kw : NULL))
4797 bkwn = &bkwl->kw[index];
William Lallemand44979ad2023-02-13 15:24:01 +01004798 }
Willy Tarreauca1acd62022-03-29 15:02:44 +02004799 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004800 if (bkwn == bkwp)
4801 break;
4802
4803 if (!bkwn->skip)
4804 printf("\tbind <addr> %s\n", bkwn->kw);
4805 else
4806 printf("\tbind <addr> %s +%d\n", bkwn->kw, bkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004807 }
Willy Tarreauca1acd62022-03-29 15:02:44 +02004808#if defined(USE_OPENSSL)
William Lallemand44979ad2023-02-13 15:24:01 +01004809 /* displays the "ssl" keywords */
4810 for (bkwn = bkwp = NULL;; bkwp = bkwn) {
4811 list_for_each_entry(bkwl, &bind_keywords.list, list) {
4812 if (strcmp(bkwl->scope, "SSL") != 0) /* skip non-SSL keywords */
4813 continue;
4814 for (index = 0; bkwl->kw[index].kw != NULL; index++) {
4815 if (strordered(bkwp ? bkwp->kw : NULL,
4816 bkwl->kw[index].kw,
4817 bkwn != bkwp ? bkwn->kw : NULL))
4818 bkwn = &bkwl->kw[index];
4819 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004820 }
William Lallemand44979ad2023-02-13 15:24:01 +01004821 if (bkwn == bkwp)
Willy Tarreaud9058262022-03-30 11:21:32 +02004822 break;
William Lallemand44979ad2023-02-13 15:24:01 +01004823
4824 if (strcmp(bkwn->kw, "ssl") == 0) /* skip "bind <addr> ssl ssl" */
4825 continue;
4826
4827 if (!bkwn->skip)
4828 printf("\tbind <addr> ssl %s\n", bkwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004829 else
William Lallemand44979ad2023-02-13 15:24:01 +01004830 printf("\tbind <addr> ssl %s +%d\n", bkwn->kw, bkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004831 }
4832#endif
Willy Tarreaud9058262022-03-30 11:21:32 +02004833 for (skwn = skwp = NULL;; skwp = skwn) {
4834 list_for_each_entry(skwl, &srv_keywords.list, list) {
4835 for (index = 0; skwl->kw[index].kw != NULL; index++)
4836 if (strordered(skwp ? skwp->kw : NULL,
4837 skwl->kw[index].kw,
4838 skwn != skwp ? skwn->kw : NULL))
4839 skwn = &skwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004840 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004841 if (skwn == skwp)
4842 break;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004843
Willy Tarreaud9058262022-03-30 11:21:32 +02004844 if (!skwn->skip)
4845 printf("\tserver <name> <addr> %s\n", skwn->kw);
4846 else
4847 printf("\tserver <name> <addr> %s +%d\n", skwn->kw, skwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004848 }
4849
Willy Tarreaud9058262022-03-30 11:21:32 +02004850 for (coptn = coptp = NULL;; coptp = coptn) {
4851 for (index = 0; cfg_opts[index].name; index++)
4852 if (strordered(coptp ? coptp->name : NULL,
4853 cfg_opts[index].name,
4854 coptn != coptp ? coptn->name : NULL))
4855 coptn = &cfg_opts[index];
4856
4857 for (index = 0; cfg_opts2[index].name; index++)
4858 if (strordered(coptp ? coptp->name : NULL,
4859 cfg_opts2[index].name,
4860 coptn != coptp ? coptn->name : NULL))
4861 coptn = &cfg_opts2[index];
4862 if (coptn == coptp)
4863 break;
4864
4865 printf("\toption %s [ ", coptn->name);
4866 if (coptn->cap & PR_CAP_FE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004867 printf("FE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004868 if (coptn->cap & PR_CAP_BE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004869 printf("BE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004870 if (coptn->mode == PR_MODE_HTTP)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004871 printf("HTTP ");
4872 printf("]\n");
4873 }
4874
Willy Tarreaud9058262022-03-30 11:21:32 +02004875 dump_act_rules(&tcp_req_conn_keywords, "\ttcp-request connection ");
4876 dump_act_rules(&tcp_req_sess_keywords, "\ttcp-request session ");
4877 dump_act_rules(&tcp_req_cont_keywords, "\ttcp-request content ");
4878 dump_act_rules(&tcp_res_cont_keywords, "\ttcp-response content ");
4879 dump_act_rules(&http_req_keywords.list, "\thttp-request ");
4880 dump_act_rules(&http_res_keywords.list, "\thttp-response ");
4881 dump_act_rules(&http_after_res_keywords.list, "\thttp-after-response ");
Willy Tarreauca1acd62022-03-29 15:02:44 +02004882 }
William Lallemand44979ad2023-02-13 15:24:01 +01004883 if (section == CFG_CRTLIST) {
4884 /* displays the keyword available for the crt-lists */
4885 extern struct ssl_crtlist_kw ssl_crtlist_kws[] __maybe_unused;
4886 const struct ssl_crtlist_kw *sbkwp __maybe_unused, *sbkwn __maybe_unused;
4887
4888#if defined(USE_OPENSSL)
4889 for (sbkwn = sbkwp = NULL;; sbkwp = sbkwn) {
4890 for (index = 0; ssl_crtlist_kws[index].kw != NULL; index++) {
4891 if (strordered(sbkwp ? sbkwp->kw : NULL,
4892 ssl_crtlist_kws[index].kw,
4893 sbkwn != sbkwp ? sbkwn->kw : NULL))
4894 sbkwn = &ssl_crtlist_kws[index];
4895 }
4896 if (sbkwn == sbkwp)
4897 break;
4898 if (!sbkwn->skip)
4899 printf("\t%s\n", sbkwn->kw);
4900 else
4901 printf("\t%s +%d\n", sbkwn->kw, sbkwn->skip);
4902 }
4903#endif
4904
4905 }
Willy Tarreauca1acd62022-03-29 15:02:44 +02004906 }
4907}
4908
Willy Tarreaue6552512018-11-26 11:33:13 +01004909/* these are the config sections handled by default */
4910REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4911REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4912REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4913REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4914REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4915REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4916REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4917REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4918REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004919
Willy Tarreau8a022d52021-04-27 20:29:11 +02004920static struct cfg_kw_list cfg_kws = {{ },{
4921 { CFG_GLOBAL, "default-path", cfg_parse_global_def_path },
4922 { /* END */ }
4923}};
4924
4925INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4926
David Carlier845efb52015-09-25 11:49:18 +01004927/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004928 * Local variables:
4929 * c-indent-level: 8
4930 * c-basic-offset: 8
4931 * End:
4932 */