blob: b98f64529561a3820b08394574765df7ff274152 [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 }
Willy Tarreau882f2482023-01-12 18:52:23 +0100717
718 bind_conf->maxaccept = 1;
Willy Tarreau30836152023-01-12 19:10:17 +0100719 bind_conf->accept = session_accept_fd;
Willy Tarreau882f2482023-01-12 18:52:23 +0100720
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100721 if (*args[0] == 'b') {
722 struct listener *l;
723
724 if (peer_line) {
725 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
726 err_code |= ERR_ALERT | ERR_FATAL;
727 goto out;
728 }
729
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200730 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
731 ha_alert("parsing [%s:%d] : One listener per \"peers\" section is authorized but another is already configured at [%s:%d].\n", file, linenum, bind_conf->file, bind_conf->line);
732 err_code |= ERR_FATAL;
733 }
734
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100735 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
736 if (errmsg && *errmsg) {
737 indent_msg(&errmsg, 2);
738 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
739 }
740 else
741 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
Willy Tarreau0d044102022-05-20 15:19:48 +0200742 file, linenum, args[0], args[1], args[1]);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100743 err_code |= ERR_FATAL;
744 goto out;
745 }
Emeric Brunca825782022-05-25 10:25:45 +0200746 /*
747 * Newly allocated listener is at the end of the list
748 */
749 l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100750 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
Willy Tarreau882f2482023-01-12 18:52:23 +0100950 bind_conf->maxaccept = 1;
Willy Tarreau30836152023-01-12 19:10:17 +0100951 bind_conf->accept = session_accept_fd;
Willy Tarreau882f2482023-01-12 18:52:23 +0100952
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200953 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
954 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);
955 err_code |= ERR_FATAL;
956 }
957
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100958 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
959 if (errmsg && *errmsg) {
960 indent_msg(&errmsg, 2);
961 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 +0100962 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100963 else
964 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
965 file, linenum, args[0], args[1], args[2]);
966 err_code |= ERR_FATAL;
967 goto out;
968 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100969
Emeric Brunca825782022-05-25 10:25:45 +0200970 /*
971 * Newly allocated listener is at the end of the list
972 */
973 l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100974 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100975 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100976 }
Frédéric Lécaille36d15652022-10-17 14:58:19 +0200977 else if (strcmp(args[0], "shards") == 0) {
978 char *endptr;
979
980 if (!*args[1]) {
981 ha_alert("parsing [%s:%d] : '%s' : missing value\n", file, linenum, args[0]);
982 err_code |= ERR_FATAL;
983 goto out;
984 }
985
986 curpeers->nb_shards = strtol(args[1], &endptr, 10);
987 if (*endptr != '\0') {
988 ha_alert("parsing [%s:%d] : '%s' : expects an integer argument, found '%s'\n",
989 file, linenum, args[0], args[1]);
990 err_code |= ERR_FATAL;
991 goto out;
992 }
993
994 if (!curpeers->nb_shards) {
995 ha_alert("parsing [%s:%d] : '%s' : expects a strictly positive integer argument\n",
996 file, linenum, args[0]);
997 err_code |= ERR_FATAL;
998 goto out;
999 }
1000
1001 nb_shards = curpeers->nb_shards;
1002 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001003 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001004 struct stktable *t, *other;
1005 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001006 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001007
1008 /* Line number and peer ID are updated only if this peer is the local one. */
Christopher Faulet244331f2022-07-25 15:10:44 +02001009 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001010 err_code |= ERR_ALERT | ERR_ABORT;
1011 goto out;
1012 }
1013
1014 other = stktable_find_by_name(args[1]);
1015 if (other) {
1016 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
1017 file, linenum, args[1],
1018 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
1019 other->proxy ? other->id : other->peers.p->id,
1020 other->conf.file, other->conf.line);
1021 err_code |= ERR_ALERT | ERR_FATAL;
1022 goto out;
1023 }
1024
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001025 /* Build the stick-table name, concatenating the "peers" section name
1026 * followed by a '/' character and the table name argument.
1027 */
1028 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001029 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001030 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
1031 file, linenum, args[0], args[1]);
1032 err_code |= ERR_ALERT | ERR_FATAL;
1033 goto out;
1034 }
1035
1036 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001037 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001038 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
1039 file, linenum, args[0], args[1]);
1040 err_code |= ERR_ALERT | ERR_FATAL;
1041 goto out;
1042 }
1043
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001044 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001045 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001046 if (!t || !id) {
1047 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
1048 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +02001049 free(t);
1050 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001051 err_code |= ERR_ALERT | ERR_FATAL;
1052 goto out;
1053 }
1054
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001055 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +02001056 if (err_code & ERR_FATAL) {
1057 free(t);
1058 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001059 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +02001060 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001061
1062 stktable_store_name(t);
1063 t->next = stktables_list;
1064 stktables_list = t;
1065 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001066 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001067 curpeers->disabled |= PR_FL_DISABLED;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001068 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001069 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02001070 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001071 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001072 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001073 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +02001074 err_code |= ERR_ALERT | ERR_FATAL;
1075 goto out;
1076 }
1077
1078out:
Willy Tarreau902636f2013-03-10 19:44:48 +01001079 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +02001080 return err_code;
1081}
1082
Baptiste Assmann325137d2015-04-13 23:40:55 +02001083/*
William Lallemand51097192015-04-14 16:35:22 +02001084 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001085 * Returns the error code, 0 if OK, or any combination of :
1086 * - ERR_ABORT: must abort ASAP
1087 * - ERR_FATAL: we can continue parsing but not start the service
1088 * - ERR_WARN: a warning has been emitted
1089 * - ERR_ALERT: an alert has been emitted
1090 * Only the two first ones can stop processing, the two others are just
1091 * indicators.
1092 */
1093int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1094{
1095 static struct mailers *curmailers = NULL;
1096 struct mailer *newmailer = NULL;
1097 const char *err;
1098 int err_code = 0;
1099 char *errmsg = NULL;
1100
1101 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1102 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001103 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001104 err_code |= ERR_ALERT | ERR_ABORT;
1105 goto out;
1106 }
1107
1108 err = invalid_char(args[1]);
1109 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001110 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1111 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001112 err_code |= ERR_ALERT | ERR_ABORT;
1113 goto out;
1114 }
1115
1116 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1117 /*
1118 * If there are two proxies with the same name only following
1119 * combinations are allowed:
1120 */
1121 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001122 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1123 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001124 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001125 }
1126 }
1127
Vincent Bernat02779b62016-04-03 13:48:43 +02001128 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001129 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001130 err_code |= ERR_ALERT | ERR_ABORT;
1131 goto out;
1132 }
1133
1134 curmailers->next = mailers;
1135 mailers = curmailers;
1136 curmailers->conf.file = strdup(file);
1137 curmailers->conf.line = linenum;
1138 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001139 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1140 * But need enough time so that timeouts don't occur
1141 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001142 }
1143 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1144 struct sockaddr_storage *sk;
1145 int port1, port2;
1146 struct protocol *proto;
1147
1148 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001149 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1150 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001151 err_code |= ERR_ALERT | ERR_FATAL;
1152 goto out;
1153 }
1154
1155 err = invalid_char(args[1]);
1156 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001157 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1158 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001159 err_code |= ERR_ALERT | ERR_FATAL;
1160 goto out;
1161 }
1162
Vincent Bernat02779b62016-04-03 13:48:43 +02001163 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001164 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001165 err_code |= ERR_ALERT | ERR_ABORT;
1166 goto out;
1167 }
1168
1169 /* the mailers are linked backwards first */
1170 curmailers->count++;
1171 newmailer->next = curmailers->mailer_list;
1172 curmailers->mailer_list = newmailer;
1173 newmailer->mailers = curmailers;
1174 newmailer->conf.file = strdup(file);
1175 newmailer->conf.line = linenum;
1176
1177 newmailer->id = strdup(args[1]);
1178
Willy Tarreau5fc93282020-09-16 18:25:03 +02001179 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001180 &errmsg, NULL, NULL,
1181 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 +09001182 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001183 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001184 err_code |= ERR_ALERT | ERR_FATAL;
1185 goto out;
1186 }
1187
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001188 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001189 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1190 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001191 err_code |= ERR_ALERT | ERR_FATAL;
1192 goto out;
1193 }
1194
Simon Horman0d16a402015-01-30 11:22:58 +09001195 newmailer->addr = *sk;
1196 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001197 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001198 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001199 }
1200 else if (strcmp(args[0], "timeout") == 0) {
1201 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001202 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1203 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001204 err_code |= ERR_ALERT | ERR_FATAL;
1205 goto out;
1206 }
1207 else if (strcmp(args[1], "mail") == 0) {
1208 const char *res;
1209 unsigned int timeout_mail;
1210 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001211 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1212 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001213 err_code |= ERR_ALERT | ERR_FATAL;
1214 goto out;
1215 }
1216 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001217 if (res == PARSE_TIME_OVER) {
1218 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1219 file, linenum, args[2], args[0], args[1]);
1220 err_code |= ERR_ALERT | ERR_FATAL;
1221 goto out;
1222 }
1223 else if (res == PARSE_TIME_UNDER) {
1224 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1225 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001226 err_code |= ERR_ALERT | ERR_FATAL;
1227 goto out;
1228 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001229 else if (res) {
1230 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1231 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001232 err_code |= ERR_ALERT | ERR_FATAL;
1233 goto out;
1234 }
1235 curmailers->timeout.mail = timeout_mail;
1236 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001237 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001238 file, linenum, args[0], args[1]);
1239 err_code |= ERR_ALERT | ERR_FATAL;
1240 goto out;
1241 }
1242 }
Simon Horman0d16a402015-01-30 11:22:58 +09001243 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001244 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001245 err_code |= ERR_ALERT | ERR_FATAL;
1246 goto out;
1247 }
1248
1249out:
1250 free(errmsg);
1251 return err_code;
1252}
1253
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001254void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001255{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001256 ha_free(&p->email_alert.mailers.name);
1257 ha_free(&p->email_alert.from);
1258 ha_free(&p->email_alert.to);
1259 ha_free(&p->email_alert.myhostname);
Simon Horman9dc49962015-01-30 11:22:59 +09001260}
1261
Willy Tarreaubaaee002006-06-26 02:48:02 +02001262
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001263int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001264cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1265{
Willy Tarreaue5733232019-05-22 19:24:06 +02001266#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001267 const char *err;
1268 const char *item = args[0];
1269
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001270 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001271 return 0;
1272 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001273 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001274 size_t idx = 1;
1275 const char *current;
1276 while (*(current = args[idx++])) {
1277 err = invalid_char(current);
1278 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001279 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1280 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001281 return ERR_ALERT | ERR_FATAL;
1282 }
1283
1284 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001285 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1286 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001287 return ERR_ALERT | ERR_FATAL;
1288 }
1289 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001290 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1291 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001292 return ERR_ALERT | ERR_FATAL;
1293 }
1294 }
1295 }
1296
1297 return 0;
1298#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001299 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1300 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001301 return ERR_ALERT | ERR_FATAL;
1302#endif
1303}
1304
1305int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001306cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1307{
1308
1309 int err_code = 0;
1310 const char *err;
1311
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001312 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001313 struct userlist *newul;
1314
1315 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001316 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1317 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001318 err_code |= ERR_ALERT | ERR_FATAL;
1319 goto out;
1320 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001321 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1322 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001323
1324 err = invalid_char(args[1]);
1325 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001326 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1327 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001328 err_code |= ERR_ALERT | ERR_FATAL;
1329 goto out;
1330 }
1331
1332 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001333 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001334 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1335 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001336 err_code |= ERR_WARN;
1337 goto out;
1338 }
1339
Vincent Bernat02779b62016-04-03 13:48:43 +02001340 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001341 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001342 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001343 err_code |= ERR_ALERT | ERR_ABORT;
1344 goto out;
1345 }
1346
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001347 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001348 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001349 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001350 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001351 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001352 goto out;
1353 }
1354
1355 newul->next = userlist;
1356 userlist = newul;
1357
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001358 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001359 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001360 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001361 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001362
1363 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001364 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1365 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001366 err_code |= ERR_ALERT | ERR_FATAL;
1367 goto out;
1368 }
1369
1370 err = invalid_char(args[1]);
1371 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001372 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1373 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001374 err_code |= ERR_ALERT | ERR_FATAL;
1375 goto out;
1376 }
1377
William Lallemand4ac9f542015-05-28 18:03:51 +02001378 if (!userlist)
1379 goto out;
1380
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001381 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001382 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001383 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1384 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001385 err_code |= ERR_ALERT;
1386 goto out;
1387 }
1388
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001389 ag = calloc(1, sizeof(*ag));
1390 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001391 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001392 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001393 goto out;
1394 }
1395
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001396 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001397 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001398 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001399 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001400 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001401 goto out;
1402 }
1403
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001404 cur_arg = 2;
1405
1406 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001407 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001408 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001409 cur_arg += 2;
1410 continue;
1411 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001412 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1413 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001414 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001415 free(ag->groupusers);
1416 free(ag->name);
1417 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001418 goto out;
1419 }
1420 }
1421
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001422 ag->next = userlist->groups;
1423 userlist->groups = ag;
1424
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001425 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001426 struct auth_users *newuser;
1427 int cur_arg;
1428
1429 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001430 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1431 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001432 err_code |= ERR_ALERT | ERR_FATAL;
1433 goto out;
1434 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001435 if (!userlist)
1436 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001437
1438 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001439 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001440 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1441 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001442 err_code |= ERR_ALERT;
1443 goto out;
1444 }
1445
Vincent Bernat02779b62016-04-03 13:48:43 +02001446 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001447 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001448 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001449 err_code |= ERR_ALERT | ERR_ABORT;
1450 goto out;
1451 }
1452
1453 newuser->user = strdup(args[1]);
1454
1455 newuser->next = userlist->users;
1456 userlist->users = newuser;
1457
1458 cur_arg = 2;
1459
1460 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001461 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001462#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001463 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001464 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1465 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001466 err_code |= ERR_ALERT | ERR_FATAL;
1467 goto out;
1468 }
1469#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001470 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1471 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001472 err_code |= ERR_ALERT;
1473#endif
1474 newuser->pass = strdup(args[cur_arg + 1]);
1475 cur_arg += 2;
1476 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001477 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001478 newuser->pass = strdup(args[cur_arg + 1]);
1479 newuser->flags |= AU_O_INSECURE;
1480 cur_arg += 2;
1481 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001482 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001483 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001484 cur_arg += 2;
1485 continue;
1486 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001487 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1488 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001489 err_code |= ERR_ALERT | ERR_FATAL;
1490 goto out;
1491 }
1492 }
1493 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001494 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 +01001495 err_code |= ERR_ALERT | ERR_FATAL;
1496 }
1497
1498out:
1499 return err_code;
1500}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001501
Christopher Faulet79bdef32016-11-04 22:36:15 +01001502int
1503cfg_parse_scope(const char *file, int linenum, char *line)
1504{
1505 char *beg, *end, *scope = NULL;
1506 int err_code = 0;
1507 const char *err;
1508
1509 beg = line + 1;
1510 end = strchr(beg, ']');
1511
1512 /* Detect end of scope declaration */
1513 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001514 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1515 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001516 err_code |= ERR_ALERT | ERR_FATAL;
1517 goto out;
1518 }
1519
1520 /* Get scope name and check its validity */
1521 scope = my_strndup(beg, end-beg);
1522 err = invalid_char(scope);
1523 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001524 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1525 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001526 err_code |= ERR_ALERT | ERR_ABORT;
1527 goto out;
1528 }
1529
1530 /* Be sure to have a scope declaration alone on its line */
1531 line = end+1;
1532 while (isspace((unsigned char)*line))
1533 line++;
1534 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001535 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1536 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001537 err_code |= ERR_ALERT | ERR_ABORT;
1538 goto out;
1539 }
1540
1541 /* We have a valid scope declaration, save it */
1542 free(cfg_scope);
1543 cfg_scope = scope;
1544 scope = NULL;
1545
1546 out:
1547 free(scope);
1548 return err_code;
1549}
1550
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001551int
1552cfg_parse_track_sc_num(unsigned int *track_sc_num,
1553 const char *arg, const char *end, char **errmsg)
1554{
1555 const char *p;
1556 unsigned int num;
1557
1558 p = arg;
1559 num = read_uint64(&arg, end);
1560
1561 if (arg != end) {
1562 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1563 return -1;
1564 }
1565
Willy Tarreau6c011712023-01-06 16:09:58 +01001566 if (num >= global.tune.nb_stk_ctr) {
1567 if (!global.tune.nb_stk_ctr)
1568 memprintf(errmsg, "%u track-sc number not usable, stick-counters "
1569 "are disabled by tune.stick-counters", num);
1570 else
1571 memprintf(errmsg, "%u track-sc number exceeding "
1572 "%d (tune.stick-counters-1) value", num, global.tune.nb_stk_ctr - 1);
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001573 return -1;
1574 }
1575
1576 *track_sc_num = num;
1577 return 0;
1578}
1579
Willy Tarreaubaaee002006-06-26 02:48:02 +02001580/*
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001581 * Detect a global section after a non-global one and output a diagnostic
1582 * warning.
1583 */
Christopher Faulet037e3f82022-11-18 15:46:06 +01001584static void check_section_position(char *section_name, const char *file, int linenum)
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001585{
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02001586 if (strcmp(section_name, "global") == 0) {
Christopher Faulet037e3f82022-11-18 15:46:06 +01001587 if ((global.mode & MODE_DIAG) && non_global_section_parsed == 1)
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001588 _ha_diag_warning("parsing [%s:%d] : global section detected after a non-global one, the prevalence of their statements is unspecified\n", file, linenum);
1589 }
Christopher Faulet037e3f82022-11-18 15:46:06 +01001590 else if (non_global_section_parsed == 0) {
1591 non_global_section_parsed = 1;
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001592 }
1593}
1594
Willy Tarreau8a022d52021-04-27 20:29:11 +02001595/* apply the current default_path setting for config file <file>, and
1596 * optionally replace the current path to <origin> if not NULL while the
1597 * default-path mode is set to "origin". Errors are returned into an
1598 * allocated string passed to <err> if it's not NULL. Returns 0 on failure
1599 * or non-zero on success.
1600 */
1601static int cfg_apply_default_path(const char *file, const char *origin, char **err)
1602{
1603 const char *beg, *end;
1604
1605 /* make path start at <beg> and end before <end>, and switch it to ""
1606 * if no slash was passed.
1607 */
1608 beg = file;
1609 end = strrchr(beg, '/');
1610 if (!end)
1611 end = beg;
1612
1613 if (!*initial_cwd) {
1614 if (getcwd(initial_cwd, sizeof(initial_cwd)) == NULL) {
1615 if (err)
1616 memprintf(err, "Impossible to retrieve startup directory name: %s", strerror(errno));
1617 return 0;
1618 }
1619 }
1620 else if (chdir(initial_cwd) == -1) {
1621 if (err)
1622 memprintf(err, "Impossible to get back to initial directory '%s': %s", initial_cwd, strerror(errno));
1623 return 0;
1624 }
1625
1626 /* OK now we're (back) to initial_cwd */
1627
1628 switch (default_path_mode) {
1629 case DEFAULT_PATH_CURRENT:
1630 /* current_cwd never set, nothing to do */
1631 return 1;
1632
1633 case DEFAULT_PATH_ORIGIN:
1634 /* current_cwd set in the config */
1635 if (origin &&
1636 snprintf(current_cwd, sizeof(current_cwd), "%s", origin) > sizeof(current_cwd)) {
1637 if (err)
1638 memprintf(err, "Absolute path too long: '%s'", origin);
1639 return 0;
1640 }
1641 break;
1642
1643 case DEFAULT_PATH_CONFIG:
1644 if (end - beg >= sizeof(current_cwd)) {
1645 if (err)
1646 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1647 return 0;
1648 }
1649 memcpy(current_cwd, beg, end - beg);
1650 current_cwd[end - beg] = 0;
1651 break;
1652
1653 case DEFAULT_PATH_PARENT:
1654 if (end - beg + 3 >= sizeof(current_cwd)) {
1655 if (err)
1656 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1657 return 0;
1658 }
1659 memcpy(current_cwd, beg, end - beg);
1660 if (end > beg)
1661 memcpy(current_cwd + (end - beg), "/..\0", 4);
1662 else
1663 memcpy(current_cwd + (end - beg), "..\0", 3);
1664 break;
1665 }
1666
1667 if (*current_cwd && chdir(current_cwd) == -1) {
1668 if (err)
1669 memprintf(err, "Impossible to get back to directory '%s': %s", initial_cwd, strerror(errno));
1670 return 0;
1671 }
1672
1673 return 1;
1674}
1675
1676/* parses a global "default-path" directive. */
1677static int cfg_parse_global_def_path(char **args, int section_type, struct proxy *curpx,
1678 const struct proxy *defpx, const char *file, int line,
1679 char **err)
1680{
1681 int ret = -1;
1682
1683 /* "current", "config", "parent", "origin <path>" */
1684
1685 if (strcmp(args[1], "current") == 0)
1686 default_path_mode = DEFAULT_PATH_CURRENT;
1687 else if (strcmp(args[1], "config") == 0)
1688 default_path_mode = DEFAULT_PATH_CONFIG;
1689 else if (strcmp(args[1], "parent") == 0)
1690 default_path_mode = DEFAULT_PATH_PARENT;
1691 else if (strcmp(args[1], "origin") == 0)
1692 default_path_mode = DEFAULT_PATH_ORIGIN;
1693 else {
1694 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]);
1695 goto end;
1696 }
1697
1698 if (default_path_mode == DEFAULT_PATH_ORIGIN) {
1699 if (!*args[2]) {
1700 memprintf(err, "'%s %s' expects a directory as an argument.", args[0], args[1]);
1701 goto end;
1702 }
1703 if (!cfg_apply_default_path(file, args[2], err)) {
1704 memprintf(err, "couldn't set '%s' to origin '%s': %s.", args[0], args[2], *err);
1705 goto end;
1706 }
1707 }
1708 else if (!cfg_apply_default_path(file, NULL, err)) {
1709 memprintf(err, "couldn't set '%s' to '%s': %s.", args[0], args[1], *err);
1710 goto end;
1711 }
1712
1713 /* note that once applied, the path is immediately updated */
1714
1715 ret = 0;
1716 end:
1717 return ret;
1718}
1719
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001720/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001721 * This function reads and parses the configuration file given in the argument.
Willy Tarreauda543e12021-04-27 18:30:28 +02001722 * Returns the error code, 0 if OK, -1 if the config file couldn't be opened,
1723 * or any combination of :
Willy Tarreau058e9072009-07-20 09:30:05 +02001724 * - ERR_ABORT: must abort ASAP
1725 * - ERR_FATAL: we can continue parsing but not start the service
1726 * - ERR_WARN: a warning has been emitted
1727 * - ERR_ALERT: an alert has been emitted
1728 * Only the two first ones can stop processing, the two others are just
1729 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001730 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001731int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001732{
Willy Tarreauda543e12021-04-27 18:30:28 +02001733 char *thisline = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001734 int linesize = LINESIZE;
Willy Tarreauda543e12021-04-27 18:30:28 +02001735 FILE *f = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001736 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001737 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001738 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001739 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001740 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001741 char *outline = NULL;
1742 size_t outlen = 0;
1743 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001744 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001745 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001746 int nested_cond_lvl = 0;
1747 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
Willy Tarreau8a022d52021-04-27 20:29:11 +02001748 char *errmsg = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001749
Willy Tarreau51508052021-05-06 10:04:45 +02001750 global.cfg_curr_line = 0;
1751 global.cfg_curr_file = file;
1752
William Lallemand64e84512015-05-12 14:25:37 +02001753 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Willy Tarreauda543e12021-04-27 18:30:28 +02001754 ha_alert("Out of memory trying to allocate a buffer for a configuration line.\n");
1755 err_code = -1;
1756 goto err;
William Lallemand64e84512015-05-12 14:25:37 +02001757 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001758
Willy Tarreauda543e12021-04-27 18:30:28 +02001759 if ((f = fopen(file,"r")) == NULL) {
1760 err_code = -1;
1761 goto err;
David Carlier97880bb2016-04-08 10:35:26 +01001762 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001763
Willy Tarreau8a022d52021-04-27 20:29:11 +02001764 /* change to the new dir if required */
1765 if (!cfg_apply_default_path(file, NULL, &errmsg)) {
1766 ha_alert("parsing [%s:%d]: failed to apply default-path: %s.\n", file, linenum, errmsg);
1767 free(errmsg);
1768 err_code = -1;
1769 goto err;
1770 }
1771
William Lallemandb2f07452015-05-12 14:27:13 +02001772next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001773 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001774 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001775 char *end;
1776 char *args[MAX_LINE_ARGS + 1];
1777 char *line = thisline;
1778
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001779 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001780 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1781 file, linenum, (missing_lf + 1));
1782 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001783 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001784 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001785 }
1786
Willy Tarreaubaaee002006-06-26 02:48:02 +02001787 linenum++;
Willy Tarreau51508052021-05-06 10:04:45 +02001788 global.cfg_curr_line = linenum;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001789
Willy Tarreau32234e72020-06-16 17:14:33 +02001790 if (fatal >= 50) {
1791 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1792 break;
1793 }
1794
Willy Tarreaubaaee002006-06-26 02:48:02 +02001795 end = line + strlen(line);
1796
William Lallemand64e84512015-05-12 14:25:37 +02001797 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001798 /* Check if we reached the limit and the last char is not \n.
1799 * Watch out for the last line without the terminating '\n'!
1800 */
William Lallemand64e84512015-05-12 14:25:37 +02001801 char *newline;
1802 int newlinesize = linesize * 2;
1803
1804 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1805 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001806 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1807 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001808 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001809 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001810 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001811 continue;
1812 }
1813
1814 readbytes = linesize - 1;
1815 linesize = newlinesize;
1816 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001817 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001818 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001819 }
1820
William Lallemand64e84512015-05-12 14:25:37 +02001821 readbytes = 0;
1822
Willy Tarreau08488f62020-06-26 17:24:54 +02001823 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001824 /* kill trailing LF */
1825 *(end - 1) = 0;
1826 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001827 else {
1828 /* mark this line as truncated */
1829 missing_lf = end - line;
1830 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001831
Willy Tarreaubaaee002006-06-26 02:48:02 +02001832 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001833 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001834 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001835
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001836 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001837 err_code |= cfg_parse_scope(file, linenum, line);
1838 goto next_line;
1839 }
1840
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001841 while (1) {
1842 uint32_t err;
Maximilian Mader29c6cd72021-06-06 00:50:21 +02001843 const char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001844
Tim Duesterhusb3168b32021-06-06 00:50:20 +02001845 arg = sizeof(args) / sizeof(*args);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001846 outlen = outlinesize;
1847 err = parse_line(line, outline, &outlen, args, &arg,
1848 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001849 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1850 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001851
1852 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001853 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1854
1855 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1856 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001857 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001858 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001859 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001860 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001861
1862 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001863 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1864
1865 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1866 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001867 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001868 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001869 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001870 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001871
1872 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001873 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1874
1875 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1876 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001877 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001878 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001879 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001880 }
William Lallemandb2f07452015-05-12 14:27:13 +02001881
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001882 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001883 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1884
1885 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1886 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001887 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001888 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001889 goto next_line;
1890 }
William Lallemandb2f07452015-05-12 14:27:13 +02001891
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001892 if (err & PARSE_ERR_WRONG_EXPAND) {
1893 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1894
1895 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1896 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1897 err_code |= ERR_ALERT | ERR_FATAL;
1898 fatal++;
1899 goto next_line;
1900 }
1901
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001902 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1903 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001904 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001905 if (outline == NULL) {
1906 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1907 file, linenum);
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001908 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau32234e72020-06-16 17:14:33 +02001909 fatal++;
Christopher Fauletdfe32c72022-05-18 16:22:43 +02001910 outlinesize = 0;
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001911 goto err;
William Lallemandb2f07452015-05-12 14:27:13 +02001912 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001913 /* try again */
1914 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001915 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001916
1917 if (err & PARSE_ERR_TOOMANY) {
1918 /* only check this *after* being sure the output is allocated */
1919 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1920 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1921 err_code |= ERR_ALERT | ERR_FATAL;
1922 fatal++;
1923 goto next_line;
1924 }
1925
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001926 /* everything's OK */
1927 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001928 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001929
Erwan Le Goasb0c05012022-09-14 17:51:55 +02001930 /* dump cfg */
1931 if (global.mode & MODE_DUMP_CFG) {
1932 if (args[0] != NULL) {
1933 struct cfg_section *sect;
1934 int is_sect = 0;
1935 int i = 0;
1936 uint32_t g_key = HA_ATOMIC_LOAD(&global.anon_key);
1937
Erwan Le Goasf30c5d72022-09-29 10:34:04 +02001938 if (global.mode & MODE_DUMP_NB_L)
1939 qfprintf(stdout, "%d\t", linenum);
Erwan Le Goasb0c05012022-09-14 17:51:55 +02001940
1941 /* if a word is in sections list, is_sect = 1 */
1942 list_for_each_entry(sect, &sections, list) {
1943 if (strcmp(args[0], sect->section_name) == 0) {
1944 is_sect = 1;
1945 break;
1946 }
1947 }
1948
1949 if (g_key == 0) {
1950 /* no anonymizing needed, dump the config as-is (but without comments).
1951 * Note: tabs were lost during tokenizing, so we reinsert for non-section
1952 * keywords.
1953 */
1954 if (!is_sect)
1955 qfprintf(stdout, "\t");
1956
1957 for (i = 0; i < arg; i++) {
1958 qfprintf(stdout, "%s ", args[i]);
1959 }
1960 qfprintf(stdout, "\n");
1961 continue;
1962 }
1963
1964 /* We're anonymizing */
1965
1966 if (is_sect) {
1967 /* new sections are optionally followed by an identifier */
1968 if (arg >= 2) {
1969 qfprintf(stdout, "%s %s\n", args[0], HA_ANON_ID(g_key, args[1]));
1970 }
1971 else {
1972 qfprintf(stdout, "%s\n", args[0]);
1973 }
1974 continue;
1975 }
1976
1977 /* non-section keywords start indented */
1978 qfprintf(stdout, "\t");
1979
1980 /* some keywords deserve special treatment */
1981 if (!*args[0]) {
1982 qfprintf(stdout, "\n");
1983 }
1984
1985 else if (strcmp(args[0], "anonkey") == 0) {
1986 qfprintf(stdout, "%s [...]\n", args[0]);
1987 }
1988
1989 else if (strcmp(args[0], "maxconn") == 0) {
1990 qfprintf(stdout, "%s %s\n", args[0], args[1]);
1991 }
1992
1993 else if (strcmp(args[0], "stats") == 0 &&
1994 (strcmp(args[1], "timeout") == 0 || strcmp(args[1], "maxconn") == 0)) {
1995 qfprintf(stdout, "%s %s %s\n", args[0], args[1], args[2]);
1996 }
1997
1998 else if (strcmp(args[0], "stats") == 0 && strcmp(args[1], "socket") == 0) {
1999 qfprintf(stdout, "%s %s ", args[0], args[1]);
2000
Erwan Le Goasbe5ed922022-09-29 10:30:00 +02002001 if (arg > 2) {
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002002 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[2], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002003
Erwan Le Goasbe5ed922022-09-29 10:30:00 +02002004 if (arg > 3) {
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002005 qfprintf(stdout, "[...]\n");
2006 }
2007 else {
2008 qfprintf(stdout, "\n");
2009 }
2010 }
2011 else {
2012 qfprintf(stdout, "\n");
2013 }
2014 }
2015
2016 else if (strcmp(args[0], "timeout") == 0) {
2017 qfprintf(stdout, "%s %s %s\n", args[0], args[1], args[2]);
2018 }
2019
2020 else if (strcmp(args[0], "mode") == 0) {
2021 qfprintf(stdout, "%s %s\n", args[0], args[1]);
2022 }
2023
Ilya Shipitsin4a689da2022-10-29 09:34:32 +05002024 /* It concerns user in global section and in userlist */
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002025 else if (strcmp(args[0], "user") == 0) {
2026 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
2027
2028 if (arg > 2) {
2029 qfprintf(stdout, "[...]\n");
2030 }
2031 else {
2032 qfprintf(stdout, "\n");
2033 }
2034 }
2035
2036 else if (strcmp(args[0], "bind") == 0) {
2037 qfprintf(stdout, "%s ", args[0]);
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002038 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[1], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002039 if (arg > 2) {
2040 qfprintf(stdout, "[...]\n");
2041 }
2042 else {
2043 qfprintf(stdout, "\n");
2044 }
2045 }
2046
2047 else if (strcmp(args[0], "server") == 0) {
Erwan Le Goas059d05f2022-09-29 10:31:18 +02002048 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002049
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002050 if (arg > 2) {
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002051 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[2], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002052 }
2053 if (arg > 3) {
2054 qfprintf(stdout, "[...]\n");
2055 }
2056 else {
2057 qfprintf(stdout, "\n");
2058 }
2059 }
2060
2061 else if (strcmp(args[0], "redirect") == 0) {
2062 qfprintf(stdout, "%s %s ", args[0], args[1]);
2063
2064 if (strcmp(args[1], "prefix") == 0 || strcmp(args[1], "location") == 0) {
2065 qfprintf(stdout, "%s ", HA_ANON_PATH(g_key, args[2]));
2066 }
2067 else {
2068 qfprintf(stdout, "%s ", args[2]);
2069 }
2070 if (arg > 3) {
2071 qfprintf(stdout, "[...]");
2072 }
2073 qfprintf(stdout, "\n");
2074 }
2075
2076 else if (strcmp(args[0], "acl") == 0) {
2077 qfprintf(stdout, "%s %s %s ", args[0], HA_ANON_ID(g_key, args[1]), args[2]);
2078
2079 if (arg > 3) {
2080 qfprintf(stdout, "[...]");
2081 }
2082 qfprintf(stdout, "\n");
2083 }
2084
2085 else if (strcmp(args[0], "log") == 0) {
2086 qfprintf(stdout, "log ");
2087
2088 if (strcmp(args[1], "global") == 0) {
2089 qfprintf(stdout, "%s ", args[1]);
2090 }
2091 else {
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002092 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[1], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002093 }
2094 if (arg > 2) {
2095 qfprintf(stdout, "[...]");
2096 }
2097 qfprintf(stdout, "\n");
2098 }
2099
2100 else if (strcmp(args[0], "peer") == 0) {
2101 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
Erwan Le Goas5eef1582022-09-29 10:25:31 +02002102 qfprintf(stdout, "%s ", hash_ipanon(g_key, args[2], 1));
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002103
2104 if (arg > 3) {
2105 qfprintf(stdout, "[...]");
2106 }
2107 qfprintf(stdout, "\n");
2108 }
2109
2110 else if (strcmp(args[0], "use_backend") == 0) {
2111 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
2112
2113 if (arg > 2) {
2114 qfprintf(stdout, "[...]");
2115 }
2116 qfprintf(stdout, "\n");
2117 }
2118
2119 else if (strcmp(args[0], "default_backend") == 0) {
2120 qfprintf(stdout, "%s %s\n", args[0], HA_ANON_ID(g_key, args[1]));
2121 }
2122
Erwan Le Goas059d05f2022-09-29 10:31:18 +02002123 else if (strcmp(args[0], "source") == 0) {
2124 qfprintf(stdout, "%s %s ", args[0], hash_ipanon(g_key, args[1], 1));
2125
2126 if (arg > 2) {
2127 qfprintf(stdout, "[...]");
2128 }
2129 qfprintf(stdout, "\n");
2130 }
2131
2132 else if (strcmp(args[0], "nameserver") == 0) {
2133 qfprintf(stdout, "%s %s %s ", args[0],
2134 HA_ANON_ID(g_key, args[1]), hash_ipanon(g_key, args[2], 1));
2135 if (arg > 3) {
2136 qfprintf(stdout, "[...]");
2137 }
2138 qfprintf(stdout, "\n");
2139 }
2140
2141 else if (strcmp(args[0], "http-request") == 0) {
2142 qfprintf(stdout, "%s %s ", args[0], args[1]);
2143 if (arg > 2)
2144 qfprintf(stdout, "[...]");
2145 qfprintf(stdout, "\n");
2146 }
2147
2148 else if (strcmp(args[0], "http-response") == 0) {
2149 qfprintf(stdout, "%s %s ", args[0], args[1]);
2150 if (arg > 2)
2151 qfprintf(stdout, "[...]");
2152 qfprintf(stdout, "\n");
2153 }
2154
2155 else if (strcmp(args[0], "http-after-response") == 0) {
2156 qfprintf(stdout, "%s %s ", args[0], args[1]);
2157 if (arg > 2)
2158 qfprintf(stdout, "[...]");
2159 qfprintf(stdout, "\n");
2160 }
2161
2162 else if (strcmp(args[0], "filter") == 0) {
2163 qfprintf(stdout, "%s %s ", args[0], args[1]);
2164 if (arg > 2)
2165 qfprintf(stdout, "[...]");
2166 qfprintf(stdout, "\n");
2167 }
2168
2169 else if (strcmp(args[0], "errorfile") == 0) {
2170 qfprintf(stdout, "%s %s %s\n", args[0], args[1], HA_ANON_PATH(g_key, args[2]));
2171 }
2172
2173 else if (strcmp(args[0], "cookie") == 0) {
2174 qfprintf(stdout, "%s %s ", args[0], HA_ANON_ID(g_key, args[1]));
2175 if (arg > 2)
2176 qfprintf(stdout, "%s ", args[2]);
2177 if (arg > 3)
2178 qfprintf(stdout, "[...]");
2179 qfprintf(stdout, "\n");
2180 }
2181
2182 else if (strcmp(args[0], "stats") == 0 && strcmp(args[1], "auth") == 0) {
2183 qfprintf(stdout, "%s %s %s\n", args[0], args[1], HA_ANON_STR(g_key, args[2]));
2184 }
2185
Erwan Le Goasb0c05012022-09-14 17:51:55 +02002186 else {
2187 /* display up to 3 words and mask the rest which might be confidential */
2188 for (i = 0; i < MIN(arg, 3); i++) {
2189 qfprintf(stdout, "%s ", args[i]);
2190 }
2191 if (arg > 3) {
2192 qfprintf(stdout, "[...]");
2193 }
2194 qfprintf(stdout, "\n");
2195 }
2196 }
2197 continue;
2198 }
2199 /* end of config dump */
2200
Willy Tarreaubaaee002006-06-26 02:48:02 +02002201 /* empty line */
2202 if (!**args)
2203 continue;
2204
Willy Tarreau4b103022021-02-12 17:59:10 +01002205 /* check for config macros */
2206 if (*args[0] == '.') {
2207 if (strcmp(args[0], ".if") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002208 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002209 char *errmsg = NULL;
2210 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02002211 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002212
Willy Tarreauc8194c32021-07-16 16:38:58 +02002213 /* remerge all words into a single expression */
2214 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
2215 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002216
Willy Tarreau4b103022021-02-12 17:59:10 +01002217 nested_cond_lvl++;
2218 if (nested_cond_lvl >= MAXNESTEDCONDS) {
2219 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
2220 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2221 goto err;
2222 }
2223
Willy Tarreau6e647c92021-05-06 08:46:11 +02002224 if (nested_cond_lvl > 1 &&
2225 (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
2226 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
2227 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
2228 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
2229 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP)) {
Willy Tarreau4b103022021-02-12 17:59:10 +01002230 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002231 goto next_line;
2232 }
2233
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002234 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002235 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002236 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 76);
2237
2238 ha_alert("parsing [%s:%d]: %s in '.if' at position %d:\n .if %s\n %*s\n",
2239 file, linenum, errmsg,
2240 (int)(errptr-args[1]+1), args[1], (int)(newpos+5), "^");
2241
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002242 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01002243 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2244 goto err;
2245 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002246
2247 if (cond)
2248 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
2249 else
2250 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
2251
Willy Tarreau4b103022021-02-12 17:59:10 +01002252 goto next_line;
2253 }
2254 else if (strcmp(args[0], ".elif") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002255 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002256 char *errmsg = NULL;
2257 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02002258 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002259
Willy Tarreauc8194c32021-07-16 16:38:58 +02002260 /* remerge all words into a single expression */
2261 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
2262 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002263
Willy Tarreau4b103022021-02-12 17:59:10 +01002264 if (!nested_cond_lvl) {
2265 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
2266 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2267 goto err;
2268 }
2269
2270 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2271 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2272 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
2273 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2274 goto err;
2275 }
2276
2277 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2278 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
Willy Tarreauf67ff022021-05-06 08:48:09 +02002279 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
Willy Tarreau4b103022021-02-12 17:59:10 +01002280 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2281 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002282 goto next_line;
2283 }
2284
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002285 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002286 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002287 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 74);
2288
2289 ha_alert("parsing [%s:%d]: %s in '.elif' at position %d:\n .elif %s\n %*s\n",
2290 file, linenum, errmsg,
2291 (int)(errptr-args[1]+1), args[1], (int)(newpos+7), "^");
2292
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002293 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01002294 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2295 goto err;
2296 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002297
2298 if (cond)
2299 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
2300 else
2301 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
2302
Willy Tarreau4b103022021-02-12 17:59:10 +01002303 goto next_line;
2304 }
2305 else if (strcmp(args[0], ".else") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002306 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002307 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002308 file, linenum, args[1], args[0]);
2309 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2310 break;
2311 }
2312
Willy Tarreau4b103022021-02-12 17:59:10 +01002313 if (!nested_cond_lvl) {
2314 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
2315 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2316 goto err;
2317 }
2318
2319 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2320 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2321 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
2322 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2323 goto err;
2324 }
2325
2326 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2327 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2328 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
2329 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2330 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
2331 } else {
2332 /* otherwise we take the "else" */
2333 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
2334 }
2335 goto next_line;
2336 }
2337 else if (strcmp(args[0], ".endif") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002338 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002339 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002340 file, linenum, args[1], args[0]);
2341 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2342 break;
2343 }
2344
Willy Tarreau4b103022021-02-12 17:59:10 +01002345 if (!nested_cond_lvl) {
2346 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002347 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau4b103022021-02-12 17:59:10 +01002348 break;
2349 }
2350 nested_cond_lvl--;
2351 goto next_line;
2352 }
2353 }
2354
2355 if (nested_cond_lvl &&
2356 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
2357 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2358 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
2359 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
2360 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
2361 /* The current block is masked out by the conditions */
2362 goto next_line;
2363 }
2364
Willy Tarreau7190b982021-05-07 08:59:50 +02002365 /* .warning/.error/.notice/.diag */
Willy Tarreau4b103022021-02-12 17:59:10 +01002366 if (*args[0] == '.') {
2367 if (strcmp(args[0], ".alert") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002368 if (*args[2]) {
2369 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2370 file, linenum, args[2], args[0]);
2371 err_code |= ERR_ALERT | ERR_FATAL;
2372 goto next_line;
2373 }
2374
Willy Tarreau4b103022021-02-12 17:59:10 +01002375 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2376 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2377 goto err;
2378 }
2379 else if (strcmp(args[0], ".warning") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002380 if (*args[2]) {
2381 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2382 file, linenum, args[2], args[0]);
2383 err_code |= ERR_ALERT | ERR_FATAL;
2384 goto next_line;
2385 }
2386
Willy Tarreau4b103022021-02-12 17:59:10 +01002387 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2388 err_code |= ERR_WARN;
2389 goto next_line;
2390 }
2391 else if (strcmp(args[0], ".notice") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002392 if (*args[2]) {
2393 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2394 file, linenum, args[2], args[0]);
2395 err_code |= ERR_ALERT | ERR_FATAL;
2396 goto next_line;
2397 }
2398
Willy Tarreau4b103022021-02-12 17:59:10 +01002399 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2400 goto next_line;
2401 }
Willy Tarreau7190b982021-05-07 08:59:50 +02002402 else if (strcmp(args[0], ".diag") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002403 if (*args[2]) {
2404 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2405 file, linenum, args[2], args[0]);
2406 err_code |= ERR_ALERT | ERR_FATAL;
2407 goto next_line;
2408 }
2409
Willy Tarreau7190b982021-05-07 08:59:50 +02002410 ha_diag_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2411 goto next_line;
2412 }
Willy Tarreau4b103022021-02-12 17:59:10 +01002413 else {
2414 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
2415 err_code |= ERR_ALERT | ERR_FATAL;
2416 fatal++;
2417 break;
2418 }
2419 }
2420
Willy Tarreau3842f002009-06-14 11:39:52 +02002421 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002422 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02002423 char *tmp;
2424
Willy Tarreau3842f002009-06-14 11:39:52 +02002425 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002426 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002427 for (arg=0; *args[arg+1]; arg++)
2428 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002429 *tmp = '\0'; // fix the next arg to \0
2430 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002431 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002432 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02002433 kwm = KWM_DEF;
2434 for (arg=0; *args[arg+1]; arg++)
2435 args[arg] = args[arg+1]; // shift args after inversion
2436 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002437
William Dauchyec730982019-10-27 20:08:10 +01002438 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2439 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002440 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002441 strcmp(args[0], "insecure-fork-wanted") != 0 &&
2442 strcmp(args[0], "numa-cpu-mapping") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002443 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002444 "supported only for options, log, busy-polling, "
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002445 "set-dumpable, strict-limits, insecure-fork-wanted "
2446 "and numa-cpu-mapping.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002447 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002448 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002449 }
2450
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002451 /* detect section start */
2452 list_for_each_entry(ics, &sections, list) {
2453 if (strcmp(args[0], ics->section_name) == 0) {
2454 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002455 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002456 cs = ics;
Willy Tarreau51508052021-05-06 10:04:45 +02002457 free(global.cfg_curr_section);
2458 global.cfg_curr_section = strdup(*args[1] ? args[1] : args[0]);
Christopher Faulet037e3f82022-11-18 15:46:06 +01002459 check_section_position(args[0], file, linenum);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002460 break;
2461 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002462 }
2463
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002464 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002465 int status;
2466
2467 status = pcs->post_section_parser();
2468 err_code |= status;
2469 if (status & ERR_FATAL)
2470 fatal++;
2471
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002472 if (err_code & ERR_ABORT)
2473 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002474 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002475 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002476
William Lallemandd2ff56d2017-10-16 11:06:50 +02002477 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002478 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002479 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002480 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002481 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002482 int status;
2483
2484 status = cs->section_parser(file, linenum, args, kwm);
2485 err_code |= status;
2486 if (status & ERR_FATAL)
2487 fatal++;
2488
William Lallemandd2ff56d2017-10-16 11:06:50 +02002489 if (err_code & ERR_ABORT)
2490 goto err;
2491 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002492 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002493
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002494 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002495 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2496 file, linenum, (missing_lf + 1));
2497 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002498 }
2499
Willy Tarreau51508052021-05-06 10:04:45 +02002500 ha_free(&global.cfg_curr_section);
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002501 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002502 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002503
Willy Tarreau4b103022021-02-12 17:59:10 +01002504 if (nested_cond_lvl) {
2505 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
2506 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2507 }
Willy Tarreau8a022d52021-04-27 20:29:11 +02002508
2509 if (*initial_cwd && chdir(initial_cwd) == -1) {
2510 ha_alert("Impossible to get back to initial directory '%s' : %s\n", initial_cwd, strerror(errno));
2511 err_code |= ERR_ALERT | ERR_FATAL;
2512 }
2513
William Lallemandd2ff56d2017-10-16 11:06:50 +02002514err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002515 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01002516 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002517 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002518 free(outline);
Willy Tarreau51508052021-05-06 10:04:45 +02002519 global.cfg_curr_line = 0;
2520 global.cfg_curr_file = NULL;
2521
Willy Tarreauda543e12021-04-27 18:30:28 +02002522 if (f)
2523 fclose(f);
2524
Willy Tarreau058e9072009-07-20 09:30:05 +02002525 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002526}
2527
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002528#if defined(USE_THREAD) && defined USE_CPU_AFFINITY
2529#if defined(__linux__)
2530
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002531/* filter directory name of the pattern node<X> */
2532static int numa_filter(const struct dirent *dir)
2533{
2534 char *endptr;
2535
2536 /* dir name must start with "node" prefix */
2537 if (strncmp(dir->d_name, "node", 4))
2538 return 0;
2539
2540 /* dir name must be at least 5 characters long */
2541 if (!dir->d_name[4])
2542 return 0;
2543
2544 /* dir name must end with a numeric id */
2545 if (strtol(&dir->d_name[4], &endptr, 10) < 0 || *endptr)
2546 return 0;
2547
2548 /* all tests succeeded */
2549 return 1;
2550}
2551
2552/* Parse a linux cpu map string representing to a numeric cpu mask map
2553 * The cpu map string is a list of 4-byte hex strings separated by commas, with
2554 * most-significant byte first, one bit per cpu number.
2555 */
2556static void parse_cpumap(char *cpumap_str, struct hap_cpuset *cpu_set)
2557{
2558 unsigned long cpumap;
2559 char *start, *endptr, *comma;
2560 int i, j;
2561
2562 ha_cpuset_zero(cpu_set);
2563
2564 i = 0;
2565 do {
2566 /* reverse-search for a comma, parse the string after the comma
2567 * or at the beginning if no comma found
2568 */
2569 comma = strrchr(cpumap_str, ',');
2570 start = comma ? comma + 1 : cpumap_str;
2571
2572 cpumap = strtoul(start, &endptr, 16);
2573 for (j = 0; cpumap; cpumap >>= 1, ++j) {
2574 if (cpumap & 0x1)
2575 ha_cpuset_set(cpu_set, j + i * 32);
2576 }
2577
2578 if (comma)
2579 *comma = '\0';
2580 ++i;
2581 } while (comma);
2582}
2583
2584/* Read the first line of a file from <path> into the trash buffer.
2585 * Returns 0 on success, otherwise non-zero.
2586 */
2587static int read_file_to_trash(const char *path)
2588{
2589 FILE *file;
2590 int ret = 1;
2591
2592 file = fopen(path, "r");
2593 if (file) {
2594 if (fgets(trash.area, trash.size, file))
2595 ret = 0;
2596
2597 fclose(file);
2598 }
2599
2600 return ret;
2601}
2602
2603/* Inspect the cpu topology of the machine on startup. If a multi-socket
2604 * machine is detected, try to bind on the first node with active cpu. This is
2605 * done to prevent an impact on the overall performance when the topology of
2606 * the machine is unknown. This function is not called if one of the conditions
2607 * is met :
2608 * - a non-null nbthread directive is active
2609 * - a restrictive cpu-map directive is active
2610 * - a restrictive affinity is already applied, for example via taskset
2611 *
2612 * Returns the count of cpus selected. If no automatic binding was required or
2613 * an error occurred and the topology is unknown, 0 is returned.
2614 */
2615static int numa_detect_topology()
2616{
2617 struct dirent **node_dirlist;
2618 int node_dirlist_size;
2619
2620 struct hap_cpuset active_cpus, node_cpu_set;
2621 const char *parse_cpu_set_args[2];
2622 char cpumap_path[PATH_MAX];
2623 char *err = NULL;
2624
2625 /* node_cpu_set count is used as return value */
2626 ha_cpuset_zero(&node_cpu_set);
2627
2628 /* 1. count the sysfs node<X> directories */
Willy Tarreau07bf21c2021-04-23 19:09:16 +02002629 node_dirlist = NULL;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002630 node_dirlist_size = scandir(NUMA_DETECT_SYSTEM_SYSFS_PATH"/node", &node_dirlist, numa_filter, alphasort);
2631 if (node_dirlist_size <= 1)
2632 goto free_scandir_entries;
2633
2634 /* 2. read and parse the list of currently online cpu */
2635 if (read_file_to_trash(NUMA_DETECT_SYSTEM_SYSFS_PATH"/cpu/online")) {
2636 ha_notice("Cannot read online CPUs list, will not try to refine binding\n");
2637 goto free_scandir_entries;
2638 }
2639
2640 parse_cpu_set_args[0] = trash.area;
2641 parse_cpu_set_args[1] = "\0";
2642 if (parse_cpu_set(parse_cpu_set_args, &active_cpus, 1, &err)) {
2643 ha_notice("Cannot read online CPUs list: '%s'. Will not try to refine binding\n", err);
2644 free(err);
2645 goto free_scandir_entries;
2646 }
2647
2648 /* 3. loop through nodes dirs and find the first one with active cpus */
2649 while (node_dirlist_size--) {
2650 const char *node = node_dirlist[node_dirlist_size]->d_name;
2651 ha_cpuset_zero(&node_cpu_set);
2652
2653 snprintf(cpumap_path, PATH_MAX, "%s/node/%s/cpumap",
2654 NUMA_DETECT_SYSTEM_SYSFS_PATH, node);
2655
2656 if (read_file_to_trash(cpumap_path)) {
2657 ha_notice("Cannot read CPUs list of '%s', will not select them to refine binding\n", node);
2658 free(node_dirlist[node_dirlist_size]);
2659 continue;
2660 }
2661
2662 parse_cpumap(trash.area, &node_cpu_set);
2663 ha_cpuset_and(&node_cpu_set, &active_cpus);
2664
2665 /* 5. set affinity on the first found node with active cpus */
2666 if (!ha_cpuset_count(&node_cpu_set)) {
2667 free(node_dirlist[node_dirlist_size]);
2668 continue;
2669 }
2670
2671 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));
2672 if (sched_setaffinity(getpid(), sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2673 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2674
2675 /* clear the cpuset used as return value */
2676 ha_cpuset_zero(&node_cpu_set);
2677 }
2678
2679 free(node_dirlist[node_dirlist_size]);
2680 break;
2681 }
2682
2683 free_scandir_entries:
2684 while (node_dirlist_size-- > 0)
2685 free(node_dirlist[node_dirlist_size]);
2686 free(node_dirlist);
2687
2688 return ha_cpuset_count(&node_cpu_set);
2689}
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002690
David CARLIERf5d48f82021-12-06 11:00:10 +00002691#elif defined(__FreeBSD__)
2692static int numa_detect_topology()
2693{
2694 struct hap_cpuset node_cpu_set;
2695 int ndomains = 0, i;
2696 size_t len = sizeof(ndomains);
2697
2698 if (sysctlbyname("vm.ndomains", &ndomains, &len, NULL, 0) == -1) {
2699 ha_notice("Cannot assess the number of CPUs domains\n");
2700 return 0;
2701 }
2702
2703 BUG_ON(ndomains > MAXMEMDOM);
2704 ha_cpuset_zero(&node_cpu_set);
2705
2706 /*
2707 * We retrieve the first active valid CPU domain
2708 * with active cpu and binding it, we returns
2709 * the number of cpu from the said domain
2710 */
2711 for (i = 0; i < ndomains; i ++) {
2712 struct hap_cpuset dom;
2713 ha_cpuset_zero(&dom);
2714 if (cpuset_getaffinity(CPU_LEVEL_WHICH, CPU_WHICH_DOMAIN, i, sizeof(dom.cpuset), &dom.cpuset) == -1)
2715 continue;
2716
2717 if (!ha_cpuset_count(&dom))
2718 continue;
2719
2720 ha_cpuset_assign(&node_cpu_set, &dom);
2721
2722 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));
2723 if (cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2724 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2725
2726 /* clear the cpuset used as return value */
2727 ha_cpuset_zero(&node_cpu_set);
2728 }
2729 break;
2730 }
2731
2732 return ha_cpuset_count(&node_cpu_set);
2733}
2734
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002735#else
2736static int numa_detect_topology()
2737{
2738 return 0;
2739}
2740
2741#endif
2742#endif /* USE_THREAD && USE_CPU_AFFINITY */
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002743
Willy Tarreaubb925012009-07-23 13:36:36 +02002744/*
2745 * Returns the error code, 0 if OK, or any combination of :
2746 * - ERR_ABORT: must abort ASAP
2747 * - ERR_FATAL: we can continue parsing but not start the service
2748 * - ERR_WARN: a warning has been emitted
2749 * - ERR_ALERT: an alert has been emitted
2750 * Only the two first ones can stop processing, the two others are just
2751 * indicators.
2752 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002753int check_config_validity()
2754{
2755 int cfgerr = 0;
2756 struct proxy *curproxy = NULL;
Emeric Brun3b68b602022-08-18 15:53:21 +02002757 struct proxy *init_proxies_list = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002758 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002759 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002760 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002761 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002762 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002763 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002764 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01002765 struct resolvers *curr_resolvers = NULL;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002766 int i;
Frédéric Lécaille372508c2022-05-06 08:53:16 +02002767 int diag_no_cluster_secret = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002768
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002769 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002770 /*
2771 * Now, check for the integrity of all that we have collected.
2772 */
2773
2774 /* will be needed further to delay some tasks */
Willy Tarreau55542642021-10-08 09:33:24 +02002775 clock_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002776
Willy Tarreau193b8c62012-11-22 00:17:38 +01002777 if (!global.tune.max_http_hdr)
2778 global.tune.max_http_hdr = MAX_HTTP_HDR;
2779
2780 if (!global.tune.cookie_len)
2781 global.tune.cookie_len = CAPTURE_LEN;
2782
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002783 if (!global.tune.requri_len)
2784 global.tune.requri_len = REQURI_LEN;
2785
Willy Tarreau149ab772019-01-26 14:27:06 +01002786 if (!global.nbthread) {
2787 /* nbthread not set, thus automatic. In this case, and only if
2788 * running on a single process, we enable the same number of
2789 * threads as the number of CPUs the process is bound to. This
2790 * allows to easily control the number of threads using taskset.
2791 */
2792 global.nbthread = 1;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002793
Willy Tarreau149ab772019-01-26 14:27:06 +01002794#if defined(USE_THREAD)
Willy Tarreaub63dbb72021-06-11 16:50:29 +02002795 {
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002796 int numa_cores = 0;
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002797#if defined(USE_CPU_AFFINITY)
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002798 if (global.numa_cpu_mapping && !thread_cpu_mask_forced())
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002799 numa_cores = numa_detect_topology();
2800#endif
2801 global.nbthread = numa_cores ? numa_cores :
2802 thread_cpus_enabled_at_boot;
Willy Tarreau400b3ae2022-12-08 08:04:46 +01002803
2804 /* Note that we cannot have more than 32 or 64 threads per group */
2805 if (!global.nbtgroups)
2806 global.nbtgroups = 1;
2807
2808 if (global.nbthread > MAX_THREADS_PER_GROUP * global.nbtgroups) {
2809 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",
2810 global.nbthread, MAX_THREADS_PER_GROUP * global.nbtgroups, MAX_THREADS_PER_GROUP);
2811 global.nbthread = MAX_THREADS_PER_GROUP * global.nbtgroups;
2812 }
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002813 }
Willy Tarreau149ab772019-01-26 14:27:06 +01002814#endif
2815 }
2816
Willy Tarreauc33b9692021-09-22 12:07:23 +02002817 if (!global.nbtgroups)
2818 global.nbtgroups = 1;
2819
Willy Tarreaue6806eb2021-09-27 10:10:26 +02002820 if (thread_map_to_groups() < 0) {
2821 err_code |= ERR_ALERT | ERR_FATAL;
2822 goto out;
2823 }
2824
Willy Tarreaubafbe012017-11-24 17:34:44 +01002825 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002826
Willy Tarreaubafbe012017-11-24 17:34:44 +01002827 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002828
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002829 /* Post initialisation of the users and groups lists. */
2830 err_code = userlist_postinit();
2831 if (err_code != ERR_NONE)
2832 goto out;
2833
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002834 /* first, we will invert the proxy list order */
2835 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002836 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002837 struct proxy *next;
2838
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002839 next = proxies_list->next;
2840 proxies_list->next = curproxy;
2841 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002842 if (!next)
2843 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002844 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002845 }
2846
Emeric Brun3b68b602022-08-18 15:53:21 +02002847 /* starting to initialize the main proxies list */
2848 init_proxies_list = proxies_list;
2849
2850init_proxies_list_stage1:
2851 for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002852 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002853 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002854 struct sticking_rule *mrule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002855 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002856 unsigned int next_id;
2857
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002858 if (!(curproxy->cap & PR_CAP_INT) && curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002859 /* proxy ID not set, use automatic numbering with first
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002860 * spare entry starting with next_pxid. We don't assign
2861 * numbers for internal proxies as they may depend on
2862 * build or config options and we don't want them to
2863 * possibly reuse existing IDs.
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002864 */
2865 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2866 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2867 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002868 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002869
Willy Tarreau32b51cd2021-08-26 15:59:44 +02002870 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize >= (256 << 20) && ONLY_ONCE()) {
2871 ha_alert("global.tune.bufsize must be below 256 MB when HTTP is in use (current value = %d).\n",
2872 global.tune.bufsize);
2873 cfgerr++;
2874 }
2875
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002876 /* next IDs are shifted even if the proxy is disabled, this
2877 * guarantees that a proxy that is temporarily disabled in the
2878 * configuration doesn't cause a renumbering. Internal proxies
2879 * that are not assigned a static ID must never shift the IDs
2880 * either since they may appear in any order (Lua, logs, etc).
2881 * The GLOBAL proxy that carries the stats socket has its ID
2882 * forced to zero.
2883 */
2884 if (curproxy->uuid >= 0)
2885 next_pxid++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002886
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002887 if (curproxy->flags & PR_FL_DISABLED) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002888 /* ensure we don't keep listeners uselessly bound. We
2889 * can't disable their listeners yet (fdtab not
2890 * allocated yet) but let's skip them.
2891 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002892 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002893 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002894 curproxy->table->peers.p = NULL;
2895 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002896 continue;
2897 }
2898
Christopher Fauletff556272021-10-13 11:04:10 +02002899 /* The current proxy is referencing a default proxy. We must
2900 * finalize its config, but only once. If the default proxy is
2901 * ready (PR_FL_READY) it means it was already fully configured.
2902 */
2903 if (curproxy->defpx) {
2904 if (!(curproxy->defpx->flags & PR_FL_READY)) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02002905 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
2906 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l4_rules, curproxy->defpx, &err_code);
2907 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l5_rules, curproxy->defpx, &err_code);
2908 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.inspect_rules, curproxy->defpx, &err_code);
2909 cfgerr += check_action_rules(&curproxy->defpx->tcp_rep.inspect_rules, curproxy->defpx, &err_code);
2910 cfgerr += check_action_rules(&curproxy->defpx->http_req_rules, curproxy->defpx, &err_code);
2911 cfgerr += check_action_rules(&curproxy->defpx->http_res_rules, curproxy->defpx, &err_code);
2912 cfgerr += check_action_rules(&curproxy->defpx->http_after_res_rules, curproxy->defpx, &err_code);
2913
Christopher Fauletff556272021-10-13 11:04:10 +02002914 err = NULL;
2915 i = smp_resolve_args(curproxy->defpx, &err);
2916 cfgerr += i;
2917 if (i) {
2918 indent_msg(&err, 8);
2919 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
2920 ha_free(&err);
2921 }
2922 else
2923 cfgerr += acl_find_targets(curproxy->defpx);
2924
2925 /* default proxy is now ready. Set the right FE/BE capabilities */
2926 curproxy->defpx->flags |= PR_FL_READY;
2927 }
2928 }
2929
Willy Tarreau3d209582014-05-09 17:06:11 +02002930 /* check and reduce the bind-proc of each listener */
2931 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2932 unsigned long mask;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002933 struct listener *li;
Willy Tarreau3d209582014-05-09 17:06:11 +02002934
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002935 /* HTTP frontends with "h2" as ALPN/NPN will work in
2936 * HTTP/2 and absolutely require buffers 16kB or larger.
2937 */
2938#ifdef USE_OPENSSL
2939 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2940#ifdef OPENSSL_NPN_NEGOTIATED
2941 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002942 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002943 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 +01002944 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002945 cfgerr++;
2946 }
2947#endif
2948#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2949 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002950 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002951 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 +01002952 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002953 cfgerr++;
2954 }
2955#endif
2956 } /* HTTP && bufsize < 16384 */
2957#endif
2958
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002959 /* detect and address thread affinity inconsistencies */
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002960 err = NULL;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002961 if (thread_resolve_group_mask(bind_conf->bind_tgroup, bind_conf->bind_thread,
2962 &bind_conf->bind_tgroup, &bind_conf->bind_thread, &err) < 0) {
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002963 ha_alert("Proxy '%s': %s in 'bind %s' at [%s:%d].\n",
2964 curproxy->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
2965 free(err);
2966 cfgerr++;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002967 } else if (!((mask = bind_conf->bind_thread) & ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002968 unsigned long new_mask = 0;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002969 ulong thr_mask = ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002970
2971 while (mask) {
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002972 new_mask |= mask & thr_mask;
2973 mask >>= ha_tgroup_info[bind_conf->bind_tgroup-1].count;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002974 }
2975
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002976 bind_conf->bind_thread = new_mask;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002977 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",
2978 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line,
2979 bind_conf->bind_tgroup, ha_tgroup_info[bind_conf->bind_tgroup-1].count, new_mask);
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002980 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002981
2982 /* apply thread masks and groups to all receivers */
2983 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
Willy Tarreau6dfbef42021-10-12 15:23:03 +02002984 if (bind_conf->settings.shards <= 1) {
2985 li->rx.bind_thread = bind_conf->bind_thread;
2986 li->rx.bind_tgroup = bind_conf->bind_tgroup;
2987 } else {
2988 struct listener *new_li;
2989 int shard, shards, todo, done, bit;
2990 ulong mask;
2991
2992 shards = bind_conf->settings.shards;
2993 todo = my_popcountl(bind_conf->bind_thread);
2994
2995 /* no more shards than total threads */
2996 if (shards > todo)
2997 shards = todo;
2998
2999 shard = done = bit = 0;
3000 new_li = li;
3001
3002 while (1) {
3003 mask = 0;
3004 while (done < todo) {
3005 /* enlarge mask to cover next bit of bind_thread */
3006 while (!(bind_conf->bind_thread & (1UL << bit)))
3007 bit++;
3008 mask |= (1UL << bit);
3009 bit++;
3010 done += shards;
3011 }
3012
3013 new_li->rx.bind_thread = bind_conf->bind_thread & mask;
3014 new_li->rx.bind_tgroup = bind_conf->bind_tgroup;
3015 done -= todo;
3016
3017 shard++;
3018 if (shard >= shards)
3019 break;
3020
3021 /* create another listener for new shards */
3022 new_li = clone_listener(li);
3023 if (!new_li) {
3024 ha_alert("Out of memory while trying to allocate extra listener for shard %d in %s %s\n",
3025 shard, proxy_type_str(curproxy), curproxy->id);
3026 cfgerr++;
3027 err_code |= ERR_FATAL | ERR_ALERT;
3028 goto out;
3029 }
3030 }
3031 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02003032 }
Willy Tarreau3d209582014-05-09 17:06:11 +02003033 }
3034
Willy Tarreauff01a212009-03-15 13:46:16 +01003035 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01003036 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02003037 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01003038 break;
3039
3040 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01003041 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01003042 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02003043
3044 case PR_MODE_CLI:
3045 cfgerr += proxy_cfg_ensure_no_http(curproxy);
3046 break;
Emeric Brun3b68b602022-08-18 15:53:21 +02003047
Emeric Brun54932b42020-07-07 09:43:24 +02003048 case PR_MODE_SYSLOG:
Emeric Brun3b68b602022-08-18 15:53:21 +02003049 /* this mode is initialized as the classic tcp proxy */
3050 cfgerr += proxy_cfg_ensure_no_http(curproxy);
3051 break;
3052
Willy Tarreaua389c9e2020-10-07 17:49:42 +02003053 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02003054 case PR_MODES:
3055 /* should not happen, bug gcc warn missing switch statement */
Emeric Brun3b68b602022-08-18 15:53:21 +02003056 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 +02003057 proxy_type_str(curproxy), curproxy->id);
3058 cfgerr++;
3059 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01003060 }
3061
William Lallemand2c04a5a2021-08-13 15:21:12 +02003062 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003063 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 +01003064 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02003065 err_code |= ERR_WARN;
3066 }
3067
Willy Tarreau77e0dae2020-10-14 15:44:27 +02003068 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003069 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003070 if (curproxy->options & PR_O_TRANSP) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003071 ha_alert("%s '%s' cannot use both transparent and balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003072 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003073 cfgerr++;
3074 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003075#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003076 else if (curproxy->srv == NULL) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003077 ha_alert("%s '%s' needs at least 1 server in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003078 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003079 cfgerr++;
3080 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003081#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02003082 else if (curproxy->options & PR_O_DISPATCH) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003083 ha_warning("dispatch address of %s '%s' will be ignored in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003084 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003085 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003086 }
3087 }
Willy Tarreau25241232021-07-18 19:18:56 +02003088 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01003089 /* If no LB algo is set in a backend, and we're not in
3090 * transparent mode, dispatch mode nor proxy mode, we
3091 * want to use balance roundrobin by default.
3092 */
3093 curproxy->lbprm.algo &= ~BE_LB_ALGO;
3094 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003095 }
3096 }
Willy Tarreau193cf932007-09-17 10:17:23 +02003097
Willy Tarreau1620ec32011-08-06 17:05:02 +02003098 if (curproxy->options & PR_O_DISPATCH)
Willy Tarreau25241232021-07-18 19:18:56 +02003099 curproxy->options &= ~PR_O_TRANSP;
Willy Tarreau1620ec32011-08-06 17:05:02 +02003100 else if (curproxy->options & PR_O_TRANSP)
Willy Tarreau25241232021-07-18 19:18:56 +02003101 curproxy->options &= ~PR_O_DISPATCH;
Willy Tarreau82936582007-11-30 15:20:09 +01003102
Christopher Faulete5870d82020-04-15 11:32:03 +02003103 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003104 ha_warning("%s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
Christopher Faulete5870d82020-04-15 11:32:03 +02003105 proxy_type_str(curproxy), curproxy->id);
3106 err_code |= ERR_WARN;
3107 }
3108
3109 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02003110 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02003111 if (curproxy->options & PR_O_DISABLE404) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003112 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003113 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02003114 err_code |= ERR_WARN;
3115 curproxy->options &= ~PR_O_DISABLE404;
3116 }
3117 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003118 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003119 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02003120 err_code |= ERR_WARN;
3121 curproxy->options &= ~PR_O2_CHK_SNDST;
3122 }
Willy Tarreauef781042010-01-27 11:53:01 +01003123 }
3124
Simon Horman98637e52014-06-20 12:30:16 +09003125 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
3126 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003127 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
3128 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09003129 cfgerr++;
3130 }
3131 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003132 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
3133 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09003134 cfgerr++;
3135 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01003136 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
3137 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
3138 curproxy->id, "option external-check");
3139 err_code |= ERR_WARN;
3140 }
Simon Horman98637e52014-06-20 12:30:16 +09003141 }
3142
Simon Horman64e34162015-02-06 11:11:57 +09003143 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003144 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003145 ha_warning("'email-alert' will be ignored for %s '%s' (the presence any of "
Christopher Faulet767a84b2017-11-24 16:50:31 +01003146 "'email-alert from', 'email-alert level' 'email-alert mailers', "
3147 "'email-alert myhostname', or 'email-alert to' "
3148 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
3149 "to be present).\n",
3150 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09003151 err_code |= ERR_WARN;
3152 free_email_alert(curproxy);
3153 }
3154 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01003155 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09003156 }
3157
Simon Horman98637e52014-06-20 12:30:16 +09003158 if (curproxy->check_command) {
3159 int clear = 0;
3160 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003161 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003162 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09003163 err_code |= ERR_WARN;
3164 clear = 1;
3165 }
3166 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003167 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
3168 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09003169 cfgerr++;
3170 }
3171 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003172 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09003173 }
3174 }
3175
3176 if (curproxy->check_path) {
3177 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003178 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003179 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09003180 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003181 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09003182 }
3183 }
3184
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003185 /* if a default backend was specified, let's find it */
3186 if (curproxy->defbe.name) {
3187 struct proxy *target;
3188
Willy Tarreauafb39922015-05-26 12:04:09 +02003189 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01003190 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003191 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
3192 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003193 cfgerr++;
3194 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003195 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
3196 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02003197 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02003198 } else if (target->mode != curproxy->mode &&
3199 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
3200
Christopher Faulet767a84b2017-11-24 16:50:31 +01003201 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
3202 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
3203 curproxy->conf.file, curproxy->conf.line,
3204 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
3205 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02003206 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003207 } else {
3208 free(curproxy->defbe.name);
3209 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01003210 /* Emit a warning if this proxy also has some servers */
3211 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003212 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
3213 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01003214 err_code |= ERR_WARN;
3215 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003216 }
3217 }
3218
Willy Tarreau55ea7572007-06-17 19:56:27 +02003219 /* find the target proxy for 'use_backend' rules */
3220 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02003221 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003222 struct logformat_node *node;
3223 char *pxname;
3224
3225 /* Try to parse the string as a log format expression. If the result
3226 * of the parsing is only one entry containing a simple string, then
3227 * it's a standard string corresponding to a static rule, thus the
3228 * parsing is cancelled and be.name is restored to be resolved.
3229 */
3230 pxname = rule->be.name;
3231 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01003232 curproxy->conf.args.ctx = ARGC_UBK;
3233 curproxy->conf.args.file = rule->file;
3234 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003235 err = NULL;
3236 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003237 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
3238 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003239 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003240 cfgerr++;
3241 continue;
3242 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003243 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
3244
3245 if (!LIST_ISEMPTY(&rule->be.expr)) {
3246 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
3247 rule->dynamic = 1;
3248 free(pxname);
3249 continue;
3250 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02003251 /* Only one element in the list, a simple string: free the expression and
3252 * fall back to static rule
3253 */
Willy Tarreau2b718102021-04-21 07:32:39 +02003254 LIST_DELETE(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003255 free(node->arg);
3256 free(node);
3257 }
3258
3259 rule->dynamic = 0;
3260 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003261
Willy Tarreauafb39922015-05-26 12:04:09 +02003262 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01003263 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003264 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
3265 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003266 cfgerr++;
3267 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003268 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
3269 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003270 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02003271 } else if (target->mode != curproxy->mode &&
3272 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
3273
Christopher Faulet767a84b2017-11-24 16:50:31 +01003274 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
3275 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
3276 curproxy->conf.file, curproxy->conf.line,
3277 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
3278 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02003279 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003280 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003281 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003282 rule->be.backend = target;
3283 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003284 err_code |= warnif_tcp_http_cond(curproxy, rule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003285 }
3286
Willy Tarreau64ab6072014-09-16 12:17:36 +02003287 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003288 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02003289 struct server *target;
3290 struct logformat_node *node;
3291 char *server_name;
3292
3293 /* We try to parse the string as a log format expression. If the result of the parsing
3294 * is only one entry containing a single string, then it's a standard string corresponding
3295 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
3296 */
3297 server_name = srule->srv.name;
3298 LIST_INIT(&srule->expr);
3299 curproxy->conf.args.ctx = ARGC_USRV;
3300 err = NULL;
3301 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
3302 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
3303 srule->file, srule->line, server_name, err);
3304 free(err);
3305 cfgerr++;
3306 continue;
3307 }
3308 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
3309
3310 if (!LIST_ISEMPTY(&srule->expr)) {
3311 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
3312 srule->dynamic = 1;
3313 free(server_name);
3314 continue;
3315 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02003316 /* Only one element in the list, a simple string: free the expression and
3317 * fall back to static rule
3318 */
Willy Tarreau2b718102021-04-21 07:32:39 +02003319 LIST_DELETE(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02003320 free(node->arg);
3321 free(node);
3322 }
3323
3324 srule->dynamic = 0;
3325 srule->srv.name = server_name;
3326 target = findserver(curproxy, srule->srv.name);
Christopher Faulet581db2b2021-03-26 10:02:46 +01003327 err_code |= warnif_tcp_http_cond(curproxy, srule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003328
3329 if (!target) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003330 ha_alert("%s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003331 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003332 cfgerr++;
3333 continue;
3334 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01003335 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003336 srule->srv.ptr = target;
Amaury Denoyelle06269612021-08-23 14:05:07 +02003337 target->flags |= SRV_F_NON_PURGEABLE;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003338 }
3339
Emeric Brunb982a3d2010-01-04 15:45:53 +01003340 /* find the target table for 'stick' rules */
3341 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003342 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003343
Emeric Brun1d33b292010-01-04 15:47:17 +01003344 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
3345 if (mrule->flags & STK_IS_STORE)
3346 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3347
Emeric Brunb982a3d2010-01-04 15:45:53 +01003348 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003349 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003350 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003351 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003352
3353 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003354 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003355 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003356 cfgerr++;
3357 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003358 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003359 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3360 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003361 cfgerr++;
3362 }
3363 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003364 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003365 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003366 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3367 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003368 if (!in_proxies_list(target->proxies_list, curproxy)) {
3369 curproxy->next_stkt_ref = target->proxies_list;
3370 target->proxies_list = curproxy;
3371 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003372 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003373 err_code |= warnif_tcp_http_cond(curproxy, mrule->cond);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003374 }
3375
3376 /* find the target table for 'store response' rules */
3377 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003378 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003379
Emeric Brun1d33b292010-01-04 15:47:17 +01003380 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3381
Emeric Brunb982a3d2010-01-04 15:45:53 +01003382 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003383 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003384 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003385 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003386
3387 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003388 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003389 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003390 cfgerr++;
3391 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003392 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003393 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3394 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003395 cfgerr++;
3396 }
3397 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003398 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003399 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003400 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3401 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003402 if (!in_proxies_list(target->proxies_list, curproxy)) {
3403 curproxy->next_stkt_ref = target->proxies_list;
3404 target->proxies_list = curproxy;
3405 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003406 }
3407 }
3408
Christopher Faulet42c6cf92021-03-25 17:19:04 +01003409 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
3410 cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code);
3411 cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code);
3412 cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code);
3413 cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code);
3414 cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code);
3415 cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code);
3416 cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003417
Christopher Faulet5eef0182021-03-31 17:13:49 +02003418 /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */
3419 if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) {
3420 if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP)
3421 ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. "
3422 "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n",
3423 curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy));
3424 }
3425
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003426 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003427 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003428
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003429 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003430 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003431 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003432 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003433 break;
3434 }
3435 }
3436
3437 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003438 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003439 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01003440 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003441 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003442 cfgerr++;
3443 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003444 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003445 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003446 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003447 }
Emeric Brun32da3c42010-09-23 18:39:19 +02003448 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003449 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
3450 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003451 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003452 cfgerr++;
3453 }
3454 }
3455
Simon Horman9dc49962015-01-30 11:22:59 +09003456
3457 if (curproxy->email_alert.mailers.name) {
3458 struct mailers *curmailers = mailers;
3459
3460 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003461 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09003462 break;
Simon Horman9dc49962015-01-30 11:22:59 +09003463 }
Simon Horman9dc49962015-01-30 11:22:59 +09003464 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003465 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
3466 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09003467 free_email_alert(curproxy);
3468 cfgerr++;
3469 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02003470 else {
3471 err = NULL;
3472 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003473 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003474 free(err);
3475 cfgerr++;
3476 }
3477 }
Simon Horman9dc49962015-01-30 11:22:59 +09003478 }
3479
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003480 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01003481 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003482 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003483 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
3484 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003485 cfgerr++;
3486 goto out_uri_auth_compat;
3487 }
3488
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003489 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003490 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003491 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003492 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003493 struct act_rule *rule;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003494 i = 0;
3495
Willy Tarreau95fa4692010-02-01 13:05:50 +01003496 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
3497 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003498
3499 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003500 uri_auth_compat_req[i++] = "realm";
3501 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
3502 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003503
Willy Tarreau95fa4692010-02-01 13:05:50 +01003504 uri_auth_compat_req[i++] = "unless";
3505 uri_auth_compat_req[i++] = "{";
3506 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
3507 uri_auth_compat_req[i++] = "}";
3508 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003509
Willy Tarreauff011f22011-01-06 17:51:27 +01003510 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
3511 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003512 cfgerr++;
3513 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003514 }
3515
Willy Tarreau2b718102021-04-21 07:32:39 +02003516 LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01003517
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003518 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003519 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003520 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003521 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003522 }
3523out_uri_auth_compat:
3524
Dragan Dosen43885c72015-10-01 13:18:13 +02003525 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02003526 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02003527 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
3528 if (!curproxy->conf.logformat_sd_string) {
3529 /* set the default logformat_sd_string */
3530 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
3531 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003532 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02003533 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003534 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02003535
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003536 /* compile the log format */
3537 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02003538 if (curproxy->conf.logformat_string != default_http_log_format &&
3539 curproxy->conf.logformat_string != default_tcp_log_format &&
3540 curproxy->conf.logformat_string != clf_http_log_format)
3541 free(curproxy->conf.logformat_string);
3542 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003543 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02003544 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003545
3546 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3547 free(curproxy->conf.logformat_sd_string);
3548 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003549 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003550 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003551 }
3552
Willy Tarreau62a61232013-04-12 18:13:46 +02003553 if (curproxy->conf.logformat_string) {
3554 curproxy->conf.args.ctx = ARGC_LOG;
3555 curproxy->conf.args.file = curproxy->conf.lfs_file;
3556 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003557 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003558 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
3559 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003560 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003561 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3562 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003563 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003564 cfgerr++;
3565 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003566 curproxy->conf.args.file = NULL;
3567 curproxy->conf.args.line = 0;
3568 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003569
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003570 if (curproxy->conf.logformat_sd_string) {
3571 curproxy->conf.args.ctx = ARGC_LOGSD;
3572 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3573 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003574 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003575 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
3576 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003577 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003578 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3579 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003580 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003581 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003582 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003583 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3584 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003585 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003586 cfgerr++;
3587 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003588 curproxy->conf.args.file = NULL;
3589 curproxy->conf.args.line = 0;
3590 }
3591
Willy Tarreau62a61232013-04-12 18:13:46 +02003592 if (curproxy->conf.uniqueid_format_string) {
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003593 int where = 0;
3594
Willy Tarreau62a61232013-04-12 18:13:46 +02003595 curproxy->conf.args.ctx = ARGC_UIF;
3596 curproxy->conf.args.file = curproxy->conf.uif_file;
3597 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003598 err = NULL;
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003599 if (curproxy->cap & PR_CAP_FE)
3600 where |= SMP_VAL_FE_HRQ_HDR;
3601 if (curproxy->cap & PR_CAP_BE)
3602 where |= SMP_VAL_BE_HRQ_HDR;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003603 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003604 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES, where, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003605 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3606 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003607 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003608 cfgerr++;
3609 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003610 curproxy->conf.args.file = NULL;
3611 curproxy->conf.args.line = 0;
3612 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003613
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +02003614 if (curproxy->conf.error_logformat_string) {
3615 curproxy->conf.args.ctx = ARGC_LOG;
3616 curproxy->conf.args.file = curproxy->conf.elfs_file;
3617 curproxy->conf.args.line = curproxy->conf.elfs_line;
3618 err = NULL;
3619 if (!parse_logformat_string(curproxy->conf.error_logformat_string, curproxy, &curproxy->logformat_error,
3620 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
3621 SMP_VAL_FE_LOG_END, &err)) {
3622 ha_alert("Parsing [%s:%d]: failed to parse error-log-format : %s.\n",
3623 curproxy->conf.elfs_file, curproxy->conf.elfs_line, err);
3624 free(err);
3625 cfgerr++;
3626 }
3627 curproxy->conf.args.file = NULL;
3628 curproxy->conf.args.line = 0;
3629 }
3630
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +02003631 /* "balance hash" needs to compile its expression */
3632 if ((curproxy->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_SMP) {
3633 int idx = 0;
3634 const char *args[] = {
3635 curproxy->lbprm.arg_str,
3636 NULL,
3637 };
3638
3639 err = NULL;
3640 curproxy->conf.args.ctx = ARGC_USRV; // same context as use_server.
3641 curproxy->lbprm.expr =
3642 sample_parse_expr((char **)args, &idx,
3643 curproxy->conf.file, curproxy->conf.line,
3644 &err, &curproxy->conf.args, NULL);
3645
3646 if (!curproxy->lbprm.expr) {
3647 ha_alert("%s '%s' [%s:%d]: failed to parse 'balance hash' expression '%s' in : %s.\n",
3648 proxy_type_str(curproxy), curproxy->id,
3649 curproxy->conf.file, curproxy->conf.line,
3650 curproxy->lbprm.arg_str, err);
3651 ha_free(&err);
3652 cfgerr++;
3653 }
3654 else if (!(curproxy->lbprm.expr->fetch->val & SMP_VAL_BE_SET_SRV)) {
3655 ha_alert("%s '%s' [%s:%d]: error detected while parsing 'balance hash' expression '%s' "
3656 "which requires information from %s, which is not available here.\n",
3657 proxy_type_str(curproxy), curproxy->id,
3658 curproxy->conf.file, curproxy->conf.line,
3659 curproxy->lbprm.arg_str, sample_src_names(curproxy->lbprm.expr->fetch->use));
3660 cfgerr++;
3661 }
3662 else if (curproxy->mode == PR_MODE_HTTP && (curproxy->lbprm.expr->fetch->use & SMP_USE_L6REQ)) {
3663 ha_warning("%s '%s' [%s:%d]: L6 sample fetch <%s> will be ignored in 'balance hash' expression in HTTP mode.\n",
3664 proxy_type_str(curproxy), curproxy->id,
3665 curproxy->conf.file, curproxy->conf.line,
3666 curproxy->lbprm.arg_str);
3667 }
3668 else
3669 curproxy->http_needed |= !!(curproxy->lbprm.expr->fetch->use & SMP_USE_HTTP_ANY);
3670 }
Aurelien DARRAGONb2e2ec52023-01-09 11:09:03 +01003671
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003672 /* only now we can check if some args remain unresolved.
3673 * This must be done after the users and groups resolution.
3674 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01003675 err = NULL;
3676 i = smp_resolve_args(curproxy, &err);
3677 cfgerr += i;
3678 if (i) {
3679 indent_msg(&err, 8);
3680 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
3681 ha_free(&err);
3682 } else
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003683 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003684
William Lallemand2c04a5a2021-08-13 15:21:12 +02003685 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003686 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003687 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003688 (!curproxy->timeout.connect ||
3689 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003690 ha_warning("missing timeouts for %s '%s'.\n"
Christopher Faulet767a84b2017-11-24 16:50:31 +01003691 " | While not properly invalid, you will certainly encounter various problems\n"
3692 " | with such a configuration. To fix this, please ensure that all following\n"
3693 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3694 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003695 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003696 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003697
Willy Tarreau1fa31262007-12-03 00:36:16 +01003698 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3699 * We must still support older configurations, so let's find out whether those
3700 * parameters have been set or must be copied from contimeouts.
3701 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01003702 if (!curproxy->timeout.tarpit)
3703 curproxy->timeout.tarpit = curproxy->timeout.connect;
3704 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
3705 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003706
Christopher Faulete5870d82020-04-15 11:32:03 +02003707 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003708 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 +01003709 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003710 err_code |= ERR_WARN;
3711 }
3712
Willy Tarreau193b8c62012-11-22 00:17:38 +01003713 /* ensure that cookie capture length is not too large */
3714 if (curproxy->capture_len >= global.tune.cookie_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003715 ha_warning("truncating capture length to %d bytes for %s '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003716 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003717 err_code |= ERR_WARN;
3718 curproxy->capture_len = global.tune.cookie_len - 1;
3719 }
3720
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003721 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003722 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003723 curproxy->req_cap_pool = create_pool("ptrcap",
3724 curproxy->nb_req_cap * sizeof(char *),
3725 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003726 }
3727
3728 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003729 curproxy->rsp_cap_pool = create_pool("ptrcap",
3730 curproxy->nb_rsp_cap * sizeof(char *),
3731 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003732 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003733
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003734 switch (curproxy->load_server_state_from_file) {
3735 case PR_SRV_STATE_FILE_UNSPEC:
3736 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3737 break;
3738 case PR_SRV_STATE_FILE_GLOBAL:
3739 if (!global.server_state_file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003740 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 +01003741 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003742 err_code |= ERR_WARN;
3743 }
3744 break;
3745 }
3746
Willy Tarreaubaaee002006-06-26 02:48:02 +02003747 /* first, we will invert the servers list order */
3748 newsrv = NULL;
3749 while (curproxy->srv) {
3750 struct server *next;
3751
3752 next = curproxy->srv->next;
3753 curproxy->srv->next = newsrv;
3754 newsrv = curproxy->srv;
3755 if (!next)
3756 break;
3757 curproxy->srv = next;
3758 }
3759
Willy Tarreau17edc812014-01-03 12:14:34 +01003760 /* Check that no server name conflicts. This causes trouble in the stats.
3761 * We only emit a warning for the first conflict affecting each server,
3762 * in order to avoid combinatory explosion if all servers have the same
3763 * name. We do that only for servers which do not have an explicit ID,
3764 * because these IDs were made also for distinguishing them and we don't
3765 * want to annoy people who correctly manage them.
3766 */
3767 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3768 struct server *other_srv;
3769
3770 if (newsrv->puid)
3771 continue;
3772
3773 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3774 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003775 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 +01003776 newsrv->conf.file, newsrv->conf.line,
3777 proxy_type_str(curproxy), curproxy->id,
3778 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003779 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003780 break;
3781 }
3782 }
3783 }
3784
Willy Tarreaudd701652010-05-25 23:03:02 +02003785 /* assign automatic UIDs to servers which don't have one yet */
3786 next_id = 1;
3787 newsrv = curproxy->srv;
3788 while (newsrv != NULL) {
3789 if (!newsrv->puid) {
3790 /* server ID not set, use automatic numbering with first
3791 * spare entry starting with next_svid.
3792 */
3793 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3794 newsrv->conf.id.key = newsrv->puid = next_id;
3795 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
3796 }
Amaury Denoyelle077c6b82021-06-14 17:04:25 +02003797 newsrv->conf.name.key = newsrv->id;
3798 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
3799
Willy Tarreaudd701652010-05-25 23:03:02 +02003800 next_id++;
3801 newsrv = newsrv->next;
3802 }
3803
Willy Tarreau20697042007-11-15 23:26:18 +01003804 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003805 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003806
Willy Tarreau62c3be22012-01-20 13:12:32 +01003807 /*
3808 * If this server supports a maxconn parameter, it needs a dedicated
3809 * tasks to fill the emptied slots when a connection leaves.
3810 * Also, resolve deferred tracking dependency if needed.
3811 */
3812 newsrv = curproxy->srv;
3813 while (newsrv != NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003814 set_usermsgs_ctx(newsrv->conf.file, newsrv->conf.line, &newsrv->obj_type);
3815
Willy Tarreau62c3be22012-01-20 13:12:32 +01003816 if (newsrv->minconn > newsrv->maxconn) {
3817 /* Only 'minconn' was specified, or it was higher than or equal
3818 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3819 * this will avoid further useless expensive computations.
3820 */
3821 newsrv->maxconn = newsrv->minconn;
3822 } else if (newsrv->maxconn && !newsrv->minconn) {
3823 /* minconn was not specified, so we set it to maxconn */
3824 newsrv->minconn = newsrv->maxconn;
3825 }
3826
William Dauchyf6370442020-11-14 19:25:33 +01003827 /* this will also properly set the transport layer for
3828 * prod and checks
3829 * if default-server have use_ssl, prerare ssl init
3830 * without activating it */
3831 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
Christopher Faulet4ab26792021-12-01 09:50:41 +01003832 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3833 ((newsrv->flags & SRV_F_DEFSRV_USE_SSL) && newsrv->use_ssl != 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003834 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3835 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3836 }
Emeric Brun94324a42012-10-11 14:00:19 +02003837
Willy Tarreau034c88c2017-01-23 23:36:45 +01003838 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3839 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3840 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003841 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 +01003842
Willy Tarreau62c3be22012-01-20 13:12:32 +01003843 if (newsrv->trackit) {
Amaury Denoyelle669b6202021-07-13 10:35:23 +02003844 if (srv_apply_track(newsrv, curproxy)) {
3845 ++cfgerr;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003846 goto next_srv;
3847 }
Willy Tarreau62c3be22012-01-20 13:12:32 +01003848 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003849
Willy Tarreau62c3be22012-01-20 13:12:32 +01003850 next_srv:
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003851 reset_usermsgs_ctx();
Willy Tarreau62c3be22012-01-20 13:12:32 +01003852 newsrv = newsrv->next;
3853 }
3854
Olivier Houchard4e694042017-03-14 20:01:29 +01003855 /*
3856 * Try to generate dynamic cookies for servers now.
3857 * It couldn't be done earlier, since at the time we parsed
3858 * the server line, we may not have known yet that we
3859 * should use dynamic cookies, or the secret key may not
3860 * have been provided yet.
3861 */
3862 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3863 newsrv = curproxy->srv;
3864 while (newsrv != NULL) {
3865 srv_set_dyncookie(newsrv);
3866 newsrv = newsrv->next;
3867 }
3868
3869 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003870 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003871 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003872 */
3873
3874 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3875 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3876 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003877 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3878 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3879 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003880 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3881 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003882 if (chash_init_server_tree(curproxy) < 0) {
3883 cfgerr++;
3884 }
Willy Tarreau9757a382009-10-03 12:56:50 +02003885 } else {
3886 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3887 fwrr_init_server_groups(curproxy);
3888 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003889 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003890
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003891 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003892 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3893 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3894 fwlc_init_server_tree(curproxy);
3895 } else {
3896 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3897 fas_init_server_tree(curproxy);
3898 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003899 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003900
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003901 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003902 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3903 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003904 if (chash_init_server_tree(curproxy) < 0) {
3905 cfgerr++;
3906 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003907 } else {
3908 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3909 init_server_map(curproxy);
3910 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003911 break;
3912 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003913 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003914
3915 if (curproxy->options & PR_O_LOGASAP)
3916 curproxy->to_log &= ~LW_BYTES;
3917
William Lallemand2c04a5a2021-08-13 15:21:12 +02003918 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003919 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3920 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003921 ha_warning("log format ignored for %s '%s' since it has no log address.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003922 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003923 err_code |= ERR_WARN;
3924 }
3925
Christopher Faulet3b6446f2021-03-15 15:10:38 +01003926 if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) {
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003927 int optnum;
3928
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003929 if (curproxy->uri_auth) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003930 ha_warning("'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003931 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003932 err_code |= ERR_WARN;
3933 curproxy->uri_auth = NULL;
3934 }
3935
Willy Tarreaude7dc882017-03-10 11:49:21 +01003936 if (curproxy->capture_name) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003937 ha_warning("'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003938 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003939 err_code |= ERR_WARN;
3940 }
3941
3942 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003943 ha_warning("'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003944 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003945 err_code |= ERR_WARN;
3946 }
3947
3948 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003949 ha_warning("'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003950 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003951 err_code |= ERR_WARN;
3952 }
3953
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003954 if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003955 ha_warning("'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003956 proxy_type_str(curproxy), curproxy->id);
3957 err_code |= ERR_WARN;
3958 }
3959
Willy Tarreaude7dc882017-03-10 11:49:21 +01003960 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003961 ha_warning("'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003962 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003963 err_code |= ERR_WARN;
3964 }
3965
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003966 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3967 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3968 (curproxy->cap & cfg_opts[optnum].cap) &&
3969 (curproxy->options & cfg_opts[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003970 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003971 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003972 err_code |= ERR_WARN;
3973 curproxy->options &= ~cfg_opts[optnum].val;
3974 }
3975 }
3976
3977 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3978 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3979 (curproxy->cap & cfg_opts2[optnum].cap) &&
3980 (curproxy->options2 & cfg_opts2[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003981 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003982 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003983 err_code |= ERR_WARN;
3984 curproxy->options2 &= ~cfg_opts2[optnum].val;
3985 }
3986 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003987
Willy Tarreau29fbe512015-08-20 19:35:14 +02003988#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003989 if (curproxy->conn_src.bind_hdr_occ) {
3990 curproxy->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02003991 ha_warning("%s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003992 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003993 err_code |= ERR_WARN;
3994 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003995#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003996 }
3997
Willy Tarreaubaaee002006-06-26 02:48:02 +02003998 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003999 * ensure that we're not cross-dressing a TCP server into HTTP.
4000 */
4001 newsrv = curproxy->srv;
4002 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01004003 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004004 ha_alert("%s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004005 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02004006 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01004007 }
Willy Tarreaubce70882009-09-07 11:51:47 +02004008
Willy Tarreau0cec3312011-10-31 13:49:26 +01004009 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004010 ha_warning("%s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01004011 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01004012 err_code |= ERR_WARN;
4013 }
4014
Willy Tarreauc93cd162014-05-13 15:54:22 +02004015 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004016 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 +01004017 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02004018 err_code |= ERR_WARN;
4019 }
4020
Willy Tarreau29fbe512015-08-20 19:35:14 +02004021#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01004022 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
4023 newsrv->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02004024 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 +01004025 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02004026 err_code |= ERR_WARN;
4027 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02004028#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01004029
Willy Tarreau46deab62018-04-28 07:18:15 +02004030 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
4031 curproxy->options &= ~PR_O_REUSE_MASK;
4032
Willy Tarreau21d2af32008-02-14 20:25:24 +01004033 newsrv = newsrv->next;
4034 }
4035
Christopher Fauletd7c91962015-04-30 11:48:27 +02004036 /* Check filter configuration, if any */
4037 cfgerr += flt_check(curproxy);
4038
Willy Tarreauc1a21672009-08-16 22:37:44 +02004039 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02004040 if (!curproxy->accept)
4041 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02004042
Christopher Fauletee08d6c2021-10-13 15:40:15 +02004043 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
4044 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02004045 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02004046
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004047 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02004048 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004049 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004050 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004051
William Lallemandcf62f7e2018-10-26 14:47:40 +02004052 if (curproxy->mode == PR_MODE_CLI) {
4053 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
4054 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
4055 }
4056
Willy Tarreauc1a21672009-08-16 22:37:44 +02004057 /* both TCP and HTTP must check switching rules */
4058 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02004059
4060 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01004061 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01004062 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
4063 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 +02004064 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004065 }
4066
4067 if (curproxy->cap & PR_CAP_BE) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02004068 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
4069 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02004070 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
4071
Christopher Fauletee08d6c2021-10-13 15:40:15 +02004072 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules) ||
4073 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_rep.inspect_rules)))
Emeric Brun97679e72010-09-23 17:56:44 +02004074 curproxy->be_rsp_ana |= AN_RES_INSPECT;
4075
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004076 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02004077 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02004078 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02004079 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004080
4081 /* If the backend does requires RDP cookie persistence, we have to
4082 * enable the corresponding analyser.
4083 */
4084 if (curproxy->options2 & PR_O2_RDPC_PRST)
4085 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02004086
4087 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01004088 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01004089 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
4090 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 +02004091 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02004092 }
Christopher Fauleta717b992018-04-10 14:43:00 +02004093
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004094 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02004095 * attached to the current proxy */
4096 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
4097 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01004098 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02004099
Willy Tarreau730cc022022-05-20 18:07:06 +02004100 if (!bind_conf->mux_proto) {
4101 /* No protocol was specified. If we're using QUIC at the transport
4102 * layer, we'll instantiate it as a mux as well. If QUIC is not
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05004103 * compiled in, this will remain NULL.
Willy Tarreau730cc022022-05-20 18:07:06 +02004104 */
4105 if (bind_conf->xprt && bind_conf->xprt == xprt_get(XPRT_QUIC))
4106 bind_conf->mux_proto = get_mux_proto(ist("quic"));
4107 }
4108
Christopher Fauleta717b992018-04-10 14:43:00 +02004109 if (!bind_conf->mux_proto)
4110 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01004111
4112 /* it is possible that an incorrect mux was referenced
4113 * due to the proxy's mode not being taken into account
4114 * on first pass. Let's adjust it now.
4115 */
4116 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
4117
4118 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004119 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
Christopher Fauleta717b992018-04-10 14:43:00 +02004120 proxy_type_str(curproxy), curproxy->id,
4121 (int)bind_conf->mux_proto->token.len,
4122 bind_conf->mux_proto->token.ptr,
4123 bind_conf->arg, bind_conf->file, bind_conf->line);
4124 cfgerr++;
Willy Tarreaucac619b2022-05-20 17:53:32 +02004125 } else {
4126 if ((mux_ent->mux->flags & MX_FL_FRAMED) && !(bind_conf->options & BC_O_USE_SOCK_DGRAM)) {
4127 ha_alert("%s '%s' : frame-based MUX protocol '%.*s' is incompatible with stream transport of 'bind %s' at [%s:%d].\n",
4128 proxy_type_str(curproxy), curproxy->id,
4129 (int)bind_conf->mux_proto->token.len,
4130 bind_conf->mux_proto->token.ptr,
4131 bind_conf->arg, bind_conf->file, bind_conf->line);
4132 cfgerr++;
4133 }
4134 else if (!(mux_ent->mux->flags & MX_FL_FRAMED) && !(bind_conf->options & BC_O_USE_SOCK_STREAM)) {
4135 ha_alert("%s '%s' : stream-based MUX protocol '%.*s' is incompatible with framed transport of 'bind %s' at [%s:%d].\n",
4136 proxy_type_str(curproxy), curproxy->id,
4137 (int)bind_conf->mux_proto->token.len,
4138 bind_conf->mux_proto->token.ptr,
4139 bind_conf->arg, bind_conf->file, bind_conf->line);
4140 cfgerr++;
4141 }
Christopher Fauleta717b992018-04-10 14:43:00 +02004142 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01004143
4144 /* update the mux */
4145 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02004146 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004147 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
4148 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01004149 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004150
4151 if (!newsrv->mux_proto)
4152 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01004153
4154 /* it is possible that an incorrect mux was referenced
4155 * due to the proxy's mode not being taken into account
4156 * on first pass. Let's adjust it now.
4157 */
4158 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
4159
4160 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004161 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004162 proxy_type_str(curproxy), curproxy->id,
4163 (int)newsrv->mux_proto->token.len,
4164 newsrv->mux_proto->token.ptr,
4165 newsrv->id, newsrv->conf.file, newsrv->conf.line);
4166 cfgerr++;
4167 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01004168
4169 /* update the mux */
4170 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02004171 }
Amaury Denoyellef2c27a52021-07-23 15:46:46 +02004172
4173 /* Allocate default tcp-check rules for proxies without
4174 * explicit rules.
4175 */
4176 if (curproxy->cap & PR_CAP_BE) {
4177 if (!(curproxy->options2 & PR_O2_CHK_ANY)) {
4178 struct tcpcheck_ruleset *rs = NULL;
4179 struct tcpcheck_rules *rules = &curproxy->tcpcheck_rules;
4180
4181 curproxy->options2 |= PR_O2_TCPCHK_CHK;
4182
4183 rs = find_tcpcheck_ruleset("*tcp-check");
4184 if (!rs) {
4185 rs = create_tcpcheck_ruleset("*tcp-check");
4186 if (rs == NULL) {
4187 ha_alert("config: %s '%s': out of memory.\n",
4188 proxy_type_str(curproxy), curproxy->id);
4189 cfgerr++;
4190 }
4191 }
4192
4193 free_tcpcheck_vars(&rules->preset_vars);
4194 rules->list = &rs->rules;
4195 rules->flags = 0;
4196 }
4197 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01004198 }
Willy Tarreau835daa12019-02-07 14:46:29 +01004199
Emeric Brun3b68b602022-08-18 15:53:21 +02004200 /*
4201 * We have just initialized the main proxies list
4202 * we must also configure the log-forward proxies list
4203 */
4204 if (init_proxies_list == proxies_list) {
4205 init_proxies_list = cfg_log_forward;
Emeric Brun8032a272022-08-22 10:25:11 +02004206 /* check if list is not null to avoid infinite loop */
4207 if (init_proxies_list)
4208 goto init_proxies_list_stage1;
Emeric Brun3b68b602022-08-18 15:53:21 +02004209 }
4210
Emeric Brund6e581d2022-09-13 16:16:30 +02004211 if (init_proxies_list == cfg_log_forward) {
4212 init_proxies_list = sink_proxies_list;
4213 /* check if list is not null to avoid infinite loop */
4214 if (init_proxies_list)
4215 goto init_proxies_list_stage1;
4216 }
4217
Willy Tarreau4cdac162021-03-05 10:48:42 +01004218 /***********************************************************/
4219 /* At this point, target names have already been resolved. */
4220 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01004221
Willy Tarreau4cdac162021-03-05 10:48:42 +01004222 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01004223
Willy Tarreau4cdac162021-03-05 10:48:42 +01004224 list_for_each_entry(newsrv, &servers_list, global_list) {
4225 /* initialize idle conns lists */
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02004226 if (srv_init_per_thr(newsrv) == -1) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004227 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
4228 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01004229 cfgerr++;
4230 continue;
4231 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004232
Willy Tarreau4cdac162021-03-05 10:48:42 +01004233 if (newsrv->max_idle_conns != 0) {
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004234 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
4235 if (!newsrv->curr_idle_thr) {
4236 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
4237 newsrv->conf.file, newsrv->conf.line, newsrv->id);
4238 cfgerr++;
4239 continue;
4240 }
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02004241
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004242 }
4243 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004244
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004245 idle_conn_task = task_new_anywhere();
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004246 if (!idle_conn_task) {
4247 ha_alert("parsing : failed to allocate global idle connection task.\n");
4248 cfgerr++;
4249 }
4250 else {
4251 idle_conn_task->process = srv_cleanup_idle_conns;
4252 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004253
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004254 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004255 idle_conns[i].cleanup_task = task_new_on(i);
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004256 if (!idle_conns[i].cleanup_task) {
4257 ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i);
4258 cfgerr++;
4259 break;
Willy Tarreau4cdac162021-03-05 10:48:42 +01004260 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004261
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004262 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
4263 idle_conns[i].cleanup_task->context = NULL;
4264 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
4265 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Willy Tarreau835daa12019-02-07 14:46:29 +01004266 }
Willy Tarreau419ead82014-09-16 13:41:21 +02004267 }
4268
Willy Tarreau419ead82014-09-16 13:41:21 +02004269 /* perform the final checks before creating tasks */
4270
Emeric Brun3b68b602022-08-18 15:53:21 +02004271 /* starting to initialize the main proxies list */
4272 init_proxies_list = proxies_list;
4273
4274init_proxies_list_stage2:
4275 for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02004276 struct listener *listener;
4277 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02004278
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004279 /* Configure SSL for each bind line.
4280 * Note: if configuration fails at some point, the ->ctx member
4281 * remains NULL so that listeners can later detach.
4282 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004283 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01004284 if (bind_conf->xprt->prepare_bind_conf &&
4285 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004286 cfgerr++;
Willy Tarreau7866e8e2023-01-12 18:39:42 +01004287 bind_conf->analysers |= curproxy->fe_req_ana;
Willy Tarreau882f2482023-01-12 18:52:23 +01004288 if (!bind_conf->maxaccept)
4289 bind_conf->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau30836152023-01-12 19:10:17 +01004290 bind_conf->accept = session_accept_fd;
Willy Tarreaucfb7c2f2023-01-12 19:37:07 +01004291 if (curproxy->options & PR_O_TCP_NOLING)
4292 bind_conf->options |= BC_O_NOLINGER;
Willy Tarreau9bdcf422023-01-12 19:40:42 +01004293
4294 /* smart accept mode is automatic in HTTP mode */
4295 if ((curproxy->options2 & PR_O2_SMARTACC) ||
4296 ((curproxy->mode == PR_MODE_HTTP || (bind_conf->options & BC_O_USE_SSL)) &&
4297 !(curproxy->no_options2 & PR_O2_SMARTACC)))
4298 bind_conf->options |= BC_O_NOQUICKACK;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004299 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004300
Willy Tarreaue6b98942007-10-29 01:09:36 +01004301 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004302 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02004303 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004304 if (!listener->luid) {
4305 /* listener ID not set, use automatic numbering with first
4306 * spare entry starting with next_luid.
4307 */
4308 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
4309 listener->conf.id.key = listener->luid = next_id;
4310 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004311 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01004312 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004313
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004314 /* enable separate counters */
4315 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01004316 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004317 if (!listener->name)
4318 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004319 }
Willy Tarreau81796be2012-09-22 19:11:47 +02004320
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01004321#ifdef USE_QUIC
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01004322 if (listener->flags & LI_F_QUIC_LISTENER) {
Amaury Denoyelle996ca7d2022-11-14 16:17:13 +01004323 if (!global.cluster_secret) {
Frédéric Lécaille372508c2022-05-06 08:53:16 +02004324 diag_no_cluster_secret = 1;
Amaury Denoyelle996ca7d2022-11-14 16:17:13 +01004325 if (listener->bind_conf->options & BC_O_QUIC_FORCE_RETRY) {
4326 ha_alert("QUIC listener with quic-force-retry requires global cluster-secret to be set.\n");
4327 cfgerr++;
4328 }
4329 }
Amaury Denoyelle0aba11e2022-09-29 18:31:24 +02004330
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01004331 li_init_per_thr(listener);
4332 }
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01004333#endif
Amaury Denoyelle57af0692022-01-18 15:39:02 +01004334
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02004335 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02004336 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02004337
Willy Tarreau620408f2016-10-21 16:37:51 +02004338 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
4339 listener->options |= LI_O_TCP_L5_RULES;
Willy Tarreaue6b98942007-10-29 01:09:36 +01004340 }
4341
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004342 /* Release unused SSL configs */
4343 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau11ba4042022-05-20 15:56:32 +02004344 if (!(bind_conf->options & BC_O_USE_SSL) && bind_conf->xprt->destroy_bind_conf)
Willy Tarreau795cdab2016-12-22 17:30:54 +01004345 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004346 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004347
Willy Tarreau918ff602011-07-25 16:33:49 +02004348 /* create the task associated with the proxy */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004349 curproxy->task = task_new_anywhere();
Willy Tarreau918ff602011-07-25 16:33:49 +02004350 if (curproxy->task) {
4351 curproxy->task->context = curproxy;
4352 curproxy->task->process = manage_proxy;
Christopher Faulet56717802021-10-13 10:10:09 +02004353 curproxy->flags |= PR_FL_READY;
Willy Tarreau918ff602011-07-25 16:33:49 +02004354 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004355 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
4356 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02004357 cfgerr++;
4358 }
Willy Tarreaub369a042014-09-16 13:21:03 +02004359 }
4360
Emeric Brun3b68b602022-08-18 15:53:21 +02004361 /*
4362 * We have just initialized the main proxies list
4363 * we must also configure the log-forward proxies list
4364 */
4365 if (init_proxies_list == proxies_list) {
4366 init_proxies_list = cfg_log_forward;
Emeric Brun8032a272022-08-22 10:25:11 +02004367 /* check if list is not null to avoid infinite loop */
4368 if (init_proxies_list)
4369 goto init_proxies_list_stage2;
Emeric Brun3b68b602022-08-18 15:53:21 +02004370 }
4371
Amaury Denoyelle28ea31c2022-11-14 16:18:46 +01004372 if (diag_no_cluster_secret) {
4373 ha_diag_warning("Generating a random cluster secret. "
4374 "You should define your own one in the configuration to ensure consistency "
4375 "after reload/restart or across your whole cluster.\n");
4376 }
Frédéric Lécaille372508c2022-05-06 08:53:16 +02004377
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004378 /*
4379 * Recount currently required checks.
4380 */
4381
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004382 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004383 int optnum;
4384
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004385 for (optnum = 0; cfg_opts[optnum].name; optnum++)
4386 if (curproxy->options & cfg_opts[optnum].val)
4387 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004388
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004389 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
4390 if (curproxy->options2 & cfg_opts2[optnum].val)
4391 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004392 }
4393
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004394 if (cfg_peers) {
4395 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02004396 struct peer *p, *pb;
4397
Willy Tarreau1e273012015-05-01 19:15:17 +02004398 /* Remove all peers sections which don't have a valid listener,
4399 * which are not used by any table, or which are bound to more
4400 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02004401 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004402 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02004403 while (*last) {
Frédéric Lécaille36d15652022-10-17 14:58:19 +02004404 struct peer *peer;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004405 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02004406 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004407
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02004408 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004409 /* the "disabled" keyword was present */
4410 if (curpeers->peers_fe)
4411 stop_proxy(curpeers->peers_fe);
4412 curpeers->peers_fe = NULL;
4413 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02004414 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004415 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
4416 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004417 if (curpeers->peers_fe)
4418 stop_proxy(curpeers->peers_fe);
4419 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004420 }
4421 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004422 /* Initializes the transport layer of the server part of all the peers belonging to
4423 * <curpeers> section if required.
4424 * Note that ->srv is used by the local peer of a new process to connect to the local peer
4425 * of an old process.
4426 */
Christopher Faulet56717802021-10-13 10:10:09 +02004427 curpeers->peers_fe->flags |= PR_FL_READY;
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004428 p = curpeers->remote;
4429 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004430 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004431 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 +01004432 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
4433 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004434 p = p->next;
4435 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004436 /* Configure the SSL bindings of the local peer if required. */
4437 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
4438 struct list *l;
4439 struct bind_conf *bind_conf;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004440 struct listener *li;
4441 unsigned long mask;
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004442
4443 l = &curpeers->peers_fe->conf.bind;
4444 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
Willy Tarreaud2494e02022-07-05 16:00:56 +02004445
Christopher Faulet1b6fa7f2022-07-26 19:03:51 +02004446 if (curpeers->local->srv) {
4447 if (curpeers->local->srv->use_ssl == 1 && !(bind_conf->options & BC_O_USE_SSL)) {
4448 ha_warning("Peers section '%s': local peer have a non-SSL listener and a SSL server configured at line %s:%d.\n",
4449 curpeers->peers_fe->id, curpeers->local->conf.file, curpeers->local->conf.line);
4450 }
4451 else if (curpeers->local->srv->use_ssl != 1 && (bind_conf->options & BC_O_USE_SSL)) {
4452 ha_warning("Peers section '%s': local peer have a SSL listener and a non-SSL server configured at line %s:%d.\n",
4453 curpeers->peers_fe->id, curpeers->local->conf.file, curpeers->local->conf.line);
4454 }
4455 }
4456
Willy Tarreaud2494e02022-07-05 16:00:56 +02004457 err = NULL;
4458 if (thread_resolve_group_mask(bind_conf->bind_tgroup, bind_conf->bind_thread,
4459 &bind_conf->bind_tgroup, &bind_conf->bind_thread, &err) < 0) {
4460 ha_alert("Peers section '%s': %s in 'bind %s' at [%s:%d].\n",
4461 curpeers->peers_fe->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
4462 free(err);
4463 cfgerr++;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004464 } else if (!((mask = bind_conf->bind_thread) & ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled)) {
Willy Tarreaud2494e02022-07-05 16:00:56 +02004465 unsigned long new_mask = 0;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004466 ulong thr_mask = ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004467
4468 while (mask) {
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004469 new_mask |= mask & thr_mask;
4470 mask >>= ha_tgroup_info[bind_conf->bind_tgroup-1].count;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004471 }
4472
4473 bind_conf->bind_thread = new_mask;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004474 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",
4475 curpeers->peers_fe->id, bind_conf->arg, bind_conf->file, bind_conf->line,
4476 bind_conf->bind_tgroup, ha_tgroup_info[bind_conf->bind_tgroup-1].count, new_mask);
Willy Tarreaud2494e02022-07-05 16:00:56 +02004477 }
4478
4479 /* apply thread masks and groups to all receivers */
4480 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
4481 li->rx.bind_thread = bind_conf->bind_thread;
4482 li->rx.bind_tgroup = bind_conf->bind_tgroup;
4483 }
4484
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004485 if (bind_conf->xprt->prepare_bind_conf &&
4486 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4487 cfgerr++;
4488 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004489 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004490 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4491 curpeers->id);
4492 cfgerr++;
4493 break;
4494 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004495 last = &curpeers->next;
Frédéric Lécaille36d15652022-10-17 14:58:19 +02004496
4497 /* Ignore the peer shard greater than the number of peer shard for this section.
4498 * Also ignore the peer shard of the local peer.
4499 */
4500 for (peer = curpeers->remote; peer; peer = peer->next) {
4501 if (peer == curpeers->local) {
4502 if (peer->srv->shard) {
4503 ha_warning("Peers section '%s': shard ignored for '%s' local peer\n",
4504 curpeers->id, peer->id);
4505 peer->srv->shard = 0;
4506 }
4507 }
4508 else if (peer->srv->shard > curpeers->nb_shards) {
4509 ha_warning("Peers section '%s': shard ignored for '%s' local peer because "
4510 "%d shard value is greater than the section number of shards (%d)\n",
4511 curpeers->id, peer->id, peer->srv->shard, curpeers->nb_shards);
4512 peer->srv->shard = 0;
4513 }
4514 }
4515
Willy Tarreau122541c2011-09-07 21:24:49 +02004516 continue;
4517 }
4518
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004519 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004520 p = curpeers->remote;
4521 while (p) {
4522 pb = p->next;
4523 free(p->id);
4524 free(p);
4525 p = pb;
4526 }
4527
4528 /* Destroy and unlink this curpeers section.
4529 * Note: curpeers is backed up into *last.
4530 */
4531 free(curpeers->id);
4532 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004533 /* Reset any refereance to this peers section in the list of stick-tables */
4534 for (t = stktables_list; t; t = t->next) {
4535 if (t->peers.p && t->peers.p == *last)
4536 t->peers.p = NULL;
4537 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004538 free(*last);
4539 *last = curpeers;
4540 }
4541 }
4542
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004543 for (t = stktables_list; t; t = t->next) {
4544 if (t->proxy)
4545 continue;
4546 if (!stktable_init(t)) {
4547 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4548 cfgerr++;
4549 }
4550 }
4551
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004552 /* initialize stick-tables on backend capable proxies. This must not
4553 * be done earlier because the data size may be discovered while parsing
4554 * other proxies.
4555 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004556 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004557 if ((curproxy->flags & PR_FL_DISABLED) || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004558 continue;
4559
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004560 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004561 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004562 cfgerr++;
4563 }
4564 }
4565
Simon Horman0d16a402015-01-30 11:22:58 +09004566 if (mailers) {
4567 struct mailers *curmailers = mailers, **last;
4568 struct mailer *m, *mb;
4569
4570 /* Remove all mailers sections which don't have a valid listener.
4571 * This can happen when a mailers section is never referenced.
4572 */
4573 last = &mailers;
4574 while (*last) {
4575 curmailers = *last;
4576 if (curmailers->users) {
4577 last = &curmailers->next;
4578 continue;
4579 }
4580
Christopher Faulet767a84b2017-11-24 16:50:31 +01004581 ha_warning("Removing incomplete section 'mailers %s'.\n",
4582 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004583
4584 m = curmailers->mailer_list;
4585 while (m) {
4586 mb = m->next;
4587 free(m->id);
4588 free(m);
4589 m = mb;
4590 }
4591
4592 /* Destroy and unlink this curmailers section.
4593 * Note: curmailers is backed up into *last.
4594 */
4595 free(curmailers->id);
4596 curmailers = curmailers->next;
4597 free(*last);
4598 *last = curmailers;
4599 }
4600 }
4601
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004602 /* Update server_state_file_name to backend name if backend is supposed to use
4603 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004604 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004605 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4606 curproxy->server_state_file_name == NULL)
4607 curproxy->server_state_file_name = strdup(curproxy->id);
4608 }
4609
Emeric Brun750fe792020-12-23 16:51:12 +01004610 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06004611 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004612 ha_warning("resolvers '%s' [%s:%d] has no nameservers configured!\n",
Ben Draut054fbee2018-04-13 15:43:04 -06004613 curr_resolvers->id, curr_resolvers->conf.file,
4614 curr_resolvers->conf.line);
4615 err_code |= ERR_WARN;
4616 }
4617 }
4618
William Lallemand48b4bb42017-10-23 14:36:34 +02004619 list_for_each_entry(postparser, &postparsers, list) {
4620 if (postparser->func)
4621 cfgerr += postparser->func();
4622 }
4623
Willy Tarreaubb925012009-07-23 13:36:36 +02004624 if (cfgerr > 0)
4625 err_code |= ERR_ALERT | ERR_FATAL;
4626 out:
4627 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004628}
4629
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004630/*
4631 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4632 * parsing sessions.
4633 */
4634void cfg_register_keywords(struct cfg_kw_list *kwl)
4635{
Willy Tarreau2b718102021-04-21 07:32:39 +02004636 LIST_APPEND(&cfg_keywords.list, &kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004637}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004638
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004639/*
4640 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4641 */
4642void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4643{
Willy Tarreau2b718102021-04-21 07:32:39 +02004644 LIST_DELETE(&kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004645 LIST_INIT(&kwl->list);
4646}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004647
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004648/* this function register new section in the haproxy configuration file.
4649 * <section_name> is the name of this new section and <section_parser>
4650 * is the called parser. If two section declaration have the same name,
4651 * only the first declared is used.
4652 */
4653int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004654 int (*section_parser)(const char *, int, char **, int),
4655 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004656{
4657 struct cfg_section *cs;
4658
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004659 list_for_each_entry(cs, &sections, list) {
4660 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004661 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004662 return 0;
4663 }
4664 }
4665
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004666 cs = calloc(1, sizeof(*cs));
4667 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004668 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004669 return 0;
4670 }
4671
4672 cs->section_name = section_name;
4673 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004674 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004675
Willy Tarreau2b718102021-04-21 07:32:39 +02004676 LIST_APPEND(&sections, &cs->list);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004677
4678 return 1;
4679}
4680
William Lallemand48b4bb42017-10-23 14:36:34 +02004681/* this function register a new function which will be called once the haproxy
4682 * configuration file has been parsed. It's useful to check dependencies
4683 * between sections or to resolve items once everything is parsed.
4684 */
4685int cfg_register_postparser(char *name, int (*func)())
4686{
4687 struct cfg_postparser *cp;
4688
4689 cp = calloc(1, sizeof(*cp));
4690 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004691 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004692 return 0;
4693 }
4694 cp->name = name;
4695 cp->func = func;
4696
Willy Tarreau2b718102021-04-21 07:32:39 +02004697 LIST_APPEND(&postparsers, &cp->list);
William Lallemand48b4bb42017-10-23 14:36:34 +02004698
4699 return 1;
4700}
4701
Willy Tarreaubaaee002006-06-26 02:48:02 +02004702/*
David Carlier845efb52015-09-25 11:49:18 +01004703 * free all config section entries
4704 */
4705void cfg_unregister_sections(void)
4706{
4707 struct cfg_section *cs, *ics;
4708
4709 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004710 LIST_DELETE(&cs->list);
David Carlier845efb52015-09-25 11:49:18 +01004711 free(cs);
4712 }
4713}
4714
Christopher Faulet7110b402016-10-26 11:09:44 +02004715void cfg_backup_sections(struct list *backup_sections)
4716{
4717 struct cfg_section *cs, *ics;
4718
4719 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004720 LIST_DELETE(&cs->list);
4721 LIST_APPEND(backup_sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004722 }
4723}
4724
4725void cfg_restore_sections(struct list *backup_sections)
4726{
4727 struct cfg_section *cs, *ics;
4728
4729 list_for_each_entry_safe(cs, ics, backup_sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004730 LIST_DELETE(&cs->list);
4731 LIST_APPEND(&sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004732 }
4733}
4734
Willy Tarreauca1acd62022-03-29 15:02:44 +02004735/* dumps all registered keywords by section on stdout */
4736void cfg_dump_registered_keywords()
4737{
4738 const char* sect_names[] = { "", "global", "listen", "userlist", "peers", 0 };
4739 int section;
4740 int index;
4741
4742 for (section = 1; sect_names[section]; section++) {
4743 struct cfg_kw_list *kwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004744 const struct cfg_keyword *kwp, *kwn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004745
4746 printf("%s\n", sect_names[section]);
Willy Tarreaud9058262022-03-30 11:21:32 +02004747
4748 for (kwn = kwp = NULL;; kwp = kwn) {
4749 list_for_each_entry(kwl, &cfg_keywords.list, list) {
4750 for (index = 0; kwl->kw[index].kw != NULL; index++)
4751 if (kwl->kw[index].section == section &&
4752 strordered(kwp ? kwp->kw : NULL, kwl->kw[index].kw, kwn != kwp ? kwn->kw : NULL))
4753 kwn = &kwl->kw[index];
4754 }
4755 if (kwn == kwp)
4756 break;
4757 printf("\t%s\n", kwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004758 }
4759
4760 if (section == CFG_LISTEN) {
4761 /* there are plenty of other keywords there */
4762 extern struct list tcp_req_conn_keywords, tcp_req_sess_keywords,
4763 tcp_req_cont_keywords, tcp_res_cont_keywords;
4764 extern struct bind_kw_list bind_keywords;
4765 extern struct ssl_bind_kw ssl_bind_kws[] __maybe_unused;
4766 extern struct srv_kw_list srv_keywords;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004767 struct bind_kw_list *bkwl;
4768 struct srv_kw_list *skwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004769 const struct bind_kw *bkwp, *bkwn;
4770 const struct srv_kw *skwp, *skwn;
4771 const struct ssl_bind_kw *sbkwp __maybe_unused, *sbkwn __maybe_unused;
4772 const struct cfg_opt *coptp, *coptn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004773
Willy Tarreaud9058262022-03-30 11:21:32 +02004774 for (bkwn = bkwp = NULL;; bkwp = bkwn) {
4775 list_for_each_entry(bkwl, &bind_keywords.list, list) {
4776 for (index = 0; bkwl->kw[index].kw != NULL; index++)
4777 if (strordered(bkwp ? bkwp->kw : NULL,
4778 bkwl->kw[index].kw,
4779 bkwn != bkwp ? bkwn->kw : NULL))
4780 bkwn = &bkwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004781 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004782 if (bkwn == bkwp)
4783 break;
4784
4785 if (!bkwn->skip)
4786 printf("\tbind <addr> %s\n", bkwn->kw);
4787 else
4788 printf("\tbind <addr> %s +%d\n", bkwn->kw, bkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004789 }
4790
4791#if defined(USE_OPENSSL)
Willy Tarreaud9058262022-03-30 11:21:32 +02004792 for (sbkwn = sbkwp = NULL;; sbkwp = sbkwn) {
4793 for (index = 0; ssl_bind_kws[index].kw != NULL; index++) {
4794 if (strordered(sbkwp ? sbkwp->kw : NULL,
4795 ssl_bind_kws[index].kw,
4796 sbkwn != sbkwp ? sbkwn->kw : NULL))
4797 sbkwn = &ssl_bind_kws[index];
4798 }
4799 if (sbkwn == sbkwp)
4800 break;
4801 if (!sbkwn->skip)
4802 printf("\tbind <addr> ssl %s\n", sbkwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004803 else
Willy Tarreaud9058262022-03-30 11:21:32 +02004804 printf("\tbind <addr> ssl %s +%d\n", sbkwn->kw, sbkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004805 }
4806#endif
4807
Willy Tarreaud9058262022-03-30 11:21:32 +02004808 for (skwn = skwp = NULL;; skwp = skwn) {
4809 list_for_each_entry(skwl, &srv_keywords.list, list) {
4810 for (index = 0; skwl->kw[index].kw != NULL; index++)
4811 if (strordered(skwp ? skwp->kw : NULL,
4812 skwl->kw[index].kw,
4813 skwn != skwp ? skwn->kw : NULL))
4814 skwn = &skwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004815 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004816 if (skwn == skwp)
4817 break;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004818
Willy Tarreaud9058262022-03-30 11:21:32 +02004819 if (!skwn->skip)
4820 printf("\tserver <name> <addr> %s\n", skwn->kw);
4821 else
4822 printf("\tserver <name> <addr> %s +%d\n", skwn->kw, skwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004823 }
4824
Willy Tarreaud9058262022-03-30 11:21:32 +02004825 for (coptn = coptp = NULL;; coptp = coptn) {
4826 for (index = 0; cfg_opts[index].name; index++)
4827 if (strordered(coptp ? coptp->name : NULL,
4828 cfg_opts[index].name,
4829 coptn != coptp ? coptn->name : NULL))
4830 coptn = &cfg_opts[index];
4831
4832 for (index = 0; cfg_opts2[index].name; index++)
4833 if (strordered(coptp ? coptp->name : NULL,
4834 cfg_opts2[index].name,
4835 coptn != coptp ? coptn->name : NULL))
4836 coptn = &cfg_opts2[index];
4837 if (coptn == coptp)
4838 break;
4839
4840 printf("\toption %s [ ", coptn->name);
4841 if (coptn->cap & PR_CAP_FE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004842 printf("FE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004843 if (coptn->cap & PR_CAP_BE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004844 printf("BE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004845 if (coptn->mode == PR_MODE_HTTP)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004846 printf("HTTP ");
4847 printf("]\n");
4848 }
4849
Willy Tarreaud9058262022-03-30 11:21:32 +02004850 dump_act_rules(&tcp_req_conn_keywords, "\ttcp-request connection ");
4851 dump_act_rules(&tcp_req_sess_keywords, "\ttcp-request session ");
4852 dump_act_rules(&tcp_req_cont_keywords, "\ttcp-request content ");
4853 dump_act_rules(&tcp_res_cont_keywords, "\ttcp-response content ");
4854 dump_act_rules(&http_req_keywords.list, "\thttp-request ");
4855 dump_act_rules(&http_res_keywords.list, "\thttp-response ");
4856 dump_act_rules(&http_after_res_keywords.list, "\thttp-after-response ");
Willy Tarreauca1acd62022-03-29 15:02:44 +02004857 }
4858 }
4859}
4860
Willy Tarreaue6552512018-11-26 11:33:13 +01004861/* these are the config sections handled by default */
4862REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4863REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4864REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4865REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4866REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4867REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4868REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4869REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4870REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004871
Willy Tarreau8a022d52021-04-27 20:29:11 +02004872static struct cfg_kw_list cfg_kws = {{ },{
4873 { CFG_GLOBAL, "default-path", cfg_parse_global_def_path },
4874 { /* END */ }
4875}};
4876
4877INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4878
David Carlier845efb52015-09-25 11:49:18 +01004879/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004880 * Local variables:
4881 * c-indent-level: 8
4882 * c-basic-offset: 8
4883 * End:
4884 */