blob: 9c3acf07a0f603c005f916cec9d49c8250e86974 [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
Willy Tarreau615c3012023-05-05 16:10:05 +0200519 * ('-'). Each CPU set can be a list of unique numbers or ranges separated by
520 * a comma. It is also possible to specify multiple cpu numbers or ranges in
521 * distinct argument in <args>. On success, it returns 0, otherwise it returns
522 * 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200523 */
Willy Tarreau615c3012023-05-05 16:10:05 +0200524unsigned long parse_cpu_set(const char **args, struct hap_cpuset *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200525{
526 int cur_arg = 0;
Amaury Denoyellea8082352021-04-06 16:46:15 +0200527 const char *arg;
Christopher Faulet62519022017-10-16 15:49:32 +0200528
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200529 ha_cpuset_zero(cpu_set);
530
Amaury Denoyellea8082352021-04-06 16:46:15 +0200531 arg = args[cur_arg];
532 while (*arg) {
533 const char *dash, *comma;
Christopher Faulet62519022017-10-16 15:49:32 +0200534 unsigned int low, high;
535
Willy Tarreau90807112020-02-25 08:16:33 +0100536 if (!isdigit((unsigned char)*args[cur_arg])) {
Amaury Denoyellea8082352021-04-06 16:46:15 +0200537 memprintf(err, "'%s' is not a CPU range.", arg);
Christopher Faulet62519022017-10-16 15:49:32 +0200538 return -1;
539 }
540
Amaury Denoyellea8082352021-04-06 16:46:15 +0200541 low = high = str2uic(arg);
542
Willy Tarreau615c3012023-05-05 16:10:05 +0200543 comma = strchr(arg, ',');
Amaury Denoyellea8082352021-04-06 16:46:15 +0200544 dash = strchr(arg, '-');
545
546 if (dash && (!comma || dash < comma))
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200547 high = *(dash+1) ? str2uic(dash + 1) : ha_cpuset_size() - 1;
Christopher Faulet62519022017-10-16 15:49:32 +0200548
549 if (high < low) {
550 unsigned int swap = low;
551 low = high;
552 high = swap;
553 }
554
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200555 if (high >= ha_cpuset_size()) {
556 memprintf(err, "supports CPU numbers from 0 to %d.",
557 ha_cpuset_size() - 1);
Christopher Faulet62519022017-10-16 15:49:32 +0200558 return 1;
559 }
560
561 while (low <= high)
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200562 ha_cpuset_set(cpu_set, low++);
Christopher Faulet62519022017-10-16 15:49:32 +0200563
Amaury Denoyellea8082352021-04-06 16:46:15 +0200564 /* if a comma is present, parse the rest of the arg, else
565 * skip to the next arg */
566 arg = comma ? comma + 1 : args[++cur_arg];
Christopher Faulet62519022017-10-16 15:49:32 +0200567 }
568 return 0;
569}
David Carlier7e351ee2017-12-01 09:14:02 +0000570#endif
571
Frédéric Lécaille18251032019-01-11 11:07:15 +0100572/* Allocate and initialize the frontend of a "peers" section found in
Christopher Faulet244331f2022-07-25 15:10:44 +0200573 * file <file> at line <linenum> with <id> as ID.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100574 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200575 * Note that this function may be called from "default-server"
576 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100577 */
Christopher Faulet244331f2022-07-25 15:10:44 +0200578static int init_peers_frontend(const char *file, int linenum,
579 const char *id, struct peers *peers)
Frédéric Lécaille18251032019-01-11 11:07:15 +0100580{
581 struct proxy *p;
582
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200583 if (peers->peers_fe) {
584 p = peers->peers_fe;
585 goto out;
586 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100587
Frédéric Lécaille18251032019-01-11 11:07:15 +0100588 p = calloc(1, sizeof *p);
589 if (!p) {
590 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
591 return -1;
592 }
593
594 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200595 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100596 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200597 /* Finally store this frontend. */
598 peers->peers_fe = p;
599
600 out:
Christopher Faulet244331f2022-07-25 15:10:44 +0200601 if (id && !p->id)
602 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200603 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100604 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100605 if (linenum != -1)
606 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100607
608 return 0;
609}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100610
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100611/* Only change ->file, ->line and ->arg struct bind_conf member values
612 * if already present.
613 */
614static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
615 const char *file, int line,
616 const char *arg, struct xprt_ops *xprt)
617{
618 struct bind_conf *bind_conf;
619
620 if (!LIST_ISEMPTY(&p->conf.bind)) {
621 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200622 /*
623 * We keep bind_conf->file and bind_conf->line unchanged
624 * to make them available for error messages
625 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100626 if (arg) {
627 free(bind_conf->arg);
628 bind_conf->arg = strdup(arg);
629 }
630 }
631 else {
632 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
633 }
634
635 return bind_conf;
636}
637
638/*
639 * Allocate a new struct peer parsed at line <linenum> in file <file>
640 * to be added to <peers>.
641 * Returns the new allocated structure if succeeded, NULL if not.
642 */
643static struct peer *cfg_peers_add_peer(struct peers *peers,
644 const char *file, int linenum,
645 const char *id, int local)
646{
647 struct peer *p;
648
649 p = calloc(1, sizeof *p);
650 if (!p) {
651 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
652 return NULL;
653 }
654
655 /* the peers are linked backwards first */
656 peers->count++;
Christopher Faulet387e7972022-05-12 14:47:52 +0200657 p->peers = peers;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100658 p->next = peers->remote;
659 peers->remote = p;
660 p->conf.file = strdup(file);
661 p->conf.line = linenum;
Willy Tarreau69530f52023-04-28 09:16:15 +0200662 p->last_change = ns_to_sec(now_ns);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100663 p->xprt = xprt_get(XPRT_RAW);
664 p->sock_init_arg = NULL;
665 HA_SPIN_INIT(&p->lock);
666 if (id)
667 p->id = strdup(id);
668 if (local) {
669 p->local = 1;
670 peers->local = p;
671 }
672
673 return p;
674}
675
Willy Tarreaubaaee002006-06-26 02:48:02 +0200676/*
William Lallemand51097192015-04-14 16:35:22 +0200677 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200678 * Returns the error code, 0 if OK, or any combination of :
679 * - ERR_ABORT: must abort ASAP
680 * - ERR_FATAL: we can continue parsing but not start the service
681 * - ERR_WARN: a warning has been emitted
682 * - ERR_ALERT: an alert has been emitted
683 * Only the two first ones can stop processing, the two others are just
684 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200685 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200686int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
687{
688 static struct peers *curpeers = NULL;
Frédéric Lécaille36d15652022-10-17 14:58:19 +0200689 static int nb_shards = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200690 struct peer *newpeer = NULL;
691 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200692 struct bind_conf *bind_conf;
Emeric Brun32da3c42010-09-23 18:39:19 +0200693 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100694 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100695 static int bind_line, peer_line;
696
697 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
698 int cur_arg;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100699 struct bind_conf *bind_conf;
Willy Tarreau55f0f7b2022-05-20 15:44:17 +0200700 int ret;
Emeric Brun32da3c42010-09-23 18:39:19 +0200701
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100702 cur_arg = 1;
703
Christopher Faulet244331f2022-07-25 15:10:44 +0200704 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200705 err_code |= ERR_ALERT | ERR_ABORT;
706 goto out;
707 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100708
709 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
Willy Tarreau8d158132022-07-05 15:54:09 +0200710 args[1], xprt_get(XPRT_RAW));
William Lallemand1d932172022-07-06 14:30:23 +0200711 if (!bind_conf) {
712 ha_alert("parsing [%s:%d] : '%s %s' : cannot allocate memory.\n", file, linenum, args[0], args[1]);
713 err_code |= ERR_FATAL;
714 goto out;
715 }
Willy Tarreau882f2482023-01-12 18:52:23 +0100716
717 bind_conf->maxaccept = 1;
Willy Tarreau30836152023-01-12 19:10:17 +0100718 bind_conf->accept = session_accept_fd;
Willy Tarreau17146802023-01-12 19:58:42 +0100719 bind_conf->options |= BC_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau882f2482023-01-12 18:52:23 +0100720
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100721 if (*args[0] == 'b') {
722 struct listener *l;
723
724 if (peer_line) {
725 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
726 err_code |= ERR_ALERT | ERR_FATAL;
727 goto out;
728 }
729
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200730 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
731 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);
732 err_code |= ERR_FATAL;
733 }
734
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100735 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
736 if (errmsg && *errmsg) {
737 indent_msg(&errmsg, 2);
738 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
739 }
740 else
741 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
Willy Tarreau0d044102022-05-20 15:19:48 +0200742 file, linenum, args[0], args[1], args[1]);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100743 err_code |= ERR_FATAL;
744 goto out;
745 }
Willy Tarreau17146802023-01-12 19:58:42 +0100746
Christopher Fauletaf27ada2023-06-02 14:10:36 +0200747 /* Only one listener supported. Compare first listener
748 * against the last one. It must be the same one.
749 */
750 if (bind_conf->listeners.n != bind_conf->listeners.p) {
751 ha_alert("parsing [%s:%d] : Only one listener per \"peers\" section is authorized. Multiple listening addresses or port range are not supported.\n", file, linenum);
752 err_code |= ERR_ALERT | ERR_FATAL;
753 goto out;
754 }
Emeric Brunca825782022-05-25 10:25:45 +0200755 /*
756 * Newly allocated listener is at the end of the list
757 */
758 l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind);
Willy Tarreau17146802023-01-12 19:58:42 +0100759
Willy Tarreau18215cb2019-02-27 16:25:28 +0100760 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100761
762 bind_line = 1;
763 if (cfg_peers->local) {
764 newpeer = cfg_peers->local;
765 }
766 else {
767 /* This peer is local.
768 * Note that we do not set the peer ID. This latter is initialized
769 * when parsing "peer" or "server" line.
770 */
771 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
772 if (!newpeer) {
773 err_code |= ERR_ALERT | ERR_ABORT;
774 goto out;
775 }
776 }
Willy Tarreau37159062020-08-27 07:48:42 +0200777 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200778 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100779 cur_arg++;
780 }
781
Willy Tarreau55f0f7b2022-05-20 15:44:17 +0200782 ret = bind_parse_args_list(bind_conf, args, cur_arg, cursection, file, linenum);
783 err_code |= ret;
784 if (ret != 0)
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100785 goto out;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100786 }
787 else if (strcmp(args[0], "default-server") == 0) {
Christopher Faulet244331f2022-07-25 15:10:44 +0200788 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100789 err_code |= ERR_ALERT | ERR_ABORT;
790 goto out;
791 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100792 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
793 SRV_PARSE_DEFAULT_SERVER|SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200794 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100795 else if (strcmp(args[0], "log") == 0) {
Christopher Faulet244331f2022-07-25 15:10:44 +0200796 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100797 err_code |= ERR_ALERT | ERR_ABORT;
798 goto out;
799 }
Emeric Brun9533a702021-04-02 10:13:43 +0200800 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), file, linenum, &errmsg)) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100801 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
802 err_code |= ERR_ALERT | ERR_FATAL;
803 goto out;
804 }
805 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200806 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100807 /* Initialize these static variables when entering a new "peers" section*/
808 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100809 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100810 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100811 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100812 goto out;
813 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200814
William Lallemand6e62fb62015-04-28 16:55:23 +0200815 if (alertif_too_many_args(1, file, linenum, args, &err_code))
816 goto out;
817
Emeric Brun32da3c42010-09-23 18:39:19 +0200818 err = invalid_char(args[1]);
819 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100820 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
821 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100822 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100823 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200824 }
825
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200826 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200827 /*
828 * If there are two proxies with the same name only following
829 * combinations are allowed:
830 */
831 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100832 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
833 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200834 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200835 }
836 }
837
Vincent Bernat02779b62016-04-03 13:48:43 +0200838 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100839 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200840 err_code |= ERR_ALERT | ERR_ABORT;
841 goto out;
842 }
843
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200844 curpeers->next = cfg_peers;
845 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200846 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200847 curpeers->conf.line = linenum;
Willy Tarreau69530f52023-04-28 09:16:15 +0200848 curpeers->last_change = ns_to_sec(now_ns);
Emeric Brun32da3c42010-09-23 18:39:19 +0200849 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200850 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200851 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200852 else if (strcmp(args[0], "peer") == 0 ||
853 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100854 int local_peer, peer;
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100855 int parse_addr = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200856
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100857 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100858 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100859 /* The local peer may have already partially been parsed on a "bind" line. */
860 if (*args[0] == 'p') {
861 if (bind_line) {
862 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
863 err_code |= ERR_ALERT | ERR_FATAL;
864 goto out;
865 }
866 peer_line = 1;
867 }
868 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
869 /* The local peer has already been initialized on a "bind" line.
870 * Let's use it and store its ID.
871 */
872 newpeer = cfg_peers->local;
873 newpeer->id = strdup(localpeer);
874 }
875 else {
876 if (local_peer && cfg_peers->local) {
877 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
878 file, linenum, args[0], args[1],
879 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
880 err_code |= ERR_FATAL;
881 goto out;
882 }
883 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
884 if (!newpeer) {
885 err_code |= ERR_ALERT | ERR_ABORT;
886 goto out;
887 }
888 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200889
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100890 /* Line number and peer ID are updated only if this peer is the local one. */
891 if (init_peers_frontend(file,
892 newpeer->local ? linenum: -1,
Christopher Faulet244331f2022-07-25 15:10:44 +0200893 newpeer->local ? newpeer->id : NULL,
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100894 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200895 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100896 goto out;
897 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100898
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100899 /* This initializes curpeer->peers->peers_fe->srv.
900 * The server address is parsed only if we are parsing a "peer" line,
901 * or if we are parsing a "server" line and the current peer is not the local one.
902 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100903 parse_addr = (peer || !local_peer) ? SRV_PARSE_PARSE_ADDR : 0;
904 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
905 SRV_PARSE_IN_PEER_SECTION|parse_addr|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200906 if (!curpeers->peers_fe->srv) {
907 /* Remove the newly allocated peer. */
908 if (newpeer != curpeers->local) {
909 struct peer *p;
910
911 p = curpeers->remote;
912 curpeers->remote = curpeers->remote->next;
913 free(p->id);
914 free(p);
915 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200916 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200917 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200918
Frédéric Lécaille36d15652022-10-17 14:58:19 +0200919 if (nb_shards && curpeers->peers_fe->srv->shard > nb_shards) {
920 ha_warning("parsing [%s:%d] : '%s %s' : %d peer shard greater value than %d shards value is ignored.\n",
921 file, linenum, args[0], args[1], curpeers->peers_fe->srv->shard, nb_shards);
922 curpeers->peers_fe->srv->shard = 0;
923 err_code |= ERR_WARN;
924 }
925
Willy Tarreau824c8c52022-05-31 09:42:44 +0200926 if (curpeers->peers_fe->srv->init_addr_methods || curpeers->peers_fe->srv->resolvers_id ||
927 curpeers->peers_fe->srv->do_check || curpeers->peers_fe->srv->do_agent) {
928 ha_warning("parsing [%s:%d] : '%s %s' : init_addr, resolvers, check and agent are ignored for peers.\n", file, linenum, args[0], args[1]);
929 err_code |= ERR_WARN;
930 }
931
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100932 /* If the peer address has just been parsed, let's copy it to <newpeer>
933 * and initializes ->proto.
934 */
935 if (peer || !local_peer) {
936 newpeer->addr = curpeers->peers_fe->srv->addr;
Willy Tarreau14e7f292021-10-27 17:41:07 +0200937 newpeer->proto = protocol_lookup(newpeer->addr.ss_family, PROTO_TYPE_STREAM, 0);
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100938 }
939
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100940 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200941 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100942 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200943
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100944 newpeer->srv = curpeers->peers_fe->srv;
945 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200946 goto out;
947
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100948 /* The lines above are reserved to "peer" lines. */
949 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200950 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200951
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100952 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW));
William Lallemand1d932172022-07-06 14:30:23 +0200953 if (!bind_conf) {
954 ha_alert("parsing [%s:%d] : '%s %s' : Cannot allocate memory.\n", file, linenum, args[0], args[1]);
955 err_code |= ERR_FATAL;
956 goto out;
957 }
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100958
Willy Tarreau882f2482023-01-12 18:52:23 +0100959 bind_conf->maxaccept = 1;
Willy Tarreau30836152023-01-12 19:10:17 +0100960 bind_conf->accept = session_accept_fd;
Willy Tarreau17146802023-01-12 19:58:42 +0100961 bind_conf->options |= BC_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau882f2482023-01-12 18:52:23 +0100962
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200963 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
964 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);
965 err_code |= ERR_FATAL;
966 }
967
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100968 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
969 if (errmsg && *errmsg) {
970 indent_msg(&errmsg, 2);
971 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 +0100972 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100973 else
974 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
975 file, linenum, args[0], args[1], args[2]);
976 err_code |= ERR_FATAL;
977 goto out;
978 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100979
Willy Tarreau18215cb2019-02-27 16:25:28 +0100980 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100981 }
Frédéric Lécaille36d15652022-10-17 14:58:19 +0200982 else if (strcmp(args[0], "shards") == 0) {
983 char *endptr;
984
985 if (!*args[1]) {
986 ha_alert("parsing [%s:%d] : '%s' : missing value\n", file, linenum, args[0]);
987 err_code |= ERR_FATAL;
988 goto out;
989 }
990
991 curpeers->nb_shards = strtol(args[1], &endptr, 10);
992 if (*endptr != '\0') {
993 ha_alert("parsing [%s:%d] : '%s' : expects an integer argument, found '%s'\n",
994 file, linenum, args[0], args[1]);
995 err_code |= ERR_FATAL;
996 goto out;
997 }
998
999 if (!curpeers->nb_shards) {
1000 ha_alert("parsing [%s:%d] : '%s' : expects a strictly positive integer argument\n",
1001 file, linenum, args[0]);
1002 err_code |= ERR_FATAL;
1003 goto out;
1004 }
1005
1006 nb_shards = curpeers->nb_shards;
1007 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001008 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001009 struct stktable *t, *other;
1010 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001011 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001012
1013 /* Line number and peer ID are updated only if this peer is the local one. */
Christopher Faulet244331f2022-07-25 15:10:44 +02001014 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001015 err_code |= ERR_ALERT | ERR_ABORT;
1016 goto out;
1017 }
1018
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001019 /* Build the stick-table name, concatenating the "peers" section name
1020 * followed by a '/' character and the table name argument.
1021 */
1022 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001023 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001024 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
1025 file, linenum, args[0], args[1]);
1026 err_code |= ERR_ALERT | ERR_FATAL;
1027 goto out;
1028 }
1029
1030 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001031 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001032 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
1033 file, linenum, args[0], args[1]);
1034 err_code |= ERR_ALERT | ERR_FATAL;
1035 goto out;
1036 }
1037
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001038 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001039 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001040 if (!t || !id) {
1041 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
1042 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +02001043 free(t);
1044 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001045 err_code |= ERR_ALERT | ERR_FATAL;
1046 goto out;
1047 }
1048
Patrick Hemmerc6c51252023-06-26 14:14:47 -04001049 other = stktable_find_by_name(trash.area);
1050 if (other) {
1051 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
1052 file, linenum, args[1],
1053 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
1054 other->proxy ? other->id : other->peers.p->id,
1055 other->conf.file, other->conf.line);
1056 err_code |= ERR_ALERT | ERR_FATAL;
1057 goto out;
1058 }
1059
1060
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001061 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +02001062 if (err_code & ERR_FATAL) {
1063 free(t);
1064 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001065 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +02001066 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001067
1068 stktable_store_name(t);
1069 t->next = stktables_list;
1070 stktables_list = t;
1071 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001072 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001073 curpeers->disabled |= PR_FL_DISABLED;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001074 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001075 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02001076 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001077 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001078 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001079 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +02001080 err_code |= ERR_ALERT | ERR_FATAL;
1081 goto out;
1082 }
1083
1084out:
Willy Tarreau902636f2013-03-10 19:44:48 +01001085 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +02001086 return err_code;
1087}
1088
Baptiste Assmann325137d2015-04-13 23:40:55 +02001089/*
William Lallemand51097192015-04-14 16:35:22 +02001090 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001091 * Returns the error code, 0 if OK, or any combination of :
1092 * - ERR_ABORT: must abort ASAP
1093 * - ERR_FATAL: we can continue parsing but not start the service
1094 * - ERR_WARN: a warning has been emitted
1095 * - ERR_ALERT: an alert has been emitted
1096 * Only the two first ones can stop processing, the two others are just
1097 * indicators.
1098 */
1099int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1100{
1101 static struct mailers *curmailers = NULL;
1102 struct mailer *newmailer = NULL;
1103 const char *err;
1104 int err_code = 0;
1105 char *errmsg = NULL;
1106
1107 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1108 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001109 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001110 err_code |= ERR_ALERT | ERR_ABORT;
1111 goto out;
1112 }
1113
1114 err = invalid_char(args[1]);
1115 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001116 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1117 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001118 err_code |= ERR_ALERT | ERR_ABORT;
1119 goto out;
1120 }
1121
1122 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1123 /*
1124 * If there are two proxies with the same name only following
1125 * combinations are allowed:
1126 */
1127 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001128 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1129 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001130 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001131 }
1132 }
1133
Vincent Bernat02779b62016-04-03 13:48:43 +02001134 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001135 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001136 err_code |= ERR_ALERT | ERR_ABORT;
1137 goto out;
1138 }
1139
1140 curmailers->next = mailers;
1141 mailers = curmailers;
1142 curmailers->conf.file = strdup(file);
1143 curmailers->conf.line = linenum;
1144 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001145 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1146 * But need enough time so that timeouts don't occur
1147 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001148 }
1149 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1150 struct sockaddr_storage *sk;
1151 int port1, port2;
1152 struct protocol *proto;
1153
1154 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001155 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1156 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001157 err_code |= ERR_ALERT | ERR_FATAL;
1158 goto out;
1159 }
1160
1161 err = invalid_char(args[1]);
1162 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001163 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1164 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001165 err_code |= ERR_ALERT | ERR_FATAL;
1166 goto out;
1167 }
1168
Vincent Bernat02779b62016-04-03 13:48:43 +02001169 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001170 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001171 err_code |= ERR_ALERT | ERR_ABORT;
1172 goto out;
1173 }
1174
1175 /* the mailers are linked backwards first */
1176 curmailers->count++;
1177 newmailer->next = curmailers->mailer_list;
1178 curmailers->mailer_list = newmailer;
1179 newmailer->mailers = curmailers;
1180 newmailer->conf.file = strdup(file);
1181 newmailer->conf.line = linenum;
1182
1183 newmailer->id = strdup(args[1]);
1184
Willy Tarreau5fc93282020-09-16 18:25:03 +02001185 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001186 &errmsg, NULL, NULL,
1187 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 +09001188 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001189 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001190 err_code |= ERR_ALERT | ERR_FATAL;
1191 goto out;
1192 }
1193
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001194 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001195 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1196 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001197 err_code |= ERR_ALERT | ERR_FATAL;
1198 goto out;
1199 }
1200
Simon Horman0d16a402015-01-30 11:22:58 +09001201 newmailer->addr = *sk;
1202 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001203 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001204 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001205 }
1206 else if (strcmp(args[0], "timeout") == 0) {
1207 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001208 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1209 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001210 err_code |= ERR_ALERT | ERR_FATAL;
1211 goto out;
1212 }
1213 else if (strcmp(args[1], "mail") == 0) {
1214 const char *res;
1215 unsigned int timeout_mail;
1216 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001217 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1218 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001219 err_code |= ERR_ALERT | ERR_FATAL;
1220 goto out;
1221 }
1222 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001223 if (res == PARSE_TIME_OVER) {
1224 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1225 file, linenum, args[2], args[0], args[1]);
1226 err_code |= ERR_ALERT | ERR_FATAL;
1227 goto out;
1228 }
1229 else if (res == PARSE_TIME_UNDER) {
1230 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1231 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001232 err_code |= ERR_ALERT | ERR_FATAL;
1233 goto out;
1234 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001235 else if (res) {
1236 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1237 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001238 err_code |= ERR_ALERT | ERR_FATAL;
1239 goto out;
1240 }
1241 curmailers->timeout.mail = timeout_mail;
1242 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001243 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001244 file, linenum, args[0], args[1]);
1245 err_code |= ERR_ALERT | ERR_FATAL;
1246 goto out;
1247 }
1248 }
Simon Horman0d16a402015-01-30 11:22:58 +09001249 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001250 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001251 err_code |= ERR_ALERT | ERR_FATAL;
1252 goto out;
1253 }
1254
1255out:
1256 free(errmsg);
1257 return err_code;
1258}
1259
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001260void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001261{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001262 ha_free(&p->email_alert.mailers.name);
1263 ha_free(&p->email_alert.from);
1264 ha_free(&p->email_alert.to);
1265 ha_free(&p->email_alert.myhostname);
Simon Horman9dc49962015-01-30 11:22:59 +09001266}
1267
Willy Tarreaubaaee002006-06-26 02:48:02 +02001268
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001269int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001270cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1271{
Willy Tarreaue5733232019-05-22 19:24:06 +02001272#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001273 const char *err;
1274 const char *item = args[0];
1275
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001276 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001277 return 0;
1278 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001279 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001280 size_t idx = 1;
1281 const char *current;
1282 while (*(current = args[idx++])) {
1283 err = invalid_char(current);
1284 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001285 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1286 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001287 return ERR_ALERT | ERR_FATAL;
1288 }
1289
1290 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001291 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1292 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001293 return ERR_ALERT | ERR_FATAL;
1294 }
1295 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001296 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1297 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001298 return ERR_ALERT | ERR_FATAL;
1299 }
1300 }
1301 }
1302
1303 return 0;
1304#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001305 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1306 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001307 return ERR_ALERT | ERR_FATAL;
1308#endif
1309}
1310
1311int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001312cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1313{
1314
1315 int err_code = 0;
1316 const char *err;
1317
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001318 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001319 struct userlist *newul;
1320
1321 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001322 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1323 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001324 err_code |= ERR_ALERT | ERR_FATAL;
1325 goto out;
1326 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001327 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1328 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001329
1330 err = invalid_char(args[1]);
1331 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001332 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1333 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001334 err_code |= ERR_ALERT | ERR_FATAL;
1335 goto out;
1336 }
1337
1338 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001339 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001340 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1341 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001342 err_code |= ERR_WARN;
1343 goto out;
1344 }
1345
Vincent Bernat02779b62016-04-03 13:48:43 +02001346 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001347 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001348 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001349 err_code |= ERR_ALERT | ERR_ABORT;
1350 goto out;
1351 }
1352
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001353 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001354 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001355 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001356 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001357 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001358 goto out;
1359 }
1360
1361 newul->next = userlist;
1362 userlist = newul;
1363
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001364 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001365 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001366 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001367 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001368
1369 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001370 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1371 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001372 err_code |= ERR_ALERT | ERR_FATAL;
1373 goto out;
1374 }
1375
1376 err = invalid_char(args[1]);
1377 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001378 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1379 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001380 err_code |= ERR_ALERT | ERR_FATAL;
1381 goto out;
1382 }
1383
William Lallemand4ac9f542015-05-28 18:03:51 +02001384 if (!userlist)
1385 goto out;
1386
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001387 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001388 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001389 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1390 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001391 err_code |= ERR_ALERT;
1392 goto out;
1393 }
1394
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001395 ag = calloc(1, sizeof(*ag));
1396 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001397 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001398 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001399 goto out;
1400 }
1401
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001402 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001403 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001404 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001405 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001406 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001407 goto out;
1408 }
1409
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001410 cur_arg = 2;
1411
1412 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001413 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001414 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001415 cur_arg += 2;
1416 continue;
1417 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001418 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1419 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001420 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001421 free(ag->groupusers);
1422 free(ag->name);
1423 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001424 goto out;
1425 }
1426 }
1427
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001428 ag->next = userlist->groups;
1429 userlist->groups = ag;
1430
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001431 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001432 struct auth_users *newuser;
1433 int cur_arg;
1434
1435 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001436 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1437 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001438 err_code |= ERR_ALERT | ERR_FATAL;
1439 goto out;
1440 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001441 if (!userlist)
1442 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001443
1444 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001445 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001446 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1447 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001448 err_code |= ERR_ALERT;
1449 goto out;
1450 }
1451
Vincent Bernat02779b62016-04-03 13:48:43 +02001452 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001453 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001454 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001455 err_code |= ERR_ALERT | ERR_ABORT;
1456 goto out;
1457 }
1458
1459 newuser->user = strdup(args[1]);
1460
1461 newuser->next = userlist->users;
1462 userlist->users = newuser;
1463
1464 cur_arg = 2;
1465
1466 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001467 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001468#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001469 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001470 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1471 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001472 err_code |= ERR_ALERT | ERR_FATAL;
1473 goto out;
1474 }
1475#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001476 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1477 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001478 err_code |= ERR_ALERT;
1479#endif
1480 newuser->pass = strdup(args[cur_arg + 1]);
1481 cur_arg += 2;
1482 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001483 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001484 newuser->pass = strdup(args[cur_arg + 1]);
1485 newuser->flags |= AU_O_INSECURE;
1486 cur_arg += 2;
1487 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001488 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001489 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001490 cur_arg += 2;
1491 continue;
1492 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001493 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1494 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001495 err_code |= ERR_ALERT | ERR_FATAL;
1496 goto out;
1497 }
1498 }
1499 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001500 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 +01001501 err_code |= ERR_ALERT | ERR_FATAL;
1502 }
1503
1504out:
1505 return err_code;
1506}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001507
Christopher Faulet79bdef32016-11-04 22:36:15 +01001508int
1509cfg_parse_scope(const char *file, int linenum, char *line)
1510{
1511 char *beg, *end, *scope = NULL;
1512 int err_code = 0;
1513 const char *err;
1514
1515 beg = line + 1;
1516 end = strchr(beg, ']');
1517
1518 /* Detect end of scope declaration */
1519 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001520 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1521 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001522 err_code |= ERR_ALERT | ERR_FATAL;
1523 goto out;
1524 }
1525
1526 /* Get scope name and check its validity */
1527 scope = my_strndup(beg, end-beg);
1528 err = invalid_char(scope);
1529 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001530 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1531 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001532 err_code |= ERR_ALERT | ERR_ABORT;
1533 goto out;
1534 }
1535
1536 /* Be sure to have a scope declaration alone on its line */
1537 line = end+1;
1538 while (isspace((unsigned char)*line))
1539 line++;
1540 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001541 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1542 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001543 err_code |= ERR_ALERT | ERR_ABORT;
1544 goto out;
1545 }
1546
1547 /* We have a valid scope declaration, save it */
1548 free(cfg_scope);
1549 cfg_scope = scope;
1550 scope = NULL;
1551
1552 out:
1553 free(scope);
1554 return err_code;
1555}
1556
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001557int
1558cfg_parse_track_sc_num(unsigned int *track_sc_num,
1559 const char *arg, const char *end, char **errmsg)
1560{
1561 const char *p;
1562 unsigned int num;
1563
1564 p = arg;
1565 num = read_uint64(&arg, end);
1566
1567 if (arg != end) {
1568 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1569 return -1;
1570 }
1571
Willy Tarreau6c011712023-01-06 16:09:58 +01001572 if (num >= global.tune.nb_stk_ctr) {
1573 if (!global.tune.nb_stk_ctr)
1574 memprintf(errmsg, "%u track-sc number not usable, stick-counters "
1575 "are disabled by tune.stick-counters", num);
1576 else
1577 memprintf(errmsg, "%u track-sc number exceeding "
1578 "%d (tune.stick-counters-1) value", num, global.tune.nb_stk_ctr - 1);
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001579 return -1;
1580 }
1581
1582 *track_sc_num = num;
1583 return 0;
1584}
1585
Willy Tarreaubaaee002006-06-26 02:48:02 +02001586/*
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001587 * Detect a global section after a non-global one and output a diagnostic
1588 * warning.
1589 */
Christopher Faulet037e3f82022-11-18 15:46:06 +01001590static void check_section_position(char *section_name, const char *file, int linenum)
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001591{
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02001592 if (strcmp(section_name, "global") == 0) {
Christopher Faulet037e3f82022-11-18 15:46:06 +01001593 if ((global.mode & MODE_DIAG) && non_global_section_parsed == 1)
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001594 _ha_diag_warning("parsing [%s:%d] : global section detected after a non-global one, the prevalence of their statements is unspecified\n", file, linenum);
1595 }
Christopher Faulet037e3f82022-11-18 15:46:06 +01001596 else if (non_global_section_parsed == 0) {
1597 non_global_section_parsed = 1;
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001598 }
1599}
1600
Willy Tarreau8a022d52021-04-27 20:29:11 +02001601/* apply the current default_path setting for config file <file>, and
1602 * optionally replace the current path to <origin> if not NULL while the
1603 * default-path mode is set to "origin". Errors are returned into an
1604 * allocated string passed to <err> if it's not NULL. Returns 0 on failure
1605 * or non-zero on success.
1606 */
1607static int cfg_apply_default_path(const char *file, const char *origin, char **err)
1608{
1609 const char *beg, *end;
1610
1611 /* make path start at <beg> and end before <end>, and switch it to ""
1612 * if no slash was passed.
1613 */
1614 beg = file;
1615 end = strrchr(beg, '/');
1616 if (!end)
1617 end = beg;
1618
1619 if (!*initial_cwd) {
1620 if (getcwd(initial_cwd, sizeof(initial_cwd)) == NULL) {
1621 if (err)
1622 memprintf(err, "Impossible to retrieve startup directory name: %s", strerror(errno));
1623 return 0;
1624 }
1625 }
1626 else if (chdir(initial_cwd) == -1) {
1627 if (err)
1628 memprintf(err, "Impossible to get back to initial directory '%s': %s", initial_cwd, strerror(errno));
1629 return 0;
1630 }
1631
1632 /* OK now we're (back) to initial_cwd */
1633
1634 switch (default_path_mode) {
1635 case DEFAULT_PATH_CURRENT:
1636 /* current_cwd never set, nothing to do */
1637 return 1;
1638
1639 case DEFAULT_PATH_ORIGIN:
1640 /* current_cwd set in the config */
1641 if (origin &&
1642 snprintf(current_cwd, sizeof(current_cwd), "%s", origin) > sizeof(current_cwd)) {
1643 if (err)
1644 memprintf(err, "Absolute path too long: '%s'", origin);
1645 return 0;
1646 }
1647 break;
1648
1649 case DEFAULT_PATH_CONFIG:
1650 if (end - beg >= sizeof(current_cwd)) {
1651 if (err)
1652 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1653 return 0;
1654 }
1655 memcpy(current_cwd, beg, end - beg);
1656 current_cwd[end - beg] = 0;
1657 break;
1658
1659 case DEFAULT_PATH_PARENT:
1660 if (end - beg + 3 >= sizeof(current_cwd)) {
1661 if (err)
1662 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1663 return 0;
1664 }
1665 memcpy(current_cwd, beg, end - beg);
1666 if (end > beg)
1667 memcpy(current_cwd + (end - beg), "/..\0", 4);
1668 else
1669 memcpy(current_cwd + (end - beg), "..\0", 3);
1670 break;
1671 }
1672
1673 if (*current_cwd && chdir(current_cwd) == -1) {
1674 if (err)
1675 memprintf(err, "Impossible to get back to directory '%s': %s", initial_cwd, strerror(errno));
1676 return 0;
1677 }
1678
1679 return 1;
1680}
1681
1682/* parses a global "default-path" directive. */
1683static int cfg_parse_global_def_path(char **args, int section_type, struct proxy *curpx,
1684 const struct proxy *defpx, const char *file, int line,
1685 char **err)
1686{
1687 int ret = -1;
1688
1689 /* "current", "config", "parent", "origin <path>" */
1690
1691 if (strcmp(args[1], "current") == 0)
1692 default_path_mode = DEFAULT_PATH_CURRENT;
1693 else if (strcmp(args[1], "config") == 0)
1694 default_path_mode = DEFAULT_PATH_CONFIG;
1695 else if (strcmp(args[1], "parent") == 0)
1696 default_path_mode = DEFAULT_PATH_PARENT;
1697 else if (strcmp(args[1], "origin") == 0)
1698 default_path_mode = DEFAULT_PATH_ORIGIN;
1699 else {
1700 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]);
1701 goto end;
1702 }
1703
1704 if (default_path_mode == DEFAULT_PATH_ORIGIN) {
1705 if (!*args[2]) {
1706 memprintf(err, "'%s %s' expects a directory as an argument.", args[0], args[1]);
1707 goto end;
1708 }
1709 if (!cfg_apply_default_path(file, args[2], err)) {
1710 memprintf(err, "couldn't set '%s' to origin '%s': %s.", args[0], args[2], *err);
1711 goto end;
1712 }
1713 }
1714 else if (!cfg_apply_default_path(file, NULL, err)) {
1715 memprintf(err, "couldn't set '%s' to '%s': %s.", args[0], args[1], *err);
1716 goto end;
1717 }
1718
1719 /* note that once applied, the path is immediately updated */
1720
1721 ret = 0;
1722 end:
1723 return ret;
1724}
1725
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001726/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001727 * This function reads and parses the configuration file given in the argument.
Willy Tarreauda543e12021-04-27 18:30:28 +02001728 * Returns the error code, 0 if OK, -1 if the config file couldn't be opened,
1729 * or any combination of :
Willy Tarreau058e9072009-07-20 09:30:05 +02001730 * - ERR_ABORT: must abort ASAP
1731 * - ERR_FATAL: we can continue parsing but not start the service
1732 * - ERR_WARN: a warning has been emitted
1733 * - ERR_ALERT: an alert has been emitted
1734 * Only the two first ones can stop processing, the two others are just
1735 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001736 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001737int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001738{
Willy Tarreauda543e12021-04-27 18:30:28 +02001739 char *thisline = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001740 int linesize = LINESIZE;
Willy Tarreauda543e12021-04-27 18:30:28 +02001741 FILE *f = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001742 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001743 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001744 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001745 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001746 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001747 char *outline = NULL;
1748 size_t outlen = 0;
1749 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001750 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001751 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001752 int nested_cond_lvl = 0;
1753 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
Willy Tarreau8a022d52021-04-27 20:29:11 +02001754 char *errmsg = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001755
Willy Tarreau51508052021-05-06 10:04:45 +02001756 global.cfg_curr_line = 0;
1757 global.cfg_curr_file = file;
1758
William Lallemand64e84512015-05-12 14:25:37 +02001759 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Willy Tarreauda543e12021-04-27 18:30:28 +02001760 ha_alert("Out of memory trying to allocate a buffer for a configuration line.\n");
1761 err_code = -1;
1762 goto err;
William Lallemand64e84512015-05-12 14:25:37 +02001763 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001764
Willy Tarreauda543e12021-04-27 18:30:28 +02001765 if ((f = fopen(file,"r")) == NULL) {
1766 err_code = -1;
1767 goto err;
David Carlier97880bb2016-04-08 10:35:26 +01001768 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001769
Willy Tarreau8a022d52021-04-27 20:29:11 +02001770 /* change to the new dir if required */
1771 if (!cfg_apply_default_path(file, NULL, &errmsg)) {
1772 ha_alert("parsing [%s:%d]: failed to apply default-path: %s.\n", file, linenum, errmsg);
1773 free(errmsg);
1774 err_code = -1;
1775 goto err;
1776 }
1777
William Lallemandb2f07452015-05-12 14:27:13 +02001778next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001779 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001780 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001781 char *end;
1782 char *args[MAX_LINE_ARGS + 1];
1783 char *line = thisline;
1784
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001785 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001786 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1787 file, linenum, (missing_lf + 1));
1788 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001789 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001790 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001791 }
1792
Willy Tarreaubaaee002006-06-26 02:48:02 +02001793 linenum++;
Willy Tarreau51508052021-05-06 10:04:45 +02001794 global.cfg_curr_line = linenum;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001795
Willy Tarreau32234e72020-06-16 17:14:33 +02001796 if (fatal >= 50) {
1797 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1798 break;
1799 }
1800
Willy Tarreaubaaee002006-06-26 02:48:02 +02001801 end = line + strlen(line);
1802
William Lallemand64e84512015-05-12 14:25:37 +02001803 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001804 /* Check if we reached the limit and the last char is not \n.
1805 * Watch out for the last line without the terminating '\n'!
1806 */
William Lallemand64e84512015-05-12 14:25:37 +02001807 char *newline;
1808 int newlinesize = linesize * 2;
1809
1810 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1811 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001812 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1813 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001814 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001815 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001816 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001817 continue;
1818 }
1819
1820 readbytes = linesize - 1;
1821 linesize = newlinesize;
1822 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001823 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001824 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001825 }
1826
William Lallemand64e84512015-05-12 14:25:37 +02001827 readbytes = 0;
1828
Willy Tarreau08488f62020-06-26 17:24:54 +02001829 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001830 /* kill trailing LF */
1831 *(end - 1) = 0;
1832 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001833 else {
1834 /* mark this line as truncated */
1835 missing_lf = end - line;
1836 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001837
Willy Tarreaubaaee002006-06-26 02:48:02 +02001838 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001839 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001840 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001841
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001842 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001843 err_code |= cfg_parse_scope(file, linenum, line);
1844 goto next_line;
1845 }
1846
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001847 while (1) {
1848 uint32_t err;
Maximilian Mader29c6cd72021-06-06 00:50:21 +02001849 const char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001850
Tim Duesterhusb3168b32021-06-06 00:50:20 +02001851 arg = sizeof(args) / sizeof(*args);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001852 outlen = outlinesize;
1853 err = parse_line(line, outline, &outlen, args, &arg,
1854 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001855 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1856 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001857
1858 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001859 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1860
1861 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1862 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001863 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001864 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001865 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001866 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001867
1868 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001869 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1870
1871 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1872 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001873 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001874 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001875 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001876 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001877
1878 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001879 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1880
1881 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1882 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001883 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001884 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001885 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001886 }
William Lallemandb2f07452015-05-12 14:27:13 +02001887
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001888 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001889 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1890
1891 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1892 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001893 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001894 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001895 goto next_line;
1896 }
William Lallemandb2f07452015-05-12 14:27:13 +02001897
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001898 if (err & PARSE_ERR_WRONG_EXPAND) {
1899 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1900
1901 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1902 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1903 err_code |= ERR_ALERT | ERR_FATAL;
1904 fatal++;
1905 goto next_line;
1906 }
1907
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001908 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1909 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001910 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001911 if (outline == NULL) {
1912 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1913 file, linenum);
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001914 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau32234e72020-06-16 17:14:33 +02001915 fatal++;
Christopher Fauletdfe32c72022-05-18 16:22:43 +02001916 outlinesize = 0;
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001917 goto err;
William Lallemandb2f07452015-05-12 14:27:13 +02001918 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001919 /* try again */
1920 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001921 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001922
1923 if (err & PARSE_ERR_TOOMANY) {
1924 /* only check this *after* being sure the output is allocated */
1925 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1926 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1927 err_code |= ERR_ALERT | ERR_FATAL;
1928 fatal++;
1929 goto next_line;
1930 }
1931
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001932 /* everything's OK */
1933 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001934 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001935
Erwan Le Goasb0c05012022-09-14 17:51:55 +02001936 /* dump cfg */
1937 if (global.mode & MODE_DUMP_CFG) {
1938 if (args[0] != NULL) {
1939 struct cfg_section *sect;
1940 int is_sect = 0;
1941 int i = 0;
1942 uint32_t g_key = HA_ATOMIC_LOAD(&global.anon_key);
1943
Erwan Le Goasf30c5d72022-09-29 10:34:04 +02001944 if (global.mode & MODE_DUMP_NB_L)
1945 qfprintf(stdout, "%d\t", linenum);
Erwan Le Goasb0c05012022-09-14 17:51:55 +02001946
1947 /* if a word is in sections list, is_sect = 1 */
1948 list_for_each_entry(sect, &sections, list) {
1949 if (strcmp(args[0], sect->section_name) == 0) {
1950 is_sect = 1;
1951 break;
1952 }
1953 }
1954
1955 if (g_key == 0) {
1956 /* no anonymizing needed, dump the config as-is (but without comments).
1957 * Note: tabs were lost during tokenizing, so we reinsert for non-section
1958 * keywords.
1959 */
1960 if (!is_sect)
1961 qfprintf(stdout, "\t");
1962
1963 for (i = 0; i < arg; i++) {
1964 qfprintf(stdout, "%s ", args[i]);
1965 }
1966 qfprintf(stdout, "\n");
1967 continue;
1968 }
1969
1970 /* We're anonymizing */
1971
1972 if (is_sect) {
1973 /* new sections are optionally followed by an identifier */
1974 if (arg >= 2) {
1975 qfprintf(stdout, "%s %s\n", args[0], HA_ANON_ID(g_key, args[1]));
1976 }
1977 else {
1978 qfprintf(stdout, "%s\n", args[0]);
1979 }
1980 continue;
1981 }
1982
1983 /* non-section keywords start indented */
1984 qfprintf(stdout, "\t");
1985
1986 /* some keywords deserve special treatment */
1987 if (!*args[0]) {
1988 qfprintf(stdout, "\n");
1989 }
1990
1991 else if (strcmp(args[0], "anonkey") == 0) {
1992 qfprintf(stdout, "%s [...]\n", args[0]);
1993 }
1994
1995 else if (strcmp(args[0], "maxconn") == 0) {
1996 qfprintf(stdout, "%s %s\n", args[0], args[1]);
1997 }
1998
1999 else if (strcmp(args[0], "stats") == 0 &&
2000 (strcmp(args[1], "timeout") == 0 || strcmp(args[1], "maxconn") == 0)) {
2001 qfprintf(stdout, "%s %s %s\n", args[0], args[1], args[2]);
2002 }
2003
2004 else if (strcmp(args[0], "stats") == 0 && strcmp(args[1], "socket") == 0) {
2005 qfprintf(stdout, "%s %s ", args[0], args[1]);
2006
Erwan Le Goasbe5ed922022-09-29 10:30:00 +02002007 if (arg > 2) {
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002008 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[2], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002009
Erwan Le Goasbe5ed922022-09-29 10:30:00 +02002010 if (arg > 3) {
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002011 qfprintf(stdout, "[...]\n");
2012 }
2013 else {
2014 qfprintf(stdout, "\n");
2015 }
2016 }
2017 else {
2018 qfprintf(stdout, "\n");
2019 }
2020 }
2021
2022 else if (strcmp(args[0], "timeout") == 0) {
2023 qfprintf(stdout, "%s %s %s\n", args[0], args[1], args[2]);
2024 }
2025
2026 else if (strcmp(args[0], "mode") == 0) {
2027 qfprintf(stdout, "%s %s\n", args[0], args[1]);
2028 }
2029
Ilya Shipitsin4a689da2022-10-29 09:34:32 +05002030 /* It concerns user in global section and in userlist */
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002031 else if (strcmp(args[0], "user") == 0) {
2032 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
2033
2034 if (arg > 2) {
2035 qfprintf(stdout, "[...]\n");
2036 }
2037 else {
2038 qfprintf(stdout, "\n");
2039 }
2040 }
2041
2042 else if (strcmp(args[0], "bind") == 0) {
2043 qfprintf(stdout, "%s ", args[0]);
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002044 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[1], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002045 if (arg > 2) {
2046 qfprintf(stdout, "[...]\n");
2047 }
2048 else {
2049 qfprintf(stdout, "\n");
2050 }
2051 }
2052
2053 else if (strcmp(args[0], "server") == 0) {
Erwan Le Goas059d05f2022-09-29 10:31:18 +02002054 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002055
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002056 if (arg > 2) {
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002057 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[2], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002058 }
2059 if (arg > 3) {
2060 qfprintf(stdout, "[...]\n");
2061 }
2062 else {
2063 qfprintf(stdout, "\n");
2064 }
2065 }
2066
2067 else if (strcmp(args[0], "redirect") == 0) {
2068 qfprintf(stdout, "%s %s ", args[0], args[1]);
2069
2070 if (strcmp(args[1], "prefix") == 0 || strcmp(args[1], "location") == 0) {
2071 qfprintf(stdout, "%s ", HA_ANON_PATH(g_key, args[2]));
2072 }
2073 else {
2074 qfprintf(stdout, "%s ", args[2]);
2075 }
2076 if (arg > 3) {
2077 qfprintf(stdout, "[...]");
2078 }
2079 qfprintf(stdout, "\n");
2080 }
2081
2082 else if (strcmp(args[0], "acl") == 0) {
2083 qfprintf(stdout, "%s %s %s ", args[0], HA_ANON_ID(g_key, args[1]), args[2]);
2084
2085 if (arg > 3) {
2086 qfprintf(stdout, "[...]");
2087 }
2088 qfprintf(stdout, "\n");
2089 }
2090
2091 else if (strcmp(args[0], "log") == 0) {
2092 qfprintf(stdout, "log ");
2093
2094 if (strcmp(args[1], "global") == 0) {
2095 qfprintf(stdout, "%s ", args[1]);
2096 }
2097 else {
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002098 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[1], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002099 }
2100 if (arg > 2) {
2101 qfprintf(stdout, "[...]");
2102 }
2103 qfprintf(stdout, "\n");
2104 }
2105
2106 else if (strcmp(args[0], "peer") == 0) {
2107 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002108 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[2], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002109
2110 if (arg > 3) {
2111 qfprintf(stdout, "[...]");
2112 }
2113 qfprintf(stdout, "\n");
2114 }
2115
2116 else if (strcmp(args[0], "use_backend") == 0) {
2117 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
2118
2119 if (arg > 2) {
2120 qfprintf(stdout, "[...]");
2121 }
2122 qfprintf(stdout, "\n");
2123 }
2124
2125 else if (strcmp(args[0], "default_backend") == 0) {
2126 qfprintf(stdout, "%s %s\n", args[0], HA_ANON_ID(g_key, args[1]));
2127 }
2128
Erwan Le Goas059d05f2022-09-29 10:31:18 +02002129 else if (strcmp(args[0], "source") == 0) {
2130 qfprintf(stdout, "%s %s ", args[0], hash_ipanon(g_key, args[1], 1));
2131
2132 if (arg > 2) {
2133 qfprintf(stdout, "[...]");
2134 }
2135 qfprintf(stdout, "\n");
2136 }
2137
2138 else if (strcmp(args[0], "nameserver") == 0) {
2139 qfprintf(stdout, "%s %s %s ", args[0],
2140 HA_ANON_ID(g_key, args[1]), hash_ipanon(g_key, args[2], 1));
2141 if (arg > 3) {
2142 qfprintf(stdout, "[...]");
2143 }
2144 qfprintf(stdout, "\n");
2145 }
2146
2147 else if (strcmp(args[0], "http-request") == 0) {
2148 qfprintf(stdout, "%s %s ", args[0], args[1]);
2149 if (arg > 2)
2150 qfprintf(stdout, "[...]");
2151 qfprintf(stdout, "\n");
2152 }
2153
2154 else if (strcmp(args[0], "http-response") == 0) {
2155 qfprintf(stdout, "%s %s ", args[0], args[1]);
2156 if (arg > 2)
2157 qfprintf(stdout, "[...]");
2158 qfprintf(stdout, "\n");
2159 }
2160
2161 else if (strcmp(args[0], "http-after-response") == 0) {
2162 qfprintf(stdout, "%s %s ", args[0], args[1]);
2163 if (arg > 2)
2164 qfprintf(stdout, "[...]");
2165 qfprintf(stdout, "\n");
2166 }
2167
2168 else if (strcmp(args[0], "filter") == 0) {
2169 qfprintf(stdout, "%s %s ", args[0], args[1]);
2170 if (arg > 2)
2171 qfprintf(stdout, "[...]");
2172 qfprintf(stdout, "\n");
2173 }
2174
2175 else if (strcmp(args[0], "errorfile") == 0) {
2176 qfprintf(stdout, "%s %s %s\n", args[0], args[1], HA_ANON_PATH(g_key, args[2]));
2177 }
2178
2179 else if (strcmp(args[0], "cookie") == 0) {
2180 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
2181 if (arg > 2)
2182 qfprintf(stdout, "%s ", args[2]);
2183 if (arg > 3)
2184 qfprintf(stdout, "[...]");
2185 qfprintf(stdout, "\n");
2186 }
2187
2188 else if (strcmp(args[0], "stats") == 0 && strcmp(args[1], "auth") == 0) {
2189 qfprintf(stdout, "%s %s %s\n", args[0], args[1], HA_ANON_STR(g_key, args[2]));
2190 }
2191
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002192 else {
2193 /* display up to 3 words and mask the rest which might be confidential */
2194 for (i = 0; i < MIN(arg, 3); i++) {
2195 qfprintf(stdout, "%s ", args[i]);
2196 }
2197 if (arg > 3) {
2198 qfprintf(stdout, "[...]");
2199 }
2200 qfprintf(stdout, "\n");
2201 }
2202 }
2203 continue;
2204 }
2205 /* end of config dump */
2206
Willy Tarreaubaaee002006-06-26 02:48:02 +02002207 /* empty line */
2208 if (!**args)
2209 continue;
2210
Willy Tarreau4b103022021-02-12 17:59:10 +01002211 /* check for config macros */
2212 if (*args[0] == '.') {
2213 if (strcmp(args[0], ".if") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002214 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002215 char *errmsg = NULL;
2216 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02002217 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002218
Willy Tarreauc8194c32021-07-16 16:38:58 +02002219 /* remerge all words into a single expression */
2220 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
2221 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002222
Willy Tarreau4b103022021-02-12 17:59:10 +01002223 nested_cond_lvl++;
2224 if (nested_cond_lvl >= MAXNESTEDCONDS) {
2225 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
2226 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2227 goto err;
2228 }
2229
Willy Tarreau6e647c92021-05-06 08:46:11 +02002230 if (nested_cond_lvl > 1 &&
2231 (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
2232 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
2233 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
2234 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
2235 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP)) {
Willy Tarreau4b103022021-02-12 17:59:10 +01002236 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002237 goto next_line;
2238 }
2239
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002240 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002241 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002242 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 76);
2243
2244 ha_alert("parsing [%s:%d]: %s in '.if' at position %d:\n .if %s\n %*s\n",
2245 file, linenum, errmsg,
2246 (int)(errptr-args[1]+1), args[1], (int)(newpos+5), "^");
2247
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002248 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01002249 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2250 goto err;
2251 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002252
2253 if (cond)
2254 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
2255 else
2256 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
2257
Willy Tarreau4b103022021-02-12 17:59:10 +01002258 goto next_line;
2259 }
2260 else if (strcmp(args[0], ".elif") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002261 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002262 char *errmsg = NULL;
2263 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02002264 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002265
Willy Tarreauc8194c32021-07-16 16:38:58 +02002266 /* remerge all words into a single expression */
2267 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
2268 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002269
Willy Tarreau4b103022021-02-12 17:59:10 +01002270 if (!nested_cond_lvl) {
2271 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
2272 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2273 goto err;
2274 }
2275
2276 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2277 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2278 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
2279 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2280 goto err;
2281 }
2282
2283 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2284 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
Willy Tarreauf67ff022021-05-06 08:48:09 +02002285 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
Willy Tarreau4b103022021-02-12 17:59:10 +01002286 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2287 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002288 goto next_line;
2289 }
2290
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002291 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002292 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002293 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 74);
2294
2295 ha_alert("parsing [%s:%d]: %s in '.elif' at position %d:\n .elif %s\n %*s\n",
2296 file, linenum, errmsg,
2297 (int)(errptr-args[1]+1), args[1], (int)(newpos+7), "^");
2298
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002299 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01002300 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2301 goto err;
2302 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002303
2304 if (cond)
2305 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
2306 else
2307 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
2308
Willy Tarreau4b103022021-02-12 17:59:10 +01002309 goto next_line;
2310 }
2311 else if (strcmp(args[0], ".else") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002312 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002313 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002314 file, linenum, args[1], args[0]);
2315 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2316 break;
2317 }
2318
Willy Tarreau4b103022021-02-12 17:59:10 +01002319 if (!nested_cond_lvl) {
2320 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
2321 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2322 goto err;
2323 }
2324
2325 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2326 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2327 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
2328 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2329 goto err;
2330 }
2331
2332 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2333 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2334 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
2335 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2336 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
2337 } else {
2338 /* otherwise we take the "else" */
2339 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
2340 }
2341 goto next_line;
2342 }
2343 else if (strcmp(args[0], ".endif") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002344 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002345 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002346 file, linenum, args[1], args[0]);
2347 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2348 break;
2349 }
2350
Willy Tarreau4b103022021-02-12 17:59:10 +01002351 if (!nested_cond_lvl) {
2352 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002353 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau4b103022021-02-12 17:59:10 +01002354 break;
2355 }
2356 nested_cond_lvl--;
2357 goto next_line;
2358 }
2359 }
2360
2361 if (nested_cond_lvl &&
2362 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
2363 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2364 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
2365 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
2366 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
2367 /* The current block is masked out by the conditions */
2368 goto next_line;
2369 }
2370
Willy Tarreau7190b982021-05-07 08:59:50 +02002371 /* .warning/.error/.notice/.diag */
Willy Tarreau4b103022021-02-12 17:59:10 +01002372 if (*args[0] == '.') {
2373 if (strcmp(args[0], ".alert") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002374 if (*args[2]) {
2375 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2376 file, linenum, args[2], args[0]);
2377 err_code |= ERR_ALERT | ERR_FATAL;
2378 goto next_line;
2379 }
2380
Willy Tarreau4b103022021-02-12 17:59:10 +01002381 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2382 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2383 goto err;
2384 }
2385 else if (strcmp(args[0], ".warning") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002386 if (*args[2]) {
2387 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2388 file, linenum, args[2], args[0]);
2389 err_code |= ERR_ALERT | ERR_FATAL;
2390 goto next_line;
2391 }
2392
Willy Tarreau4b103022021-02-12 17:59:10 +01002393 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2394 err_code |= ERR_WARN;
2395 goto next_line;
2396 }
2397 else if (strcmp(args[0], ".notice") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002398 if (*args[2]) {
2399 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2400 file, linenum, args[2], args[0]);
2401 err_code |= ERR_ALERT | ERR_FATAL;
2402 goto next_line;
2403 }
2404
Willy Tarreau4b103022021-02-12 17:59:10 +01002405 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2406 goto next_line;
2407 }
Willy Tarreau7190b982021-05-07 08:59:50 +02002408 else if (strcmp(args[0], ".diag") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002409 if (*args[2]) {
2410 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2411 file, linenum, args[2], args[0]);
2412 err_code |= ERR_ALERT | ERR_FATAL;
2413 goto next_line;
2414 }
2415
Willy Tarreau7190b982021-05-07 08:59:50 +02002416 ha_diag_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2417 goto next_line;
2418 }
Willy Tarreau4b103022021-02-12 17:59:10 +01002419 else {
2420 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
2421 err_code |= ERR_ALERT | ERR_FATAL;
2422 fatal++;
2423 break;
2424 }
2425 }
2426
Willy Tarreau3842f002009-06-14 11:39:52 +02002427 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002428 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02002429 char *tmp;
2430
Willy Tarreau3842f002009-06-14 11:39:52 +02002431 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002432 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002433 for (arg=0; *args[arg+1]; arg++)
2434 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002435 *tmp = '\0'; // fix the next arg to \0
2436 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002437 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002438 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02002439 kwm = KWM_DEF;
2440 for (arg=0; *args[arg+1]; arg++)
2441 args[arg] = args[arg+1]; // shift args after inversion
2442 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002443
William Dauchyec730982019-10-27 20:08:10 +01002444 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2445 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002446 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002447 strcmp(args[0], "insecure-fork-wanted") != 0 &&
2448 strcmp(args[0], "numa-cpu-mapping") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002449 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002450 "supported only for options, log, busy-polling, "
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002451 "set-dumpable, strict-limits, insecure-fork-wanted "
2452 "and numa-cpu-mapping.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002453 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002454 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002455 }
2456
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002457 /* detect section start */
2458 list_for_each_entry(ics, &sections, list) {
2459 if (strcmp(args[0], ics->section_name) == 0) {
2460 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002461 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002462 cs = ics;
Willy Tarreau51508052021-05-06 10:04:45 +02002463 free(global.cfg_curr_section);
2464 global.cfg_curr_section = strdup(*args[1] ? args[1] : args[0]);
Christopher Faulet037e3f82022-11-18 15:46:06 +01002465 check_section_position(args[0], file, linenum);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002466 break;
2467 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002468 }
2469
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002470 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002471 int status;
2472
2473 status = pcs->post_section_parser();
2474 err_code |= status;
2475 if (status & ERR_FATAL)
2476 fatal++;
2477
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002478 if (err_code & ERR_ABORT)
2479 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002480 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002481 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002482
William Lallemandd2ff56d2017-10-16 11:06:50 +02002483 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002484 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002485 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002486 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002487 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002488 int status;
2489
2490 status = cs->section_parser(file, linenum, args, kwm);
2491 err_code |= status;
2492 if (status & ERR_FATAL)
2493 fatal++;
2494
William Lallemandd2ff56d2017-10-16 11:06:50 +02002495 if (err_code & ERR_ABORT)
2496 goto err;
2497 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002498 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002499
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002500 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002501 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2502 file, linenum, (missing_lf + 1));
2503 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002504 }
2505
Willy Tarreau51508052021-05-06 10:04:45 +02002506 ha_free(&global.cfg_curr_section);
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002507 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002508 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002509
Willy Tarreau4b103022021-02-12 17:59:10 +01002510 if (nested_cond_lvl) {
2511 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
2512 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2513 }
Willy Tarreau8a022d52021-04-27 20:29:11 +02002514
2515 if (*initial_cwd && chdir(initial_cwd) == -1) {
2516 ha_alert("Impossible to get back to initial directory '%s' : %s\n", initial_cwd, strerror(errno));
2517 err_code |= ERR_ALERT | ERR_FATAL;
2518 }
2519
William Lallemandd2ff56d2017-10-16 11:06:50 +02002520err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002521 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01002522 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002523 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002524 free(outline);
Willy Tarreau51508052021-05-06 10:04:45 +02002525 global.cfg_curr_line = 0;
2526 global.cfg_curr_file = NULL;
2527
Willy Tarreauda543e12021-04-27 18:30:28 +02002528 if (f)
2529 fclose(f);
2530
Willy Tarreau058e9072009-07-20 09:30:05 +02002531 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002532}
2533
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002534#if defined(USE_THREAD) && defined USE_CPU_AFFINITY
2535#if defined(__linux__)
2536
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002537/* filter directory name of the pattern node<X> */
2538static int numa_filter(const struct dirent *dir)
2539{
2540 char *endptr;
2541
2542 /* dir name must start with "node" prefix */
2543 if (strncmp(dir->d_name, "node", 4))
2544 return 0;
2545
2546 /* dir name must be at least 5 characters long */
2547 if (!dir->d_name[4])
2548 return 0;
2549
2550 /* dir name must end with a numeric id */
2551 if (strtol(&dir->d_name[4], &endptr, 10) < 0 || *endptr)
2552 return 0;
2553
2554 /* all tests succeeded */
2555 return 1;
2556}
2557
2558/* Parse a linux cpu map string representing to a numeric cpu mask map
2559 * The cpu map string is a list of 4-byte hex strings separated by commas, with
2560 * most-significant byte first, one bit per cpu number.
2561 */
2562static void parse_cpumap(char *cpumap_str, struct hap_cpuset *cpu_set)
2563{
2564 unsigned long cpumap;
2565 char *start, *endptr, *comma;
2566 int i, j;
2567
2568 ha_cpuset_zero(cpu_set);
2569
2570 i = 0;
2571 do {
2572 /* reverse-search for a comma, parse the string after the comma
2573 * or at the beginning if no comma found
2574 */
2575 comma = strrchr(cpumap_str, ',');
2576 start = comma ? comma + 1 : cpumap_str;
2577
2578 cpumap = strtoul(start, &endptr, 16);
2579 for (j = 0; cpumap; cpumap >>= 1, ++j) {
2580 if (cpumap & 0x1)
2581 ha_cpuset_set(cpu_set, j + i * 32);
2582 }
2583
2584 if (comma)
2585 *comma = '\0';
2586 ++i;
2587 } while (comma);
2588}
2589
2590/* Read the first line of a file from <path> into the trash buffer.
2591 * Returns 0 on success, otherwise non-zero.
2592 */
2593static int read_file_to_trash(const char *path)
2594{
2595 FILE *file;
2596 int ret = 1;
2597
2598 file = fopen(path, "r");
2599 if (file) {
2600 if (fgets(trash.area, trash.size, file))
2601 ret = 0;
2602
2603 fclose(file);
2604 }
2605
2606 return ret;
2607}
2608
2609/* Inspect the cpu topology of the machine on startup. If a multi-socket
2610 * machine is detected, try to bind on the first node with active cpu. This is
2611 * done to prevent an impact on the overall performance when the topology of
2612 * the machine is unknown. This function is not called if one of the conditions
2613 * is met :
2614 * - a non-null nbthread directive is active
2615 * - a restrictive cpu-map directive is active
2616 * - a restrictive affinity is already applied, for example via taskset
2617 *
2618 * Returns the count of cpus selected. If no automatic binding was required or
2619 * an error occurred and the topology is unknown, 0 is returned.
2620 */
2621static int numa_detect_topology()
2622{
2623 struct dirent **node_dirlist;
2624 int node_dirlist_size;
2625
2626 struct hap_cpuset active_cpus, node_cpu_set;
2627 const char *parse_cpu_set_args[2];
2628 char cpumap_path[PATH_MAX];
2629 char *err = NULL;
2630
2631 /* node_cpu_set count is used as return value */
2632 ha_cpuset_zero(&node_cpu_set);
2633
2634 /* 1. count the sysfs node<X> directories */
Willy Tarreau07bf21c2021-04-23 19:09:16 +02002635 node_dirlist = NULL;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002636 node_dirlist_size = scandir(NUMA_DETECT_SYSTEM_SYSFS_PATH"/node", &node_dirlist, numa_filter, alphasort);
2637 if (node_dirlist_size <= 1)
2638 goto free_scandir_entries;
2639
2640 /* 2. read and parse the list of currently online cpu */
2641 if (read_file_to_trash(NUMA_DETECT_SYSTEM_SYSFS_PATH"/cpu/online")) {
2642 ha_notice("Cannot read online CPUs list, will not try to refine binding\n");
2643 goto free_scandir_entries;
2644 }
2645
2646 parse_cpu_set_args[0] = trash.area;
2647 parse_cpu_set_args[1] = "\0";
Willy Tarreau615c3012023-05-05 16:10:05 +02002648 if (parse_cpu_set(parse_cpu_set_args, &active_cpus, &err)) {
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002649 ha_notice("Cannot read online CPUs list: '%s'. Will not try to refine binding\n", err);
2650 free(err);
2651 goto free_scandir_entries;
2652 }
2653
2654 /* 3. loop through nodes dirs and find the first one with active cpus */
2655 while (node_dirlist_size--) {
2656 const char *node = node_dirlist[node_dirlist_size]->d_name;
2657 ha_cpuset_zero(&node_cpu_set);
2658
2659 snprintf(cpumap_path, PATH_MAX, "%s/node/%s/cpumap",
2660 NUMA_DETECT_SYSTEM_SYSFS_PATH, node);
2661
2662 if (read_file_to_trash(cpumap_path)) {
2663 ha_notice("Cannot read CPUs list of '%s', will not select them to refine binding\n", node);
2664 free(node_dirlist[node_dirlist_size]);
2665 continue;
2666 }
2667
2668 parse_cpumap(trash.area, &node_cpu_set);
2669 ha_cpuset_and(&node_cpu_set, &active_cpus);
2670
2671 /* 5. set affinity on the first found node with active cpus */
2672 if (!ha_cpuset_count(&node_cpu_set)) {
2673 free(node_dirlist[node_dirlist_size]);
2674 continue;
2675 }
2676
2677 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));
2678 if (sched_setaffinity(getpid(), sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2679 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2680
2681 /* clear the cpuset used as return value */
2682 ha_cpuset_zero(&node_cpu_set);
2683 }
2684
2685 free(node_dirlist[node_dirlist_size]);
2686 break;
2687 }
2688
2689 free_scandir_entries:
2690 while (node_dirlist_size-- > 0)
2691 free(node_dirlist[node_dirlist_size]);
2692 free(node_dirlist);
2693
2694 return ha_cpuset_count(&node_cpu_set);
2695}
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002696
David CARLIERf5d48f82021-12-06 11:00:10 +00002697#elif defined(__FreeBSD__)
2698static int numa_detect_topology()
2699{
2700 struct hap_cpuset node_cpu_set;
2701 int ndomains = 0, i;
2702 size_t len = sizeof(ndomains);
2703
2704 if (sysctlbyname("vm.ndomains", &ndomains, &len, NULL, 0) == -1) {
2705 ha_notice("Cannot assess the number of CPUs domains\n");
2706 return 0;
2707 }
2708
2709 BUG_ON(ndomains > MAXMEMDOM);
2710 ha_cpuset_zero(&node_cpu_set);
2711
Willy Tarreaue1a01072023-04-22 19:26:07 +02002712 if (ndomains < 2)
2713 goto leave;
2714
David CARLIERf5d48f82021-12-06 11:00:10 +00002715 /*
2716 * We retrieve the first active valid CPU domain
2717 * with active cpu and binding it, we returns
2718 * the number of cpu from the said domain
2719 */
2720 for (i = 0; i < ndomains; i ++) {
2721 struct hap_cpuset dom;
2722 ha_cpuset_zero(&dom);
2723 if (cpuset_getaffinity(CPU_LEVEL_WHICH, CPU_WHICH_DOMAIN, i, sizeof(dom.cpuset), &dom.cpuset) == -1)
2724 continue;
2725
2726 if (!ha_cpuset_count(&dom))
2727 continue;
2728
2729 ha_cpuset_assign(&node_cpu_set, &dom);
2730
2731 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));
2732 if (cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2733 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2734
2735 /* clear the cpuset used as return value */
2736 ha_cpuset_zero(&node_cpu_set);
2737 }
2738 break;
2739 }
Willy Tarreaue1a01072023-04-22 19:26:07 +02002740 leave:
David CARLIERf5d48f82021-12-06 11:00:10 +00002741 return ha_cpuset_count(&node_cpu_set);
2742}
2743
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002744#else
2745static int numa_detect_topology()
2746{
2747 return 0;
2748}
2749
2750#endif
2751#endif /* USE_THREAD && USE_CPU_AFFINITY */
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002752
Willy Tarreaubb925012009-07-23 13:36:36 +02002753/*
2754 * Returns the error code, 0 if OK, or any combination of :
2755 * - ERR_ABORT: must abort ASAP
2756 * - ERR_FATAL: we can continue parsing but not start the service
2757 * - ERR_WARN: a warning has been emitted
2758 * - ERR_ALERT: an alert has been emitted
2759 * Only the two first ones can stop processing, the two others are just
2760 * indicators.
2761 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002762int check_config_validity()
2763{
2764 int cfgerr = 0;
2765 struct proxy *curproxy = NULL;
Emeric Brun3b68b602022-08-18 15:53:21 +02002766 struct proxy *init_proxies_list = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002767 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002768 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002769 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002770 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002771 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002772 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002773 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01002774 struct resolvers *curr_resolvers = NULL;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002775 int i;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002776
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002777 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002778 /*
2779 * Now, check for the integrity of all that we have collected.
2780 */
2781
Willy Tarreau193b8c62012-11-22 00:17:38 +01002782 if (!global.tune.max_http_hdr)
2783 global.tune.max_http_hdr = MAX_HTTP_HDR;
2784
2785 if (!global.tune.cookie_len)
2786 global.tune.cookie_len = CAPTURE_LEN;
2787
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002788 if (!global.tune.requri_len)
2789 global.tune.requri_len = REQURI_LEN;
2790
Willy Tarreau149ab772019-01-26 14:27:06 +01002791 if (!global.nbthread) {
2792 /* nbthread not set, thus automatic. In this case, and only if
2793 * running on a single process, we enable the same number of
2794 * threads as the number of CPUs the process is bound to. This
2795 * allows to easily control the number of threads using taskset.
2796 */
2797 global.nbthread = 1;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002798
Willy Tarreau149ab772019-01-26 14:27:06 +01002799#if defined(USE_THREAD)
Willy Tarreaub63dbb72021-06-11 16:50:29 +02002800 {
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002801 int numa_cores = 0;
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002802#if defined(USE_CPU_AFFINITY)
Willy Tarreau6f883502023-07-18 17:45:21 +02002803 if (global.numa_cpu_mapping && !thread_cpu_mask_forced() && !cpu_map_configured())
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002804 numa_cores = numa_detect_topology();
2805#endif
2806 global.nbthread = numa_cores ? numa_cores :
2807 thread_cpus_enabled_at_boot;
Willy Tarreau400b3ae2022-12-08 08:04:46 +01002808
2809 /* Note that we cannot have more than 32 or 64 threads per group */
2810 if (!global.nbtgroups)
2811 global.nbtgroups = 1;
2812
2813 if (global.nbthread > MAX_THREADS_PER_GROUP * global.nbtgroups) {
2814 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",
2815 global.nbthread, MAX_THREADS_PER_GROUP * global.nbtgroups, MAX_THREADS_PER_GROUP);
2816 global.nbthread = MAX_THREADS_PER_GROUP * global.nbtgroups;
2817 }
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002818 }
Willy Tarreau149ab772019-01-26 14:27:06 +01002819#endif
2820 }
2821
Willy Tarreauc33b9692021-09-22 12:07:23 +02002822 if (!global.nbtgroups)
2823 global.nbtgroups = 1;
2824
Willy Tarreaue6806eb2021-09-27 10:10:26 +02002825 if (thread_map_to_groups() < 0) {
2826 err_code |= ERR_ALERT | ERR_FATAL;
2827 goto out;
2828 }
2829
Willy Tarreaubafbe012017-11-24 17:34:44 +01002830 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002831
Willy Tarreaubafbe012017-11-24 17:34:44 +01002832 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002833
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002834 /* Post initialisation of the users and groups lists. */
2835 err_code = userlist_postinit();
2836 if (err_code != ERR_NONE)
2837 goto out;
2838
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002839 /* first, we will invert the proxy list order */
2840 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002841 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002842 struct proxy *next;
2843
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002844 next = proxies_list->next;
2845 proxies_list->next = curproxy;
2846 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002847 if (!next)
2848 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002849 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002850 }
2851
Emeric Brun3b68b602022-08-18 15:53:21 +02002852 /* starting to initialize the main proxies list */
2853 init_proxies_list = proxies_list;
2854
2855init_proxies_list_stage1:
2856 for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002857 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002858 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002859 struct sticking_rule *mrule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002860 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002861 unsigned int next_id;
2862
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002863 if (!(curproxy->cap & PR_CAP_INT) && curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002864 /* proxy ID not set, use automatic numbering with first
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002865 * spare entry starting with next_pxid. We don't assign
2866 * numbers for internal proxies as they may depend on
2867 * build or config options and we don't want them to
2868 * possibly reuse existing IDs.
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002869 */
2870 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2871 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2872 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002873 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002874
Willy Tarreau32b51cd2021-08-26 15:59:44 +02002875 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize >= (256 << 20) && ONLY_ONCE()) {
2876 ha_alert("global.tune.bufsize must be below 256 MB when HTTP is in use (current value = %d).\n",
2877 global.tune.bufsize);
2878 cfgerr++;
2879 }
2880
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002881 /* next IDs are shifted even if the proxy is disabled, this
2882 * guarantees that a proxy that is temporarily disabled in the
2883 * configuration doesn't cause a renumbering. Internal proxies
2884 * that are not assigned a static ID must never shift the IDs
2885 * either since they may appear in any order (Lua, logs, etc).
2886 * The GLOBAL proxy that carries the stats socket has its ID
2887 * forced to zero.
2888 */
2889 if (curproxy->uuid >= 0)
2890 next_pxid++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002891
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002892 if (curproxy->flags & PR_FL_DISABLED) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002893 /* ensure we don't keep listeners uselessly bound. We
2894 * can't disable their listeners yet (fdtab not
2895 * allocated yet) but let's skip them.
2896 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002897 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002898 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002899 curproxy->table->peers.p = NULL;
2900 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002901 continue;
2902 }
2903
Christopher Fauletff556272021-10-13 11:04:10 +02002904 /* The current proxy is referencing a default proxy. We must
2905 * finalize its config, but only once. If the default proxy is
2906 * ready (PR_FL_READY) it means it was already fully configured.
2907 */
2908 if (curproxy->defpx) {
2909 if (!(curproxy->defpx->flags & PR_FL_READY)) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02002910 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
2911 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l4_rules, curproxy->defpx, &err_code);
2912 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l5_rules, curproxy->defpx, &err_code);
2913 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.inspect_rules, curproxy->defpx, &err_code);
2914 cfgerr += check_action_rules(&curproxy->defpx->tcp_rep.inspect_rules, curproxy->defpx, &err_code);
2915 cfgerr += check_action_rules(&curproxy->defpx->http_req_rules, curproxy->defpx, &err_code);
2916 cfgerr += check_action_rules(&curproxy->defpx->http_res_rules, curproxy->defpx, &err_code);
2917 cfgerr += check_action_rules(&curproxy->defpx->http_after_res_rules, curproxy->defpx, &err_code);
2918
Christopher Fauletff556272021-10-13 11:04:10 +02002919 err = NULL;
2920 i = smp_resolve_args(curproxy->defpx, &err);
2921 cfgerr += i;
2922 if (i) {
2923 indent_msg(&err, 8);
2924 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
2925 ha_free(&err);
2926 }
2927 else
2928 cfgerr += acl_find_targets(curproxy->defpx);
2929
2930 /* default proxy is now ready. Set the right FE/BE capabilities */
2931 curproxy->defpx->flags |= PR_FL_READY;
2932 }
2933 }
2934
Willy Tarreau3d209582014-05-09 17:06:11 +02002935 /* check and reduce the bind-proc of each listener */
2936 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreauf6a84442023-04-22 23:25:38 +02002937 int ret;
Willy Tarreau3d209582014-05-09 17:06:11 +02002938
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002939 /* HTTP frontends with "h2" as ALPN/NPN will work in
2940 * HTTP/2 and absolutely require buffers 16kB or larger.
2941 */
2942#ifdef USE_OPENSSL
Willy Tarreau158c18e2023-04-19 08:28:40 +02002943 /* no-alpn ? If so, it's the right moment to remove it */
2944 if (bind_conf->ssl_conf.alpn_str && !bind_conf->ssl_conf.alpn_len) {
2945 free(bind_conf->ssl_conf.alpn_str);
2946 bind_conf->ssl_conf.alpn_str = NULL;
2947 }
Willy Tarreau5003ac72023-04-19 09:12:33 +02002948#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2949 else if (!bind_conf->ssl_conf.alpn_str && !bind_conf->ssl_conf.npn_str &&
2950 ((bind_conf->options & BC_O_USE_SSL) || bind_conf->xprt == xprt_get(XPRT_QUIC)) &&
2951 curproxy->mode == PR_MODE_HTTP && global.tune.bufsize >= 16384) {
2952
2953 /* Neither ALPN nor NPN were explicitly set nor disabled, we're
2954 * in HTTP mode with an SSL or QUIC listener, we can enable ALPN.
2955 * Note that it's in binary form.
2956 */
2957 if (bind_conf->xprt == xprt_get(XPRT_QUIC))
2958 bind_conf->ssl_conf.alpn_str = strdup("\002h3");
2959 else
2960 bind_conf->ssl_conf.alpn_str = strdup("\002h2\010http/1.1");
2961
2962 if (!bind_conf->ssl_conf.alpn_str) {
2963 ha_alert("Proxy '%s': out of memory while trying to allocate a default alpn string in 'bind %s' at [%s:%d].\n",
2964 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2965 cfgerr++;
2966 err_code |= ERR_FATAL | ERR_ALERT;
2967 goto out;
2968 }
2969 bind_conf->ssl_conf.alpn_len = strlen(bind_conf->ssl_conf.alpn_str);
2970 }
2971#endif
Willy Tarreau158c18e2023-04-19 08:28:40 +02002972
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002973 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2974#ifdef OPENSSL_NPN_NEGOTIATED
2975 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002976 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002977 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 +01002978 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002979 cfgerr++;
2980 }
2981#endif
2982#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2983 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002984 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002985 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 +01002986 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002987 cfgerr++;
2988 }
2989#endif
2990 } /* HTTP && bufsize < 16384 */
2991#endif
2992
Willy Tarreauf6a84442023-04-22 23:25:38 +02002993 /* finish the bind setup */
2994 ret = bind_complete_thread_setup(bind_conf, &err_code);
2995 if (ret != 0) {
2996 cfgerr += ret;
2997 if (err_code & ERR_FATAL)
2998 goto out;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002999 }
Willy Tarreau3d209582014-05-09 17:06:11 +02003000 }
3001
Willy Tarreauff01a212009-03-15 13:46:16 +01003002 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01003003 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02003004 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01003005 break;
3006
3007 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01003008 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01003009 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02003010
3011 case PR_MODE_CLI:
3012 cfgerr += proxy_cfg_ensure_no_http(curproxy);
3013 break;
Emeric Brun3b68b602022-08-18 15:53:21 +02003014
Emeric Brun54932b42020-07-07 09:43:24 +02003015 case PR_MODE_SYSLOG:
Emeric Brun3b68b602022-08-18 15:53:21 +02003016 /* this mode is initialized as the classic tcp proxy */
3017 cfgerr += proxy_cfg_ensure_no_http(curproxy);
3018 break;
3019
Willy Tarreaua389c9e2020-10-07 17:49:42 +02003020 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02003021 case PR_MODES:
3022 /* should not happen, bug gcc warn missing switch statement */
Emeric Brun3b68b602022-08-18 15:53:21 +02003023 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 +02003024 proxy_type_str(curproxy), curproxy->id);
3025 cfgerr++;
3026 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01003027 }
3028
William Lallemand2c04a5a2021-08-13 15:21:12 +02003029 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003030 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 +01003031 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02003032 err_code |= ERR_WARN;
3033 }
3034
Willy Tarreau77e0dae2020-10-14 15:44:27 +02003035 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003036 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003037 if (curproxy->options & PR_O_TRANSP) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003038 ha_alert("%s '%s' cannot use both transparent and balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003039 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003040 cfgerr++;
3041 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003042#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003043 else if (curproxy->srv == NULL) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003044 ha_alert("%s '%s' needs at least 1 server in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003045 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003046 cfgerr++;
3047 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003048#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02003049 else if (curproxy->options & PR_O_DISPATCH) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003050 ha_warning("dispatch address of %s '%s' will be ignored in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003051 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003052 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003053 }
3054 }
Willy Tarreau25241232021-07-18 19:18:56 +02003055 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003056 /* If no LB algo is set in a backend, and we're not in
3057 * transparent mode, dispatch mode nor proxy mode, we
3058 * want to use balance roundrobin by default.
3059 */
3060 curproxy->lbprm.algo &= ~BE_LB_ALGO;
3061 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003062 }
3063 }
Willy Tarreau193cf932007-09-17 10:17:23 +02003064
Willy Tarreau1620ec32011-08-06 17:05:02 +02003065 if (curproxy->options & PR_O_DISPATCH)
Willy Tarreau25241232021-07-18 19:18:56 +02003066 curproxy->options &= ~PR_O_TRANSP;
Willy Tarreau1620ec32011-08-06 17:05:02 +02003067 else if (curproxy->options & PR_O_TRANSP)
Willy Tarreau25241232021-07-18 19:18:56 +02003068 curproxy->options &= ~PR_O_DISPATCH;
Willy Tarreau82936582007-11-30 15:20:09 +01003069
Christopher Faulete5870d82020-04-15 11:32:03 +02003070 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003071 ha_warning("%s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
Christopher Faulete5870d82020-04-15 11:32:03 +02003072 proxy_type_str(curproxy), curproxy->id);
3073 err_code |= ERR_WARN;
3074 }
3075
3076 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02003077 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02003078 if (curproxy->options & PR_O_DISABLE404) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003079 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003080 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02003081 err_code |= ERR_WARN;
3082 curproxy->options &= ~PR_O_DISABLE404;
3083 }
3084 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003085 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003086 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02003087 err_code |= ERR_WARN;
3088 curproxy->options &= ~PR_O2_CHK_SNDST;
3089 }
Willy Tarreauef781042010-01-27 11:53:01 +01003090 }
3091
Simon Horman98637e52014-06-20 12:30:16 +09003092 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
3093 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003094 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
3095 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09003096 cfgerr++;
3097 }
3098 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003099 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
3100 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09003101 cfgerr++;
3102 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01003103 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
3104 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
3105 curproxy->id, "option external-check");
3106 err_code |= ERR_WARN;
3107 }
Simon Horman98637e52014-06-20 12:30:16 +09003108 }
3109
Simon Horman64e34162015-02-06 11:11:57 +09003110 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003111 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003112 ha_warning("'email-alert' will be ignored for %s '%s' (the presence any of "
Christopher Faulet767a84b2017-11-24 16:50:31 +01003113 "'email-alert from', 'email-alert level' 'email-alert mailers', "
3114 "'email-alert myhostname', or 'email-alert to' "
3115 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
3116 "to be present).\n",
3117 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003118 err_code |= ERR_WARN;
3119 free_email_alert(curproxy);
3120 }
3121 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01003122 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09003123 }
3124
Simon Horman98637e52014-06-20 12:30:16 +09003125 if (curproxy->check_command) {
3126 int clear = 0;
3127 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003128 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003129 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09003130 err_code |= ERR_WARN;
3131 clear = 1;
3132 }
3133 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003134 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
3135 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09003136 cfgerr++;
3137 }
3138 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003139 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09003140 }
3141 }
3142
3143 if (curproxy->check_path) {
3144 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003145 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003146 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09003147 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003148 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09003149 }
3150 }
3151
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003152 /* if a default backend was specified, let's find it */
3153 if (curproxy->defbe.name) {
3154 struct proxy *target;
3155
Willy Tarreauafb39922015-05-26 12:04:09 +02003156 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01003157 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003158 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
3159 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003160 cfgerr++;
3161 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003162 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
3163 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02003164 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02003165 } else if (target->mode != curproxy->mode &&
3166 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
3167
Christopher Faulet767a84b2017-11-24 16:50:31 +01003168 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
3169 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
3170 curproxy->conf.file, curproxy->conf.line,
3171 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
3172 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02003173 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003174 } else {
3175 free(curproxy->defbe.name);
3176 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01003177 /* Emit a warning if this proxy also has some servers */
3178 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003179 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
3180 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01003181 err_code |= ERR_WARN;
3182 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003183 }
3184 }
3185
Willy Tarreau55ea7572007-06-17 19:56:27 +02003186 /* find the target proxy for 'use_backend' rules */
3187 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02003188 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003189 struct logformat_node *node;
3190 char *pxname;
3191
3192 /* Try to parse the string as a log format expression. If the result
3193 * of the parsing is only one entry containing a simple string, then
3194 * it's a standard string corresponding to a static rule, thus the
3195 * parsing is cancelled and be.name is restored to be resolved.
3196 */
3197 pxname = rule->be.name;
3198 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01003199 curproxy->conf.args.ctx = ARGC_UBK;
3200 curproxy->conf.args.file = rule->file;
3201 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003202 err = NULL;
3203 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003204 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
3205 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003206 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003207 cfgerr++;
3208 continue;
3209 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003210 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
3211
3212 if (!LIST_ISEMPTY(&rule->be.expr)) {
3213 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
3214 rule->dynamic = 1;
3215 free(pxname);
3216 continue;
3217 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02003218 /* Only one element in the list, a simple string: free the expression and
3219 * fall back to static rule
3220 */
Willy Tarreau2b718102021-04-21 07:32:39 +02003221 LIST_DELETE(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003222 free(node->arg);
3223 free(node);
3224 }
3225
3226 rule->dynamic = 0;
3227 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003228
Willy Tarreauafb39922015-05-26 12:04:09 +02003229 target = proxy_be_by_name(rule->be.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 use_backend: '%s'.\n",
3232 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003233 cfgerr++;
3234 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003235 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
3236 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +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) in a 'use_backend' rule (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 Tarreau55ea7572007-06-17 19:56:27 +02003247 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003248 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003249 rule->be.backend = target;
3250 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003251 err_code |= warnif_tcp_http_cond(curproxy, rule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003252 }
3253
Willy Tarreau64ab6072014-09-16 12:17:36 +02003254 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003255 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02003256 struct server *target;
3257 struct logformat_node *node;
3258 char *server_name;
3259
3260 /* We try to parse the string as a log format expression. If the result of the parsing
3261 * is only one entry containing a single string, then it's a standard string corresponding
3262 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
3263 */
3264 server_name = srule->srv.name;
3265 LIST_INIT(&srule->expr);
3266 curproxy->conf.args.ctx = ARGC_USRV;
3267 err = NULL;
3268 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
3269 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
3270 srule->file, srule->line, server_name, err);
3271 free(err);
3272 cfgerr++;
3273 continue;
3274 }
3275 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
3276
3277 if (!LIST_ISEMPTY(&srule->expr)) {
3278 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
3279 srule->dynamic = 1;
3280 free(server_name);
3281 continue;
3282 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02003283 /* Only one element in the list, a simple string: free the expression and
3284 * fall back to static rule
3285 */
Willy Tarreau2b718102021-04-21 07:32:39 +02003286 LIST_DELETE(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02003287 free(node->arg);
3288 free(node);
3289 }
3290
3291 srule->dynamic = 0;
3292 srule->srv.name = server_name;
3293 target = findserver(curproxy, srule->srv.name);
Christopher Faulet581db2b2021-03-26 10:02:46 +01003294 err_code |= warnif_tcp_http_cond(curproxy, srule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003295
3296 if (!target) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003297 ha_alert("%s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003298 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003299 cfgerr++;
3300 continue;
3301 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01003302 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003303 srule->srv.ptr = target;
Amaury Denoyelle06269612021-08-23 14:05:07 +02003304 target->flags |= SRV_F_NON_PURGEABLE;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003305 }
3306
Emeric Brunb982a3d2010-01-04 15:45:53 +01003307 /* find the target table for 'stick' rules */
3308 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003309 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003310
Emeric Brun1d33b292010-01-04 15:47:17 +01003311 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
3312 if (mrule->flags & STK_IS_STORE)
3313 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3314
Emeric Brunb982a3d2010-01-04 15:45:53 +01003315 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003316 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003317 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003318 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003319
3320 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003321 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003322 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003323 cfgerr++;
3324 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003325 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003326 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3327 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003328 cfgerr++;
3329 }
3330 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003331 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003332 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003333 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3334 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003335 if (!in_proxies_list(target->proxies_list, curproxy)) {
3336 curproxy->next_stkt_ref = target->proxies_list;
3337 target->proxies_list = curproxy;
3338 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003339 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003340 err_code |= warnif_tcp_http_cond(curproxy, mrule->cond);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003341 }
3342
3343 /* find the target table for 'store response' rules */
3344 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003345 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003346
Emeric Brun1d33b292010-01-04 15:47:17 +01003347 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3348
Emeric Brunb982a3d2010-01-04 15:45:53 +01003349 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003350 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003351 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003352 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003353
3354 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003355 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003356 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003357 cfgerr++;
3358 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003359 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003360 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3361 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003362 cfgerr++;
3363 }
3364 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003365 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003366 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003367 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3368 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003369 if (!in_proxies_list(target->proxies_list, curproxy)) {
3370 curproxy->next_stkt_ref = target->proxies_list;
3371 target->proxies_list = curproxy;
3372 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003373 }
3374 }
3375
Christopher Faulet42c6cf92021-03-25 17:19:04 +01003376 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
3377 cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code);
3378 cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code);
3379 cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code);
3380 cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code);
3381 cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code);
3382 cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code);
3383 cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003384
Christopher Faulet5eef0182021-03-31 17:13:49 +02003385 /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */
3386 if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) {
3387 if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP)
3388 ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. "
3389 "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n",
3390 curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy));
3391 }
3392
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003393 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003394 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003395
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003396 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003397 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003398 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003399 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003400 break;
3401 }
3402 }
3403
3404 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003405 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003406 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01003407 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003408 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003409 cfgerr++;
3410 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003411 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003412 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003413 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003414 }
Emeric Brun32da3c42010-09-23 18:39:19 +02003415 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003416 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
3417 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003418 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003419 cfgerr++;
3420 }
3421 }
3422
Simon Horman9dc49962015-01-30 11:22:59 +09003423
3424 if (curproxy->email_alert.mailers.name) {
3425 struct mailers *curmailers = mailers;
3426
3427 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003428 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09003429 break;
Simon Horman9dc49962015-01-30 11:22:59 +09003430 }
Simon Horman9dc49962015-01-30 11:22:59 +09003431 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003432 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
3433 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09003434 free_email_alert(curproxy);
3435 cfgerr++;
3436 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02003437 else {
3438 err = NULL;
3439 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003440 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003441 free(err);
3442 cfgerr++;
3443 }
3444 }
Simon Horman9dc49962015-01-30 11:22:59 +09003445 }
3446
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003447 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01003448 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003449 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003450 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
3451 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003452 cfgerr++;
3453 goto out_uri_auth_compat;
3454 }
3455
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003456 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003457 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003458 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003459 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003460 struct act_rule *rule;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003461 i = 0;
3462
Willy Tarreau95fa4692010-02-01 13:05:50 +01003463 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
3464 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003465
3466 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003467 uri_auth_compat_req[i++] = "realm";
3468 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
3469 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003470
Willy Tarreau95fa4692010-02-01 13:05:50 +01003471 uri_auth_compat_req[i++] = "unless";
3472 uri_auth_compat_req[i++] = "{";
3473 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
3474 uri_auth_compat_req[i++] = "}";
3475 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003476
Willy Tarreauff011f22011-01-06 17:51:27 +01003477 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
3478 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003479 cfgerr++;
3480 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003481 }
3482
Willy Tarreau2b718102021-04-21 07:32:39 +02003483 LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01003484
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003485 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003486 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003487 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003488 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003489 }
3490out_uri_auth_compat:
3491
Dragan Dosen43885c72015-10-01 13:18:13 +02003492 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02003493 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02003494 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
3495 if (!curproxy->conf.logformat_sd_string) {
3496 /* set the default logformat_sd_string */
3497 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
3498 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003499 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02003500 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003501 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02003502
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003503 /* compile the log format */
3504 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02003505 if (curproxy->conf.logformat_string != default_http_log_format &&
3506 curproxy->conf.logformat_string != default_tcp_log_format &&
3507 curproxy->conf.logformat_string != clf_http_log_format)
3508 free(curproxy->conf.logformat_string);
3509 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003510 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02003511 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003512
3513 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3514 free(curproxy->conf.logformat_sd_string);
3515 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003516 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003517 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003518 }
3519
Willy Tarreau62a61232013-04-12 18:13:46 +02003520 if (curproxy->conf.logformat_string) {
3521 curproxy->conf.args.ctx = ARGC_LOG;
3522 curproxy->conf.args.file = curproxy->conf.lfs_file;
3523 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003524 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003525 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
3526 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003527 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003528 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3529 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003530 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003531 cfgerr++;
3532 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003533 curproxy->conf.args.file = NULL;
3534 curproxy->conf.args.line = 0;
3535 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003536
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003537 if (curproxy->conf.logformat_sd_string) {
3538 curproxy->conf.args.ctx = ARGC_LOGSD;
3539 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3540 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003541 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003542 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
3543 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003544 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003545 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3546 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003547 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003548 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003549 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003550 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3551 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003552 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003553 cfgerr++;
3554 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003555 curproxy->conf.args.file = NULL;
3556 curproxy->conf.args.line = 0;
3557 }
3558
Willy Tarreau62a61232013-04-12 18:13:46 +02003559 if (curproxy->conf.uniqueid_format_string) {
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003560 int where = 0;
3561
Willy Tarreau62a61232013-04-12 18:13:46 +02003562 curproxy->conf.args.ctx = ARGC_UIF;
3563 curproxy->conf.args.file = curproxy->conf.uif_file;
3564 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003565 err = NULL;
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003566 if (curproxy->cap & PR_CAP_FE)
3567 where |= SMP_VAL_FE_HRQ_HDR;
3568 if (curproxy->cap & PR_CAP_BE)
3569 where |= SMP_VAL_BE_HRQ_HDR;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003570 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003571 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES, where, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003572 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3573 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003574 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003575 cfgerr++;
3576 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003577 curproxy->conf.args.file = NULL;
3578 curproxy->conf.args.line = 0;
3579 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003580
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +02003581 if (curproxy->conf.error_logformat_string) {
3582 curproxy->conf.args.ctx = ARGC_LOG;
3583 curproxy->conf.args.file = curproxy->conf.elfs_file;
3584 curproxy->conf.args.line = curproxy->conf.elfs_line;
3585 err = NULL;
3586 if (!parse_logformat_string(curproxy->conf.error_logformat_string, curproxy, &curproxy->logformat_error,
3587 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
3588 SMP_VAL_FE_LOG_END, &err)) {
3589 ha_alert("Parsing [%s:%d]: failed to parse error-log-format : %s.\n",
3590 curproxy->conf.elfs_file, curproxy->conf.elfs_line, err);
3591 free(err);
3592 cfgerr++;
3593 }
3594 curproxy->conf.args.file = NULL;
3595 curproxy->conf.args.line = 0;
3596 }
3597
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +02003598 /* "balance hash" needs to compile its expression */
3599 if ((curproxy->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_SMP) {
3600 int idx = 0;
3601 const char *args[] = {
3602 curproxy->lbprm.arg_str,
3603 NULL,
3604 };
3605
3606 err = NULL;
3607 curproxy->conf.args.ctx = ARGC_USRV; // same context as use_server.
3608 curproxy->lbprm.expr =
3609 sample_parse_expr((char **)args, &idx,
3610 curproxy->conf.file, curproxy->conf.line,
3611 &err, &curproxy->conf.args, NULL);
3612
3613 if (!curproxy->lbprm.expr) {
3614 ha_alert("%s '%s' [%s:%d]: failed to parse 'balance hash' expression '%s' in : %s.\n",
3615 proxy_type_str(curproxy), curproxy->id,
3616 curproxy->conf.file, curproxy->conf.line,
3617 curproxy->lbprm.arg_str, err);
3618 ha_free(&err);
3619 cfgerr++;
3620 }
3621 else if (!(curproxy->lbprm.expr->fetch->val & SMP_VAL_BE_SET_SRV)) {
3622 ha_alert("%s '%s' [%s:%d]: error detected while parsing 'balance hash' expression '%s' "
3623 "which requires information from %s, which is not available here.\n",
3624 proxy_type_str(curproxy), curproxy->id,
3625 curproxy->conf.file, curproxy->conf.line,
3626 curproxy->lbprm.arg_str, sample_src_names(curproxy->lbprm.expr->fetch->use));
3627 cfgerr++;
3628 }
3629 else if (curproxy->mode == PR_MODE_HTTP && (curproxy->lbprm.expr->fetch->use & SMP_USE_L6REQ)) {
3630 ha_warning("%s '%s' [%s:%d]: L6 sample fetch <%s> will be ignored in 'balance hash' expression in HTTP mode.\n",
3631 proxy_type_str(curproxy), curproxy->id,
3632 curproxy->conf.file, curproxy->conf.line,
3633 curproxy->lbprm.arg_str);
3634 }
3635 else
3636 curproxy->http_needed |= !!(curproxy->lbprm.expr->fetch->use & SMP_USE_HTTP_ANY);
3637 }
Aurelien DARRAGONb2e2ec52023-01-09 11:09:03 +01003638
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003639 /* only now we can check if some args remain unresolved.
3640 * This must be done after the users and groups resolution.
3641 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01003642 err = NULL;
3643 i = smp_resolve_args(curproxy, &err);
3644 cfgerr += i;
3645 if (i) {
3646 indent_msg(&err, 8);
3647 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
3648 ha_free(&err);
3649 } else
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003650 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003651
William Lallemand2c04a5a2021-08-13 15:21:12 +02003652 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003653 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003654 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003655 (!curproxy->timeout.connect ||
3656 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003657 ha_warning("missing timeouts for %s '%s'.\n"
Christopher Faulet767a84b2017-11-24 16:50:31 +01003658 " | While not properly invalid, you will certainly encounter various problems\n"
3659 " | with such a configuration. To fix this, please ensure that all following\n"
3660 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3661 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003662 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003663 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003664
Willy Tarreau1fa31262007-12-03 00:36:16 +01003665 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3666 * We must still support older configurations, so let's find out whether those
3667 * parameters have been set or must be copied from contimeouts.
3668 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01003669 if (!curproxy->timeout.tarpit)
3670 curproxy->timeout.tarpit = curproxy->timeout.connect;
3671 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
3672 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003673
Christopher Faulete5870d82020-04-15 11:32:03 +02003674 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003675 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 +01003676 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003677 err_code |= ERR_WARN;
3678 }
3679
Willy Tarreau193b8c62012-11-22 00:17:38 +01003680 /* ensure that cookie capture length is not too large */
3681 if (curproxy->capture_len >= global.tune.cookie_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003682 ha_warning("truncating capture length to %d bytes for %s '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003683 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003684 err_code |= ERR_WARN;
3685 curproxy->capture_len = global.tune.cookie_len - 1;
3686 }
3687
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003688 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003689 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003690 curproxy->req_cap_pool = create_pool("ptrcap",
3691 curproxy->nb_req_cap * sizeof(char *),
3692 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003693 }
3694
3695 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003696 curproxy->rsp_cap_pool = create_pool("ptrcap",
3697 curproxy->nb_rsp_cap * sizeof(char *),
3698 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003699 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003700
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003701 switch (curproxy->load_server_state_from_file) {
3702 case PR_SRV_STATE_FILE_UNSPEC:
3703 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3704 break;
3705 case PR_SRV_STATE_FILE_GLOBAL:
3706 if (!global.server_state_file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003707 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 +01003708 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003709 err_code |= ERR_WARN;
3710 }
3711 break;
3712 }
3713
Willy Tarreaubaaee002006-06-26 02:48:02 +02003714 /* first, we will invert the servers list order */
3715 newsrv = NULL;
3716 while (curproxy->srv) {
3717 struct server *next;
3718
3719 next = curproxy->srv->next;
3720 curproxy->srv->next = newsrv;
3721 newsrv = curproxy->srv;
3722 if (!next)
3723 break;
3724 curproxy->srv = next;
3725 }
3726
Willy Tarreau17edc812014-01-03 12:14:34 +01003727 /* Check that no server name conflicts. This causes trouble in the stats.
3728 * We only emit a warning for the first conflict affecting each server,
3729 * in order to avoid combinatory explosion if all servers have the same
3730 * name. We do that only for servers which do not have an explicit ID,
3731 * because these IDs were made also for distinguishing them and we don't
3732 * want to annoy people who correctly manage them.
3733 */
3734 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3735 struct server *other_srv;
3736
3737 if (newsrv->puid)
3738 continue;
3739
3740 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3741 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003742 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 +01003743 newsrv->conf.file, newsrv->conf.line,
3744 proxy_type_str(curproxy), curproxy->id,
3745 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003746 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003747 break;
3748 }
3749 }
3750 }
3751
Willy Tarreaudd701652010-05-25 23:03:02 +02003752 /* assign automatic UIDs to servers which don't have one yet */
3753 next_id = 1;
3754 newsrv = curproxy->srv;
3755 while (newsrv != NULL) {
3756 if (!newsrv->puid) {
3757 /* server ID not set, use automatic numbering with first
3758 * spare entry starting with next_svid.
3759 */
3760 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3761 newsrv->conf.id.key = newsrv->puid = next_id;
3762 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
3763 }
Amaury Denoyelle077c6b82021-06-14 17:04:25 +02003764 newsrv->conf.name.key = newsrv->id;
3765 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
3766
Willy Tarreaudd701652010-05-25 23:03:02 +02003767 next_id++;
3768 newsrv = newsrv->next;
3769 }
3770
Willy Tarreau20697042007-11-15 23:26:18 +01003771 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003772 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003773
Willy Tarreau62c3be22012-01-20 13:12:32 +01003774 /*
3775 * If this server supports a maxconn parameter, it needs a dedicated
3776 * tasks to fill the emptied slots when a connection leaves.
3777 * Also, resolve deferred tracking dependency if needed.
3778 */
3779 newsrv = curproxy->srv;
3780 while (newsrv != NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003781 set_usermsgs_ctx(newsrv->conf.file, newsrv->conf.line, &newsrv->obj_type);
3782
Aurelien DARRAGON3e7a0bb2023-02-08 11:49:02 +01003783 srv_minmax_conn_apply(newsrv);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003784
William Dauchyf6370442020-11-14 19:25:33 +01003785 /* this will also properly set the transport layer for
3786 * prod and checks
3787 * if default-server have use_ssl, prerare ssl init
3788 * without activating it */
3789 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
Christopher Faulet4ab26792021-12-01 09:50:41 +01003790 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3791 ((newsrv->flags & SRV_F_DEFSRV_USE_SSL) && newsrv->use_ssl != 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003792 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3793 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3794 }
Emeric Brun94324a42012-10-11 14:00:19 +02003795
Willy Tarreau034c88c2017-01-23 23:36:45 +01003796 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3797 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3798 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003799 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 +01003800
Willy Tarreau62c3be22012-01-20 13:12:32 +01003801 if (newsrv->trackit) {
Amaury Denoyelle669b6202021-07-13 10:35:23 +02003802 if (srv_apply_track(newsrv, curproxy)) {
3803 ++cfgerr;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003804 goto next_srv;
3805 }
Willy Tarreau62c3be22012-01-20 13:12:32 +01003806 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003807
Willy Tarreau62c3be22012-01-20 13:12:32 +01003808 next_srv:
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003809 reset_usermsgs_ctx();
Willy Tarreau62c3be22012-01-20 13:12:32 +01003810 newsrv = newsrv->next;
3811 }
3812
Olivier Houchard4e694042017-03-14 20:01:29 +01003813 /*
3814 * Try to generate dynamic cookies for servers now.
3815 * It couldn't be done earlier, since at the time we parsed
3816 * the server line, we may not have known yet that we
3817 * should use dynamic cookies, or the secret key may not
3818 * have been provided yet.
3819 */
3820 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3821 newsrv = curproxy->srv;
3822 while (newsrv != NULL) {
3823 srv_set_dyncookie(newsrv);
3824 newsrv = newsrv->next;
3825 }
3826
3827 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003828 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003829 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003830 */
3831
3832 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3833 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3834 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003835 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3836 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3837 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003838 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3839 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003840 if (chash_init_server_tree(curproxy) < 0) {
3841 cfgerr++;
3842 }
Willy Tarreau9757a382009-10-03 12:56:50 +02003843 } else {
3844 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3845 fwrr_init_server_groups(curproxy);
3846 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003847 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003848
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003849 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003850 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3851 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3852 fwlc_init_server_tree(curproxy);
3853 } else {
3854 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3855 fas_init_server_tree(curproxy);
3856 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003857 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003858
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003859 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003860 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3861 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003862 if (chash_init_server_tree(curproxy) < 0) {
3863 cfgerr++;
3864 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003865 } else {
3866 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3867 init_server_map(curproxy);
3868 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003869 break;
3870 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003871 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003872
3873 if (curproxy->options & PR_O_LOGASAP)
3874 curproxy->to_log &= ~LW_BYTES;
3875
William Lallemand2c04a5a2021-08-13 15:21:12 +02003876 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003877 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3878 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003879 ha_warning("log format ignored for %s '%s' since it has no log address.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003880 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003881 err_code |= ERR_WARN;
3882 }
3883
Christopher Faulet3b6446f2021-03-15 15:10:38 +01003884 if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) {
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003885 int optnum;
3886
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003887 if (curproxy->uri_auth) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003888 ha_warning("'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003889 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003890 err_code |= ERR_WARN;
3891 curproxy->uri_auth = NULL;
3892 }
3893
Willy Tarreaude7dc882017-03-10 11:49:21 +01003894 if (curproxy->capture_name) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003895 ha_warning("'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003896 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003897 err_code |= ERR_WARN;
3898 }
3899
3900 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003901 ha_warning("'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003902 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003903 err_code |= ERR_WARN;
3904 }
3905
3906 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003907 ha_warning("'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003908 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003909 err_code |= ERR_WARN;
3910 }
3911
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003912 if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003913 ha_warning("'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003914 proxy_type_str(curproxy), curproxy->id);
3915 err_code |= ERR_WARN;
3916 }
3917
Willy Tarreaude7dc882017-03-10 11:49:21 +01003918 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003919 ha_warning("'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003920 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003921 err_code |= ERR_WARN;
3922 }
3923
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003924 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3925 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3926 (curproxy->cap & cfg_opts[optnum].cap) &&
3927 (curproxy->options & cfg_opts[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003928 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003929 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003930 err_code |= ERR_WARN;
3931 curproxy->options &= ~cfg_opts[optnum].val;
3932 }
3933 }
3934
3935 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3936 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3937 (curproxy->cap & cfg_opts2[optnum].cap) &&
3938 (curproxy->options2 & cfg_opts2[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003939 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003940 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003941 err_code |= ERR_WARN;
3942 curproxy->options2 &= ~cfg_opts2[optnum].val;
3943 }
3944 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003945
Willy Tarreau29fbe512015-08-20 19:35:14 +02003946#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003947 if (curproxy->conn_src.bind_hdr_occ) {
3948 curproxy->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02003949 ha_warning("%s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003950 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003951 err_code |= ERR_WARN;
3952 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003953#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003954 }
3955
Willy Tarreaubaaee002006-06-26 02:48:02 +02003956 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003957 * ensure that we're not cross-dressing a TCP server into HTTP.
3958 */
3959 newsrv = curproxy->srv;
3960 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003961 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003962 ha_alert("%s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003963 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003964 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003965 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003966
Willy Tarreau0cec3312011-10-31 13:49:26 +01003967 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003968 ha_warning("%s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003969 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003970 err_code |= ERR_WARN;
3971 }
3972
Willy Tarreauc93cd162014-05-13 15:54:22 +02003973 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003974 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 +01003975 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003976 err_code |= ERR_WARN;
3977 }
3978
Willy Tarreau29fbe512015-08-20 19:35:14 +02003979#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003980 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3981 newsrv->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02003982 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 +01003983 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003984 err_code |= ERR_WARN;
3985 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003986#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003987
Willy Tarreau46deab62018-04-28 07:18:15 +02003988 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3989 curproxy->options &= ~PR_O_REUSE_MASK;
3990
Willy Tarreau21d2af32008-02-14 20:25:24 +01003991 newsrv = newsrv->next;
3992 }
3993
Christopher Fauletd7c91962015-04-30 11:48:27 +02003994 /* Check filter configuration, if any */
3995 cfgerr += flt_check(curproxy);
3996
Willy Tarreauc1a21672009-08-16 22:37:44 +02003997 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003998 if (!curproxy->accept)
3999 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02004000
Christopher Fauletee08d6c2021-10-13 15:40:15 +02004001 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
4002 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02004003 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02004004
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004005 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02004006 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004007 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004008 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004009
William Lallemandcf62f7e2018-10-26 14:47:40 +02004010 if (curproxy->mode == PR_MODE_CLI) {
4011 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
4012 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
4013 }
4014
Willy Tarreauc1a21672009-08-16 22:37:44 +02004015 /* both TCP and HTTP must check switching rules */
4016 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02004017
4018 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01004019 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01004020 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
4021 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 +02004022 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004023 }
4024
4025 if (curproxy->cap & PR_CAP_BE) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02004026 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
4027 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02004028 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
4029
Christopher Fauletee08d6c2021-10-13 15:40:15 +02004030 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules) ||
4031 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_rep.inspect_rules)))
Emeric Brun97679e72010-09-23 17:56:44 +02004032 curproxy->be_rsp_ana |= AN_RES_INSPECT;
4033
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004034 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02004035 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004036 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004037 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004038
4039 /* If the backend does requires RDP cookie persistence, we have to
4040 * enable the corresponding analyser.
4041 */
4042 if (curproxy->options2 & PR_O2_RDPC_PRST)
4043 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02004044
4045 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01004046 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01004047 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
4048 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 +02004049 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004050 }
Christopher Fauleta717b992018-04-10 14:43:00 +02004051
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004052 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02004053 * attached to the current proxy */
4054 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Aurelien DARRAGON4e49a6f2023-10-19 16:06:03 +02004055 int mode = conn_pr_mode_to_proto_mode(curproxy->mode);
Willy Tarreau76a551d2018-12-02 13:09:09 +01004056 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02004057
Christopher Faulet8babe632024-02-29 14:27:45 +01004058 if (bind_conf->xprt && bind_conf->xprt == xprt_get(XPRT_QUIC)) {
4059 if (!bind_conf->mux_proto) {
4060 /* No protocol was specified. If we're using QUIC at the transport
4061 * layer, we'll instantiate it as a mux as well. If QUIC is not
4062 * compiled in, this will remain NULL.
4063 */
Willy Tarreau730cc022022-05-20 18:07:06 +02004064 bind_conf->mux_proto = get_mux_proto(ist("quic"));
Christopher Faulet8babe632024-02-29 14:27:45 +01004065 }
4066 if (bind_conf->options & BC_O_ACC_PROXY) {
4067 ha_alert("Binding [%s:%d] for %s %s: QUIC protocol does not support PROXY protocol yet."
4068 " 'accept-proxy' option cannot be used with a QUIC listener.\n",
4069 bind_conf->file, bind_conf->line,
4070 proxy_type_str(curproxy), curproxy->id);
4071 cfgerr++;
4072 }
Willy Tarreau730cc022022-05-20 18:07:06 +02004073 }
4074
Christopher Fauleta717b992018-04-10 14:43:00 +02004075 if (!bind_conf->mux_proto)
4076 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01004077
4078 /* it is possible that an incorrect mux was referenced
4079 * due to the proxy's mode not being taken into account
4080 * on first pass. Let's adjust it now.
4081 */
4082 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
4083
4084 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004085 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
Christopher Fauleta717b992018-04-10 14:43:00 +02004086 proxy_type_str(curproxy), curproxy->id,
4087 (int)bind_conf->mux_proto->token.len,
4088 bind_conf->mux_proto->token.ptr,
4089 bind_conf->arg, bind_conf->file, bind_conf->line);
4090 cfgerr++;
Willy Tarreaucac619b2022-05-20 17:53:32 +02004091 } else {
4092 if ((mux_ent->mux->flags & MX_FL_FRAMED) && !(bind_conf->options & BC_O_USE_SOCK_DGRAM)) {
4093 ha_alert("%s '%s' : frame-based MUX protocol '%.*s' is incompatible with stream transport of 'bind %s' at [%s:%d].\n",
4094 proxy_type_str(curproxy), curproxy->id,
4095 (int)bind_conf->mux_proto->token.len,
4096 bind_conf->mux_proto->token.ptr,
4097 bind_conf->arg, bind_conf->file, bind_conf->line);
4098 cfgerr++;
4099 }
4100 else if (!(mux_ent->mux->flags & MX_FL_FRAMED) && !(bind_conf->options & BC_O_USE_SOCK_STREAM)) {
4101 ha_alert("%s '%s' : stream-based MUX protocol '%.*s' is incompatible with framed transport of 'bind %s' at [%s:%d].\n",
4102 proxy_type_str(curproxy), curproxy->id,
4103 (int)bind_conf->mux_proto->token.len,
4104 bind_conf->mux_proto->token.ptr,
4105 bind_conf->arg, bind_conf->file, bind_conf->line);
4106 cfgerr++;
4107 }
Christopher Fauleta717b992018-04-10 14:43:00 +02004108 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01004109
4110 /* update the mux */
4111 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02004112 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004113 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
Aurelien DARRAGON4e49a6f2023-10-19 16:06:03 +02004114 int mode = conn_pr_mode_to_proto_mode(curproxy->mode);
Willy Tarreau76a551d2018-12-02 13:09:09 +01004115 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004116
4117 if (!newsrv->mux_proto)
4118 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01004119
4120 /* it is possible that an incorrect mux was referenced
4121 * due to the proxy's mode not being taken into account
4122 * on first pass. Let's adjust it now.
4123 */
4124 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
4125
4126 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004127 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004128 proxy_type_str(curproxy), curproxy->id,
4129 (int)newsrv->mux_proto->token.len,
4130 newsrv->mux_proto->token.ptr,
4131 newsrv->id, newsrv->conf.file, newsrv->conf.line);
4132 cfgerr++;
4133 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01004134
4135 /* update the mux */
4136 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004137 }
Amaury Denoyellef2c27a52021-07-23 15:46:46 +02004138
4139 /* Allocate default tcp-check rules for proxies without
4140 * explicit rules.
4141 */
4142 if (curproxy->cap & PR_CAP_BE) {
4143 if (!(curproxy->options2 & PR_O2_CHK_ANY)) {
4144 struct tcpcheck_ruleset *rs = NULL;
4145 struct tcpcheck_rules *rules = &curproxy->tcpcheck_rules;
4146
4147 curproxy->options2 |= PR_O2_TCPCHK_CHK;
4148
4149 rs = find_tcpcheck_ruleset("*tcp-check");
4150 if (!rs) {
4151 rs = create_tcpcheck_ruleset("*tcp-check");
4152 if (rs == NULL) {
4153 ha_alert("config: %s '%s': out of memory.\n",
4154 proxy_type_str(curproxy), curproxy->id);
4155 cfgerr++;
4156 }
4157 }
4158
4159 free_tcpcheck_vars(&rules->preset_vars);
4160 rules->list = &rs->rules;
4161 rules->flags = 0;
4162 }
4163 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01004164 }
Willy Tarreau835daa12019-02-07 14:46:29 +01004165
Emeric Brun3b68b602022-08-18 15:53:21 +02004166 /*
4167 * We have just initialized the main proxies list
4168 * we must also configure the log-forward proxies list
4169 */
4170 if (init_proxies_list == proxies_list) {
4171 init_proxies_list = cfg_log_forward;
Emeric Brun8032a272022-08-22 10:25:11 +02004172 /* check if list is not null to avoid infinite loop */
4173 if (init_proxies_list)
4174 goto init_proxies_list_stage1;
Emeric Brun3b68b602022-08-18 15:53:21 +02004175 }
4176
Emeric Brund6e581d2022-09-13 16:16:30 +02004177 if (init_proxies_list == cfg_log_forward) {
4178 init_proxies_list = sink_proxies_list;
4179 /* check if list is not null to avoid infinite loop */
4180 if (init_proxies_list)
4181 goto init_proxies_list_stage1;
4182 }
4183
Willy Tarreau4cdac162021-03-05 10:48:42 +01004184 /***********************************************************/
4185 /* At this point, target names have already been resolved. */
4186 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01004187
Willy Tarreau4cdac162021-03-05 10:48:42 +01004188 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01004189
Willy Tarreau4cdac162021-03-05 10:48:42 +01004190 list_for_each_entry(newsrv, &servers_list, global_list) {
4191 /* initialize idle conns lists */
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004192 if (srv_init_per_thr(newsrv) == -1) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004193 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
4194 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01004195 cfgerr++;
4196 continue;
4197 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004198
Willy Tarreau4cdac162021-03-05 10:48:42 +01004199 if (newsrv->max_idle_conns != 0) {
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004200 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
4201 if (!newsrv->curr_idle_thr) {
4202 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
4203 newsrv->conf.file, newsrv->conf.line, newsrv->id);
4204 cfgerr++;
4205 continue;
4206 }
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02004207
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004208 }
4209 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004210
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004211 idle_conn_task = task_new_anywhere();
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004212 if (!idle_conn_task) {
4213 ha_alert("parsing : failed to allocate global idle connection task.\n");
4214 cfgerr++;
4215 }
4216 else {
4217 idle_conn_task->process = srv_cleanup_idle_conns;
4218 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004219
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004220 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004221 idle_conns[i].cleanup_task = task_new_on(i);
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004222 if (!idle_conns[i].cleanup_task) {
4223 ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i);
4224 cfgerr++;
4225 break;
Willy Tarreau4cdac162021-03-05 10:48:42 +01004226 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004227
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004228 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
4229 idle_conns[i].cleanup_task->context = NULL;
4230 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
4231 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Willy Tarreau835daa12019-02-07 14:46:29 +01004232 }
Willy Tarreau419ead82014-09-16 13:41:21 +02004233 }
4234
Willy Tarreau419ead82014-09-16 13:41:21 +02004235 /* perform the final checks before creating tasks */
4236
Emeric Brun3b68b602022-08-18 15:53:21 +02004237 /* starting to initialize the main proxies list */
4238 init_proxies_list = proxies_list;
4239
4240init_proxies_list_stage2:
4241 for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02004242 struct listener *listener;
4243 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02004244
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004245 /* Configure SSL for each bind line.
4246 * Note: if configuration fails at some point, the ->ctx member
4247 * remains NULL so that listeners can later detach.
4248 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004249 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01004250 if (bind_conf->xprt->prepare_bind_conf &&
4251 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004252 cfgerr++;
Willy Tarreau7866e8e2023-01-12 18:39:42 +01004253 bind_conf->analysers |= curproxy->fe_req_ana;
Willy Tarreau882f2482023-01-12 18:52:23 +01004254 if (!bind_conf->maxaccept)
4255 bind_conf->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau30836152023-01-12 19:10:17 +01004256 bind_conf->accept = session_accept_fd;
Willy Tarreaucfb7c2f2023-01-12 19:37:07 +01004257 if (curproxy->options & PR_O_TCP_NOLING)
4258 bind_conf->options |= BC_O_NOLINGER;
Willy Tarreau9bdcf422023-01-12 19:40:42 +01004259
4260 /* smart accept mode is automatic in HTTP mode */
4261 if ((curproxy->options2 & PR_O2_SMARTACC) ||
4262 ((curproxy->mode == PR_MODE_HTTP || (bind_conf->options & BC_O_USE_SSL)) &&
4263 !(curproxy->no_options2 & PR_O2_SMARTACC)))
4264 bind_conf->options |= BC_O_NOQUICKACK;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004265 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004266
Willy Tarreaue6b98942007-10-29 01:09:36 +01004267 /* adjust this proxy's listeners */
Frédéric Lécaillebe92bdb2023-08-17 10:15:09 +02004268 bind_conf = NULL;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004269 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02004270 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004271 if (!listener->luid) {
4272 /* listener ID not set, use automatic numbering with first
4273 * spare entry starting with next_luid.
4274 */
4275 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
4276 listener->conf.id.key = listener->luid = next_id;
4277 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004278 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01004279 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004280
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004281 /* enable separate counters */
4282 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01004283 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004284 if (!listener->name)
4285 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004286 }
Willy Tarreau81796be2012-09-22 19:11:47 +02004287
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01004288#ifdef USE_QUIC
Willy Tarreau9e2682a2023-01-12 20:20:57 +01004289 if (listener->bind_conf->xprt == xprt_get(XPRT_QUIC)) {
Amaury Denoyelle331b8b12023-10-25 10:52:23 +02004290 /* quic_conn are counted against maxconn. */
4291 listener->bind_conf->options |= BC_O_XPRT_MAXCONN;
4292
Frédéric Lécaillebe92bdb2023-08-17 10:15:09 +02004293# ifdef USE_QUIC_OPENSSL_COMPAT
4294 /* store the last checked bind_conf in bind_conf */
4295 if (!(global.tune.options & GTUNE_NO_QUIC) &&
4296 !(global.tune.options & GTUNE_LIMITED_QUIC) &&
4297 listener->bind_conf != bind_conf) {
4298 bind_conf = listener->bind_conf;
4299 ha_alert("Binding [%s:%d] for %s %s: this SSL library does not support the "
4300 "QUIC protocol. A limited compatibility layer may be enabled using "
4301 "the \"limited-quic\" global option if desired.\n",
4302 listener->bind_conf->file, listener->bind_conf->line,
4303 proxy_type_str(curproxy), curproxy->id);
4304 cfgerr++;
4305 }
4306# endif
4307
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01004308 li_init_per_thr(listener);
4309 }
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01004310#endif
Willy Tarreaue6b98942007-10-29 01:09:36 +01004311 }
4312
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004313 /* Release unused SSL configs */
4314 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau11ba4042022-05-20 15:56:32 +02004315 if (!(bind_conf->options & BC_O_USE_SSL) && bind_conf->xprt->destroy_bind_conf)
Willy Tarreau795cdab2016-12-22 17:30:54 +01004316 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004317 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004318
Willy Tarreau918ff602011-07-25 16:33:49 +02004319 /* create the task associated with the proxy */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004320 curproxy->task = task_new_anywhere();
Willy Tarreau918ff602011-07-25 16:33:49 +02004321 if (curproxy->task) {
4322 curproxy->task->context = curproxy;
4323 curproxy->task->process = manage_proxy;
Christopher Faulet56717802021-10-13 10:10:09 +02004324 curproxy->flags |= PR_FL_READY;
Willy Tarreau918ff602011-07-25 16:33:49 +02004325 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004326 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
4327 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02004328 cfgerr++;
4329 }
Willy Tarreaub369a042014-09-16 13:21:03 +02004330 }
4331
Emeric Brun3b68b602022-08-18 15:53:21 +02004332 /*
4333 * We have just initialized the main proxies list
4334 * we must also configure the log-forward proxies list
4335 */
4336 if (init_proxies_list == proxies_list) {
4337 init_proxies_list = cfg_log_forward;
Emeric Brun8032a272022-08-22 10:25:11 +02004338 /* check if list is not null to avoid infinite loop */
4339 if (init_proxies_list)
4340 goto init_proxies_list_stage2;
Emeric Brun3b68b602022-08-18 15:53:21 +02004341 }
4342
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004343 /*
4344 * Recount currently required checks.
4345 */
4346
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004347 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004348 int optnum;
4349
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004350 for (optnum = 0; cfg_opts[optnum].name; optnum++)
4351 if (curproxy->options & cfg_opts[optnum].val)
4352 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004353
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004354 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
4355 if (curproxy->options2 & cfg_opts2[optnum].val)
4356 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004357 }
4358
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004359 if (cfg_peers) {
4360 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02004361 struct peer *p, *pb;
4362
Willy Tarreau1e273012015-05-01 19:15:17 +02004363 /* Remove all peers sections which don't have a valid listener,
4364 * which are not used by any table, or which are bound to more
4365 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02004366 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004367 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02004368 while (*last) {
Frédéric Lécaille36d15652022-10-17 14:58:19 +02004369 struct peer *peer;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004370 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02004371 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004372
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02004373 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004374 /* the "disabled" keyword was present */
4375 if (curpeers->peers_fe)
4376 stop_proxy(curpeers->peers_fe);
4377 curpeers->peers_fe = NULL;
4378 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02004379 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004380 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
4381 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004382 if (curpeers->peers_fe)
4383 stop_proxy(curpeers->peers_fe);
4384 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004385 }
4386 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004387 /* Initializes the transport layer of the server part of all the peers belonging to
4388 * <curpeers> section if required.
4389 * Note that ->srv is used by the local peer of a new process to connect to the local peer
4390 * of an old process.
4391 */
Christopher Faulet56717802021-10-13 10:10:09 +02004392 curpeers->peers_fe->flags |= PR_FL_READY;
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004393 p = curpeers->remote;
4394 while (p) {
Christopher Fauletaf27ada2023-06-02 14:10:36 +02004395 struct peer *other_peer;
4396
4397 for (other_peer = curpeers->remote; other_peer && other_peer != p; other_peer = other_peer->next) {
4398 if (strcmp(other_peer->id, p->id) == 0) {
4399 ha_alert("Peer section '%s' [%s:%d]: another peer named '%s' was already defined at line %s:%d, please use distinct names.\n",
4400 curpeers->peers_fe->id,
4401 p->conf.file, p->conf.line,
4402 other_peer->id, other_peer->conf.file, other_peer->conf.line);
4403 cfgerr++;
4404 break;
4405 }
4406 }
4407
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004408 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004409 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 +01004410 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
4411 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004412 p = p->next;
4413 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004414 /* Configure the SSL bindings of the local peer if required. */
4415 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
4416 struct list *l;
4417 struct bind_conf *bind_conf;
Willy Tarreaua22db652023-04-22 23:52:17 +02004418 int ret;
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004419
4420 l = &curpeers->peers_fe->conf.bind;
4421 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
Willy Tarreaud2494e02022-07-05 16:00:56 +02004422
Christopher Faulet1b6fa7f2022-07-26 19:03:51 +02004423 if (curpeers->local->srv) {
4424 if (curpeers->local->srv->use_ssl == 1 && !(bind_conf->options & BC_O_USE_SSL)) {
4425 ha_warning("Peers section '%s': local peer have a non-SSL listener and a SSL server configured at line %s:%d.\n",
4426 curpeers->peers_fe->id, curpeers->local->conf.file, curpeers->local->conf.line);
4427 }
4428 else if (curpeers->local->srv->use_ssl != 1 && (bind_conf->options & BC_O_USE_SSL)) {
4429 ha_warning("Peers section '%s': local peer have a SSL listener and a non-SSL server configured at line %s:%d.\n",
4430 curpeers->peers_fe->id, curpeers->local->conf.file, curpeers->local->conf.line);
4431 }
4432 }
4433
Willy Tarreaua22db652023-04-22 23:52:17 +02004434 /* finish the bind setup */
4435 ret = bind_complete_thread_setup(bind_conf, &err_code);
4436 if (ret != 0) {
4437 cfgerr += ret;
4438 if (err_code & ERR_FATAL)
4439 goto out;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004440 }
4441
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004442 if (bind_conf->xprt->prepare_bind_conf &&
4443 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4444 cfgerr++;
4445 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004446 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004447 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4448 curpeers->id);
4449 cfgerr++;
4450 break;
4451 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004452 last = &curpeers->next;
Frédéric Lécaille36d15652022-10-17 14:58:19 +02004453
4454 /* Ignore the peer shard greater than the number of peer shard for this section.
4455 * Also ignore the peer shard of the local peer.
4456 */
4457 for (peer = curpeers->remote; peer; peer = peer->next) {
4458 if (peer == curpeers->local) {
4459 if (peer->srv->shard) {
4460 ha_warning("Peers section '%s': shard ignored for '%s' local peer\n",
4461 curpeers->id, peer->id);
4462 peer->srv->shard = 0;
4463 }
4464 }
4465 else if (peer->srv->shard > curpeers->nb_shards) {
4466 ha_warning("Peers section '%s': shard ignored for '%s' local peer because "
4467 "%d shard value is greater than the section number of shards (%d)\n",
4468 curpeers->id, peer->id, peer->srv->shard, curpeers->nb_shards);
4469 peer->srv->shard = 0;
4470 }
4471 }
4472
Willy Tarreau122541c2011-09-07 21:24:49 +02004473 continue;
4474 }
4475
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004476 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004477 p = curpeers->remote;
4478 while (p) {
4479 pb = p->next;
4480 free(p->id);
4481 free(p);
4482 p = pb;
4483 }
4484
4485 /* Destroy and unlink this curpeers section.
4486 * Note: curpeers is backed up into *last.
4487 */
4488 free(curpeers->id);
4489 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004490 /* Reset any refereance to this peers section in the list of stick-tables */
4491 for (t = stktables_list; t; t = t->next) {
4492 if (t->peers.p && t->peers.p == *last)
4493 t->peers.p = NULL;
4494 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004495 free(*last);
4496 *last = curpeers;
4497 }
4498 }
4499
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004500 for (t = stktables_list; t; t = t->next) {
4501 if (t->proxy)
4502 continue;
4503 if (!stktable_init(t)) {
Aurelien DARRAGON0048daa2023-11-03 12:10:56 +01004504 ha_alert("Parsing [%s:%d]: failed to initialize '%s' stick-table.\n", t->conf.file, t->conf.line, t->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004505 cfgerr++;
4506 }
4507 }
4508
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004509 /* initialize stick-tables on backend capable proxies. This must not
4510 * be done earlier because the data size may be discovered while parsing
4511 * other proxies.
4512 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004513 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004514 if ((curproxy->flags & PR_FL_DISABLED) || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004515 continue;
4516
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004517 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004518 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004519 cfgerr++;
4520 }
4521 }
4522
Simon Horman0d16a402015-01-30 11:22:58 +09004523 if (mailers) {
4524 struct mailers *curmailers = mailers, **last;
4525 struct mailer *m, *mb;
4526
4527 /* Remove all mailers sections which don't have a valid listener.
4528 * This can happen when a mailers section is never referenced.
4529 */
4530 last = &mailers;
4531 while (*last) {
4532 curmailers = *last;
4533 if (curmailers->users) {
4534 last = &curmailers->next;
4535 continue;
4536 }
4537
Christopher Faulet767a84b2017-11-24 16:50:31 +01004538 ha_warning("Removing incomplete section 'mailers %s'.\n",
4539 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004540
4541 m = curmailers->mailer_list;
4542 while (m) {
4543 mb = m->next;
4544 free(m->id);
4545 free(m);
4546 m = mb;
4547 }
4548
4549 /* Destroy and unlink this curmailers section.
4550 * Note: curmailers is backed up into *last.
4551 */
4552 free(curmailers->id);
4553 curmailers = curmailers->next;
4554 free(*last);
4555 *last = curmailers;
4556 }
4557 }
4558
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004559 /* Update server_state_file_name to backend name if backend is supposed to use
4560 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004561 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004562 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4563 curproxy->server_state_file_name == NULL)
4564 curproxy->server_state_file_name = strdup(curproxy->id);
4565 }
4566
Emeric Brun750fe792020-12-23 16:51:12 +01004567 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06004568 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004569 ha_warning("resolvers '%s' [%s:%d] has no nameservers configured!\n",
Ben Draut054fbee2018-04-13 15:43:04 -06004570 curr_resolvers->id, curr_resolvers->conf.file,
4571 curr_resolvers->conf.line);
4572 err_code |= ERR_WARN;
4573 }
4574 }
4575
William Lallemand48b4bb42017-10-23 14:36:34 +02004576 list_for_each_entry(postparser, &postparsers, list) {
4577 if (postparser->func)
4578 cfgerr += postparser->func();
4579 }
4580
Willy Tarreaubb925012009-07-23 13:36:36 +02004581 if (cfgerr > 0)
4582 err_code |= ERR_ALERT | ERR_FATAL;
4583 out:
4584 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004585}
4586
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004587/*
4588 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4589 * parsing sessions.
4590 */
4591void cfg_register_keywords(struct cfg_kw_list *kwl)
4592{
Willy Tarreau2b718102021-04-21 07:32:39 +02004593 LIST_APPEND(&cfg_keywords.list, &kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004594}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004595
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004596/*
4597 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4598 */
4599void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4600{
Willy Tarreau2b718102021-04-21 07:32:39 +02004601 LIST_DELETE(&kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004602 LIST_INIT(&kwl->list);
4603}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004604
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004605/* this function register new section in the haproxy configuration file.
4606 * <section_name> is the name of this new section and <section_parser>
4607 * is the called parser. If two section declaration have the same name,
4608 * only the first declared is used.
4609 */
4610int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004611 int (*section_parser)(const char *, int, char **, int),
4612 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004613{
4614 struct cfg_section *cs;
4615
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004616 list_for_each_entry(cs, &sections, list) {
4617 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004618 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004619 return 0;
4620 }
4621 }
4622
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004623 cs = calloc(1, sizeof(*cs));
4624 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004625 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004626 return 0;
4627 }
4628
4629 cs->section_name = section_name;
4630 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004631 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004632
Willy Tarreau2b718102021-04-21 07:32:39 +02004633 LIST_APPEND(&sections, &cs->list);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004634
4635 return 1;
4636}
4637
William Lallemand48b4bb42017-10-23 14:36:34 +02004638/* this function register a new function which will be called once the haproxy
4639 * configuration file has been parsed. It's useful to check dependencies
4640 * between sections or to resolve items once everything is parsed.
4641 */
4642int cfg_register_postparser(char *name, int (*func)())
4643{
4644 struct cfg_postparser *cp;
4645
4646 cp = calloc(1, sizeof(*cp));
4647 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004648 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004649 return 0;
4650 }
4651 cp->name = name;
4652 cp->func = func;
4653
Willy Tarreau2b718102021-04-21 07:32:39 +02004654 LIST_APPEND(&postparsers, &cp->list);
William Lallemand48b4bb42017-10-23 14:36:34 +02004655
4656 return 1;
4657}
4658
Willy Tarreaubaaee002006-06-26 02:48:02 +02004659/*
David Carlier845efb52015-09-25 11:49:18 +01004660 * free all config section entries
4661 */
4662void cfg_unregister_sections(void)
4663{
4664 struct cfg_section *cs, *ics;
4665
4666 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004667 LIST_DELETE(&cs->list);
David Carlier845efb52015-09-25 11:49:18 +01004668 free(cs);
4669 }
4670}
4671
Christopher Faulet7110b402016-10-26 11:09:44 +02004672void cfg_backup_sections(struct list *backup_sections)
4673{
4674 struct cfg_section *cs, *ics;
4675
4676 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004677 LIST_DELETE(&cs->list);
4678 LIST_APPEND(backup_sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004679 }
4680}
4681
4682void cfg_restore_sections(struct list *backup_sections)
4683{
4684 struct cfg_section *cs, *ics;
4685
4686 list_for_each_entry_safe(cs, ics, backup_sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004687 LIST_DELETE(&cs->list);
4688 LIST_APPEND(&sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004689 }
4690}
4691
Willy Tarreauca1acd62022-03-29 15:02:44 +02004692/* dumps all registered keywords by section on stdout */
4693void cfg_dump_registered_keywords()
4694{
William Lallemand44979ad2023-02-13 15:24:01 +01004695 /* CFG_GLOBAL, CFG_LISTEN, CFG_USERLIST, CFG_PEERS, CFG_CRTLIST */
4696 const char* sect_names[] = { "", "global", "listen", "userlist", "peers", "crt-list", 0 };
Willy Tarreauca1acd62022-03-29 15:02:44 +02004697 int section;
4698 int index;
4699
4700 for (section = 1; sect_names[section]; section++) {
4701 struct cfg_kw_list *kwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004702 const struct cfg_keyword *kwp, *kwn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004703
4704 printf("%s\n", sect_names[section]);
Willy Tarreaud9058262022-03-30 11:21:32 +02004705
4706 for (kwn = kwp = NULL;; kwp = kwn) {
4707 list_for_each_entry(kwl, &cfg_keywords.list, list) {
4708 for (index = 0; kwl->kw[index].kw != NULL; index++)
4709 if (kwl->kw[index].section == section &&
4710 strordered(kwp ? kwp->kw : NULL, kwl->kw[index].kw, kwn != kwp ? kwn->kw : NULL))
4711 kwn = &kwl->kw[index];
4712 }
4713 if (kwn == kwp)
4714 break;
4715 printf("\t%s\n", kwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004716 }
4717
4718 if (section == CFG_LISTEN) {
4719 /* there are plenty of other keywords there */
4720 extern struct list tcp_req_conn_keywords, tcp_req_sess_keywords,
4721 tcp_req_cont_keywords, tcp_res_cont_keywords;
4722 extern struct bind_kw_list bind_keywords;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004723 extern struct srv_kw_list srv_keywords;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004724 struct bind_kw_list *bkwl;
4725 struct srv_kw_list *skwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004726 const struct bind_kw *bkwp, *bkwn;
4727 const struct srv_kw *skwp, *skwn;
Willy Tarreaud9058262022-03-30 11:21:32 +02004728 const struct cfg_opt *coptp, *coptn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004729
William Lallemand44979ad2023-02-13 15:24:01 +01004730 /* display the non-ssl keywords */
Willy Tarreaud9058262022-03-30 11:21:32 +02004731 for (bkwn = bkwp = NULL;; bkwp = bkwn) {
4732 list_for_each_entry(bkwl, &bind_keywords.list, list) {
William Lallemand44979ad2023-02-13 15:24:01 +01004733 if (strcmp(bkwl->scope, "SSL") == 0) /* skip SSL keywords */
4734 continue;
4735 for (index = 0; bkwl->kw[index].kw != NULL; index++) {
Willy Tarreaud9058262022-03-30 11:21:32 +02004736 if (strordered(bkwp ? bkwp->kw : NULL,
4737 bkwl->kw[index].kw,
4738 bkwn != bkwp ? bkwn->kw : NULL))
4739 bkwn = &bkwl->kw[index];
William Lallemand44979ad2023-02-13 15:24:01 +01004740 }
Willy Tarreauca1acd62022-03-29 15:02:44 +02004741 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004742 if (bkwn == bkwp)
4743 break;
4744
4745 if (!bkwn->skip)
4746 printf("\tbind <addr> %s\n", bkwn->kw);
4747 else
4748 printf("\tbind <addr> %s +%d\n", bkwn->kw, bkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004749 }
Willy Tarreauca1acd62022-03-29 15:02:44 +02004750#if defined(USE_OPENSSL)
William Lallemand44979ad2023-02-13 15:24:01 +01004751 /* displays the "ssl" keywords */
4752 for (bkwn = bkwp = NULL;; bkwp = bkwn) {
4753 list_for_each_entry(bkwl, &bind_keywords.list, list) {
4754 if (strcmp(bkwl->scope, "SSL") != 0) /* skip non-SSL keywords */
4755 continue;
4756 for (index = 0; bkwl->kw[index].kw != NULL; index++) {
4757 if (strordered(bkwp ? bkwp->kw : NULL,
4758 bkwl->kw[index].kw,
4759 bkwn != bkwp ? bkwn->kw : NULL))
4760 bkwn = &bkwl->kw[index];
4761 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004762 }
William Lallemand44979ad2023-02-13 15:24:01 +01004763 if (bkwn == bkwp)
Willy Tarreaud9058262022-03-30 11:21:32 +02004764 break;
William Lallemand44979ad2023-02-13 15:24:01 +01004765
4766 if (strcmp(bkwn->kw, "ssl") == 0) /* skip "bind <addr> ssl ssl" */
4767 continue;
4768
4769 if (!bkwn->skip)
4770 printf("\tbind <addr> ssl %s\n", bkwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004771 else
William Lallemand44979ad2023-02-13 15:24:01 +01004772 printf("\tbind <addr> ssl %s +%d\n", bkwn->kw, bkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004773 }
4774#endif
Willy Tarreaud9058262022-03-30 11:21:32 +02004775 for (skwn = skwp = NULL;; skwp = skwn) {
4776 list_for_each_entry(skwl, &srv_keywords.list, list) {
4777 for (index = 0; skwl->kw[index].kw != NULL; index++)
4778 if (strordered(skwp ? skwp->kw : NULL,
4779 skwl->kw[index].kw,
4780 skwn != skwp ? skwn->kw : NULL))
4781 skwn = &skwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004782 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004783 if (skwn == skwp)
4784 break;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004785
Willy Tarreaud9058262022-03-30 11:21:32 +02004786 if (!skwn->skip)
4787 printf("\tserver <name> <addr> %s\n", skwn->kw);
4788 else
4789 printf("\tserver <name> <addr> %s +%d\n", skwn->kw, skwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004790 }
4791
Willy Tarreaud9058262022-03-30 11:21:32 +02004792 for (coptn = coptp = NULL;; coptp = coptn) {
4793 for (index = 0; cfg_opts[index].name; index++)
4794 if (strordered(coptp ? coptp->name : NULL,
4795 cfg_opts[index].name,
4796 coptn != coptp ? coptn->name : NULL))
4797 coptn = &cfg_opts[index];
4798
4799 for (index = 0; cfg_opts2[index].name; index++)
4800 if (strordered(coptp ? coptp->name : NULL,
4801 cfg_opts2[index].name,
4802 coptn != coptp ? coptn->name : NULL))
4803 coptn = &cfg_opts2[index];
4804 if (coptn == coptp)
4805 break;
4806
4807 printf("\toption %s [ ", coptn->name);
4808 if (coptn->cap & PR_CAP_FE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004809 printf("FE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004810 if (coptn->cap & PR_CAP_BE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004811 printf("BE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004812 if (coptn->mode == PR_MODE_HTTP)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004813 printf("HTTP ");
4814 printf("]\n");
4815 }
4816
Willy Tarreaud9058262022-03-30 11:21:32 +02004817 dump_act_rules(&tcp_req_conn_keywords, "\ttcp-request connection ");
4818 dump_act_rules(&tcp_req_sess_keywords, "\ttcp-request session ");
4819 dump_act_rules(&tcp_req_cont_keywords, "\ttcp-request content ");
4820 dump_act_rules(&tcp_res_cont_keywords, "\ttcp-response content ");
4821 dump_act_rules(&http_req_keywords.list, "\thttp-request ");
4822 dump_act_rules(&http_res_keywords.list, "\thttp-response ");
4823 dump_act_rules(&http_after_res_keywords.list, "\thttp-after-response ");
Willy Tarreauca1acd62022-03-29 15:02:44 +02004824 }
William Lallemand44979ad2023-02-13 15:24:01 +01004825 if (section == CFG_CRTLIST) {
4826 /* displays the keyword available for the crt-lists */
4827 extern struct ssl_crtlist_kw ssl_crtlist_kws[] __maybe_unused;
4828 const struct ssl_crtlist_kw *sbkwp __maybe_unused, *sbkwn __maybe_unused;
4829
4830#if defined(USE_OPENSSL)
4831 for (sbkwn = sbkwp = NULL;; sbkwp = sbkwn) {
4832 for (index = 0; ssl_crtlist_kws[index].kw != NULL; index++) {
4833 if (strordered(sbkwp ? sbkwp->kw : NULL,
4834 ssl_crtlist_kws[index].kw,
4835 sbkwn != sbkwp ? sbkwn->kw : NULL))
4836 sbkwn = &ssl_crtlist_kws[index];
4837 }
4838 if (sbkwn == sbkwp)
4839 break;
4840 if (!sbkwn->skip)
4841 printf("\t%s\n", sbkwn->kw);
4842 else
4843 printf("\t%s +%d\n", sbkwn->kw, sbkwn->skip);
4844 }
4845#endif
4846
4847 }
Willy Tarreauca1acd62022-03-29 15:02:44 +02004848 }
4849}
4850
Willy Tarreaue6552512018-11-26 11:33:13 +01004851/* these are the config sections handled by default */
4852REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4853REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4854REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4855REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4856REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4857REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4858REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4859REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4860REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004861
Willy Tarreau8a022d52021-04-27 20:29:11 +02004862static struct cfg_kw_list cfg_kws = {{ },{
4863 { CFG_GLOBAL, "default-path", cfg_parse_global_def_path },
4864 { /* END */ }
4865}};
4866
4867INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4868
David Carlier845efb52015-09-25 11:49:18 +01004869/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004870 * Local variables:
4871 * c-indent-level: 8
4872 * c-basic-offset: 8
4873 * End:
4874 */