blob: 6f2d93a055fdb0657ea14e2d6e34e4d0cb748faf [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>
Willy Tarreaubaaee002006-06-26 02:48:02 +020092
93
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010094/* Used to chain configuration sections definitions. This list
95 * stores struct cfg_section
96 */
97struct list sections = LIST_HEAD_INIT(sections);
98
William Lallemand48b4bb42017-10-23 14:36:34 +020099struct list postparsers = LIST_HEAD_INIT(postparsers);
100
Eric Salama1b8dacc2021-03-16 15:12:17 +0100101extern struct proxy *mworker_proxy;
102
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100103char *cursection = NULL;
Willy Tarreauc8d5b952019-02-27 17:25:52 +0100104int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +0100105int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +0100106char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Christopher Faulet037e3f82022-11-18 15:46:06 +0100107int non_global_section_parsed = 0;
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;
Frédéric Lécaille36d15652022-10-17 14:58:19 +0200689 static int nb_shards = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200690 struct peer *newpeer = NULL;
691 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200692 struct bind_conf *bind_conf;
693 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200694 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100695 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100696 static int bind_line, peer_line;
697
698 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
699 int cur_arg;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100700 struct bind_conf *bind_conf;
Willy Tarreau55f0f7b2022-05-20 15:44:17 +0200701 int ret;
Emeric Brun32da3c42010-09-23 18:39:19 +0200702
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100703 cur_arg = 1;
704
Christopher Faulet244331f2022-07-25 15:10:44 +0200705 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200706 err_code |= ERR_ALERT | ERR_ABORT;
707 goto out;
708 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100709
710 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
Willy Tarreau8d158132022-07-05 15:54:09 +0200711 args[1], xprt_get(XPRT_RAW));
William Lallemand1d932172022-07-06 14:30:23 +0200712 if (!bind_conf) {
713 ha_alert("parsing [%s:%d] : '%s %s' : cannot allocate memory.\n", file, linenum, args[0], args[1]);
714 err_code |= ERR_FATAL;
715 goto out;
716 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100717 if (*args[0] == 'b') {
718 struct listener *l;
719
720 if (peer_line) {
721 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
722 err_code |= ERR_ALERT | ERR_FATAL;
723 goto out;
724 }
725
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200726 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
727 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);
728 err_code |= ERR_FATAL;
729 }
730
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100731 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
732 if (errmsg && *errmsg) {
733 indent_msg(&errmsg, 2);
734 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
735 }
736 else
737 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
Willy Tarreau0d044102022-05-20 15:19:48 +0200738 file, linenum, args[0], args[1], args[1]);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100739 err_code |= ERR_FATAL;
740 goto out;
741 }
Emeric Brunca825782022-05-25 10:25:45 +0200742 /*
743 * Newly allocated listener is at the end of the list
744 */
745 l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100746 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100747 l->accept = session_accept_fd;
748 l->analysers |= curpeers->peers_fe->fe_req_ana;
749 l->default_target = curpeers->peers_fe->default_target;
750 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100751 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100752
753 bind_line = 1;
754 if (cfg_peers->local) {
755 newpeer = cfg_peers->local;
756 }
757 else {
758 /* This peer is local.
759 * Note that we do not set the peer ID. This latter is initialized
760 * when parsing "peer" or "server" line.
761 */
762 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
763 if (!newpeer) {
764 err_code |= ERR_ALERT | ERR_ABORT;
765 goto out;
766 }
767 }
Willy Tarreau37159062020-08-27 07:48:42 +0200768 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200769 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100770 cur_arg++;
771 }
772
Willy Tarreau55f0f7b2022-05-20 15:44:17 +0200773 ret = bind_parse_args_list(bind_conf, args, cur_arg, cursection, file, linenum);
774 err_code |= ret;
775 if (ret != 0)
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100776 goto out;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100777 }
778 else if (strcmp(args[0], "default-server") == 0) {
Christopher Faulet244331f2022-07-25 15:10:44 +0200779 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100780 err_code |= ERR_ALERT | ERR_ABORT;
781 goto out;
782 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100783 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
784 SRV_PARSE_DEFAULT_SERVER|SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200785 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100786 else if (strcmp(args[0], "log") == 0) {
Christopher Faulet244331f2022-07-25 15:10:44 +0200787 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100788 err_code |= ERR_ALERT | ERR_ABORT;
789 goto out;
790 }
Emeric Brun9533a702021-04-02 10:13:43 +0200791 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), file, linenum, &errmsg)) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100792 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
793 err_code |= ERR_ALERT | ERR_FATAL;
794 goto out;
795 }
796 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200797 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100798 /* Initialize these static variables when entering a new "peers" section*/
799 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100800 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100801 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100802 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100803 goto out;
804 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200805
William Lallemand6e62fb62015-04-28 16:55:23 +0200806 if (alertif_too_many_args(1, file, linenum, args, &err_code))
807 goto out;
808
Emeric Brun32da3c42010-09-23 18:39:19 +0200809 err = invalid_char(args[1]);
810 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100811 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
812 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100813 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100814 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200815 }
816
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200817 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200818 /*
819 * If there are two proxies with the same name only following
820 * combinations are allowed:
821 */
822 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100823 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
824 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200825 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200826 }
827 }
828
Vincent Bernat02779b62016-04-03 13:48:43 +0200829 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100830 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200831 err_code |= ERR_ALERT | ERR_ABORT;
832 goto out;
833 }
834
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200835 curpeers->next = cfg_peers;
836 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200837 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200838 curpeers->conf.line = linenum;
839 curpeers->last_change = now.tv_sec;
840 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200841 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200842 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200843 else if (strcmp(args[0], "peer") == 0 ||
844 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100845 int local_peer, peer;
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100846 int parse_addr = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200847
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100848 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100849 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100850 /* The local peer may have already partially been parsed on a "bind" line. */
851 if (*args[0] == 'p') {
852 if (bind_line) {
853 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
854 err_code |= ERR_ALERT | ERR_FATAL;
855 goto out;
856 }
857 peer_line = 1;
858 }
859 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
860 /* The local peer has already been initialized on a "bind" line.
861 * Let's use it and store its ID.
862 */
863 newpeer = cfg_peers->local;
864 newpeer->id = strdup(localpeer);
865 }
866 else {
867 if (local_peer && cfg_peers->local) {
868 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
869 file, linenum, args[0], args[1],
870 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
871 err_code |= ERR_FATAL;
872 goto out;
873 }
874 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
875 if (!newpeer) {
876 err_code |= ERR_ALERT | ERR_ABORT;
877 goto out;
878 }
879 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200880
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100881 /* Line number and peer ID are updated only if this peer is the local one. */
882 if (init_peers_frontend(file,
883 newpeer->local ? linenum: -1,
Christopher Faulet244331f2022-07-25 15:10:44 +0200884 newpeer->local ? newpeer->id : NULL,
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100885 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200886 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100887 goto out;
888 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100889
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100890 /* This initializes curpeer->peers->peers_fe->srv.
891 * The server address is parsed only if we are parsing a "peer" line,
892 * or if we are parsing a "server" line and the current peer is not the local one.
893 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100894 parse_addr = (peer || !local_peer) ? SRV_PARSE_PARSE_ADDR : 0;
895 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
896 SRV_PARSE_IN_PEER_SECTION|parse_addr|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200897 if (!curpeers->peers_fe->srv) {
898 /* Remove the newly allocated peer. */
899 if (newpeer != curpeers->local) {
900 struct peer *p;
901
902 p = curpeers->remote;
903 curpeers->remote = curpeers->remote->next;
904 free(p->id);
905 free(p);
906 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200907 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200908 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200909
Frédéric Lécaille36d15652022-10-17 14:58:19 +0200910 if (nb_shards && curpeers->peers_fe->srv->shard > nb_shards) {
911 ha_warning("parsing [%s:%d] : '%s %s' : %d peer shard greater value than %d shards value is ignored.\n",
912 file, linenum, args[0], args[1], curpeers->peers_fe->srv->shard, nb_shards);
913 curpeers->peers_fe->srv->shard = 0;
914 err_code |= ERR_WARN;
915 }
916
Willy Tarreau824c8c52022-05-31 09:42:44 +0200917 if (curpeers->peers_fe->srv->init_addr_methods || curpeers->peers_fe->srv->resolvers_id ||
918 curpeers->peers_fe->srv->do_check || curpeers->peers_fe->srv->do_agent) {
919 ha_warning("parsing [%s:%d] : '%s %s' : init_addr, resolvers, check and agent are ignored for peers.\n", file, linenum, args[0], args[1]);
920 err_code |= ERR_WARN;
921 }
922
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100923 /* If the peer address has just been parsed, let's copy it to <newpeer>
924 * and initializes ->proto.
925 */
926 if (peer || !local_peer) {
927 newpeer->addr = curpeers->peers_fe->srv->addr;
Willy Tarreau14e7f292021-10-27 17:41:07 +0200928 newpeer->proto = protocol_lookup(newpeer->addr.ss_family, PROTO_TYPE_STREAM, 0);
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100929 }
930
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100931 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200932 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100933 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200934
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100935 newpeer->srv = curpeers->peers_fe->srv;
936 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200937 goto out;
938
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100939 /* The lines above are reserved to "peer" lines. */
940 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200941 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200942
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100943 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW));
William Lallemand1d932172022-07-06 14:30:23 +0200944 if (!bind_conf) {
945 ha_alert("parsing [%s:%d] : '%s %s' : Cannot allocate memory.\n", file, linenum, args[0], args[1]);
946 err_code |= ERR_FATAL;
947 goto out;
948 }
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100949
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200950 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
951 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);
952 err_code |= ERR_FATAL;
953 }
954
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100955 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
956 if (errmsg && *errmsg) {
957 indent_msg(&errmsg, 2);
958 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 +0100959 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100960 else
961 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
962 file, linenum, args[0], args[1], args[2]);
963 err_code |= ERR_FATAL;
964 goto out;
965 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100966
Emeric Brunca825782022-05-25 10:25:45 +0200967 /*
968 * Newly allocated listener is at the end of the list
969 */
970 l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100971 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100972 l->accept = session_accept_fd;
973 l->analysers |= curpeers->peers_fe->fe_req_ana;
974 l->default_target = curpeers->peers_fe->default_target;
975 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100976 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100977 }
Frédéric Lécaille36d15652022-10-17 14:58:19 +0200978 else if (strcmp(args[0], "shards") == 0) {
979 char *endptr;
980
981 if (!*args[1]) {
982 ha_alert("parsing [%s:%d] : '%s' : missing value\n", file, linenum, args[0]);
983 err_code |= ERR_FATAL;
984 goto out;
985 }
986
987 curpeers->nb_shards = strtol(args[1], &endptr, 10);
988 if (*endptr != '\0') {
989 ha_alert("parsing [%s:%d] : '%s' : expects an integer argument, found '%s'\n",
990 file, linenum, args[0], args[1]);
991 err_code |= ERR_FATAL;
992 goto out;
993 }
994
995 if (!curpeers->nb_shards) {
996 ha_alert("parsing [%s:%d] : '%s' : expects a strictly positive integer argument\n",
997 file, linenum, args[0]);
998 err_code |= ERR_FATAL;
999 goto out;
1000 }
1001
1002 nb_shards = curpeers->nb_shards;
1003 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001004 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001005 struct stktable *t, *other;
1006 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001007 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001008
1009 /* Line number and peer ID are updated only if this peer is the local one. */
Christopher Faulet244331f2022-07-25 15:10:44 +02001010 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001011 err_code |= ERR_ALERT | ERR_ABORT;
1012 goto out;
1013 }
1014
1015 other = stktable_find_by_name(args[1]);
1016 if (other) {
1017 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
1018 file, linenum, args[1],
1019 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
1020 other->proxy ? other->id : other->peers.p->id,
1021 other->conf.file, other->conf.line);
1022 err_code |= ERR_ALERT | ERR_FATAL;
1023 goto out;
1024 }
1025
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001026 /* Build the stick-table name, concatenating the "peers" section name
1027 * followed by a '/' character and the table name argument.
1028 */
1029 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001030 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001031 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
1032 file, linenum, args[0], args[1]);
1033 err_code |= ERR_ALERT | ERR_FATAL;
1034 goto out;
1035 }
1036
1037 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001038 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001039 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
1040 file, linenum, args[0], args[1]);
1041 err_code |= ERR_ALERT | ERR_FATAL;
1042 goto out;
1043 }
1044
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001045 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001046 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001047 if (!t || !id) {
1048 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
1049 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +02001050 free(t);
1051 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001052 err_code |= ERR_ALERT | ERR_FATAL;
1053 goto out;
1054 }
1055
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001056 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +02001057 if (err_code & ERR_FATAL) {
1058 free(t);
1059 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001060 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +02001061 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001062
1063 stktable_store_name(t);
1064 t->next = stktables_list;
1065 stktables_list = t;
1066 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001067 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001068 curpeers->disabled |= PR_FL_DISABLED;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001069 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001070 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02001071 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001072 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001073 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001074 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +02001075 err_code |= ERR_ALERT | ERR_FATAL;
1076 goto out;
1077 }
1078
1079out:
Willy Tarreau902636f2013-03-10 19:44:48 +01001080 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +02001081 return err_code;
1082}
1083
Baptiste Assmann325137d2015-04-13 23:40:55 +02001084/*
William Lallemand51097192015-04-14 16:35:22 +02001085 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001086 * Returns the error code, 0 if OK, or any combination of :
1087 * - ERR_ABORT: must abort ASAP
1088 * - ERR_FATAL: we can continue parsing but not start the service
1089 * - ERR_WARN: a warning has been emitted
1090 * - ERR_ALERT: an alert has been emitted
1091 * Only the two first ones can stop processing, the two others are just
1092 * indicators.
1093 */
1094int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1095{
1096 static struct mailers *curmailers = NULL;
1097 struct mailer *newmailer = NULL;
1098 const char *err;
1099 int err_code = 0;
1100 char *errmsg = NULL;
1101
1102 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1103 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001104 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001105 err_code |= ERR_ALERT | ERR_ABORT;
1106 goto out;
1107 }
1108
1109 err = invalid_char(args[1]);
1110 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001111 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1112 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001113 err_code |= ERR_ALERT | ERR_ABORT;
1114 goto out;
1115 }
1116
1117 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1118 /*
1119 * If there are two proxies with the same name only following
1120 * combinations are allowed:
1121 */
1122 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001123 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1124 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001125 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001126 }
1127 }
1128
Vincent Bernat02779b62016-04-03 13:48:43 +02001129 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001130 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001131 err_code |= ERR_ALERT | ERR_ABORT;
1132 goto out;
1133 }
1134
1135 curmailers->next = mailers;
1136 mailers = curmailers;
1137 curmailers->conf.file = strdup(file);
1138 curmailers->conf.line = linenum;
1139 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001140 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1141 * But need enough time so that timeouts don't occur
1142 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001143 }
1144 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1145 struct sockaddr_storage *sk;
1146 int port1, port2;
1147 struct protocol *proto;
1148
1149 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001150 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1151 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001152 err_code |= ERR_ALERT | ERR_FATAL;
1153 goto out;
1154 }
1155
1156 err = invalid_char(args[1]);
1157 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001158 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1159 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001160 err_code |= ERR_ALERT | ERR_FATAL;
1161 goto out;
1162 }
1163
Vincent Bernat02779b62016-04-03 13:48:43 +02001164 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001165 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001166 err_code |= ERR_ALERT | ERR_ABORT;
1167 goto out;
1168 }
1169
1170 /* the mailers are linked backwards first */
1171 curmailers->count++;
1172 newmailer->next = curmailers->mailer_list;
1173 curmailers->mailer_list = newmailer;
1174 newmailer->mailers = curmailers;
1175 newmailer->conf.file = strdup(file);
1176 newmailer->conf.line = linenum;
1177
1178 newmailer->id = strdup(args[1]);
1179
Willy Tarreau5fc93282020-09-16 18:25:03 +02001180 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001181 &errmsg, NULL, NULL,
1182 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 +09001183 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001184 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001185 err_code |= ERR_ALERT | ERR_FATAL;
1186 goto out;
1187 }
1188
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001189 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001190 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1191 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001192 err_code |= ERR_ALERT | ERR_FATAL;
1193 goto out;
1194 }
1195
Simon Horman0d16a402015-01-30 11:22:58 +09001196 newmailer->addr = *sk;
1197 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001198 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001199 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001200 }
1201 else if (strcmp(args[0], "timeout") == 0) {
1202 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001203 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1204 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001205 err_code |= ERR_ALERT | ERR_FATAL;
1206 goto out;
1207 }
1208 else if (strcmp(args[1], "mail") == 0) {
1209 const char *res;
1210 unsigned int timeout_mail;
1211 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001212 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1213 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001214 err_code |= ERR_ALERT | ERR_FATAL;
1215 goto out;
1216 }
1217 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001218 if (res == PARSE_TIME_OVER) {
1219 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1220 file, linenum, args[2], args[0], args[1]);
1221 err_code |= ERR_ALERT | ERR_FATAL;
1222 goto out;
1223 }
1224 else if (res == PARSE_TIME_UNDER) {
1225 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1226 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001227 err_code |= ERR_ALERT | ERR_FATAL;
1228 goto out;
1229 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001230 else if (res) {
1231 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1232 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001233 err_code |= ERR_ALERT | ERR_FATAL;
1234 goto out;
1235 }
1236 curmailers->timeout.mail = timeout_mail;
1237 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001238 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001239 file, linenum, args[0], args[1]);
1240 err_code |= ERR_ALERT | ERR_FATAL;
1241 goto out;
1242 }
1243 }
Simon Horman0d16a402015-01-30 11:22:58 +09001244 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001245 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001246 err_code |= ERR_ALERT | ERR_FATAL;
1247 goto out;
1248 }
1249
1250out:
1251 free(errmsg);
1252 return err_code;
1253}
1254
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001255void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001256{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001257 ha_free(&p->email_alert.mailers.name);
1258 ha_free(&p->email_alert.from);
1259 ha_free(&p->email_alert.to);
1260 ha_free(&p->email_alert.myhostname);
Simon Horman9dc49962015-01-30 11:22:59 +09001261}
1262
Willy Tarreaubaaee002006-06-26 02:48:02 +02001263
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001264int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001265cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1266{
Willy Tarreaue5733232019-05-22 19:24:06 +02001267#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001268 const char *err;
1269 const char *item = args[0];
1270
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001271 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001272 return 0;
1273 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001274 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001275 size_t idx = 1;
1276 const char *current;
1277 while (*(current = args[idx++])) {
1278 err = invalid_char(current);
1279 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001280 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1281 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001282 return ERR_ALERT | ERR_FATAL;
1283 }
1284
1285 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001286 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1287 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001288 return ERR_ALERT | ERR_FATAL;
1289 }
1290 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001291 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1292 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001293 return ERR_ALERT | ERR_FATAL;
1294 }
1295 }
1296 }
1297
1298 return 0;
1299#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001300 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1301 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001302 return ERR_ALERT | ERR_FATAL;
1303#endif
1304}
1305
1306int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001307cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1308{
1309
1310 int err_code = 0;
1311 const char *err;
1312
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001313 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001314 struct userlist *newul;
1315
1316 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001317 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1318 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001319 err_code |= ERR_ALERT | ERR_FATAL;
1320 goto out;
1321 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001322 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1323 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001324
1325 err = invalid_char(args[1]);
1326 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001327 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1328 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001329 err_code |= ERR_ALERT | ERR_FATAL;
1330 goto out;
1331 }
1332
1333 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001334 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001335 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1336 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001337 err_code |= ERR_WARN;
1338 goto out;
1339 }
1340
Vincent Bernat02779b62016-04-03 13:48:43 +02001341 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001342 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001343 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001344 err_code |= ERR_ALERT | ERR_ABORT;
1345 goto out;
1346 }
1347
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001348 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001349 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001350 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001351 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001352 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001353 goto out;
1354 }
1355
1356 newul->next = userlist;
1357 userlist = newul;
1358
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001359 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001360 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001361 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001362 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001363
1364 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001365 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1366 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001367 err_code |= ERR_ALERT | ERR_FATAL;
1368 goto out;
1369 }
1370
1371 err = invalid_char(args[1]);
1372 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001373 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1374 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001375 err_code |= ERR_ALERT | ERR_FATAL;
1376 goto out;
1377 }
1378
William Lallemand4ac9f542015-05-28 18:03:51 +02001379 if (!userlist)
1380 goto out;
1381
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001382 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001383 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001384 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1385 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001386 err_code |= ERR_ALERT;
1387 goto out;
1388 }
1389
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001390 ag = calloc(1, sizeof(*ag));
1391 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001392 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001393 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001394 goto out;
1395 }
1396
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001397 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001398 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001399 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001400 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001401 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001402 goto out;
1403 }
1404
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001405 cur_arg = 2;
1406
1407 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001408 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001409 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001410 cur_arg += 2;
1411 continue;
1412 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001413 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1414 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001415 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001416 free(ag->groupusers);
1417 free(ag->name);
1418 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001419 goto out;
1420 }
1421 }
1422
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001423 ag->next = userlist->groups;
1424 userlist->groups = ag;
1425
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001426 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001427 struct auth_users *newuser;
1428 int cur_arg;
1429
1430 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001431 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1432 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001433 err_code |= ERR_ALERT | ERR_FATAL;
1434 goto out;
1435 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001436 if (!userlist)
1437 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001438
1439 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001440 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001441 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1442 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001443 err_code |= ERR_ALERT;
1444 goto out;
1445 }
1446
Vincent Bernat02779b62016-04-03 13:48:43 +02001447 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001448 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001449 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001450 err_code |= ERR_ALERT | ERR_ABORT;
1451 goto out;
1452 }
1453
1454 newuser->user = strdup(args[1]);
1455
1456 newuser->next = userlist->users;
1457 userlist->users = newuser;
1458
1459 cur_arg = 2;
1460
1461 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001462 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001463#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001464 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001465 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1466 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001467 err_code |= ERR_ALERT | ERR_FATAL;
1468 goto out;
1469 }
1470#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001471 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1472 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001473 err_code |= ERR_ALERT;
1474#endif
1475 newuser->pass = strdup(args[cur_arg + 1]);
1476 cur_arg += 2;
1477 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001478 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001479 newuser->pass = strdup(args[cur_arg + 1]);
1480 newuser->flags |= AU_O_INSECURE;
1481 cur_arg += 2;
1482 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001483 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001484 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001485 cur_arg += 2;
1486 continue;
1487 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001488 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1489 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001490 err_code |= ERR_ALERT | ERR_FATAL;
1491 goto out;
1492 }
1493 }
1494 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001495 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 +01001496 err_code |= ERR_ALERT | ERR_FATAL;
1497 }
1498
1499out:
1500 return err_code;
1501}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001502
Christopher Faulet79bdef32016-11-04 22:36:15 +01001503int
1504cfg_parse_scope(const char *file, int linenum, char *line)
1505{
1506 char *beg, *end, *scope = NULL;
1507 int err_code = 0;
1508 const char *err;
1509
1510 beg = line + 1;
1511 end = strchr(beg, ']');
1512
1513 /* Detect end of scope declaration */
1514 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001515 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1516 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001517 err_code |= ERR_ALERT | ERR_FATAL;
1518 goto out;
1519 }
1520
1521 /* Get scope name and check its validity */
1522 scope = my_strndup(beg, end-beg);
1523 err = invalid_char(scope);
1524 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001525 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1526 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001527 err_code |= ERR_ALERT | ERR_ABORT;
1528 goto out;
1529 }
1530
1531 /* Be sure to have a scope declaration alone on its line */
1532 line = end+1;
1533 while (isspace((unsigned char)*line))
1534 line++;
1535 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001536 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1537 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001538 err_code |= ERR_ALERT | ERR_ABORT;
1539 goto out;
1540 }
1541
1542 /* We have a valid scope declaration, save it */
1543 free(cfg_scope);
1544 cfg_scope = scope;
1545 scope = NULL;
1546
1547 out:
1548 free(scope);
1549 return err_code;
1550}
1551
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001552int
1553cfg_parse_track_sc_num(unsigned int *track_sc_num,
1554 const char *arg, const char *end, char **errmsg)
1555{
1556 const char *p;
1557 unsigned int num;
1558
1559 p = arg;
1560 num = read_uint64(&arg, end);
1561
1562 if (arg != end) {
1563 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1564 return -1;
1565 }
1566
Willy Tarreau6c011712023-01-06 16:09:58 +01001567 if (num >= global.tune.nb_stk_ctr) {
1568 if (!global.tune.nb_stk_ctr)
1569 memprintf(errmsg, "%u track-sc number not usable, stick-counters "
1570 "are disabled by tune.stick-counters", num);
1571 else
1572 memprintf(errmsg, "%u track-sc number exceeding "
1573 "%d (tune.stick-counters-1) value", num, global.tune.nb_stk_ctr - 1);
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001574 return -1;
1575 }
1576
1577 *track_sc_num = num;
1578 return 0;
1579}
1580
Willy Tarreaubaaee002006-06-26 02:48:02 +02001581/*
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001582 * Detect a global section after a non-global one and output a diagnostic
1583 * warning.
1584 */
Christopher Faulet037e3f82022-11-18 15:46:06 +01001585static void check_section_position(char *section_name, const char *file, int linenum)
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001586{
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02001587 if (strcmp(section_name, "global") == 0) {
Christopher Faulet037e3f82022-11-18 15:46:06 +01001588 if ((global.mode & MODE_DIAG) && non_global_section_parsed == 1)
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001589 _ha_diag_warning("parsing [%s:%d] : global section detected after a non-global one, the prevalence of their statements is unspecified\n", file, linenum);
1590 }
Christopher Faulet037e3f82022-11-18 15:46:06 +01001591 else if (non_global_section_parsed == 0) {
1592 non_global_section_parsed = 1;
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001593 }
1594}
1595
Willy Tarreau8a022d52021-04-27 20:29:11 +02001596/* apply the current default_path setting for config file <file>, and
1597 * optionally replace the current path to <origin> if not NULL while the
1598 * default-path mode is set to "origin". Errors are returned into an
1599 * allocated string passed to <err> if it's not NULL. Returns 0 on failure
1600 * or non-zero on success.
1601 */
1602static int cfg_apply_default_path(const char *file, const char *origin, char **err)
1603{
1604 const char *beg, *end;
1605
1606 /* make path start at <beg> and end before <end>, and switch it to ""
1607 * if no slash was passed.
1608 */
1609 beg = file;
1610 end = strrchr(beg, '/');
1611 if (!end)
1612 end = beg;
1613
1614 if (!*initial_cwd) {
1615 if (getcwd(initial_cwd, sizeof(initial_cwd)) == NULL) {
1616 if (err)
1617 memprintf(err, "Impossible to retrieve startup directory name: %s", strerror(errno));
1618 return 0;
1619 }
1620 }
1621 else if (chdir(initial_cwd) == -1) {
1622 if (err)
1623 memprintf(err, "Impossible to get back to initial directory '%s': %s", initial_cwd, strerror(errno));
1624 return 0;
1625 }
1626
1627 /* OK now we're (back) to initial_cwd */
1628
1629 switch (default_path_mode) {
1630 case DEFAULT_PATH_CURRENT:
1631 /* current_cwd never set, nothing to do */
1632 return 1;
1633
1634 case DEFAULT_PATH_ORIGIN:
1635 /* current_cwd set in the config */
1636 if (origin &&
1637 snprintf(current_cwd, sizeof(current_cwd), "%s", origin) > sizeof(current_cwd)) {
1638 if (err)
1639 memprintf(err, "Absolute path too long: '%s'", origin);
1640 return 0;
1641 }
1642 break;
1643
1644 case DEFAULT_PATH_CONFIG:
1645 if (end - beg >= sizeof(current_cwd)) {
1646 if (err)
1647 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1648 return 0;
1649 }
1650 memcpy(current_cwd, beg, end - beg);
1651 current_cwd[end - beg] = 0;
1652 break;
1653
1654 case DEFAULT_PATH_PARENT:
1655 if (end - beg + 3 >= sizeof(current_cwd)) {
1656 if (err)
1657 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1658 return 0;
1659 }
1660 memcpy(current_cwd, beg, end - beg);
1661 if (end > beg)
1662 memcpy(current_cwd + (end - beg), "/..\0", 4);
1663 else
1664 memcpy(current_cwd + (end - beg), "..\0", 3);
1665 break;
1666 }
1667
1668 if (*current_cwd && chdir(current_cwd) == -1) {
1669 if (err)
1670 memprintf(err, "Impossible to get back to directory '%s': %s", initial_cwd, strerror(errno));
1671 return 0;
1672 }
1673
1674 return 1;
1675}
1676
1677/* parses a global "default-path" directive. */
1678static int cfg_parse_global_def_path(char **args, int section_type, struct proxy *curpx,
1679 const struct proxy *defpx, const char *file, int line,
1680 char **err)
1681{
1682 int ret = -1;
1683
1684 /* "current", "config", "parent", "origin <path>" */
1685
1686 if (strcmp(args[1], "current") == 0)
1687 default_path_mode = DEFAULT_PATH_CURRENT;
1688 else if (strcmp(args[1], "config") == 0)
1689 default_path_mode = DEFAULT_PATH_CONFIG;
1690 else if (strcmp(args[1], "parent") == 0)
1691 default_path_mode = DEFAULT_PATH_PARENT;
1692 else if (strcmp(args[1], "origin") == 0)
1693 default_path_mode = DEFAULT_PATH_ORIGIN;
1694 else {
1695 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]);
1696 goto end;
1697 }
1698
1699 if (default_path_mode == DEFAULT_PATH_ORIGIN) {
1700 if (!*args[2]) {
1701 memprintf(err, "'%s %s' expects a directory as an argument.", args[0], args[1]);
1702 goto end;
1703 }
1704 if (!cfg_apply_default_path(file, args[2], err)) {
1705 memprintf(err, "couldn't set '%s' to origin '%s': %s.", args[0], args[2], *err);
1706 goto end;
1707 }
1708 }
1709 else if (!cfg_apply_default_path(file, NULL, err)) {
1710 memprintf(err, "couldn't set '%s' to '%s': %s.", args[0], args[1], *err);
1711 goto end;
1712 }
1713
1714 /* note that once applied, the path is immediately updated */
1715
1716 ret = 0;
1717 end:
1718 return ret;
1719}
1720
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001721/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001722 * This function reads and parses the configuration file given in the argument.
Willy Tarreauda543e12021-04-27 18:30:28 +02001723 * Returns the error code, 0 if OK, -1 if the config file couldn't be opened,
1724 * or any combination of :
Willy Tarreau058e9072009-07-20 09:30:05 +02001725 * - ERR_ABORT: must abort ASAP
1726 * - ERR_FATAL: we can continue parsing but not start the service
1727 * - ERR_WARN: a warning has been emitted
1728 * - ERR_ALERT: an alert has been emitted
1729 * Only the two first ones can stop processing, the two others are just
1730 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001731 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001732int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001733{
Willy Tarreauda543e12021-04-27 18:30:28 +02001734 char *thisline = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001735 int linesize = LINESIZE;
Willy Tarreauda543e12021-04-27 18:30:28 +02001736 FILE *f = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001737 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001738 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001739 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001740 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001741 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001742 char *outline = NULL;
1743 size_t outlen = 0;
1744 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001745 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001746 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001747 int nested_cond_lvl = 0;
1748 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
Willy Tarreau8a022d52021-04-27 20:29:11 +02001749 char *errmsg = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001750
Willy Tarreau51508052021-05-06 10:04:45 +02001751 global.cfg_curr_line = 0;
1752 global.cfg_curr_file = file;
1753
William Lallemand64e84512015-05-12 14:25:37 +02001754 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Willy Tarreauda543e12021-04-27 18:30:28 +02001755 ha_alert("Out of memory trying to allocate a buffer for a configuration line.\n");
1756 err_code = -1;
1757 goto err;
William Lallemand64e84512015-05-12 14:25:37 +02001758 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001759
Willy Tarreauda543e12021-04-27 18:30:28 +02001760 if ((f = fopen(file,"r")) == NULL) {
1761 err_code = -1;
1762 goto err;
David Carlier97880bb2016-04-08 10:35:26 +01001763 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001764
Willy Tarreau8a022d52021-04-27 20:29:11 +02001765 /* change to the new dir if required */
1766 if (!cfg_apply_default_path(file, NULL, &errmsg)) {
1767 ha_alert("parsing [%s:%d]: failed to apply default-path: %s.\n", file, linenum, errmsg);
1768 free(errmsg);
1769 err_code = -1;
1770 goto err;
1771 }
1772
William Lallemandb2f07452015-05-12 14:27:13 +02001773next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001774 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001775 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001776 char *end;
1777 char *args[MAX_LINE_ARGS + 1];
1778 char *line = thisline;
1779
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001780 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001781 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1782 file, linenum, (missing_lf + 1));
1783 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001784 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001785 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001786 }
1787
Willy Tarreaubaaee002006-06-26 02:48:02 +02001788 linenum++;
Willy Tarreau51508052021-05-06 10:04:45 +02001789 global.cfg_curr_line = linenum;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001790
Willy Tarreau32234e72020-06-16 17:14:33 +02001791 if (fatal >= 50) {
1792 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1793 break;
1794 }
1795
Willy Tarreaubaaee002006-06-26 02:48:02 +02001796 end = line + strlen(line);
1797
William Lallemand64e84512015-05-12 14:25:37 +02001798 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001799 /* Check if we reached the limit and the last char is not \n.
1800 * Watch out for the last line without the terminating '\n'!
1801 */
William Lallemand64e84512015-05-12 14:25:37 +02001802 char *newline;
1803 int newlinesize = linesize * 2;
1804
1805 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1806 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001807 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1808 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001809 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001810 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001811 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001812 continue;
1813 }
1814
1815 readbytes = linesize - 1;
1816 linesize = newlinesize;
1817 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001818 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001819 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001820 }
1821
William Lallemand64e84512015-05-12 14:25:37 +02001822 readbytes = 0;
1823
Willy Tarreau08488f62020-06-26 17:24:54 +02001824 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001825 /* kill trailing LF */
1826 *(end - 1) = 0;
1827 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001828 else {
1829 /* mark this line as truncated */
1830 missing_lf = end - line;
1831 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001832
Willy Tarreaubaaee002006-06-26 02:48:02 +02001833 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001834 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001835 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001836
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001837 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001838 err_code |= cfg_parse_scope(file, linenum, line);
1839 goto next_line;
1840 }
1841
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001842 while (1) {
1843 uint32_t err;
Maximilian Mader29c6cd72021-06-06 00:50:21 +02001844 const char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001845
Tim Duesterhusb3168b32021-06-06 00:50:20 +02001846 arg = sizeof(args) / sizeof(*args);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001847 outlen = outlinesize;
1848 err = parse_line(line, outline, &outlen, args, &arg,
1849 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001850 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1851 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001852
1853 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001854 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1855
1856 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1857 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001858 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001859 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001860 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001861 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001862
1863 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001864 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1865
1866 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1867 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001868 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001869 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001870 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001871 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001872
1873 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001874 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1875
1876 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1877 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001878 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001879 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001880 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001881 }
William Lallemandb2f07452015-05-12 14:27:13 +02001882
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001883 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001884 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1885
1886 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1887 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001888 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001889 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001890 goto next_line;
1891 }
William Lallemandb2f07452015-05-12 14:27:13 +02001892
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001893 if (err & PARSE_ERR_WRONG_EXPAND) {
1894 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1895
1896 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1897 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1898 err_code |= ERR_ALERT | ERR_FATAL;
1899 fatal++;
1900 goto next_line;
1901 }
1902
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001903 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1904 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001905 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001906 if (outline == NULL) {
1907 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1908 file, linenum);
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001909 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau32234e72020-06-16 17:14:33 +02001910 fatal++;
Christopher Fauletdfe32c72022-05-18 16:22:43 +02001911 outlinesize = 0;
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001912 goto err;
William Lallemandb2f07452015-05-12 14:27:13 +02001913 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001914 /* try again */
1915 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001916 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001917
1918 if (err & PARSE_ERR_TOOMANY) {
1919 /* only check this *after* being sure the output is allocated */
1920 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1921 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1922 err_code |= ERR_ALERT | ERR_FATAL;
1923 fatal++;
1924 goto next_line;
1925 }
1926
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001927 /* everything's OK */
1928 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001929 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001930
Erwan Le Goasb0c05012022-09-14 17:51:55 +02001931 /* dump cfg */
1932 if (global.mode & MODE_DUMP_CFG) {
1933 if (args[0] != NULL) {
1934 struct cfg_section *sect;
1935 int is_sect = 0;
1936 int i = 0;
1937 uint32_t g_key = HA_ATOMIC_LOAD(&global.anon_key);
1938
Erwan Le Goasf30c5d72022-09-29 10:34:04 +02001939 if (global.mode & MODE_DUMP_NB_L)
1940 qfprintf(stdout, "%d\t", linenum);
Erwan Le Goasb0c05012022-09-14 17:51:55 +02001941
1942 /* if a word is in sections list, is_sect = 1 */
1943 list_for_each_entry(sect, &sections, list) {
1944 if (strcmp(args[0], sect->section_name) == 0) {
1945 is_sect = 1;
1946 break;
1947 }
1948 }
1949
1950 if (g_key == 0) {
1951 /* no anonymizing needed, dump the config as-is (but without comments).
1952 * Note: tabs were lost during tokenizing, so we reinsert for non-section
1953 * keywords.
1954 */
1955 if (!is_sect)
1956 qfprintf(stdout, "\t");
1957
1958 for (i = 0; i < arg; i++) {
1959 qfprintf(stdout, "%s ", args[i]);
1960 }
1961 qfprintf(stdout, "\n");
1962 continue;
1963 }
1964
1965 /* We're anonymizing */
1966
1967 if (is_sect) {
1968 /* new sections are optionally followed by an identifier */
1969 if (arg >= 2) {
1970 qfprintf(stdout, "%s %s\n", args[0], HA_ANON_ID(g_key, args[1]));
1971 }
1972 else {
1973 qfprintf(stdout, "%s\n", args[0]);
1974 }
1975 continue;
1976 }
1977
1978 /* non-section keywords start indented */
1979 qfprintf(stdout, "\t");
1980
1981 /* some keywords deserve special treatment */
1982 if (!*args[0]) {
1983 qfprintf(stdout, "\n");
1984 }
1985
1986 else if (strcmp(args[0], "anonkey") == 0) {
1987 qfprintf(stdout, "%s [...]\n", args[0]);
1988 }
1989
1990 else if (strcmp(args[0], "maxconn") == 0) {
1991 qfprintf(stdout, "%s %s\n", args[0], args[1]);
1992 }
1993
1994 else if (strcmp(args[0], "stats") == 0 &&
1995 (strcmp(args[1], "timeout") == 0 || strcmp(args[1], "maxconn") == 0)) {
1996 qfprintf(stdout, "%s %s %s\n", args[0], args[1], args[2]);
1997 }
1998
1999 else if (strcmp(args[0], "stats") == 0 && strcmp(args[1], "socket") == 0) {
2000 qfprintf(stdout, "%s %s ", args[0], args[1]);
2001
Erwan Le Goasbe5ed922022-09-29 10:30:00 +02002002 if (arg > 2) {
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002003 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[2], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002004
Erwan Le Goasbe5ed922022-09-29 10:30:00 +02002005 if (arg > 3) {
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002006 qfprintf(stdout, "[...]\n");
2007 }
2008 else {
2009 qfprintf(stdout, "\n");
2010 }
2011 }
2012 else {
2013 qfprintf(stdout, "\n");
2014 }
2015 }
2016
2017 else if (strcmp(args[0], "timeout") == 0) {
2018 qfprintf(stdout, "%s %s %s\n", args[0], args[1], args[2]);
2019 }
2020
2021 else if (strcmp(args[0], "mode") == 0) {
2022 qfprintf(stdout, "%s %s\n", args[0], args[1]);
2023 }
2024
Ilya Shipitsin4a689da2022-10-29 09:34:32 +05002025 /* It concerns user in global section and in userlist */
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002026 else if (strcmp(args[0], "user") == 0) {
2027 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
2028
2029 if (arg > 2) {
2030 qfprintf(stdout, "[...]\n");
2031 }
2032 else {
2033 qfprintf(stdout, "\n");
2034 }
2035 }
2036
2037 else if (strcmp(args[0], "bind") == 0) {
2038 qfprintf(stdout, "%s ", args[0]);
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002039 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[1], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002040 if (arg > 2) {
2041 qfprintf(stdout, "[...]\n");
2042 }
2043 else {
2044 qfprintf(stdout, "\n");
2045 }
2046 }
2047
2048 else if (strcmp(args[0], "server") == 0) {
Erwan Le Goas059d05f2022-09-29 10:31:18 +02002049 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002050
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002051 if (arg > 2) {
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002052 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[2], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002053 }
2054 if (arg > 3) {
2055 qfprintf(stdout, "[...]\n");
2056 }
2057 else {
2058 qfprintf(stdout, "\n");
2059 }
2060 }
2061
2062 else if (strcmp(args[0], "redirect") == 0) {
2063 qfprintf(stdout, "%s %s ", args[0], args[1]);
2064
2065 if (strcmp(args[1], "prefix") == 0 || strcmp(args[1], "location") == 0) {
2066 qfprintf(stdout, "%s ", HA_ANON_PATH(g_key, args[2]));
2067 }
2068 else {
2069 qfprintf(stdout, "%s ", args[2]);
2070 }
2071 if (arg > 3) {
2072 qfprintf(stdout, "[...]");
2073 }
2074 qfprintf(stdout, "\n");
2075 }
2076
2077 else if (strcmp(args[0], "acl") == 0) {
2078 qfprintf(stdout, "%s %s %s ", args[0], HA_ANON_ID(g_key, args[1]), args[2]);
2079
2080 if (arg > 3) {
2081 qfprintf(stdout, "[...]");
2082 }
2083 qfprintf(stdout, "\n");
2084 }
2085
2086 else if (strcmp(args[0], "log") == 0) {
2087 qfprintf(stdout, "log ");
2088
2089 if (strcmp(args[1], "global") == 0) {
2090 qfprintf(stdout, "%s ", args[1]);
2091 }
2092 else {
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002093 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[1], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002094 }
2095 if (arg > 2) {
2096 qfprintf(stdout, "[...]");
2097 }
2098 qfprintf(stdout, "\n");
2099 }
2100
2101 else if (strcmp(args[0], "peer") == 0) {
2102 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002103 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[2], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002104
2105 if (arg > 3) {
2106 qfprintf(stdout, "[...]");
2107 }
2108 qfprintf(stdout, "\n");
2109 }
2110
2111 else if (strcmp(args[0], "use_backend") == 0) {
2112 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
2113
2114 if (arg > 2) {
2115 qfprintf(stdout, "[...]");
2116 }
2117 qfprintf(stdout, "\n");
2118 }
2119
2120 else if (strcmp(args[0], "default_backend") == 0) {
2121 qfprintf(stdout, "%s %s\n", args[0], HA_ANON_ID(g_key, args[1]));
2122 }
2123
Erwan Le Goas059d05f2022-09-29 10:31:18 +02002124 else if (strcmp(args[0], "source") == 0) {
2125 qfprintf(stdout, "%s %s ", args[0], hash_ipanon(g_key, args[1], 1));
2126
2127 if (arg > 2) {
2128 qfprintf(stdout, "[...]");
2129 }
2130 qfprintf(stdout, "\n");
2131 }
2132
2133 else if (strcmp(args[0], "nameserver") == 0) {
2134 qfprintf(stdout, "%s %s %s ", args[0],
2135 HA_ANON_ID(g_key, args[1]), hash_ipanon(g_key, args[2], 1));
2136 if (arg > 3) {
2137 qfprintf(stdout, "[...]");
2138 }
2139 qfprintf(stdout, "\n");
2140 }
2141
2142 else if (strcmp(args[0], "http-request") == 0) {
2143 qfprintf(stdout, "%s %s ", args[0], args[1]);
2144 if (arg > 2)
2145 qfprintf(stdout, "[...]");
2146 qfprintf(stdout, "\n");
2147 }
2148
2149 else if (strcmp(args[0], "http-response") == 0) {
2150 qfprintf(stdout, "%s %s ", args[0], args[1]);
2151 if (arg > 2)
2152 qfprintf(stdout, "[...]");
2153 qfprintf(stdout, "\n");
2154 }
2155
2156 else if (strcmp(args[0], "http-after-response") == 0) {
2157 qfprintf(stdout, "%s %s ", args[0], args[1]);
2158 if (arg > 2)
2159 qfprintf(stdout, "[...]");
2160 qfprintf(stdout, "\n");
2161 }
2162
2163 else if (strcmp(args[0], "filter") == 0) {
2164 qfprintf(stdout, "%s %s ", args[0], args[1]);
2165 if (arg > 2)
2166 qfprintf(stdout, "[...]");
2167 qfprintf(stdout, "\n");
2168 }
2169
2170 else if (strcmp(args[0], "errorfile") == 0) {
2171 qfprintf(stdout, "%s %s %s\n", args[0], args[1], HA_ANON_PATH(g_key, args[2]));
2172 }
2173
2174 else if (strcmp(args[0], "cookie") == 0) {
2175 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
2176 if (arg > 2)
2177 qfprintf(stdout, "%s ", args[2]);
2178 if (arg > 3)
2179 qfprintf(stdout, "[...]");
2180 qfprintf(stdout, "\n");
2181 }
2182
2183 else if (strcmp(args[0], "stats") == 0 && strcmp(args[1], "auth") == 0) {
2184 qfprintf(stdout, "%s %s %s\n", args[0], args[1], HA_ANON_STR(g_key, args[2]));
2185 }
2186
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002187 else {
2188 /* display up to 3 words and mask the rest which might be confidential */
2189 for (i = 0; i < MIN(arg, 3); i++) {
2190 qfprintf(stdout, "%s ", args[i]);
2191 }
2192 if (arg > 3) {
2193 qfprintf(stdout, "[...]");
2194 }
2195 qfprintf(stdout, "\n");
2196 }
2197 }
2198 continue;
2199 }
2200 /* end of config dump */
2201
Willy Tarreaubaaee002006-06-26 02:48:02 +02002202 /* empty line */
2203 if (!**args)
2204 continue;
2205
Willy Tarreau4b103022021-02-12 17:59:10 +01002206 /* check for config macros */
2207 if (*args[0] == '.') {
2208 if (strcmp(args[0], ".if") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002209 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002210 char *errmsg = NULL;
2211 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02002212 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002213
Willy Tarreauc8194c32021-07-16 16:38:58 +02002214 /* remerge all words into a single expression */
2215 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
2216 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002217
Willy Tarreau4b103022021-02-12 17:59:10 +01002218 nested_cond_lvl++;
2219 if (nested_cond_lvl >= MAXNESTEDCONDS) {
2220 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
2221 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2222 goto err;
2223 }
2224
Willy Tarreau6e647c92021-05-06 08:46:11 +02002225 if (nested_cond_lvl > 1 &&
2226 (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
2227 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
2228 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
2229 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
2230 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP)) {
Willy Tarreau4b103022021-02-12 17:59:10 +01002231 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002232 goto next_line;
2233 }
2234
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002235 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002236 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002237 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 76);
2238
2239 ha_alert("parsing [%s:%d]: %s in '.if' at position %d:\n .if %s\n %*s\n",
2240 file, linenum, errmsg,
2241 (int)(errptr-args[1]+1), args[1], (int)(newpos+5), "^");
2242
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002243 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01002244 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2245 goto err;
2246 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002247
2248 if (cond)
2249 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
2250 else
2251 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
2252
Willy Tarreau4b103022021-02-12 17:59:10 +01002253 goto next_line;
2254 }
2255 else if (strcmp(args[0], ".elif") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002256 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002257 char *errmsg = NULL;
2258 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02002259 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002260
Willy Tarreauc8194c32021-07-16 16:38:58 +02002261 /* remerge all words into a single expression */
2262 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
2263 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002264
Willy Tarreau4b103022021-02-12 17:59:10 +01002265 if (!nested_cond_lvl) {
2266 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
2267 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2268 goto err;
2269 }
2270
2271 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2272 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2273 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
2274 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2275 goto err;
2276 }
2277
2278 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2279 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
Willy Tarreauf67ff022021-05-06 08:48:09 +02002280 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
Willy Tarreau4b103022021-02-12 17:59:10 +01002281 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2282 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002283 goto next_line;
2284 }
2285
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002286 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002287 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002288 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 74);
2289
2290 ha_alert("parsing [%s:%d]: %s in '.elif' at position %d:\n .elif %s\n %*s\n",
2291 file, linenum, errmsg,
2292 (int)(errptr-args[1]+1), args[1], (int)(newpos+7), "^");
2293
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002294 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01002295 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2296 goto err;
2297 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002298
2299 if (cond)
2300 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
2301 else
2302 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
2303
Willy Tarreau4b103022021-02-12 17:59:10 +01002304 goto next_line;
2305 }
2306 else if (strcmp(args[0], ".else") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002307 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002308 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002309 file, linenum, args[1], args[0]);
2310 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2311 break;
2312 }
2313
Willy Tarreau4b103022021-02-12 17:59:10 +01002314 if (!nested_cond_lvl) {
2315 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
2316 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2317 goto err;
2318 }
2319
2320 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2321 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2322 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
2323 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2324 goto err;
2325 }
2326
2327 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2328 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2329 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
2330 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2331 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
2332 } else {
2333 /* otherwise we take the "else" */
2334 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
2335 }
2336 goto next_line;
2337 }
2338 else if (strcmp(args[0], ".endif") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002339 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002340 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002341 file, linenum, args[1], args[0]);
2342 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2343 break;
2344 }
2345
Willy Tarreau4b103022021-02-12 17:59:10 +01002346 if (!nested_cond_lvl) {
2347 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002348 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau4b103022021-02-12 17:59:10 +01002349 break;
2350 }
2351 nested_cond_lvl--;
2352 goto next_line;
2353 }
2354 }
2355
2356 if (nested_cond_lvl &&
2357 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
2358 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2359 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
2360 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
2361 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
2362 /* The current block is masked out by the conditions */
2363 goto next_line;
2364 }
2365
Willy Tarreau7190b982021-05-07 08:59:50 +02002366 /* .warning/.error/.notice/.diag */
Willy Tarreau4b103022021-02-12 17:59:10 +01002367 if (*args[0] == '.') {
2368 if (strcmp(args[0], ".alert") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002369 if (*args[2]) {
2370 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2371 file, linenum, args[2], args[0]);
2372 err_code |= ERR_ALERT | ERR_FATAL;
2373 goto next_line;
2374 }
2375
Willy Tarreau4b103022021-02-12 17:59:10 +01002376 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2377 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2378 goto err;
2379 }
2380 else if (strcmp(args[0], ".warning") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002381 if (*args[2]) {
2382 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2383 file, linenum, args[2], args[0]);
2384 err_code |= ERR_ALERT | ERR_FATAL;
2385 goto next_line;
2386 }
2387
Willy Tarreau4b103022021-02-12 17:59:10 +01002388 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2389 err_code |= ERR_WARN;
2390 goto next_line;
2391 }
2392 else if (strcmp(args[0], ".notice") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002393 if (*args[2]) {
2394 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2395 file, linenum, args[2], args[0]);
2396 err_code |= ERR_ALERT | ERR_FATAL;
2397 goto next_line;
2398 }
2399
Willy Tarreau4b103022021-02-12 17:59:10 +01002400 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2401 goto next_line;
2402 }
Willy Tarreau7190b982021-05-07 08:59:50 +02002403 else if (strcmp(args[0], ".diag") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002404 if (*args[2]) {
2405 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2406 file, linenum, args[2], args[0]);
2407 err_code |= ERR_ALERT | ERR_FATAL;
2408 goto next_line;
2409 }
2410
Willy Tarreau7190b982021-05-07 08:59:50 +02002411 ha_diag_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2412 goto next_line;
2413 }
Willy Tarreau4b103022021-02-12 17:59:10 +01002414 else {
2415 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
2416 err_code |= ERR_ALERT | ERR_FATAL;
2417 fatal++;
2418 break;
2419 }
2420 }
2421
Willy Tarreau3842f002009-06-14 11:39:52 +02002422 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002423 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02002424 char *tmp;
2425
Willy Tarreau3842f002009-06-14 11:39:52 +02002426 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002427 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002428 for (arg=0; *args[arg+1]; arg++)
2429 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002430 *tmp = '\0'; // fix the next arg to \0
2431 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002432 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002433 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02002434 kwm = KWM_DEF;
2435 for (arg=0; *args[arg+1]; arg++)
2436 args[arg] = args[arg+1]; // shift args after inversion
2437 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002438
William Dauchyec730982019-10-27 20:08:10 +01002439 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2440 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002441 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002442 strcmp(args[0], "insecure-fork-wanted") != 0 &&
2443 strcmp(args[0], "numa-cpu-mapping") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002444 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002445 "supported only for options, log, busy-polling, "
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002446 "set-dumpable, strict-limits, insecure-fork-wanted "
2447 "and numa-cpu-mapping.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002448 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002449 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002450 }
2451
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002452 /* detect section start */
2453 list_for_each_entry(ics, &sections, list) {
2454 if (strcmp(args[0], ics->section_name) == 0) {
2455 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002456 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002457 cs = ics;
Willy Tarreau51508052021-05-06 10:04:45 +02002458 free(global.cfg_curr_section);
2459 global.cfg_curr_section = strdup(*args[1] ? args[1] : args[0]);
Christopher Faulet037e3f82022-11-18 15:46:06 +01002460 check_section_position(args[0], file, linenum);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002461 break;
2462 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002463 }
2464
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002465 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002466 int status;
2467
2468 status = pcs->post_section_parser();
2469 err_code |= status;
2470 if (status & ERR_FATAL)
2471 fatal++;
2472
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002473 if (err_code & ERR_ABORT)
2474 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002475 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002476 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002477
William Lallemandd2ff56d2017-10-16 11:06:50 +02002478 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002479 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002480 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002481 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002482 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002483 int status;
2484
2485 status = cs->section_parser(file, linenum, args, kwm);
2486 err_code |= status;
2487 if (status & ERR_FATAL)
2488 fatal++;
2489
William Lallemandd2ff56d2017-10-16 11:06:50 +02002490 if (err_code & ERR_ABORT)
2491 goto err;
2492 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002493 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002494
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002495 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002496 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2497 file, linenum, (missing_lf + 1));
2498 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002499 }
2500
Willy Tarreau51508052021-05-06 10:04:45 +02002501 ha_free(&global.cfg_curr_section);
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002502 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002503 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002504
Willy Tarreau4b103022021-02-12 17:59:10 +01002505 if (nested_cond_lvl) {
2506 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
2507 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2508 }
Willy Tarreau8a022d52021-04-27 20:29:11 +02002509
2510 if (*initial_cwd && chdir(initial_cwd) == -1) {
2511 ha_alert("Impossible to get back to initial directory '%s' : %s\n", initial_cwd, strerror(errno));
2512 err_code |= ERR_ALERT | ERR_FATAL;
2513 }
2514
William Lallemandd2ff56d2017-10-16 11:06:50 +02002515err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002516 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01002517 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002518 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002519 free(outline);
Willy Tarreau51508052021-05-06 10:04:45 +02002520 global.cfg_curr_line = 0;
2521 global.cfg_curr_file = NULL;
2522
Willy Tarreauda543e12021-04-27 18:30:28 +02002523 if (f)
2524 fclose(f);
2525
Willy Tarreau058e9072009-07-20 09:30:05 +02002526 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002527}
2528
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002529#if defined(USE_THREAD) && defined USE_CPU_AFFINITY
2530#if defined(__linux__)
2531
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002532/* filter directory name of the pattern node<X> */
2533static int numa_filter(const struct dirent *dir)
2534{
2535 char *endptr;
2536
2537 /* dir name must start with "node" prefix */
2538 if (strncmp(dir->d_name, "node", 4))
2539 return 0;
2540
2541 /* dir name must be at least 5 characters long */
2542 if (!dir->d_name[4])
2543 return 0;
2544
2545 /* dir name must end with a numeric id */
2546 if (strtol(&dir->d_name[4], &endptr, 10) < 0 || *endptr)
2547 return 0;
2548
2549 /* all tests succeeded */
2550 return 1;
2551}
2552
2553/* Parse a linux cpu map string representing to a numeric cpu mask map
2554 * The cpu map string is a list of 4-byte hex strings separated by commas, with
2555 * most-significant byte first, one bit per cpu number.
2556 */
2557static void parse_cpumap(char *cpumap_str, struct hap_cpuset *cpu_set)
2558{
2559 unsigned long cpumap;
2560 char *start, *endptr, *comma;
2561 int i, j;
2562
2563 ha_cpuset_zero(cpu_set);
2564
2565 i = 0;
2566 do {
2567 /* reverse-search for a comma, parse the string after the comma
2568 * or at the beginning if no comma found
2569 */
2570 comma = strrchr(cpumap_str, ',');
2571 start = comma ? comma + 1 : cpumap_str;
2572
2573 cpumap = strtoul(start, &endptr, 16);
2574 for (j = 0; cpumap; cpumap >>= 1, ++j) {
2575 if (cpumap & 0x1)
2576 ha_cpuset_set(cpu_set, j + i * 32);
2577 }
2578
2579 if (comma)
2580 *comma = '\0';
2581 ++i;
2582 } while (comma);
2583}
2584
2585/* Read the first line of a file from <path> into the trash buffer.
2586 * Returns 0 on success, otherwise non-zero.
2587 */
2588static int read_file_to_trash(const char *path)
2589{
2590 FILE *file;
2591 int ret = 1;
2592
2593 file = fopen(path, "r");
2594 if (file) {
2595 if (fgets(trash.area, trash.size, file))
2596 ret = 0;
2597
2598 fclose(file);
2599 }
2600
2601 return ret;
2602}
2603
2604/* Inspect the cpu topology of the machine on startup. If a multi-socket
2605 * machine is detected, try to bind on the first node with active cpu. This is
2606 * done to prevent an impact on the overall performance when the topology of
2607 * the machine is unknown. This function is not called if one of the conditions
2608 * is met :
2609 * - a non-null nbthread directive is active
2610 * - a restrictive cpu-map directive is active
2611 * - a restrictive affinity is already applied, for example via taskset
2612 *
2613 * Returns the count of cpus selected. If no automatic binding was required or
2614 * an error occurred and the topology is unknown, 0 is returned.
2615 */
2616static int numa_detect_topology()
2617{
2618 struct dirent **node_dirlist;
2619 int node_dirlist_size;
2620
2621 struct hap_cpuset active_cpus, node_cpu_set;
2622 const char *parse_cpu_set_args[2];
2623 char cpumap_path[PATH_MAX];
2624 char *err = NULL;
2625
2626 /* node_cpu_set count is used as return value */
2627 ha_cpuset_zero(&node_cpu_set);
2628
2629 /* 1. count the sysfs node<X> directories */
Willy Tarreau07bf21c2021-04-23 19:09:16 +02002630 node_dirlist = NULL;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002631 node_dirlist_size = scandir(NUMA_DETECT_SYSTEM_SYSFS_PATH"/node", &node_dirlist, numa_filter, alphasort);
2632 if (node_dirlist_size <= 1)
2633 goto free_scandir_entries;
2634
2635 /* 2. read and parse the list of currently online cpu */
2636 if (read_file_to_trash(NUMA_DETECT_SYSTEM_SYSFS_PATH"/cpu/online")) {
2637 ha_notice("Cannot read online CPUs list, will not try to refine binding\n");
2638 goto free_scandir_entries;
2639 }
2640
2641 parse_cpu_set_args[0] = trash.area;
2642 parse_cpu_set_args[1] = "\0";
2643 if (parse_cpu_set(parse_cpu_set_args, &active_cpus, 1, &err)) {
2644 ha_notice("Cannot read online CPUs list: '%s'. Will not try to refine binding\n", err);
2645 free(err);
2646 goto free_scandir_entries;
2647 }
2648
2649 /* 3. loop through nodes dirs and find the first one with active cpus */
2650 while (node_dirlist_size--) {
2651 const char *node = node_dirlist[node_dirlist_size]->d_name;
2652 ha_cpuset_zero(&node_cpu_set);
2653
2654 snprintf(cpumap_path, PATH_MAX, "%s/node/%s/cpumap",
2655 NUMA_DETECT_SYSTEM_SYSFS_PATH, node);
2656
2657 if (read_file_to_trash(cpumap_path)) {
2658 ha_notice("Cannot read CPUs list of '%s', will not select them to refine binding\n", node);
2659 free(node_dirlist[node_dirlist_size]);
2660 continue;
2661 }
2662
2663 parse_cpumap(trash.area, &node_cpu_set);
2664 ha_cpuset_and(&node_cpu_set, &active_cpus);
2665
2666 /* 5. set affinity on the first found node with active cpus */
2667 if (!ha_cpuset_count(&node_cpu_set)) {
2668 free(node_dirlist[node_dirlist_size]);
2669 continue;
2670 }
2671
2672 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));
2673 if (sched_setaffinity(getpid(), sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2674 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2675
2676 /* clear the cpuset used as return value */
2677 ha_cpuset_zero(&node_cpu_set);
2678 }
2679
2680 free(node_dirlist[node_dirlist_size]);
2681 break;
2682 }
2683
2684 free_scandir_entries:
2685 while (node_dirlist_size-- > 0)
2686 free(node_dirlist[node_dirlist_size]);
2687 free(node_dirlist);
2688
2689 return ha_cpuset_count(&node_cpu_set);
2690}
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002691
David CARLIERf5d48f82021-12-06 11:00:10 +00002692#elif defined(__FreeBSD__)
2693static int numa_detect_topology()
2694{
2695 struct hap_cpuset node_cpu_set;
2696 int ndomains = 0, i;
2697 size_t len = sizeof(ndomains);
2698
2699 if (sysctlbyname("vm.ndomains", &ndomains, &len, NULL, 0) == -1) {
2700 ha_notice("Cannot assess the number of CPUs domains\n");
2701 return 0;
2702 }
2703
2704 BUG_ON(ndomains > MAXMEMDOM);
2705 ha_cpuset_zero(&node_cpu_set);
2706
2707 /*
2708 * We retrieve the first active valid CPU domain
2709 * with active cpu and binding it, we returns
2710 * the number of cpu from the said domain
2711 */
2712 for (i = 0; i < ndomains; i ++) {
2713 struct hap_cpuset dom;
2714 ha_cpuset_zero(&dom);
2715 if (cpuset_getaffinity(CPU_LEVEL_WHICH, CPU_WHICH_DOMAIN, i, sizeof(dom.cpuset), &dom.cpuset) == -1)
2716 continue;
2717
2718 if (!ha_cpuset_count(&dom))
2719 continue;
2720
2721 ha_cpuset_assign(&node_cpu_set, &dom);
2722
2723 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));
2724 if (cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2725 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2726
2727 /* clear the cpuset used as return value */
2728 ha_cpuset_zero(&node_cpu_set);
2729 }
2730 break;
2731 }
2732
2733 return ha_cpuset_count(&node_cpu_set);
2734}
2735
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002736#else
2737static int numa_detect_topology()
2738{
2739 return 0;
2740}
2741
2742#endif
2743#endif /* USE_THREAD && USE_CPU_AFFINITY */
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002744
Willy Tarreaubb925012009-07-23 13:36:36 +02002745/*
2746 * Returns the error code, 0 if OK, or any combination of :
2747 * - ERR_ABORT: must abort ASAP
2748 * - ERR_FATAL: we can continue parsing but not start the service
2749 * - ERR_WARN: a warning has been emitted
2750 * - ERR_ALERT: an alert has been emitted
2751 * Only the two first ones can stop processing, the two others are just
2752 * indicators.
2753 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002754int check_config_validity()
2755{
2756 int cfgerr = 0;
2757 struct proxy *curproxy = NULL;
Emeric Brun3b68b602022-08-18 15:53:21 +02002758 struct proxy *init_proxies_list = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002759 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002760 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002761 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002762 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002763 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002764 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002765 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01002766 struct resolvers *curr_resolvers = NULL;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002767 int i;
Frédéric Lécaille372508c2022-05-06 08:53:16 +02002768 int diag_no_cluster_secret = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002769
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002770 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002771 /*
2772 * Now, check for the integrity of all that we have collected.
2773 */
2774
2775 /* will be needed further to delay some tasks */
Willy Tarreau55542642021-10-08 09:33:24 +02002776 clock_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002777
Willy Tarreau193b8c62012-11-22 00:17:38 +01002778 if (!global.tune.max_http_hdr)
2779 global.tune.max_http_hdr = MAX_HTTP_HDR;
2780
2781 if (!global.tune.cookie_len)
2782 global.tune.cookie_len = CAPTURE_LEN;
2783
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002784 if (!global.tune.requri_len)
2785 global.tune.requri_len = REQURI_LEN;
2786
Willy Tarreau149ab772019-01-26 14:27:06 +01002787 if (!global.nbthread) {
2788 /* nbthread not set, thus automatic. In this case, and only if
2789 * running on a single process, we enable the same number of
2790 * threads as the number of CPUs the process is bound to. This
2791 * allows to easily control the number of threads using taskset.
2792 */
2793 global.nbthread = 1;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002794
Willy Tarreau149ab772019-01-26 14:27:06 +01002795#if defined(USE_THREAD)
Willy Tarreaub63dbb72021-06-11 16:50:29 +02002796 {
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002797 int numa_cores = 0;
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002798#if defined(USE_CPU_AFFINITY)
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002799 if (global.numa_cpu_mapping && !thread_cpu_mask_forced())
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002800 numa_cores = numa_detect_topology();
2801#endif
2802 global.nbthread = numa_cores ? numa_cores :
2803 thread_cpus_enabled_at_boot;
Willy Tarreau400b3ae2022-12-08 08:04:46 +01002804
2805 /* Note that we cannot have more than 32 or 64 threads per group */
2806 if (!global.nbtgroups)
2807 global.nbtgroups = 1;
2808
2809 if (global.nbthread > MAX_THREADS_PER_GROUP * global.nbtgroups) {
2810 ha_diag_warning("nbthread not set, found %d CPUs, limiting to %d threads (maximum is %d per thread group). Please set nbthreads and/or increase thread-groups in the global section to silence this warning.\n",
2811 global.nbthread, MAX_THREADS_PER_GROUP * global.nbtgroups, MAX_THREADS_PER_GROUP);
2812 global.nbthread = MAX_THREADS_PER_GROUP * global.nbtgroups;
2813 }
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002814 }
Willy Tarreau149ab772019-01-26 14:27:06 +01002815#endif
2816 }
2817
Willy Tarreauc33b9692021-09-22 12:07:23 +02002818 if (!global.nbtgroups)
2819 global.nbtgroups = 1;
2820
Willy Tarreaue6806eb2021-09-27 10:10:26 +02002821 if (thread_map_to_groups() < 0) {
2822 err_code |= ERR_ALERT | ERR_FATAL;
2823 goto out;
2824 }
2825
Willy Tarreaubafbe012017-11-24 17:34:44 +01002826 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002827
Willy Tarreaubafbe012017-11-24 17:34:44 +01002828 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002829
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002830 /* Post initialisation of the users and groups lists. */
2831 err_code = userlist_postinit();
2832 if (err_code != ERR_NONE)
2833 goto out;
2834
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002835 /* first, we will invert the proxy list order */
2836 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002837 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002838 struct proxy *next;
2839
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002840 next = proxies_list->next;
2841 proxies_list->next = curproxy;
2842 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002843 if (!next)
2844 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002845 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002846 }
2847
Emeric Brun3b68b602022-08-18 15:53:21 +02002848 /* starting to initialize the main proxies list */
2849 init_proxies_list = proxies_list;
2850
2851init_proxies_list_stage1:
2852 for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002853 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002854 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002855 struct sticking_rule *mrule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002856 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002857 unsigned int next_id;
2858
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002859 if (!(curproxy->cap & PR_CAP_INT) && curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002860 /* proxy ID not set, use automatic numbering with first
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002861 * spare entry starting with next_pxid. We don't assign
2862 * numbers for internal proxies as they may depend on
2863 * build or config options and we don't want them to
2864 * possibly reuse existing IDs.
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002865 */
2866 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2867 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2868 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002869 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002870
Willy Tarreau32b51cd2021-08-26 15:59:44 +02002871 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize >= (256 << 20) && ONLY_ONCE()) {
2872 ha_alert("global.tune.bufsize must be below 256 MB when HTTP is in use (current value = %d).\n",
2873 global.tune.bufsize);
2874 cfgerr++;
2875 }
2876
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002877 /* next IDs are shifted even if the proxy is disabled, this
2878 * guarantees that a proxy that is temporarily disabled in the
2879 * configuration doesn't cause a renumbering. Internal proxies
2880 * that are not assigned a static ID must never shift the IDs
2881 * either since they may appear in any order (Lua, logs, etc).
2882 * The GLOBAL proxy that carries the stats socket has its ID
2883 * forced to zero.
2884 */
2885 if (curproxy->uuid >= 0)
2886 next_pxid++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002887
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002888 if (curproxy->flags & PR_FL_DISABLED) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002889 /* ensure we don't keep listeners uselessly bound. We
2890 * can't disable their listeners yet (fdtab not
2891 * allocated yet) but let's skip them.
2892 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002893 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002894 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002895 curproxy->table->peers.p = NULL;
2896 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002897 continue;
2898 }
2899
Christopher Fauletff556272021-10-13 11:04:10 +02002900 /* The current proxy is referencing a default proxy. We must
2901 * finalize its config, but only once. If the default proxy is
2902 * ready (PR_FL_READY) it means it was already fully configured.
2903 */
2904 if (curproxy->defpx) {
2905 if (!(curproxy->defpx->flags & PR_FL_READY)) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02002906 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
2907 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l4_rules, curproxy->defpx, &err_code);
2908 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l5_rules, curproxy->defpx, &err_code);
2909 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.inspect_rules, curproxy->defpx, &err_code);
2910 cfgerr += check_action_rules(&curproxy->defpx->tcp_rep.inspect_rules, curproxy->defpx, &err_code);
2911 cfgerr += check_action_rules(&curproxy->defpx->http_req_rules, curproxy->defpx, &err_code);
2912 cfgerr += check_action_rules(&curproxy->defpx->http_res_rules, curproxy->defpx, &err_code);
2913 cfgerr += check_action_rules(&curproxy->defpx->http_after_res_rules, curproxy->defpx, &err_code);
2914
Christopher Fauletff556272021-10-13 11:04:10 +02002915 err = NULL;
2916 i = smp_resolve_args(curproxy->defpx, &err);
2917 cfgerr += i;
2918 if (i) {
2919 indent_msg(&err, 8);
2920 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
2921 ha_free(&err);
2922 }
2923 else
2924 cfgerr += acl_find_targets(curproxy->defpx);
2925
2926 /* default proxy is now ready. Set the right FE/BE capabilities */
2927 curproxy->defpx->flags |= PR_FL_READY;
2928 }
2929 }
2930
Willy Tarreau3d209582014-05-09 17:06:11 +02002931 /* check and reduce the bind-proc of each listener */
2932 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2933 unsigned long mask;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002934 struct listener *li;
Willy Tarreau3d209582014-05-09 17:06:11 +02002935
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002936 /* HTTP frontends with "h2" as ALPN/NPN will work in
2937 * HTTP/2 and absolutely require buffers 16kB or larger.
2938 */
2939#ifdef USE_OPENSSL
2940 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2941#ifdef OPENSSL_NPN_NEGOTIATED
2942 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002943 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002944 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 +01002945 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002946 cfgerr++;
2947 }
2948#endif
2949#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2950 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002951 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002952 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 +01002953 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002954 cfgerr++;
2955 }
2956#endif
2957 } /* HTTP && bufsize < 16384 */
2958#endif
2959
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002960 /* detect and address thread affinity inconsistencies */
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002961 err = NULL;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002962 if (thread_resolve_group_mask(bind_conf->bind_tgroup, bind_conf->bind_thread,
2963 &bind_conf->bind_tgroup, &bind_conf->bind_thread, &err) < 0) {
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002964 ha_alert("Proxy '%s': %s in 'bind %s' at [%s:%d].\n",
2965 curproxy->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
2966 free(err);
2967 cfgerr++;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002968 } else if (!((mask = bind_conf->bind_thread) & ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002969 unsigned long new_mask = 0;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002970 ulong thr_mask = ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002971
2972 while (mask) {
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002973 new_mask |= mask & thr_mask;
2974 mask >>= ha_tgroup_info[bind_conf->bind_tgroup-1].count;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002975 }
2976
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002977 bind_conf->bind_thread = new_mask;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002978 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",
2979 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line,
2980 bind_conf->bind_tgroup, ha_tgroup_info[bind_conf->bind_tgroup-1].count, new_mask);
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002981 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002982
2983 /* apply thread masks and groups to all receivers */
2984 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
Willy Tarreau6dfbef42021-10-12 15:23:03 +02002985 if (bind_conf->settings.shards <= 1) {
2986 li->rx.bind_thread = bind_conf->bind_thread;
2987 li->rx.bind_tgroup = bind_conf->bind_tgroup;
2988 } else {
2989 struct listener *new_li;
2990 int shard, shards, todo, done, bit;
2991 ulong mask;
2992
2993 shards = bind_conf->settings.shards;
2994 todo = my_popcountl(bind_conf->bind_thread);
2995
2996 /* no more shards than total threads */
2997 if (shards > todo)
2998 shards = todo;
2999
3000 shard = done = bit = 0;
3001 new_li = li;
3002
3003 while (1) {
3004 mask = 0;
3005 while (done < todo) {
3006 /* enlarge mask to cover next bit of bind_thread */
3007 while (!(bind_conf->bind_thread & (1UL << bit)))
3008 bit++;
3009 mask |= (1UL << bit);
3010 bit++;
3011 done += shards;
3012 }
3013
3014 new_li->rx.bind_thread = bind_conf->bind_thread & mask;
3015 new_li->rx.bind_tgroup = bind_conf->bind_tgroup;
3016 done -= todo;
3017
3018 shard++;
3019 if (shard >= shards)
3020 break;
3021
3022 /* create another listener for new shards */
3023 new_li = clone_listener(li);
3024 if (!new_li) {
3025 ha_alert("Out of memory while trying to allocate extra listener for shard %d in %s %s\n",
3026 shard, proxy_type_str(curproxy), curproxy->id);
3027 cfgerr++;
3028 err_code |= ERR_FATAL | ERR_ALERT;
3029 goto out;
3030 }
3031 }
3032 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02003033 }
Willy Tarreau3d209582014-05-09 17:06:11 +02003034 }
3035
Willy Tarreauff01a212009-03-15 13:46:16 +01003036 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01003037 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02003038 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01003039 break;
3040
3041 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01003042 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01003043 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02003044
3045 case PR_MODE_CLI:
3046 cfgerr += proxy_cfg_ensure_no_http(curproxy);
3047 break;
Emeric Brun3b68b602022-08-18 15:53:21 +02003048
Emeric Brun54932b42020-07-07 09:43:24 +02003049 case PR_MODE_SYSLOG:
Emeric Brun3b68b602022-08-18 15:53:21 +02003050 /* this mode is initialized as the classic tcp proxy */
3051 cfgerr += proxy_cfg_ensure_no_http(curproxy);
3052 break;
3053
Willy Tarreaua389c9e2020-10-07 17:49:42 +02003054 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02003055 case PR_MODES:
3056 /* should not happen, bug gcc warn missing switch statement */
Emeric Brun3b68b602022-08-18 15:53:21 +02003057 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 +02003058 proxy_type_str(curproxy), curproxy->id);
3059 cfgerr++;
3060 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01003061 }
3062
William Lallemand2c04a5a2021-08-13 15:21:12 +02003063 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003064 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 +01003065 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02003066 err_code |= ERR_WARN;
3067 }
3068
Willy Tarreau77e0dae2020-10-14 15:44:27 +02003069 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003070 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003071 if (curproxy->options & PR_O_TRANSP) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003072 ha_alert("%s '%s' cannot use both transparent and balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003073 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003074 cfgerr++;
3075 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003076#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003077 else if (curproxy->srv == NULL) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003078 ha_alert("%s '%s' needs at least 1 server in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003079 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003080 cfgerr++;
3081 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003082#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02003083 else if (curproxy->options & PR_O_DISPATCH) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003084 ha_warning("dispatch address of %s '%s' will be ignored in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003085 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003086 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003087 }
3088 }
Willy Tarreau25241232021-07-18 19:18:56 +02003089 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003090 /* If no LB algo is set in a backend, and we're not in
3091 * transparent mode, dispatch mode nor proxy mode, we
3092 * want to use balance roundrobin by default.
3093 */
3094 curproxy->lbprm.algo &= ~BE_LB_ALGO;
3095 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003096 }
3097 }
Willy Tarreau193cf932007-09-17 10:17:23 +02003098
Willy Tarreau1620ec32011-08-06 17:05:02 +02003099 if (curproxy->options & PR_O_DISPATCH)
Willy Tarreau25241232021-07-18 19:18:56 +02003100 curproxy->options &= ~PR_O_TRANSP;
Willy Tarreau1620ec32011-08-06 17:05:02 +02003101 else if (curproxy->options & PR_O_TRANSP)
Willy Tarreau25241232021-07-18 19:18:56 +02003102 curproxy->options &= ~PR_O_DISPATCH;
Willy Tarreau82936582007-11-30 15:20:09 +01003103
Christopher Faulete5870d82020-04-15 11:32:03 +02003104 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003105 ha_warning("%s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
Christopher Faulete5870d82020-04-15 11:32:03 +02003106 proxy_type_str(curproxy), curproxy->id);
3107 err_code |= ERR_WARN;
3108 }
3109
3110 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02003111 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02003112 if (curproxy->options & PR_O_DISABLE404) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003113 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003114 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02003115 err_code |= ERR_WARN;
3116 curproxy->options &= ~PR_O_DISABLE404;
3117 }
3118 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003119 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003120 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02003121 err_code |= ERR_WARN;
3122 curproxy->options &= ~PR_O2_CHK_SNDST;
3123 }
Willy Tarreauef781042010-01-27 11:53:01 +01003124 }
3125
Simon Horman98637e52014-06-20 12:30:16 +09003126 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
3127 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003128 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
3129 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09003130 cfgerr++;
3131 }
3132 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003133 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
3134 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09003135 cfgerr++;
3136 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01003137 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
3138 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
3139 curproxy->id, "option external-check");
3140 err_code |= ERR_WARN;
3141 }
Simon Horman98637e52014-06-20 12:30:16 +09003142 }
3143
Simon Horman64e34162015-02-06 11:11:57 +09003144 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003145 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003146 ha_warning("'email-alert' will be ignored for %s '%s' (the presence any of "
Christopher Faulet767a84b2017-11-24 16:50:31 +01003147 "'email-alert from', 'email-alert level' 'email-alert mailers', "
3148 "'email-alert myhostname', or 'email-alert to' "
3149 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
3150 "to be present).\n",
3151 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003152 err_code |= ERR_WARN;
3153 free_email_alert(curproxy);
3154 }
3155 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01003156 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09003157 }
3158
Simon Horman98637e52014-06-20 12:30:16 +09003159 if (curproxy->check_command) {
3160 int clear = 0;
3161 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003162 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003163 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09003164 err_code |= ERR_WARN;
3165 clear = 1;
3166 }
3167 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003168 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
3169 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09003170 cfgerr++;
3171 }
3172 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003173 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09003174 }
3175 }
3176
3177 if (curproxy->check_path) {
3178 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003179 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003180 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09003181 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003182 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09003183 }
3184 }
3185
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003186 /* if a default backend was specified, let's find it */
3187 if (curproxy->defbe.name) {
3188 struct proxy *target;
3189
Willy Tarreauafb39922015-05-26 12:04:09 +02003190 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01003191 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003192 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
3193 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003194 cfgerr++;
3195 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003196 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
3197 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02003198 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02003199 } else if (target->mode != curproxy->mode &&
3200 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
3201
Christopher Faulet767a84b2017-11-24 16:50:31 +01003202 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
3203 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
3204 curproxy->conf.file, curproxy->conf.line,
3205 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
3206 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02003207 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003208 } else {
3209 free(curproxy->defbe.name);
3210 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01003211 /* Emit a warning if this proxy also has some servers */
3212 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003213 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
3214 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01003215 err_code |= ERR_WARN;
3216 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003217 }
3218 }
3219
Willy Tarreau55ea7572007-06-17 19:56:27 +02003220 /* find the target proxy for 'use_backend' rules */
3221 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02003222 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003223 struct logformat_node *node;
3224 char *pxname;
3225
3226 /* Try to parse the string as a log format expression. If the result
3227 * of the parsing is only one entry containing a simple string, then
3228 * it's a standard string corresponding to a static rule, thus the
3229 * parsing is cancelled and be.name is restored to be resolved.
3230 */
3231 pxname = rule->be.name;
3232 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01003233 curproxy->conf.args.ctx = ARGC_UBK;
3234 curproxy->conf.args.file = rule->file;
3235 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003236 err = NULL;
3237 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003238 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
3239 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003240 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003241 cfgerr++;
3242 continue;
3243 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003244 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
3245
3246 if (!LIST_ISEMPTY(&rule->be.expr)) {
3247 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
3248 rule->dynamic = 1;
3249 free(pxname);
3250 continue;
3251 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02003252 /* Only one element in the list, a simple string: free the expression and
3253 * fall back to static rule
3254 */
Willy Tarreau2b718102021-04-21 07:32:39 +02003255 LIST_DELETE(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003256 free(node->arg);
3257 free(node);
3258 }
3259
3260 rule->dynamic = 0;
3261 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003262
Willy Tarreauafb39922015-05-26 12:04:09 +02003263 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01003264 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003265 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
3266 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003267 cfgerr++;
3268 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003269 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
3270 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003271 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02003272 } else if (target->mode != curproxy->mode &&
3273 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
3274
Christopher Faulet767a84b2017-11-24 16:50:31 +01003275 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
3276 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
3277 curproxy->conf.file, curproxy->conf.line,
3278 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
3279 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02003280 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003281 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003282 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003283 rule->be.backend = target;
3284 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003285 err_code |= warnif_tcp_http_cond(curproxy, rule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003286 }
3287
Willy Tarreau64ab6072014-09-16 12:17:36 +02003288 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003289 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02003290 struct server *target;
3291 struct logformat_node *node;
3292 char *server_name;
3293
3294 /* We try to parse the string as a log format expression. If the result of the parsing
3295 * is only one entry containing a single string, then it's a standard string corresponding
3296 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
3297 */
3298 server_name = srule->srv.name;
3299 LIST_INIT(&srule->expr);
3300 curproxy->conf.args.ctx = ARGC_USRV;
3301 err = NULL;
3302 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
3303 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
3304 srule->file, srule->line, server_name, err);
3305 free(err);
3306 cfgerr++;
3307 continue;
3308 }
3309 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
3310
3311 if (!LIST_ISEMPTY(&srule->expr)) {
3312 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
3313 srule->dynamic = 1;
3314 free(server_name);
3315 continue;
3316 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02003317 /* Only one element in the list, a simple string: free the expression and
3318 * fall back to static rule
3319 */
Willy Tarreau2b718102021-04-21 07:32:39 +02003320 LIST_DELETE(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02003321 free(node->arg);
3322 free(node);
3323 }
3324
3325 srule->dynamic = 0;
3326 srule->srv.name = server_name;
3327 target = findserver(curproxy, srule->srv.name);
Christopher Faulet581db2b2021-03-26 10:02:46 +01003328 err_code |= warnif_tcp_http_cond(curproxy, srule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003329
3330 if (!target) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003331 ha_alert("%s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003332 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003333 cfgerr++;
3334 continue;
3335 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01003336 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003337 srule->srv.ptr = target;
Amaury Denoyelle06269612021-08-23 14:05:07 +02003338 target->flags |= SRV_F_NON_PURGEABLE;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003339 }
3340
Emeric Brunb982a3d2010-01-04 15:45:53 +01003341 /* find the target table for 'stick' rules */
3342 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003343 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003344
Emeric Brun1d33b292010-01-04 15:47:17 +01003345 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
3346 if (mrule->flags & STK_IS_STORE)
3347 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3348
Emeric Brunb982a3d2010-01-04 15:45:53 +01003349 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003350 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003351 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003352 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003353
3354 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003355 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003356 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003357 cfgerr++;
3358 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003359 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003360 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3361 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003362 cfgerr++;
3363 }
3364 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003365 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003366 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003367 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3368 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003369 if (!in_proxies_list(target->proxies_list, curproxy)) {
3370 curproxy->next_stkt_ref = target->proxies_list;
3371 target->proxies_list = curproxy;
3372 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003373 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003374 err_code |= warnif_tcp_http_cond(curproxy, mrule->cond);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003375 }
3376
3377 /* find the target table for 'store response' rules */
3378 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003379 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003380
Emeric Brun1d33b292010-01-04 15:47:17 +01003381 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3382
Emeric Brunb982a3d2010-01-04 15:45:53 +01003383 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003384 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003385 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003386 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003387
3388 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003389 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003390 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003391 cfgerr++;
3392 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003393 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003394 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3395 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003396 cfgerr++;
3397 }
3398 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003399 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003400 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003401 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3402 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003403 if (!in_proxies_list(target->proxies_list, curproxy)) {
3404 curproxy->next_stkt_ref = target->proxies_list;
3405 target->proxies_list = curproxy;
3406 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003407 }
3408 }
3409
Christopher Faulet42c6cf92021-03-25 17:19:04 +01003410 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
3411 cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code);
3412 cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code);
3413 cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code);
3414 cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code);
3415 cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code);
3416 cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code);
3417 cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003418
Christopher Faulet5eef0182021-03-31 17:13:49 +02003419 /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */
3420 if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) {
3421 if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP)
3422 ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. "
3423 "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n",
3424 curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy));
3425 }
3426
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003427 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003428 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003429
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003430 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003431 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003432 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003433 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003434 break;
3435 }
3436 }
3437
3438 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003439 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003440 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01003441 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003442 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003443 cfgerr++;
3444 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003445 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003446 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003447 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003448 }
Emeric Brun32da3c42010-09-23 18:39:19 +02003449 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003450 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
3451 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003452 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003453 cfgerr++;
3454 }
3455 }
3456
Simon Horman9dc49962015-01-30 11:22:59 +09003457
3458 if (curproxy->email_alert.mailers.name) {
3459 struct mailers *curmailers = mailers;
3460
3461 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003462 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09003463 break;
Simon Horman9dc49962015-01-30 11:22:59 +09003464 }
Simon Horman9dc49962015-01-30 11:22:59 +09003465 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003466 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
3467 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09003468 free_email_alert(curproxy);
3469 cfgerr++;
3470 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02003471 else {
3472 err = NULL;
3473 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003474 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003475 free(err);
3476 cfgerr++;
3477 }
3478 }
Simon Horman9dc49962015-01-30 11:22:59 +09003479 }
3480
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003481 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01003482 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003483 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003484 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
3485 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003486 cfgerr++;
3487 goto out_uri_auth_compat;
3488 }
3489
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003490 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003491 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003492 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003493 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003494 struct act_rule *rule;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003495 i = 0;
3496
Willy Tarreau95fa4692010-02-01 13:05:50 +01003497 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
3498 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003499
3500 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003501 uri_auth_compat_req[i++] = "realm";
3502 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
3503 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003504
Willy Tarreau95fa4692010-02-01 13:05:50 +01003505 uri_auth_compat_req[i++] = "unless";
3506 uri_auth_compat_req[i++] = "{";
3507 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
3508 uri_auth_compat_req[i++] = "}";
3509 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003510
Willy Tarreauff011f22011-01-06 17:51:27 +01003511 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
3512 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003513 cfgerr++;
3514 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003515 }
3516
Willy Tarreau2b718102021-04-21 07:32:39 +02003517 LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01003518
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003519 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003520 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003521 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003522 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003523 }
3524out_uri_auth_compat:
3525
Dragan Dosen43885c72015-10-01 13:18:13 +02003526 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02003527 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02003528 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
3529 if (!curproxy->conf.logformat_sd_string) {
3530 /* set the default logformat_sd_string */
3531 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
3532 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003533 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02003534 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003535 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02003536
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003537 /* compile the log format */
3538 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02003539 if (curproxy->conf.logformat_string != default_http_log_format &&
3540 curproxy->conf.logformat_string != default_tcp_log_format &&
3541 curproxy->conf.logformat_string != clf_http_log_format)
3542 free(curproxy->conf.logformat_string);
3543 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003544 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02003545 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003546
3547 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3548 free(curproxy->conf.logformat_sd_string);
3549 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003550 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003551 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003552 }
3553
Willy Tarreau62a61232013-04-12 18:13:46 +02003554 if (curproxy->conf.logformat_string) {
3555 curproxy->conf.args.ctx = ARGC_LOG;
3556 curproxy->conf.args.file = curproxy->conf.lfs_file;
3557 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003558 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003559 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
3560 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003561 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003562 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3563 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003564 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003565 cfgerr++;
3566 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003567 curproxy->conf.args.file = NULL;
3568 curproxy->conf.args.line = 0;
3569 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003570
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003571 if (curproxy->conf.logformat_sd_string) {
3572 curproxy->conf.args.ctx = ARGC_LOGSD;
3573 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3574 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003575 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003576 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
3577 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003578 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003579 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3580 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003581 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003582 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003583 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003584 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3585 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003586 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003587 cfgerr++;
3588 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003589 curproxy->conf.args.file = NULL;
3590 curproxy->conf.args.line = 0;
3591 }
3592
Willy Tarreau62a61232013-04-12 18:13:46 +02003593 if (curproxy->conf.uniqueid_format_string) {
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003594 int where = 0;
3595
Willy Tarreau62a61232013-04-12 18:13:46 +02003596 curproxy->conf.args.ctx = ARGC_UIF;
3597 curproxy->conf.args.file = curproxy->conf.uif_file;
3598 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003599 err = NULL;
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003600 if (curproxy->cap & PR_CAP_FE)
3601 where |= SMP_VAL_FE_HRQ_HDR;
3602 if (curproxy->cap & PR_CAP_BE)
3603 where |= SMP_VAL_BE_HRQ_HDR;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003604 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003605 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES, where, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003606 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3607 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003608 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003609 cfgerr++;
3610 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003611 curproxy->conf.args.file = NULL;
3612 curproxy->conf.args.line = 0;
3613 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003614
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +02003615 if (curproxy->conf.error_logformat_string) {
3616 curproxy->conf.args.ctx = ARGC_LOG;
3617 curproxy->conf.args.file = curproxy->conf.elfs_file;
3618 curproxy->conf.args.line = curproxy->conf.elfs_line;
3619 err = NULL;
3620 if (!parse_logformat_string(curproxy->conf.error_logformat_string, curproxy, &curproxy->logformat_error,
3621 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
3622 SMP_VAL_FE_LOG_END, &err)) {
3623 ha_alert("Parsing [%s:%d]: failed to parse error-log-format : %s.\n",
3624 curproxy->conf.elfs_file, curproxy->conf.elfs_line, err);
3625 free(err);
3626 cfgerr++;
3627 }
3628 curproxy->conf.args.file = NULL;
3629 curproxy->conf.args.line = 0;
3630 }
3631
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +02003632 /* "balance hash" needs to compile its expression */
3633 if ((curproxy->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_SMP) {
3634 int idx = 0;
3635 const char *args[] = {
3636 curproxy->lbprm.arg_str,
3637 NULL,
3638 };
3639
3640 err = NULL;
3641 curproxy->conf.args.ctx = ARGC_USRV; // same context as use_server.
3642 curproxy->lbprm.expr =
3643 sample_parse_expr((char **)args, &idx,
3644 curproxy->conf.file, curproxy->conf.line,
3645 &err, &curproxy->conf.args, NULL);
3646
3647 if (!curproxy->lbprm.expr) {
3648 ha_alert("%s '%s' [%s:%d]: failed to parse 'balance hash' expression '%s' in : %s.\n",
3649 proxy_type_str(curproxy), curproxy->id,
3650 curproxy->conf.file, curproxy->conf.line,
3651 curproxy->lbprm.arg_str, err);
3652 ha_free(&err);
3653 cfgerr++;
3654 }
3655 else if (!(curproxy->lbprm.expr->fetch->val & SMP_VAL_BE_SET_SRV)) {
3656 ha_alert("%s '%s' [%s:%d]: error detected while parsing 'balance hash' expression '%s' "
3657 "which requires information from %s, which is not available here.\n",
3658 proxy_type_str(curproxy), curproxy->id,
3659 curproxy->conf.file, curproxy->conf.line,
3660 curproxy->lbprm.arg_str, sample_src_names(curproxy->lbprm.expr->fetch->use));
3661 cfgerr++;
3662 }
3663 else if (curproxy->mode == PR_MODE_HTTP && (curproxy->lbprm.expr->fetch->use & SMP_USE_L6REQ)) {
3664 ha_warning("%s '%s' [%s:%d]: L6 sample fetch <%s> will be ignored in 'balance hash' expression in HTTP mode.\n",
3665 proxy_type_str(curproxy), curproxy->id,
3666 curproxy->conf.file, curproxy->conf.line,
3667 curproxy->lbprm.arg_str);
3668 }
3669 else
3670 curproxy->http_needed |= !!(curproxy->lbprm.expr->fetch->use & SMP_USE_HTTP_ANY);
3671 }
3672
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003673 /* only now we can check if some args remain unresolved.
3674 * This must be done after the users and groups resolution.
3675 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01003676 err = NULL;
3677 i = smp_resolve_args(curproxy, &err);
3678 cfgerr += i;
3679 if (i) {
3680 indent_msg(&err, 8);
3681 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
3682 ha_free(&err);
3683 } else
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003684 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003685
William Lallemand2c04a5a2021-08-13 15:21:12 +02003686 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003687 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003688 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003689 (!curproxy->timeout.connect ||
3690 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003691 ha_warning("missing timeouts for %s '%s'.\n"
Christopher Faulet767a84b2017-11-24 16:50:31 +01003692 " | While not properly invalid, you will certainly encounter various problems\n"
3693 " | with such a configuration. To fix this, please ensure that all following\n"
3694 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3695 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003696 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003697 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003698
Willy Tarreau1fa31262007-12-03 00:36:16 +01003699 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3700 * We must still support older configurations, so let's find out whether those
3701 * parameters have been set or must be copied from contimeouts.
3702 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01003703 if (!curproxy->timeout.tarpit)
3704 curproxy->timeout.tarpit = curproxy->timeout.connect;
3705 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
3706 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003707
Christopher Faulete5870d82020-04-15 11:32:03 +02003708 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003709 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 +01003710 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003711 err_code |= ERR_WARN;
3712 }
3713
Willy Tarreau193b8c62012-11-22 00:17:38 +01003714 /* ensure that cookie capture length is not too large */
3715 if (curproxy->capture_len >= global.tune.cookie_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003716 ha_warning("truncating capture length to %d bytes for %s '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003717 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003718 err_code |= ERR_WARN;
3719 curproxy->capture_len = global.tune.cookie_len - 1;
3720 }
3721
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003722 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003723 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003724 curproxy->req_cap_pool = create_pool("ptrcap",
3725 curproxy->nb_req_cap * sizeof(char *),
3726 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003727 }
3728
3729 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003730 curproxy->rsp_cap_pool = create_pool("ptrcap",
3731 curproxy->nb_rsp_cap * sizeof(char *),
3732 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003733 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003734
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003735 switch (curproxy->load_server_state_from_file) {
3736 case PR_SRV_STATE_FILE_UNSPEC:
3737 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3738 break;
3739 case PR_SRV_STATE_FILE_GLOBAL:
3740 if (!global.server_state_file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003741 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 +01003742 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003743 err_code |= ERR_WARN;
3744 }
3745 break;
3746 }
3747
Willy Tarreaubaaee002006-06-26 02:48:02 +02003748 /* first, we will invert the servers list order */
3749 newsrv = NULL;
3750 while (curproxy->srv) {
3751 struct server *next;
3752
3753 next = curproxy->srv->next;
3754 curproxy->srv->next = newsrv;
3755 newsrv = curproxy->srv;
3756 if (!next)
3757 break;
3758 curproxy->srv = next;
3759 }
3760
Willy Tarreau17edc812014-01-03 12:14:34 +01003761 /* Check that no server name conflicts. This causes trouble in the stats.
3762 * We only emit a warning for the first conflict affecting each server,
3763 * in order to avoid combinatory explosion if all servers have the same
3764 * name. We do that only for servers which do not have an explicit ID,
3765 * because these IDs were made also for distinguishing them and we don't
3766 * want to annoy people who correctly manage them.
3767 */
3768 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3769 struct server *other_srv;
3770
3771 if (newsrv->puid)
3772 continue;
3773
3774 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3775 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003776 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 +01003777 newsrv->conf.file, newsrv->conf.line,
3778 proxy_type_str(curproxy), curproxy->id,
3779 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003780 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003781 break;
3782 }
3783 }
3784 }
3785
Willy Tarreaudd701652010-05-25 23:03:02 +02003786 /* assign automatic UIDs to servers which don't have one yet */
3787 next_id = 1;
3788 newsrv = curproxy->srv;
3789 while (newsrv != NULL) {
3790 if (!newsrv->puid) {
3791 /* server ID not set, use automatic numbering with first
3792 * spare entry starting with next_svid.
3793 */
3794 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3795 newsrv->conf.id.key = newsrv->puid = next_id;
3796 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
3797 }
Amaury Denoyelle077c6b82021-06-14 17:04:25 +02003798 newsrv->conf.name.key = newsrv->id;
3799 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
3800
Willy Tarreaudd701652010-05-25 23:03:02 +02003801 next_id++;
3802 newsrv = newsrv->next;
3803 }
3804
Willy Tarreau20697042007-11-15 23:26:18 +01003805 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003806 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003807
Willy Tarreau62c3be22012-01-20 13:12:32 +01003808 /*
3809 * If this server supports a maxconn parameter, it needs a dedicated
3810 * tasks to fill the emptied slots when a connection leaves.
3811 * Also, resolve deferred tracking dependency if needed.
3812 */
3813 newsrv = curproxy->srv;
3814 while (newsrv != NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003815 set_usermsgs_ctx(newsrv->conf.file, newsrv->conf.line, &newsrv->obj_type);
3816
Willy Tarreau62c3be22012-01-20 13:12:32 +01003817 if (newsrv->minconn > newsrv->maxconn) {
3818 /* Only 'minconn' was specified, or it was higher than or equal
3819 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3820 * this will avoid further useless expensive computations.
3821 */
3822 newsrv->maxconn = newsrv->minconn;
3823 } else if (newsrv->maxconn && !newsrv->minconn) {
3824 /* minconn was not specified, so we set it to maxconn */
3825 newsrv->minconn = newsrv->maxconn;
3826 }
3827
William Dauchyf6370442020-11-14 19:25:33 +01003828 /* this will also properly set the transport layer for
3829 * prod and checks
3830 * if default-server have use_ssl, prerare ssl init
3831 * without activating it */
3832 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
Christopher Faulet4ab26792021-12-01 09:50:41 +01003833 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3834 ((newsrv->flags & SRV_F_DEFSRV_USE_SSL) && newsrv->use_ssl != 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003835 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3836 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3837 }
Emeric Brun94324a42012-10-11 14:00:19 +02003838
Willy Tarreau034c88c2017-01-23 23:36:45 +01003839 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3840 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3841 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003842 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 +01003843
Willy Tarreau62c3be22012-01-20 13:12:32 +01003844 if (newsrv->trackit) {
Amaury Denoyelle669b6202021-07-13 10:35:23 +02003845 if (srv_apply_track(newsrv, curproxy)) {
3846 ++cfgerr;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003847 goto next_srv;
3848 }
Willy Tarreau62c3be22012-01-20 13:12:32 +01003849 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003850
Willy Tarreau62c3be22012-01-20 13:12:32 +01003851 next_srv:
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003852 reset_usermsgs_ctx();
Willy Tarreau62c3be22012-01-20 13:12:32 +01003853 newsrv = newsrv->next;
3854 }
3855
Olivier Houchard4e694042017-03-14 20:01:29 +01003856 /*
3857 * Try to generate dynamic cookies for servers now.
3858 * It couldn't be done earlier, since at the time we parsed
3859 * the server line, we may not have known yet that we
3860 * should use dynamic cookies, or the secret key may not
3861 * have been provided yet.
3862 */
3863 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3864 newsrv = curproxy->srv;
3865 while (newsrv != NULL) {
3866 srv_set_dyncookie(newsrv);
3867 newsrv = newsrv->next;
3868 }
3869
3870 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003871 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003872 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003873 */
3874
3875 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3876 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3877 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003878 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3879 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3880 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003881 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3882 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003883 if (chash_init_server_tree(curproxy) < 0) {
3884 cfgerr++;
3885 }
Willy Tarreau9757a382009-10-03 12:56:50 +02003886 } else {
3887 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3888 fwrr_init_server_groups(curproxy);
3889 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003890 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003891
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003892 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003893 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3894 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3895 fwlc_init_server_tree(curproxy);
3896 } else {
3897 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3898 fas_init_server_tree(curproxy);
3899 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003900 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003901
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003902 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003903 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3904 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003905 if (chash_init_server_tree(curproxy) < 0) {
3906 cfgerr++;
3907 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003908 } else {
3909 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3910 init_server_map(curproxy);
3911 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003912 break;
3913 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003914 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003915
3916 if (curproxy->options & PR_O_LOGASAP)
3917 curproxy->to_log &= ~LW_BYTES;
3918
William Lallemand2c04a5a2021-08-13 15:21:12 +02003919 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003920 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3921 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003922 ha_warning("log format ignored for %s '%s' since it has no log address.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003923 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003924 err_code |= ERR_WARN;
3925 }
3926
Christopher Faulet3b6446f2021-03-15 15:10:38 +01003927 if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) {
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003928 int optnum;
3929
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003930 if (curproxy->uri_auth) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003931 ha_warning("'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003932 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003933 err_code |= ERR_WARN;
3934 curproxy->uri_auth = NULL;
3935 }
3936
Willy Tarreaude7dc882017-03-10 11:49:21 +01003937 if (curproxy->capture_name) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003938 ha_warning("'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003939 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003940 err_code |= ERR_WARN;
3941 }
3942
3943 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003944 ha_warning("'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003945 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003946 err_code |= ERR_WARN;
3947 }
3948
3949 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003950 ha_warning("'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003951 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003952 err_code |= ERR_WARN;
3953 }
3954
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003955 if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003956 ha_warning("'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003957 proxy_type_str(curproxy), curproxy->id);
3958 err_code |= ERR_WARN;
3959 }
3960
Willy Tarreaude7dc882017-03-10 11:49:21 +01003961 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003962 ha_warning("'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003963 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003964 err_code |= ERR_WARN;
3965 }
3966
Willy Tarreau87cf5142011-08-19 22:57:24 +02003967 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003968 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003969 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003970 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003971 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003972 }
3973
3974 if (curproxy->options & PR_O_ORGTO) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003975 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003976 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003977 err_code |= ERR_WARN;
3978 curproxy->options &= ~PR_O_ORGTO;
3979 }
3980
3981 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3982 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3983 (curproxy->cap & cfg_opts[optnum].cap) &&
3984 (curproxy->options & cfg_opts[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003985 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003986 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003987 err_code |= ERR_WARN;
3988 curproxy->options &= ~cfg_opts[optnum].val;
3989 }
3990 }
3991
3992 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3993 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3994 (curproxy->cap & cfg_opts2[optnum].cap) &&
3995 (curproxy->options2 & cfg_opts2[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003996 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003997 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003998 err_code |= ERR_WARN;
3999 curproxy->options2 &= ~cfg_opts2[optnum].val;
4000 }
4001 }
Willy Tarreaubce70882009-09-07 11:51:47 +02004002
Willy Tarreau29fbe512015-08-20 19:35:14 +02004003#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01004004 if (curproxy->conn_src.bind_hdr_occ) {
4005 curproxy->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02004006 ha_warning("%s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004007 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02004008 err_code |= ERR_WARN;
4009 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02004010#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01004011 }
4012
Willy Tarreaubaaee002006-06-26 02:48:02 +02004013 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01004014 * ensure that we're not cross-dressing a TCP server into HTTP.
4015 */
4016 newsrv = curproxy->srv;
4017 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01004018 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004019 ha_alert("%s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004020 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02004021 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01004022 }
Willy Tarreaubce70882009-09-07 11:51:47 +02004023
Willy Tarreau0cec3312011-10-31 13:49:26 +01004024 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004025 ha_warning("%s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004026 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01004027 err_code |= ERR_WARN;
4028 }
4029
Willy Tarreauc93cd162014-05-13 15:54:22 +02004030 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004031 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 +01004032 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02004033 err_code |= ERR_WARN;
4034 }
4035
Willy Tarreau29fbe512015-08-20 19:35:14 +02004036#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01004037 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
4038 newsrv->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02004039 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 +01004040 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02004041 err_code |= ERR_WARN;
4042 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02004043#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01004044
Willy Tarreau46deab62018-04-28 07:18:15 +02004045 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
4046 curproxy->options &= ~PR_O_REUSE_MASK;
4047
Willy Tarreau21d2af32008-02-14 20:25:24 +01004048 newsrv = newsrv->next;
4049 }
4050
Christopher Fauletd7c91962015-04-30 11:48:27 +02004051 /* Check filter configuration, if any */
4052 cfgerr += flt_check(curproxy);
4053
Willy Tarreauc1a21672009-08-16 22:37:44 +02004054 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02004055 if (!curproxy->accept)
4056 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02004057
Christopher Fauletee08d6c2021-10-13 15:40:15 +02004058 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
4059 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02004060 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02004061
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004062 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02004063 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004064 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004065 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004066
William Lallemandcf62f7e2018-10-26 14:47:40 +02004067 if (curproxy->mode == PR_MODE_CLI) {
4068 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
4069 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
4070 }
4071
Willy Tarreauc1a21672009-08-16 22:37:44 +02004072 /* both TCP and HTTP must check switching rules */
4073 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02004074
4075 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01004076 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01004077 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
4078 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 +02004079 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004080 }
4081
4082 if (curproxy->cap & PR_CAP_BE) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02004083 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
4084 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02004085 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
4086
Christopher Fauletee08d6c2021-10-13 15:40:15 +02004087 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules) ||
4088 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_rep.inspect_rules)))
Emeric Brun97679e72010-09-23 17:56:44 +02004089 curproxy->be_rsp_ana |= AN_RES_INSPECT;
4090
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004091 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02004092 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004093 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004094 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004095
4096 /* If the backend does requires RDP cookie persistence, we have to
4097 * enable the corresponding analyser.
4098 */
4099 if (curproxy->options2 & PR_O2_RDPC_PRST)
4100 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02004101
4102 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01004103 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01004104 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
4105 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 +02004106 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004107 }
Christopher Fauleta717b992018-04-10 14:43:00 +02004108
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004109 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02004110 * attached to the current proxy */
4111 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
4112 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01004113 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02004114
Willy Tarreau730cc022022-05-20 18:07:06 +02004115 if (!bind_conf->mux_proto) {
4116 /* No protocol was specified. If we're using QUIC at the transport
4117 * layer, we'll instantiate it as a mux as well. If QUIC is not
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05004118 * compiled in, this will remain NULL.
Willy Tarreau730cc022022-05-20 18:07:06 +02004119 */
4120 if (bind_conf->xprt && bind_conf->xprt == xprt_get(XPRT_QUIC))
4121 bind_conf->mux_proto = get_mux_proto(ist("quic"));
4122 }
4123
Christopher Fauleta717b992018-04-10 14:43:00 +02004124 if (!bind_conf->mux_proto)
4125 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01004126
4127 /* it is possible that an incorrect mux was referenced
4128 * due to the proxy's mode not being taken into account
4129 * on first pass. Let's adjust it now.
4130 */
4131 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
4132
4133 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004134 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
Christopher Fauleta717b992018-04-10 14:43:00 +02004135 proxy_type_str(curproxy), curproxy->id,
4136 (int)bind_conf->mux_proto->token.len,
4137 bind_conf->mux_proto->token.ptr,
4138 bind_conf->arg, bind_conf->file, bind_conf->line);
4139 cfgerr++;
Willy Tarreaucac619b2022-05-20 17:53:32 +02004140 } else {
4141 if ((mux_ent->mux->flags & MX_FL_FRAMED) && !(bind_conf->options & BC_O_USE_SOCK_DGRAM)) {
4142 ha_alert("%s '%s' : frame-based MUX protocol '%.*s' is incompatible with stream transport of 'bind %s' at [%s:%d].\n",
4143 proxy_type_str(curproxy), curproxy->id,
4144 (int)bind_conf->mux_proto->token.len,
4145 bind_conf->mux_proto->token.ptr,
4146 bind_conf->arg, bind_conf->file, bind_conf->line);
4147 cfgerr++;
4148 }
4149 else if (!(mux_ent->mux->flags & MX_FL_FRAMED) && !(bind_conf->options & BC_O_USE_SOCK_STREAM)) {
4150 ha_alert("%s '%s' : stream-based MUX protocol '%.*s' is incompatible with framed transport of 'bind %s' at [%s:%d].\n",
4151 proxy_type_str(curproxy), curproxy->id,
4152 (int)bind_conf->mux_proto->token.len,
4153 bind_conf->mux_proto->token.ptr,
4154 bind_conf->arg, bind_conf->file, bind_conf->line);
4155 cfgerr++;
4156 }
Christopher Fauleta717b992018-04-10 14:43:00 +02004157 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01004158
4159 /* update the mux */
4160 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02004161 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004162 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
4163 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01004164 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004165
4166 if (!newsrv->mux_proto)
4167 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01004168
4169 /* it is possible that an incorrect mux was referenced
4170 * due to the proxy's mode not being taken into account
4171 * on first pass. Let's adjust it now.
4172 */
4173 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
4174
4175 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004176 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004177 proxy_type_str(curproxy), curproxy->id,
4178 (int)newsrv->mux_proto->token.len,
4179 newsrv->mux_proto->token.ptr,
4180 newsrv->id, newsrv->conf.file, newsrv->conf.line);
4181 cfgerr++;
4182 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01004183
4184 /* update the mux */
4185 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004186 }
Amaury Denoyellef2c27a52021-07-23 15:46:46 +02004187
4188 /* Allocate default tcp-check rules for proxies without
4189 * explicit rules.
4190 */
4191 if (curproxy->cap & PR_CAP_BE) {
4192 if (!(curproxy->options2 & PR_O2_CHK_ANY)) {
4193 struct tcpcheck_ruleset *rs = NULL;
4194 struct tcpcheck_rules *rules = &curproxy->tcpcheck_rules;
4195
4196 curproxy->options2 |= PR_O2_TCPCHK_CHK;
4197
4198 rs = find_tcpcheck_ruleset("*tcp-check");
4199 if (!rs) {
4200 rs = create_tcpcheck_ruleset("*tcp-check");
4201 if (rs == NULL) {
4202 ha_alert("config: %s '%s': out of memory.\n",
4203 proxy_type_str(curproxy), curproxy->id);
4204 cfgerr++;
4205 }
4206 }
4207
4208 free_tcpcheck_vars(&rules->preset_vars);
4209 rules->list = &rs->rules;
4210 rules->flags = 0;
4211 }
4212 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01004213 }
Willy Tarreau835daa12019-02-07 14:46:29 +01004214
Emeric Brun3b68b602022-08-18 15:53:21 +02004215 /*
4216 * We have just initialized the main proxies list
4217 * we must also configure the log-forward proxies list
4218 */
4219 if (init_proxies_list == proxies_list) {
4220 init_proxies_list = cfg_log_forward;
Emeric Brun8032a272022-08-22 10:25:11 +02004221 /* check if list is not null to avoid infinite loop */
4222 if (init_proxies_list)
4223 goto init_proxies_list_stage1;
Emeric Brun3b68b602022-08-18 15:53:21 +02004224 }
4225
Emeric Brund6e581d2022-09-13 16:16:30 +02004226 if (init_proxies_list == cfg_log_forward) {
4227 init_proxies_list = sink_proxies_list;
4228 /* check if list is not null to avoid infinite loop */
4229 if (init_proxies_list)
4230 goto init_proxies_list_stage1;
4231 }
4232
Willy Tarreau4cdac162021-03-05 10:48:42 +01004233 /***********************************************************/
4234 /* At this point, target names have already been resolved. */
4235 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01004236
Willy Tarreau4cdac162021-03-05 10:48:42 +01004237 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01004238
Willy Tarreau4cdac162021-03-05 10:48:42 +01004239 list_for_each_entry(newsrv, &servers_list, global_list) {
4240 /* initialize idle conns lists */
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004241 if (srv_init_per_thr(newsrv) == -1) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004242 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
4243 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01004244 cfgerr++;
4245 continue;
4246 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004247
Willy Tarreau4cdac162021-03-05 10:48:42 +01004248 if (newsrv->max_idle_conns != 0) {
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004249 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
4250 if (!newsrv->curr_idle_thr) {
4251 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
4252 newsrv->conf.file, newsrv->conf.line, newsrv->id);
4253 cfgerr++;
4254 continue;
4255 }
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02004256
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004257 }
4258 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004259
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004260 idle_conn_task = task_new_anywhere();
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004261 if (!idle_conn_task) {
4262 ha_alert("parsing : failed to allocate global idle connection task.\n");
4263 cfgerr++;
4264 }
4265 else {
4266 idle_conn_task->process = srv_cleanup_idle_conns;
4267 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004268
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004269 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004270 idle_conns[i].cleanup_task = task_new_on(i);
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004271 if (!idle_conns[i].cleanup_task) {
4272 ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i);
4273 cfgerr++;
4274 break;
Willy Tarreau4cdac162021-03-05 10:48:42 +01004275 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004276
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004277 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
4278 idle_conns[i].cleanup_task->context = NULL;
4279 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
4280 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Willy Tarreau835daa12019-02-07 14:46:29 +01004281 }
Willy Tarreau419ead82014-09-16 13:41:21 +02004282 }
4283
Willy Tarreau419ead82014-09-16 13:41:21 +02004284 /* perform the final checks before creating tasks */
4285
Emeric Brun3b68b602022-08-18 15:53:21 +02004286 /* starting to initialize the main proxies list */
4287 init_proxies_list = proxies_list;
4288
4289init_proxies_list_stage2:
4290 for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02004291 struct listener *listener;
4292 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02004293
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004294 /* Configure SSL for each bind line.
4295 * Note: if configuration fails at some point, the ->ctx member
4296 * remains NULL so that listeners can later detach.
4297 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004298 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01004299 if (bind_conf->xprt->prepare_bind_conf &&
4300 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004301 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004302 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004303
Willy Tarreaue6b98942007-10-29 01:09:36 +01004304 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004305 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02004306 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004307 if (!listener->luid) {
4308 /* listener ID not set, use automatic numbering with first
4309 * spare entry starting with next_luid.
4310 */
4311 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
4312 listener->conf.id.key = listener->luid = next_id;
4313 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004314 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01004315 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004316
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004317 /* enable separate counters */
4318 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01004319 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004320 if (!listener->name)
4321 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004322 }
Willy Tarreau81796be2012-09-22 19:11:47 +02004323
Willy Tarreaue6b98942007-10-29 01:09:36 +01004324 if (curproxy->options & PR_O_TCP_NOLING)
4325 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01004326 if (!listener->maxaccept)
Willy Tarreau66161322021-02-19 15:50:27 +01004327 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau16a21472012-11-19 12:39:59 +01004328
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01004329 /* listener accept callback */
4330 listener->accept = session_accept_fd;
4331#ifdef USE_QUIC
4332 /* override the accept callback for QUIC listeners. */
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01004333 if (listener->flags & LI_F_QUIC_LISTENER) {
Amaury Denoyelle996ca7d2022-11-14 16:17:13 +01004334 if (!global.cluster_secret) {
Frédéric Lécaille372508c2022-05-06 08:53:16 +02004335 diag_no_cluster_secret = 1;
Amaury Denoyelle996ca7d2022-11-14 16:17:13 +01004336 if (listener->bind_conf->options & BC_O_QUIC_FORCE_RETRY) {
4337 ha_alert("QUIC listener with quic-force-retry requires global cluster-secret to be set.\n");
4338 cfgerr++;
4339 }
4340 }
Amaury Denoyelle0aba11e2022-09-29 18:31:24 +02004341
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01004342 li_init_per_thr(listener);
4343 }
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01004344#endif
Amaury Denoyelle57af0692022-01-18 15:39:02 +01004345
Willy Tarreauc1a21672009-08-16 22:37:44 +02004346 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01004347 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01004348
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02004349 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02004350 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02004351
Willy Tarreau620408f2016-10-21 16:37:51 +02004352 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
4353 listener->options |= LI_O_TCP_L5_RULES;
4354
Willy Tarreau9ea05a72009-06-14 12:07:01 +02004355 /* smart accept mode is automatic in HTTP mode */
4356 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau11ba4042022-05-20 15:56:32 +02004357 ((curproxy->mode == PR_MODE_HTTP || (listener->bind_conf->options & BC_O_USE_SSL)) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02004358 !(curproxy->no_options2 & PR_O2_SMARTACC)))
4359 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01004360 }
4361
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004362 /* Release unused SSL configs */
4363 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau11ba4042022-05-20 15:56:32 +02004364 if (!(bind_conf->options & BC_O_USE_SSL) && bind_conf->xprt->destroy_bind_conf)
Willy Tarreau795cdab2016-12-22 17:30:54 +01004365 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004366 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004367
Willy Tarreau918ff602011-07-25 16:33:49 +02004368 /* create the task associated with the proxy */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004369 curproxy->task = task_new_anywhere();
Willy Tarreau918ff602011-07-25 16:33:49 +02004370 if (curproxy->task) {
4371 curproxy->task->context = curproxy;
4372 curproxy->task->process = manage_proxy;
Christopher Faulet56717802021-10-13 10:10:09 +02004373 curproxy->flags |= PR_FL_READY;
Willy Tarreau918ff602011-07-25 16:33:49 +02004374 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004375 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
4376 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02004377 cfgerr++;
4378 }
Willy Tarreaub369a042014-09-16 13:21:03 +02004379 }
4380
Emeric Brun3b68b602022-08-18 15:53:21 +02004381 /*
4382 * We have just initialized the main proxies list
4383 * we must also configure the log-forward proxies list
4384 */
4385 if (init_proxies_list == proxies_list) {
4386 init_proxies_list = cfg_log_forward;
Emeric Brun8032a272022-08-22 10:25:11 +02004387 /* check if list is not null to avoid infinite loop */
4388 if (init_proxies_list)
4389 goto init_proxies_list_stage2;
Emeric Brun3b68b602022-08-18 15:53:21 +02004390 }
4391
Amaury Denoyelle28ea31c2022-11-14 16:18:46 +01004392 if (diag_no_cluster_secret) {
4393 ha_diag_warning("Generating a random cluster secret. "
4394 "You should define your own one in the configuration to ensure consistency "
4395 "after reload/restart or across your whole cluster.\n");
4396 }
Frédéric Lécaille372508c2022-05-06 08:53:16 +02004397
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004398 /*
4399 * Recount currently required checks.
4400 */
4401
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004402 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004403 int optnum;
4404
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004405 for (optnum = 0; cfg_opts[optnum].name; optnum++)
4406 if (curproxy->options & cfg_opts[optnum].val)
4407 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004408
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004409 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
4410 if (curproxy->options2 & cfg_opts2[optnum].val)
4411 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004412 }
4413
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004414 if (cfg_peers) {
4415 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02004416 struct peer *p, *pb;
4417
Willy Tarreau1e273012015-05-01 19:15:17 +02004418 /* Remove all peers sections which don't have a valid listener,
4419 * which are not used by any table, or which are bound to more
4420 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02004421 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004422 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02004423 while (*last) {
Frédéric Lécaille36d15652022-10-17 14:58:19 +02004424 struct peer *peer;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004425 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02004426 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004427
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02004428 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004429 /* the "disabled" keyword was present */
4430 if (curpeers->peers_fe)
4431 stop_proxy(curpeers->peers_fe);
4432 curpeers->peers_fe = NULL;
4433 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02004434 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004435 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
4436 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004437 if (curpeers->peers_fe)
4438 stop_proxy(curpeers->peers_fe);
4439 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004440 }
4441 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004442 /* Initializes the transport layer of the server part of all the peers belonging to
4443 * <curpeers> section if required.
4444 * Note that ->srv is used by the local peer of a new process to connect to the local peer
4445 * of an old process.
4446 */
Christopher Faulet56717802021-10-13 10:10:09 +02004447 curpeers->peers_fe->flags |= PR_FL_READY;
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004448 p = curpeers->remote;
4449 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004450 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004451 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 +01004452 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
4453 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004454 p = p->next;
4455 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004456 /* Configure the SSL bindings of the local peer if required. */
4457 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
4458 struct list *l;
4459 struct bind_conf *bind_conf;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004460 struct listener *li;
4461 unsigned long mask;
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004462
4463 l = &curpeers->peers_fe->conf.bind;
4464 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
Willy Tarreaud2494e02022-07-05 16:00:56 +02004465
Christopher Faulet1b6fa7f2022-07-26 19:03:51 +02004466 if (curpeers->local->srv) {
4467 if (curpeers->local->srv->use_ssl == 1 && !(bind_conf->options & BC_O_USE_SSL)) {
4468 ha_warning("Peers section '%s': local peer have a non-SSL listener and a SSL server configured at line %s:%d.\n",
4469 curpeers->peers_fe->id, curpeers->local->conf.file, curpeers->local->conf.line);
4470 }
4471 else if (curpeers->local->srv->use_ssl != 1 && (bind_conf->options & BC_O_USE_SSL)) {
4472 ha_warning("Peers section '%s': local peer have a SSL listener and a non-SSL server configured at line %s:%d.\n",
4473 curpeers->peers_fe->id, curpeers->local->conf.file, curpeers->local->conf.line);
4474 }
4475 }
4476
Willy Tarreaud2494e02022-07-05 16:00:56 +02004477 err = NULL;
4478 if (thread_resolve_group_mask(bind_conf->bind_tgroup, bind_conf->bind_thread,
4479 &bind_conf->bind_tgroup, &bind_conf->bind_thread, &err) < 0) {
4480 ha_alert("Peers section '%s': %s in 'bind %s' at [%s:%d].\n",
4481 curpeers->peers_fe->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
4482 free(err);
4483 cfgerr++;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004484 } else if (!((mask = bind_conf->bind_thread) & ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled)) {
Willy Tarreaud2494e02022-07-05 16:00:56 +02004485 unsigned long new_mask = 0;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004486 ulong thr_mask = ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004487
4488 while (mask) {
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004489 new_mask |= mask & thr_mask;
4490 mask >>= ha_tgroup_info[bind_conf->bind_tgroup-1].count;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004491 }
4492
4493 bind_conf->bind_thread = new_mask;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004494 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",
4495 curpeers->peers_fe->id, bind_conf->arg, bind_conf->file, bind_conf->line,
4496 bind_conf->bind_tgroup, ha_tgroup_info[bind_conf->bind_tgroup-1].count, new_mask);
Willy Tarreaud2494e02022-07-05 16:00:56 +02004497 }
4498
4499 /* apply thread masks and groups to all receivers */
4500 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
4501 li->rx.bind_thread = bind_conf->bind_thread;
4502 li->rx.bind_tgroup = bind_conf->bind_tgroup;
4503 }
4504
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004505 if (bind_conf->xprt->prepare_bind_conf &&
4506 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4507 cfgerr++;
4508 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004509 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004510 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4511 curpeers->id);
4512 cfgerr++;
4513 break;
4514 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004515 last = &curpeers->next;
Frédéric Lécaille36d15652022-10-17 14:58:19 +02004516
4517 /* Ignore the peer shard greater than the number of peer shard for this section.
4518 * Also ignore the peer shard of the local peer.
4519 */
4520 for (peer = curpeers->remote; peer; peer = peer->next) {
4521 if (peer == curpeers->local) {
4522 if (peer->srv->shard) {
4523 ha_warning("Peers section '%s': shard ignored for '%s' local peer\n",
4524 curpeers->id, peer->id);
4525 peer->srv->shard = 0;
4526 }
4527 }
4528 else if (peer->srv->shard > curpeers->nb_shards) {
4529 ha_warning("Peers section '%s': shard ignored for '%s' local peer because "
4530 "%d shard value is greater than the section number of shards (%d)\n",
4531 curpeers->id, peer->id, peer->srv->shard, curpeers->nb_shards);
4532 peer->srv->shard = 0;
4533 }
4534 }
4535
Willy Tarreau122541c2011-09-07 21:24:49 +02004536 continue;
4537 }
4538
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004539 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004540 p = curpeers->remote;
4541 while (p) {
4542 pb = p->next;
4543 free(p->id);
4544 free(p);
4545 p = pb;
4546 }
4547
4548 /* Destroy and unlink this curpeers section.
4549 * Note: curpeers is backed up into *last.
4550 */
4551 free(curpeers->id);
4552 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004553 /* Reset any refereance to this peers section in the list of stick-tables */
4554 for (t = stktables_list; t; t = t->next) {
4555 if (t->peers.p && t->peers.p == *last)
4556 t->peers.p = NULL;
4557 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004558 free(*last);
4559 *last = curpeers;
4560 }
4561 }
4562
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004563 for (t = stktables_list; t; t = t->next) {
4564 if (t->proxy)
4565 continue;
4566 if (!stktable_init(t)) {
4567 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4568 cfgerr++;
4569 }
4570 }
4571
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004572 /* initialize stick-tables on backend capable proxies. This must not
4573 * be done earlier because the data size may be discovered while parsing
4574 * other proxies.
4575 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004576 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004577 if ((curproxy->flags & PR_FL_DISABLED) || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004578 continue;
4579
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004580 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004581 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004582 cfgerr++;
4583 }
4584 }
4585
Simon Horman0d16a402015-01-30 11:22:58 +09004586 if (mailers) {
4587 struct mailers *curmailers = mailers, **last;
4588 struct mailer *m, *mb;
4589
4590 /* Remove all mailers sections which don't have a valid listener.
4591 * This can happen when a mailers section is never referenced.
4592 */
4593 last = &mailers;
4594 while (*last) {
4595 curmailers = *last;
4596 if (curmailers->users) {
4597 last = &curmailers->next;
4598 continue;
4599 }
4600
Christopher Faulet767a84b2017-11-24 16:50:31 +01004601 ha_warning("Removing incomplete section 'mailers %s'.\n",
4602 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004603
4604 m = curmailers->mailer_list;
4605 while (m) {
4606 mb = m->next;
4607 free(m->id);
4608 free(m);
4609 m = mb;
4610 }
4611
4612 /* Destroy and unlink this curmailers section.
4613 * Note: curmailers is backed up into *last.
4614 */
4615 free(curmailers->id);
4616 curmailers = curmailers->next;
4617 free(*last);
4618 *last = curmailers;
4619 }
4620 }
4621
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004622 /* Update server_state_file_name to backend name if backend is supposed to use
4623 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004624 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004625 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4626 curproxy->server_state_file_name == NULL)
4627 curproxy->server_state_file_name = strdup(curproxy->id);
4628 }
4629
Emeric Brun750fe792020-12-23 16:51:12 +01004630 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06004631 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004632 ha_warning("resolvers '%s' [%s:%d] has no nameservers configured!\n",
Ben Draut054fbee2018-04-13 15:43:04 -06004633 curr_resolvers->id, curr_resolvers->conf.file,
4634 curr_resolvers->conf.line);
4635 err_code |= ERR_WARN;
4636 }
4637 }
4638
William Lallemand48b4bb42017-10-23 14:36:34 +02004639 list_for_each_entry(postparser, &postparsers, list) {
4640 if (postparser->func)
4641 cfgerr += postparser->func();
4642 }
4643
Willy Tarreaubb925012009-07-23 13:36:36 +02004644 if (cfgerr > 0)
4645 err_code |= ERR_ALERT | ERR_FATAL;
4646 out:
4647 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004648}
4649
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004650/*
4651 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4652 * parsing sessions.
4653 */
4654void cfg_register_keywords(struct cfg_kw_list *kwl)
4655{
Willy Tarreau2b718102021-04-21 07:32:39 +02004656 LIST_APPEND(&cfg_keywords.list, &kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004657}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004658
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004659/*
4660 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4661 */
4662void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4663{
Willy Tarreau2b718102021-04-21 07:32:39 +02004664 LIST_DELETE(&kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004665 LIST_INIT(&kwl->list);
4666}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004667
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004668/* this function register new section in the haproxy configuration file.
4669 * <section_name> is the name of this new section and <section_parser>
4670 * is the called parser. If two section declaration have the same name,
4671 * only the first declared is used.
4672 */
4673int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004674 int (*section_parser)(const char *, int, char **, int),
4675 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004676{
4677 struct cfg_section *cs;
4678
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004679 list_for_each_entry(cs, &sections, list) {
4680 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004681 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004682 return 0;
4683 }
4684 }
4685
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004686 cs = calloc(1, sizeof(*cs));
4687 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004688 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004689 return 0;
4690 }
4691
4692 cs->section_name = section_name;
4693 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004694 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004695
Willy Tarreau2b718102021-04-21 07:32:39 +02004696 LIST_APPEND(&sections, &cs->list);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004697
4698 return 1;
4699}
4700
William Lallemand48b4bb42017-10-23 14:36:34 +02004701/* this function register a new function which will be called once the haproxy
4702 * configuration file has been parsed. It's useful to check dependencies
4703 * between sections or to resolve items once everything is parsed.
4704 */
4705int cfg_register_postparser(char *name, int (*func)())
4706{
4707 struct cfg_postparser *cp;
4708
4709 cp = calloc(1, sizeof(*cp));
4710 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004711 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004712 return 0;
4713 }
4714 cp->name = name;
4715 cp->func = func;
4716
Willy Tarreau2b718102021-04-21 07:32:39 +02004717 LIST_APPEND(&postparsers, &cp->list);
William Lallemand48b4bb42017-10-23 14:36:34 +02004718
4719 return 1;
4720}
4721
Willy Tarreaubaaee002006-06-26 02:48:02 +02004722/*
David Carlier845efb52015-09-25 11:49:18 +01004723 * free all config section entries
4724 */
4725void cfg_unregister_sections(void)
4726{
4727 struct cfg_section *cs, *ics;
4728
4729 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004730 LIST_DELETE(&cs->list);
David Carlier845efb52015-09-25 11:49:18 +01004731 free(cs);
4732 }
4733}
4734
Christopher Faulet7110b402016-10-26 11:09:44 +02004735void cfg_backup_sections(struct list *backup_sections)
4736{
4737 struct cfg_section *cs, *ics;
4738
4739 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004740 LIST_DELETE(&cs->list);
4741 LIST_APPEND(backup_sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004742 }
4743}
4744
4745void cfg_restore_sections(struct list *backup_sections)
4746{
4747 struct cfg_section *cs, *ics;
4748
4749 list_for_each_entry_safe(cs, ics, backup_sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004750 LIST_DELETE(&cs->list);
4751 LIST_APPEND(&sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004752 }
4753}
4754
Willy Tarreauca1acd62022-03-29 15:02:44 +02004755/* dumps all registered keywords by section on stdout */
4756void cfg_dump_registered_keywords()
4757{
4758 const char* sect_names[] = { "", "global", "listen", "userlist", "peers", 0 };
4759 int section;
4760 int index;
4761
4762 for (section = 1; sect_names[section]; section++) {
4763 struct cfg_kw_list *kwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004764 const struct cfg_keyword *kwp, *kwn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004765
4766 printf("%s\n", sect_names[section]);
Willy Tarreaud9058262022-03-30 11:21:32 +02004767
4768 for (kwn = kwp = NULL;; kwp = kwn) {
4769 list_for_each_entry(kwl, &cfg_keywords.list, list) {
4770 for (index = 0; kwl->kw[index].kw != NULL; index++)
4771 if (kwl->kw[index].section == section &&
4772 strordered(kwp ? kwp->kw : NULL, kwl->kw[index].kw, kwn != kwp ? kwn->kw : NULL))
4773 kwn = &kwl->kw[index];
4774 }
4775 if (kwn == kwp)
4776 break;
4777 printf("\t%s\n", kwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004778 }
4779
4780 if (section == CFG_LISTEN) {
4781 /* there are plenty of other keywords there */
4782 extern struct list tcp_req_conn_keywords, tcp_req_sess_keywords,
4783 tcp_req_cont_keywords, tcp_res_cont_keywords;
4784 extern struct bind_kw_list bind_keywords;
4785 extern struct ssl_bind_kw ssl_bind_kws[] __maybe_unused;
4786 extern struct srv_kw_list srv_keywords;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004787 struct bind_kw_list *bkwl;
4788 struct srv_kw_list *skwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004789 const struct bind_kw *bkwp, *bkwn;
4790 const struct srv_kw *skwp, *skwn;
4791 const struct ssl_bind_kw *sbkwp __maybe_unused, *sbkwn __maybe_unused;
4792 const struct cfg_opt *coptp, *coptn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004793
Willy Tarreaud9058262022-03-30 11:21:32 +02004794 for (bkwn = bkwp = NULL;; bkwp = bkwn) {
4795 list_for_each_entry(bkwl, &bind_keywords.list, list) {
4796 for (index = 0; bkwl->kw[index].kw != NULL; index++)
4797 if (strordered(bkwp ? bkwp->kw : NULL,
4798 bkwl->kw[index].kw,
4799 bkwn != bkwp ? bkwn->kw : NULL))
4800 bkwn = &bkwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004801 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004802 if (bkwn == bkwp)
4803 break;
4804
4805 if (!bkwn->skip)
4806 printf("\tbind <addr> %s\n", bkwn->kw);
4807 else
4808 printf("\tbind <addr> %s +%d\n", bkwn->kw, bkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004809 }
4810
4811#if defined(USE_OPENSSL)
Willy Tarreaud9058262022-03-30 11:21:32 +02004812 for (sbkwn = sbkwp = NULL;; sbkwp = sbkwn) {
4813 for (index = 0; ssl_bind_kws[index].kw != NULL; index++) {
4814 if (strordered(sbkwp ? sbkwp->kw : NULL,
4815 ssl_bind_kws[index].kw,
4816 sbkwn != sbkwp ? sbkwn->kw : NULL))
4817 sbkwn = &ssl_bind_kws[index];
4818 }
4819 if (sbkwn == sbkwp)
4820 break;
4821 if (!sbkwn->skip)
4822 printf("\tbind <addr> ssl %s\n", sbkwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004823 else
Willy Tarreaud9058262022-03-30 11:21:32 +02004824 printf("\tbind <addr> ssl %s +%d\n", sbkwn->kw, sbkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004825 }
4826#endif
4827
Willy Tarreaud9058262022-03-30 11:21:32 +02004828 for (skwn = skwp = NULL;; skwp = skwn) {
4829 list_for_each_entry(skwl, &srv_keywords.list, list) {
4830 for (index = 0; skwl->kw[index].kw != NULL; index++)
4831 if (strordered(skwp ? skwp->kw : NULL,
4832 skwl->kw[index].kw,
4833 skwn != skwp ? skwn->kw : NULL))
4834 skwn = &skwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004835 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004836 if (skwn == skwp)
4837 break;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004838
Willy Tarreaud9058262022-03-30 11:21:32 +02004839 if (!skwn->skip)
4840 printf("\tserver <name> <addr> %s\n", skwn->kw);
4841 else
4842 printf("\tserver <name> <addr> %s +%d\n", skwn->kw, skwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004843 }
4844
Willy Tarreaud9058262022-03-30 11:21:32 +02004845 for (coptn = coptp = NULL;; coptp = coptn) {
4846 for (index = 0; cfg_opts[index].name; index++)
4847 if (strordered(coptp ? coptp->name : NULL,
4848 cfg_opts[index].name,
4849 coptn != coptp ? coptn->name : NULL))
4850 coptn = &cfg_opts[index];
4851
4852 for (index = 0; cfg_opts2[index].name; index++)
4853 if (strordered(coptp ? coptp->name : NULL,
4854 cfg_opts2[index].name,
4855 coptn != coptp ? coptn->name : NULL))
4856 coptn = &cfg_opts2[index];
4857 if (coptn == coptp)
4858 break;
4859
4860 printf("\toption %s [ ", coptn->name);
4861 if (coptn->cap & PR_CAP_FE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004862 printf("FE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004863 if (coptn->cap & PR_CAP_BE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004864 printf("BE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004865 if (coptn->mode == PR_MODE_HTTP)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004866 printf("HTTP ");
4867 printf("]\n");
4868 }
4869
Willy Tarreaud9058262022-03-30 11:21:32 +02004870 dump_act_rules(&tcp_req_conn_keywords, "\ttcp-request connection ");
4871 dump_act_rules(&tcp_req_sess_keywords, "\ttcp-request session ");
4872 dump_act_rules(&tcp_req_cont_keywords, "\ttcp-request content ");
4873 dump_act_rules(&tcp_res_cont_keywords, "\ttcp-response content ");
4874 dump_act_rules(&http_req_keywords.list, "\thttp-request ");
4875 dump_act_rules(&http_res_keywords.list, "\thttp-response ");
4876 dump_act_rules(&http_after_res_keywords.list, "\thttp-after-response ");
Willy Tarreauca1acd62022-03-29 15:02:44 +02004877 }
4878 }
4879}
4880
Willy Tarreaue6552512018-11-26 11:33:13 +01004881/* these are the config sections handled by default */
4882REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4883REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4884REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4885REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4886REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4887REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4888REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4889REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4890REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004891
Willy Tarreau8a022d52021-04-27 20:29:11 +02004892static struct cfg_kw_list cfg_kws = {{ },{
4893 { CFG_GLOBAL, "default-path", cfg_parse_global_def_path },
4894 { /* END */ }
4895}};
4896
4897INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4898
David Carlier845efb52015-09-25 11:49:18 +01004899/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004900 * Local variables:
4901 * c-indent-level: 8
4902 * c-basic-offset: 8
4903 * End:
4904 */