blob: 352953fb76b5bfcfcaa5e9fb001dc1feabcdd375 [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 Tarreau3c2a7c22020-06-04 18:38:21 +020074#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020075#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020076#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020077#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020078#include <haproxy/proxy.h>
Emeric Brunc9437992021-02-12 19:42:55 +010079#include <haproxy/resolvers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020080#include <haproxy/sample.h>
81#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020082#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020083#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020084#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020085#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020086#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020087#include <haproxy/tcp_rules.h>
Amaury Denoyellef2c27a52021-07-23 15:46:46 +020088#include <haproxy/tcpcheck.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020089#include <haproxy/thread.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020090#include <haproxy/tools.h>
91#include <haproxy/uri_auth-t.h>
Frédéric Lécaille884f2e92020-11-23 14:23:21 +010092#include <haproxy/xprt_quic.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 */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200108
Willy Tarreau8a022d52021-04-27 20:29:11 +0200109/* how to handle default paths */
110static enum default_path_mode {
111 DEFAULT_PATH_CURRENT = 0, /* "current": paths are relative to CWD (this is the default) */
112 DEFAULT_PATH_CONFIG, /* "config": paths are relative to config file */
113 DEFAULT_PATH_PARENT, /* "parent": paths are relative to config file's ".." */
114 DEFAULT_PATH_ORIGIN, /* "origin": paths are relative to default_path_origin */
115} default_path_mode;
116
117static char initial_cwd[PATH_MAX];
118static char current_cwd[PATH_MAX];
119
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200120/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100121struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200122 .list = LIST_HEAD_INIT(cfg_keywords.list)
123};
124
Willy Tarreaubaaee002006-06-26 02:48:02 +0200125/*
126 * converts <str> to a list of listeners which are dynamically allocated.
127 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
128 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
129 * - <port> is a numerical port from 1 to 65535 ;
130 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
131 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200132 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
133 * not NULL, it must be a valid pointer to either NULL or a freeable area that
134 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200135 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200136int 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 +0200137{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200138 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100139 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200140 int port, end;
141
142 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200143
Willy Tarreaubaaee002006-06-26 02:48:02 +0200144 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200145 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100146 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200147
148 str = next;
149 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100150 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200151 *next++ = 0;
152 }
153
Willy Tarreau5fc93282020-09-16 18:25:03 +0200154 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Eric Salama1b8dacc2021-03-16 15:12:17 +0100155 (curproxy == global.cli_fe || curproxy == mworker_proxy) ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200156 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200157 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100158 if (!ss2)
159 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200160
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100161 /* OK the address looks correct */
Willy Tarreau91b780a2022-05-20 16:15:01 +0200162 if (proto->proto_type == PROTO_TYPE_DGRAM)
163 bind_conf->options |= BC_O_USE_SOCK_DGRAM;
164 else
165 bind_conf->options |= BC_O_USE_SOCK_STREAM;
166
167 if (proto->xprt_type == PROTO_TYPE_DGRAM)
168 bind_conf->options |= BC_O_USE_XPRT_DGRAM;
169 else
170 bind_conf->options |= BC_O_USE_XPRT_STREAM;
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100171
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200172 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200173 memprintf(err, "%s for address '%s'.\n", *err, str);
174 goto fail;
175 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200176 } /* end while(next) */
177 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200178 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200179 fail:
180 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200181 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200182}
183
William Lallemand6e62fb62015-04-28 16:55:23 +0200184/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200185 * converts <str> to a list of datagram-oriented listeners which are dynamically
186 * allocated.
187 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
188 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
189 * - <port> is a numerical port from 1 to 65535 ;
190 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
191 * This can be repeated as many times as necessary, separated by a coma.
192 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
193 * not NULL, it must be a valid pointer to either NULL or a freeable area that
194 * will be replaced with an error message.
195 */
196int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
197{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200198 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200199 char *next, *dupstr;
200 int port, end;
201
202 next = dupstr = strdup(str);
203
204 while (next && *next) {
205 struct sockaddr_storage *ss2;
206 int fd = -1;
207
208 str = next;
209 /* 1) look for the end of the first address */
210 if ((next = strchr(str, ',')) != NULL) {
211 *next++ = 0;
212 }
213
Willy Tarreau5fc93282020-09-16 18:25:03 +0200214 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreau4975d142021-03-13 11:00:33 +0100215 curproxy == global.cli_fe ? NULL : global.unix_bind.prefix,
Willy Tarreauaa333122020-09-16 15:13:04 +0200216 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
217 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
218 if (!ss2)
219 goto fail;
220
221 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200222 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200223 memprintf(err, "%s for address '%s'.\n", *err, str);
224 goto fail;
225 }
226 } /* end while(next) */
227 free(dupstr);
228 return 1;
229 fail:
230 free(dupstr);
231 return 0;
232}
233
234/*
Willy Tarreau08138612021-05-08 19:58:37 +0200235 * Sends a warning if proxy <proxy> does not have at least one of the
236 * capabilities in <cap>. An optional <hint> may be added at the end
237 * of the warning to help the user. Returns 1 if a warning was emitted
238 * or 0 if the condition is valid.
239 */
240int warnifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint)
241{
242 char *msg;
243
244 switch (cap) {
245 case PR_CAP_BE: msg = "no backend"; break;
246 case PR_CAP_FE: msg = "no frontend"; break;
247 case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break;
248 default: msg = "not enough"; break;
249 }
250
251 if (!(proxy->cap & cap)) {
252 ha_warning("parsing [%s:%d] : '%s' ignored because %s '%s' has %s capability.%s\n",
253 file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : "");
254 return 1;
255 }
256 return 0;
257}
258
259/*
260 * Sends an alert if proxy <proxy> does not have at least one of the
261 * capabilities in <cap>. An optional <hint> may be added at the end
262 * of the alert to help the user. Returns 1 if an alert was emitted
263 * or 0 if the condition is valid.
264 */
265int failifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint)
266{
267 char *msg;
268
269 switch (cap) {
270 case PR_CAP_BE: msg = "no backend"; break;
271 case PR_CAP_FE: msg = "no frontend"; break;
272 case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break;
273 default: msg = "not enough"; break;
274 }
275
276 if (!(proxy->cap & cap)) {
277 ha_alert("parsing [%s:%d] : '%s' not allowed because %s '%s' has %s capability.%s\n",
278 file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : "");
279 return 1;
280 }
281 return 0;
282}
283
284/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100285 * Report an error in <msg> when there are too many arguments. This version is
286 * intended to be used by keyword parsers so that the message will be included
287 * into the general error message. The index is the current keyword in args.
288 * Return 0 if the number of argument is correct, otherwise build a message and
289 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
290 * message may also be null, it will simply not be produced (useful to check only).
291 * <msg> and <err_code> are only affected on error.
292 */
293int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
294{
295 int i;
296
297 if (!*args[index + maxarg + 1])
298 return 0;
299
300 if (msg) {
301 *msg = NULL;
302 memprintf(msg, "%s", args[0]);
303 for (i = 1; i <= index; i++)
304 memprintf(msg, "%s %s", *msg, args[i]);
305
306 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
307 }
308 if (err_code)
309 *err_code |= ERR_ALERT | ERR_FATAL;
310
311 return 1;
312}
313
314/*
315 * same as too_many_args_idx with a 0 index
316 */
317int too_many_args(int maxarg, char **args, char **msg, int *err_code)
318{
319 return too_many_args_idx(maxarg, 0, args, msg, err_code);
320}
321
322/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200323 * Report a fatal Alert when there is too much arguments
324 * The index is the current keyword in args
325 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
326 * Fill err_code with an ERR_ALERT and an ERR_FATAL
327 */
328int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
329{
330 char *kw = NULL;
331 int i;
332
333 if (!*args[index + maxarg + 1])
334 return 0;
335
336 memprintf(&kw, "%s", args[0]);
337 for (i = 1; i <= index; i++) {
338 memprintf(&kw, "%s %s", kw, args[i]);
339 }
340
Christopher Faulet767a84b2017-11-24 16:50:31 +0100341 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 +0200342 free(kw);
343 *err_code |= ERR_ALERT | ERR_FATAL;
344 return 1;
345}
346
347/*
348 * same as alertif_too_many_args_idx with a 0 index
349 */
350int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
351{
352 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
353}
354
Willy Tarreau61d18892009-03-31 10:49:21 +0200355
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100356/* Report it if a request ACL condition uses some keywords that are incompatible
357 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
358 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
359 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100360 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100361int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100362{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100363 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200364 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100365
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100366 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100367 return 0;
368
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100369 acl = acl_cond_conflicts(cond, where);
370 if (acl) {
371 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100372 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
373 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100374 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100375 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
376 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100377 return ERR_WARN;
378 }
379 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100380 return 0;
381
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100382 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100383 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
384 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100385 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100386 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
387 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100388 return ERR_WARN;
389}
390
Christopher Faulet581db2b2021-03-26 10:02:46 +0100391/* Report it if an ACL uses a L6 sample fetch from an HTTP proxy. It returns
392 * either 0 or ERR_WARN so that its result can be or'ed with err_code. Note that
393 * <cond> may be NULL and then will be ignored.
394*/
395int warnif_tcp_http_cond(const struct proxy *px, const struct acl_cond *cond)
396{
397 if (!cond || px->mode != PR_MODE_HTTP)
398 return 0;
399
400 if (cond->use & (SMP_USE_L6REQ|SMP_USE_L6RES)) {
401 ha_warning("Proxy '%s': L6 sample fetches ignored on HTTP proxies (declared at %s:%d).\n",
402 px->id, cond->file, cond->line);
403 return ERR_WARN;
404 }
405 return 0;
406}
407
Willy Tarreaue2afcc42021-03-12 09:08:04 +0100408/* try to find in <list> the word that looks closest to <word> by counting
409 * transitions between letters, digits and other characters. Will return the
410 * best matching word if found, otherwise NULL. An optional array of extra
411 * words to compare may be passed in <extra>, but it must then be terminated
412 * by a NULL entry. If unused it may be NULL.
413 */
414const char *cfg_find_best_match(const char *word, const struct list *list, int section, const char **extra)
415{
416 uint8_t word_sig[1024]; // 0..25=letter, 26=digit, 27=other, 28=begin, 29=end
417 uint8_t list_sig[1024];
418 const struct cfg_kw_list *kwl;
419 int index;
420 const char *best_ptr = NULL;
421 int dist, best_dist = INT_MAX;
422
423 make_word_fingerprint(word_sig, word);
424 list_for_each_entry(kwl, list, list) {
425 for (index = 0; kwl->kw[index].kw != NULL; index++) {
426 if (kwl->kw[index].section != section)
427 continue;
428
429 make_word_fingerprint(list_sig, kwl->kw[index].kw);
430 dist = word_fingerprint_distance(word_sig, list_sig);
431 if (dist < best_dist) {
432 best_dist = dist;
433 best_ptr = kwl->kw[index].kw;
434 }
435 }
436 }
437
438 while (extra && *extra) {
439 make_word_fingerprint(list_sig, *extra);
440 dist = word_fingerprint_distance(word_sig, list_sig);
441 if (dist < best_dist) {
442 best_dist = dist;
443 best_ptr = *extra;
444 }
445 extra++;
446 }
447
448 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
449 best_ptr = NULL;
450 return best_ptr;
451}
452
Christopher Faulet62519022017-10-16 15:49:32 +0200453/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100454 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100455 * two such numbers delimited by a dash ('-'). On success, it returns
456 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200457 *
458 * Note: this function can also be used to parse a thread number or a set of
459 * threads.
460 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100461int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200462{
Christopher Faulet26028f62017-11-22 15:01:51 +0100463 if (autoinc) {
464 *autoinc = 0;
465 if (strncmp(arg, "auto:", 5) == 0) {
466 arg += 5;
467 *autoinc = 1;
468 }
469 }
470
Christopher Faulet62519022017-10-16 15:49:32 +0200471 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100472 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200473 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100474 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200475 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100476 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200477 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100478 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100479 unsigned int low, high;
480
Christopher Faulet18cca782019-02-07 16:29:41 +0100481 for (p = arg; *p; p++) {
482 if (*p == '-' && !dash)
483 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100484 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100485 memprintf(err, "'%s' is not a valid number/range.", arg);
486 return -1;
487 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100488 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100489
490 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100491 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100492 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100493
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100494 if (high < low) {
495 unsigned int swap = low;
496 low = high;
497 high = swap;
498 }
499
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100500 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100501 memprintf(err, "'%s' is not a valid number/range."
502 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100503 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100504 return 1;
505 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100506
507 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100508 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200509 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100510 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100511
Christopher Faulet5ab51772017-11-22 11:21:58 +0100512 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200513}
514
David Carlier7e351ee2017-12-01 09:14:02 +0000515#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200516/* Parse cpu sets. Each CPU set is either a unique number between 0 and
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200517 * ha_cpuset_size() - 1 or a range with two such numbers delimited by a dash
Amaury Denoyellea8082352021-04-06 16:46:15 +0200518 * ('-'). If <comma_allowed> is set, each CPU set can be a list of unique
519 * numbers or ranges separated by a comma. It is also possible to specify
520 * multiple cpu numbers or ranges in distinct argument in <args>. On success,
521 * it returns 0, otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200522 */
Amaury Denoyellea8082352021-04-06 16:46:15 +0200523unsigned long parse_cpu_set(const char **args, struct hap_cpuset *cpu_set,
524 int comma_allowed, 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
543 comma = comma_allowed ? strchr(arg, ',') : NULL;
544 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;
662 p->last_change = now.tv_sec;
663 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;
689 struct peer *newpeer = NULL;
690 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200691 struct bind_conf *bind_conf;
692 struct listener *l;
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 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100716 if (*args[0] == 'b') {
717 struct listener *l;
718
719 if (peer_line) {
720 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
721 err_code |= ERR_ALERT | ERR_FATAL;
722 goto out;
723 }
724
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200725 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
726 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);
727 err_code |= ERR_FATAL;
728 }
729
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100730 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
731 if (errmsg && *errmsg) {
732 indent_msg(&errmsg, 2);
733 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
734 }
735 else
736 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
Willy Tarreau0d044102022-05-20 15:19:48 +0200737 file, linenum, args[0], args[1], args[1]);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100738 err_code |= ERR_FATAL;
739 goto out;
740 }
Emeric Brunca825782022-05-25 10:25:45 +0200741 /*
742 * Newly allocated listener is at the end of the list
743 */
744 l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100745 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100746 l->accept = session_accept_fd;
747 l->analysers |= curpeers->peers_fe->fe_req_ana;
748 l->default_target = curpeers->peers_fe->default_target;
749 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100750 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100751
752 bind_line = 1;
753 if (cfg_peers->local) {
754 newpeer = cfg_peers->local;
755 }
756 else {
757 /* This peer is local.
758 * Note that we do not set the peer ID. This latter is initialized
759 * when parsing "peer" or "server" line.
760 */
761 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
762 if (!newpeer) {
763 err_code |= ERR_ALERT | ERR_ABORT;
764 goto out;
765 }
766 }
Willy Tarreau37159062020-08-27 07:48:42 +0200767 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200768 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100769 cur_arg++;
770 }
771
Willy Tarreau55f0f7b2022-05-20 15:44:17 +0200772 ret = bind_parse_args_list(bind_conf, args, cur_arg, cursection, file, linenum);
773 err_code |= ret;
774 if (ret != 0)
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100775 goto out;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100776 }
777 else if (strcmp(args[0], "default-server") == 0) {
Christopher Faulet244331f2022-07-25 15:10:44 +0200778 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100779 err_code |= ERR_ALERT | ERR_ABORT;
780 goto out;
781 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100782 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
783 SRV_PARSE_DEFAULT_SERVER|SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200784 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100785 else if (strcmp(args[0], "log") == 0) {
Christopher Faulet244331f2022-07-25 15:10:44 +0200786 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100787 err_code |= ERR_ALERT | ERR_ABORT;
788 goto out;
789 }
Emeric Brun9533a702021-04-02 10:13:43 +0200790 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), file, linenum, &errmsg)) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100791 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
792 err_code |= ERR_ALERT | ERR_FATAL;
793 goto out;
794 }
795 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200796 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100797 /* Initialize these static variables when entering a new "peers" section*/
798 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100799 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100800 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100801 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100802 goto out;
803 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200804
William Lallemand6e62fb62015-04-28 16:55:23 +0200805 if (alertif_too_many_args(1, file, linenum, args, &err_code))
806 goto out;
807
Emeric Brun32da3c42010-09-23 18:39:19 +0200808 err = invalid_char(args[1]);
809 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100810 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
811 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100812 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100813 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200814 }
815
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200816 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200817 /*
818 * If there are two proxies with the same name only following
819 * combinations are allowed:
820 */
821 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100822 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
823 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200824 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200825 }
826 }
827
Vincent Bernat02779b62016-04-03 13:48:43 +0200828 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100829 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200830 err_code |= ERR_ALERT | ERR_ABORT;
831 goto out;
832 }
833
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200834 curpeers->next = cfg_peers;
835 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200836 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200837 curpeers->conf.line = linenum;
838 curpeers->last_change = now.tv_sec;
839 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200840 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200841 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200842 else if (strcmp(args[0], "peer") == 0 ||
843 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100844 int local_peer, peer;
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100845 int parse_addr = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200846
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100847 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100848 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100849 /* The local peer may have already partially been parsed on a "bind" line. */
850 if (*args[0] == 'p') {
851 if (bind_line) {
852 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
853 err_code |= ERR_ALERT | ERR_FATAL;
854 goto out;
855 }
856 peer_line = 1;
857 }
858 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
859 /* The local peer has already been initialized on a "bind" line.
860 * Let's use it and store its ID.
861 */
862 newpeer = cfg_peers->local;
863 newpeer->id = strdup(localpeer);
864 }
865 else {
866 if (local_peer && cfg_peers->local) {
867 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
868 file, linenum, args[0], args[1],
869 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
870 err_code |= ERR_FATAL;
871 goto out;
872 }
873 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
874 if (!newpeer) {
875 err_code |= ERR_ALERT | ERR_ABORT;
876 goto out;
877 }
878 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200879
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100880 /* Line number and peer ID are updated only if this peer is the local one. */
881 if (init_peers_frontend(file,
882 newpeer->local ? linenum: -1,
Christopher Faulet244331f2022-07-25 15:10:44 +0200883 newpeer->local ? newpeer->id : NULL,
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100884 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200885 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100886 goto out;
887 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100888
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100889 /* This initializes curpeer->peers->peers_fe->srv.
890 * The server address is parsed only if we are parsing a "peer" line,
891 * or if we are parsing a "server" line and the current peer is not the local one.
892 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100893 parse_addr = (peer || !local_peer) ? SRV_PARSE_PARSE_ADDR : 0;
894 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
895 SRV_PARSE_IN_PEER_SECTION|parse_addr|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200896 if (!curpeers->peers_fe->srv) {
897 /* Remove the newly allocated peer. */
898 if (newpeer != curpeers->local) {
899 struct peer *p;
900
901 p = curpeers->remote;
902 curpeers->remote = curpeers->remote->next;
903 free(p->id);
904 free(p);
905 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200906 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200907 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200908
Willy Tarreau824c8c52022-05-31 09:42:44 +0200909 if (curpeers->peers_fe->srv->init_addr_methods || curpeers->peers_fe->srv->resolvers_id ||
910 curpeers->peers_fe->srv->do_check || curpeers->peers_fe->srv->do_agent) {
911 ha_warning("parsing [%s:%d] : '%s %s' : init_addr, resolvers, check and agent are ignored for peers.\n", file, linenum, args[0], args[1]);
912 err_code |= ERR_WARN;
913 }
914
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100915 /* If the peer address has just been parsed, let's copy it to <newpeer>
916 * and initializes ->proto.
917 */
918 if (peer || !local_peer) {
919 newpeer->addr = curpeers->peers_fe->srv->addr;
Willy Tarreau14e7f292021-10-27 17:41:07 +0200920 newpeer->proto = protocol_lookup(newpeer->addr.ss_family, PROTO_TYPE_STREAM, 0);
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100921 }
922
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100923 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200924 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100925 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200926
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100927 newpeer->srv = curpeers->peers_fe->srv;
928 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200929 goto out;
930
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100931 /* The lines above are reserved to "peer" lines. */
932 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200933 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200934
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100935 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW));
William Lallemand1d932172022-07-06 14:30:23 +0200936 if (!bind_conf) {
937 ha_alert("parsing [%s:%d] : '%s %s' : Cannot allocate memory.\n", file, linenum, args[0], args[1]);
938 err_code |= ERR_FATAL;
939 goto out;
940 }
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100941
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200942 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
943 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);
944 err_code |= ERR_FATAL;
945 }
946
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100947 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
948 if (errmsg && *errmsg) {
949 indent_msg(&errmsg, 2);
950 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 +0100951 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100952 else
953 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
954 file, linenum, args[0], args[1], args[2]);
955 err_code |= ERR_FATAL;
956 goto out;
957 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100958
Emeric Brunca825782022-05-25 10:25:45 +0200959 /*
960 * Newly allocated listener is at the end of the list
961 */
962 l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100963 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100964 l->accept = session_accept_fd;
965 l->analysers |= curpeers->peers_fe->fe_req_ana;
966 l->default_target = curpeers->peers_fe->default_target;
967 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100968 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100969 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100970 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100971 struct stktable *t, *other;
972 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100973 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100974
975 /* Line number and peer ID are updated only if this peer is the local one. */
Christopher Faulet244331f2022-07-25 15:10:44 +0200976 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100977 err_code |= ERR_ALERT | ERR_ABORT;
978 goto out;
979 }
980
981 other = stktable_find_by_name(args[1]);
982 if (other) {
983 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
984 file, linenum, args[1],
985 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
986 other->proxy ? other->id : other->peers.p->id,
987 other->conf.file, other->conf.line);
988 err_code |= ERR_ALERT | ERR_FATAL;
989 goto out;
990 }
991
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100992 /* Build the stick-table name, concatenating the "peers" section name
993 * followed by a '/' character and the table name argument.
994 */
995 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100996 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100997 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
998 file, linenum, args[0], args[1]);
999 err_code |= ERR_ALERT | ERR_FATAL;
1000 goto out;
1001 }
1002
1003 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001004 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001005 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
1006 file, linenum, args[0], args[1]);
1007 err_code |= ERR_ALERT | ERR_FATAL;
1008 goto out;
1009 }
1010
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001011 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001012 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001013 if (!t || !id) {
1014 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
1015 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +02001016 free(t);
1017 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001018 err_code |= ERR_ALERT | ERR_FATAL;
1019 goto out;
1020 }
1021
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001022 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +02001023 if (err_code & ERR_FATAL) {
1024 free(t);
1025 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001026 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +02001027 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001028
1029 stktable_store_name(t);
1030 t->next = stktables_list;
1031 stktables_list = t;
1032 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001033 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001034 curpeers->disabled |= PR_FL_DISABLED;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001035 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001036 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02001037 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001038 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001039 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001040 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +02001041 err_code |= ERR_ALERT | ERR_FATAL;
1042 goto out;
1043 }
1044
1045out:
Willy Tarreau902636f2013-03-10 19:44:48 +01001046 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +02001047 return err_code;
1048}
1049
Baptiste Assmann325137d2015-04-13 23:40:55 +02001050/*
William Lallemand51097192015-04-14 16:35:22 +02001051 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001052 * Returns the error code, 0 if OK, or any combination of :
1053 * - ERR_ABORT: must abort ASAP
1054 * - ERR_FATAL: we can continue parsing but not start the service
1055 * - ERR_WARN: a warning has been emitted
1056 * - ERR_ALERT: an alert has been emitted
1057 * Only the two first ones can stop processing, the two others are just
1058 * indicators.
1059 */
1060int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1061{
1062 static struct mailers *curmailers = NULL;
1063 struct mailer *newmailer = NULL;
1064 const char *err;
1065 int err_code = 0;
1066 char *errmsg = NULL;
1067
1068 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1069 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001070 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001071 err_code |= ERR_ALERT | ERR_ABORT;
1072 goto out;
1073 }
1074
1075 err = invalid_char(args[1]);
1076 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001077 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1078 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001079 err_code |= ERR_ALERT | ERR_ABORT;
1080 goto out;
1081 }
1082
1083 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1084 /*
1085 * If there are two proxies with the same name only following
1086 * combinations are allowed:
1087 */
1088 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001089 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1090 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001091 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001092 }
1093 }
1094
Vincent Bernat02779b62016-04-03 13:48:43 +02001095 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001096 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001097 err_code |= ERR_ALERT | ERR_ABORT;
1098 goto out;
1099 }
1100
1101 curmailers->next = mailers;
1102 mailers = curmailers;
1103 curmailers->conf.file = strdup(file);
1104 curmailers->conf.line = linenum;
1105 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001106 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1107 * But need enough time so that timeouts don't occur
1108 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001109 }
1110 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1111 struct sockaddr_storage *sk;
1112 int port1, port2;
1113 struct protocol *proto;
1114
1115 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001116 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1117 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001118 err_code |= ERR_ALERT | ERR_FATAL;
1119 goto out;
1120 }
1121
1122 err = invalid_char(args[1]);
1123 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001124 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1125 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001126 err_code |= ERR_ALERT | ERR_FATAL;
1127 goto out;
1128 }
1129
Vincent Bernat02779b62016-04-03 13:48:43 +02001130 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001131 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001132 err_code |= ERR_ALERT | ERR_ABORT;
1133 goto out;
1134 }
1135
1136 /* the mailers are linked backwards first */
1137 curmailers->count++;
1138 newmailer->next = curmailers->mailer_list;
1139 curmailers->mailer_list = newmailer;
1140 newmailer->mailers = curmailers;
1141 newmailer->conf.file = strdup(file);
1142 newmailer->conf.line = linenum;
1143
1144 newmailer->id = strdup(args[1]);
1145
Willy Tarreau5fc93282020-09-16 18:25:03 +02001146 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001147 &errmsg, NULL, NULL,
1148 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 +09001149 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001150 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001151 err_code |= ERR_ALERT | ERR_FATAL;
1152 goto out;
1153 }
1154
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001155 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001156 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1157 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001158 err_code |= ERR_ALERT | ERR_FATAL;
1159 goto out;
1160 }
1161
Simon Horman0d16a402015-01-30 11:22:58 +09001162 newmailer->addr = *sk;
1163 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001164 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001165 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001166 }
1167 else if (strcmp(args[0], "timeout") == 0) {
1168 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001169 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1170 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001171 err_code |= ERR_ALERT | ERR_FATAL;
1172 goto out;
1173 }
1174 else if (strcmp(args[1], "mail") == 0) {
1175 const char *res;
1176 unsigned int timeout_mail;
1177 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001178 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1179 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001180 err_code |= ERR_ALERT | ERR_FATAL;
1181 goto out;
1182 }
1183 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001184 if (res == PARSE_TIME_OVER) {
1185 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1186 file, linenum, args[2], args[0], args[1]);
1187 err_code |= ERR_ALERT | ERR_FATAL;
1188 goto out;
1189 }
1190 else if (res == PARSE_TIME_UNDER) {
1191 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1192 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001193 err_code |= ERR_ALERT | ERR_FATAL;
1194 goto out;
1195 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001196 else if (res) {
1197 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1198 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001199 err_code |= ERR_ALERT | ERR_FATAL;
1200 goto out;
1201 }
1202 curmailers->timeout.mail = timeout_mail;
1203 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001204 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001205 file, linenum, args[0], args[1]);
1206 err_code |= ERR_ALERT | ERR_FATAL;
1207 goto out;
1208 }
1209 }
Simon Horman0d16a402015-01-30 11:22:58 +09001210 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001211 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001212 err_code |= ERR_ALERT | ERR_FATAL;
1213 goto out;
1214 }
1215
1216out:
1217 free(errmsg);
1218 return err_code;
1219}
1220
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001221void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001222{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001223 ha_free(&p->email_alert.mailers.name);
1224 ha_free(&p->email_alert.from);
1225 ha_free(&p->email_alert.to);
1226 ha_free(&p->email_alert.myhostname);
Simon Horman9dc49962015-01-30 11:22:59 +09001227}
1228
Willy Tarreaubaaee002006-06-26 02:48:02 +02001229
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001230int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001231cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1232{
Willy Tarreaue5733232019-05-22 19:24:06 +02001233#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001234 const char *err;
1235 const char *item = args[0];
1236
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001237 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001238 return 0;
1239 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001240 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001241 size_t idx = 1;
1242 const char *current;
1243 while (*(current = args[idx++])) {
1244 err = invalid_char(current);
1245 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001246 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1247 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001248 return ERR_ALERT | ERR_FATAL;
1249 }
1250
1251 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001252 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1253 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001254 return ERR_ALERT | ERR_FATAL;
1255 }
1256 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001257 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1258 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001259 return ERR_ALERT | ERR_FATAL;
1260 }
1261 }
1262 }
1263
1264 return 0;
1265#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001266 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1267 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001268 return ERR_ALERT | ERR_FATAL;
1269#endif
1270}
1271
1272int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001273cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1274{
1275
1276 int err_code = 0;
1277 const char *err;
1278
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001279 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001280 struct userlist *newul;
1281
1282 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001283 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1284 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001285 err_code |= ERR_ALERT | ERR_FATAL;
1286 goto out;
1287 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001288 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1289 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001290
1291 err = invalid_char(args[1]);
1292 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001293 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1294 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001295 err_code |= ERR_ALERT | ERR_FATAL;
1296 goto out;
1297 }
1298
1299 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001300 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001301 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1302 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001303 err_code |= ERR_WARN;
1304 goto out;
1305 }
1306
Vincent Bernat02779b62016-04-03 13:48:43 +02001307 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001308 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001309 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001310 err_code |= ERR_ALERT | ERR_ABORT;
1311 goto out;
1312 }
1313
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001314 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001315 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001316 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001317 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001318 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001319 goto out;
1320 }
1321
1322 newul->next = userlist;
1323 userlist = newul;
1324
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001325 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001326 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001327 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001328 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001329
1330 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001331 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1332 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001333 err_code |= ERR_ALERT | ERR_FATAL;
1334 goto out;
1335 }
1336
1337 err = invalid_char(args[1]);
1338 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001339 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1340 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001341 err_code |= ERR_ALERT | ERR_FATAL;
1342 goto out;
1343 }
1344
William Lallemand4ac9f542015-05-28 18:03:51 +02001345 if (!userlist)
1346 goto out;
1347
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001348 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001349 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001350 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1351 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001352 err_code |= ERR_ALERT;
1353 goto out;
1354 }
1355
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001356 ag = calloc(1, sizeof(*ag));
1357 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001358 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001359 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001360 goto out;
1361 }
1362
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001363 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001364 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001365 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001366 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001367 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001368 goto out;
1369 }
1370
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001371 cur_arg = 2;
1372
1373 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001374 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001375 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001376 cur_arg += 2;
1377 continue;
1378 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001379 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1380 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001381 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001382 free(ag->groupusers);
1383 free(ag->name);
1384 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001385 goto out;
1386 }
1387 }
1388
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001389 ag->next = userlist->groups;
1390 userlist->groups = ag;
1391
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001392 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001393 struct auth_users *newuser;
1394 int cur_arg;
1395
1396 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001397 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1398 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001399 err_code |= ERR_ALERT | ERR_FATAL;
1400 goto out;
1401 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001402 if (!userlist)
1403 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001404
1405 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001406 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001407 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1408 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001409 err_code |= ERR_ALERT;
1410 goto out;
1411 }
1412
Vincent Bernat02779b62016-04-03 13:48:43 +02001413 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001414 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001415 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001416 err_code |= ERR_ALERT | ERR_ABORT;
1417 goto out;
1418 }
1419
1420 newuser->user = strdup(args[1]);
1421
1422 newuser->next = userlist->users;
1423 userlist->users = newuser;
1424
1425 cur_arg = 2;
1426
1427 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001428 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001429#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001430 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001431 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1432 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001433 err_code |= ERR_ALERT | ERR_FATAL;
1434 goto out;
1435 }
1436#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001437 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1438 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001439 err_code |= ERR_ALERT;
1440#endif
1441 newuser->pass = strdup(args[cur_arg + 1]);
1442 cur_arg += 2;
1443 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001444 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001445 newuser->pass = strdup(args[cur_arg + 1]);
1446 newuser->flags |= AU_O_INSECURE;
1447 cur_arg += 2;
1448 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001449 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001450 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001451 cur_arg += 2;
1452 continue;
1453 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001454 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1455 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001456 err_code |= ERR_ALERT | ERR_FATAL;
1457 goto out;
1458 }
1459 }
1460 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001461 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 +01001462 err_code |= ERR_ALERT | ERR_FATAL;
1463 }
1464
1465out:
1466 return err_code;
1467}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001468
Christopher Faulet79bdef32016-11-04 22:36:15 +01001469int
1470cfg_parse_scope(const char *file, int linenum, char *line)
1471{
1472 char *beg, *end, *scope = NULL;
1473 int err_code = 0;
1474 const char *err;
1475
1476 beg = line + 1;
1477 end = strchr(beg, ']');
1478
1479 /* Detect end of scope declaration */
1480 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001481 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1482 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001483 err_code |= ERR_ALERT | ERR_FATAL;
1484 goto out;
1485 }
1486
1487 /* Get scope name and check its validity */
1488 scope = my_strndup(beg, end-beg);
1489 err = invalid_char(scope);
1490 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001491 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1492 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001493 err_code |= ERR_ALERT | ERR_ABORT;
1494 goto out;
1495 }
1496
1497 /* Be sure to have a scope declaration alone on its line */
1498 line = end+1;
1499 while (isspace((unsigned char)*line))
1500 line++;
1501 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001502 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1503 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001504 err_code |= ERR_ALERT | ERR_ABORT;
1505 goto out;
1506 }
1507
1508 /* We have a valid scope declaration, save it */
1509 free(cfg_scope);
1510 cfg_scope = scope;
1511 scope = NULL;
1512
1513 out:
1514 free(scope);
1515 return err_code;
1516}
1517
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001518int
1519cfg_parse_track_sc_num(unsigned int *track_sc_num,
1520 const char *arg, const char *end, char **errmsg)
1521{
1522 const char *p;
1523 unsigned int num;
1524
1525 p = arg;
1526 num = read_uint64(&arg, end);
1527
1528 if (arg != end) {
1529 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1530 return -1;
1531 }
1532
1533 if (num >= MAX_SESS_STKCTR) {
1534 memprintf(errmsg, "%u track-sc number exceeding "
1535 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1536 return -1;
1537 }
1538
1539 *track_sc_num = num;
1540 return 0;
1541}
1542
Willy Tarreaubaaee002006-06-26 02:48:02 +02001543/*
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001544 * Detect a global section after a non-global one and output a diagnostic
1545 * warning.
1546 */
1547static void check_section_position(char *section_name,
1548 const char *file, int linenum,
1549 int *non_global_parsed)
1550{
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02001551 if (strcmp(section_name, "global") == 0) {
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001552 if (*non_global_parsed == 1)
1553 _ha_diag_warning("parsing [%s:%d] : global section detected after a non-global one, the prevalence of their statements is unspecified\n", file, linenum);
1554 }
1555 else if (*non_global_parsed == 0) {
1556 *non_global_parsed = 1;
1557 }
1558}
1559
Willy Tarreau8a022d52021-04-27 20:29:11 +02001560/* apply the current default_path setting for config file <file>, and
1561 * optionally replace the current path to <origin> if not NULL while the
1562 * default-path mode is set to "origin". Errors are returned into an
1563 * allocated string passed to <err> if it's not NULL. Returns 0 on failure
1564 * or non-zero on success.
1565 */
1566static int cfg_apply_default_path(const char *file, const char *origin, char **err)
1567{
1568 const char *beg, *end;
1569
1570 /* make path start at <beg> and end before <end>, and switch it to ""
1571 * if no slash was passed.
1572 */
1573 beg = file;
1574 end = strrchr(beg, '/');
1575 if (!end)
1576 end = beg;
1577
1578 if (!*initial_cwd) {
1579 if (getcwd(initial_cwd, sizeof(initial_cwd)) == NULL) {
1580 if (err)
1581 memprintf(err, "Impossible to retrieve startup directory name: %s", strerror(errno));
1582 return 0;
1583 }
1584 }
1585 else if (chdir(initial_cwd) == -1) {
1586 if (err)
1587 memprintf(err, "Impossible to get back to initial directory '%s': %s", initial_cwd, strerror(errno));
1588 return 0;
1589 }
1590
1591 /* OK now we're (back) to initial_cwd */
1592
1593 switch (default_path_mode) {
1594 case DEFAULT_PATH_CURRENT:
1595 /* current_cwd never set, nothing to do */
1596 return 1;
1597
1598 case DEFAULT_PATH_ORIGIN:
1599 /* current_cwd set in the config */
1600 if (origin &&
1601 snprintf(current_cwd, sizeof(current_cwd), "%s", origin) > sizeof(current_cwd)) {
1602 if (err)
1603 memprintf(err, "Absolute path too long: '%s'", origin);
1604 return 0;
1605 }
1606 break;
1607
1608 case DEFAULT_PATH_CONFIG:
1609 if (end - beg >= sizeof(current_cwd)) {
1610 if (err)
1611 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1612 return 0;
1613 }
1614 memcpy(current_cwd, beg, end - beg);
1615 current_cwd[end - beg] = 0;
1616 break;
1617
1618 case DEFAULT_PATH_PARENT:
1619 if (end - beg + 3 >= sizeof(current_cwd)) {
1620 if (err)
1621 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1622 return 0;
1623 }
1624 memcpy(current_cwd, beg, end - beg);
1625 if (end > beg)
1626 memcpy(current_cwd + (end - beg), "/..\0", 4);
1627 else
1628 memcpy(current_cwd + (end - beg), "..\0", 3);
1629 break;
1630 }
1631
1632 if (*current_cwd && chdir(current_cwd) == -1) {
1633 if (err)
1634 memprintf(err, "Impossible to get back to directory '%s': %s", initial_cwd, strerror(errno));
1635 return 0;
1636 }
1637
1638 return 1;
1639}
1640
1641/* parses a global "default-path" directive. */
1642static int cfg_parse_global_def_path(char **args, int section_type, struct proxy *curpx,
1643 const struct proxy *defpx, const char *file, int line,
1644 char **err)
1645{
1646 int ret = -1;
1647
1648 /* "current", "config", "parent", "origin <path>" */
1649
1650 if (strcmp(args[1], "current") == 0)
1651 default_path_mode = DEFAULT_PATH_CURRENT;
1652 else if (strcmp(args[1], "config") == 0)
1653 default_path_mode = DEFAULT_PATH_CONFIG;
1654 else if (strcmp(args[1], "parent") == 0)
1655 default_path_mode = DEFAULT_PATH_PARENT;
1656 else if (strcmp(args[1], "origin") == 0)
1657 default_path_mode = DEFAULT_PATH_ORIGIN;
1658 else {
1659 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]);
1660 goto end;
1661 }
1662
1663 if (default_path_mode == DEFAULT_PATH_ORIGIN) {
1664 if (!*args[2]) {
1665 memprintf(err, "'%s %s' expects a directory as an argument.", args[0], args[1]);
1666 goto end;
1667 }
1668 if (!cfg_apply_default_path(file, args[2], err)) {
1669 memprintf(err, "couldn't set '%s' to origin '%s': %s.", args[0], args[2], *err);
1670 goto end;
1671 }
1672 }
1673 else if (!cfg_apply_default_path(file, NULL, err)) {
1674 memprintf(err, "couldn't set '%s' to '%s': %s.", args[0], args[1], *err);
1675 goto end;
1676 }
1677
1678 /* note that once applied, the path is immediately updated */
1679
1680 ret = 0;
1681 end:
1682 return ret;
1683}
1684
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001685/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001686 * This function reads and parses the configuration file given in the argument.
Willy Tarreauda543e12021-04-27 18:30:28 +02001687 * Returns the error code, 0 if OK, -1 if the config file couldn't be opened,
1688 * or any combination of :
Willy Tarreau058e9072009-07-20 09:30:05 +02001689 * - ERR_ABORT: must abort ASAP
1690 * - ERR_FATAL: we can continue parsing but not start the service
1691 * - ERR_WARN: a warning has been emitted
1692 * - ERR_ALERT: an alert has been emitted
1693 * Only the two first ones can stop processing, the two others are just
1694 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001695 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001696int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001697{
Willy Tarreauda543e12021-04-27 18:30:28 +02001698 char *thisline = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001699 int linesize = LINESIZE;
Willy Tarreauda543e12021-04-27 18:30:28 +02001700 FILE *f = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001701 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001702 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001703 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001704 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001705 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001706 char *outline = NULL;
1707 size_t outlen = 0;
1708 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001709 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001710 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001711 int nested_cond_lvl = 0;
1712 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001713 int non_global_section_parsed = 0;
Willy Tarreau8a022d52021-04-27 20:29:11 +02001714 char *errmsg = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001715
Willy Tarreau51508052021-05-06 10:04:45 +02001716 global.cfg_curr_line = 0;
1717 global.cfg_curr_file = file;
1718
William Lallemand64e84512015-05-12 14:25:37 +02001719 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Willy Tarreauda543e12021-04-27 18:30:28 +02001720 ha_alert("Out of memory trying to allocate a buffer for a configuration line.\n");
1721 err_code = -1;
1722 goto err;
William Lallemand64e84512015-05-12 14:25:37 +02001723 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001724
Willy Tarreauda543e12021-04-27 18:30:28 +02001725 if ((f = fopen(file,"r")) == NULL) {
1726 err_code = -1;
1727 goto err;
David Carlier97880bb2016-04-08 10:35:26 +01001728 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001729
Willy Tarreau8a022d52021-04-27 20:29:11 +02001730 /* change to the new dir if required */
1731 if (!cfg_apply_default_path(file, NULL, &errmsg)) {
1732 ha_alert("parsing [%s:%d]: failed to apply default-path: %s.\n", file, linenum, errmsg);
1733 free(errmsg);
1734 err_code = -1;
1735 goto err;
1736 }
1737
William Lallemandb2f07452015-05-12 14:27:13 +02001738next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001739 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001740 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001741 char *end;
1742 char *args[MAX_LINE_ARGS + 1];
1743 char *line = thisline;
1744
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001745 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001746 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1747 file, linenum, (missing_lf + 1));
1748 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001749 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001750 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001751 }
1752
Willy Tarreaubaaee002006-06-26 02:48:02 +02001753 linenum++;
Willy Tarreau51508052021-05-06 10:04:45 +02001754 global.cfg_curr_line = linenum;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001755
Willy Tarreau32234e72020-06-16 17:14:33 +02001756 if (fatal >= 50) {
1757 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1758 break;
1759 }
1760
Willy Tarreaubaaee002006-06-26 02:48:02 +02001761 end = line + strlen(line);
1762
William Lallemand64e84512015-05-12 14:25:37 +02001763 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001764 /* Check if we reached the limit and the last char is not \n.
1765 * Watch out for the last line without the terminating '\n'!
1766 */
William Lallemand64e84512015-05-12 14:25:37 +02001767 char *newline;
1768 int newlinesize = linesize * 2;
1769
1770 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1771 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001772 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1773 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001774 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001775 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001776 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001777 continue;
1778 }
1779
1780 readbytes = linesize - 1;
1781 linesize = newlinesize;
1782 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001783 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001784 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001785 }
1786
William Lallemand64e84512015-05-12 14:25:37 +02001787 readbytes = 0;
1788
Willy Tarreau08488f62020-06-26 17:24:54 +02001789 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001790 /* kill trailing LF */
1791 *(end - 1) = 0;
1792 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001793 else {
1794 /* mark this line as truncated */
1795 missing_lf = end - line;
1796 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001797
Willy Tarreaubaaee002006-06-26 02:48:02 +02001798 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001799 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001800 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001801
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001802 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001803 err_code |= cfg_parse_scope(file, linenum, line);
1804 goto next_line;
1805 }
1806
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001807 while (1) {
1808 uint32_t err;
Maximilian Mader29c6cd72021-06-06 00:50:21 +02001809 const char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001810
Tim Duesterhusb3168b32021-06-06 00:50:20 +02001811 arg = sizeof(args) / sizeof(*args);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001812 outlen = outlinesize;
1813 err = parse_line(line, outline, &outlen, args, &arg,
1814 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001815 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1816 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001817
1818 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001819 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1820
1821 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1822 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001823 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001824 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001825 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001826 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001827
1828 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001829 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1830
1831 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1832 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001833 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001834 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001835 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001836 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001837
1838 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001839 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1840
1841 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1842 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001843 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001844 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001845 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001846 }
William Lallemandb2f07452015-05-12 14:27:13 +02001847
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001848 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001849 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1850
1851 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1852 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001853 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001854 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001855 goto next_line;
1856 }
William Lallemandb2f07452015-05-12 14:27:13 +02001857
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001858 if (err & PARSE_ERR_WRONG_EXPAND) {
1859 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1860
1861 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1862 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1863 err_code |= ERR_ALERT | ERR_FATAL;
1864 fatal++;
1865 goto next_line;
1866 }
1867
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001868 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1869 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001870 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001871 if (outline == NULL) {
1872 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1873 file, linenum);
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001874 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau32234e72020-06-16 17:14:33 +02001875 fatal++;
Christopher Fauletdfe32c72022-05-18 16:22:43 +02001876 outlinesize = 0;
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001877 goto err;
William Lallemandb2f07452015-05-12 14:27:13 +02001878 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001879 /* try again */
1880 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001881 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001882
1883 if (err & PARSE_ERR_TOOMANY) {
1884 /* only check this *after* being sure the output is allocated */
1885 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1886 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1887 err_code |= ERR_ALERT | ERR_FATAL;
1888 fatal++;
1889 goto next_line;
1890 }
1891
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001892 /* everything's OK */
1893 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001894 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001895
Erwan Le Goasb0c05012022-09-14 17:51:55 +02001896 /* dump cfg */
1897 if (global.mode & MODE_DUMP_CFG) {
1898 if (args[0] != NULL) {
1899 struct cfg_section *sect;
1900 int is_sect = 0;
1901 int i = 0;
1902 uint32_t g_key = HA_ATOMIC_LOAD(&global.anon_key);
1903
1904 qfprintf(stdout, "%d\t", linenum);
1905
1906 /* if a word is in sections list, is_sect = 1 */
1907 list_for_each_entry(sect, &sections, list) {
1908 if (strcmp(args[0], sect->section_name) == 0) {
1909 is_sect = 1;
1910 break;
1911 }
1912 }
1913
1914 if (g_key == 0) {
1915 /* no anonymizing needed, dump the config as-is (but without comments).
1916 * Note: tabs were lost during tokenizing, so we reinsert for non-section
1917 * keywords.
1918 */
1919 if (!is_sect)
1920 qfprintf(stdout, "\t");
1921
1922 for (i = 0; i < arg; i++) {
1923 qfprintf(stdout, "%s ", args[i]);
1924 }
1925 qfprintf(stdout, "\n");
1926 continue;
1927 }
1928
1929 /* We're anonymizing */
1930
1931 if (is_sect) {
1932 /* new sections are optionally followed by an identifier */
1933 if (arg >= 2) {
1934 qfprintf(stdout, "%s %s\n", args[0], HA_ANON_ID(g_key, args[1]));
1935 }
1936 else {
1937 qfprintf(stdout, "%s\n", args[0]);
1938 }
1939 continue;
1940 }
1941
1942 /* non-section keywords start indented */
1943 qfprintf(stdout, "\t");
1944
1945 /* some keywords deserve special treatment */
1946 if (!*args[0]) {
1947 qfprintf(stdout, "\n");
1948 }
1949
1950 else if (strcmp(args[0], "anonkey") == 0) {
1951 qfprintf(stdout, "%s [...]\n", args[0]);
1952 }
1953
1954 else if (strcmp(args[0], "maxconn") == 0) {
1955 qfprintf(stdout, "%s %s\n", args[0], args[1]);
1956 }
1957
1958 else if (strcmp(args[0], "stats") == 0 &&
1959 (strcmp(args[1], "timeout") == 0 || strcmp(args[1], "maxconn") == 0)) {
1960 qfprintf(stdout, "%s %s %s\n", args[0], args[1], args[2]);
1961 }
1962
1963 else if (strcmp(args[0], "stats") == 0 && strcmp(args[1], "socket") == 0) {
1964 qfprintf(stdout, "%s %s ", args[0], args[1]);
1965
1966 if (arg > 1) {
1967 qfprintf(stdout, "%s ", args[2]);
1968
1969 if (arg > 2) {
1970 qfprintf(stdout, "[...]\n");
1971 }
1972 else {
1973 qfprintf(stdout, "\n");
1974 }
1975 }
1976 else {
1977 qfprintf(stdout, "\n");
1978 }
1979 }
1980
1981 else if (strcmp(args[0], "timeout") == 0) {
1982 qfprintf(stdout, "%s %s %s\n", args[0], args[1], args[2]);
1983 }
1984
1985 else if (strcmp(args[0], "mode") == 0) {
1986 qfprintf(stdout, "%s %s\n", args[0], args[1]);
1987 }
1988
1989 /* It concerns user in global secion and in userlist */
1990 else if (strcmp(args[0], "user") == 0) {
1991 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
1992
1993 if (arg > 2) {
1994 qfprintf(stdout, "[...]\n");
1995 }
1996 else {
1997 qfprintf(stdout, "\n");
1998 }
1999 }
2000
2001 else if (strcmp(args[0], "bind") == 0) {
2002 qfprintf(stdout, "%s ", args[0]);
2003 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[1]));
2004 if (arg > 2) {
2005 qfprintf(stdout, "[...]\n");
2006 }
2007 else {
2008 qfprintf(stdout, "\n");
2009 }
2010 }
2011
2012 else if (strcmp(args[0], "server") == 0) {
2013 qfprintf(stdout, "%s ", args[0]);
2014
2015 if (strcmp(args[1], "localhost") == 0) {
2016 qfprintf(stdout, "%s ", args[1]);
2017 }
2018 else {
2019 qfprintf(stdout, "%s ", HA_ANON_ID(g_key, args[1]));
2020 }
2021 if (arg > 2) {
2022 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[2]));
2023 }
2024 if (arg > 3) {
2025 qfprintf(stdout, "[...]\n");
2026 }
2027 else {
2028 qfprintf(stdout, "\n");
2029 }
2030 }
2031
2032 else if (strcmp(args[0], "redirect") == 0) {
2033 qfprintf(stdout, "%s %s ", args[0], args[1]);
2034
2035 if (strcmp(args[1], "prefix") == 0 || strcmp(args[1], "location") == 0) {
2036 qfprintf(stdout, "%s ", HA_ANON_PATH(g_key, args[2]));
2037 }
2038 else {
2039 qfprintf(stdout, "%s ", args[2]);
2040 }
2041 if (arg > 3) {
2042 qfprintf(stdout, "[...]");
2043 }
2044 qfprintf(stdout, "\n");
2045 }
2046
2047 else if (strcmp(args[0], "acl") == 0) {
2048 qfprintf(stdout, "%s %s %s ", args[0], HA_ANON_ID(g_key, args[1]), args[2]);
2049
2050 if (arg > 3) {
2051 qfprintf(stdout, "[...]");
2052 }
2053 qfprintf(stdout, "\n");
2054 }
2055
2056 else if (strcmp(args[0], "log") == 0) {
2057 qfprintf(stdout, "log ");
2058
2059 if (strcmp(args[1], "global") == 0) {
2060 qfprintf(stdout, "%s ", args[1]);
2061 }
2062 else {
2063 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[1]));
2064 }
2065 if (arg > 2) {
2066 qfprintf(stdout, "[...]");
2067 }
2068 qfprintf(stdout, "\n");
2069 }
2070
2071 else if (strcmp(args[0], "peer") == 0) {
2072 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
2073 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[2]));
2074
2075 if (arg > 3) {
2076 qfprintf(stdout, "[...]");
2077 }
2078 qfprintf(stdout, "\n");
2079 }
2080
2081 else if (strcmp(args[0], "use_backend") == 0) {
2082 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
2083
2084 if (arg > 2) {
2085 qfprintf(stdout, "[...]");
2086 }
2087 qfprintf(stdout, "\n");
2088 }
2089
2090 else if (strcmp(args[0], "default_backend") == 0) {
2091 qfprintf(stdout, "%s %s\n", args[0], HA_ANON_ID(g_key, args[1]));
2092 }
2093
2094 else {
2095 /* display up to 3 words and mask the rest which might be confidential */
2096 for (i = 0; i < MIN(arg, 3); i++) {
2097 qfprintf(stdout, "%s ", args[i]);
2098 }
2099 if (arg > 3) {
2100 qfprintf(stdout, "[...]");
2101 }
2102 qfprintf(stdout, "\n");
2103 }
2104 }
2105 continue;
2106 }
2107 /* end of config dump */
2108
Willy Tarreaubaaee002006-06-26 02:48:02 +02002109 /* empty line */
2110 if (!**args)
2111 continue;
2112
Willy Tarreau4b103022021-02-12 17:59:10 +01002113 /* check for config macros */
2114 if (*args[0] == '.') {
2115 if (strcmp(args[0], ".if") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002116 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002117 char *errmsg = NULL;
2118 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02002119 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002120
Willy Tarreauc8194c32021-07-16 16:38:58 +02002121 /* remerge all words into a single expression */
2122 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
2123 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002124
Willy Tarreau4b103022021-02-12 17:59:10 +01002125 nested_cond_lvl++;
2126 if (nested_cond_lvl >= MAXNESTEDCONDS) {
2127 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
2128 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2129 goto err;
2130 }
2131
Willy Tarreau6e647c92021-05-06 08:46:11 +02002132 if (nested_cond_lvl > 1 &&
2133 (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
2134 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
2135 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
2136 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
2137 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP)) {
Willy Tarreau4b103022021-02-12 17:59:10 +01002138 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002139 goto next_line;
2140 }
2141
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002142 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002143 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002144 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 76);
2145
2146 ha_alert("parsing [%s:%d]: %s in '.if' at position %d:\n .if %s\n %*s\n",
2147 file, linenum, errmsg,
2148 (int)(errptr-args[1]+1), args[1], (int)(newpos+5), "^");
2149
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002150 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01002151 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2152 goto err;
2153 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002154
2155 if (cond)
2156 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
2157 else
2158 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
2159
Willy Tarreau4b103022021-02-12 17:59:10 +01002160 goto next_line;
2161 }
2162 else if (strcmp(args[0], ".elif") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002163 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002164 char *errmsg = NULL;
2165 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02002166 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002167
Willy Tarreauc8194c32021-07-16 16:38:58 +02002168 /* remerge all words into a single expression */
2169 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
2170 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002171
Willy Tarreau4b103022021-02-12 17:59:10 +01002172 if (!nested_cond_lvl) {
2173 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
2174 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2175 goto err;
2176 }
2177
2178 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2179 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2180 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
2181 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2182 goto err;
2183 }
2184
2185 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2186 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
Willy Tarreauf67ff022021-05-06 08:48:09 +02002187 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
Willy Tarreau4b103022021-02-12 17:59:10 +01002188 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2189 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002190 goto next_line;
2191 }
2192
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002193 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002194 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002195 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 74);
2196
2197 ha_alert("parsing [%s:%d]: %s in '.elif' at position %d:\n .elif %s\n %*s\n",
2198 file, linenum, errmsg,
2199 (int)(errptr-args[1]+1), args[1], (int)(newpos+7), "^");
2200
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002201 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01002202 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2203 goto err;
2204 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002205
2206 if (cond)
2207 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
2208 else
2209 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
2210
Willy Tarreau4b103022021-02-12 17:59:10 +01002211 goto next_line;
2212 }
2213 else if (strcmp(args[0], ".else") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002214 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002215 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002216 file, linenum, args[1], args[0]);
2217 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2218 break;
2219 }
2220
Willy Tarreau4b103022021-02-12 17:59:10 +01002221 if (!nested_cond_lvl) {
2222 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
2223 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2224 goto err;
2225 }
2226
2227 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2228 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2229 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
2230 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2231 goto err;
2232 }
2233
2234 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2235 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2236 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
2237 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2238 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
2239 } else {
2240 /* otherwise we take the "else" */
2241 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
2242 }
2243 goto next_line;
2244 }
2245 else if (strcmp(args[0], ".endif") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002246 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002247 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002248 file, linenum, args[1], args[0]);
2249 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2250 break;
2251 }
2252
Willy Tarreau4b103022021-02-12 17:59:10 +01002253 if (!nested_cond_lvl) {
2254 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002255 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau4b103022021-02-12 17:59:10 +01002256 break;
2257 }
2258 nested_cond_lvl--;
2259 goto next_line;
2260 }
2261 }
2262
2263 if (nested_cond_lvl &&
2264 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
2265 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2266 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
2267 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
2268 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
2269 /* The current block is masked out by the conditions */
2270 goto next_line;
2271 }
2272
Willy Tarreau7190b982021-05-07 08:59:50 +02002273 /* .warning/.error/.notice/.diag */
Willy Tarreau4b103022021-02-12 17:59:10 +01002274 if (*args[0] == '.') {
2275 if (strcmp(args[0], ".alert") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002276 if (*args[2]) {
2277 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2278 file, linenum, args[2], args[0]);
2279 err_code |= ERR_ALERT | ERR_FATAL;
2280 goto next_line;
2281 }
2282
Willy Tarreau4b103022021-02-12 17:59:10 +01002283 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2284 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2285 goto err;
2286 }
2287 else if (strcmp(args[0], ".warning") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002288 if (*args[2]) {
2289 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2290 file, linenum, args[2], args[0]);
2291 err_code |= ERR_ALERT | ERR_FATAL;
2292 goto next_line;
2293 }
2294
Willy Tarreau4b103022021-02-12 17:59:10 +01002295 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2296 err_code |= ERR_WARN;
2297 goto next_line;
2298 }
2299 else if (strcmp(args[0], ".notice") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002300 if (*args[2]) {
2301 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2302 file, linenum, args[2], args[0]);
2303 err_code |= ERR_ALERT | ERR_FATAL;
2304 goto next_line;
2305 }
2306
Willy Tarreau4b103022021-02-12 17:59:10 +01002307 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2308 goto next_line;
2309 }
Willy Tarreau7190b982021-05-07 08:59:50 +02002310 else if (strcmp(args[0], ".diag") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002311 if (*args[2]) {
2312 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2313 file, linenum, args[2], args[0]);
2314 err_code |= ERR_ALERT | ERR_FATAL;
2315 goto next_line;
2316 }
2317
Willy Tarreau7190b982021-05-07 08:59:50 +02002318 ha_diag_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2319 goto next_line;
2320 }
Willy Tarreau4b103022021-02-12 17:59:10 +01002321 else {
2322 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
2323 err_code |= ERR_ALERT | ERR_FATAL;
2324 fatal++;
2325 break;
2326 }
2327 }
2328
Willy Tarreau3842f002009-06-14 11:39:52 +02002329 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002330 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02002331 char *tmp;
2332
Willy Tarreau3842f002009-06-14 11:39:52 +02002333 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002334 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002335 for (arg=0; *args[arg+1]; arg++)
2336 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002337 *tmp = '\0'; // fix the next arg to \0
2338 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002339 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002340 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02002341 kwm = KWM_DEF;
2342 for (arg=0; *args[arg+1]; arg++)
2343 args[arg] = args[arg+1]; // shift args after inversion
2344 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002345
William Dauchyec730982019-10-27 20:08:10 +01002346 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2347 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002348 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002349 strcmp(args[0], "insecure-fork-wanted") != 0 &&
2350 strcmp(args[0], "numa-cpu-mapping") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002351 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002352 "supported only for options, log, busy-polling, "
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002353 "set-dumpable, strict-limits, insecure-fork-wanted "
2354 "and numa-cpu-mapping.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002355 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002356 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002357 }
2358
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002359 /* detect section start */
2360 list_for_each_entry(ics, &sections, list) {
2361 if (strcmp(args[0], ics->section_name) == 0) {
2362 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002363 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002364 cs = ics;
Willy Tarreau51508052021-05-06 10:04:45 +02002365 free(global.cfg_curr_section);
2366 global.cfg_curr_section = strdup(*args[1] ? args[1] : args[0]);
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02002367
2368 if (global.mode & MODE_DIAG) {
2369 check_section_position(args[0], file, linenum,
2370 &non_global_section_parsed);
2371 }
2372
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002373 break;
2374 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002375 }
2376
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002377 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002378 int status;
2379
2380 status = pcs->post_section_parser();
2381 err_code |= status;
2382 if (status & ERR_FATAL)
2383 fatal++;
2384
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002385 if (err_code & ERR_ABORT)
2386 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002387 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002388 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002389
William Lallemandd2ff56d2017-10-16 11:06:50 +02002390 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002391 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002392 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002393 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002394 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002395 int status;
2396
2397 status = cs->section_parser(file, linenum, args, kwm);
2398 err_code |= status;
2399 if (status & ERR_FATAL)
2400 fatal++;
2401
William Lallemandd2ff56d2017-10-16 11:06:50 +02002402 if (err_code & ERR_ABORT)
2403 goto err;
2404 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002405 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002406
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002407 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002408 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2409 file, linenum, (missing_lf + 1));
2410 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002411 }
2412
Willy Tarreau51508052021-05-06 10:04:45 +02002413 ha_free(&global.cfg_curr_section);
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002414 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002415 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002416
Willy Tarreau4b103022021-02-12 17:59:10 +01002417 if (nested_cond_lvl) {
2418 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
2419 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2420 }
Willy Tarreau8a022d52021-04-27 20:29:11 +02002421
2422 if (*initial_cwd && chdir(initial_cwd) == -1) {
2423 ha_alert("Impossible to get back to initial directory '%s' : %s\n", initial_cwd, strerror(errno));
2424 err_code |= ERR_ALERT | ERR_FATAL;
2425 }
2426
William Lallemandd2ff56d2017-10-16 11:06:50 +02002427err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002428 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01002429 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002430 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002431 free(outline);
Willy Tarreau51508052021-05-06 10:04:45 +02002432 global.cfg_curr_line = 0;
2433 global.cfg_curr_file = NULL;
2434
Willy Tarreauda543e12021-04-27 18:30:28 +02002435 if (f)
2436 fclose(f);
2437
Willy Tarreau058e9072009-07-20 09:30:05 +02002438 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002439}
2440
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002441#if defined(USE_THREAD) && defined USE_CPU_AFFINITY
2442#if defined(__linux__)
2443
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002444/* filter directory name of the pattern node<X> */
2445static int numa_filter(const struct dirent *dir)
2446{
2447 char *endptr;
2448
2449 /* dir name must start with "node" prefix */
2450 if (strncmp(dir->d_name, "node", 4))
2451 return 0;
2452
2453 /* dir name must be at least 5 characters long */
2454 if (!dir->d_name[4])
2455 return 0;
2456
2457 /* dir name must end with a numeric id */
2458 if (strtol(&dir->d_name[4], &endptr, 10) < 0 || *endptr)
2459 return 0;
2460
2461 /* all tests succeeded */
2462 return 1;
2463}
2464
2465/* Parse a linux cpu map string representing to a numeric cpu mask map
2466 * The cpu map string is a list of 4-byte hex strings separated by commas, with
2467 * most-significant byte first, one bit per cpu number.
2468 */
2469static void parse_cpumap(char *cpumap_str, struct hap_cpuset *cpu_set)
2470{
2471 unsigned long cpumap;
2472 char *start, *endptr, *comma;
2473 int i, j;
2474
2475 ha_cpuset_zero(cpu_set);
2476
2477 i = 0;
2478 do {
2479 /* reverse-search for a comma, parse the string after the comma
2480 * or at the beginning if no comma found
2481 */
2482 comma = strrchr(cpumap_str, ',');
2483 start = comma ? comma + 1 : cpumap_str;
2484
2485 cpumap = strtoul(start, &endptr, 16);
2486 for (j = 0; cpumap; cpumap >>= 1, ++j) {
2487 if (cpumap & 0x1)
2488 ha_cpuset_set(cpu_set, j + i * 32);
2489 }
2490
2491 if (comma)
2492 *comma = '\0';
2493 ++i;
2494 } while (comma);
2495}
2496
2497/* Read the first line of a file from <path> into the trash buffer.
2498 * Returns 0 on success, otherwise non-zero.
2499 */
2500static int read_file_to_trash(const char *path)
2501{
2502 FILE *file;
2503 int ret = 1;
2504
2505 file = fopen(path, "r");
2506 if (file) {
2507 if (fgets(trash.area, trash.size, file))
2508 ret = 0;
2509
2510 fclose(file);
2511 }
2512
2513 return ret;
2514}
2515
2516/* Inspect the cpu topology of the machine on startup. If a multi-socket
2517 * machine is detected, try to bind on the first node with active cpu. This is
2518 * done to prevent an impact on the overall performance when the topology of
2519 * the machine is unknown. This function is not called if one of the conditions
2520 * is met :
2521 * - a non-null nbthread directive is active
2522 * - a restrictive cpu-map directive is active
2523 * - a restrictive affinity is already applied, for example via taskset
2524 *
2525 * Returns the count of cpus selected. If no automatic binding was required or
2526 * an error occurred and the topology is unknown, 0 is returned.
2527 */
2528static int numa_detect_topology()
2529{
2530 struct dirent **node_dirlist;
2531 int node_dirlist_size;
2532
2533 struct hap_cpuset active_cpus, node_cpu_set;
2534 const char *parse_cpu_set_args[2];
2535 char cpumap_path[PATH_MAX];
2536 char *err = NULL;
2537
2538 /* node_cpu_set count is used as return value */
2539 ha_cpuset_zero(&node_cpu_set);
2540
2541 /* 1. count the sysfs node<X> directories */
Willy Tarreau07bf21c2021-04-23 19:09:16 +02002542 node_dirlist = NULL;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002543 node_dirlist_size = scandir(NUMA_DETECT_SYSTEM_SYSFS_PATH"/node", &node_dirlist, numa_filter, alphasort);
2544 if (node_dirlist_size <= 1)
2545 goto free_scandir_entries;
2546
2547 /* 2. read and parse the list of currently online cpu */
2548 if (read_file_to_trash(NUMA_DETECT_SYSTEM_SYSFS_PATH"/cpu/online")) {
2549 ha_notice("Cannot read online CPUs list, will not try to refine binding\n");
2550 goto free_scandir_entries;
2551 }
2552
2553 parse_cpu_set_args[0] = trash.area;
2554 parse_cpu_set_args[1] = "\0";
2555 if (parse_cpu_set(parse_cpu_set_args, &active_cpus, 1, &err)) {
2556 ha_notice("Cannot read online CPUs list: '%s'. Will not try to refine binding\n", err);
2557 free(err);
2558 goto free_scandir_entries;
2559 }
2560
2561 /* 3. loop through nodes dirs and find the first one with active cpus */
2562 while (node_dirlist_size--) {
2563 const char *node = node_dirlist[node_dirlist_size]->d_name;
2564 ha_cpuset_zero(&node_cpu_set);
2565
2566 snprintf(cpumap_path, PATH_MAX, "%s/node/%s/cpumap",
2567 NUMA_DETECT_SYSTEM_SYSFS_PATH, node);
2568
2569 if (read_file_to_trash(cpumap_path)) {
2570 ha_notice("Cannot read CPUs list of '%s', will not select them to refine binding\n", node);
2571 free(node_dirlist[node_dirlist_size]);
2572 continue;
2573 }
2574
2575 parse_cpumap(trash.area, &node_cpu_set);
2576 ha_cpuset_and(&node_cpu_set, &active_cpus);
2577
2578 /* 5. set affinity on the first found node with active cpus */
2579 if (!ha_cpuset_count(&node_cpu_set)) {
2580 free(node_dirlist[node_dirlist_size]);
2581 continue;
2582 }
2583
2584 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));
2585 if (sched_setaffinity(getpid(), sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2586 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2587
2588 /* clear the cpuset used as return value */
2589 ha_cpuset_zero(&node_cpu_set);
2590 }
2591
2592 free(node_dirlist[node_dirlist_size]);
2593 break;
2594 }
2595
2596 free_scandir_entries:
2597 while (node_dirlist_size-- > 0)
2598 free(node_dirlist[node_dirlist_size]);
2599 free(node_dirlist);
2600
2601 return ha_cpuset_count(&node_cpu_set);
2602}
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002603
David CARLIERf5d48f82021-12-06 11:00:10 +00002604#elif defined(__FreeBSD__)
2605static int numa_detect_topology()
2606{
2607 struct hap_cpuset node_cpu_set;
2608 int ndomains = 0, i;
2609 size_t len = sizeof(ndomains);
2610
2611 if (sysctlbyname("vm.ndomains", &ndomains, &len, NULL, 0) == -1) {
2612 ha_notice("Cannot assess the number of CPUs domains\n");
2613 return 0;
2614 }
2615
2616 BUG_ON(ndomains > MAXMEMDOM);
2617 ha_cpuset_zero(&node_cpu_set);
2618
2619 /*
2620 * We retrieve the first active valid CPU domain
2621 * with active cpu and binding it, we returns
2622 * the number of cpu from the said domain
2623 */
2624 for (i = 0; i < ndomains; i ++) {
2625 struct hap_cpuset dom;
2626 ha_cpuset_zero(&dom);
2627 if (cpuset_getaffinity(CPU_LEVEL_WHICH, CPU_WHICH_DOMAIN, i, sizeof(dom.cpuset), &dom.cpuset) == -1)
2628 continue;
2629
2630 if (!ha_cpuset_count(&dom))
2631 continue;
2632
2633 ha_cpuset_assign(&node_cpu_set, &dom);
2634
2635 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));
2636 if (cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2637 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2638
2639 /* clear the cpuset used as return value */
2640 ha_cpuset_zero(&node_cpu_set);
2641 }
2642 break;
2643 }
2644
2645 return ha_cpuset_count(&node_cpu_set);
2646}
2647
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002648#else
2649static int numa_detect_topology()
2650{
2651 return 0;
2652}
2653
2654#endif
2655#endif /* USE_THREAD && USE_CPU_AFFINITY */
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002656
Willy Tarreaubb925012009-07-23 13:36:36 +02002657/*
2658 * Returns the error code, 0 if OK, or any combination of :
2659 * - ERR_ABORT: must abort ASAP
2660 * - ERR_FATAL: we can continue parsing but not start the service
2661 * - ERR_WARN: a warning has been emitted
2662 * - ERR_ALERT: an alert has been emitted
2663 * Only the two first ones can stop processing, the two others are just
2664 * indicators.
2665 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002666int check_config_validity()
2667{
2668 int cfgerr = 0;
2669 struct proxy *curproxy = NULL;
Emeric Brun3b68b602022-08-18 15:53:21 +02002670 struct proxy *init_proxies_list = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002671 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002672 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002673 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002674 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002675 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002676 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002677 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01002678 struct resolvers *curr_resolvers = NULL;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002679 int i;
Frédéric Lécaille372508c2022-05-06 08:53:16 +02002680 int diag_no_cluster_secret = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002681
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002682 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002683 /*
2684 * Now, check for the integrity of all that we have collected.
2685 */
2686
2687 /* will be needed further to delay some tasks */
Willy Tarreau55542642021-10-08 09:33:24 +02002688 clock_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002689
Willy Tarreau193b8c62012-11-22 00:17:38 +01002690 if (!global.tune.max_http_hdr)
2691 global.tune.max_http_hdr = MAX_HTTP_HDR;
2692
2693 if (!global.tune.cookie_len)
2694 global.tune.cookie_len = CAPTURE_LEN;
2695
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002696 if (!global.tune.requri_len)
2697 global.tune.requri_len = REQURI_LEN;
2698
Willy Tarreau149ab772019-01-26 14:27:06 +01002699 if (!global.nbthread) {
2700 /* nbthread not set, thus automatic. In this case, and only if
2701 * running on a single process, we enable the same number of
2702 * threads as the number of CPUs the process is bound to. This
2703 * allows to easily control the number of threads using taskset.
2704 */
2705 global.nbthread = 1;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002706
Willy Tarreau149ab772019-01-26 14:27:06 +01002707#if defined(USE_THREAD)
Willy Tarreaub63dbb72021-06-11 16:50:29 +02002708 {
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002709 int numa_cores = 0;
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002710#if defined(USE_CPU_AFFINITY)
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002711 if (global.numa_cpu_mapping && !thread_cpu_mask_forced())
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002712 numa_cores = numa_detect_topology();
2713#endif
2714 global.nbthread = numa_cores ? numa_cores :
2715 thread_cpus_enabled_at_boot;
2716 }
Willy Tarreau149ab772019-01-26 14:27:06 +01002717#endif
2718 }
2719
Willy Tarreauc33b9692021-09-22 12:07:23 +02002720 if (!global.nbtgroups)
2721 global.nbtgroups = 1;
2722
Willy Tarreaue6806eb2021-09-27 10:10:26 +02002723 if (thread_map_to_groups() < 0) {
2724 err_code |= ERR_ALERT | ERR_FATAL;
2725 goto out;
2726 }
2727
Willy Tarreaubafbe012017-11-24 17:34:44 +01002728 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002729
Willy Tarreaubafbe012017-11-24 17:34:44 +01002730 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002731
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002732 /* Post initialisation of the users and groups lists. */
2733 err_code = userlist_postinit();
2734 if (err_code != ERR_NONE)
2735 goto out;
2736
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002737 /* first, we will invert the proxy list order */
2738 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002739 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002740 struct proxy *next;
2741
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002742 next = proxies_list->next;
2743 proxies_list->next = curproxy;
2744 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002745 if (!next)
2746 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002747 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002748 }
2749
Emeric Brun3b68b602022-08-18 15:53:21 +02002750 /* starting to initialize the main proxies list */
2751 init_proxies_list = proxies_list;
2752
2753init_proxies_list_stage1:
2754 for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002755 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002756 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002757 struct sticking_rule *mrule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002758 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002759 unsigned int next_id;
2760
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002761 if (!(curproxy->cap & PR_CAP_INT) && curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002762 /* proxy ID not set, use automatic numbering with first
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002763 * spare entry starting with next_pxid. We don't assign
2764 * numbers for internal proxies as they may depend on
2765 * build or config options and we don't want them to
2766 * possibly reuse existing IDs.
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002767 */
2768 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2769 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2770 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002771 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002772
Willy Tarreau32b51cd2021-08-26 15:59:44 +02002773 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize >= (256 << 20) && ONLY_ONCE()) {
2774 ha_alert("global.tune.bufsize must be below 256 MB when HTTP is in use (current value = %d).\n",
2775 global.tune.bufsize);
2776 cfgerr++;
2777 }
2778
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002779 /* next IDs are shifted even if the proxy is disabled, this
2780 * guarantees that a proxy that is temporarily disabled in the
2781 * configuration doesn't cause a renumbering. Internal proxies
2782 * that are not assigned a static ID must never shift the IDs
2783 * either since they may appear in any order (Lua, logs, etc).
2784 * The GLOBAL proxy that carries the stats socket has its ID
2785 * forced to zero.
2786 */
2787 if (curproxy->uuid >= 0)
2788 next_pxid++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002789
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002790 if (curproxy->flags & PR_FL_DISABLED) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002791 /* ensure we don't keep listeners uselessly bound. We
2792 * can't disable their listeners yet (fdtab not
2793 * allocated yet) but let's skip them.
2794 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002795 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002796 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002797 curproxy->table->peers.p = NULL;
2798 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002799 continue;
2800 }
2801
Christopher Fauletff556272021-10-13 11:04:10 +02002802 /* The current proxy is referencing a default proxy. We must
2803 * finalize its config, but only once. If the default proxy is
2804 * ready (PR_FL_READY) it means it was already fully configured.
2805 */
2806 if (curproxy->defpx) {
2807 if (!(curproxy->defpx->flags & PR_FL_READY)) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02002808 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
2809 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l4_rules, curproxy->defpx, &err_code);
2810 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l5_rules, curproxy->defpx, &err_code);
2811 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.inspect_rules, curproxy->defpx, &err_code);
2812 cfgerr += check_action_rules(&curproxy->defpx->tcp_rep.inspect_rules, curproxy->defpx, &err_code);
2813 cfgerr += check_action_rules(&curproxy->defpx->http_req_rules, curproxy->defpx, &err_code);
2814 cfgerr += check_action_rules(&curproxy->defpx->http_res_rules, curproxy->defpx, &err_code);
2815 cfgerr += check_action_rules(&curproxy->defpx->http_after_res_rules, curproxy->defpx, &err_code);
2816
Christopher Fauletff556272021-10-13 11:04:10 +02002817 err = NULL;
2818 i = smp_resolve_args(curproxy->defpx, &err);
2819 cfgerr += i;
2820 if (i) {
2821 indent_msg(&err, 8);
2822 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
2823 ha_free(&err);
2824 }
2825 else
2826 cfgerr += acl_find_targets(curproxy->defpx);
2827
2828 /* default proxy is now ready. Set the right FE/BE capabilities */
2829 curproxy->defpx->flags |= PR_FL_READY;
2830 }
2831 }
2832
Willy Tarreau3d209582014-05-09 17:06:11 +02002833 /* check and reduce the bind-proc of each listener */
2834 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2835 unsigned long mask;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002836 struct listener *li;
Willy Tarreau3d209582014-05-09 17:06:11 +02002837
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002838 /* HTTP frontends with "h2" as ALPN/NPN will work in
2839 * HTTP/2 and absolutely require buffers 16kB or larger.
2840 */
2841#ifdef USE_OPENSSL
2842 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2843#ifdef OPENSSL_NPN_NEGOTIATED
2844 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002845 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002846 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 +01002847 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002848 cfgerr++;
2849 }
2850#endif
2851#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2852 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002853 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002854 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 +01002855 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002856 cfgerr++;
2857 }
2858#endif
2859 } /* HTTP && bufsize < 16384 */
2860#endif
2861
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002862 /* detect and address thread affinity inconsistencies */
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002863 err = NULL;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002864 if (thread_resolve_group_mask(bind_conf->bind_tgroup, bind_conf->bind_thread,
2865 &bind_conf->bind_tgroup, &bind_conf->bind_thread, &err) < 0) {
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002866 ha_alert("Proxy '%s': %s in 'bind %s' at [%s:%d].\n",
2867 curproxy->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
2868 free(err);
2869 cfgerr++;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002870 } else if (!((mask = bind_conf->bind_thread) & ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002871 unsigned long new_mask = 0;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002872 ulong thr_mask = ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002873
2874 while (mask) {
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002875 new_mask |= mask & thr_mask;
2876 mask >>= ha_tgroup_info[bind_conf->bind_tgroup-1].count;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002877 }
2878
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002879 bind_conf->bind_thread = new_mask;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002880 ha_warning("Proxy '%s': the thread range specified on the 'thread' directive of 'bind %s' at [%s:%d] only refers to thread numbers out of the range supported by thread group %d (%d). The thread numbers were remapped to existing threads instead (mask 0x%lx).\n",
2881 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line,
2882 bind_conf->bind_tgroup, ha_tgroup_info[bind_conf->bind_tgroup-1].count, new_mask);
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002883 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002884
2885 /* apply thread masks and groups to all receivers */
2886 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
Willy Tarreau6dfbef42021-10-12 15:23:03 +02002887 if (bind_conf->settings.shards <= 1) {
2888 li->rx.bind_thread = bind_conf->bind_thread;
2889 li->rx.bind_tgroup = bind_conf->bind_tgroup;
2890 } else {
2891 struct listener *new_li;
2892 int shard, shards, todo, done, bit;
2893 ulong mask;
2894
2895 shards = bind_conf->settings.shards;
2896 todo = my_popcountl(bind_conf->bind_thread);
2897
2898 /* no more shards than total threads */
2899 if (shards > todo)
2900 shards = todo;
2901
2902 shard = done = bit = 0;
2903 new_li = li;
2904
2905 while (1) {
2906 mask = 0;
2907 while (done < todo) {
2908 /* enlarge mask to cover next bit of bind_thread */
2909 while (!(bind_conf->bind_thread & (1UL << bit)))
2910 bit++;
2911 mask |= (1UL << bit);
2912 bit++;
2913 done += shards;
2914 }
2915
2916 new_li->rx.bind_thread = bind_conf->bind_thread & mask;
2917 new_li->rx.bind_tgroup = bind_conf->bind_tgroup;
2918 done -= todo;
2919
2920 shard++;
2921 if (shard >= shards)
2922 break;
2923
2924 /* create another listener for new shards */
2925 new_li = clone_listener(li);
2926 if (!new_li) {
2927 ha_alert("Out of memory while trying to allocate extra listener for shard %d in %s %s\n",
2928 shard, proxy_type_str(curproxy), curproxy->id);
2929 cfgerr++;
2930 err_code |= ERR_FATAL | ERR_ALERT;
2931 goto out;
2932 }
2933 }
2934 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002935 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002936 }
2937
Willy Tarreauff01a212009-03-15 13:46:16 +01002938 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01002939 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002940 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002941 break;
2942
2943 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002944 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002945 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002946
2947 case PR_MODE_CLI:
2948 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2949 break;
Emeric Brun3b68b602022-08-18 15:53:21 +02002950
Emeric Brun54932b42020-07-07 09:43:24 +02002951 case PR_MODE_SYSLOG:
Emeric Brun3b68b602022-08-18 15:53:21 +02002952 /* this mode is initialized as the classic tcp proxy */
2953 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2954 break;
2955
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002956 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02002957 case PR_MODES:
2958 /* should not happen, bug gcc warn missing switch statement */
Emeric Brun3b68b602022-08-18 15:53:21 +02002959 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 +02002960 proxy_type_str(curproxy), curproxy->id);
2961 cfgerr++;
2962 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002963 }
2964
William Lallemand2c04a5a2021-08-13 15:21:12 +02002965 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002966 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 +01002967 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002968 err_code |= ERR_WARN;
2969 }
2970
Willy Tarreau77e0dae2020-10-14 15:44:27 +02002971 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002972 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002973 if (curproxy->options & PR_O_TRANSP) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002974 ha_alert("%s '%s' cannot use both transparent and balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002975 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002976 cfgerr++;
2977 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002978#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002979 else if (curproxy->srv == NULL) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002980 ha_alert("%s '%s' needs at least 1 server in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002981 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002982 cfgerr++;
2983 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002984#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002985 else if (curproxy->options & PR_O_DISPATCH) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002986 ha_warning("dispatch address of %s '%s' will be ignored in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002987 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002988 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002989 }
2990 }
Willy Tarreau25241232021-07-18 19:18:56 +02002991 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002992 /* If no LB algo is set in a backend, and we're not in
2993 * transparent mode, dispatch mode nor proxy mode, we
2994 * want to use balance roundrobin by default.
2995 */
2996 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2997 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002998 }
2999 }
Willy Tarreau193cf932007-09-17 10:17:23 +02003000
Willy Tarreau1620ec32011-08-06 17:05:02 +02003001 if (curproxy->options & PR_O_DISPATCH)
Willy Tarreau25241232021-07-18 19:18:56 +02003002 curproxy->options &= ~PR_O_TRANSP;
Willy Tarreau1620ec32011-08-06 17:05:02 +02003003 else if (curproxy->options & PR_O_TRANSP)
Willy Tarreau25241232021-07-18 19:18:56 +02003004 curproxy->options &= ~PR_O_DISPATCH;
Willy Tarreau82936582007-11-30 15:20:09 +01003005
Christopher Faulete5870d82020-04-15 11:32:03 +02003006 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003007 ha_warning("%s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
Christopher Faulete5870d82020-04-15 11:32:03 +02003008 proxy_type_str(curproxy), curproxy->id);
3009 err_code |= ERR_WARN;
3010 }
3011
3012 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02003013 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02003014 if (curproxy->options & PR_O_DISABLE404) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003015 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003016 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02003017 err_code |= ERR_WARN;
3018 curproxy->options &= ~PR_O_DISABLE404;
3019 }
3020 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003021 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003022 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02003023 err_code |= ERR_WARN;
3024 curproxy->options &= ~PR_O2_CHK_SNDST;
3025 }
Willy Tarreauef781042010-01-27 11:53:01 +01003026 }
3027
Simon Horman98637e52014-06-20 12:30:16 +09003028 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
3029 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003030 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
3031 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09003032 cfgerr++;
3033 }
3034 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003035 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
3036 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09003037 cfgerr++;
3038 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01003039 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
3040 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
3041 curproxy->id, "option external-check");
3042 err_code |= ERR_WARN;
3043 }
Simon Horman98637e52014-06-20 12:30:16 +09003044 }
3045
Simon Horman64e34162015-02-06 11:11:57 +09003046 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003047 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003048 ha_warning("'email-alert' will be ignored for %s '%s' (the presence any of "
Christopher Faulet767a84b2017-11-24 16:50:31 +01003049 "'email-alert from', 'email-alert level' 'email-alert mailers', "
3050 "'email-alert myhostname', or 'email-alert to' "
3051 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
3052 "to be present).\n",
3053 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003054 err_code |= ERR_WARN;
3055 free_email_alert(curproxy);
3056 }
3057 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01003058 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09003059 }
3060
Simon Horman98637e52014-06-20 12:30:16 +09003061 if (curproxy->check_command) {
3062 int clear = 0;
3063 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003064 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003065 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09003066 err_code |= ERR_WARN;
3067 clear = 1;
3068 }
3069 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003070 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
3071 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09003072 cfgerr++;
3073 }
3074 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003075 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09003076 }
3077 }
3078
3079 if (curproxy->check_path) {
3080 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003081 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003082 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09003083 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003084 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09003085 }
3086 }
3087
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003088 /* if a default backend was specified, let's find it */
3089 if (curproxy->defbe.name) {
3090 struct proxy *target;
3091
Willy Tarreauafb39922015-05-26 12:04:09 +02003092 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01003093 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003094 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
3095 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003096 cfgerr++;
3097 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003098 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
3099 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02003100 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02003101 } else if (target->mode != curproxy->mode &&
3102 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
3103
Christopher Faulet767a84b2017-11-24 16:50:31 +01003104 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
3105 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
3106 curproxy->conf.file, curproxy->conf.line,
3107 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
3108 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02003109 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003110 } else {
3111 free(curproxy->defbe.name);
3112 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01003113 /* Emit a warning if this proxy also has some servers */
3114 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003115 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
3116 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01003117 err_code |= ERR_WARN;
3118 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003119 }
3120 }
3121
Willy Tarreau55ea7572007-06-17 19:56:27 +02003122 /* find the target proxy for 'use_backend' rules */
3123 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02003124 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003125 struct logformat_node *node;
3126 char *pxname;
3127
3128 /* Try to parse the string as a log format expression. If the result
3129 * of the parsing is only one entry containing a simple string, then
3130 * it's a standard string corresponding to a static rule, thus the
3131 * parsing is cancelled and be.name is restored to be resolved.
3132 */
3133 pxname = rule->be.name;
3134 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01003135 curproxy->conf.args.ctx = ARGC_UBK;
3136 curproxy->conf.args.file = rule->file;
3137 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003138 err = NULL;
3139 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003140 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
3141 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003142 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003143 cfgerr++;
3144 continue;
3145 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003146 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
3147
3148 if (!LIST_ISEMPTY(&rule->be.expr)) {
3149 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
3150 rule->dynamic = 1;
3151 free(pxname);
3152 continue;
3153 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02003154 /* Only one element in the list, a simple string: free the expression and
3155 * fall back to static rule
3156 */
Willy Tarreau2b718102021-04-21 07:32:39 +02003157 LIST_DELETE(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003158 free(node->arg);
3159 free(node);
3160 }
3161
3162 rule->dynamic = 0;
3163 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003164
Willy Tarreauafb39922015-05-26 12:04:09 +02003165 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01003166 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003167 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
3168 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003169 cfgerr++;
3170 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003171 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
3172 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003173 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02003174 } else if (target->mode != curproxy->mode &&
3175 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
3176
Christopher Faulet767a84b2017-11-24 16:50:31 +01003177 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
3178 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
3179 curproxy->conf.file, curproxy->conf.line,
3180 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
3181 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02003182 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003183 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003184 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003185 rule->be.backend = target;
3186 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003187 err_code |= warnif_tcp_http_cond(curproxy, rule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003188 }
3189
Willy Tarreau64ab6072014-09-16 12:17:36 +02003190 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003191 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02003192 struct server *target;
3193 struct logformat_node *node;
3194 char *server_name;
3195
3196 /* We try to parse the string as a log format expression. If the result of the parsing
3197 * is only one entry containing a single string, then it's a standard string corresponding
3198 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
3199 */
3200 server_name = srule->srv.name;
3201 LIST_INIT(&srule->expr);
3202 curproxy->conf.args.ctx = ARGC_USRV;
3203 err = NULL;
3204 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
3205 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
3206 srule->file, srule->line, server_name, err);
3207 free(err);
3208 cfgerr++;
3209 continue;
3210 }
3211 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
3212
3213 if (!LIST_ISEMPTY(&srule->expr)) {
3214 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
3215 srule->dynamic = 1;
3216 free(server_name);
3217 continue;
3218 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02003219 /* Only one element in the list, a simple string: free the expression and
3220 * fall back to static rule
3221 */
Willy Tarreau2b718102021-04-21 07:32:39 +02003222 LIST_DELETE(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02003223 free(node->arg);
3224 free(node);
3225 }
3226
3227 srule->dynamic = 0;
3228 srule->srv.name = server_name;
3229 target = findserver(curproxy, srule->srv.name);
Christopher Faulet581db2b2021-03-26 10:02:46 +01003230 err_code |= warnif_tcp_http_cond(curproxy, srule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003231
3232 if (!target) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003233 ha_alert("%s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003234 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003235 cfgerr++;
3236 continue;
3237 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01003238 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003239 srule->srv.ptr = target;
Amaury Denoyelle06269612021-08-23 14:05:07 +02003240 target->flags |= SRV_F_NON_PURGEABLE;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003241 }
3242
Emeric Brunb982a3d2010-01-04 15:45:53 +01003243 /* find the target table for 'stick' rules */
3244 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003245 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003246
Emeric Brun1d33b292010-01-04 15:47:17 +01003247 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
3248 if (mrule->flags & STK_IS_STORE)
3249 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3250
Emeric Brunb982a3d2010-01-04 15:45:53 +01003251 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003252 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003253 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003254 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003255
3256 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003257 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003258 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003259 cfgerr++;
3260 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003261 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003262 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3263 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003264 cfgerr++;
3265 }
3266 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003267 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003268 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003269 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3270 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003271 if (!in_proxies_list(target->proxies_list, curproxy)) {
3272 curproxy->next_stkt_ref = target->proxies_list;
3273 target->proxies_list = curproxy;
3274 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003275 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003276 err_code |= warnif_tcp_http_cond(curproxy, mrule->cond);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003277 }
3278
3279 /* find the target table for 'store response' rules */
3280 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003281 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003282
Emeric Brun1d33b292010-01-04 15:47:17 +01003283 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3284
Emeric Brunb982a3d2010-01-04 15:45:53 +01003285 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003286 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003287 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003288 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003289
3290 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003291 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003292 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003293 cfgerr++;
3294 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003295 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003296 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3297 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003298 cfgerr++;
3299 }
3300 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003301 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003302 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003303 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3304 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003305 if (!in_proxies_list(target->proxies_list, curproxy)) {
3306 curproxy->next_stkt_ref = target->proxies_list;
3307 target->proxies_list = curproxy;
3308 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003309 }
3310 }
3311
Christopher Faulet42c6cf92021-03-25 17:19:04 +01003312 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
3313 cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code);
3314 cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code);
3315 cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code);
3316 cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code);
3317 cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code);
3318 cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code);
3319 cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003320
Christopher Faulet5eef0182021-03-31 17:13:49 +02003321 /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */
3322 if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) {
3323 if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP)
3324 ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. "
3325 "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n",
3326 curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy));
3327 }
3328
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003329 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003330 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003331
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003332 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003333 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003334 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003335 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003336 break;
3337 }
3338 }
3339
3340 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003341 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003342 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01003343 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003344 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003345 cfgerr++;
3346 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003347 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003348 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003349 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003350 }
Emeric Brun32da3c42010-09-23 18:39:19 +02003351 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003352 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
3353 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003354 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003355 cfgerr++;
3356 }
3357 }
3358
Simon Horman9dc49962015-01-30 11:22:59 +09003359
3360 if (curproxy->email_alert.mailers.name) {
3361 struct mailers *curmailers = mailers;
3362
3363 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003364 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09003365 break;
Simon Horman9dc49962015-01-30 11:22:59 +09003366 }
Simon Horman9dc49962015-01-30 11:22:59 +09003367 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003368 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
3369 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09003370 free_email_alert(curproxy);
3371 cfgerr++;
3372 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02003373 else {
3374 err = NULL;
3375 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003376 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003377 free(err);
3378 cfgerr++;
3379 }
3380 }
Simon Horman9dc49962015-01-30 11:22:59 +09003381 }
3382
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003383 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01003384 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003385 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003386 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
3387 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003388 cfgerr++;
3389 goto out_uri_auth_compat;
3390 }
3391
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003392 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003393 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003394 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003395 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003396 struct act_rule *rule;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003397 i = 0;
3398
Willy Tarreau95fa4692010-02-01 13:05:50 +01003399 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
3400 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003401
3402 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003403 uri_auth_compat_req[i++] = "realm";
3404 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
3405 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003406
Willy Tarreau95fa4692010-02-01 13:05:50 +01003407 uri_auth_compat_req[i++] = "unless";
3408 uri_auth_compat_req[i++] = "{";
3409 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
3410 uri_auth_compat_req[i++] = "}";
3411 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003412
Willy Tarreauff011f22011-01-06 17:51:27 +01003413 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
3414 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003415 cfgerr++;
3416 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003417 }
3418
Willy Tarreau2b718102021-04-21 07:32:39 +02003419 LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01003420
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003421 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003422 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003423 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003424 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003425 }
3426out_uri_auth_compat:
3427
Dragan Dosen43885c72015-10-01 13:18:13 +02003428 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02003429 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02003430 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
3431 if (!curproxy->conf.logformat_sd_string) {
3432 /* set the default logformat_sd_string */
3433 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
3434 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003435 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02003436 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003437 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02003438
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003439 /* compile the log format */
3440 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02003441 if (curproxy->conf.logformat_string != default_http_log_format &&
3442 curproxy->conf.logformat_string != default_tcp_log_format &&
3443 curproxy->conf.logformat_string != clf_http_log_format)
3444 free(curproxy->conf.logformat_string);
3445 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003446 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02003447 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003448
3449 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3450 free(curproxy->conf.logformat_sd_string);
3451 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003452 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003453 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003454 }
3455
Willy Tarreau62a61232013-04-12 18:13:46 +02003456 if (curproxy->conf.logformat_string) {
3457 curproxy->conf.args.ctx = ARGC_LOG;
3458 curproxy->conf.args.file = curproxy->conf.lfs_file;
3459 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003460 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003461 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
3462 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003463 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003464 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3465 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003466 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003467 cfgerr++;
3468 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003469 curproxy->conf.args.file = NULL;
3470 curproxy->conf.args.line = 0;
3471 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003472
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003473 if (curproxy->conf.logformat_sd_string) {
3474 curproxy->conf.args.ctx = ARGC_LOGSD;
3475 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3476 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003477 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003478 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
3479 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003480 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003481 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3482 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003483 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003484 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003485 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003486 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3487 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003488 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003489 cfgerr++;
3490 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003491 curproxy->conf.args.file = NULL;
3492 curproxy->conf.args.line = 0;
3493 }
3494
Willy Tarreau62a61232013-04-12 18:13:46 +02003495 if (curproxy->conf.uniqueid_format_string) {
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003496 int where = 0;
3497
Willy Tarreau62a61232013-04-12 18:13:46 +02003498 curproxy->conf.args.ctx = ARGC_UIF;
3499 curproxy->conf.args.file = curproxy->conf.uif_file;
3500 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003501 err = NULL;
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003502 if (curproxy->cap & PR_CAP_FE)
3503 where |= SMP_VAL_FE_HRQ_HDR;
3504 if (curproxy->cap & PR_CAP_BE)
3505 where |= SMP_VAL_BE_HRQ_HDR;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003506 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003507 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES, where, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003508 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3509 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003510 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003511 cfgerr++;
3512 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003513 curproxy->conf.args.file = NULL;
3514 curproxy->conf.args.line = 0;
3515 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003516
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +02003517 if (curproxy->conf.error_logformat_string) {
3518 curproxy->conf.args.ctx = ARGC_LOG;
3519 curproxy->conf.args.file = curproxy->conf.elfs_file;
3520 curproxy->conf.args.line = curproxy->conf.elfs_line;
3521 err = NULL;
3522 if (!parse_logformat_string(curproxy->conf.error_logformat_string, curproxy, &curproxy->logformat_error,
3523 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
3524 SMP_VAL_FE_LOG_END, &err)) {
3525 ha_alert("Parsing [%s:%d]: failed to parse error-log-format : %s.\n",
3526 curproxy->conf.elfs_file, curproxy->conf.elfs_line, err);
3527 free(err);
3528 cfgerr++;
3529 }
3530 curproxy->conf.args.file = NULL;
3531 curproxy->conf.args.line = 0;
3532 }
3533
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +02003534 /* "balance hash" needs to compile its expression */
3535 if ((curproxy->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_SMP) {
3536 int idx = 0;
3537 const char *args[] = {
3538 curproxy->lbprm.arg_str,
3539 NULL,
3540 };
3541
3542 err = NULL;
3543 curproxy->conf.args.ctx = ARGC_USRV; // same context as use_server.
3544 curproxy->lbprm.expr =
3545 sample_parse_expr((char **)args, &idx,
3546 curproxy->conf.file, curproxy->conf.line,
3547 &err, &curproxy->conf.args, NULL);
3548
3549 if (!curproxy->lbprm.expr) {
3550 ha_alert("%s '%s' [%s:%d]: failed to parse 'balance hash' expression '%s' in : %s.\n",
3551 proxy_type_str(curproxy), curproxy->id,
3552 curproxy->conf.file, curproxy->conf.line,
3553 curproxy->lbprm.arg_str, err);
3554 ha_free(&err);
3555 cfgerr++;
3556 }
3557 else if (!(curproxy->lbprm.expr->fetch->val & SMP_VAL_BE_SET_SRV)) {
3558 ha_alert("%s '%s' [%s:%d]: error detected while parsing 'balance hash' expression '%s' "
3559 "which requires information from %s, which is not available here.\n",
3560 proxy_type_str(curproxy), curproxy->id,
3561 curproxy->conf.file, curproxy->conf.line,
3562 curproxy->lbprm.arg_str, sample_src_names(curproxy->lbprm.expr->fetch->use));
3563 cfgerr++;
3564 }
3565 else if (curproxy->mode == PR_MODE_HTTP && (curproxy->lbprm.expr->fetch->use & SMP_USE_L6REQ)) {
3566 ha_warning("%s '%s' [%s:%d]: L6 sample fetch <%s> will be ignored in 'balance hash' expression in HTTP mode.\n",
3567 proxy_type_str(curproxy), curproxy->id,
3568 curproxy->conf.file, curproxy->conf.line,
3569 curproxy->lbprm.arg_str);
3570 }
3571 else
3572 curproxy->http_needed |= !!(curproxy->lbprm.expr->fetch->use & SMP_USE_HTTP_ANY);
3573 }
3574
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003575 /* only now we can check if some args remain unresolved.
3576 * This must be done after the users and groups resolution.
3577 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01003578 err = NULL;
3579 i = smp_resolve_args(curproxy, &err);
3580 cfgerr += i;
3581 if (i) {
3582 indent_msg(&err, 8);
3583 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
3584 ha_free(&err);
3585 } else
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003586 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003587
William Lallemand2c04a5a2021-08-13 15:21:12 +02003588 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003589 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003590 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003591 (!curproxy->timeout.connect ||
3592 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003593 ha_warning("missing timeouts for %s '%s'.\n"
Christopher Faulet767a84b2017-11-24 16:50:31 +01003594 " | While not properly invalid, you will certainly encounter various problems\n"
3595 " | with such a configuration. To fix this, please ensure that all following\n"
3596 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3597 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003598 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003599 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003600
Willy Tarreau1fa31262007-12-03 00:36:16 +01003601 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3602 * We must still support older configurations, so let's find out whether those
3603 * parameters have been set or must be copied from contimeouts.
3604 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01003605 if (!curproxy->timeout.tarpit)
3606 curproxy->timeout.tarpit = curproxy->timeout.connect;
3607 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
3608 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003609
Christopher Faulete5870d82020-04-15 11:32:03 +02003610 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003611 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 +01003612 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003613 err_code |= ERR_WARN;
3614 }
3615
Willy Tarreau193b8c62012-11-22 00:17:38 +01003616 /* ensure that cookie capture length is not too large */
3617 if (curproxy->capture_len >= global.tune.cookie_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003618 ha_warning("truncating capture length to %d bytes for %s '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003619 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003620 err_code |= ERR_WARN;
3621 curproxy->capture_len = global.tune.cookie_len - 1;
3622 }
3623
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003624 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003625 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003626 curproxy->req_cap_pool = create_pool("ptrcap",
3627 curproxy->nb_req_cap * sizeof(char *),
3628 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003629 }
3630
3631 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003632 curproxy->rsp_cap_pool = create_pool("ptrcap",
3633 curproxy->nb_rsp_cap * sizeof(char *),
3634 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003635 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003636
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003637 switch (curproxy->load_server_state_from_file) {
3638 case PR_SRV_STATE_FILE_UNSPEC:
3639 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3640 break;
3641 case PR_SRV_STATE_FILE_GLOBAL:
3642 if (!global.server_state_file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003643 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 +01003644 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003645 err_code |= ERR_WARN;
3646 }
3647 break;
3648 }
3649
Willy Tarreaubaaee002006-06-26 02:48:02 +02003650 /* first, we will invert the servers list order */
3651 newsrv = NULL;
3652 while (curproxy->srv) {
3653 struct server *next;
3654
3655 next = curproxy->srv->next;
3656 curproxy->srv->next = newsrv;
3657 newsrv = curproxy->srv;
3658 if (!next)
3659 break;
3660 curproxy->srv = next;
3661 }
3662
Willy Tarreau17edc812014-01-03 12:14:34 +01003663 /* Check that no server name conflicts. This causes trouble in the stats.
3664 * We only emit a warning for the first conflict affecting each server,
3665 * in order to avoid combinatory explosion if all servers have the same
3666 * name. We do that only for servers which do not have an explicit ID,
3667 * because these IDs were made also for distinguishing them and we don't
3668 * want to annoy people who correctly manage them.
3669 */
3670 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3671 struct server *other_srv;
3672
3673 if (newsrv->puid)
3674 continue;
3675
3676 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3677 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003678 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 +01003679 newsrv->conf.file, newsrv->conf.line,
3680 proxy_type_str(curproxy), curproxy->id,
3681 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003682 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003683 break;
3684 }
3685 }
3686 }
3687
Willy Tarreaudd701652010-05-25 23:03:02 +02003688 /* assign automatic UIDs to servers which don't have one yet */
3689 next_id = 1;
3690 newsrv = curproxy->srv;
3691 while (newsrv != NULL) {
3692 if (!newsrv->puid) {
3693 /* server ID not set, use automatic numbering with first
3694 * spare entry starting with next_svid.
3695 */
3696 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3697 newsrv->conf.id.key = newsrv->puid = next_id;
3698 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
3699 }
Amaury Denoyelle077c6b82021-06-14 17:04:25 +02003700 newsrv->conf.name.key = newsrv->id;
3701 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
3702
Willy Tarreaudd701652010-05-25 23:03:02 +02003703 next_id++;
3704 newsrv = newsrv->next;
3705 }
3706
Willy Tarreau20697042007-11-15 23:26:18 +01003707 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003708 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003709
Willy Tarreau62c3be22012-01-20 13:12:32 +01003710 /*
3711 * If this server supports a maxconn parameter, it needs a dedicated
3712 * tasks to fill the emptied slots when a connection leaves.
3713 * Also, resolve deferred tracking dependency if needed.
3714 */
3715 newsrv = curproxy->srv;
3716 while (newsrv != NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003717 set_usermsgs_ctx(newsrv->conf.file, newsrv->conf.line, &newsrv->obj_type);
3718
Willy Tarreau62c3be22012-01-20 13:12:32 +01003719 if (newsrv->minconn > newsrv->maxconn) {
3720 /* Only 'minconn' was specified, or it was higher than or equal
3721 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3722 * this will avoid further useless expensive computations.
3723 */
3724 newsrv->maxconn = newsrv->minconn;
3725 } else if (newsrv->maxconn && !newsrv->minconn) {
3726 /* minconn was not specified, so we set it to maxconn */
3727 newsrv->minconn = newsrv->maxconn;
3728 }
3729
William Dauchyf6370442020-11-14 19:25:33 +01003730 /* this will also properly set the transport layer for
3731 * prod and checks
3732 * if default-server have use_ssl, prerare ssl init
3733 * without activating it */
3734 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
Christopher Faulet4ab26792021-12-01 09:50:41 +01003735 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3736 ((newsrv->flags & SRV_F_DEFSRV_USE_SSL) && newsrv->use_ssl != 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003737 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3738 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3739 }
Emeric Brun94324a42012-10-11 14:00:19 +02003740
Willy Tarreau034c88c2017-01-23 23:36:45 +01003741 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3742 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3743 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003744 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 +01003745
Willy Tarreau62c3be22012-01-20 13:12:32 +01003746 if (newsrv->trackit) {
Amaury Denoyelle669b6202021-07-13 10:35:23 +02003747 if (srv_apply_track(newsrv, curproxy)) {
3748 ++cfgerr;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003749 goto next_srv;
3750 }
Willy Tarreau62c3be22012-01-20 13:12:32 +01003751 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003752
Willy Tarreau62c3be22012-01-20 13:12:32 +01003753 next_srv:
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003754 reset_usermsgs_ctx();
Willy Tarreau62c3be22012-01-20 13:12:32 +01003755 newsrv = newsrv->next;
3756 }
3757
Olivier Houchard4e694042017-03-14 20:01:29 +01003758 /*
3759 * Try to generate dynamic cookies for servers now.
3760 * It couldn't be done earlier, since at the time we parsed
3761 * the server line, we may not have known yet that we
3762 * should use dynamic cookies, or the secret key may not
3763 * have been provided yet.
3764 */
3765 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3766 newsrv = curproxy->srv;
3767 while (newsrv != NULL) {
3768 srv_set_dyncookie(newsrv);
3769 newsrv = newsrv->next;
3770 }
3771
3772 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003773 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003774 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003775 */
3776
3777 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3778 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3779 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003780 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3781 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3782 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003783 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3784 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003785 if (chash_init_server_tree(curproxy) < 0) {
3786 cfgerr++;
3787 }
Willy Tarreau9757a382009-10-03 12:56:50 +02003788 } else {
3789 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3790 fwrr_init_server_groups(curproxy);
3791 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003792 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003793
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003794 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003795 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3796 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3797 fwlc_init_server_tree(curproxy);
3798 } else {
3799 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3800 fas_init_server_tree(curproxy);
3801 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003802 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003803
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003804 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003805 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3806 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003807 if (chash_init_server_tree(curproxy) < 0) {
3808 cfgerr++;
3809 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003810 } else {
3811 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3812 init_server_map(curproxy);
3813 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003814 break;
3815 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003816 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003817
3818 if (curproxy->options & PR_O_LOGASAP)
3819 curproxy->to_log &= ~LW_BYTES;
3820
William Lallemand2c04a5a2021-08-13 15:21:12 +02003821 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003822 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3823 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003824 ha_warning("log format ignored for %s '%s' since it has no log address.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003825 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003826 err_code |= ERR_WARN;
3827 }
3828
Christopher Faulet3b6446f2021-03-15 15:10:38 +01003829 if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) {
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003830 int optnum;
3831
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003832 if (curproxy->uri_auth) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003833 ha_warning("'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003834 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003835 err_code |= ERR_WARN;
3836 curproxy->uri_auth = NULL;
3837 }
3838
Willy Tarreaude7dc882017-03-10 11:49:21 +01003839 if (curproxy->capture_name) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003840 ha_warning("'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003841 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003842 err_code |= ERR_WARN;
3843 }
3844
3845 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003846 ha_warning("'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003847 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003848 err_code |= ERR_WARN;
3849 }
3850
3851 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003852 ha_warning("'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003853 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003854 err_code |= ERR_WARN;
3855 }
3856
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003857 if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003858 ha_warning("'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003859 proxy_type_str(curproxy), curproxy->id);
3860 err_code |= ERR_WARN;
3861 }
3862
Willy Tarreaude7dc882017-03-10 11:49:21 +01003863 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003864 ha_warning("'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003865 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003866 err_code |= ERR_WARN;
3867 }
3868
Willy Tarreau87cf5142011-08-19 22:57:24 +02003869 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003870 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003871 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003872 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003873 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003874 }
3875
3876 if (curproxy->options & PR_O_ORGTO) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003877 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003878 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003879 err_code |= ERR_WARN;
3880 curproxy->options &= ~PR_O_ORGTO;
3881 }
3882
3883 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3884 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3885 (curproxy->cap & cfg_opts[optnum].cap) &&
3886 (curproxy->options & cfg_opts[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003887 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003888 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003889 err_code |= ERR_WARN;
3890 curproxy->options &= ~cfg_opts[optnum].val;
3891 }
3892 }
3893
3894 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3895 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3896 (curproxy->cap & cfg_opts2[optnum].cap) &&
3897 (curproxy->options2 & cfg_opts2[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003898 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003899 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003900 err_code |= ERR_WARN;
3901 curproxy->options2 &= ~cfg_opts2[optnum].val;
3902 }
3903 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003904
Willy Tarreau29fbe512015-08-20 19:35:14 +02003905#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003906 if (curproxy->conn_src.bind_hdr_occ) {
3907 curproxy->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02003908 ha_warning("%s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003909 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003910 err_code |= ERR_WARN;
3911 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003912#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003913 }
3914
Willy Tarreaubaaee002006-06-26 02:48:02 +02003915 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003916 * ensure that we're not cross-dressing a TCP server into HTTP.
3917 */
3918 newsrv = curproxy->srv;
3919 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003920 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003921 ha_alert("%s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003922 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003923 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003924 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003925
Willy Tarreau0cec3312011-10-31 13:49:26 +01003926 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003927 ha_warning("%s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003928 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003929 err_code |= ERR_WARN;
3930 }
3931
Willy Tarreauc93cd162014-05-13 15:54:22 +02003932 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003933 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 +01003934 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003935 err_code |= ERR_WARN;
3936 }
3937
Willy Tarreau29fbe512015-08-20 19:35:14 +02003938#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003939 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3940 newsrv->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02003941 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 +01003942 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003943 err_code |= ERR_WARN;
3944 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003945#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003946
Willy Tarreau46deab62018-04-28 07:18:15 +02003947 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3948 curproxy->options &= ~PR_O_REUSE_MASK;
3949
Willy Tarreau21d2af32008-02-14 20:25:24 +01003950 newsrv = newsrv->next;
3951 }
3952
Christopher Fauletd7c91962015-04-30 11:48:27 +02003953 /* Check filter configuration, if any */
3954 cfgerr += flt_check(curproxy);
3955
Willy Tarreauc1a21672009-08-16 22:37:44 +02003956 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003957 if (!curproxy->accept)
3958 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003959
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003960 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
3961 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02003962 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003963
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003964 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003965 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003966 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003967 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003968
William Lallemandcf62f7e2018-10-26 14:47:40 +02003969 if (curproxy->mode == PR_MODE_CLI) {
3970 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3971 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3972 }
3973
Willy Tarreauc1a21672009-08-16 22:37:44 +02003974 /* both TCP and HTTP must check switching rules */
3975 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003976
3977 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003978 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003979 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3980 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 +02003981 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003982 }
3983
3984 if (curproxy->cap & PR_CAP_BE) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003985 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
3986 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02003987 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3988
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003989 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules) ||
3990 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_rep.inspect_rules)))
Emeric Brun97679e72010-09-23 17:56:44 +02003991 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3992
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003993 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003994 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003995 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003996 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003997
3998 /* If the backend does requires RDP cookie persistence, we have to
3999 * enable the corresponding analyser.
4000 */
4001 if (curproxy->options2 & PR_O2_RDPC_PRST)
4002 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02004003
4004 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01004005 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01004006 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
4007 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 +02004008 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004009 }
Christopher Fauleta717b992018-04-10 14:43:00 +02004010
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004011 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02004012 * attached to the current proxy */
4013 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
4014 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01004015 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02004016
Willy Tarreau730cc022022-05-20 18:07:06 +02004017 if (!bind_conf->mux_proto) {
4018 /* No protocol was specified. If we're using QUIC at the transport
4019 * layer, we'll instantiate it as a mux as well. If QUIC is not
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05004020 * compiled in, this will remain NULL.
Willy Tarreau730cc022022-05-20 18:07:06 +02004021 */
4022 if (bind_conf->xprt && bind_conf->xprt == xprt_get(XPRT_QUIC))
4023 bind_conf->mux_proto = get_mux_proto(ist("quic"));
4024 }
4025
Christopher Fauleta717b992018-04-10 14:43:00 +02004026 if (!bind_conf->mux_proto)
4027 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01004028
4029 /* it is possible that an incorrect mux was referenced
4030 * due to the proxy's mode not being taken into account
4031 * on first pass. Let's adjust it now.
4032 */
4033 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
4034
4035 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004036 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
Christopher Fauleta717b992018-04-10 14:43:00 +02004037 proxy_type_str(curproxy), curproxy->id,
4038 (int)bind_conf->mux_proto->token.len,
4039 bind_conf->mux_proto->token.ptr,
4040 bind_conf->arg, bind_conf->file, bind_conf->line);
4041 cfgerr++;
Willy Tarreaucac619b2022-05-20 17:53:32 +02004042 } else {
4043 if ((mux_ent->mux->flags & MX_FL_FRAMED) && !(bind_conf->options & BC_O_USE_SOCK_DGRAM)) {
4044 ha_alert("%s '%s' : frame-based MUX protocol '%.*s' is incompatible with stream transport of 'bind %s' at [%s:%d].\n",
4045 proxy_type_str(curproxy), curproxy->id,
4046 (int)bind_conf->mux_proto->token.len,
4047 bind_conf->mux_proto->token.ptr,
4048 bind_conf->arg, bind_conf->file, bind_conf->line);
4049 cfgerr++;
4050 }
4051 else if (!(mux_ent->mux->flags & MX_FL_FRAMED) && !(bind_conf->options & BC_O_USE_SOCK_STREAM)) {
4052 ha_alert("%s '%s' : stream-based MUX protocol '%.*s' is incompatible with framed transport of 'bind %s' at [%s:%d].\n",
4053 proxy_type_str(curproxy), curproxy->id,
4054 (int)bind_conf->mux_proto->token.len,
4055 bind_conf->mux_proto->token.ptr,
4056 bind_conf->arg, bind_conf->file, bind_conf->line);
4057 cfgerr++;
4058 }
Christopher Fauleta717b992018-04-10 14:43:00 +02004059 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01004060
4061 /* update the mux */
4062 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02004063 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004064 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
4065 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01004066 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004067
4068 if (!newsrv->mux_proto)
4069 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01004070
4071 /* it is possible that an incorrect mux was referenced
4072 * due to the proxy's mode not being taken into account
4073 * on first pass. Let's adjust it now.
4074 */
4075 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
4076
4077 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004078 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004079 proxy_type_str(curproxy), curproxy->id,
4080 (int)newsrv->mux_proto->token.len,
4081 newsrv->mux_proto->token.ptr,
4082 newsrv->id, newsrv->conf.file, newsrv->conf.line);
4083 cfgerr++;
4084 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01004085
4086 /* update the mux */
4087 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004088 }
Amaury Denoyellef2c27a52021-07-23 15:46:46 +02004089
4090 /* Allocate default tcp-check rules for proxies without
4091 * explicit rules.
4092 */
4093 if (curproxy->cap & PR_CAP_BE) {
4094 if (!(curproxy->options2 & PR_O2_CHK_ANY)) {
4095 struct tcpcheck_ruleset *rs = NULL;
4096 struct tcpcheck_rules *rules = &curproxy->tcpcheck_rules;
4097
4098 curproxy->options2 |= PR_O2_TCPCHK_CHK;
4099
4100 rs = find_tcpcheck_ruleset("*tcp-check");
4101 if (!rs) {
4102 rs = create_tcpcheck_ruleset("*tcp-check");
4103 if (rs == NULL) {
4104 ha_alert("config: %s '%s': out of memory.\n",
4105 proxy_type_str(curproxy), curproxy->id);
4106 cfgerr++;
4107 }
4108 }
4109
4110 free_tcpcheck_vars(&rules->preset_vars);
4111 rules->list = &rs->rules;
4112 rules->flags = 0;
4113 }
4114 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01004115 }
Willy Tarreau835daa12019-02-07 14:46:29 +01004116
Emeric Brun3b68b602022-08-18 15:53:21 +02004117 /*
4118 * We have just initialized the main proxies list
4119 * we must also configure the log-forward proxies list
4120 */
4121 if (init_proxies_list == proxies_list) {
4122 init_proxies_list = cfg_log_forward;
Emeric Brun8032a272022-08-22 10:25:11 +02004123 /* check if list is not null to avoid infinite loop */
4124 if (init_proxies_list)
4125 goto init_proxies_list_stage1;
Emeric Brun3b68b602022-08-18 15:53:21 +02004126 }
4127
Emeric Brund6e581d2022-09-13 16:16:30 +02004128 if (init_proxies_list == cfg_log_forward) {
4129 init_proxies_list = sink_proxies_list;
4130 /* check if list is not null to avoid infinite loop */
4131 if (init_proxies_list)
4132 goto init_proxies_list_stage1;
4133 }
4134
Willy Tarreau4cdac162021-03-05 10:48:42 +01004135 /***********************************************************/
4136 /* At this point, target names have already been resolved. */
4137 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01004138
Willy Tarreau4cdac162021-03-05 10:48:42 +01004139 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01004140
Willy Tarreau4cdac162021-03-05 10:48:42 +01004141 list_for_each_entry(newsrv, &servers_list, global_list) {
4142 /* initialize idle conns lists */
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004143 if (srv_init_per_thr(newsrv) == -1) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004144 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
4145 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01004146 cfgerr++;
4147 continue;
4148 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004149
Willy Tarreau4cdac162021-03-05 10:48:42 +01004150 if (newsrv->max_idle_conns != 0) {
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004151 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
4152 if (!newsrv->curr_idle_thr) {
4153 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
4154 newsrv->conf.file, newsrv->conf.line, newsrv->id);
4155 cfgerr++;
4156 continue;
4157 }
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02004158
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004159 }
4160 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004161
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004162 idle_conn_task = task_new_anywhere();
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004163 if (!idle_conn_task) {
4164 ha_alert("parsing : failed to allocate global idle connection task.\n");
4165 cfgerr++;
4166 }
4167 else {
4168 idle_conn_task->process = srv_cleanup_idle_conns;
4169 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004170
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004171 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004172 idle_conns[i].cleanup_task = task_new_on(i);
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004173 if (!idle_conns[i].cleanup_task) {
4174 ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i);
4175 cfgerr++;
4176 break;
Willy Tarreau4cdac162021-03-05 10:48:42 +01004177 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004178
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004179 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
4180 idle_conns[i].cleanup_task->context = NULL;
4181 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
4182 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Willy Tarreau835daa12019-02-07 14:46:29 +01004183 }
Willy Tarreau419ead82014-09-16 13:41:21 +02004184 }
4185
Willy Tarreau419ead82014-09-16 13:41:21 +02004186 /* perform the final checks before creating tasks */
4187
Emeric Brun3b68b602022-08-18 15:53:21 +02004188 /* starting to initialize the main proxies list */
4189 init_proxies_list = proxies_list;
4190
4191init_proxies_list_stage2:
4192 for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02004193 struct listener *listener;
4194 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02004195
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004196 /* Configure SSL for each bind line.
4197 * Note: if configuration fails at some point, the ->ctx member
4198 * remains NULL so that listeners can later detach.
4199 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004200 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01004201 if (bind_conf->xprt->prepare_bind_conf &&
4202 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004203 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004204 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004205
Willy Tarreaue6b98942007-10-29 01:09:36 +01004206 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004207 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02004208 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004209 if (!listener->luid) {
4210 /* listener ID not set, use automatic numbering with first
4211 * spare entry starting with next_luid.
4212 */
4213 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
4214 listener->conf.id.key = listener->luid = next_id;
4215 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004216 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01004217 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004218
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004219 /* enable separate counters */
4220 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01004221 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004222 if (!listener->name)
4223 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004224 }
Willy Tarreau81796be2012-09-22 19:11:47 +02004225
Willy Tarreaue6b98942007-10-29 01:09:36 +01004226 if (curproxy->options & PR_O_TCP_NOLING)
4227 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01004228 if (!listener->maxaccept)
Willy Tarreau66161322021-02-19 15:50:27 +01004229 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau16a21472012-11-19 12:39:59 +01004230
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01004231 /* listener accept callback */
4232 listener->accept = session_accept_fd;
4233#ifdef USE_QUIC
4234 /* override the accept callback for QUIC listeners. */
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01004235 if (listener->flags & LI_F_QUIC_LISTENER) {
Frédéric Lécaille372508c2022-05-06 08:53:16 +02004236 if (!global.cluster_secret)
4237 diag_no_cluster_secret = 1;
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01004238 listener->accept = quic_session_accept;
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01004239 li_init_per_thr(listener);
4240 }
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01004241#endif
Amaury Denoyelle57af0692022-01-18 15:39:02 +01004242
Willy Tarreauc1a21672009-08-16 22:37:44 +02004243 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01004244 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01004245
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02004246 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02004247 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02004248
Willy Tarreau620408f2016-10-21 16:37:51 +02004249 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
4250 listener->options |= LI_O_TCP_L5_RULES;
4251
Willy Tarreau9ea05a72009-06-14 12:07:01 +02004252 /* smart accept mode is automatic in HTTP mode */
4253 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau11ba4042022-05-20 15:56:32 +02004254 ((curproxy->mode == PR_MODE_HTTP || (listener->bind_conf->options & BC_O_USE_SSL)) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02004255 !(curproxy->no_options2 & PR_O2_SMARTACC)))
4256 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01004257 }
4258
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004259 /* Release unused SSL configs */
4260 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau11ba4042022-05-20 15:56:32 +02004261 if (!(bind_conf->options & BC_O_USE_SSL) && bind_conf->xprt->destroy_bind_conf)
Willy Tarreau795cdab2016-12-22 17:30:54 +01004262 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004263 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004264
Willy Tarreau918ff602011-07-25 16:33:49 +02004265 /* create the task associated with the proxy */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004266 curproxy->task = task_new_anywhere();
Willy Tarreau918ff602011-07-25 16:33:49 +02004267 if (curproxy->task) {
4268 curproxy->task->context = curproxy;
4269 curproxy->task->process = manage_proxy;
Christopher Faulet56717802021-10-13 10:10:09 +02004270 curproxy->flags |= PR_FL_READY;
Willy Tarreau918ff602011-07-25 16:33:49 +02004271 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004272 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
4273 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02004274 cfgerr++;
4275 }
Willy Tarreaub369a042014-09-16 13:21:03 +02004276 }
4277
Emeric Brun3b68b602022-08-18 15:53:21 +02004278 /*
4279 * We have just initialized the main proxies list
4280 * we must also configure the log-forward proxies list
4281 */
4282 if (init_proxies_list == proxies_list) {
4283 init_proxies_list = cfg_log_forward;
Emeric Brun8032a272022-08-22 10:25:11 +02004284 /* check if list is not null to avoid infinite loop */
4285 if (init_proxies_list)
4286 goto init_proxies_list_stage2;
Emeric Brun3b68b602022-08-18 15:53:21 +02004287 }
4288
Frédéric Lécaille372508c2022-05-06 08:53:16 +02004289 if (diag_no_cluster_secret)
Frédéric Lécaillead20a562022-05-16 16:51:41 +02004290 ha_diag_warning("No cluster secret was set. The stateless reset and Retry"
4291 " features are disabled for all QUIC bindings.\n");
Frédéric Lécaille372508c2022-05-06 08:53:16 +02004292
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004293 /*
4294 * Recount currently required checks.
4295 */
4296
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004297 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004298 int optnum;
4299
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004300 for (optnum = 0; cfg_opts[optnum].name; optnum++)
4301 if (curproxy->options & cfg_opts[optnum].val)
4302 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004303
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004304 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
4305 if (curproxy->options2 & cfg_opts2[optnum].val)
4306 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004307 }
4308
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004309 if (cfg_peers) {
4310 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02004311 struct peer *p, *pb;
4312
Willy Tarreau1e273012015-05-01 19:15:17 +02004313 /* Remove all peers sections which don't have a valid listener,
4314 * which are not used by any table, or which are bound to more
4315 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02004316 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004317 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02004318 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004319 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02004320 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004321
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02004322 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004323 /* the "disabled" keyword was present */
4324 if (curpeers->peers_fe)
4325 stop_proxy(curpeers->peers_fe);
4326 curpeers->peers_fe = NULL;
4327 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02004328 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004329 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
4330 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004331 if (curpeers->peers_fe)
4332 stop_proxy(curpeers->peers_fe);
4333 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004334 }
4335 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004336 /* Initializes the transport layer of the server part of all the peers belonging to
4337 * <curpeers> section if required.
4338 * Note that ->srv is used by the local peer of a new process to connect to the local peer
4339 * of an old process.
4340 */
Christopher Faulet56717802021-10-13 10:10:09 +02004341 curpeers->peers_fe->flags |= PR_FL_READY;
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004342 p = curpeers->remote;
4343 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004344 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004345 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 +01004346 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
4347 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004348 p = p->next;
4349 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004350 /* Configure the SSL bindings of the local peer if required. */
4351 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
4352 struct list *l;
4353 struct bind_conf *bind_conf;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004354 struct listener *li;
4355 unsigned long mask;
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004356
4357 l = &curpeers->peers_fe->conf.bind;
4358 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
Willy Tarreaud2494e02022-07-05 16:00:56 +02004359
Christopher Faulet1b6fa7f2022-07-26 19:03:51 +02004360 if (curpeers->local->srv) {
4361 if (curpeers->local->srv->use_ssl == 1 && !(bind_conf->options & BC_O_USE_SSL)) {
4362 ha_warning("Peers section '%s': local peer have a non-SSL listener and a SSL server configured at line %s:%d.\n",
4363 curpeers->peers_fe->id, curpeers->local->conf.file, curpeers->local->conf.line);
4364 }
4365 else if (curpeers->local->srv->use_ssl != 1 && (bind_conf->options & BC_O_USE_SSL)) {
4366 ha_warning("Peers section '%s': local peer have a SSL listener and a non-SSL server configured at line %s:%d.\n",
4367 curpeers->peers_fe->id, curpeers->local->conf.file, curpeers->local->conf.line);
4368 }
4369 }
4370
Willy Tarreaud2494e02022-07-05 16:00:56 +02004371 err = NULL;
4372 if (thread_resolve_group_mask(bind_conf->bind_tgroup, bind_conf->bind_thread,
4373 &bind_conf->bind_tgroup, &bind_conf->bind_thread, &err) < 0) {
4374 ha_alert("Peers section '%s': %s in 'bind %s' at [%s:%d].\n",
4375 curpeers->peers_fe->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
4376 free(err);
4377 cfgerr++;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004378 } else if (!((mask = bind_conf->bind_thread) & ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled)) {
Willy Tarreaud2494e02022-07-05 16:00:56 +02004379 unsigned long new_mask = 0;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004380 ulong thr_mask = ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004381
4382 while (mask) {
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004383 new_mask |= mask & thr_mask;
4384 mask >>= ha_tgroup_info[bind_conf->bind_tgroup-1].count;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004385 }
4386
4387 bind_conf->bind_thread = new_mask;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004388 ha_warning("Peers section '%s': the thread range specified on the 'thread' directive of 'bind %s' at [%s:%d] only refers to thread numbers out of the range supported by thread group %d (%d). The thread numbers were remapped to existing threads instead (mask 0x%lx).\n",
4389 curpeers->peers_fe->id, bind_conf->arg, bind_conf->file, bind_conf->line,
4390 bind_conf->bind_tgroup, ha_tgroup_info[bind_conf->bind_tgroup-1].count, new_mask);
Willy Tarreaud2494e02022-07-05 16:00:56 +02004391 }
4392
4393 /* apply thread masks and groups to all receivers */
4394 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
4395 li->rx.bind_thread = bind_conf->bind_thread;
4396 li->rx.bind_tgroup = bind_conf->bind_tgroup;
4397 }
4398
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004399 if (bind_conf->xprt->prepare_bind_conf &&
4400 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4401 cfgerr++;
4402 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004403 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004404 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4405 curpeers->id);
4406 cfgerr++;
4407 break;
4408 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004409 last = &curpeers->next;
4410 continue;
4411 }
4412
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004413 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004414 p = curpeers->remote;
4415 while (p) {
4416 pb = p->next;
4417 free(p->id);
4418 free(p);
4419 p = pb;
4420 }
4421
4422 /* Destroy and unlink this curpeers section.
4423 * Note: curpeers is backed up into *last.
4424 */
4425 free(curpeers->id);
4426 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004427 /* Reset any refereance to this peers section in the list of stick-tables */
4428 for (t = stktables_list; t; t = t->next) {
4429 if (t->peers.p && t->peers.p == *last)
4430 t->peers.p = NULL;
4431 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004432 free(*last);
4433 *last = curpeers;
4434 }
4435 }
4436
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004437 for (t = stktables_list; t; t = t->next) {
4438 if (t->proxy)
4439 continue;
4440 if (!stktable_init(t)) {
4441 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4442 cfgerr++;
4443 }
4444 }
4445
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004446 /* initialize stick-tables on backend capable proxies. This must not
4447 * be done earlier because the data size may be discovered while parsing
4448 * other proxies.
4449 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004450 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004451 if ((curproxy->flags & PR_FL_DISABLED) || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004452 continue;
4453
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004454 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004455 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004456 cfgerr++;
4457 }
4458 }
4459
Simon Horman0d16a402015-01-30 11:22:58 +09004460 if (mailers) {
4461 struct mailers *curmailers = mailers, **last;
4462 struct mailer *m, *mb;
4463
4464 /* Remove all mailers sections which don't have a valid listener.
4465 * This can happen when a mailers section is never referenced.
4466 */
4467 last = &mailers;
4468 while (*last) {
4469 curmailers = *last;
4470 if (curmailers->users) {
4471 last = &curmailers->next;
4472 continue;
4473 }
4474
Christopher Faulet767a84b2017-11-24 16:50:31 +01004475 ha_warning("Removing incomplete section 'mailers %s'.\n",
4476 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004477
4478 m = curmailers->mailer_list;
4479 while (m) {
4480 mb = m->next;
4481 free(m->id);
4482 free(m);
4483 m = mb;
4484 }
4485
4486 /* Destroy and unlink this curmailers section.
4487 * Note: curmailers is backed up into *last.
4488 */
4489 free(curmailers->id);
4490 curmailers = curmailers->next;
4491 free(*last);
4492 *last = curmailers;
4493 }
4494 }
4495
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004496 /* Update server_state_file_name to backend name if backend is supposed to use
4497 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004498 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004499 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4500 curproxy->server_state_file_name == NULL)
4501 curproxy->server_state_file_name = strdup(curproxy->id);
4502 }
4503
Emeric Brun750fe792020-12-23 16:51:12 +01004504 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06004505 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004506 ha_warning("resolvers '%s' [%s:%d] has no nameservers configured!\n",
Ben Draut054fbee2018-04-13 15:43:04 -06004507 curr_resolvers->id, curr_resolvers->conf.file,
4508 curr_resolvers->conf.line);
4509 err_code |= ERR_WARN;
4510 }
4511 }
4512
William Lallemand48b4bb42017-10-23 14:36:34 +02004513 list_for_each_entry(postparser, &postparsers, list) {
4514 if (postparser->func)
4515 cfgerr += postparser->func();
4516 }
4517
Willy Tarreaubb925012009-07-23 13:36:36 +02004518 if (cfgerr > 0)
4519 err_code |= ERR_ALERT | ERR_FATAL;
4520 out:
4521 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004522}
4523
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004524/*
4525 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4526 * parsing sessions.
4527 */
4528void cfg_register_keywords(struct cfg_kw_list *kwl)
4529{
Willy Tarreau2b718102021-04-21 07:32:39 +02004530 LIST_APPEND(&cfg_keywords.list, &kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004531}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004532
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004533/*
4534 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4535 */
4536void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4537{
Willy Tarreau2b718102021-04-21 07:32:39 +02004538 LIST_DELETE(&kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004539 LIST_INIT(&kwl->list);
4540}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004541
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004542/* this function register new section in the haproxy configuration file.
4543 * <section_name> is the name of this new section and <section_parser>
4544 * is the called parser. If two section declaration have the same name,
4545 * only the first declared is used.
4546 */
4547int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004548 int (*section_parser)(const char *, int, char **, int),
4549 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004550{
4551 struct cfg_section *cs;
4552
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004553 list_for_each_entry(cs, &sections, list) {
4554 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004555 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004556 return 0;
4557 }
4558 }
4559
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004560 cs = calloc(1, sizeof(*cs));
4561 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004562 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004563 return 0;
4564 }
4565
4566 cs->section_name = section_name;
4567 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004568 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004569
Willy Tarreau2b718102021-04-21 07:32:39 +02004570 LIST_APPEND(&sections, &cs->list);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004571
4572 return 1;
4573}
4574
William Lallemand48b4bb42017-10-23 14:36:34 +02004575/* this function register a new function which will be called once the haproxy
4576 * configuration file has been parsed. It's useful to check dependencies
4577 * between sections or to resolve items once everything is parsed.
4578 */
4579int cfg_register_postparser(char *name, int (*func)())
4580{
4581 struct cfg_postparser *cp;
4582
4583 cp = calloc(1, sizeof(*cp));
4584 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004585 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004586 return 0;
4587 }
4588 cp->name = name;
4589 cp->func = func;
4590
Willy Tarreau2b718102021-04-21 07:32:39 +02004591 LIST_APPEND(&postparsers, &cp->list);
William Lallemand48b4bb42017-10-23 14:36:34 +02004592
4593 return 1;
4594}
4595
Willy Tarreaubaaee002006-06-26 02:48:02 +02004596/*
David Carlier845efb52015-09-25 11:49:18 +01004597 * free all config section entries
4598 */
4599void cfg_unregister_sections(void)
4600{
4601 struct cfg_section *cs, *ics;
4602
4603 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004604 LIST_DELETE(&cs->list);
David Carlier845efb52015-09-25 11:49:18 +01004605 free(cs);
4606 }
4607}
4608
Christopher Faulet7110b402016-10-26 11:09:44 +02004609void cfg_backup_sections(struct list *backup_sections)
4610{
4611 struct cfg_section *cs, *ics;
4612
4613 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004614 LIST_DELETE(&cs->list);
4615 LIST_APPEND(backup_sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004616 }
4617}
4618
4619void cfg_restore_sections(struct list *backup_sections)
4620{
4621 struct cfg_section *cs, *ics;
4622
4623 list_for_each_entry_safe(cs, ics, backup_sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004624 LIST_DELETE(&cs->list);
4625 LIST_APPEND(&sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004626 }
4627}
4628
Willy Tarreauca1acd62022-03-29 15:02:44 +02004629/* dumps all registered keywords by section on stdout */
4630void cfg_dump_registered_keywords()
4631{
4632 const char* sect_names[] = { "", "global", "listen", "userlist", "peers", 0 };
4633 int section;
4634 int index;
4635
4636 for (section = 1; sect_names[section]; section++) {
4637 struct cfg_kw_list *kwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004638 const struct cfg_keyword *kwp, *kwn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004639
4640 printf("%s\n", sect_names[section]);
Willy Tarreaud9058262022-03-30 11:21:32 +02004641
4642 for (kwn = kwp = NULL;; kwp = kwn) {
4643 list_for_each_entry(kwl, &cfg_keywords.list, list) {
4644 for (index = 0; kwl->kw[index].kw != NULL; index++)
4645 if (kwl->kw[index].section == section &&
4646 strordered(kwp ? kwp->kw : NULL, kwl->kw[index].kw, kwn != kwp ? kwn->kw : NULL))
4647 kwn = &kwl->kw[index];
4648 }
4649 if (kwn == kwp)
4650 break;
4651 printf("\t%s\n", kwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004652 }
4653
4654 if (section == CFG_LISTEN) {
4655 /* there are plenty of other keywords there */
4656 extern struct list tcp_req_conn_keywords, tcp_req_sess_keywords,
4657 tcp_req_cont_keywords, tcp_res_cont_keywords;
4658 extern struct bind_kw_list bind_keywords;
4659 extern struct ssl_bind_kw ssl_bind_kws[] __maybe_unused;
4660 extern struct srv_kw_list srv_keywords;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004661 struct bind_kw_list *bkwl;
4662 struct srv_kw_list *skwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004663 const struct bind_kw *bkwp, *bkwn;
4664 const struct srv_kw *skwp, *skwn;
4665 const struct ssl_bind_kw *sbkwp __maybe_unused, *sbkwn __maybe_unused;
4666 const struct cfg_opt *coptp, *coptn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004667
Willy Tarreaud9058262022-03-30 11:21:32 +02004668 for (bkwn = bkwp = NULL;; bkwp = bkwn) {
4669 list_for_each_entry(bkwl, &bind_keywords.list, list) {
4670 for (index = 0; bkwl->kw[index].kw != NULL; index++)
4671 if (strordered(bkwp ? bkwp->kw : NULL,
4672 bkwl->kw[index].kw,
4673 bkwn != bkwp ? bkwn->kw : NULL))
4674 bkwn = &bkwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004675 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004676 if (bkwn == bkwp)
4677 break;
4678
4679 if (!bkwn->skip)
4680 printf("\tbind <addr> %s\n", bkwn->kw);
4681 else
4682 printf("\tbind <addr> %s +%d\n", bkwn->kw, bkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004683 }
4684
4685#if defined(USE_OPENSSL)
Willy Tarreaud9058262022-03-30 11:21:32 +02004686 for (sbkwn = sbkwp = NULL;; sbkwp = sbkwn) {
4687 for (index = 0; ssl_bind_kws[index].kw != NULL; index++) {
4688 if (strordered(sbkwp ? sbkwp->kw : NULL,
4689 ssl_bind_kws[index].kw,
4690 sbkwn != sbkwp ? sbkwn->kw : NULL))
4691 sbkwn = &ssl_bind_kws[index];
4692 }
4693 if (sbkwn == sbkwp)
4694 break;
4695 if (!sbkwn->skip)
4696 printf("\tbind <addr> ssl %s\n", sbkwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004697 else
Willy Tarreaud9058262022-03-30 11:21:32 +02004698 printf("\tbind <addr> ssl %s +%d\n", sbkwn->kw, sbkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004699 }
4700#endif
4701
Willy Tarreaud9058262022-03-30 11:21:32 +02004702 for (skwn = skwp = NULL;; skwp = skwn) {
4703 list_for_each_entry(skwl, &srv_keywords.list, list) {
4704 for (index = 0; skwl->kw[index].kw != NULL; index++)
4705 if (strordered(skwp ? skwp->kw : NULL,
4706 skwl->kw[index].kw,
4707 skwn != skwp ? skwn->kw : NULL))
4708 skwn = &skwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004709 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004710 if (skwn == skwp)
4711 break;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004712
Willy Tarreaud9058262022-03-30 11:21:32 +02004713 if (!skwn->skip)
4714 printf("\tserver <name> <addr> %s\n", skwn->kw);
4715 else
4716 printf("\tserver <name> <addr> %s +%d\n", skwn->kw, skwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004717 }
4718
Willy Tarreaud9058262022-03-30 11:21:32 +02004719 for (coptn = coptp = NULL;; coptp = coptn) {
4720 for (index = 0; cfg_opts[index].name; index++)
4721 if (strordered(coptp ? coptp->name : NULL,
4722 cfg_opts[index].name,
4723 coptn != coptp ? coptn->name : NULL))
4724 coptn = &cfg_opts[index];
4725
4726 for (index = 0; cfg_opts2[index].name; index++)
4727 if (strordered(coptp ? coptp->name : NULL,
4728 cfg_opts2[index].name,
4729 coptn != coptp ? coptn->name : NULL))
4730 coptn = &cfg_opts2[index];
4731 if (coptn == coptp)
4732 break;
4733
4734 printf("\toption %s [ ", coptn->name);
4735 if (coptn->cap & PR_CAP_FE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004736 printf("FE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004737 if (coptn->cap & PR_CAP_BE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004738 printf("BE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004739 if (coptn->mode == PR_MODE_HTTP)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004740 printf("HTTP ");
4741 printf("]\n");
4742 }
4743
Willy Tarreaud9058262022-03-30 11:21:32 +02004744 dump_act_rules(&tcp_req_conn_keywords, "\ttcp-request connection ");
4745 dump_act_rules(&tcp_req_sess_keywords, "\ttcp-request session ");
4746 dump_act_rules(&tcp_req_cont_keywords, "\ttcp-request content ");
4747 dump_act_rules(&tcp_res_cont_keywords, "\ttcp-response content ");
4748 dump_act_rules(&http_req_keywords.list, "\thttp-request ");
4749 dump_act_rules(&http_res_keywords.list, "\thttp-response ");
4750 dump_act_rules(&http_after_res_keywords.list, "\thttp-after-response ");
Willy Tarreauca1acd62022-03-29 15:02:44 +02004751 }
4752 }
4753}
4754
Willy Tarreaue6552512018-11-26 11:33:13 +01004755/* these are the config sections handled by default */
4756REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4757REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4758REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4759REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4760REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4761REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4762REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4763REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4764REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004765
Willy Tarreau8a022d52021-04-27 20:29:11 +02004766static struct cfg_kw_list cfg_kws = {{ },{
4767 { CFG_GLOBAL, "default-path", cfg_parse_global_def_path },
4768 { /* END */ }
4769}};
4770
4771INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4772
David Carlier845efb52015-09-25 11:49:18 +01004773/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004774 * Local variables:
4775 * c-indent-level: 8
4776 * c-basic-offset: 8
4777 * End:
4778 */