blob: 036a30321798ed01c5e9a072bafe4b09155012ac [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 Tarreaue5733232019-05-22 19:24:06 +020013#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +020014/* This is to have crypt() defined on Linux */
15#define _GNU_SOURCE
16
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 Tarreau3f49b302007-06-11 00:29:26 +020032#include <sys/types.h>
33#include <sys/stat.h>
34#include <fcntl.h>
35#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036
Willy Tarreaudcc048a2020-06-04 19:11:43 +020037#include <haproxy/acl.h>
Christopher Faulet42c6cf92021-03-25 17:19:04 +010038#include <haproxy/action.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020039#include <haproxy/api.h>
Willy Tarreau732525f2021-05-06 15:49:04 +020040#include <haproxy/arg.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020041#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020042#include <haproxy/backend.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020043#include <haproxy/capture.h>
Willy Tarreau66243b42021-07-16 15:39:28 +020044#include <haproxy/cfgcond.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020045#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020046#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020047#include <haproxy/check.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020048#include <haproxy/chunk.h>
Willy Tarreau55542642021-10-08 09:33:24 +020049#include <haproxy/clock.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020050#ifdef USE_CPU_AFFINITY
Amaury Denoyellec90932b2021-04-14 16:16:03 +020051#include <haproxy/cpuset.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020052#endif
Willy Tarreau7ea393d2020-06-04 18:02:10 +020053#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020054#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020055#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020056#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020057#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020058#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020059#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020060#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020061#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020062#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020063#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020064#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020065#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020066#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020067#include <haproxy/mailers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020068#include <haproxy/namespace.h>
Amaury Denoyelleb59b8892022-01-25 17:48:47 +010069#include <haproxy/quic_sock.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020070#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020071#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020072#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020073#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020074#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020075#include <haproxy/proxy.h>
Emeric Brunc9437992021-02-12 19:42:55 +010076#include <haproxy/resolvers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020077#include <haproxy/sample.h>
78#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020079#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020080#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020081#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020082#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020083#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020084#include <haproxy/tcp_rules.h>
Amaury Denoyellef2c27a52021-07-23 15:46:46 +020085#include <haproxy/tcpcheck.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020086#include <haproxy/thread.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020087#include <haproxy/tools.h>
88#include <haproxy/uri_auth-t.h>
Frédéric Lécaille884f2e92020-11-23 14:23:21 +010089#include <haproxy/xprt_quic.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020090
91
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010092/* Used to chain configuration sections definitions. This list
93 * stores struct cfg_section
94 */
95struct list sections = LIST_HEAD_INIT(sections);
96
William Lallemand48b4bb42017-10-23 14:36:34 +020097struct list postparsers = LIST_HEAD_INIT(postparsers);
98
Eric Salama1b8dacc2021-03-16 15:12:17 +010099extern struct proxy *mworker_proxy;
100
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100101char *cursection = NULL;
Willy Tarreauc8d5b952019-02-27 17:25:52 +0100102int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +0100103int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +0100104char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200105
Willy Tarreau8a022d52021-04-27 20:29:11 +0200106/* how to handle default paths */
107static enum default_path_mode {
108 DEFAULT_PATH_CURRENT = 0, /* "current": paths are relative to CWD (this is the default) */
109 DEFAULT_PATH_CONFIG, /* "config": paths are relative to config file */
110 DEFAULT_PATH_PARENT, /* "parent": paths are relative to config file's ".." */
111 DEFAULT_PATH_ORIGIN, /* "origin": paths are relative to default_path_origin */
112} default_path_mode;
113
114static char initial_cwd[PATH_MAX];
115static char current_cwd[PATH_MAX];
116
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200117/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100118struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200119 .list = LIST_HEAD_INIT(cfg_keywords.list)
120};
121
Willy Tarreaubaaee002006-06-26 02:48:02 +0200122/*
123 * converts <str> to a list of listeners which are dynamically allocated.
124 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
125 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
126 * - <port> is a numerical port from 1 to 65535 ;
127 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
128 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200129 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
130 * not NULL, it must be a valid pointer to either NULL or a freeable area that
131 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200132 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200133int 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 +0200134{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200135 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100136 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200137 int port, end;
138
139 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200140
Willy Tarreaubaaee002006-06-26 02:48:02 +0200141 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200142 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100143 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200144
145 str = next;
146 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100147 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200148 *next++ = 0;
149 }
150
Willy Tarreau5fc93282020-09-16 18:25:03 +0200151 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Eric Salama1b8dacc2021-03-16 15:12:17 +0100152 (curproxy == global.cli_fe || curproxy == mworker_proxy) ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200153 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200154 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100155 if (!ss2)
156 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200157
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100158 /* OK the address looks correct */
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100159
160#ifdef USE_QUIC
161 /* The transport layer automatically switches to QUIC when QUIC
162 * is selected, regardless of bind_conf settings. We then need
163 * to initialize QUIC params.
164 */
Willy Tarreaue3b45182021-10-27 17:28:55 +0200165 if (proto->proto_type == PROTO_TYPE_DGRAM && proto->ctrl_type == SOCK_STREAM) {
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100166 bind_conf->xprt = xprt_get(XPRT_QUIC);
167 quic_transport_params_init(&bind_conf->quic_params, 1);
168 }
169#endif
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200170 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200171 memprintf(err, "%s for address '%s'.\n", *err, str);
172 goto fail;
173 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200174 } /* end while(next) */
175 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200176 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200177 fail:
178 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200179 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200180}
181
William Lallemand6e62fb62015-04-28 16:55:23 +0200182/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200183 * converts <str> to a list of datagram-oriented listeners which are dynamically
184 * allocated.
185 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
186 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
187 * - <port> is a numerical port from 1 to 65535 ;
188 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
189 * This can be repeated as many times as necessary, separated by a coma.
190 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
191 * not NULL, it must be a valid pointer to either NULL or a freeable area that
192 * will be replaced with an error message.
193 */
194int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
195{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200196 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200197 char *next, *dupstr;
198 int port, end;
199
200 next = dupstr = strdup(str);
201
202 while (next && *next) {
203 struct sockaddr_storage *ss2;
204 int fd = -1;
205
206 str = next;
207 /* 1) look for the end of the first address */
208 if ((next = strchr(str, ',')) != NULL) {
209 *next++ = 0;
210 }
211
Willy Tarreau5fc93282020-09-16 18:25:03 +0200212 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreau4975d142021-03-13 11:00:33 +0100213 curproxy == global.cli_fe ? NULL : global.unix_bind.prefix,
Willy Tarreauaa333122020-09-16 15:13:04 +0200214 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
215 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
216 if (!ss2)
217 goto fail;
218
219 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200220 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200221 memprintf(err, "%s for address '%s'.\n", *err, str);
222 goto fail;
223 }
224 } /* end while(next) */
225 free(dupstr);
226 return 1;
227 fail:
228 free(dupstr);
229 return 0;
230}
231
232/*
Willy Tarreau08138612021-05-08 19:58:37 +0200233 * Sends a warning if proxy <proxy> does not have at least one of the
234 * capabilities in <cap>. An optional <hint> may be added at the end
235 * of the warning to help the user. Returns 1 if a warning was emitted
236 * or 0 if the condition is valid.
237 */
238int warnifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint)
239{
240 char *msg;
241
242 switch (cap) {
243 case PR_CAP_BE: msg = "no backend"; break;
244 case PR_CAP_FE: msg = "no frontend"; break;
245 case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break;
246 default: msg = "not enough"; break;
247 }
248
249 if (!(proxy->cap & cap)) {
250 ha_warning("parsing [%s:%d] : '%s' ignored because %s '%s' has %s capability.%s\n",
251 file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : "");
252 return 1;
253 }
254 return 0;
255}
256
257/*
258 * Sends an alert if proxy <proxy> does not have at least one of the
259 * capabilities in <cap>. An optional <hint> may be added at the end
260 * of the alert to help the user. Returns 1 if an alert was emitted
261 * or 0 if the condition is valid.
262 */
263int failifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint)
264{
265 char *msg;
266
267 switch (cap) {
268 case PR_CAP_BE: msg = "no backend"; break;
269 case PR_CAP_FE: msg = "no frontend"; break;
270 case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break;
271 default: msg = "not enough"; break;
272 }
273
274 if (!(proxy->cap & cap)) {
275 ha_alert("parsing [%s:%d] : '%s' not allowed because %s '%s' has %s capability.%s\n",
276 file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : "");
277 return 1;
278 }
279 return 0;
280}
281
282/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100283 * Report an error in <msg> when there are too many arguments. This version is
284 * intended to be used by keyword parsers so that the message will be included
285 * into the general error message. The index is the current keyword in args.
286 * Return 0 if the number of argument is correct, otherwise build a message and
287 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
288 * message may also be null, it will simply not be produced (useful to check only).
289 * <msg> and <err_code> are only affected on error.
290 */
291int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
292{
293 int i;
294
295 if (!*args[index + maxarg + 1])
296 return 0;
297
298 if (msg) {
299 *msg = NULL;
300 memprintf(msg, "%s", args[0]);
301 for (i = 1; i <= index; i++)
302 memprintf(msg, "%s %s", *msg, args[i]);
303
304 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
305 }
306 if (err_code)
307 *err_code |= ERR_ALERT | ERR_FATAL;
308
309 return 1;
310}
311
312/*
313 * same as too_many_args_idx with a 0 index
314 */
315int too_many_args(int maxarg, char **args, char **msg, int *err_code)
316{
317 return too_many_args_idx(maxarg, 0, args, msg, err_code);
318}
319
320/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200321 * Report a fatal Alert when there is too much arguments
322 * The index is the current keyword in args
323 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
324 * Fill err_code with an ERR_ALERT and an ERR_FATAL
325 */
326int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
327{
328 char *kw = NULL;
329 int i;
330
331 if (!*args[index + maxarg + 1])
332 return 0;
333
334 memprintf(&kw, "%s", args[0]);
335 for (i = 1; i <= index; i++) {
336 memprintf(&kw, "%s %s", kw, args[i]);
337 }
338
Christopher Faulet767a84b2017-11-24 16:50:31 +0100339 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 +0200340 free(kw);
341 *err_code |= ERR_ALERT | ERR_FATAL;
342 return 1;
343}
344
345/*
346 * same as alertif_too_many_args_idx with a 0 index
347 */
348int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
349{
350 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
351}
352
Willy Tarreau61d18892009-03-31 10:49:21 +0200353
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100354/* Report it if a request ACL condition uses some keywords that are incompatible
355 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
356 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
357 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100358 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100359int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100360{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100361 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200362 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100363
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100364 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100365 return 0;
366
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100367 acl = acl_cond_conflicts(cond, where);
368 if (acl) {
369 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100370 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
371 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100372 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100373 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
374 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100375 return ERR_WARN;
376 }
377 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100378 return 0;
379
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100380 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100381 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
382 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100383 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100384 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
385 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100386 return ERR_WARN;
387}
388
Christopher Faulet581db2b2021-03-26 10:02:46 +0100389/* Report it if an ACL uses a L6 sample fetch from an HTTP proxy. It returns
390 * either 0 or ERR_WARN so that its result can be or'ed with err_code. Note that
391 * <cond> may be NULL and then will be ignored.
392*/
393int warnif_tcp_http_cond(const struct proxy *px, const struct acl_cond *cond)
394{
395 if (!cond || px->mode != PR_MODE_HTTP)
396 return 0;
397
398 if (cond->use & (SMP_USE_L6REQ|SMP_USE_L6RES)) {
399 ha_warning("Proxy '%s': L6 sample fetches ignored on HTTP proxies (declared at %s:%d).\n",
400 px->id, cond->file, cond->line);
401 return ERR_WARN;
402 }
403 return 0;
404}
405
Willy Tarreaue2afcc42021-03-12 09:08:04 +0100406/* try to find in <list> the word that looks closest to <word> by counting
407 * transitions between letters, digits and other characters. Will return the
408 * best matching word if found, otherwise NULL. An optional array of extra
409 * words to compare may be passed in <extra>, but it must then be terminated
410 * by a NULL entry. If unused it may be NULL.
411 */
412const char *cfg_find_best_match(const char *word, const struct list *list, int section, const char **extra)
413{
414 uint8_t word_sig[1024]; // 0..25=letter, 26=digit, 27=other, 28=begin, 29=end
415 uint8_t list_sig[1024];
416 const struct cfg_kw_list *kwl;
417 int index;
418 const char *best_ptr = NULL;
419 int dist, best_dist = INT_MAX;
420
421 make_word_fingerprint(word_sig, word);
422 list_for_each_entry(kwl, list, list) {
423 for (index = 0; kwl->kw[index].kw != NULL; index++) {
424 if (kwl->kw[index].section != section)
425 continue;
426
427 make_word_fingerprint(list_sig, kwl->kw[index].kw);
428 dist = word_fingerprint_distance(word_sig, list_sig);
429 if (dist < best_dist) {
430 best_dist = dist;
431 best_ptr = kwl->kw[index].kw;
432 }
433 }
434 }
435
436 while (extra && *extra) {
437 make_word_fingerprint(list_sig, *extra);
438 dist = word_fingerprint_distance(word_sig, list_sig);
439 if (dist < best_dist) {
440 best_dist = dist;
441 best_ptr = *extra;
442 }
443 extra++;
444 }
445
446 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
447 best_ptr = NULL;
448 return best_ptr;
449}
450
Christopher Faulet62519022017-10-16 15:49:32 +0200451/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100452 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100453 * two such numbers delimited by a dash ('-'). On success, it returns
454 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200455 *
456 * Note: this function can also be used to parse a thread number or a set of
457 * threads.
458 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100459int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200460{
Christopher Faulet26028f62017-11-22 15:01:51 +0100461 if (autoinc) {
462 *autoinc = 0;
463 if (strncmp(arg, "auto:", 5) == 0) {
464 arg += 5;
465 *autoinc = 1;
466 }
467 }
468
Christopher Faulet62519022017-10-16 15:49:32 +0200469 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100470 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200471 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100472 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200473 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100474 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200475 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100476 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100477 unsigned int low, high;
478
Christopher Faulet18cca782019-02-07 16:29:41 +0100479 for (p = arg; *p; p++) {
480 if (*p == '-' && !dash)
481 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100482 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100483 memprintf(err, "'%s' is not a valid number/range.", arg);
484 return -1;
485 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100486 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100487
488 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100489 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100490 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100491
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100492 if (high < low) {
493 unsigned int swap = low;
494 low = high;
495 high = swap;
496 }
497
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100498 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100499 memprintf(err, "'%s' is not a valid number/range."
500 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100501 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100502 return 1;
503 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100504
505 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100506 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200507 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100508 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100509
Christopher Faulet5ab51772017-11-22 11:21:58 +0100510 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200511}
512
David Carlier7e351ee2017-12-01 09:14:02 +0000513#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200514/* Parse cpu sets. Each CPU set is either a unique number between 0 and
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200515 * ha_cpuset_size() - 1 or a range with two such numbers delimited by a dash
Amaury Denoyellea8082352021-04-06 16:46:15 +0200516 * ('-'). If <comma_allowed> is set, each CPU set can be a list of unique
517 * numbers or ranges separated by a comma. It is also possible to specify
518 * multiple cpu numbers or ranges in distinct argument in <args>. On success,
519 * it returns 0, otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200520 */
Amaury Denoyellea8082352021-04-06 16:46:15 +0200521unsigned long parse_cpu_set(const char **args, struct hap_cpuset *cpu_set,
522 int comma_allowed, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200523{
524 int cur_arg = 0;
Amaury Denoyellea8082352021-04-06 16:46:15 +0200525 const char *arg;
Christopher Faulet62519022017-10-16 15:49:32 +0200526
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200527 ha_cpuset_zero(cpu_set);
528
Amaury Denoyellea8082352021-04-06 16:46:15 +0200529 arg = args[cur_arg];
530 while (*arg) {
531 const char *dash, *comma;
Christopher Faulet62519022017-10-16 15:49:32 +0200532 unsigned int low, high;
533
Willy Tarreau90807112020-02-25 08:16:33 +0100534 if (!isdigit((unsigned char)*args[cur_arg])) {
Amaury Denoyellea8082352021-04-06 16:46:15 +0200535 memprintf(err, "'%s' is not a CPU range.", arg);
Christopher Faulet62519022017-10-16 15:49:32 +0200536 return -1;
537 }
538
Amaury Denoyellea8082352021-04-06 16:46:15 +0200539 low = high = str2uic(arg);
540
541 comma = comma_allowed ? strchr(arg, ',') : NULL;
542 dash = strchr(arg, '-');
543
544 if (dash && (!comma || dash < comma))
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200545 high = *(dash+1) ? str2uic(dash + 1) : ha_cpuset_size() - 1;
Christopher Faulet62519022017-10-16 15:49:32 +0200546
547 if (high < low) {
548 unsigned int swap = low;
549 low = high;
550 high = swap;
551 }
552
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200553 if (high >= ha_cpuset_size()) {
554 memprintf(err, "supports CPU numbers from 0 to %d.",
555 ha_cpuset_size() - 1);
Christopher Faulet62519022017-10-16 15:49:32 +0200556 return 1;
557 }
558
559 while (low <= high)
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200560 ha_cpuset_set(cpu_set, low++);
Christopher Faulet62519022017-10-16 15:49:32 +0200561
Amaury Denoyellea8082352021-04-06 16:46:15 +0200562 /* if a comma is present, parse the rest of the arg, else
563 * skip to the next arg */
564 arg = comma ? comma + 1 : args[++cur_arg];
Christopher Faulet62519022017-10-16 15:49:32 +0200565 }
566 return 0;
567}
David Carlier7e351ee2017-12-01 09:14:02 +0000568#endif
569
Frédéric Lécaille18251032019-01-11 11:07:15 +0100570/* Allocate and initialize the frontend of a "peers" section found in
571 * file <file> at line <linenum> with <id> as ID.
572 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200573 * Note that this function may be called from "default-server"
574 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100575 */
576static int init_peers_frontend(const char *file, int linenum,
577 const char *id, struct peers *peers)
578{
579 struct proxy *p;
580
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200581 if (peers->peers_fe) {
582 p = peers->peers_fe;
583 goto out;
584 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100585
Frédéric Lécaille18251032019-01-11 11:07:15 +0100586 p = calloc(1, sizeof *p);
587 if (!p) {
588 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
589 return -1;
590 }
591
592 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200593 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100594 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200595 /* Finally store this frontend. */
596 peers->peers_fe = p;
597
598 out:
599 if (id && !p->id)
600 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200601 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100602 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100603 if (linenum != -1)
604 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100605
606 return 0;
607}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100608
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100609/* Only change ->file, ->line and ->arg struct bind_conf member values
610 * if already present.
611 */
612static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
613 const char *file, int line,
614 const char *arg, struct xprt_ops *xprt)
615{
616 struct bind_conf *bind_conf;
617
618 if (!LIST_ISEMPTY(&p->conf.bind)) {
619 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
620 free(bind_conf->file);
621 bind_conf->file = strdup(file);
622 bind_conf->line = line;
623 if (arg) {
624 free(bind_conf->arg);
625 bind_conf->arg = strdup(arg);
626 }
627 }
628 else {
629 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
630 }
631
632 return bind_conf;
633}
634
635/*
636 * Allocate a new struct peer parsed at line <linenum> in file <file>
637 * to be added to <peers>.
638 * Returns the new allocated structure if succeeded, NULL if not.
639 */
640static struct peer *cfg_peers_add_peer(struct peers *peers,
641 const char *file, int linenum,
642 const char *id, int local)
643{
644 struct peer *p;
645
646 p = calloc(1, sizeof *p);
647 if (!p) {
648 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
649 return NULL;
650 }
651
652 /* the peers are linked backwards first */
653 peers->count++;
654 p->next = peers->remote;
655 peers->remote = p;
656 p->conf.file = strdup(file);
657 p->conf.line = linenum;
658 p->last_change = now.tv_sec;
659 p->xprt = xprt_get(XPRT_RAW);
660 p->sock_init_arg = NULL;
661 HA_SPIN_INIT(&p->lock);
662 if (id)
663 p->id = strdup(id);
664 if (local) {
665 p->local = 1;
666 peers->local = p;
667 }
668
669 return p;
670}
671
Willy Tarreaubaaee002006-06-26 02:48:02 +0200672/*
William Lallemand51097192015-04-14 16:35:22 +0200673 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200674 * Returns the error code, 0 if OK, or any combination of :
675 * - ERR_ABORT: must abort ASAP
676 * - ERR_FATAL: we can continue parsing but not start the service
677 * - ERR_WARN: a warning has been emitted
678 * - ERR_ALERT: an alert has been emitted
679 * Only the two first ones can stop processing, the two others are just
680 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200681 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200682int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
683{
684 static struct peers *curpeers = NULL;
685 struct peer *newpeer = NULL;
686 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200687 struct bind_conf *bind_conf;
688 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200689 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100690 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100691 static int bind_line, peer_line;
692
693 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
694 int cur_arg;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100695 struct bind_conf *bind_conf;
696 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200697
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100698 cur_arg = 1;
699
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200700 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
701 err_code |= ERR_ALERT | ERR_ABORT;
702 goto out;
703 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100704
705 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
706 NULL, xprt_get(XPRT_RAW));
707 if (*args[0] == 'b') {
708 struct listener *l;
709
710 if (peer_line) {
711 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
712 err_code |= ERR_ALERT | ERR_FATAL;
713 goto out;
714 }
715
716 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
717 if (errmsg && *errmsg) {
718 indent_msg(&errmsg, 2);
719 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
720 }
721 else
722 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
723 file, linenum, args[0], args[1], args[2]);
724 err_code |= ERR_FATAL;
725 goto out;
726 }
727 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
728 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100729 l->accept = session_accept_fd;
730 l->analysers |= curpeers->peers_fe->fe_req_ana;
731 l->default_target = curpeers->peers_fe->default_target;
732 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100733 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100734
735 bind_line = 1;
736 if (cfg_peers->local) {
737 newpeer = cfg_peers->local;
738 }
739 else {
740 /* This peer is local.
741 * Note that we do not set the peer ID. This latter is initialized
742 * when parsing "peer" or "server" line.
743 */
744 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
745 if (!newpeer) {
746 err_code |= ERR_ALERT | ERR_ABORT;
747 goto out;
748 }
749 }
Willy Tarreau37159062020-08-27 07:48:42 +0200750 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200751 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100752 cur_arg++;
753 }
754
755 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
756 int ret;
757
758 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
759 err_code |= ret;
760 if (ret) {
761 if (errmsg && *errmsg) {
762 indent_msg(&errmsg, 2);
763 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
764 }
765 else
766 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
767 file, linenum, args[cur_arg]);
768 if (ret & ERR_FATAL)
769 goto out;
770 }
771 cur_arg += 1 + kw->skip;
772 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100773 if (*args[cur_arg] != 0) {
Willy Tarreau433b05f2021-03-12 10:14:07 +0100774 const char *best = bind_find_best_kw(args[cur_arg]);
775 if (best)
776 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section; did you mean '%s' maybe ?\n",
777 file, linenum, args[cur_arg], cursection, best);
778 else
779 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.\n",
780 file, linenum, args[cur_arg], cursection);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100781 err_code |= ERR_ALERT | ERR_FATAL;
782 goto out;
783 }
784 }
785 else if (strcmp(args[0], "default-server") == 0) {
786 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
787 err_code |= ERR_ALERT | ERR_ABORT;
788 goto out;
789 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100790 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
791 SRV_PARSE_DEFAULT_SERVER|SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200792 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100793 else if (strcmp(args[0], "log") == 0) {
794 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
795 err_code |= ERR_ALERT | ERR_ABORT;
796 goto out;
797 }
Emeric Brun9533a702021-04-02 10:13:43 +0200798 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), file, linenum, &errmsg)) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100799 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
800 err_code |= ERR_ALERT | ERR_FATAL;
801 goto out;
802 }
803 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200804 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100805 /* Initialize these static variables when entering a new "peers" section*/
806 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100807 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100808 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100809 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100810 goto out;
811 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200812
William Lallemand6e62fb62015-04-28 16:55:23 +0200813 if (alertif_too_many_args(1, file, linenum, args, &err_code))
814 goto out;
815
Emeric Brun32da3c42010-09-23 18:39:19 +0200816 err = invalid_char(args[1]);
817 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100818 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
819 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100820 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100821 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200822 }
823
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200824 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200825 /*
826 * If there are two proxies with the same name only following
827 * combinations are allowed:
828 */
829 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100830 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
831 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200832 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200833 }
834 }
835
Vincent Bernat02779b62016-04-03 13:48:43 +0200836 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100837 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200838 err_code |= ERR_ALERT | ERR_ABORT;
839 goto out;
840 }
841
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200842 curpeers->next = cfg_peers;
843 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200844 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200845 curpeers->conf.line = linenum;
846 curpeers->last_change = now.tv_sec;
847 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200848 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200849 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200850 else if (strcmp(args[0], "peer") == 0 ||
851 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100852 int local_peer, peer;
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100853 int parse_addr = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200854
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100855 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100856 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100857 /* The local peer may have already partially been parsed on a "bind" line. */
858 if (*args[0] == 'p') {
859 if (bind_line) {
860 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
861 err_code |= ERR_ALERT | ERR_FATAL;
862 goto out;
863 }
864 peer_line = 1;
865 }
866 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
867 /* The local peer has already been initialized on a "bind" line.
868 * Let's use it and store its ID.
869 */
870 newpeer = cfg_peers->local;
871 newpeer->id = strdup(localpeer);
872 }
873 else {
874 if (local_peer && cfg_peers->local) {
875 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
876 file, linenum, args[0], args[1],
877 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
878 err_code |= ERR_FATAL;
879 goto out;
880 }
881 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
882 if (!newpeer) {
883 err_code |= ERR_ALERT | ERR_ABORT;
884 goto out;
885 }
886 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200887
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100888 /* Line number and peer ID are updated only if this peer is the local one. */
889 if (init_peers_frontend(file,
890 newpeer->local ? linenum: -1,
891 newpeer->local ? newpeer->id : NULL,
892 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200893 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100894 goto out;
895 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100896
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100897 /* This initializes curpeer->peers->peers_fe->srv.
898 * The server address is parsed only if we are parsing a "peer" line,
899 * or if we are parsing a "server" line and the current peer is not the local one.
900 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100901 parse_addr = (peer || !local_peer) ? SRV_PARSE_PARSE_ADDR : 0;
902 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
903 SRV_PARSE_IN_PEER_SECTION|parse_addr|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200904 if (!curpeers->peers_fe->srv) {
905 /* Remove the newly allocated peer. */
906 if (newpeer != curpeers->local) {
907 struct peer *p;
908
909 p = curpeers->remote;
910 curpeers->remote = curpeers->remote->next;
911 free(p->id);
912 free(p);
913 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200914 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200915 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200916
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100917 /* If the peer address has just been parsed, let's copy it to <newpeer>
918 * and initializes ->proto.
919 */
920 if (peer || !local_peer) {
921 newpeer->addr = curpeers->peers_fe->srv->addr;
Willy Tarreau14e7f292021-10-27 17:41:07 +0200922 newpeer->proto = protocol_lookup(newpeer->addr.ss_family, PROTO_TYPE_STREAM, 0);
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100923 }
924
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100925 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200926 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100927 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200928
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100929 newpeer->srv = curpeers->peers_fe->srv;
930 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200931 goto out;
932
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100933 /* The lines above are reserved to "peer" lines. */
934 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200935 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200936
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100937 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW));
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100938
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100939 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
940 if (errmsg && *errmsg) {
941 indent_msg(&errmsg, 2);
942 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 +0100943 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100944 else
945 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
946 file, linenum, args[0], args[1], args[2]);
947 err_code |= ERR_FATAL;
948 goto out;
949 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100950
951 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
952 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100953 l->accept = session_accept_fd;
954 l->analysers |= curpeers->peers_fe->fe_req_ana;
955 l->default_target = curpeers->peers_fe->default_target;
956 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100957 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100958 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100959 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100960 struct stktable *t, *other;
961 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100962 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100963
964 /* Line number and peer ID are updated only if this peer is the local one. */
965 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
966 err_code |= ERR_ALERT | ERR_ABORT;
967 goto out;
968 }
969
970 other = stktable_find_by_name(args[1]);
971 if (other) {
972 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
973 file, linenum, args[1],
974 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
975 other->proxy ? other->id : other->peers.p->id,
976 other->conf.file, other->conf.line);
977 err_code |= ERR_ALERT | ERR_FATAL;
978 goto out;
979 }
980
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100981 /* Build the stick-table name, concatenating the "peers" section name
982 * followed by a '/' character and the table name argument.
983 */
984 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100985 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100986 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
987 file, linenum, args[0], args[1]);
988 err_code |= ERR_ALERT | ERR_FATAL;
989 goto out;
990 }
991
992 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100993 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100994 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
995 file, linenum, args[0], args[1]);
996 err_code |= ERR_ALERT | ERR_FATAL;
997 goto out;
998 }
999
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001000 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001001 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001002 if (!t || !id) {
1003 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
1004 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +02001005 free(t);
1006 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001007 err_code |= ERR_ALERT | ERR_FATAL;
1008 goto out;
1009 }
1010
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001011 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +02001012 if (err_code & ERR_FATAL) {
1013 free(t);
1014 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001015 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +02001016 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001017
1018 stktable_store_name(t);
1019 t->next = stktables_list;
1020 stktables_list = t;
1021 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001022 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001023 curpeers->disabled |= PR_FL_DISABLED;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001024 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001025 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02001026 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001027 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001028 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001029 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +02001030 err_code |= ERR_ALERT | ERR_FATAL;
1031 goto out;
1032 }
1033
1034out:
Willy Tarreau902636f2013-03-10 19:44:48 +01001035 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +02001036 return err_code;
1037}
1038
Baptiste Assmann325137d2015-04-13 23:40:55 +02001039/*
William Lallemand51097192015-04-14 16:35:22 +02001040 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001041 * Returns the error code, 0 if OK, or any combination of :
1042 * - ERR_ABORT: must abort ASAP
1043 * - ERR_FATAL: we can continue parsing but not start the service
1044 * - ERR_WARN: a warning has been emitted
1045 * - ERR_ALERT: an alert has been emitted
1046 * Only the two first ones can stop processing, the two others are just
1047 * indicators.
1048 */
1049int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1050{
1051 static struct mailers *curmailers = NULL;
1052 struct mailer *newmailer = NULL;
1053 const char *err;
1054 int err_code = 0;
1055 char *errmsg = NULL;
1056
1057 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1058 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001059 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001060 err_code |= ERR_ALERT | ERR_ABORT;
1061 goto out;
1062 }
1063
1064 err = invalid_char(args[1]);
1065 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001066 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1067 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001068 err_code |= ERR_ALERT | ERR_ABORT;
1069 goto out;
1070 }
1071
1072 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1073 /*
1074 * If there are two proxies with the same name only following
1075 * combinations are allowed:
1076 */
1077 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001078 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1079 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001080 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001081 }
1082 }
1083
Vincent Bernat02779b62016-04-03 13:48:43 +02001084 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001085 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001086 err_code |= ERR_ALERT | ERR_ABORT;
1087 goto out;
1088 }
1089
1090 curmailers->next = mailers;
1091 mailers = curmailers;
1092 curmailers->conf.file = strdup(file);
1093 curmailers->conf.line = linenum;
1094 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001095 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1096 * But need enough time so that timeouts don't occur
1097 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001098 }
1099 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1100 struct sockaddr_storage *sk;
1101 int port1, port2;
1102 struct protocol *proto;
1103
1104 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001105 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1106 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001107 err_code |= ERR_ALERT | ERR_FATAL;
1108 goto out;
1109 }
1110
1111 err = invalid_char(args[1]);
1112 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001113 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1114 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001115 err_code |= ERR_ALERT | ERR_FATAL;
1116 goto out;
1117 }
1118
Vincent Bernat02779b62016-04-03 13:48:43 +02001119 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001120 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001121 err_code |= ERR_ALERT | ERR_ABORT;
1122 goto out;
1123 }
1124
1125 /* the mailers are linked backwards first */
1126 curmailers->count++;
1127 newmailer->next = curmailers->mailer_list;
1128 curmailers->mailer_list = newmailer;
1129 newmailer->mailers = curmailers;
1130 newmailer->conf.file = strdup(file);
1131 newmailer->conf.line = linenum;
1132
1133 newmailer->id = strdup(args[1]);
1134
Willy Tarreau5fc93282020-09-16 18:25:03 +02001135 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001136 &errmsg, NULL, NULL,
1137 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 +09001138 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001139 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001140 err_code |= ERR_ALERT | ERR_FATAL;
1141 goto out;
1142 }
1143
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001144 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001145 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1146 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001147 err_code |= ERR_ALERT | ERR_FATAL;
1148 goto out;
1149 }
1150
Simon Horman0d16a402015-01-30 11:22:58 +09001151 newmailer->addr = *sk;
1152 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001153 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001154 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001155 }
1156 else if (strcmp(args[0], "timeout") == 0) {
1157 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001158 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1159 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001160 err_code |= ERR_ALERT | ERR_FATAL;
1161 goto out;
1162 }
1163 else if (strcmp(args[1], "mail") == 0) {
1164 const char *res;
1165 unsigned int timeout_mail;
1166 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001167 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1168 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001169 err_code |= ERR_ALERT | ERR_FATAL;
1170 goto out;
1171 }
1172 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001173 if (res == PARSE_TIME_OVER) {
1174 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1175 file, linenum, args[2], args[0], args[1]);
1176 err_code |= ERR_ALERT | ERR_FATAL;
1177 goto out;
1178 }
1179 else if (res == PARSE_TIME_UNDER) {
1180 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1181 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001182 err_code |= ERR_ALERT | ERR_FATAL;
1183 goto out;
1184 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001185 else if (res) {
1186 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1187 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001188 err_code |= ERR_ALERT | ERR_FATAL;
1189 goto out;
1190 }
1191 curmailers->timeout.mail = timeout_mail;
1192 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001193 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001194 file, linenum, args[0], args[1]);
1195 err_code |= ERR_ALERT | ERR_FATAL;
1196 goto out;
1197 }
1198 }
Simon Horman0d16a402015-01-30 11:22:58 +09001199 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001200 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001201 err_code |= ERR_ALERT | ERR_FATAL;
1202 goto out;
1203 }
1204
1205out:
1206 free(errmsg);
1207 return err_code;
1208}
1209
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001210void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001211{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001212 ha_free(&p->email_alert.mailers.name);
1213 ha_free(&p->email_alert.from);
1214 ha_free(&p->email_alert.to);
1215 ha_free(&p->email_alert.myhostname);
Simon Horman9dc49962015-01-30 11:22:59 +09001216}
1217
Willy Tarreaubaaee002006-06-26 02:48:02 +02001218
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001219int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001220cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1221{
Willy Tarreaue5733232019-05-22 19:24:06 +02001222#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001223 const char *err;
1224 const char *item = args[0];
1225
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001226 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001227 return 0;
1228 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001229 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001230 size_t idx = 1;
1231 const char *current;
1232 while (*(current = args[idx++])) {
1233 err = invalid_char(current);
1234 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001235 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1236 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001237 return ERR_ALERT | ERR_FATAL;
1238 }
1239
1240 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001241 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1242 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001243 return ERR_ALERT | ERR_FATAL;
1244 }
1245 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001246 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1247 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001248 return ERR_ALERT | ERR_FATAL;
1249 }
1250 }
1251 }
1252
1253 return 0;
1254#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001255 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1256 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001257 return ERR_ALERT | ERR_FATAL;
1258#endif
1259}
1260
1261int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001262cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1263{
1264
1265 int err_code = 0;
1266 const char *err;
1267
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001268 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001269 struct userlist *newul;
1270
1271 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001272 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1273 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001274 err_code |= ERR_ALERT | ERR_FATAL;
1275 goto out;
1276 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001277 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1278 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001279
1280 err = invalid_char(args[1]);
1281 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001282 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1283 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001284 err_code |= ERR_ALERT | ERR_FATAL;
1285 goto out;
1286 }
1287
1288 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001289 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001290 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1291 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001292 err_code |= ERR_WARN;
1293 goto out;
1294 }
1295
Vincent Bernat02779b62016-04-03 13:48:43 +02001296 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001297 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001298 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001299 err_code |= ERR_ALERT | ERR_ABORT;
1300 goto out;
1301 }
1302
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001303 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001304 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001305 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001306 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001307 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001308 goto out;
1309 }
1310
1311 newul->next = userlist;
1312 userlist = newul;
1313
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001314 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001315 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001316 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001317 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001318
1319 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001320 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1321 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001322 err_code |= ERR_ALERT | ERR_FATAL;
1323 goto out;
1324 }
1325
1326 err = invalid_char(args[1]);
1327 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001328 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1329 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001330 err_code |= ERR_ALERT | ERR_FATAL;
1331 goto out;
1332 }
1333
William Lallemand4ac9f542015-05-28 18:03:51 +02001334 if (!userlist)
1335 goto out;
1336
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001337 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001338 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001339 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1340 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001341 err_code |= ERR_ALERT;
1342 goto out;
1343 }
1344
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001345 ag = calloc(1, sizeof(*ag));
1346 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001347 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001348 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001349 goto out;
1350 }
1351
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001352 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001353 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001354 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001355 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001356 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001357 goto out;
1358 }
1359
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001360 cur_arg = 2;
1361
1362 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001363 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001364 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001365 cur_arg += 2;
1366 continue;
1367 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001368 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1369 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001370 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001371 free(ag->groupusers);
1372 free(ag->name);
1373 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001374 goto out;
1375 }
1376 }
1377
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001378 ag->next = userlist->groups;
1379 userlist->groups = ag;
1380
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001381 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001382 struct auth_users *newuser;
1383 int cur_arg;
1384
1385 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001386 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1387 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001388 err_code |= ERR_ALERT | ERR_FATAL;
1389 goto out;
1390 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001391 if (!userlist)
1392 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001393
1394 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001395 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001396 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1397 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001398 err_code |= ERR_ALERT;
1399 goto out;
1400 }
1401
Vincent Bernat02779b62016-04-03 13:48:43 +02001402 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001403 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001404 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001405 err_code |= ERR_ALERT | ERR_ABORT;
1406 goto out;
1407 }
1408
1409 newuser->user = strdup(args[1]);
1410
1411 newuser->next = userlist->users;
1412 userlist->users = newuser;
1413
1414 cur_arg = 2;
1415
1416 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001417 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001418#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001419 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001420 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1421 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001422 err_code |= ERR_ALERT | ERR_FATAL;
1423 goto out;
1424 }
1425#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001426 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1427 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001428 err_code |= ERR_ALERT;
1429#endif
1430 newuser->pass = strdup(args[cur_arg + 1]);
1431 cur_arg += 2;
1432 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001433 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001434 newuser->pass = strdup(args[cur_arg + 1]);
1435 newuser->flags |= AU_O_INSECURE;
1436 cur_arg += 2;
1437 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001438 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001439 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001440 cur_arg += 2;
1441 continue;
1442 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001443 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1444 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001445 err_code |= ERR_ALERT | ERR_FATAL;
1446 goto out;
1447 }
1448 }
1449 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001450 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 +01001451 err_code |= ERR_ALERT | ERR_FATAL;
1452 }
1453
1454out:
1455 return err_code;
1456}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001457
Christopher Faulet79bdef32016-11-04 22:36:15 +01001458int
1459cfg_parse_scope(const char *file, int linenum, char *line)
1460{
1461 char *beg, *end, *scope = NULL;
1462 int err_code = 0;
1463 const char *err;
1464
1465 beg = line + 1;
1466 end = strchr(beg, ']');
1467
1468 /* Detect end of scope declaration */
1469 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001470 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1471 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001472 err_code |= ERR_ALERT | ERR_FATAL;
1473 goto out;
1474 }
1475
1476 /* Get scope name and check its validity */
1477 scope = my_strndup(beg, end-beg);
1478 err = invalid_char(scope);
1479 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001480 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1481 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001482 err_code |= ERR_ALERT | ERR_ABORT;
1483 goto out;
1484 }
1485
1486 /* Be sure to have a scope declaration alone on its line */
1487 line = end+1;
1488 while (isspace((unsigned char)*line))
1489 line++;
1490 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001491 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1492 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001493 err_code |= ERR_ALERT | ERR_ABORT;
1494 goto out;
1495 }
1496
1497 /* We have a valid scope declaration, save it */
1498 free(cfg_scope);
1499 cfg_scope = scope;
1500 scope = NULL;
1501
1502 out:
1503 free(scope);
1504 return err_code;
1505}
1506
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001507int
1508cfg_parse_track_sc_num(unsigned int *track_sc_num,
1509 const char *arg, const char *end, char **errmsg)
1510{
1511 const char *p;
1512 unsigned int num;
1513
1514 p = arg;
1515 num = read_uint64(&arg, end);
1516
1517 if (arg != end) {
1518 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1519 return -1;
1520 }
1521
1522 if (num >= MAX_SESS_STKCTR) {
1523 memprintf(errmsg, "%u track-sc number exceeding "
1524 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1525 return -1;
1526 }
1527
1528 *track_sc_num = num;
1529 return 0;
1530}
1531
Willy Tarreaubaaee002006-06-26 02:48:02 +02001532/*
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001533 * Detect a global section after a non-global one and output a diagnostic
1534 * warning.
1535 */
1536static void check_section_position(char *section_name,
1537 const char *file, int linenum,
1538 int *non_global_parsed)
1539{
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02001540 if (strcmp(section_name, "global") == 0) {
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001541 if (*non_global_parsed == 1)
1542 _ha_diag_warning("parsing [%s:%d] : global section detected after a non-global one, the prevalence of their statements is unspecified\n", file, linenum);
1543 }
1544 else if (*non_global_parsed == 0) {
1545 *non_global_parsed = 1;
1546 }
1547}
1548
Willy Tarreau8a022d52021-04-27 20:29:11 +02001549/* apply the current default_path setting for config file <file>, and
1550 * optionally replace the current path to <origin> if not NULL while the
1551 * default-path mode is set to "origin". Errors are returned into an
1552 * allocated string passed to <err> if it's not NULL. Returns 0 on failure
1553 * or non-zero on success.
1554 */
1555static int cfg_apply_default_path(const char *file, const char *origin, char **err)
1556{
1557 const char *beg, *end;
1558
1559 /* make path start at <beg> and end before <end>, and switch it to ""
1560 * if no slash was passed.
1561 */
1562 beg = file;
1563 end = strrchr(beg, '/');
1564 if (!end)
1565 end = beg;
1566
1567 if (!*initial_cwd) {
1568 if (getcwd(initial_cwd, sizeof(initial_cwd)) == NULL) {
1569 if (err)
1570 memprintf(err, "Impossible to retrieve startup directory name: %s", strerror(errno));
1571 return 0;
1572 }
1573 }
1574 else if (chdir(initial_cwd) == -1) {
1575 if (err)
1576 memprintf(err, "Impossible to get back to initial directory '%s': %s", initial_cwd, strerror(errno));
1577 return 0;
1578 }
1579
1580 /* OK now we're (back) to initial_cwd */
1581
1582 switch (default_path_mode) {
1583 case DEFAULT_PATH_CURRENT:
1584 /* current_cwd never set, nothing to do */
1585 return 1;
1586
1587 case DEFAULT_PATH_ORIGIN:
1588 /* current_cwd set in the config */
1589 if (origin &&
1590 snprintf(current_cwd, sizeof(current_cwd), "%s", origin) > sizeof(current_cwd)) {
1591 if (err)
1592 memprintf(err, "Absolute path too long: '%s'", origin);
1593 return 0;
1594 }
1595 break;
1596
1597 case DEFAULT_PATH_CONFIG:
1598 if (end - beg >= sizeof(current_cwd)) {
1599 if (err)
1600 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1601 return 0;
1602 }
1603 memcpy(current_cwd, beg, end - beg);
1604 current_cwd[end - beg] = 0;
1605 break;
1606
1607 case DEFAULT_PATH_PARENT:
1608 if (end - beg + 3 >= sizeof(current_cwd)) {
1609 if (err)
1610 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1611 return 0;
1612 }
1613 memcpy(current_cwd, beg, end - beg);
1614 if (end > beg)
1615 memcpy(current_cwd + (end - beg), "/..\0", 4);
1616 else
1617 memcpy(current_cwd + (end - beg), "..\0", 3);
1618 break;
1619 }
1620
1621 if (*current_cwd && chdir(current_cwd) == -1) {
1622 if (err)
1623 memprintf(err, "Impossible to get back to directory '%s': %s", initial_cwd, strerror(errno));
1624 return 0;
1625 }
1626
1627 return 1;
1628}
1629
1630/* parses a global "default-path" directive. */
1631static int cfg_parse_global_def_path(char **args, int section_type, struct proxy *curpx,
1632 const struct proxy *defpx, const char *file, int line,
1633 char **err)
1634{
1635 int ret = -1;
1636
1637 /* "current", "config", "parent", "origin <path>" */
1638
1639 if (strcmp(args[1], "current") == 0)
1640 default_path_mode = DEFAULT_PATH_CURRENT;
1641 else if (strcmp(args[1], "config") == 0)
1642 default_path_mode = DEFAULT_PATH_CONFIG;
1643 else if (strcmp(args[1], "parent") == 0)
1644 default_path_mode = DEFAULT_PATH_PARENT;
1645 else if (strcmp(args[1], "origin") == 0)
1646 default_path_mode = DEFAULT_PATH_ORIGIN;
1647 else {
1648 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]);
1649 goto end;
1650 }
1651
1652 if (default_path_mode == DEFAULT_PATH_ORIGIN) {
1653 if (!*args[2]) {
1654 memprintf(err, "'%s %s' expects a directory as an argument.", args[0], args[1]);
1655 goto end;
1656 }
1657 if (!cfg_apply_default_path(file, args[2], err)) {
1658 memprintf(err, "couldn't set '%s' to origin '%s': %s.", args[0], args[2], *err);
1659 goto end;
1660 }
1661 }
1662 else if (!cfg_apply_default_path(file, NULL, err)) {
1663 memprintf(err, "couldn't set '%s' to '%s': %s.", args[0], args[1], *err);
1664 goto end;
1665 }
1666
1667 /* note that once applied, the path is immediately updated */
1668
1669 ret = 0;
1670 end:
1671 return ret;
1672}
1673
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001674/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001675 * This function reads and parses the configuration file given in the argument.
Willy Tarreauda543e12021-04-27 18:30:28 +02001676 * Returns the error code, 0 if OK, -1 if the config file couldn't be opened,
1677 * or any combination of :
Willy Tarreau058e9072009-07-20 09:30:05 +02001678 * - ERR_ABORT: must abort ASAP
1679 * - ERR_FATAL: we can continue parsing but not start the service
1680 * - ERR_WARN: a warning has been emitted
1681 * - ERR_ALERT: an alert has been emitted
1682 * Only the two first ones can stop processing, the two others are just
1683 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001684 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001685int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001686{
Willy Tarreauda543e12021-04-27 18:30:28 +02001687 char *thisline = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001688 int linesize = LINESIZE;
Willy Tarreauda543e12021-04-27 18:30:28 +02001689 FILE *f = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001690 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001691 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001692 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001693 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001694 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001695 char *outline = NULL;
1696 size_t outlen = 0;
1697 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001698 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001699 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001700 int nested_cond_lvl = 0;
1701 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001702 int non_global_section_parsed = 0;
Willy Tarreau8a022d52021-04-27 20:29:11 +02001703 char *errmsg = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001704
Willy Tarreau51508052021-05-06 10:04:45 +02001705 global.cfg_curr_line = 0;
1706 global.cfg_curr_file = file;
1707
William Lallemand64e84512015-05-12 14:25:37 +02001708 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Willy Tarreauda543e12021-04-27 18:30:28 +02001709 ha_alert("Out of memory trying to allocate a buffer for a configuration line.\n");
1710 err_code = -1;
1711 goto err;
William Lallemand64e84512015-05-12 14:25:37 +02001712 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001713
Willy Tarreauda543e12021-04-27 18:30:28 +02001714 if ((f = fopen(file,"r")) == NULL) {
1715 err_code = -1;
1716 goto err;
David Carlier97880bb2016-04-08 10:35:26 +01001717 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001718
Willy Tarreau8a022d52021-04-27 20:29:11 +02001719 /* change to the new dir if required */
1720 if (!cfg_apply_default_path(file, NULL, &errmsg)) {
1721 ha_alert("parsing [%s:%d]: failed to apply default-path: %s.\n", file, linenum, errmsg);
1722 free(errmsg);
1723 err_code = -1;
1724 goto err;
1725 }
1726
William Lallemandb2f07452015-05-12 14:27:13 +02001727next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001728 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001729 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001730 char *end;
1731 char *args[MAX_LINE_ARGS + 1];
1732 char *line = thisline;
1733
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001734 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001735 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1736 file, linenum, (missing_lf + 1));
1737 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001738 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001739 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001740 }
1741
Willy Tarreaubaaee002006-06-26 02:48:02 +02001742 linenum++;
Willy Tarreau51508052021-05-06 10:04:45 +02001743 global.cfg_curr_line = linenum;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001744
Willy Tarreau32234e72020-06-16 17:14:33 +02001745 if (fatal >= 50) {
1746 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1747 break;
1748 }
1749
Willy Tarreaubaaee002006-06-26 02:48:02 +02001750 end = line + strlen(line);
1751
William Lallemand64e84512015-05-12 14:25:37 +02001752 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001753 /* Check if we reached the limit and the last char is not \n.
1754 * Watch out for the last line without the terminating '\n'!
1755 */
William Lallemand64e84512015-05-12 14:25:37 +02001756 char *newline;
1757 int newlinesize = linesize * 2;
1758
1759 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1760 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001761 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1762 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001763 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001764 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001765 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001766 continue;
1767 }
1768
1769 readbytes = linesize - 1;
1770 linesize = newlinesize;
1771 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001772 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001773 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001774 }
1775
William Lallemand64e84512015-05-12 14:25:37 +02001776 readbytes = 0;
1777
Willy Tarreau08488f62020-06-26 17:24:54 +02001778 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001779 /* kill trailing LF */
1780 *(end - 1) = 0;
1781 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001782 else {
1783 /* mark this line as truncated */
1784 missing_lf = end - line;
1785 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001786
Willy Tarreaubaaee002006-06-26 02:48:02 +02001787 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001788 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001789 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001790
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001791 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001792 err_code |= cfg_parse_scope(file, linenum, line);
1793 goto next_line;
1794 }
1795
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001796 while (1) {
1797 uint32_t err;
Maximilian Mader29c6cd72021-06-06 00:50:21 +02001798 const char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001799
Tim Duesterhusb3168b32021-06-06 00:50:20 +02001800 arg = sizeof(args) / sizeof(*args);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001801 outlen = outlinesize;
1802 err = parse_line(line, outline, &outlen, args, &arg,
1803 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001804 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1805 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001806
1807 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001808 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1809
1810 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1811 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001812 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001813 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001814 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001815 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001816
1817 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001818 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1819
1820 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1821 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001822 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001823 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001824 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001825 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001826
1827 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001828 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1829
1830 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1831 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001832 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001833 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001834 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001835 }
William Lallemandb2f07452015-05-12 14:27:13 +02001836
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001837 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001838 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1839
1840 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1841 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001842 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001843 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001844 goto next_line;
1845 }
William Lallemandb2f07452015-05-12 14:27:13 +02001846
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001847 if (err & PARSE_ERR_WRONG_EXPAND) {
1848 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1849
1850 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1851 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1852 err_code |= ERR_ALERT | ERR_FATAL;
1853 fatal++;
1854 goto next_line;
1855 }
1856
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001857 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1858 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001859 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001860 if (outline == NULL) {
1861 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1862 file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001863 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001864 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001865 goto next_line;
William Lallemandb2f07452015-05-12 14:27:13 +02001866 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001867 /* try again */
1868 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001869 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001870
1871 if (err & PARSE_ERR_TOOMANY) {
1872 /* only check this *after* being sure the output is allocated */
1873 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1874 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1875 err_code |= ERR_ALERT | ERR_FATAL;
1876 fatal++;
1877 goto next_line;
1878 }
1879
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001880 /* everything's OK */
1881 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001882 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001883
1884 /* empty line */
1885 if (!**args)
1886 continue;
1887
Willy Tarreau4b103022021-02-12 17:59:10 +01001888 /* check for config macros */
1889 if (*args[0] == '.') {
1890 if (strcmp(args[0], ".if") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001891 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001892 char *errmsg = NULL;
1893 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02001894 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001895
Willy Tarreauc8194c32021-07-16 16:38:58 +02001896 /* remerge all words into a single expression */
1897 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
1898 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001899
Willy Tarreau4b103022021-02-12 17:59:10 +01001900 nested_cond_lvl++;
1901 if (nested_cond_lvl >= MAXNESTEDCONDS) {
1902 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
1903 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1904 goto err;
1905 }
1906
Willy Tarreau6e647c92021-05-06 08:46:11 +02001907 if (nested_cond_lvl > 1 &&
1908 (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
1909 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
1910 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
1911 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
1912 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP)) {
Willy Tarreau4b103022021-02-12 17:59:10 +01001913 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001914 goto next_line;
1915 }
1916
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001917 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001918 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001919 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 76);
1920
1921 ha_alert("parsing [%s:%d]: %s in '.if' at position %d:\n .if %s\n %*s\n",
1922 file, linenum, errmsg,
1923 (int)(errptr-args[1]+1), args[1], (int)(newpos+5), "^");
1924
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001925 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01001926 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1927 goto err;
1928 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001929
1930 if (cond)
1931 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
1932 else
1933 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
1934
Willy Tarreau4b103022021-02-12 17:59:10 +01001935 goto next_line;
1936 }
1937 else if (strcmp(args[0], ".elif") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001938 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001939 char *errmsg = NULL;
1940 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02001941 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001942
Willy Tarreauc8194c32021-07-16 16:38:58 +02001943 /* remerge all words into a single expression */
1944 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
1945 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001946
Willy Tarreau4b103022021-02-12 17:59:10 +01001947 if (!nested_cond_lvl) {
1948 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
1949 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1950 goto err;
1951 }
1952
1953 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
1954 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
1955 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
1956 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1957 goto err;
1958 }
1959
1960 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
1961 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
Willy Tarreauf67ff022021-05-06 08:48:09 +02001962 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
Willy Tarreau4b103022021-02-12 17:59:10 +01001963 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
1964 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001965 goto next_line;
1966 }
1967
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001968 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001969 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001970 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 74);
1971
1972 ha_alert("parsing [%s:%d]: %s in '.elif' at position %d:\n .elif %s\n %*s\n",
1973 file, linenum, errmsg,
1974 (int)(errptr-args[1]+1), args[1], (int)(newpos+7), "^");
1975
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001976 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01001977 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1978 goto err;
1979 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001980
1981 if (cond)
1982 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
1983 else
1984 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
1985
Willy Tarreau4b103022021-02-12 17:59:10 +01001986 goto next_line;
1987 }
1988 else if (strcmp(args[0], ".else") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001989 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05001990 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001991 file, linenum, args[1], args[0]);
1992 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1993 break;
1994 }
1995
Willy Tarreau4b103022021-02-12 17:59:10 +01001996 if (!nested_cond_lvl) {
1997 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
1998 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1999 goto err;
2000 }
2001
2002 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2003 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2004 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
2005 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2006 goto err;
2007 }
2008
2009 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2010 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2011 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
2012 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2013 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
2014 } else {
2015 /* otherwise we take the "else" */
2016 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
2017 }
2018 goto next_line;
2019 }
2020 else if (strcmp(args[0], ".endif") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002021 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002022 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002023 file, linenum, args[1], args[0]);
2024 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2025 break;
2026 }
2027
Willy Tarreau4b103022021-02-12 17:59:10 +01002028 if (!nested_cond_lvl) {
2029 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002030 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau4b103022021-02-12 17:59:10 +01002031 break;
2032 }
2033 nested_cond_lvl--;
2034 goto next_line;
2035 }
2036 }
2037
2038 if (nested_cond_lvl &&
2039 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
2040 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2041 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
2042 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
2043 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
2044 /* The current block is masked out by the conditions */
2045 goto next_line;
2046 }
2047
Willy Tarreau7190b982021-05-07 08:59:50 +02002048 /* .warning/.error/.notice/.diag */
Willy Tarreau4b103022021-02-12 17:59:10 +01002049 if (*args[0] == '.') {
2050 if (strcmp(args[0], ".alert") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002051 if (*args[2]) {
2052 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2053 file, linenum, args[2], args[0]);
2054 err_code |= ERR_ALERT | ERR_FATAL;
2055 goto next_line;
2056 }
2057
Willy Tarreau4b103022021-02-12 17:59:10 +01002058 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2059 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2060 goto err;
2061 }
2062 else if (strcmp(args[0], ".warning") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002063 if (*args[2]) {
2064 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2065 file, linenum, args[2], args[0]);
2066 err_code |= ERR_ALERT | ERR_FATAL;
2067 goto next_line;
2068 }
2069
Willy Tarreau4b103022021-02-12 17:59:10 +01002070 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2071 err_code |= ERR_WARN;
2072 goto next_line;
2073 }
2074 else if (strcmp(args[0], ".notice") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002075 if (*args[2]) {
2076 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2077 file, linenum, args[2], args[0]);
2078 err_code |= ERR_ALERT | ERR_FATAL;
2079 goto next_line;
2080 }
2081
Willy Tarreau4b103022021-02-12 17:59:10 +01002082 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2083 goto next_line;
2084 }
Willy Tarreau7190b982021-05-07 08:59:50 +02002085 else if (strcmp(args[0], ".diag") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002086 if (*args[2]) {
2087 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2088 file, linenum, args[2], args[0]);
2089 err_code |= ERR_ALERT | ERR_FATAL;
2090 goto next_line;
2091 }
2092
Willy Tarreau7190b982021-05-07 08:59:50 +02002093 ha_diag_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2094 goto next_line;
2095 }
Willy Tarreau4b103022021-02-12 17:59:10 +01002096 else {
2097 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
2098 err_code |= ERR_ALERT | ERR_FATAL;
2099 fatal++;
2100 break;
2101 }
2102 }
2103
Willy Tarreau3842f002009-06-14 11:39:52 +02002104 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002105 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02002106 char *tmp;
2107
Willy Tarreau3842f002009-06-14 11:39:52 +02002108 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002109 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002110 for (arg=0; *args[arg+1]; arg++)
2111 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002112 *tmp = '\0'; // fix the next arg to \0
2113 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002114 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002115 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02002116 kwm = KWM_DEF;
2117 for (arg=0; *args[arg+1]; arg++)
2118 args[arg] = args[arg+1]; // shift args after inversion
2119 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002120
William Dauchyec730982019-10-27 20:08:10 +01002121 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2122 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002123 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002124 strcmp(args[0], "insecure-fork-wanted") != 0 &&
2125 strcmp(args[0], "numa-cpu-mapping") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002126 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002127 "supported only for options, log, busy-polling, "
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002128 "set-dumpable, strict-limits, insecure-fork-wanted "
2129 "and numa-cpu-mapping.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002130 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002131 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002132 }
2133
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002134 /* detect section start */
2135 list_for_each_entry(ics, &sections, list) {
2136 if (strcmp(args[0], ics->section_name) == 0) {
2137 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002138 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002139 cs = ics;
Willy Tarreau51508052021-05-06 10:04:45 +02002140 free(global.cfg_curr_section);
2141 global.cfg_curr_section = strdup(*args[1] ? args[1] : args[0]);
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02002142
2143 if (global.mode & MODE_DIAG) {
2144 check_section_position(args[0], file, linenum,
2145 &non_global_section_parsed);
2146 }
2147
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002148 break;
2149 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002150 }
2151
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002152 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002153 int status;
2154
2155 status = pcs->post_section_parser();
2156 err_code |= status;
2157 if (status & ERR_FATAL)
2158 fatal++;
2159
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002160 if (err_code & ERR_ABORT)
2161 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002162 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002163 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002164
William Lallemandd2ff56d2017-10-16 11:06:50 +02002165 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002166 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002167 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002168 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002169 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002170 int status;
2171
2172 status = cs->section_parser(file, linenum, args, kwm);
2173 err_code |= status;
2174 if (status & ERR_FATAL)
2175 fatal++;
2176
William Lallemandd2ff56d2017-10-16 11:06:50 +02002177 if (err_code & ERR_ABORT)
2178 goto err;
2179 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002180 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002181
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002182 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002183 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2184 file, linenum, (missing_lf + 1));
2185 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002186 }
2187
Willy Tarreau51508052021-05-06 10:04:45 +02002188 ha_free(&global.cfg_curr_section);
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002189 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002190 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002191
Willy Tarreau4b103022021-02-12 17:59:10 +01002192 if (nested_cond_lvl) {
2193 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
2194 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2195 }
Willy Tarreau8a022d52021-04-27 20:29:11 +02002196
2197 if (*initial_cwd && chdir(initial_cwd) == -1) {
2198 ha_alert("Impossible to get back to initial directory '%s' : %s\n", initial_cwd, strerror(errno));
2199 err_code |= ERR_ALERT | ERR_FATAL;
2200 }
2201
William Lallemandd2ff56d2017-10-16 11:06:50 +02002202err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002203 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01002204 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002205 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002206 free(outline);
Willy Tarreau51508052021-05-06 10:04:45 +02002207 global.cfg_curr_line = 0;
2208 global.cfg_curr_file = NULL;
2209
Willy Tarreauda543e12021-04-27 18:30:28 +02002210 if (f)
2211 fclose(f);
2212
Willy Tarreau058e9072009-07-20 09:30:05 +02002213 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002214}
2215
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002216#if defined(USE_THREAD) && defined USE_CPU_AFFINITY
2217#if defined(__linux__)
2218
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002219/* filter directory name of the pattern node<X> */
2220static int numa_filter(const struct dirent *dir)
2221{
2222 char *endptr;
2223
2224 /* dir name must start with "node" prefix */
2225 if (strncmp(dir->d_name, "node", 4))
2226 return 0;
2227
2228 /* dir name must be at least 5 characters long */
2229 if (!dir->d_name[4])
2230 return 0;
2231
2232 /* dir name must end with a numeric id */
2233 if (strtol(&dir->d_name[4], &endptr, 10) < 0 || *endptr)
2234 return 0;
2235
2236 /* all tests succeeded */
2237 return 1;
2238}
2239
2240/* Parse a linux cpu map string representing to a numeric cpu mask map
2241 * The cpu map string is a list of 4-byte hex strings separated by commas, with
2242 * most-significant byte first, one bit per cpu number.
2243 */
2244static void parse_cpumap(char *cpumap_str, struct hap_cpuset *cpu_set)
2245{
2246 unsigned long cpumap;
2247 char *start, *endptr, *comma;
2248 int i, j;
2249
2250 ha_cpuset_zero(cpu_set);
2251
2252 i = 0;
2253 do {
2254 /* reverse-search for a comma, parse the string after the comma
2255 * or at the beginning if no comma found
2256 */
2257 comma = strrchr(cpumap_str, ',');
2258 start = comma ? comma + 1 : cpumap_str;
2259
2260 cpumap = strtoul(start, &endptr, 16);
2261 for (j = 0; cpumap; cpumap >>= 1, ++j) {
2262 if (cpumap & 0x1)
2263 ha_cpuset_set(cpu_set, j + i * 32);
2264 }
2265
2266 if (comma)
2267 *comma = '\0';
2268 ++i;
2269 } while (comma);
2270}
2271
2272/* Read the first line of a file from <path> into the trash buffer.
2273 * Returns 0 on success, otherwise non-zero.
2274 */
2275static int read_file_to_trash(const char *path)
2276{
2277 FILE *file;
2278 int ret = 1;
2279
2280 file = fopen(path, "r");
2281 if (file) {
2282 if (fgets(trash.area, trash.size, file))
2283 ret = 0;
2284
2285 fclose(file);
2286 }
2287
2288 return ret;
2289}
2290
2291/* Inspect the cpu topology of the machine on startup. If a multi-socket
2292 * machine is detected, try to bind on the first node with active cpu. This is
2293 * done to prevent an impact on the overall performance when the topology of
2294 * the machine is unknown. This function is not called if one of the conditions
2295 * is met :
2296 * - a non-null nbthread directive is active
2297 * - a restrictive cpu-map directive is active
2298 * - a restrictive affinity is already applied, for example via taskset
2299 *
2300 * Returns the count of cpus selected. If no automatic binding was required or
2301 * an error occurred and the topology is unknown, 0 is returned.
2302 */
2303static int numa_detect_topology()
2304{
2305 struct dirent **node_dirlist;
2306 int node_dirlist_size;
2307
2308 struct hap_cpuset active_cpus, node_cpu_set;
2309 const char *parse_cpu_set_args[2];
2310 char cpumap_path[PATH_MAX];
2311 char *err = NULL;
2312
2313 /* node_cpu_set count is used as return value */
2314 ha_cpuset_zero(&node_cpu_set);
2315
2316 /* 1. count the sysfs node<X> directories */
Willy Tarreau07bf21c2021-04-23 19:09:16 +02002317 node_dirlist = NULL;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002318 node_dirlist_size = scandir(NUMA_DETECT_SYSTEM_SYSFS_PATH"/node", &node_dirlist, numa_filter, alphasort);
2319 if (node_dirlist_size <= 1)
2320 goto free_scandir_entries;
2321
2322 /* 2. read and parse the list of currently online cpu */
2323 if (read_file_to_trash(NUMA_DETECT_SYSTEM_SYSFS_PATH"/cpu/online")) {
2324 ha_notice("Cannot read online CPUs list, will not try to refine binding\n");
2325 goto free_scandir_entries;
2326 }
2327
2328 parse_cpu_set_args[0] = trash.area;
2329 parse_cpu_set_args[1] = "\0";
2330 if (parse_cpu_set(parse_cpu_set_args, &active_cpus, 1, &err)) {
2331 ha_notice("Cannot read online CPUs list: '%s'. Will not try to refine binding\n", err);
2332 free(err);
2333 goto free_scandir_entries;
2334 }
2335
2336 /* 3. loop through nodes dirs and find the first one with active cpus */
2337 while (node_dirlist_size--) {
2338 const char *node = node_dirlist[node_dirlist_size]->d_name;
2339 ha_cpuset_zero(&node_cpu_set);
2340
2341 snprintf(cpumap_path, PATH_MAX, "%s/node/%s/cpumap",
2342 NUMA_DETECT_SYSTEM_SYSFS_PATH, node);
2343
2344 if (read_file_to_trash(cpumap_path)) {
2345 ha_notice("Cannot read CPUs list of '%s', will not select them to refine binding\n", node);
2346 free(node_dirlist[node_dirlist_size]);
2347 continue;
2348 }
2349
2350 parse_cpumap(trash.area, &node_cpu_set);
2351 ha_cpuset_and(&node_cpu_set, &active_cpus);
2352
2353 /* 5. set affinity on the first found node with active cpus */
2354 if (!ha_cpuset_count(&node_cpu_set)) {
2355 free(node_dirlist[node_dirlist_size]);
2356 continue;
2357 }
2358
2359 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));
2360 if (sched_setaffinity(getpid(), sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2361 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2362
2363 /* clear the cpuset used as return value */
2364 ha_cpuset_zero(&node_cpu_set);
2365 }
2366
2367 free(node_dirlist[node_dirlist_size]);
2368 break;
2369 }
2370
2371 free_scandir_entries:
2372 while (node_dirlist_size-- > 0)
2373 free(node_dirlist[node_dirlist_size]);
2374 free(node_dirlist);
2375
2376 return ha_cpuset_count(&node_cpu_set);
2377}
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002378
David CARLIERf5d48f82021-12-06 11:00:10 +00002379#elif defined(__FreeBSD__)
2380static int numa_detect_topology()
2381{
2382 struct hap_cpuset node_cpu_set;
2383 int ndomains = 0, i;
2384 size_t len = sizeof(ndomains);
2385
2386 if (sysctlbyname("vm.ndomains", &ndomains, &len, NULL, 0) == -1) {
2387 ha_notice("Cannot assess the number of CPUs domains\n");
2388 return 0;
2389 }
2390
2391 BUG_ON(ndomains > MAXMEMDOM);
2392 ha_cpuset_zero(&node_cpu_set);
2393
2394 /*
2395 * We retrieve the first active valid CPU domain
2396 * with active cpu and binding it, we returns
2397 * the number of cpu from the said domain
2398 */
2399 for (i = 0; i < ndomains; i ++) {
2400 struct hap_cpuset dom;
2401 ha_cpuset_zero(&dom);
2402 if (cpuset_getaffinity(CPU_LEVEL_WHICH, CPU_WHICH_DOMAIN, i, sizeof(dom.cpuset), &dom.cpuset) == -1)
2403 continue;
2404
2405 if (!ha_cpuset_count(&dom))
2406 continue;
2407
2408 ha_cpuset_assign(&node_cpu_set, &dom);
2409
2410 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));
2411 if (cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2412 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2413
2414 /* clear the cpuset used as return value */
2415 ha_cpuset_zero(&node_cpu_set);
2416 }
2417 break;
2418 }
2419
2420 return ha_cpuset_count(&node_cpu_set);
2421}
2422
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002423#else
2424static int numa_detect_topology()
2425{
2426 return 0;
2427}
2428
2429#endif
2430#endif /* USE_THREAD && USE_CPU_AFFINITY */
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002431
Willy Tarreaubb925012009-07-23 13:36:36 +02002432/*
2433 * Returns the error code, 0 if OK, or any combination of :
2434 * - ERR_ABORT: must abort ASAP
2435 * - ERR_FATAL: we can continue parsing but not start the service
2436 * - ERR_WARN: a warning has been emitted
2437 * - ERR_ALERT: an alert has been emitted
2438 * Only the two first ones can stop processing, the two others are just
2439 * indicators.
2440 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002441int check_config_validity()
2442{
2443 int cfgerr = 0;
2444 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002445 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002446 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002447 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002448 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002449 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002450 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002451 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01002452 struct resolvers *curr_resolvers = NULL;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002453 int i;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002454
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002455 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002456 /*
2457 * Now, check for the integrity of all that we have collected.
2458 */
2459
2460 /* will be needed further to delay some tasks */
Willy Tarreau55542642021-10-08 09:33:24 +02002461 clock_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002462
Willy Tarreau193b8c62012-11-22 00:17:38 +01002463 if (!global.tune.max_http_hdr)
2464 global.tune.max_http_hdr = MAX_HTTP_HDR;
2465
2466 if (!global.tune.cookie_len)
2467 global.tune.cookie_len = CAPTURE_LEN;
2468
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002469 if (!global.tune.requri_len)
2470 global.tune.requri_len = REQURI_LEN;
2471
Willy Tarreau149ab772019-01-26 14:27:06 +01002472 if (!global.nbthread) {
2473 /* nbthread not set, thus automatic. In this case, and only if
2474 * running on a single process, we enable the same number of
2475 * threads as the number of CPUs the process is bound to. This
2476 * allows to easily control the number of threads using taskset.
2477 */
2478 global.nbthread = 1;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002479
Willy Tarreau149ab772019-01-26 14:27:06 +01002480#if defined(USE_THREAD)
Willy Tarreaub63dbb72021-06-11 16:50:29 +02002481 {
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002482 int numa_cores = 0;
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002483#if defined(USE_CPU_AFFINITY)
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002484 if (global.numa_cpu_mapping && !thread_cpu_mask_forced())
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002485 numa_cores = numa_detect_topology();
2486#endif
2487 global.nbthread = numa_cores ? numa_cores :
2488 thread_cpus_enabled_at_boot;
2489 }
Willy Tarreau149ab772019-01-26 14:27:06 +01002490 all_threads_mask = nbits(global.nbthread);
2491#endif
2492 }
2493
Willy Tarreauc33b9692021-09-22 12:07:23 +02002494 if (!global.nbtgroups)
2495 global.nbtgroups = 1;
2496
Willy Tarreaue6806eb2021-09-27 10:10:26 +02002497 if (thread_map_to_groups() < 0) {
2498 err_code |= ERR_ALERT | ERR_FATAL;
2499 goto out;
2500 }
2501
Willy Tarreaubafbe012017-11-24 17:34:44 +01002502 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002503
Willy Tarreaubafbe012017-11-24 17:34:44 +01002504 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002505
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002506 /* Post initialisation of the users and groups lists. */
2507 err_code = userlist_postinit();
2508 if (err_code != ERR_NONE)
2509 goto out;
2510
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002511 /* first, we will invert the proxy list order */
2512 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002513 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002514 struct proxy *next;
2515
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002516 next = proxies_list->next;
2517 proxies_list->next = curproxy;
2518 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002519 if (!next)
2520 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002521 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002522 }
2523
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002524 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002525 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002526 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002527 struct sticking_rule *mrule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002528 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002529 unsigned int next_id;
2530
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002531 if (!(curproxy->cap & PR_CAP_INT) && curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002532 /* proxy ID not set, use automatic numbering with first
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002533 * spare entry starting with next_pxid. We don't assign
2534 * numbers for internal proxies as they may depend on
2535 * build or config options and we don't want them to
2536 * possibly reuse existing IDs.
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002537 */
2538 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2539 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2540 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002541 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002542
Willy Tarreau32b51cd2021-08-26 15:59:44 +02002543 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize >= (256 << 20) && ONLY_ONCE()) {
2544 ha_alert("global.tune.bufsize must be below 256 MB when HTTP is in use (current value = %d).\n",
2545 global.tune.bufsize);
2546 cfgerr++;
2547 }
2548
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002549 /* next IDs are shifted even if the proxy is disabled, this
2550 * guarantees that a proxy that is temporarily disabled in the
2551 * configuration doesn't cause a renumbering. Internal proxies
2552 * that are not assigned a static ID must never shift the IDs
2553 * either since they may appear in any order (Lua, logs, etc).
2554 * The GLOBAL proxy that carries the stats socket has its ID
2555 * forced to zero.
2556 */
2557 if (curproxy->uuid >= 0)
2558 next_pxid++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002559
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002560 if (curproxy->flags & PR_FL_DISABLED) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002561 /* ensure we don't keep listeners uselessly bound. We
2562 * can't disable their listeners yet (fdtab not
2563 * allocated yet) but let's skip them.
2564 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002565 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002566 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002567 curproxy->table->peers.p = NULL;
2568 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002569 continue;
2570 }
2571
Christopher Fauletff556272021-10-13 11:04:10 +02002572 /* The current proxy is referencing a default proxy. We must
2573 * finalize its config, but only once. If the default proxy is
2574 * ready (PR_FL_READY) it means it was already fully configured.
2575 */
2576 if (curproxy->defpx) {
2577 if (!(curproxy->defpx->flags & PR_FL_READY)) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02002578 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
2579 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l4_rules, curproxy->defpx, &err_code);
2580 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l5_rules, curproxy->defpx, &err_code);
2581 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.inspect_rules, curproxy->defpx, &err_code);
2582 cfgerr += check_action_rules(&curproxy->defpx->tcp_rep.inspect_rules, curproxy->defpx, &err_code);
2583 cfgerr += check_action_rules(&curproxy->defpx->http_req_rules, curproxy->defpx, &err_code);
2584 cfgerr += check_action_rules(&curproxy->defpx->http_res_rules, curproxy->defpx, &err_code);
2585 cfgerr += check_action_rules(&curproxy->defpx->http_after_res_rules, curproxy->defpx, &err_code);
2586
Christopher Fauletff556272021-10-13 11:04:10 +02002587 err = NULL;
2588 i = smp_resolve_args(curproxy->defpx, &err);
2589 cfgerr += i;
2590 if (i) {
2591 indent_msg(&err, 8);
2592 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
2593 ha_free(&err);
2594 }
2595 else
2596 cfgerr += acl_find_targets(curproxy->defpx);
2597
2598 /* default proxy is now ready. Set the right FE/BE capabilities */
2599 curproxy->defpx->flags |= PR_FL_READY;
2600 }
2601 }
2602
Willy Tarreau3d209582014-05-09 17:06:11 +02002603 /* check and reduce the bind-proc of each listener */
2604 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2605 unsigned long mask;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002606 struct listener *li;
Willy Tarreau3d209582014-05-09 17:06:11 +02002607
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002608 /* HTTP frontends with "h2" as ALPN/NPN will work in
2609 * HTTP/2 and absolutely require buffers 16kB or larger.
2610 */
2611#ifdef USE_OPENSSL
2612 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2613#ifdef OPENSSL_NPN_NEGOTIATED
2614 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002615 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002616 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 +01002617 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002618 cfgerr++;
2619 }
2620#endif
2621#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2622 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002623 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002624 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 +01002625 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002626 cfgerr++;
2627 }
2628#endif
2629 } /* HTTP && bufsize < 16384 */
2630#endif
2631
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002632 /* detect and address thread affinity inconsistencies */
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002633 err = NULL;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002634 if (thread_resolve_group_mask(bind_conf->bind_tgroup, bind_conf->bind_thread,
2635 &bind_conf->bind_tgroup, &bind_conf->bind_thread, &err) < 0) {
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002636 ha_alert("Proxy '%s': %s in 'bind %s' at [%s:%d].\n",
2637 curproxy->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
2638 free(err);
2639 cfgerr++;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002640 } else if (!((mask = bind_conf->bind_thread) & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002641 unsigned long new_mask = 0;
2642
2643 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002644 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002645 mask >>= global.nbthread;
2646 }
2647
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002648 bind_conf->bind_thread = new_mask;
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002649 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 defined by the global 'nbthread' directive. The thread numbers were remapped to existing threads instead (mask 0x%lx).\n",
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002650 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2651 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002652
2653 /* apply thread masks and groups to all receivers */
2654 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
Willy Tarreau6dfbef42021-10-12 15:23:03 +02002655 if (bind_conf->settings.shards <= 1) {
2656 li->rx.bind_thread = bind_conf->bind_thread;
2657 li->rx.bind_tgroup = bind_conf->bind_tgroup;
2658 } else {
2659 struct listener *new_li;
2660 int shard, shards, todo, done, bit;
2661 ulong mask;
2662
2663 shards = bind_conf->settings.shards;
2664 todo = my_popcountl(bind_conf->bind_thread);
2665
2666 /* no more shards than total threads */
2667 if (shards > todo)
2668 shards = todo;
2669
2670 shard = done = bit = 0;
2671 new_li = li;
2672
2673 while (1) {
2674 mask = 0;
2675 while (done < todo) {
2676 /* enlarge mask to cover next bit of bind_thread */
2677 while (!(bind_conf->bind_thread & (1UL << bit)))
2678 bit++;
2679 mask |= (1UL << bit);
2680 bit++;
2681 done += shards;
2682 }
2683
2684 new_li->rx.bind_thread = bind_conf->bind_thread & mask;
2685 new_li->rx.bind_tgroup = bind_conf->bind_tgroup;
2686 done -= todo;
2687
2688 shard++;
2689 if (shard >= shards)
2690 break;
2691
2692 /* create another listener for new shards */
2693 new_li = clone_listener(li);
2694 if (!new_li) {
2695 ha_alert("Out of memory while trying to allocate extra listener for shard %d in %s %s\n",
2696 shard, proxy_type_str(curproxy), curproxy->id);
2697 cfgerr++;
2698 err_code |= ERR_FATAL | ERR_ALERT;
2699 goto out;
2700 }
2701 }
2702 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002703 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002704 }
2705
Willy Tarreauff01a212009-03-15 13:46:16 +01002706 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01002707 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002708 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002709 break;
2710
2711 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002712 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002713 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002714
2715 case PR_MODE_CLI:
2716 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2717 break;
Emeric Brun54932b42020-07-07 09:43:24 +02002718 case PR_MODE_SYSLOG:
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002719 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02002720 case PR_MODES:
2721 /* should not happen, bug gcc warn missing switch statement */
Amaury Denoyelle11124302021-06-04 18:22:08 +02002722 ha_alert("%s '%s' cannot use peers or syslog mode for this proxy. 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 +02002723 proxy_type_str(curproxy), curproxy->id);
2724 cfgerr++;
2725 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002726 }
2727
William Lallemand2c04a5a2021-08-13 15:21:12 +02002728 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002729 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 +01002730 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002731 err_code |= ERR_WARN;
2732 }
2733
Willy Tarreau77e0dae2020-10-14 15:44:27 +02002734 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002735 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002736 if (curproxy->options & PR_O_TRANSP) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002737 ha_alert("%s '%s' cannot use both transparent and balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002738 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002739 cfgerr++;
2740 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002741#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002742 else if (curproxy->srv == NULL) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002743 ha_alert("%s '%s' needs at least 1 server in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002744 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002745 cfgerr++;
2746 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002747#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002748 else if (curproxy->options & PR_O_DISPATCH) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002749 ha_warning("dispatch address of %s '%s' will be ignored in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002750 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002751 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002752 }
2753 }
Willy Tarreau25241232021-07-18 19:18:56 +02002754 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002755 /* If no LB algo is set in a backend, and we're not in
2756 * transparent mode, dispatch mode nor proxy mode, we
2757 * want to use balance roundrobin by default.
2758 */
2759 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2760 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002761 }
2762 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002763
Willy Tarreau1620ec32011-08-06 17:05:02 +02002764 if (curproxy->options & PR_O_DISPATCH)
Willy Tarreau25241232021-07-18 19:18:56 +02002765 curproxy->options &= ~PR_O_TRANSP;
Willy Tarreau1620ec32011-08-06 17:05:02 +02002766 else if (curproxy->options & PR_O_TRANSP)
Willy Tarreau25241232021-07-18 19:18:56 +02002767 curproxy->options &= ~PR_O_DISPATCH;
Willy Tarreau82936582007-11-30 15:20:09 +01002768
Christopher Faulete5870d82020-04-15 11:32:03 +02002769 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002770 ha_warning("%s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
Christopher Faulete5870d82020-04-15 11:32:03 +02002771 proxy_type_str(curproxy), curproxy->id);
2772 err_code |= ERR_WARN;
2773 }
2774
2775 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002776 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002777 if (curproxy->options & PR_O_DISABLE404) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002778 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002779 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002780 err_code |= ERR_WARN;
2781 curproxy->options &= ~PR_O_DISABLE404;
2782 }
2783 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002784 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002785 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002786 err_code |= ERR_WARN;
2787 curproxy->options &= ~PR_O2_CHK_SNDST;
2788 }
Willy Tarreauef781042010-01-27 11:53:01 +01002789 }
2790
Simon Horman98637e52014-06-20 12:30:16 +09002791 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2792 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002793 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2794 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002795 cfgerr++;
2796 }
2797 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002798 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2799 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002800 cfgerr++;
2801 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002802 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2803 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2804 curproxy->id, "option external-check");
2805 err_code |= ERR_WARN;
2806 }
Simon Horman98637e52014-06-20 12:30:16 +09002807 }
2808
Simon Horman64e34162015-02-06 11:11:57 +09002809 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002810 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002811 ha_warning("'email-alert' will be ignored for %s '%s' (the presence any of "
Christopher Faulet767a84b2017-11-24 16:50:31 +01002812 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2813 "'email-alert myhostname', or 'email-alert to' "
2814 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2815 "to be present).\n",
2816 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002817 err_code |= ERR_WARN;
2818 free_email_alert(curproxy);
2819 }
2820 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002821 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002822 }
2823
Simon Horman98637e52014-06-20 12:30:16 +09002824 if (curproxy->check_command) {
2825 int clear = 0;
2826 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002827 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002828 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002829 err_code |= ERR_WARN;
2830 clear = 1;
2831 }
2832 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002833 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2834 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002835 cfgerr++;
2836 }
2837 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002838 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09002839 }
2840 }
2841
2842 if (curproxy->check_path) {
2843 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002844 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002845 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002846 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002847 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09002848 }
2849 }
2850
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002851 /* if a default backend was specified, let's find it */
2852 if (curproxy->defbe.name) {
2853 struct proxy *target;
2854
Willy Tarreauafb39922015-05-26 12:04:09 +02002855 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002856 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002857 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2858 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002859 cfgerr++;
2860 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002861 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2862 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002863 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002864 } else if (target->mode != curproxy->mode &&
2865 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2866
Christopher Faulet767a84b2017-11-24 16:50:31 +01002867 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2868 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2869 curproxy->conf.file, curproxy->conf.line,
2870 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2871 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002872 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002873 } else {
2874 free(curproxy->defbe.name);
2875 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002876 /* Emit a warning if this proxy also has some servers */
2877 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002878 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2879 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002880 err_code |= ERR_WARN;
2881 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002882 }
2883 }
2884
Willy Tarreau55ea7572007-06-17 19:56:27 +02002885 /* find the target proxy for 'use_backend' rules */
2886 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002887 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002888 struct logformat_node *node;
2889 char *pxname;
2890
2891 /* Try to parse the string as a log format expression. If the result
2892 * of the parsing is only one entry containing a simple string, then
2893 * it's a standard string corresponding to a static rule, thus the
2894 * parsing is cancelled and be.name is restored to be resolved.
2895 */
2896 pxname = rule->be.name;
2897 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002898 curproxy->conf.args.ctx = ARGC_UBK;
2899 curproxy->conf.args.file = rule->file;
2900 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002901 err = NULL;
2902 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002903 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2904 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002905 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002906 cfgerr++;
2907 continue;
2908 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002909 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2910
2911 if (!LIST_ISEMPTY(&rule->be.expr)) {
2912 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2913 rule->dynamic = 1;
2914 free(pxname);
2915 continue;
2916 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002917 /* Only one element in the list, a simple string: free the expression and
2918 * fall back to static rule
2919 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002920 LIST_DELETE(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002921 free(node->arg);
2922 free(node);
2923 }
2924
2925 rule->dynamic = 0;
2926 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002927
Willy Tarreauafb39922015-05-26 12:04:09 +02002928 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002929 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002930 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2931 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002932 cfgerr++;
2933 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002934 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2935 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002936 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002937 } else if (target->mode != curproxy->mode &&
2938 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2939
Christopher Faulet767a84b2017-11-24 16:50:31 +01002940 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2941 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2942 curproxy->conf.file, curproxy->conf.line,
2943 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2944 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002945 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002946 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002947 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002948 rule->be.backend = target;
2949 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01002950 err_code |= warnif_tcp_http_cond(curproxy, rule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002951 }
2952
Willy Tarreau64ab6072014-09-16 12:17:36 +02002953 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002954 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002955 struct server *target;
2956 struct logformat_node *node;
2957 char *server_name;
2958
2959 /* We try to parse the string as a log format expression. If the result of the parsing
2960 * is only one entry containing a single string, then it's a standard string corresponding
2961 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2962 */
2963 server_name = srule->srv.name;
2964 LIST_INIT(&srule->expr);
2965 curproxy->conf.args.ctx = ARGC_USRV;
2966 err = NULL;
2967 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2968 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2969 srule->file, srule->line, server_name, err);
2970 free(err);
2971 cfgerr++;
2972 continue;
2973 }
2974 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2975
2976 if (!LIST_ISEMPTY(&srule->expr)) {
2977 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2978 srule->dynamic = 1;
2979 free(server_name);
2980 continue;
2981 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002982 /* Only one element in the list, a simple string: free the expression and
2983 * fall back to static rule
2984 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002985 LIST_DELETE(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002986 free(node->arg);
2987 free(node);
2988 }
2989
2990 srule->dynamic = 0;
2991 srule->srv.name = server_name;
2992 target = findserver(curproxy, srule->srv.name);
Christopher Faulet581db2b2021-03-26 10:02:46 +01002993 err_code |= warnif_tcp_http_cond(curproxy, srule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002994
2995 if (!target) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002996 ha_alert("%s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002997 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002998 cfgerr++;
2999 continue;
3000 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01003001 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003002 srule->srv.ptr = target;
Amaury Denoyelle06269612021-08-23 14:05:07 +02003003 target->flags |= SRV_F_NON_PURGEABLE;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003004 }
3005
Emeric Brunb982a3d2010-01-04 15:45:53 +01003006 /* find the target table for 'stick' rules */
3007 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003008 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003009
Emeric Brun1d33b292010-01-04 15:47:17 +01003010 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
3011 if (mrule->flags & STK_IS_STORE)
3012 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3013
Emeric Brunb982a3d2010-01-04 15:45:53 +01003014 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003015 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003016 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003017 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003018
3019 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003020 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003021 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003022 cfgerr++;
3023 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003024 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003025 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3026 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003027 cfgerr++;
3028 }
3029 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003030 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003031 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003032 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3033 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003034 if (!in_proxies_list(target->proxies_list, curproxy)) {
3035 curproxy->next_stkt_ref = target->proxies_list;
3036 target->proxies_list = curproxy;
3037 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003038 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003039 err_code |= warnif_tcp_http_cond(curproxy, mrule->cond);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003040 }
3041
3042 /* find the target table for 'store response' rules */
3043 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003044 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003045
Emeric Brun1d33b292010-01-04 15:47:17 +01003046 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3047
Emeric Brunb982a3d2010-01-04 15:45:53 +01003048 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003049 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003050 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003051 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003052
3053 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003054 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003055 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003056 cfgerr++;
3057 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003058 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003059 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3060 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003061 cfgerr++;
3062 }
3063 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003064 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003065 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003066 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3067 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003068 if (!in_proxies_list(target->proxies_list, curproxy)) {
3069 curproxy->next_stkt_ref = target->proxies_list;
3070 target->proxies_list = curproxy;
3071 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003072 }
3073 }
3074
Christopher Faulet42c6cf92021-03-25 17:19:04 +01003075 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
3076 cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code);
3077 cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code);
3078 cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code);
3079 cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code);
3080 cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code);
3081 cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code);
3082 cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003083
Christopher Faulet5eef0182021-03-31 17:13:49 +02003084 /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */
3085 if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) {
3086 if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP)
3087 ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. "
3088 "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n",
3089 curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy));
3090 }
3091
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003092 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003093 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003094
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003095 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003096 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003097 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003098 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003099 break;
3100 }
3101 }
3102
3103 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003104 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003105 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01003106 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003107 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003108 cfgerr++;
3109 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003110 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003111 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003112 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003113 }
Emeric Brun32da3c42010-09-23 18:39:19 +02003114 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003115 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
3116 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003117 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003118 cfgerr++;
3119 }
3120 }
3121
Simon Horman9dc49962015-01-30 11:22:59 +09003122
3123 if (curproxy->email_alert.mailers.name) {
3124 struct mailers *curmailers = mailers;
3125
3126 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003127 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09003128 break;
Simon Horman9dc49962015-01-30 11:22:59 +09003129 }
Simon Horman9dc49962015-01-30 11:22:59 +09003130 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003131 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
3132 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09003133 free_email_alert(curproxy);
3134 cfgerr++;
3135 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02003136 else {
3137 err = NULL;
3138 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003139 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003140 free(err);
3141 cfgerr++;
3142 }
3143 }
Simon Horman9dc49962015-01-30 11:22:59 +09003144 }
3145
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003146 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01003147 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003148 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003149 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
3150 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003151 cfgerr++;
3152 goto out_uri_auth_compat;
3153 }
3154
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003155 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003156 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003157 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003158 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003159 struct act_rule *rule;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003160 i = 0;
3161
Willy Tarreau95fa4692010-02-01 13:05:50 +01003162 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
3163 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003164
3165 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003166 uri_auth_compat_req[i++] = "realm";
3167 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
3168 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003169
Willy Tarreau95fa4692010-02-01 13:05:50 +01003170 uri_auth_compat_req[i++] = "unless";
3171 uri_auth_compat_req[i++] = "{";
3172 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
3173 uri_auth_compat_req[i++] = "}";
3174 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003175
Willy Tarreauff011f22011-01-06 17:51:27 +01003176 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
3177 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003178 cfgerr++;
3179 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003180 }
3181
Willy Tarreau2b718102021-04-21 07:32:39 +02003182 LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01003183
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003184 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003185 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003186 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003187 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003188 }
3189out_uri_auth_compat:
3190
Dragan Dosen43885c72015-10-01 13:18:13 +02003191 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02003192 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02003193 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
3194 if (!curproxy->conf.logformat_sd_string) {
3195 /* set the default logformat_sd_string */
3196 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
3197 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003198 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02003199 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003200 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02003201
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003202 /* compile the log format */
3203 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02003204 if (curproxy->conf.logformat_string != default_http_log_format &&
3205 curproxy->conf.logformat_string != default_tcp_log_format &&
3206 curproxy->conf.logformat_string != clf_http_log_format)
3207 free(curproxy->conf.logformat_string);
3208 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003209 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02003210 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003211
3212 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3213 free(curproxy->conf.logformat_sd_string);
3214 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003215 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003216 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003217 }
3218
Willy Tarreau62a61232013-04-12 18:13:46 +02003219 if (curproxy->conf.logformat_string) {
3220 curproxy->conf.args.ctx = ARGC_LOG;
3221 curproxy->conf.args.file = curproxy->conf.lfs_file;
3222 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003223 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003224 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
3225 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003226 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003227 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3228 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003229 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003230 cfgerr++;
3231 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003232 curproxy->conf.args.file = NULL;
3233 curproxy->conf.args.line = 0;
3234 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003235
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003236 if (curproxy->conf.logformat_sd_string) {
3237 curproxy->conf.args.ctx = ARGC_LOGSD;
3238 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3239 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003240 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003241 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
3242 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003243 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003244 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3245 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003246 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003247 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003248 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003249 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3250 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003251 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003252 cfgerr++;
3253 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003254 curproxy->conf.args.file = NULL;
3255 curproxy->conf.args.line = 0;
3256 }
3257
Willy Tarreau62a61232013-04-12 18:13:46 +02003258 if (curproxy->conf.uniqueid_format_string) {
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003259 int where = 0;
3260
Willy Tarreau62a61232013-04-12 18:13:46 +02003261 curproxy->conf.args.ctx = ARGC_UIF;
3262 curproxy->conf.args.file = curproxy->conf.uif_file;
3263 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003264 err = NULL;
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003265 if (curproxy->cap & PR_CAP_FE)
3266 where |= SMP_VAL_FE_HRQ_HDR;
3267 if (curproxy->cap & PR_CAP_BE)
3268 where |= SMP_VAL_BE_HRQ_HDR;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003269 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003270 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES, where, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003271 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3272 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003273 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003274 cfgerr++;
3275 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003276 curproxy->conf.args.file = NULL;
3277 curproxy->conf.args.line = 0;
3278 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003279
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +02003280 if (curproxy->conf.error_logformat_string) {
3281 curproxy->conf.args.ctx = ARGC_LOG;
3282 curproxy->conf.args.file = curproxy->conf.elfs_file;
3283 curproxy->conf.args.line = curproxy->conf.elfs_line;
3284 err = NULL;
3285 if (!parse_logformat_string(curproxy->conf.error_logformat_string, curproxy, &curproxy->logformat_error,
3286 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
3287 SMP_VAL_FE_LOG_END, &err)) {
3288 ha_alert("Parsing [%s:%d]: failed to parse error-log-format : %s.\n",
3289 curproxy->conf.elfs_file, curproxy->conf.elfs_line, err);
3290 free(err);
3291 cfgerr++;
3292 }
3293 curproxy->conf.args.file = NULL;
3294 curproxy->conf.args.line = 0;
3295 }
3296
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003297 /* only now we can check if some args remain unresolved.
3298 * This must be done after the users and groups resolution.
3299 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01003300 err = NULL;
3301 i = smp_resolve_args(curproxy, &err);
3302 cfgerr += i;
3303 if (i) {
3304 indent_msg(&err, 8);
3305 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
3306 ha_free(&err);
3307 } else
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003308 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003309
William Lallemand2c04a5a2021-08-13 15:21:12 +02003310 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003311 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003312 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003313 (!curproxy->timeout.connect ||
3314 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003315 ha_warning("missing timeouts for %s '%s'.\n"
Christopher Faulet767a84b2017-11-24 16:50:31 +01003316 " | While not properly invalid, you will certainly encounter various problems\n"
3317 " | with such a configuration. To fix this, please ensure that all following\n"
3318 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3319 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003320 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003321 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003322
Willy Tarreau1fa31262007-12-03 00:36:16 +01003323 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3324 * We must still support older configurations, so let's find out whether those
3325 * parameters have been set or must be copied from contimeouts.
3326 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01003327 if (!curproxy->timeout.tarpit)
3328 curproxy->timeout.tarpit = curproxy->timeout.connect;
3329 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
3330 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003331
Christopher Faulete5870d82020-04-15 11:32:03 +02003332 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003333 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 +01003334 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003335 err_code |= ERR_WARN;
3336 }
3337
Willy Tarreau193b8c62012-11-22 00:17:38 +01003338 /* ensure that cookie capture length is not too large */
3339 if (curproxy->capture_len >= global.tune.cookie_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003340 ha_warning("truncating capture length to %d bytes for %s '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003341 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003342 err_code |= ERR_WARN;
3343 curproxy->capture_len = global.tune.cookie_len - 1;
3344 }
3345
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003346 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003347 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003348 curproxy->req_cap_pool = create_pool("ptrcap",
3349 curproxy->nb_req_cap * sizeof(char *),
3350 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003351 }
3352
3353 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003354 curproxy->rsp_cap_pool = create_pool("ptrcap",
3355 curproxy->nb_rsp_cap * sizeof(char *),
3356 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003357 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003358
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003359 switch (curproxy->load_server_state_from_file) {
3360 case PR_SRV_STATE_FILE_UNSPEC:
3361 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3362 break;
3363 case PR_SRV_STATE_FILE_GLOBAL:
3364 if (!global.server_state_file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003365 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 +01003366 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003367 err_code |= ERR_WARN;
3368 }
3369 break;
3370 }
3371
Willy Tarreaubaaee002006-06-26 02:48:02 +02003372 /* first, we will invert the servers list order */
3373 newsrv = NULL;
3374 while (curproxy->srv) {
3375 struct server *next;
3376
3377 next = curproxy->srv->next;
3378 curproxy->srv->next = newsrv;
3379 newsrv = curproxy->srv;
3380 if (!next)
3381 break;
3382 curproxy->srv = next;
3383 }
3384
Willy Tarreau17edc812014-01-03 12:14:34 +01003385 /* Check that no server name conflicts. This causes trouble in the stats.
3386 * We only emit a warning for the first conflict affecting each server,
3387 * in order to avoid combinatory explosion if all servers have the same
3388 * name. We do that only for servers which do not have an explicit ID,
3389 * because these IDs were made also for distinguishing them and we don't
3390 * want to annoy people who correctly manage them.
3391 */
3392 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3393 struct server *other_srv;
3394
3395 if (newsrv->puid)
3396 continue;
3397
3398 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3399 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003400 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 +01003401 newsrv->conf.file, newsrv->conf.line,
3402 proxy_type_str(curproxy), curproxy->id,
3403 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003404 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003405 break;
3406 }
3407 }
3408 }
3409
Willy Tarreaudd701652010-05-25 23:03:02 +02003410 /* assign automatic UIDs to servers which don't have one yet */
3411 next_id = 1;
3412 newsrv = curproxy->srv;
3413 while (newsrv != NULL) {
3414 if (!newsrv->puid) {
3415 /* server ID not set, use automatic numbering with first
3416 * spare entry starting with next_svid.
3417 */
3418 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3419 newsrv->conf.id.key = newsrv->puid = next_id;
3420 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
3421 }
Amaury Denoyelle077c6b82021-06-14 17:04:25 +02003422 newsrv->conf.name.key = newsrv->id;
3423 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
3424
Willy Tarreaudd701652010-05-25 23:03:02 +02003425 next_id++;
3426 newsrv = newsrv->next;
3427 }
3428
Willy Tarreau20697042007-11-15 23:26:18 +01003429 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003430 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003431
Willy Tarreau62c3be22012-01-20 13:12:32 +01003432 /*
3433 * If this server supports a maxconn parameter, it needs a dedicated
3434 * tasks to fill the emptied slots when a connection leaves.
3435 * Also, resolve deferred tracking dependency if needed.
3436 */
3437 newsrv = curproxy->srv;
3438 while (newsrv != NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003439 set_usermsgs_ctx(newsrv->conf.file, newsrv->conf.line, &newsrv->obj_type);
3440
Willy Tarreau62c3be22012-01-20 13:12:32 +01003441 if (newsrv->minconn > newsrv->maxconn) {
3442 /* Only 'minconn' was specified, or it was higher than or equal
3443 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3444 * this will avoid further useless expensive computations.
3445 */
3446 newsrv->maxconn = newsrv->minconn;
3447 } else if (newsrv->maxconn && !newsrv->minconn) {
3448 /* minconn was not specified, so we set it to maxconn */
3449 newsrv->minconn = newsrv->maxconn;
3450 }
3451
William Dauchyf6370442020-11-14 19:25:33 +01003452 /* this will also properly set the transport layer for
3453 * prod and checks
3454 * if default-server have use_ssl, prerare ssl init
3455 * without activating it */
3456 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
Christopher Faulet4ab26792021-12-01 09:50:41 +01003457 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3458 ((newsrv->flags & SRV_F_DEFSRV_USE_SSL) && newsrv->use_ssl != 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003459 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3460 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3461 }
Emeric Brun94324a42012-10-11 14:00:19 +02003462
Willy Tarreau034c88c2017-01-23 23:36:45 +01003463 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3464 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3465 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003466 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 +01003467
Willy Tarreau62c3be22012-01-20 13:12:32 +01003468 if (newsrv->trackit) {
Amaury Denoyelle669b6202021-07-13 10:35:23 +02003469 if (srv_apply_track(newsrv, curproxy)) {
3470 ++cfgerr;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003471 goto next_srv;
3472 }
Willy Tarreau62c3be22012-01-20 13:12:32 +01003473 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003474
Willy Tarreau62c3be22012-01-20 13:12:32 +01003475 next_srv:
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003476 reset_usermsgs_ctx();
Willy Tarreau62c3be22012-01-20 13:12:32 +01003477 newsrv = newsrv->next;
3478 }
3479
Olivier Houchard4e694042017-03-14 20:01:29 +01003480 /*
3481 * Try to generate dynamic cookies for servers now.
3482 * It couldn't be done earlier, since at the time we parsed
3483 * the server line, we may not have known yet that we
3484 * should use dynamic cookies, or the secret key may not
3485 * have been provided yet.
3486 */
3487 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3488 newsrv = curproxy->srv;
3489 while (newsrv != NULL) {
3490 srv_set_dyncookie(newsrv);
3491 newsrv = newsrv->next;
3492 }
3493
3494 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003495 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003496 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003497 */
3498
3499 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3500 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3501 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003502 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3503 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3504 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003505 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3506 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003507 if (chash_init_server_tree(curproxy) < 0) {
3508 cfgerr++;
3509 }
Willy Tarreau9757a382009-10-03 12:56:50 +02003510 } else {
3511 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3512 fwrr_init_server_groups(curproxy);
3513 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003514 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003515
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003516 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003517 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3518 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3519 fwlc_init_server_tree(curproxy);
3520 } else {
3521 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3522 fas_init_server_tree(curproxy);
3523 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003524 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003525
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003526 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003527 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3528 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003529 if (chash_init_server_tree(curproxy) < 0) {
3530 cfgerr++;
3531 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003532 } else {
3533 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3534 init_server_map(curproxy);
3535 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003536 break;
3537 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003538 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003539
3540 if (curproxy->options & PR_O_LOGASAP)
3541 curproxy->to_log &= ~LW_BYTES;
3542
William Lallemand2c04a5a2021-08-13 15:21:12 +02003543 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003544 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3545 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003546 ha_warning("log format ignored for %s '%s' since it has no log address.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003547 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003548 err_code |= ERR_WARN;
3549 }
3550
Christopher Faulet3b6446f2021-03-15 15:10:38 +01003551 if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) {
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003552 int optnum;
3553
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003554 if (curproxy->uri_auth) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003555 ha_warning("'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003556 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003557 err_code |= ERR_WARN;
3558 curproxy->uri_auth = NULL;
3559 }
3560
Willy Tarreaude7dc882017-03-10 11:49:21 +01003561 if (curproxy->capture_name) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003562 ha_warning("'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003563 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003564 err_code |= ERR_WARN;
3565 }
3566
3567 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003568 ha_warning("'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003569 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003570 err_code |= ERR_WARN;
3571 }
3572
3573 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003574 ha_warning("'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003575 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003576 err_code |= ERR_WARN;
3577 }
3578
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003579 if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003580 ha_warning("'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003581 proxy_type_str(curproxy), curproxy->id);
3582 err_code |= ERR_WARN;
3583 }
3584
Willy Tarreaude7dc882017-03-10 11:49:21 +01003585 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003586 ha_warning("'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003587 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003588 err_code |= ERR_WARN;
3589 }
3590
Willy Tarreau87cf5142011-08-19 22:57:24 +02003591 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003592 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003593 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003594 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003595 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003596 }
3597
3598 if (curproxy->options & PR_O_ORGTO) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003599 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003600 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003601 err_code |= ERR_WARN;
3602 curproxy->options &= ~PR_O_ORGTO;
3603 }
3604
3605 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3606 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3607 (curproxy->cap & cfg_opts[optnum].cap) &&
3608 (curproxy->options & cfg_opts[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003609 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003610 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003611 err_code |= ERR_WARN;
3612 curproxy->options &= ~cfg_opts[optnum].val;
3613 }
3614 }
3615
3616 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3617 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3618 (curproxy->cap & cfg_opts2[optnum].cap) &&
3619 (curproxy->options2 & cfg_opts2[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003620 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003621 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003622 err_code |= ERR_WARN;
3623 curproxy->options2 &= ~cfg_opts2[optnum].val;
3624 }
3625 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003626
Willy Tarreau29fbe512015-08-20 19:35:14 +02003627#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003628 if (curproxy->conn_src.bind_hdr_occ) {
3629 curproxy->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02003630 ha_warning("%s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003631 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003632 err_code |= ERR_WARN;
3633 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003634#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003635 }
3636
Willy Tarreaubaaee002006-06-26 02:48:02 +02003637 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003638 * ensure that we're not cross-dressing a TCP server into HTTP.
3639 */
3640 newsrv = curproxy->srv;
3641 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003642 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003643 ha_alert("%s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003644 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003645 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003646 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003647
Willy Tarreau0cec3312011-10-31 13:49:26 +01003648 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003649 ha_warning("%s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003650 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003651 err_code |= ERR_WARN;
3652 }
3653
Willy Tarreauc93cd162014-05-13 15:54:22 +02003654 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003655 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 +01003656 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003657 err_code |= ERR_WARN;
3658 }
3659
Willy Tarreau29fbe512015-08-20 19:35:14 +02003660#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003661 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3662 newsrv->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02003663 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 +01003664 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003665 err_code |= ERR_WARN;
3666 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003667#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003668
Willy Tarreau46deab62018-04-28 07:18:15 +02003669 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3670 curproxy->options &= ~PR_O_REUSE_MASK;
3671
Willy Tarreau21d2af32008-02-14 20:25:24 +01003672 newsrv = newsrv->next;
3673 }
3674
Christopher Fauletd7c91962015-04-30 11:48:27 +02003675 /* Check filter configuration, if any */
3676 cfgerr += flt_check(curproxy);
3677
Willy Tarreauc1a21672009-08-16 22:37:44 +02003678 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003679 if (!curproxy->accept)
3680 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003681
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003682 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
3683 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02003684 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003685
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003686 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003687 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003688 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003689 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003690
William Lallemandcf62f7e2018-10-26 14:47:40 +02003691 if (curproxy->mode == PR_MODE_CLI) {
3692 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3693 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3694 }
3695
Willy Tarreauc1a21672009-08-16 22:37:44 +02003696 /* both TCP and HTTP must check switching rules */
3697 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003698
3699 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003700 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003701 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3702 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 +02003703 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003704 }
3705
3706 if (curproxy->cap & PR_CAP_BE) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003707 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
3708 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02003709 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3710
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003711 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules) ||
3712 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_rep.inspect_rules)))
Emeric Brun97679e72010-09-23 17:56:44 +02003713 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3714
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003715 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003716 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003717 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003718 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003719
3720 /* If the backend does requires RDP cookie persistence, we have to
3721 * enable the corresponding analyser.
3722 */
3723 if (curproxy->options2 & PR_O2_RDPC_PRST)
3724 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003725
3726 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003727 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003728 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3729 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 +02003730 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003731 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003732
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003733 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003734 * attached to the current proxy */
3735 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3736 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003737 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003738
3739 if (!bind_conf->mux_proto)
3740 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003741
3742 /* it is possible that an incorrect mux was referenced
3743 * due to the proxy's mode not being taken into account
3744 * on first pass. Let's adjust it now.
3745 */
3746 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3747
3748 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003749 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
Christopher Fauleta717b992018-04-10 14:43:00 +02003750 proxy_type_str(curproxy), curproxy->id,
3751 (int)bind_conf->mux_proto->token.len,
3752 bind_conf->mux_proto->token.ptr,
3753 bind_conf->arg, bind_conf->file, bind_conf->line);
3754 cfgerr++;
3755 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003756
3757 /* update the mux */
3758 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003759 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003760 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3761 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003762 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003763
3764 if (!newsrv->mux_proto)
3765 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003766
3767 /* it is possible that an incorrect mux was referenced
3768 * due to the proxy's mode not being taken into account
3769 * on first pass. Let's adjust it now.
3770 */
3771 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3772
3773 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003774 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003775 proxy_type_str(curproxy), curproxy->id,
3776 (int)newsrv->mux_proto->token.len,
3777 newsrv->mux_proto->token.ptr,
3778 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3779 cfgerr++;
3780 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003781
3782 /* update the mux */
3783 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003784 }
Amaury Denoyellef2c27a52021-07-23 15:46:46 +02003785
3786 /* Allocate default tcp-check rules for proxies without
3787 * explicit rules.
3788 */
3789 if (curproxy->cap & PR_CAP_BE) {
3790 if (!(curproxy->options2 & PR_O2_CHK_ANY)) {
3791 struct tcpcheck_ruleset *rs = NULL;
3792 struct tcpcheck_rules *rules = &curproxy->tcpcheck_rules;
3793
3794 curproxy->options2 |= PR_O2_TCPCHK_CHK;
3795
3796 rs = find_tcpcheck_ruleset("*tcp-check");
3797 if (!rs) {
3798 rs = create_tcpcheck_ruleset("*tcp-check");
3799 if (rs == NULL) {
3800 ha_alert("config: %s '%s': out of memory.\n",
3801 proxy_type_str(curproxy), curproxy->id);
3802 cfgerr++;
3803 }
3804 }
3805
3806 free_tcpcheck_vars(&rules->preset_vars);
3807 rules->list = &rs->rules;
3808 rules->flags = 0;
3809 }
3810 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01003811 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003812
Willy Tarreau4cdac162021-03-05 10:48:42 +01003813 /***********************************************************/
3814 /* At this point, target names have already been resolved. */
3815 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01003816
Willy Tarreau4cdac162021-03-05 10:48:42 +01003817 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01003818
Willy Tarreau4cdac162021-03-05 10:48:42 +01003819 list_for_each_entry(newsrv, &servers_list, global_list) {
3820 /* initialize idle conns lists */
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02003821 if (srv_init_per_thr(newsrv) == -1) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003822 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
3823 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01003824 cfgerr++;
3825 continue;
3826 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003827
Willy Tarreau4cdac162021-03-05 10:48:42 +01003828 if (newsrv->max_idle_conns != 0) {
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003829 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
3830 if (!newsrv->curr_idle_thr) {
3831 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3832 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3833 cfgerr++;
3834 continue;
3835 }
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003836
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003837 }
3838 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003839
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003840 idle_conn_task = task_new_anywhere();
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003841 if (!idle_conn_task) {
3842 ha_alert("parsing : failed to allocate global idle connection task.\n");
3843 cfgerr++;
3844 }
3845 else {
3846 idle_conn_task->process = srv_cleanup_idle_conns;
3847 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003848
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003849 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003850 idle_conns[i].cleanup_task = task_new_on(i);
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003851 if (!idle_conns[i].cleanup_task) {
3852 ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i);
3853 cfgerr++;
3854 break;
Willy Tarreau4cdac162021-03-05 10:48:42 +01003855 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003856
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003857 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
3858 idle_conns[i].cleanup_task->context = NULL;
3859 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
3860 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Willy Tarreau835daa12019-02-07 14:46:29 +01003861 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003862 }
3863
Willy Tarreau419ead82014-09-16 13:41:21 +02003864 /* perform the final checks before creating tasks */
3865
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003866 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003867 struct listener *listener;
3868 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003869
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003870 /* Configure SSL for each bind line.
3871 * Note: if configuration fails at some point, the ->ctx member
3872 * remains NULL so that listeners can later detach.
3873 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003874 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003875 if (bind_conf->xprt->prepare_bind_conf &&
3876 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003877 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003878 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003879
Willy Tarreaue6b98942007-10-29 01:09:36 +01003880 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003881 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003882 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003883 if (!listener->luid) {
3884 /* listener ID not set, use automatic numbering with first
3885 * spare entry starting with next_luid.
3886 */
3887 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3888 listener->conf.id.key = listener->luid = next_id;
3889 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003890 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003891 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003892
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003893 /* enable separate counters */
3894 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003895 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003896 if (!listener->name)
3897 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003898 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003899
Willy Tarreaue6b98942007-10-29 01:09:36 +01003900 if (curproxy->options & PR_O_TCP_NOLING)
3901 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003902 if (!listener->maxaccept)
Willy Tarreau66161322021-02-19 15:50:27 +01003903 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau16a21472012-11-19 12:39:59 +01003904
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01003905 /* listener accept callback */
3906 listener->accept = session_accept_fd;
3907#ifdef USE_QUIC
3908 /* override the accept callback for QUIC listeners. */
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01003909 if (listener->flags & LI_F_QUIC_LISTENER) {
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01003910 listener->accept = quic_session_accept;
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01003911 li_init_per_thr(listener);
3912 }
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01003913#endif
Amaury Denoyelle57af0692022-01-18 15:39:02 +01003914
Willy Tarreauc1a21672009-08-16 22:37:44 +02003915 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003916 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003917
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003918 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003919 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003920
Willy Tarreau620408f2016-10-21 16:37:51 +02003921 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3922 listener->options |= LI_O_TCP_L5_RULES;
3923
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003924 /* smart accept mode is automatic in HTTP mode */
3925 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003926 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003927 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3928 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003929 }
3930
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003931 /* Release unused SSL configs */
3932 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003933 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3934 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003935 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003936
Willy Tarreau918ff602011-07-25 16:33:49 +02003937 /* create the task associated with the proxy */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003938 curproxy->task = task_new_anywhere();
Willy Tarreau918ff602011-07-25 16:33:49 +02003939 if (curproxy->task) {
3940 curproxy->task->context = curproxy;
3941 curproxy->task->process = manage_proxy;
Christopher Faulet56717802021-10-13 10:10:09 +02003942 curproxy->flags |= PR_FL_READY;
Willy Tarreau918ff602011-07-25 16:33:49 +02003943 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003944 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3945 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003946 cfgerr++;
3947 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003948 }
3949
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003950 /*
3951 * Recount currently required checks.
3952 */
3953
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003954 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003955 int optnum;
3956
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003957 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3958 if (curproxy->options & cfg_opts[optnum].val)
3959 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003960
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003961 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3962 if (curproxy->options2 & cfg_opts2[optnum].val)
3963 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003964 }
3965
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003966 if (cfg_peers) {
3967 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003968 struct peer *p, *pb;
3969
Willy Tarreau1e273012015-05-01 19:15:17 +02003970 /* Remove all peers sections which don't have a valid listener,
3971 * which are not used by any table, or which are bound to more
3972 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003973 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003974 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003975 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003976 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003977 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003978
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003979 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003980 /* the "disabled" keyword was present */
3981 if (curpeers->peers_fe)
3982 stop_proxy(curpeers->peers_fe);
3983 curpeers->peers_fe = NULL;
3984 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003985 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003986 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3987 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003988 if (curpeers->peers_fe)
3989 stop_proxy(curpeers->peers_fe);
3990 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003991 }
3992 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003993 /* Initializes the transport layer of the server part of all the peers belonging to
3994 * <curpeers> section if required.
3995 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3996 * of an old process.
3997 */
Christopher Faulet56717802021-10-13 10:10:09 +02003998 curpeers->peers_fe->flags |= PR_FL_READY;
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003999 p = curpeers->remote;
4000 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004001 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004002 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 +01004003 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
4004 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004005 p = p->next;
4006 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004007 /* Configure the SSL bindings of the local peer if required. */
4008 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
4009 struct list *l;
4010 struct bind_conf *bind_conf;
4011
4012 l = &curpeers->peers_fe->conf.bind;
4013 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
4014 if (bind_conf->xprt->prepare_bind_conf &&
4015 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4016 cfgerr++;
4017 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004018 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004019 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4020 curpeers->id);
4021 cfgerr++;
4022 break;
4023 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004024 last = &curpeers->next;
4025 continue;
4026 }
4027
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004028 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004029 p = curpeers->remote;
4030 while (p) {
4031 pb = p->next;
4032 free(p->id);
4033 free(p);
4034 p = pb;
4035 }
4036
4037 /* Destroy and unlink this curpeers section.
4038 * Note: curpeers is backed up into *last.
4039 */
4040 free(curpeers->id);
4041 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004042 /* Reset any refereance to this peers section in the list of stick-tables */
4043 for (t = stktables_list; t; t = t->next) {
4044 if (t->peers.p && t->peers.p == *last)
4045 t->peers.p = NULL;
4046 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004047 free(*last);
4048 *last = curpeers;
4049 }
4050 }
4051
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004052 for (t = stktables_list; t; t = t->next) {
4053 if (t->proxy)
4054 continue;
4055 if (!stktable_init(t)) {
4056 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4057 cfgerr++;
4058 }
4059 }
4060
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004061 /* initialize stick-tables on backend capable proxies. This must not
4062 * be done earlier because the data size may be discovered while parsing
4063 * other proxies.
4064 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004065 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004066 if ((curproxy->flags & PR_FL_DISABLED) || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004067 continue;
4068
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004069 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004070 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004071 cfgerr++;
4072 }
4073 }
4074
Simon Horman0d16a402015-01-30 11:22:58 +09004075 if (mailers) {
4076 struct mailers *curmailers = mailers, **last;
4077 struct mailer *m, *mb;
4078
4079 /* Remove all mailers sections which don't have a valid listener.
4080 * This can happen when a mailers section is never referenced.
4081 */
4082 last = &mailers;
4083 while (*last) {
4084 curmailers = *last;
4085 if (curmailers->users) {
4086 last = &curmailers->next;
4087 continue;
4088 }
4089
Christopher Faulet767a84b2017-11-24 16:50:31 +01004090 ha_warning("Removing incomplete section 'mailers %s'.\n",
4091 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004092
4093 m = curmailers->mailer_list;
4094 while (m) {
4095 mb = m->next;
4096 free(m->id);
4097 free(m);
4098 m = mb;
4099 }
4100
4101 /* Destroy and unlink this curmailers section.
4102 * Note: curmailers is backed up into *last.
4103 */
4104 free(curmailers->id);
4105 curmailers = curmailers->next;
4106 free(*last);
4107 *last = curmailers;
4108 }
4109 }
4110
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004111 /* Update server_state_file_name to backend name if backend is supposed to use
4112 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004113 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004114 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4115 curproxy->server_state_file_name == NULL)
4116 curproxy->server_state_file_name = strdup(curproxy->id);
4117 }
4118
Emeric Brun750fe792020-12-23 16:51:12 +01004119 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06004120 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004121 ha_warning("resolvers '%s' [%s:%d] has no nameservers configured!\n",
Ben Draut054fbee2018-04-13 15:43:04 -06004122 curr_resolvers->id, curr_resolvers->conf.file,
4123 curr_resolvers->conf.line);
4124 err_code |= ERR_WARN;
4125 }
4126 }
4127
William Lallemand48b4bb42017-10-23 14:36:34 +02004128 list_for_each_entry(postparser, &postparsers, list) {
4129 if (postparser->func)
4130 cfgerr += postparser->func();
4131 }
4132
Willy Tarreaubb925012009-07-23 13:36:36 +02004133 if (cfgerr > 0)
4134 err_code |= ERR_ALERT | ERR_FATAL;
4135 out:
4136 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004137}
4138
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004139/*
4140 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4141 * parsing sessions.
4142 */
4143void cfg_register_keywords(struct cfg_kw_list *kwl)
4144{
Willy Tarreau2b718102021-04-21 07:32:39 +02004145 LIST_APPEND(&cfg_keywords.list, &kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004146}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004147
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004148/*
4149 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4150 */
4151void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4152{
Willy Tarreau2b718102021-04-21 07:32:39 +02004153 LIST_DELETE(&kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004154 LIST_INIT(&kwl->list);
4155}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004156
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004157/* this function register new section in the haproxy configuration file.
4158 * <section_name> is the name of this new section and <section_parser>
4159 * is the called parser. If two section declaration have the same name,
4160 * only the first declared is used.
4161 */
4162int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004163 int (*section_parser)(const char *, int, char **, int),
4164 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004165{
4166 struct cfg_section *cs;
4167
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004168 list_for_each_entry(cs, &sections, list) {
4169 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004170 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004171 return 0;
4172 }
4173 }
4174
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004175 cs = calloc(1, sizeof(*cs));
4176 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004177 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004178 return 0;
4179 }
4180
4181 cs->section_name = section_name;
4182 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004183 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004184
Willy Tarreau2b718102021-04-21 07:32:39 +02004185 LIST_APPEND(&sections, &cs->list);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004186
4187 return 1;
4188}
4189
William Lallemand48b4bb42017-10-23 14:36:34 +02004190/* this function register a new function which will be called once the haproxy
4191 * configuration file has been parsed. It's useful to check dependencies
4192 * between sections or to resolve items once everything is parsed.
4193 */
4194int cfg_register_postparser(char *name, int (*func)())
4195{
4196 struct cfg_postparser *cp;
4197
4198 cp = calloc(1, sizeof(*cp));
4199 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004200 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004201 return 0;
4202 }
4203 cp->name = name;
4204 cp->func = func;
4205
Willy Tarreau2b718102021-04-21 07:32:39 +02004206 LIST_APPEND(&postparsers, &cp->list);
William Lallemand48b4bb42017-10-23 14:36:34 +02004207
4208 return 1;
4209}
4210
Willy Tarreaubaaee002006-06-26 02:48:02 +02004211/*
David Carlier845efb52015-09-25 11:49:18 +01004212 * free all config section entries
4213 */
4214void cfg_unregister_sections(void)
4215{
4216 struct cfg_section *cs, *ics;
4217
4218 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004219 LIST_DELETE(&cs->list);
David Carlier845efb52015-09-25 11:49:18 +01004220 free(cs);
4221 }
4222}
4223
Christopher Faulet7110b402016-10-26 11:09:44 +02004224void cfg_backup_sections(struct list *backup_sections)
4225{
4226 struct cfg_section *cs, *ics;
4227
4228 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004229 LIST_DELETE(&cs->list);
4230 LIST_APPEND(backup_sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004231 }
4232}
4233
4234void cfg_restore_sections(struct list *backup_sections)
4235{
4236 struct cfg_section *cs, *ics;
4237
4238 list_for_each_entry_safe(cs, ics, backup_sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004239 LIST_DELETE(&cs->list);
4240 LIST_APPEND(&sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004241 }
4242}
4243
Willy Tarreaue6552512018-11-26 11:33:13 +01004244/* these are the config sections handled by default */
4245REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4246REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4247REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4248REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4249REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4250REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4251REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4252REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4253REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004254
Willy Tarreau8a022d52021-04-27 20:29:11 +02004255static struct cfg_kw_list cfg_kws = {{ },{
4256 { CFG_GLOBAL, "default-path", cfg_parse_global_def_path },
4257 { /* END */ }
4258}};
4259
4260INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4261
David Carlier845efb52015-09-25 11:49:18 +01004262/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004263 * Local variables:
4264 * c-indent-level: 8
4265 * c-basic-offset: 8
4266 * End:
4267 */