blob: 976cd59aeeebd5f8507b3823ddf0feffc0f96c03 [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>
Willy Tarreau3f49b302007-06-11 00:29:26 +020034#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035
Willy Tarreaudcc048a2020-06-04 19:11:43 +020036#include <haproxy/acl.h>
Christopher Faulet42c6cf92021-03-25 17:19:04 +010037#include <haproxy/action.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020038#include <haproxy/api.h>
Willy Tarreau732525f2021-05-06 15:49:04 +020039#include <haproxy/arg.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020040#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020041#include <haproxy/backend.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020042#include <haproxy/capture.h>
Willy Tarreau66243b42021-07-16 15:39:28 +020043#include <haproxy/cfgcond.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020044#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020045#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020046#include <haproxy/check.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020047#include <haproxy/chunk.h>
Willy Tarreau55542642021-10-08 09:33:24 +020048#include <haproxy/clock.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020049#ifdef USE_CPU_AFFINITY
Amaury Denoyellec90932b2021-04-14 16:16:03 +020050#include <haproxy/cpuset.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020051#endif
Willy Tarreau7ea393d2020-06-04 18:02:10 +020052#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020053#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020054#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020055#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020056#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020057#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020058#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020059#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020060#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020061#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020062#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020063#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020064#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020065#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020066#include <haproxy/mailers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020067#include <haproxy/namespace.h>
Amaury Denoyelleb59b8892022-01-25 17:48:47 +010068#include <haproxy/quic_sock.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020069#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020070#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020071#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020072#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020073#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020074#include <haproxy/proxy.h>
Emeric Brunc9437992021-02-12 19:42:55 +010075#include <haproxy/resolvers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020076#include <haproxy/sample.h>
77#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020078#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020079#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020080#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020081#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020082#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020083#include <haproxy/tcp_rules.h>
Amaury Denoyellef2c27a52021-07-23 15:46:46 +020084#include <haproxy/tcpcheck.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020085#include <haproxy/thread.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020086#include <haproxy/tools.h>
87#include <haproxy/uri_auth-t.h>
Frédéric Lécaille884f2e92020-11-23 14:23:21 +010088#include <haproxy/xprt_quic.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020089
90
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010091/* Used to chain configuration sections definitions. This list
92 * stores struct cfg_section
93 */
94struct list sections = LIST_HEAD_INIT(sections);
95
William Lallemand48b4bb42017-10-23 14:36:34 +020096struct list postparsers = LIST_HEAD_INIT(postparsers);
97
Eric Salama1b8dacc2021-03-16 15:12:17 +010098extern struct proxy *mworker_proxy;
99
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100100char *cursection = NULL;
Willy Tarreauc8d5b952019-02-27 17:25:52 +0100101int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +0100102int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +0100103char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200104
Willy Tarreau8a022d52021-04-27 20:29:11 +0200105/* how to handle default paths */
106static enum default_path_mode {
107 DEFAULT_PATH_CURRENT = 0, /* "current": paths are relative to CWD (this is the default) */
108 DEFAULT_PATH_CONFIG, /* "config": paths are relative to config file */
109 DEFAULT_PATH_PARENT, /* "parent": paths are relative to config file's ".." */
110 DEFAULT_PATH_ORIGIN, /* "origin": paths are relative to default_path_origin */
111} default_path_mode;
112
113static char initial_cwd[PATH_MAX];
114static char current_cwd[PATH_MAX];
115
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200116/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100117struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200118 .list = LIST_HEAD_INIT(cfg_keywords.list)
119};
120
Willy Tarreaubaaee002006-06-26 02:48:02 +0200121/*
122 * converts <str> to a list of listeners which are dynamically allocated.
123 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
124 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
125 * - <port> is a numerical port from 1 to 65535 ;
126 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
127 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200128 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
129 * not NULL, it must be a valid pointer to either NULL or a freeable area that
130 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200131 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200132int 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 +0200133{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200134 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100135 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200136 int port, end;
137
138 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200139
Willy Tarreaubaaee002006-06-26 02:48:02 +0200140 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200141 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100142 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200143
144 str = next;
145 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100146 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200147 *next++ = 0;
148 }
149
Willy Tarreau5fc93282020-09-16 18:25:03 +0200150 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Eric Salama1b8dacc2021-03-16 15:12:17 +0100151 (curproxy == global.cli_fe || curproxy == mworker_proxy) ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200152 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200153 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100154 if (!ss2)
155 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200156
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100157 /* OK the address looks correct */
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100158
159#ifdef USE_QUIC
160 /* The transport layer automatically switches to QUIC when QUIC
161 * is selected, regardless of bind_conf settings. We then need
162 * to initialize QUIC params.
163 */
Willy Tarreaue3b45182021-10-27 17:28:55 +0200164 if (proto->proto_type == PROTO_TYPE_DGRAM && proto->ctrl_type == SOCK_STREAM) {
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100165 bind_conf->xprt = xprt_get(XPRT_QUIC);
166 quic_transport_params_init(&bind_conf->quic_params, 1);
167 }
168#endif
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200169 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200170 memprintf(err, "%s for address '%s'.\n", *err, str);
171 goto fail;
172 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200173 } /* end while(next) */
174 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200175 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200176 fail:
177 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200178 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200179}
180
William Lallemand6e62fb62015-04-28 16:55:23 +0200181/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200182 * converts <str> to a list of datagram-oriented listeners which are dynamically
183 * allocated.
184 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
185 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
186 * - <port> is a numerical port from 1 to 65535 ;
187 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
188 * This can be repeated as many times as necessary, separated by a coma.
189 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
190 * not NULL, it must be a valid pointer to either NULL or a freeable area that
191 * will be replaced with an error message.
192 */
193int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
194{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200195 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200196 char *next, *dupstr;
197 int port, end;
198
199 next = dupstr = strdup(str);
200
201 while (next && *next) {
202 struct sockaddr_storage *ss2;
203 int fd = -1;
204
205 str = next;
206 /* 1) look for the end of the first address */
207 if ((next = strchr(str, ',')) != NULL) {
208 *next++ = 0;
209 }
210
Willy Tarreau5fc93282020-09-16 18:25:03 +0200211 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreau4975d142021-03-13 11:00:33 +0100212 curproxy == global.cli_fe ? NULL : global.unix_bind.prefix,
Willy Tarreauaa333122020-09-16 15:13:04 +0200213 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
214 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
215 if (!ss2)
216 goto fail;
217
218 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200219 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200220 memprintf(err, "%s for address '%s'.\n", *err, str);
221 goto fail;
222 }
223 } /* end while(next) */
224 free(dupstr);
225 return 1;
226 fail:
227 free(dupstr);
228 return 0;
229}
230
231/*
Willy Tarreau08138612021-05-08 19:58:37 +0200232 * Sends a warning if proxy <proxy> does not have at least one of the
233 * capabilities in <cap>. An optional <hint> may be added at the end
234 * of the warning to help the user. Returns 1 if a warning was emitted
235 * or 0 if the condition is valid.
236 */
237int warnifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint)
238{
239 char *msg;
240
241 switch (cap) {
242 case PR_CAP_BE: msg = "no backend"; break;
243 case PR_CAP_FE: msg = "no frontend"; break;
244 case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break;
245 default: msg = "not enough"; break;
246 }
247
248 if (!(proxy->cap & cap)) {
249 ha_warning("parsing [%s:%d] : '%s' ignored because %s '%s' has %s capability.%s\n",
250 file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : "");
251 return 1;
252 }
253 return 0;
254}
255
256/*
257 * Sends an alert if proxy <proxy> does not have at least one of the
258 * capabilities in <cap>. An optional <hint> may be added at the end
259 * of the alert to help the user. Returns 1 if an alert was emitted
260 * or 0 if the condition is valid.
261 */
262int failifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint)
263{
264 char *msg;
265
266 switch (cap) {
267 case PR_CAP_BE: msg = "no backend"; break;
268 case PR_CAP_FE: msg = "no frontend"; break;
269 case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break;
270 default: msg = "not enough"; break;
271 }
272
273 if (!(proxy->cap & cap)) {
274 ha_alert("parsing [%s:%d] : '%s' not allowed because %s '%s' has %s capability.%s\n",
275 file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : "");
276 return 1;
277 }
278 return 0;
279}
280
281/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100282 * Report an error in <msg> when there are too many arguments. This version is
283 * intended to be used by keyword parsers so that the message will be included
284 * into the general error message. The index is the current keyword in args.
285 * Return 0 if the number of argument is correct, otherwise build a message and
286 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
287 * message may also be null, it will simply not be produced (useful to check only).
288 * <msg> and <err_code> are only affected on error.
289 */
290int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
291{
292 int i;
293
294 if (!*args[index + maxarg + 1])
295 return 0;
296
297 if (msg) {
298 *msg = NULL;
299 memprintf(msg, "%s", args[0]);
300 for (i = 1; i <= index; i++)
301 memprintf(msg, "%s %s", *msg, args[i]);
302
303 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
304 }
305 if (err_code)
306 *err_code |= ERR_ALERT | ERR_FATAL;
307
308 return 1;
309}
310
311/*
312 * same as too_many_args_idx with a 0 index
313 */
314int too_many_args(int maxarg, char **args, char **msg, int *err_code)
315{
316 return too_many_args_idx(maxarg, 0, args, msg, err_code);
317}
318
319/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200320 * Report a fatal Alert when there is too much arguments
321 * The index is the current keyword in args
322 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
323 * Fill err_code with an ERR_ALERT and an ERR_FATAL
324 */
325int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
326{
327 char *kw = NULL;
328 int i;
329
330 if (!*args[index + maxarg + 1])
331 return 0;
332
333 memprintf(&kw, "%s", args[0]);
334 for (i = 1; i <= index; i++) {
335 memprintf(&kw, "%s %s", kw, args[i]);
336 }
337
Christopher Faulet767a84b2017-11-24 16:50:31 +0100338 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 +0200339 free(kw);
340 *err_code |= ERR_ALERT | ERR_FATAL;
341 return 1;
342}
343
344/*
345 * same as alertif_too_many_args_idx with a 0 index
346 */
347int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
348{
349 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
350}
351
Willy Tarreau61d18892009-03-31 10:49:21 +0200352
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100353/* Report it if a request ACL condition uses some keywords that are incompatible
354 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
355 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
356 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100357 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100358int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100359{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100360 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200361 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100362
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100363 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100364 return 0;
365
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100366 acl = acl_cond_conflicts(cond, where);
367 if (acl) {
368 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100369 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
370 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100371 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100372 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
373 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100374 return ERR_WARN;
375 }
376 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100377 return 0;
378
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100379 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100380 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
381 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100382 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100383 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
384 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100385 return ERR_WARN;
386}
387
Christopher Faulet581db2b2021-03-26 10:02:46 +0100388/* Report it if an ACL uses a L6 sample fetch from an HTTP proxy. It returns
389 * either 0 or ERR_WARN so that its result can be or'ed with err_code. Note that
390 * <cond> may be NULL and then will be ignored.
391*/
392int warnif_tcp_http_cond(const struct proxy *px, const struct acl_cond *cond)
393{
394 if (!cond || px->mode != PR_MODE_HTTP)
395 return 0;
396
397 if (cond->use & (SMP_USE_L6REQ|SMP_USE_L6RES)) {
398 ha_warning("Proxy '%s': L6 sample fetches ignored on HTTP proxies (declared at %s:%d).\n",
399 px->id, cond->file, cond->line);
400 return ERR_WARN;
401 }
402 return 0;
403}
404
Willy Tarreaue2afcc42021-03-12 09:08:04 +0100405/* try to find in <list> the word that looks closest to <word> by counting
406 * transitions between letters, digits and other characters. Will return the
407 * best matching word if found, otherwise NULL. An optional array of extra
408 * words to compare may be passed in <extra>, but it must then be terminated
409 * by a NULL entry. If unused it may be NULL.
410 */
411const char *cfg_find_best_match(const char *word, const struct list *list, int section, const char **extra)
412{
413 uint8_t word_sig[1024]; // 0..25=letter, 26=digit, 27=other, 28=begin, 29=end
414 uint8_t list_sig[1024];
415 const struct cfg_kw_list *kwl;
416 int index;
417 const char *best_ptr = NULL;
418 int dist, best_dist = INT_MAX;
419
420 make_word_fingerprint(word_sig, word);
421 list_for_each_entry(kwl, list, list) {
422 for (index = 0; kwl->kw[index].kw != NULL; index++) {
423 if (kwl->kw[index].section != section)
424 continue;
425
426 make_word_fingerprint(list_sig, kwl->kw[index].kw);
427 dist = word_fingerprint_distance(word_sig, list_sig);
428 if (dist < best_dist) {
429 best_dist = dist;
430 best_ptr = kwl->kw[index].kw;
431 }
432 }
433 }
434
435 while (extra && *extra) {
436 make_word_fingerprint(list_sig, *extra);
437 dist = word_fingerprint_distance(word_sig, list_sig);
438 if (dist < best_dist) {
439 best_dist = dist;
440 best_ptr = *extra;
441 }
442 extra++;
443 }
444
445 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
446 best_ptr = NULL;
447 return best_ptr;
448}
449
Christopher Faulet62519022017-10-16 15:49:32 +0200450/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100451 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100452 * two such numbers delimited by a dash ('-'). On success, it returns
453 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200454 *
455 * Note: this function can also be used to parse a thread number or a set of
456 * threads.
457 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100458int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200459{
Christopher Faulet26028f62017-11-22 15:01:51 +0100460 if (autoinc) {
461 *autoinc = 0;
462 if (strncmp(arg, "auto:", 5) == 0) {
463 arg += 5;
464 *autoinc = 1;
465 }
466 }
467
Christopher Faulet62519022017-10-16 15:49:32 +0200468 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100469 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200470 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100471 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200472 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100473 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200474 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100475 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100476 unsigned int low, high;
477
Christopher Faulet18cca782019-02-07 16:29:41 +0100478 for (p = arg; *p; p++) {
479 if (*p == '-' && !dash)
480 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100481 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100482 memprintf(err, "'%s' is not a valid number/range.", arg);
483 return -1;
484 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100485 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100486
487 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100488 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100489 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100490
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100491 if (high < low) {
492 unsigned int swap = low;
493 low = high;
494 high = swap;
495 }
496
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100497 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100498 memprintf(err, "'%s' is not a valid number/range."
499 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100500 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100501 return 1;
502 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100503
504 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100505 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200506 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100507 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100508
Christopher Faulet5ab51772017-11-22 11:21:58 +0100509 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200510}
511
David Carlier7e351ee2017-12-01 09:14:02 +0000512#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200513/* Parse cpu sets. Each CPU set is either a unique number between 0 and
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200514 * ha_cpuset_size() - 1 or a range with two such numbers delimited by a dash
Amaury Denoyellea8082352021-04-06 16:46:15 +0200515 * ('-'). If <comma_allowed> is set, each CPU set can be a list of unique
516 * numbers or ranges separated by a comma. It is also possible to specify
517 * multiple cpu numbers or ranges in distinct argument in <args>. On success,
518 * it returns 0, otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200519 */
Amaury Denoyellea8082352021-04-06 16:46:15 +0200520unsigned long parse_cpu_set(const char **args, struct hap_cpuset *cpu_set,
521 int comma_allowed, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200522{
523 int cur_arg = 0;
Amaury Denoyellea8082352021-04-06 16:46:15 +0200524 const char *arg;
Christopher Faulet62519022017-10-16 15:49:32 +0200525
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200526 ha_cpuset_zero(cpu_set);
527
Amaury Denoyellea8082352021-04-06 16:46:15 +0200528 arg = args[cur_arg];
529 while (*arg) {
530 const char *dash, *comma;
Christopher Faulet62519022017-10-16 15:49:32 +0200531 unsigned int low, high;
532
Willy Tarreau90807112020-02-25 08:16:33 +0100533 if (!isdigit((unsigned char)*args[cur_arg])) {
Amaury Denoyellea8082352021-04-06 16:46:15 +0200534 memprintf(err, "'%s' is not a CPU range.", arg);
Christopher Faulet62519022017-10-16 15:49:32 +0200535 return -1;
536 }
537
Amaury Denoyellea8082352021-04-06 16:46:15 +0200538 low = high = str2uic(arg);
539
540 comma = comma_allowed ? strchr(arg, ',') : NULL;
541 dash = strchr(arg, '-');
542
543 if (dash && (!comma || dash < comma))
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200544 high = *(dash+1) ? str2uic(dash + 1) : ha_cpuset_size() - 1;
Christopher Faulet62519022017-10-16 15:49:32 +0200545
546 if (high < low) {
547 unsigned int swap = low;
548 low = high;
549 high = swap;
550 }
551
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200552 if (high >= ha_cpuset_size()) {
553 memprintf(err, "supports CPU numbers from 0 to %d.",
554 ha_cpuset_size() - 1);
Christopher Faulet62519022017-10-16 15:49:32 +0200555 return 1;
556 }
557
558 while (low <= high)
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200559 ha_cpuset_set(cpu_set, low++);
Christopher Faulet62519022017-10-16 15:49:32 +0200560
Amaury Denoyellea8082352021-04-06 16:46:15 +0200561 /* if a comma is present, parse the rest of the arg, else
562 * skip to the next arg */
563 arg = comma ? comma + 1 : args[++cur_arg];
Christopher Faulet62519022017-10-16 15:49:32 +0200564 }
565 return 0;
566}
David Carlier7e351ee2017-12-01 09:14:02 +0000567#endif
568
Frédéric Lécaille18251032019-01-11 11:07:15 +0100569/* Allocate and initialize the frontend of a "peers" section found in
570 * file <file> at line <linenum> with <id> as ID.
571 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200572 * Note that this function may be called from "default-server"
573 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100574 */
575static int init_peers_frontend(const char *file, int linenum,
576 const char *id, struct peers *peers)
577{
578 struct proxy *p;
579
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200580 if (peers->peers_fe) {
581 p = peers->peers_fe;
582 goto out;
583 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100584
Frédéric Lécaille18251032019-01-11 11:07:15 +0100585 p = calloc(1, sizeof *p);
586 if (!p) {
587 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
588 return -1;
589 }
590
591 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200592 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100593 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200594 /* Finally store this frontend. */
595 peers->peers_fe = p;
596
597 out:
598 if (id && !p->id)
599 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200600 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100601 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100602 if (linenum != -1)
603 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100604
605 return 0;
606}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100607
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100608/* Only change ->file, ->line and ->arg struct bind_conf member values
609 * if already present.
610 */
611static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
612 const char *file, int line,
613 const char *arg, struct xprt_ops *xprt)
614{
615 struct bind_conf *bind_conf;
616
617 if (!LIST_ISEMPTY(&p->conf.bind)) {
618 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
619 free(bind_conf->file);
620 bind_conf->file = strdup(file);
621 bind_conf->line = line;
622 if (arg) {
623 free(bind_conf->arg);
624 bind_conf->arg = strdup(arg);
625 }
626 }
627 else {
628 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
629 }
630
631 return bind_conf;
632}
633
634/*
635 * Allocate a new struct peer parsed at line <linenum> in file <file>
636 * to be added to <peers>.
637 * Returns the new allocated structure if succeeded, NULL if not.
638 */
639static struct peer *cfg_peers_add_peer(struct peers *peers,
640 const char *file, int linenum,
641 const char *id, int local)
642{
643 struct peer *p;
644
645 p = calloc(1, sizeof *p);
646 if (!p) {
647 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
648 return NULL;
649 }
650
651 /* the peers are linked backwards first */
652 peers->count++;
Christopher Faulet387e7972022-05-12 14:47:52 +0200653 p->peers = peers;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100654 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);
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001863 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau32234e72020-06-16 17:14:33 +02001864 fatal++;
Christopher Fauletdfe32c72022-05-18 16:22:43 +02001865 outlinesize = 0;
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001866 goto err;
William Lallemandb2f07452015-05-12 14:27:13 +02001867 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001868 /* try again */
1869 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001870 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001871
1872 if (err & PARSE_ERR_TOOMANY) {
1873 /* only check this *after* being sure the output is allocated */
1874 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1875 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1876 err_code |= ERR_ALERT | ERR_FATAL;
1877 fatal++;
1878 goto next_line;
1879 }
1880
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001881 /* everything's OK */
1882 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001883 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001884
1885 /* empty line */
1886 if (!**args)
1887 continue;
1888
Willy Tarreau4b103022021-02-12 17:59:10 +01001889 /* check for config macros */
1890 if (*args[0] == '.') {
1891 if (strcmp(args[0], ".if") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001892 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001893 char *errmsg = NULL;
1894 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02001895 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001896
Willy Tarreauc8194c32021-07-16 16:38:58 +02001897 /* remerge all words into a single expression */
1898 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
1899 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001900
Willy Tarreau4b103022021-02-12 17:59:10 +01001901 nested_cond_lvl++;
1902 if (nested_cond_lvl >= MAXNESTEDCONDS) {
1903 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
1904 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1905 goto err;
1906 }
1907
Willy Tarreau6e647c92021-05-06 08:46:11 +02001908 if (nested_cond_lvl > 1 &&
1909 (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
1910 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
1911 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
1912 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
1913 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP)) {
Willy Tarreau4b103022021-02-12 17:59:10 +01001914 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001915 goto next_line;
1916 }
1917
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001918 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001919 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001920 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 76);
1921
1922 ha_alert("parsing [%s:%d]: %s in '.if' at position %d:\n .if %s\n %*s\n",
1923 file, linenum, errmsg,
1924 (int)(errptr-args[1]+1), args[1], (int)(newpos+5), "^");
1925
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001926 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01001927 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1928 goto err;
1929 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001930
1931 if (cond)
1932 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
1933 else
1934 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
1935
Willy Tarreau4b103022021-02-12 17:59:10 +01001936 goto next_line;
1937 }
1938 else if (strcmp(args[0], ".elif") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001939 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001940 char *errmsg = NULL;
1941 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02001942 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001943
Willy Tarreauc8194c32021-07-16 16:38:58 +02001944 /* remerge all words into a single expression */
1945 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
1946 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001947
Willy Tarreau4b103022021-02-12 17:59:10 +01001948 if (!nested_cond_lvl) {
1949 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
1950 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1951 goto err;
1952 }
1953
1954 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
1955 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
1956 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
1957 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1958 goto err;
1959 }
1960
1961 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
1962 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
Willy Tarreauf67ff022021-05-06 08:48:09 +02001963 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
Willy Tarreau4b103022021-02-12 17:59:10 +01001964 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
1965 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001966 goto next_line;
1967 }
1968
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001969 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001970 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001971 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 74);
1972
1973 ha_alert("parsing [%s:%d]: %s in '.elif' at position %d:\n .elif %s\n %*s\n",
1974 file, linenum, errmsg,
1975 (int)(errptr-args[1]+1), args[1], (int)(newpos+7), "^");
1976
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001977 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01001978 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1979 goto err;
1980 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001981
1982 if (cond)
1983 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
1984 else
1985 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
1986
Willy Tarreau4b103022021-02-12 17:59:10 +01001987 goto next_line;
1988 }
1989 else if (strcmp(args[0], ".else") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001990 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05001991 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001992 file, linenum, args[1], args[0]);
1993 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1994 break;
1995 }
1996
Willy Tarreau4b103022021-02-12 17:59:10 +01001997 if (!nested_cond_lvl) {
1998 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
1999 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2000 goto err;
2001 }
2002
2003 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2004 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2005 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
2006 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2007 goto err;
2008 }
2009
2010 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2011 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2012 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
2013 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2014 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
2015 } else {
2016 /* otherwise we take the "else" */
2017 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
2018 }
2019 goto next_line;
2020 }
2021 else if (strcmp(args[0], ".endif") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002022 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002023 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002024 file, linenum, args[1], args[0]);
2025 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2026 break;
2027 }
2028
Willy Tarreau4b103022021-02-12 17:59:10 +01002029 if (!nested_cond_lvl) {
2030 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002031 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau4b103022021-02-12 17:59:10 +01002032 break;
2033 }
2034 nested_cond_lvl--;
2035 goto next_line;
2036 }
2037 }
2038
2039 if (nested_cond_lvl &&
2040 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
2041 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2042 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
2043 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
2044 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
2045 /* The current block is masked out by the conditions */
2046 goto next_line;
2047 }
2048
Willy Tarreau7190b982021-05-07 08:59:50 +02002049 /* .warning/.error/.notice/.diag */
Willy Tarreau4b103022021-02-12 17:59:10 +01002050 if (*args[0] == '.') {
2051 if (strcmp(args[0], ".alert") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002052 if (*args[2]) {
2053 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2054 file, linenum, args[2], args[0]);
2055 err_code |= ERR_ALERT | ERR_FATAL;
2056 goto next_line;
2057 }
2058
Willy Tarreau4b103022021-02-12 17:59:10 +01002059 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2060 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2061 goto err;
2062 }
2063 else if (strcmp(args[0], ".warning") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002064 if (*args[2]) {
2065 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2066 file, linenum, args[2], args[0]);
2067 err_code |= ERR_ALERT | ERR_FATAL;
2068 goto next_line;
2069 }
2070
Willy Tarreau4b103022021-02-12 17:59:10 +01002071 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2072 err_code |= ERR_WARN;
2073 goto next_line;
2074 }
2075 else if (strcmp(args[0], ".notice") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002076 if (*args[2]) {
2077 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2078 file, linenum, args[2], args[0]);
2079 err_code |= ERR_ALERT | ERR_FATAL;
2080 goto next_line;
2081 }
2082
Willy Tarreau4b103022021-02-12 17:59:10 +01002083 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2084 goto next_line;
2085 }
Willy Tarreau7190b982021-05-07 08:59:50 +02002086 else if (strcmp(args[0], ".diag") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002087 if (*args[2]) {
2088 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2089 file, linenum, args[2], args[0]);
2090 err_code |= ERR_ALERT | ERR_FATAL;
2091 goto next_line;
2092 }
2093
Willy Tarreau7190b982021-05-07 08:59:50 +02002094 ha_diag_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2095 goto next_line;
2096 }
Willy Tarreau4b103022021-02-12 17:59:10 +01002097 else {
2098 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
2099 err_code |= ERR_ALERT | ERR_FATAL;
2100 fatal++;
2101 break;
2102 }
2103 }
2104
Willy Tarreau3842f002009-06-14 11:39:52 +02002105 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002106 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02002107 char *tmp;
2108
Willy Tarreau3842f002009-06-14 11:39:52 +02002109 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002110 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002111 for (arg=0; *args[arg+1]; arg++)
2112 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002113 *tmp = '\0'; // fix the next arg to \0
2114 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002115 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002116 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02002117 kwm = KWM_DEF;
2118 for (arg=0; *args[arg+1]; arg++)
2119 args[arg] = args[arg+1]; // shift args after inversion
2120 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002121
William Dauchyec730982019-10-27 20:08:10 +01002122 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2123 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002124 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002125 strcmp(args[0], "insecure-fork-wanted") != 0 &&
2126 strcmp(args[0], "numa-cpu-mapping") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002127 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002128 "supported only for options, log, busy-polling, "
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002129 "set-dumpable, strict-limits, insecure-fork-wanted "
2130 "and numa-cpu-mapping.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002131 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002132 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002133 }
2134
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002135 /* detect section start */
2136 list_for_each_entry(ics, &sections, list) {
2137 if (strcmp(args[0], ics->section_name) == 0) {
2138 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002139 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002140 cs = ics;
Willy Tarreau51508052021-05-06 10:04:45 +02002141 free(global.cfg_curr_section);
2142 global.cfg_curr_section = strdup(*args[1] ? args[1] : args[0]);
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02002143
2144 if (global.mode & MODE_DIAG) {
2145 check_section_position(args[0], file, linenum,
2146 &non_global_section_parsed);
2147 }
2148
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002149 break;
2150 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002151 }
2152
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002153 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002154 int status;
2155
2156 status = pcs->post_section_parser();
2157 err_code |= status;
2158 if (status & ERR_FATAL)
2159 fatal++;
2160
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002161 if (err_code & ERR_ABORT)
2162 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002163 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002164 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002165
William Lallemandd2ff56d2017-10-16 11:06:50 +02002166 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002167 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002168 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002169 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002170 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002171 int status;
2172
2173 status = cs->section_parser(file, linenum, args, kwm);
2174 err_code |= status;
2175 if (status & ERR_FATAL)
2176 fatal++;
2177
William Lallemandd2ff56d2017-10-16 11:06:50 +02002178 if (err_code & ERR_ABORT)
2179 goto err;
2180 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002181 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002182
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002183 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002184 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2185 file, linenum, (missing_lf + 1));
2186 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002187 }
2188
Willy Tarreau51508052021-05-06 10:04:45 +02002189 ha_free(&global.cfg_curr_section);
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002190 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002191 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002192
Willy Tarreau4b103022021-02-12 17:59:10 +01002193 if (nested_cond_lvl) {
2194 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
2195 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2196 }
Willy Tarreau8a022d52021-04-27 20:29:11 +02002197
2198 if (*initial_cwd && chdir(initial_cwd) == -1) {
2199 ha_alert("Impossible to get back to initial directory '%s' : %s\n", initial_cwd, strerror(errno));
2200 err_code |= ERR_ALERT | ERR_FATAL;
2201 }
2202
William Lallemandd2ff56d2017-10-16 11:06:50 +02002203err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002204 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01002205 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002206 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002207 free(outline);
Willy Tarreau51508052021-05-06 10:04:45 +02002208 global.cfg_curr_line = 0;
2209 global.cfg_curr_file = NULL;
2210
Willy Tarreauda543e12021-04-27 18:30:28 +02002211 if (f)
2212 fclose(f);
2213
Willy Tarreau058e9072009-07-20 09:30:05 +02002214 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002215}
2216
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002217#if defined(USE_THREAD) && defined USE_CPU_AFFINITY
2218#if defined(__linux__)
2219
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002220/* filter directory name of the pattern node<X> */
2221static int numa_filter(const struct dirent *dir)
2222{
2223 char *endptr;
2224
2225 /* dir name must start with "node" prefix */
2226 if (strncmp(dir->d_name, "node", 4))
2227 return 0;
2228
2229 /* dir name must be at least 5 characters long */
2230 if (!dir->d_name[4])
2231 return 0;
2232
2233 /* dir name must end with a numeric id */
2234 if (strtol(&dir->d_name[4], &endptr, 10) < 0 || *endptr)
2235 return 0;
2236
2237 /* all tests succeeded */
2238 return 1;
2239}
2240
2241/* Parse a linux cpu map string representing to a numeric cpu mask map
2242 * The cpu map string is a list of 4-byte hex strings separated by commas, with
2243 * most-significant byte first, one bit per cpu number.
2244 */
2245static void parse_cpumap(char *cpumap_str, struct hap_cpuset *cpu_set)
2246{
2247 unsigned long cpumap;
2248 char *start, *endptr, *comma;
2249 int i, j;
2250
2251 ha_cpuset_zero(cpu_set);
2252
2253 i = 0;
2254 do {
2255 /* reverse-search for a comma, parse the string after the comma
2256 * or at the beginning if no comma found
2257 */
2258 comma = strrchr(cpumap_str, ',');
2259 start = comma ? comma + 1 : cpumap_str;
2260
2261 cpumap = strtoul(start, &endptr, 16);
2262 for (j = 0; cpumap; cpumap >>= 1, ++j) {
2263 if (cpumap & 0x1)
2264 ha_cpuset_set(cpu_set, j + i * 32);
2265 }
2266
2267 if (comma)
2268 *comma = '\0';
2269 ++i;
2270 } while (comma);
2271}
2272
2273/* Read the first line of a file from <path> into the trash buffer.
2274 * Returns 0 on success, otherwise non-zero.
2275 */
2276static int read_file_to_trash(const char *path)
2277{
2278 FILE *file;
2279 int ret = 1;
2280
2281 file = fopen(path, "r");
2282 if (file) {
2283 if (fgets(trash.area, trash.size, file))
2284 ret = 0;
2285
2286 fclose(file);
2287 }
2288
2289 return ret;
2290}
2291
2292/* Inspect the cpu topology of the machine on startup. If a multi-socket
2293 * machine is detected, try to bind on the first node with active cpu. This is
2294 * done to prevent an impact on the overall performance when the topology of
2295 * the machine is unknown. This function is not called if one of the conditions
2296 * is met :
2297 * - a non-null nbthread directive is active
2298 * - a restrictive cpu-map directive is active
2299 * - a restrictive affinity is already applied, for example via taskset
2300 *
2301 * Returns the count of cpus selected. If no automatic binding was required or
2302 * an error occurred and the topology is unknown, 0 is returned.
2303 */
2304static int numa_detect_topology()
2305{
2306 struct dirent **node_dirlist;
2307 int node_dirlist_size;
2308
2309 struct hap_cpuset active_cpus, node_cpu_set;
2310 const char *parse_cpu_set_args[2];
2311 char cpumap_path[PATH_MAX];
2312 char *err = NULL;
2313
2314 /* node_cpu_set count is used as return value */
2315 ha_cpuset_zero(&node_cpu_set);
2316
2317 /* 1. count the sysfs node<X> directories */
Willy Tarreau07bf21c2021-04-23 19:09:16 +02002318 node_dirlist = NULL;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002319 node_dirlist_size = scandir(NUMA_DETECT_SYSTEM_SYSFS_PATH"/node", &node_dirlist, numa_filter, alphasort);
2320 if (node_dirlist_size <= 1)
2321 goto free_scandir_entries;
2322
2323 /* 2. read and parse the list of currently online cpu */
2324 if (read_file_to_trash(NUMA_DETECT_SYSTEM_SYSFS_PATH"/cpu/online")) {
2325 ha_notice("Cannot read online CPUs list, will not try to refine binding\n");
2326 goto free_scandir_entries;
2327 }
2328
2329 parse_cpu_set_args[0] = trash.area;
2330 parse_cpu_set_args[1] = "\0";
2331 if (parse_cpu_set(parse_cpu_set_args, &active_cpus, 1, &err)) {
2332 ha_notice("Cannot read online CPUs list: '%s'. Will not try to refine binding\n", err);
2333 free(err);
2334 goto free_scandir_entries;
2335 }
2336
2337 /* 3. loop through nodes dirs and find the first one with active cpus */
2338 while (node_dirlist_size--) {
2339 const char *node = node_dirlist[node_dirlist_size]->d_name;
2340 ha_cpuset_zero(&node_cpu_set);
2341
2342 snprintf(cpumap_path, PATH_MAX, "%s/node/%s/cpumap",
2343 NUMA_DETECT_SYSTEM_SYSFS_PATH, node);
2344
2345 if (read_file_to_trash(cpumap_path)) {
2346 ha_notice("Cannot read CPUs list of '%s', will not select them to refine binding\n", node);
2347 free(node_dirlist[node_dirlist_size]);
2348 continue;
2349 }
2350
2351 parse_cpumap(trash.area, &node_cpu_set);
2352 ha_cpuset_and(&node_cpu_set, &active_cpus);
2353
2354 /* 5. set affinity on the first found node with active cpus */
2355 if (!ha_cpuset_count(&node_cpu_set)) {
2356 free(node_dirlist[node_dirlist_size]);
2357 continue;
2358 }
2359
2360 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));
2361 if (sched_setaffinity(getpid(), sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2362 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2363
2364 /* clear the cpuset used as return value */
2365 ha_cpuset_zero(&node_cpu_set);
2366 }
2367
2368 free(node_dirlist[node_dirlist_size]);
2369 break;
2370 }
2371
2372 free_scandir_entries:
2373 while (node_dirlist_size-- > 0)
2374 free(node_dirlist[node_dirlist_size]);
2375 free(node_dirlist);
2376
2377 return ha_cpuset_count(&node_cpu_set);
2378}
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002379
David CARLIERf5d48f82021-12-06 11:00:10 +00002380#elif defined(__FreeBSD__)
2381static int numa_detect_topology()
2382{
2383 struct hap_cpuset node_cpu_set;
2384 int ndomains = 0, i;
2385 size_t len = sizeof(ndomains);
2386
2387 if (sysctlbyname("vm.ndomains", &ndomains, &len, NULL, 0) == -1) {
2388 ha_notice("Cannot assess the number of CPUs domains\n");
2389 return 0;
2390 }
2391
2392 BUG_ON(ndomains > MAXMEMDOM);
2393 ha_cpuset_zero(&node_cpu_set);
2394
2395 /*
2396 * We retrieve the first active valid CPU domain
2397 * with active cpu and binding it, we returns
2398 * the number of cpu from the said domain
2399 */
2400 for (i = 0; i < ndomains; i ++) {
2401 struct hap_cpuset dom;
2402 ha_cpuset_zero(&dom);
2403 if (cpuset_getaffinity(CPU_LEVEL_WHICH, CPU_WHICH_DOMAIN, i, sizeof(dom.cpuset), &dom.cpuset) == -1)
2404 continue;
2405
2406 if (!ha_cpuset_count(&dom))
2407 continue;
2408
2409 ha_cpuset_assign(&node_cpu_set, &dom);
2410
2411 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));
2412 if (cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2413 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2414
2415 /* clear the cpuset used as return value */
2416 ha_cpuset_zero(&node_cpu_set);
2417 }
2418 break;
2419 }
2420
2421 return ha_cpuset_count(&node_cpu_set);
2422}
2423
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002424#else
2425static int numa_detect_topology()
2426{
2427 return 0;
2428}
2429
2430#endif
2431#endif /* USE_THREAD && USE_CPU_AFFINITY */
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002432
Willy Tarreaubb925012009-07-23 13:36:36 +02002433/*
2434 * Returns the error code, 0 if OK, or any combination of :
2435 * - ERR_ABORT: must abort ASAP
2436 * - ERR_FATAL: we can continue parsing but not start the service
2437 * - ERR_WARN: a warning has been emitted
2438 * - ERR_ALERT: an alert has been emitted
2439 * Only the two first ones can stop processing, the two others are just
2440 * indicators.
2441 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002442int check_config_validity()
2443{
2444 int cfgerr = 0;
2445 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002446 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002447 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002448 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002449 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002450 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002451 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002452 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01002453 struct resolvers *curr_resolvers = NULL;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002454 int i;
Frédéric Lécaille372508c2022-05-06 08:53:16 +02002455 int diag_no_cluster_secret = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002456
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002457 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002458 /*
2459 * Now, check for the integrity of all that we have collected.
2460 */
2461
2462 /* will be needed further to delay some tasks */
Willy Tarreau55542642021-10-08 09:33:24 +02002463 clock_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002464
Willy Tarreau193b8c62012-11-22 00:17:38 +01002465 if (!global.tune.max_http_hdr)
2466 global.tune.max_http_hdr = MAX_HTTP_HDR;
2467
2468 if (!global.tune.cookie_len)
2469 global.tune.cookie_len = CAPTURE_LEN;
2470
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002471 if (!global.tune.requri_len)
2472 global.tune.requri_len = REQURI_LEN;
2473
Willy Tarreau149ab772019-01-26 14:27:06 +01002474 if (!global.nbthread) {
2475 /* nbthread not set, thus automatic. In this case, and only if
2476 * running on a single process, we enable the same number of
2477 * threads as the number of CPUs the process is bound to. This
2478 * allows to easily control the number of threads using taskset.
2479 */
2480 global.nbthread = 1;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002481
Willy Tarreau149ab772019-01-26 14:27:06 +01002482#if defined(USE_THREAD)
Willy Tarreaub63dbb72021-06-11 16:50:29 +02002483 {
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002484 int numa_cores = 0;
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002485#if defined(USE_CPU_AFFINITY)
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002486 if (global.numa_cpu_mapping && !thread_cpu_mask_forced())
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002487 numa_cores = numa_detect_topology();
2488#endif
2489 global.nbthread = numa_cores ? numa_cores :
2490 thread_cpus_enabled_at_boot;
2491 }
Willy Tarreau149ab772019-01-26 14:27:06 +01002492 all_threads_mask = nbits(global.nbthread);
2493#endif
2494 }
2495
Willy Tarreauc33b9692021-09-22 12:07:23 +02002496 if (!global.nbtgroups)
2497 global.nbtgroups = 1;
2498
Willy Tarreaue6806eb2021-09-27 10:10:26 +02002499 if (thread_map_to_groups() < 0) {
2500 err_code |= ERR_ALERT | ERR_FATAL;
2501 goto out;
2502 }
2503
Willy Tarreaubafbe012017-11-24 17:34:44 +01002504 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002505
Willy Tarreaubafbe012017-11-24 17:34:44 +01002506 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002507
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002508 /* Post initialisation of the users and groups lists. */
2509 err_code = userlist_postinit();
2510 if (err_code != ERR_NONE)
2511 goto out;
2512
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002513 /* first, we will invert the proxy list order */
2514 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002515 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002516 struct proxy *next;
2517
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002518 next = proxies_list->next;
2519 proxies_list->next = curproxy;
2520 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002521 if (!next)
2522 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002523 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002524 }
2525
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002526 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002527 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002528 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002529 struct sticking_rule *mrule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002530 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002531 unsigned int next_id;
2532
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002533 if (!(curproxy->cap & PR_CAP_INT) && curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002534 /* proxy ID not set, use automatic numbering with first
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002535 * spare entry starting with next_pxid. We don't assign
2536 * numbers for internal proxies as they may depend on
2537 * build or config options and we don't want them to
2538 * possibly reuse existing IDs.
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002539 */
2540 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2541 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2542 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002543 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002544
Willy Tarreau32b51cd2021-08-26 15:59:44 +02002545 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize >= (256 << 20) && ONLY_ONCE()) {
2546 ha_alert("global.tune.bufsize must be below 256 MB when HTTP is in use (current value = %d).\n",
2547 global.tune.bufsize);
2548 cfgerr++;
2549 }
2550
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002551 /* next IDs are shifted even if the proxy is disabled, this
2552 * guarantees that a proxy that is temporarily disabled in the
2553 * configuration doesn't cause a renumbering. Internal proxies
2554 * that are not assigned a static ID must never shift the IDs
2555 * either since they may appear in any order (Lua, logs, etc).
2556 * The GLOBAL proxy that carries the stats socket has its ID
2557 * forced to zero.
2558 */
2559 if (curproxy->uuid >= 0)
2560 next_pxid++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002561
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002562 if (curproxy->flags & PR_FL_DISABLED) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002563 /* ensure we don't keep listeners uselessly bound. We
2564 * can't disable their listeners yet (fdtab not
2565 * allocated yet) but let's skip them.
2566 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002567 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002568 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002569 curproxy->table->peers.p = NULL;
2570 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002571 continue;
2572 }
2573
Christopher Fauletff556272021-10-13 11:04:10 +02002574 /* The current proxy is referencing a default proxy. We must
2575 * finalize its config, but only once. If the default proxy is
2576 * ready (PR_FL_READY) it means it was already fully configured.
2577 */
2578 if (curproxy->defpx) {
2579 if (!(curproxy->defpx->flags & PR_FL_READY)) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02002580 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
2581 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l4_rules, curproxy->defpx, &err_code);
2582 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l5_rules, curproxy->defpx, &err_code);
2583 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.inspect_rules, curproxy->defpx, &err_code);
2584 cfgerr += check_action_rules(&curproxy->defpx->tcp_rep.inspect_rules, curproxy->defpx, &err_code);
2585 cfgerr += check_action_rules(&curproxy->defpx->http_req_rules, curproxy->defpx, &err_code);
2586 cfgerr += check_action_rules(&curproxy->defpx->http_res_rules, curproxy->defpx, &err_code);
2587 cfgerr += check_action_rules(&curproxy->defpx->http_after_res_rules, curproxy->defpx, &err_code);
2588
Christopher Fauletff556272021-10-13 11:04:10 +02002589 err = NULL;
2590 i = smp_resolve_args(curproxy->defpx, &err);
2591 cfgerr += i;
2592 if (i) {
2593 indent_msg(&err, 8);
2594 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
2595 ha_free(&err);
2596 }
2597 else
2598 cfgerr += acl_find_targets(curproxy->defpx);
2599
2600 /* default proxy is now ready. Set the right FE/BE capabilities */
2601 curproxy->defpx->flags |= PR_FL_READY;
2602 }
2603 }
2604
Willy Tarreau3d209582014-05-09 17:06:11 +02002605 /* check and reduce the bind-proc of each listener */
2606 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2607 unsigned long mask;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002608 struct listener *li;
Willy Tarreau3d209582014-05-09 17:06:11 +02002609
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002610 /* HTTP frontends with "h2" as ALPN/NPN will work in
2611 * HTTP/2 and absolutely require buffers 16kB or larger.
2612 */
2613#ifdef USE_OPENSSL
2614 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2615#ifdef OPENSSL_NPN_NEGOTIATED
2616 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002617 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002618 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 +01002619 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002620 cfgerr++;
2621 }
2622#endif
2623#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2624 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002625 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002626 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 +01002627 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002628 cfgerr++;
2629 }
2630#endif
2631 } /* HTTP && bufsize < 16384 */
2632#endif
2633
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002634 /* detect and address thread affinity inconsistencies */
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002635 err = NULL;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002636 if (thread_resolve_group_mask(bind_conf->bind_tgroup, bind_conf->bind_thread,
2637 &bind_conf->bind_tgroup, &bind_conf->bind_thread, &err) < 0) {
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002638 ha_alert("Proxy '%s': %s in 'bind %s' at [%s:%d].\n",
2639 curproxy->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
2640 free(err);
2641 cfgerr++;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002642 } else if (!((mask = bind_conf->bind_thread) & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002643 unsigned long new_mask = 0;
2644
2645 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002646 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002647 mask >>= global.nbthread;
2648 }
2649
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002650 bind_conf->bind_thread = new_mask;
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002651 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 +02002652 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2653 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002654
2655 /* apply thread masks and groups to all receivers */
2656 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
Willy Tarreau6dfbef42021-10-12 15:23:03 +02002657 if (bind_conf->settings.shards <= 1) {
2658 li->rx.bind_thread = bind_conf->bind_thread;
2659 li->rx.bind_tgroup = bind_conf->bind_tgroup;
2660 } else {
2661 struct listener *new_li;
2662 int shard, shards, todo, done, bit;
2663 ulong mask;
2664
2665 shards = bind_conf->settings.shards;
2666 todo = my_popcountl(bind_conf->bind_thread);
2667
2668 /* no more shards than total threads */
2669 if (shards > todo)
2670 shards = todo;
2671
2672 shard = done = bit = 0;
2673 new_li = li;
2674
2675 while (1) {
2676 mask = 0;
2677 while (done < todo) {
2678 /* enlarge mask to cover next bit of bind_thread */
2679 while (!(bind_conf->bind_thread & (1UL << bit)))
2680 bit++;
2681 mask |= (1UL << bit);
2682 bit++;
2683 done += shards;
2684 }
2685
2686 new_li->rx.bind_thread = bind_conf->bind_thread & mask;
2687 new_li->rx.bind_tgroup = bind_conf->bind_tgroup;
2688 done -= todo;
2689
2690 shard++;
2691 if (shard >= shards)
2692 break;
2693
2694 /* create another listener for new shards */
2695 new_li = clone_listener(li);
2696 if (!new_li) {
2697 ha_alert("Out of memory while trying to allocate extra listener for shard %d in %s %s\n",
2698 shard, proxy_type_str(curproxy), curproxy->id);
2699 cfgerr++;
2700 err_code |= ERR_FATAL | ERR_ALERT;
2701 goto out;
2702 }
2703 }
2704 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002705 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002706 }
2707
Willy Tarreauff01a212009-03-15 13:46:16 +01002708 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01002709 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002710 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002711 break;
2712
2713 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002714 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002715 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002716
2717 case PR_MODE_CLI:
2718 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2719 break;
Emeric Brun54932b42020-07-07 09:43:24 +02002720 case PR_MODE_SYSLOG:
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002721 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02002722 case PR_MODES:
2723 /* should not happen, bug gcc warn missing switch statement */
Amaury Denoyelle11124302021-06-04 18:22:08 +02002724 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 +02002725 proxy_type_str(curproxy), curproxy->id);
2726 cfgerr++;
2727 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002728 }
2729
William Lallemand2c04a5a2021-08-13 15:21:12 +02002730 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002731 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 +01002732 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002733 err_code |= ERR_WARN;
2734 }
2735
Willy Tarreau77e0dae2020-10-14 15:44:27 +02002736 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002737 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002738 if (curproxy->options & PR_O_TRANSP) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002739 ha_alert("%s '%s' cannot use both transparent and balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002740 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002741 cfgerr++;
2742 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002743#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002744 else if (curproxy->srv == NULL) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002745 ha_alert("%s '%s' needs at least 1 server in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002746 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002747 cfgerr++;
2748 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002749#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002750 else if (curproxy->options & PR_O_DISPATCH) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002751 ha_warning("dispatch address of %s '%s' will be ignored in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002752 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002753 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002754 }
2755 }
Willy Tarreau25241232021-07-18 19:18:56 +02002756 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002757 /* If no LB algo is set in a backend, and we're not in
2758 * transparent mode, dispatch mode nor proxy mode, we
2759 * want to use balance roundrobin by default.
2760 */
2761 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2762 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002763 }
2764 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002765
Willy Tarreau1620ec32011-08-06 17:05:02 +02002766 if (curproxy->options & PR_O_DISPATCH)
Willy Tarreau25241232021-07-18 19:18:56 +02002767 curproxy->options &= ~PR_O_TRANSP;
Willy Tarreau1620ec32011-08-06 17:05:02 +02002768 else if (curproxy->options & PR_O_TRANSP)
Willy Tarreau25241232021-07-18 19:18:56 +02002769 curproxy->options &= ~PR_O_DISPATCH;
Willy Tarreau82936582007-11-30 15:20:09 +01002770
Christopher Faulete5870d82020-04-15 11:32:03 +02002771 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002772 ha_warning("%s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
Christopher Faulete5870d82020-04-15 11:32:03 +02002773 proxy_type_str(curproxy), curproxy->id);
2774 err_code |= ERR_WARN;
2775 }
2776
2777 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002778 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002779 if (curproxy->options & PR_O_DISABLE404) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002780 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002781 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002782 err_code |= ERR_WARN;
2783 curproxy->options &= ~PR_O_DISABLE404;
2784 }
2785 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002786 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002787 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002788 err_code |= ERR_WARN;
2789 curproxy->options &= ~PR_O2_CHK_SNDST;
2790 }
Willy Tarreauef781042010-01-27 11:53:01 +01002791 }
2792
Simon Horman98637e52014-06-20 12:30:16 +09002793 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2794 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002795 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2796 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002797 cfgerr++;
2798 }
2799 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002800 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2801 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002802 cfgerr++;
2803 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002804 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2805 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2806 curproxy->id, "option external-check");
2807 err_code |= ERR_WARN;
2808 }
Simon Horman98637e52014-06-20 12:30:16 +09002809 }
2810
Simon Horman64e34162015-02-06 11:11:57 +09002811 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002812 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002813 ha_warning("'email-alert' will be ignored for %s '%s' (the presence any of "
Christopher Faulet767a84b2017-11-24 16:50:31 +01002814 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2815 "'email-alert myhostname', or 'email-alert to' "
2816 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2817 "to be present).\n",
2818 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002819 err_code |= ERR_WARN;
2820 free_email_alert(curproxy);
2821 }
2822 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002823 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002824 }
2825
Simon Horman98637e52014-06-20 12:30:16 +09002826 if (curproxy->check_command) {
2827 int clear = 0;
2828 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002829 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002830 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002831 err_code |= ERR_WARN;
2832 clear = 1;
2833 }
2834 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002835 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2836 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002837 cfgerr++;
2838 }
2839 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002840 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09002841 }
2842 }
2843
2844 if (curproxy->check_path) {
2845 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002846 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002847 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002848 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002849 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09002850 }
2851 }
2852
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002853 /* if a default backend was specified, let's find it */
2854 if (curproxy->defbe.name) {
2855 struct proxy *target;
2856
Willy Tarreauafb39922015-05-26 12:04:09 +02002857 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002858 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002859 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2860 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002861 cfgerr++;
2862 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002863 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2864 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002865 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002866 } else if (target->mode != curproxy->mode &&
2867 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2868
Christopher Faulet767a84b2017-11-24 16:50:31 +01002869 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2870 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2871 curproxy->conf.file, curproxy->conf.line,
2872 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2873 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002874 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002875 } else {
2876 free(curproxy->defbe.name);
2877 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002878 /* Emit a warning if this proxy also has some servers */
2879 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002880 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2881 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002882 err_code |= ERR_WARN;
2883 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002884 }
2885 }
2886
Willy Tarreau55ea7572007-06-17 19:56:27 +02002887 /* find the target proxy for 'use_backend' rules */
2888 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002889 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002890 struct logformat_node *node;
2891 char *pxname;
2892
2893 /* Try to parse the string as a log format expression. If the result
2894 * of the parsing is only one entry containing a simple string, then
2895 * it's a standard string corresponding to a static rule, thus the
2896 * parsing is cancelled and be.name is restored to be resolved.
2897 */
2898 pxname = rule->be.name;
2899 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002900 curproxy->conf.args.ctx = ARGC_UBK;
2901 curproxy->conf.args.file = rule->file;
2902 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002903 err = NULL;
2904 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002905 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2906 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002907 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002908 cfgerr++;
2909 continue;
2910 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002911 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2912
2913 if (!LIST_ISEMPTY(&rule->be.expr)) {
2914 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2915 rule->dynamic = 1;
2916 free(pxname);
2917 continue;
2918 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002919 /* Only one element in the list, a simple string: free the expression and
2920 * fall back to static rule
2921 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002922 LIST_DELETE(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002923 free(node->arg);
2924 free(node);
2925 }
2926
2927 rule->dynamic = 0;
2928 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002929
Willy Tarreauafb39922015-05-26 12:04:09 +02002930 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002931 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002932 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2933 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002934 cfgerr++;
2935 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002936 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2937 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002938 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002939 } else if (target->mode != curproxy->mode &&
2940 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2941
Christopher Faulet767a84b2017-11-24 16:50:31 +01002942 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2943 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2944 curproxy->conf.file, curproxy->conf.line,
2945 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2946 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002947 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002948 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002949 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002950 rule->be.backend = target;
2951 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01002952 err_code |= warnif_tcp_http_cond(curproxy, rule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002953 }
2954
Willy Tarreau64ab6072014-09-16 12:17:36 +02002955 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002956 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002957 struct server *target;
2958 struct logformat_node *node;
2959 char *server_name;
2960
2961 /* We try to parse the string as a log format expression. If the result of the parsing
2962 * is only one entry containing a single string, then it's a standard string corresponding
2963 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2964 */
2965 server_name = srule->srv.name;
2966 LIST_INIT(&srule->expr);
2967 curproxy->conf.args.ctx = ARGC_USRV;
2968 err = NULL;
2969 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2970 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2971 srule->file, srule->line, server_name, err);
2972 free(err);
2973 cfgerr++;
2974 continue;
2975 }
2976 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2977
2978 if (!LIST_ISEMPTY(&srule->expr)) {
2979 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2980 srule->dynamic = 1;
2981 free(server_name);
2982 continue;
2983 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002984 /* Only one element in the list, a simple string: free the expression and
2985 * fall back to static rule
2986 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002987 LIST_DELETE(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002988 free(node->arg);
2989 free(node);
2990 }
2991
2992 srule->dynamic = 0;
2993 srule->srv.name = server_name;
2994 target = findserver(curproxy, srule->srv.name);
Christopher Faulet581db2b2021-03-26 10:02:46 +01002995 err_code |= warnif_tcp_http_cond(curproxy, srule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002996
2997 if (!target) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002998 ha_alert("%s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002999 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003000 cfgerr++;
3001 continue;
3002 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01003003 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003004 srule->srv.ptr = target;
Amaury Denoyelle06269612021-08-23 14:05:07 +02003005 target->flags |= SRV_F_NON_PURGEABLE;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003006 }
3007
Emeric Brunb982a3d2010-01-04 15:45:53 +01003008 /* find the target table for 'stick' rules */
3009 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003010 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003011
Emeric Brun1d33b292010-01-04 15:47:17 +01003012 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
3013 if (mrule->flags & STK_IS_STORE)
3014 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3015
Emeric Brunb982a3d2010-01-04 15:45:53 +01003016 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003017 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003018 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003019 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003020
3021 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003022 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003023 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003024 cfgerr++;
3025 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003026 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003027 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3028 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003029 cfgerr++;
3030 }
3031 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003032 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003033 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003034 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3035 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003036 if (!in_proxies_list(target->proxies_list, curproxy)) {
3037 curproxy->next_stkt_ref = target->proxies_list;
3038 target->proxies_list = curproxy;
3039 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003040 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003041 err_code |= warnif_tcp_http_cond(curproxy, mrule->cond);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003042 }
3043
3044 /* find the target table for 'store response' rules */
3045 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003046 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003047
Emeric Brun1d33b292010-01-04 15:47:17 +01003048 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3049
Emeric Brunb982a3d2010-01-04 15:45:53 +01003050 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003051 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003052 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003053 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003054
3055 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003056 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003057 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003058 cfgerr++;
3059 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003060 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003061 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3062 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003063 cfgerr++;
3064 }
3065 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003066 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003067 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003068 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3069 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003070 if (!in_proxies_list(target->proxies_list, curproxy)) {
3071 curproxy->next_stkt_ref = target->proxies_list;
3072 target->proxies_list = curproxy;
3073 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003074 }
3075 }
3076
Christopher Faulet42c6cf92021-03-25 17:19:04 +01003077 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
3078 cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code);
3079 cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code);
3080 cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code);
3081 cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code);
3082 cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code);
3083 cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code);
3084 cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003085
Christopher Faulet5eef0182021-03-31 17:13:49 +02003086 /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */
3087 if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) {
3088 if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP)
3089 ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. "
3090 "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n",
3091 curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy));
3092 }
3093
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003094 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003095 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003096
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003097 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003098 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003099 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003100 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003101 break;
3102 }
3103 }
3104
3105 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003106 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003107 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01003108 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003109 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003110 cfgerr++;
3111 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003112 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003113 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003114 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003115 }
Emeric Brun32da3c42010-09-23 18:39:19 +02003116 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003117 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
3118 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003119 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003120 cfgerr++;
3121 }
3122 }
3123
Simon Horman9dc49962015-01-30 11:22:59 +09003124
3125 if (curproxy->email_alert.mailers.name) {
3126 struct mailers *curmailers = mailers;
3127
3128 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003129 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09003130 break;
Simon Horman9dc49962015-01-30 11:22:59 +09003131 }
Simon Horman9dc49962015-01-30 11:22:59 +09003132 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003133 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
3134 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09003135 free_email_alert(curproxy);
3136 cfgerr++;
3137 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02003138 else {
3139 err = NULL;
3140 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003141 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003142 free(err);
3143 cfgerr++;
3144 }
3145 }
Simon Horman9dc49962015-01-30 11:22:59 +09003146 }
3147
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003148 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01003149 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003150 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003151 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
3152 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003153 cfgerr++;
3154 goto out_uri_auth_compat;
3155 }
3156
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003157 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003158 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003159 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003160 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003161 struct act_rule *rule;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003162 i = 0;
3163
Willy Tarreau95fa4692010-02-01 13:05:50 +01003164 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
3165 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003166
3167 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003168 uri_auth_compat_req[i++] = "realm";
3169 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
3170 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003171
Willy Tarreau95fa4692010-02-01 13:05:50 +01003172 uri_auth_compat_req[i++] = "unless";
3173 uri_auth_compat_req[i++] = "{";
3174 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
3175 uri_auth_compat_req[i++] = "}";
3176 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003177
Willy Tarreauff011f22011-01-06 17:51:27 +01003178 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
3179 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003180 cfgerr++;
3181 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003182 }
3183
Willy Tarreau2b718102021-04-21 07:32:39 +02003184 LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01003185
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003186 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003187 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003188 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003189 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003190 }
3191out_uri_auth_compat:
3192
Dragan Dosen43885c72015-10-01 13:18:13 +02003193 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02003194 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02003195 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
3196 if (!curproxy->conf.logformat_sd_string) {
3197 /* set the default logformat_sd_string */
3198 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
3199 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003200 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02003201 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003202 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02003203
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003204 /* compile the log format */
3205 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02003206 if (curproxy->conf.logformat_string != default_http_log_format &&
3207 curproxy->conf.logformat_string != default_tcp_log_format &&
3208 curproxy->conf.logformat_string != clf_http_log_format)
3209 free(curproxy->conf.logformat_string);
3210 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003211 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02003212 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003213
3214 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3215 free(curproxy->conf.logformat_sd_string);
3216 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003217 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003218 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003219 }
3220
Willy Tarreau62a61232013-04-12 18:13:46 +02003221 if (curproxy->conf.logformat_string) {
3222 curproxy->conf.args.ctx = ARGC_LOG;
3223 curproxy->conf.args.file = curproxy->conf.lfs_file;
3224 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003225 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003226 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
3227 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003228 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003229 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3230 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003231 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003232 cfgerr++;
3233 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003234 curproxy->conf.args.file = NULL;
3235 curproxy->conf.args.line = 0;
3236 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003237
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003238 if (curproxy->conf.logformat_sd_string) {
3239 curproxy->conf.args.ctx = ARGC_LOGSD;
3240 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3241 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003242 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003243 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
3244 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003245 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003246 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3247 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003248 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003249 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003250 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003251 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3252 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003253 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003254 cfgerr++;
3255 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003256 curproxy->conf.args.file = NULL;
3257 curproxy->conf.args.line = 0;
3258 }
3259
Willy Tarreau62a61232013-04-12 18:13:46 +02003260 if (curproxy->conf.uniqueid_format_string) {
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003261 int where = 0;
3262
Willy Tarreau62a61232013-04-12 18:13:46 +02003263 curproxy->conf.args.ctx = ARGC_UIF;
3264 curproxy->conf.args.file = curproxy->conf.uif_file;
3265 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003266 err = NULL;
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003267 if (curproxy->cap & PR_CAP_FE)
3268 where |= SMP_VAL_FE_HRQ_HDR;
3269 if (curproxy->cap & PR_CAP_BE)
3270 where |= SMP_VAL_BE_HRQ_HDR;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003271 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003272 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES, where, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003273 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3274 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003275 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003276 cfgerr++;
3277 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003278 curproxy->conf.args.file = NULL;
3279 curproxy->conf.args.line = 0;
3280 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003281
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +02003282 if (curproxy->conf.error_logformat_string) {
3283 curproxy->conf.args.ctx = ARGC_LOG;
3284 curproxy->conf.args.file = curproxy->conf.elfs_file;
3285 curproxy->conf.args.line = curproxy->conf.elfs_line;
3286 err = NULL;
3287 if (!parse_logformat_string(curproxy->conf.error_logformat_string, curproxy, &curproxy->logformat_error,
3288 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
3289 SMP_VAL_FE_LOG_END, &err)) {
3290 ha_alert("Parsing [%s:%d]: failed to parse error-log-format : %s.\n",
3291 curproxy->conf.elfs_file, curproxy->conf.elfs_line, err);
3292 free(err);
3293 cfgerr++;
3294 }
3295 curproxy->conf.args.file = NULL;
3296 curproxy->conf.args.line = 0;
3297 }
3298
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +02003299 /* "balance hash" needs to compile its expression */
3300 if ((curproxy->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_SMP) {
3301 int idx = 0;
3302 const char *args[] = {
3303 curproxy->lbprm.arg_str,
3304 NULL,
3305 };
3306
3307 err = NULL;
3308 curproxy->conf.args.ctx = ARGC_USRV; // same context as use_server.
3309 curproxy->lbprm.expr =
3310 sample_parse_expr((char **)args, &idx,
3311 curproxy->conf.file, curproxy->conf.line,
3312 &err, &curproxy->conf.args, NULL);
3313
3314 if (!curproxy->lbprm.expr) {
3315 ha_alert("%s '%s' [%s:%d]: failed to parse 'balance hash' expression '%s' in : %s.\n",
3316 proxy_type_str(curproxy), curproxy->id,
3317 curproxy->conf.file, curproxy->conf.line,
3318 curproxy->lbprm.arg_str, err);
3319 ha_free(&err);
3320 cfgerr++;
3321 }
3322 else if (!(curproxy->lbprm.expr->fetch->val & SMP_VAL_BE_SET_SRV)) {
3323 ha_alert("%s '%s' [%s:%d]: error detected while parsing 'balance hash' expression '%s' "
3324 "which requires information from %s, which is not available here.\n",
3325 proxy_type_str(curproxy), curproxy->id,
3326 curproxy->conf.file, curproxy->conf.line,
3327 curproxy->lbprm.arg_str, sample_src_names(curproxy->lbprm.expr->fetch->use));
3328 cfgerr++;
3329 }
3330 else if (curproxy->mode == PR_MODE_HTTP && (curproxy->lbprm.expr->fetch->use & SMP_USE_L6REQ)) {
3331 ha_warning("%s '%s' [%s:%d]: L6 sample fetch <%s> will be ignored in 'balance hash' expression in HTTP mode.\n",
3332 proxy_type_str(curproxy), curproxy->id,
3333 curproxy->conf.file, curproxy->conf.line,
3334 curproxy->lbprm.arg_str);
3335 }
3336 else
3337 curproxy->http_needed |= !!(curproxy->lbprm.expr->fetch->use & SMP_USE_HTTP_ANY);
3338 }
3339
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003340 /* only now we can check if some args remain unresolved.
3341 * This must be done after the users and groups resolution.
3342 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01003343 err = NULL;
3344 i = smp_resolve_args(curproxy, &err);
3345 cfgerr += i;
3346 if (i) {
3347 indent_msg(&err, 8);
3348 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
3349 ha_free(&err);
3350 } else
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003351 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003352
William Lallemand2c04a5a2021-08-13 15:21:12 +02003353 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003354 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003355 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003356 (!curproxy->timeout.connect ||
3357 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003358 ha_warning("missing timeouts for %s '%s'.\n"
Christopher Faulet767a84b2017-11-24 16:50:31 +01003359 " | While not properly invalid, you will certainly encounter various problems\n"
3360 " | with such a configuration. To fix this, please ensure that all following\n"
3361 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3362 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003363 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003364 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003365
Willy Tarreau1fa31262007-12-03 00:36:16 +01003366 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3367 * We must still support older configurations, so let's find out whether those
3368 * parameters have been set or must be copied from contimeouts.
3369 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01003370 if (!curproxy->timeout.tarpit)
3371 curproxy->timeout.tarpit = curproxy->timeout.connect;
3372 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
3373 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003374
Christopher Faulete5870d82020-04-15 11:32:03 +02003375 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003376 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 +01003377 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003378 err_code |= ERR_WARN;
3379 }
3380
Willy Tarreau193b8c62012-11-22 00:17:38 +01003381 /* ensure that cookie capture length is not too large */
3382 if (curproxy->capture_len >= global.tune.cookie_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003383 ha_warning("truncating capture length to %d bytes for %s '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003384 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003385 err_code |= ERR_WARN;
3386 curproxy->capture_len = global.tune.cookie_len - 1;
3387 }
3388
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003389 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003390 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003391 curproxy->req_cap_pool = create_pool("ptrcap",
3392 curproxy->nb_req_cap * sizeof(char *),
3393 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003394 }
3395
3396 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003397 curproxy->rsp_cap_pool = create_pool("ptrcap",
3398 curproxy->nb_rsp_cap * sizeof(char *),
3399 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003400 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003401
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003402 switch (curproxy->load_server_state_from_file) {
3403 case PR_SRV_STATE_FILE_UNSPEC:
3404 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3405 break;
3406 case PR_SRV_STATE_FILE_GLOBAL:
3407 if (!global.server_state_file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003408 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 +01003409 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003410 err_code |= ERR_WARN;
3411 }
3412 break;
3413 }
3414
Willy Tarreaubaaee002006-06-26 02:48:02 +02003415 /* first, we will invert the servers list order */
3416 newsrv = NULL;
3417 while (curproxy->srv) {
3418 struct server *next;
3419
3420 next = curproxy->srv->next;
3421 curproxy->srv->next = newsrv;
3422 newsrv = curproxy->srv;
3423 if (!next)
3424 break;
3425 curproxy->srv = next;
3426 }
3427
Willy Tarreau17edc812014-01-03 12:14:34 +01003428 /* Check that no server name conflicts. This causes trouble in the stats.
3429 * We only emit a warning for the first conflict affecting each server,
3430 * in order to avoid combinatory explosion if all servers have the same
3431 * name. We do that only for servers which do not have an explicit ID,
3432 * because these IDs were made also for distinguishing them and we don't
3433 * want to annoy people who correctly manage them.
3434 */
3435 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3436 struct server *other_srv;
3437
3438 if (newsrv->puid)
3439 continue;
3440
3441 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3442 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003443 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 +01003444 newsrv->conf.file, newsrv->conf.line,
3445 proxy_type_str(curproxy), curproxy->id,
3446 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003447 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003448 break;
3449 }
3450 }
3451 }
3452
Willy Tarreaudd701652010-05-25 23:03:02 +02003453 /* assign automatic UIDs to servers which don't have one yet */
3454 next_id = 1;
3455 newsrv = curproxy->srv;
3456 while (newsrv != NULL) {
3457 if (!newsrv->puid) {
3458 /* server ID not set, use automatic numbering with first
3459 * spare entry starting with next_svid.
3460 */
3461 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3462 newsrv->conf.id.key = newsrv->puid = next_id;
3463 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
3464 }
Amaury Denoyelle077c6b82021-06-14 17:04:25 +02003465 newsrv->conf.name.key = newsrv->id;
3466 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
3467
Willy Tarreaudd701652010-05-25 23:03:02 +02003468 next_id++;
3469 newsrv = newsrv->next;
3470 }
3471
Willy Tarreau20697042007-11-15 23:26:18 +01003472 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003473 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003474
Willy Tarreau62c3be22012-01-20 13:12:32 +01003475 /*
3476 * If this server supports a maxconn parameter, it needs a dedicated
3477 * tasks to fill the emptied slots when a connection leaves.
3478 * Also, resolve deferred tracking dependency if needed.
3479 */
3480 newsrv = curproxy->srv;
3481 while (newsrv != NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003482 set_usermsgs_ctx(newsrv->conf.file, newsrv->conf.line, &newsrv->obj_type);
3483
Willy Tarreau62c3be22012-01-20 13:12:32 +01003484 if (newsrv->minconn > newsrv->maxconn) {
3485 /* Only 'minconn' was specified, or it was higher than or equal
3486 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3487 * this will avoid further useless expensive computations.
3488 */
3489 newsrv->maxconn = newsrv->minconn;
3490 } else if (newsrv->maxconn && !newsrv->minconn) {
3491 /* minconn was not specified, so we set it to maxconn */
3492 newsrv->minconn = newsrv->maxconn;
3493 }
3494
William Dauchyf6370442020-11-14 19:25:33 +01003495 /* this will also properly set the transport layer for
3496 * prod and checks
3497 * if default-server have use_ssl, prerare ssl init
3498 * without activating it */
3499 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
Christopher Faulet4ab26792021-12-01 09:50:41 +01003500 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3501 ((newsrv->flags & SRV_F_DEFSRV_USE_SSL) && newsrv->use_ssl != 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003502 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3503 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3504 }
Emeric Brun94324a42012-10-11 14:00:19 +02003505
Willy Tarreau034c88c2017-01-23 23:36:45 +01003506 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3507 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3508 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003509 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 +01003510
Willy Tarreau62c3be22012-01-20 13:12:32 +01003511 if (newsrv->trackit) {
Amaury Denoyelle669b6202021-07-13 10:35:23 +02003512 if (srv_apply_track(newsrv, curproxy)) {
3513 ++cfgerr;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003514 goto next_srv;
3515 }
Willy Tarreau62c3be22012-01-20 13:12:32 +01003516 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003517
Willy Tarreau62c3be22012-01-20 13:12:32 +01003518 next_srv:
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003519 reset_usermsgs_ctx();
Willy Tarreau62c3be22012-01-20 13:12:32 +01003520 newsrv = newsrv->next;
3521 }
3522
Olivier Houchard4e694042017-03-14 20:01:29 +01003523 /*
3524 * Try to generate dynamic cookies for servers now.
3525 * It couldn't be done earlier, since at the time we parsed
3526 * the server line, we may not have known yet that we
3527 * should use dynamic cookies, or the secret key may not
3528 * have been provided yet.
3529 */
3530 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3531 newsrv = curproxy->srv;
3532 while (newsrv != NULL) {
3533 srv_set_dyncookie(newsrv);
3534 newsrv = newsrv->next;
3535 }
3536
3537 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003538 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003539 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003540 */
3541
3542 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3543 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3544 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003545 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3546 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3547 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003548 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3549 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003550 if (chash_init_server_tree(curproxy) < 0) {
3551 cfgerr++;
3552 }
Willy Tarreau9757a382009-10-03 12:56:50 +02003553 } else {
3554 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3555 fwrr_init_server_groups(curproxy);
3556 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003557 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003558
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003559 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003560 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3561 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3562 fwlc_init_server_tree(curproxy);
3563 } else {
3564 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3565 fas_init_server_tree(curproxy);
3566 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003567 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003568
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003569 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003570 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3571 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003572 if (chash_init_server_tree(curproxy) < 0) {
3573 cfgerr++;
3574 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003575 } else {
3576 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3577 init_server_map(curproxy);
3578 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003579 break;
3580 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003581 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003582
3583 if (curproxy->options & PR_O_LOGASAP)
3584 curproxy->to_log &= ~LW_BYTES;
3585
William Lallemand2c04a5a2021-08-13 15:21:12 +02003586 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003587 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3588 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003589 ha_warning("log format ignored for %s '%s' since it has no log address.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003590 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003591 err_code |= ERR_WARN;
3592 }
3593
Christopher Faulet3b6446f2021-03-15 15:10:38 +01003594 if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) {
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003595 int optnum;
3596
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003597 if (curproxy->uri_auth) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003598 ha_warning("'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003599 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003600 err_code |= ERR_WARN;
3601 curproxy->uri_auth = NULL;
3602 }
3603
Willy Tarreaude7dc882017-03-10 11:49:21 +01003604 if (curproxy->capture_name) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003605 ha_warning("'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003606 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003607 err_code |= ERR_WARN;
3608 }
3609
3610 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003611 ha_warning("'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003612 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003613 err_code |= ERR_WARN;
3614 }
3615
3616 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003617 ha_warning("'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003618 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003619 err_code |= ERR_WARN;
3620 }
3621
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003622 if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003623 ha_warning("'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003624 proxy_type_str(curproxy), curproxy->id);
3625 err_code |= ERR_WARN;
3626 }
3627
Willy Tarreaude7dc882017-03-10 11:49:21 +01003628 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003629 ha_warning("'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003630 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003631 err_code |= ERR_WARN;
3632 }
3633
Willy Tarreau87cf5142011-08-19 22:57:24 +02003634 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003635 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003636 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003637 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003638 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003639 }
3640
3641 if (curproxy->options & PR_O_ORGTO) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003642 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003643 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003644 err_code |= ERR_WARN;
3645 curproxy->options &= ~PR_O_ORGTO;
3646 }
3647
3648 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3649 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3650 (curproxy->cap & cfg_opts[optnum].cap) &&
3651 (curproxy->options & cfg_opts[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003652 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003653 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003654 err_code |= ERR_WARN;
3655 curproxy->options &= ~cfg_opts[optnum].val;
3656 }
3657 }
3658
3659 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3660 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3661 (curproxy->cap & cfg_opts2[optnum].cap) &&
3662 (curproxy->options2 & cfg_opts2[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003663 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003664 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003665 err_code |= ERR_WARN;
3666 curproxy->options2 &= ~cfg_opts2[optnum].val;
3667 }
3668 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003669
Willy Tarreau29fbe512015-08-20 19:35:14 +02003670#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003671 if (curproxy->conn_src.bind_hdr_occ) {
3672 curproxy->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02003673 ha_warning("%s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003674 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003675 err_code |= ERR_WARN;
3676 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003677#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003678 }
3679
Willy Tarreaubaaee002006-06-26 02:48:02 +02003680 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003681 * ensure that we're not cross-dressing a TCP server into HTTP.
3682 */
3683 newsrv = curproxy->srv;
3684 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003685 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003686 ha_alert("%s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003687 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003688 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003689 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003690
Willy Tarreau0cec3312011-10-31 13:49:26 +01003691 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003692 ha_warning("%s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003693 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003694 err_code |= ERR_WARN;
3695 }
3696
Willy Tarreauc93cd162014-05-13 15:54:22 +02003697 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003698 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 +01003699 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003700 err_code |= ERR_WARN;
3701 }
3702
Willy Tarreau29fbe512015-08-20 19:35:14 +02003703#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003704 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3705 newsrv->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02003706 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 +01003707 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003708 err_code |= ERR_WARN;
3709 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003710#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003711
Willy Tarreau46deab62018-04-28 07:18:15 +02003712 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3713 curproxy->options &= ~PR_O_REUSE_MASK;
3714
Willy Tarreau21d2af32008-02-14 20:25:24 +01003715 newsrv = newsrv->next;
3716 }
3717
Christopher Fauletd7c91962015-04-30 11:48:27 +02003718 /* Check filter configuration, if any */
3719 cfgerr += flt_check(curproxy);
3720
Willy Tarreauc1a21672009-08-16 22:37:44 +02003721 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003722 if (!curproxy->accept)
3723 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003724
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003725 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
3726 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02003727 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003728
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003729 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003730 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003731 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003732 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003733
William Lallemandcf62f7e2018-10-26 14:47:40 +02003734 if (curproxy->mode == PR_MODE_CLI) {
3735 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3736 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3737 }
3738
Willy Tarreauc1a21672009-08-16 22:37:44 +02003739 /* both TCP and HTTP must check switching rules */
3740 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003741
3742 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003743 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003744 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3745 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 +02003746 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003747 }
3748
3749 if (curproxy->cap & PR_CAP_BE) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003750 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
3751 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02003752 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3753
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003754 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules) ||
3755 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_rep.inspect_rules)))
Emeric Brun97679e72010-09-23 17:56:44 +02003756 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3757
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003758 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003759 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003760 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003761 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003762
3763 /* If the backend does requires RDP cookie persistence, we have to
3764 * enable the corresponding analyser.
3765 */
3766 if (curproxy->options2 & PR_O2_RDPC_PRST)
3767 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003768
3769 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003770 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003771 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3772 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 +02003773 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003774 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003775
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003776 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003777 * attached to the current proxy */
3778 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3779 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003780 const struct mux_proto_list *mux_ent;
Willy Tarreau26f221b2022-04-26 14:40:30 +02003781 const struct listener *l;
3782 int types = 0;
3783
3784 /* check that the mux is compatible with all listeners'
3785 * protocol types (dgram or stream).
3786 */
3787 list_for_each_entry(l, &bind_conf->listeners, by_bind)
3788 types |= 1 << l->rx.proto->proto_type;
3789
3790 if (atleast2(types)) {
3791 ha_alert("%s '%s' : cannot mix datagram and stream protocols "
3792 "for 'bind %s' at [%s:%d].\n",
3793 proxy_type_str(curproxy), curproxy->id,
3794 bind_conf->arg, bind_conf->file, bind_conf->line);
3795 cfgerr++;
3796 continue;
3797 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003798
3799 if (!bind_conf->mux_proto)
3800 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003801
3802 /* it is possible that an incorrect mux was referenced
3803 * due to the proxy's mode not being taken into account
3804 * on first pass. Let's adjust it now.
3805 */
3806 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3807
3808 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003809 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
Christopher Fauleta717b992018-04-10 14:43:00 +02003810 proxy_type_str(curproxy), curproxy->id,
3811 (int)bind_conf->mux_proto->token.len,
3812 bind_conf->mux_proto->token.ptr,
3813 bind_conf->arg, bind_conf->file, bind_conf->line);
3814 cfgerr++;
3815 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003816
3817 /* update the mux */
3818 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003819 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003820 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3821 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003822 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003823
3824 if (!newsrv->mux_proto)
3825 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003826
3827 /* it is possible that an incorrect mux was referenced
3828 * due to the proxy's mode not being taken into account
3829 * on first pass. Let's adjust it now.
3830 */
3831 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3832
3833 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003834 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003835 proxy_type_str(curproxy), curproxy->id,
3836 (int)newsrv->mux_proto->token.len,
3837 newsrv->mux_proto->token.ptr,
3838 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3839 cfgerr++;
3840 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003841
3842 /* update the mux */
3843 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003844 }
Amaury Denoyellef2c27a52021-07-23 15:46:46 +02003845
3846 /* Allocate default tcp-check rules for proxies without
3847 * explicit rules.
3848 */
3849 if (curproxy->cap & PR_CAP_BE) {
3850 if (!(curproxy->options2 & PR_O2_CHK_ANY)) {
3851 struct tcpcheck_ruleset *rs = NULL;
3852 struct tcpcheck_rules *rules = &curproxy->tcpcheck_rules;
3853
3854 curproxy->options2 |= PR_O2_TCPCHK_CHK;
3855
3856 rs = find_tcpcheck_ruleset("*tcp-check");
3857 if (!rs) {
3858 rs = create_tcpcheck_ruleset("*tcp-check");
3859 if (rs == NULL) {
3860 ha_alert("config: %s '%s': out of memory.\n",
3861 proxy_type_str(curproxy), curproxy->id);
3862 cfgerr++;
3863 }
3864 }
3865
3866 free_tcpcheck_vars(&rules->preset_vars);
3867 rules->list = &rs->rules;
3868 rules->flags = 0;
3869 }
3870 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01003871 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003872
Willy Tarreau4cdac162021-03-05 10:48:42 +01003873 /***********************************************************/
3874 /* At this point, target names have already been resolved. */
3875 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01003876
Willy Tarreau4cdac162021-03-05 10:48:42 +01003877 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01003878
Willy Tarreau4cdac162021-03-05 10:48:42 +01003879 list_for_each_entry(newsrv, &servers_list, global_list) {
3880 /* initialize idle conns lists */
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02003881 if (srv_init_per_thr(newsrv) == -1) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003882 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
3883 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01003884 cfgerr++;
3885 continue;
3886 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003887
Willy Tarreau4cdac162021-03-05 10:48:42 +01003888 if (newsrv->max_idle_conns != 0) {
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003889 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
3890 if (!newsrv->curr_idle_thr) {
3891 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3892 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3893 cfgerr++;
3894 continue;
3895 }
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003896
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003897 }
3898 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003899
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003900 idle_conn_task = task_new_anywhere();
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003901 if (!idle_conn_task) {
3902 ha_alert("parsing : failed to allocate global idle connection task.\n");
3903 cfgerr++;
3904 }
3905 else {
3906 idle_conn_task->process = srv_cleanup_idle_conns;
3907 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003908
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003909 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003910 idle_conns[i].cleanup_task = task_new_on(i);
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003911 if (!idle_conns[i].cleanup_task) {
3912 ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i);
3913 cfgerr++;
3914 break;
Willy Tarreau4cdac162021-03-05 10:48:42 +01003915 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003916
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003917 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
3918 idle_conns[i].cleanup_task->context = NULL;
3919 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
3920 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Willy Tarreau835daa12019-02-07 14:46:29 +01003921 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003922 }
3923
Willy Tarreau419ead82014-09-16 13:41:21 +02003924 /* perform the final checks before creating tasks */
3925
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003926 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003927 struct listener *listener;
3928 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003929
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003930 /* Configure SSL for each bind line.
3931 * Note: if configuration fails at some point, the ->ctx member
3932 * remains NULL so that listeners can later detach.
3933 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003934 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003935 if (bind_conf->xprt->prepare_bind_conf &&
3936 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003937 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003938 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003939
Willy Tarreaue6b98942007-10-29 01:09:36 +01003940 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003941 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003942 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003943 if (!listener->luid) {
3944 /* listener ID not set, use automatic numbering with first
3945 * spare entry starting with next_luid.
3946 */
3947 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3948 listener->conf.id.key = listener->luid = next_id;
3949 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003950 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003951 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003952
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003953 /* enable separate counters */
3954 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003955 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003956 if (!listener->name)
3957 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003958 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003959
Willy Tarreaue6b98942007-10-29 01:09:36 +01003960 if (curproxy->options & PR_O_TCP_NOLING)
3961 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003962 if (!listener->maxaccept)
Willy Tarreau66161322021-02-19 15:50:27 +01003963 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau16a21472012-11-19 12:39:59 +01003964
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01003965 /* listener accept callback */
3966 listener->accept = session_accept_fd;
3967#ifdef USE_QUIC
3968 /* override the accept callback for QUIC listeners. */
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01003969 if (listener->flags & LI_F_QUIC_LISTENER) {
Frédéric Lécaille372508c2022-05-06 08:53:16 +02003970 if (!global.cluster_secret)
3971 diag_no_cluster_secret = 1;
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01003972 listener->accept = quic_session_accept;
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01003973 li_init_per_thr(listener);
3974 }
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01003975#endif
Amaury Denoyelle57af0692022-01-18 15:39:02 +01003976
Willy Tarreauc1a21672009-08-16 22:37:44 +02003977 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003978 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003979
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003980 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003981 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003982
Willy Tarreau620408f2016-10-21 16:37:51 +02003983 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3984 listener->options |= LI_O_TCP_L5_RULES;
3985
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003986 /* smart accept mode is automatic in HTTP mode */
3987 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003988 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003989 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3990 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003991 }
3992
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003993 /* Release unused SSL configs */
3994 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003995 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3996 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003997 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003998
Willy Tarreau918ff602011-07-25 16:33:49 +02003999 /* create the task associated with the proxy */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004000 curproxy->task = task_new_anywhere();
Willy Tarreau918ff602011-07-25 16:33:49 +02004001 if (curproxy->task) {
4002 curproxy->task->context = curproxy;
4003 curproxy->task->process = manage_proxy;
Christopher Faulet56717802021-10-13 10:10:09 +02004004 curproxy->flags |= PR_FL_READY;
Willy Tarreau918ff602011-07-25 16:33:49 +02004005 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004006 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
4007 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02004008 cfgerr++;
4009 }
Willy Tarreaub369a042014-09-16 13:21:03 +02004010 }
4011
Frédéric Lécaille372508c2022-05-06 08:53:16 +02004012 if (diag_no_cluster_secret)
4013 ha_diag_warning("No cluster secret was set. The stateless reset feature"
4014 " is disabled for all QUIC bindings.\n");
4015
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004016 /*
4017 * Recount currently required checks.
4018 */
4019
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004020 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004021 int optnum;
4022
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004023 for (optnum = 0; cfg_opts[optnum].name; optnum++)
4024 if (curproxy->options & cfg_opts[optnum].val)
4025 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004026
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004027 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
4028 if (curproxy->options2 & cfg_opts2[optnum].val)
4029 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004030 }
4031
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004032 if (cfg_peers) {
4033 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02004034 struct peer *p, *pb;
4035
Willy Tarreau1e273012015-05-01 19:15:17 +02004036 /* Remove all peers sections which don't have a valid listener,
4037 * which are not used by any table, or which are bound to more
4038 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02004039 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004040 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02004041 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004042 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02004043 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004044
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02004045 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004046 /* the "disabled" keyword was present */
4047 if (curpeers->peers_fe)
4048 stop_proxy(curpeers->peers_fe);
4049 curpeers->peers_fe = NULL;
4050 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02004051 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004052 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
4053 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004054 if (curpeers->peers_fe)
4055 stop_proxy(curpeers->peers_fe);
4056 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004057 }
4058 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004059 /* Initializes the transport layer of the server part of all the peers belonging to
4060 * <curpeers> section if required.
4061 * Note that ->srv is used by the local peer of a new process to connect to the local peer
4062 * of an old process.
4063 */
Christopher Faulet56717802021-10-13 10:10:09 +02004064 curpeers->peers_fe->flags |= PR_FL_READY;
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004065 p = curpeers->remote;
4066 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004067 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004068 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 +01004069 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
4070 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004071 p = p->next;
4072 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004073 /* Configure the SSL bindings of the local peer if required. */
4074 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
4075 struct list *l;
4076 struct bind_conf *bind_conf;
4077
4078 l = &curpeers->peers_fe->conf.bind;
4079 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
4080 if (bind_conf->xprt->prepare_bind_conf &&
4081 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4082 cfgerr++;
4083 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004084 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004085 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4086 curpeers->id);
4087 cfgerr++;
4088 break;
4089 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004090 last = &curpeers->next;
4091 continue;
4092 }
4093
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004094 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004095 p = curpeers->remote;
4096 while (p) {
4097 pb = p->next;
4098 free(p->id);
4099 free(p);
4100 p = pb;
4101 }
4102
4103 /* Destroy and unlink this curpeers section.
4104 * Note: curpeers is backed up into *last.
4105 */
4106 free(curpeers->id);
4107 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004108 /* Reset any refereance to this peers section in the list of stick-tables */
4109 for (t = stktables_list; t; t = t->next) {
4110 if (t->peers.p && t->peers.p == *last)
4111 t->peers.p = NULL;
4112 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004113 free(*last);
4114 *last = curpeers;
4115 }
4116 }
4117
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004118 for (t = stktables_list; t; t = t->next) {
4119 if (t->proxy)
4120 continue;
4121 if (!stktable_init(t)) {
4122 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4123 cfgerr++;
4124 }
4125 }
4126
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004127 /* initialize stick-tables on backend capable proxies. This must not
4128 * be done earlier because the data size may be discovered while parsing
4129 * other proxies.
4130 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004131 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004132 if ((curproxy->flags & PR_FL_DISABLED) || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004133 continue;
4134
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004135 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004136 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004137 cfgerr++;
4138 }
4139 }
4140
Simon Horman0d16a402015-01-30 11:22:58 +09004141 if (mailers) {
4142 struct mailers *curmailers = mailers, **last;
4143 struct mailer *m, *mb;
4144
4145 /* Remove all mailers sections which don't have a valid listener.
4146 * This can happen when a mailers section is never referenced.
4147 */
4148 last = &mailers;
4149 while (*last) {
4150 curmailers = *last;
4151 if (curmailers->users) {
4152 last = &curmailers->next;
4153 continue;
4154 }
4155
Christopher Faulet767a84b2017-11-24 16:50:31 +01004156 ha_warning("Removing incomplete section 'mailers %s'.\n",
4157 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004158
4159 m = curmailers->mailer_list;
4160 while (m) {
4161 mb = m->next;
4162 free(m->id);
4163 free(m);
4164 m = mb;
4165 }
4166
4167 /* Destroy and unlink this curmailers section.
4168 * Note: curmailers is backed up into *last.
4169 */
4170 free(curmailers->id);
4171 curmailers = curmailers->next;
4172 free(*last);
4173 *last = curmailers;
4174 }
4175 }
4176
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004177 /* Update server_state_file_name to backend name if backend is supposed to use
4178 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004179 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004180 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4181 curproxy->server_state_file_name == NULL)
4182 curproxy->server_state_file_name = strdup(curproxy->id);
4183 }
4184
Emeric Brun750fe792020-12-23 16:51:12 +01004185 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06004186 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004187 ha_warning("resolvers '%s' [%s:%d] has no nameservers configured!\n",
Ben Draut054fbee2018-04-13 15:43:04 -06004188 curr_resolvers->id, curr_resolvers->conf.file,
4189 curr_resolvers->conf.line);
4190 err_code |= ERR_WARN;
4191 }
4192 }
4193
William Lallemand48b4bb42017-10-23 14:36:34 +02004194 list_for_each_entry(postparser, &postparsers, list) {
4195 if (postparser->func)
4196 cfgerr += postparser->func();
4197 }
4198
Willy Tarreaubb925012009-07-23 13:36:36 +02004199 if (cfgerr > 0)
4200 err_code |= ERR_ALERT | ERR_FATAL;
4201 out:
4202 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004203}
4204
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004205/*
4206 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4207 * parsing sessions.
4208 */
4209void cfg_register_keywords(struct cfg_kw_list *kwl)
4210{
Willy Tarreau2b718102021-04-21 07:32:39 +02004211 LIST_APPEND(&cfg_keywords.list, &kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004212}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004213
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004214/*
4215 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4216 */
4217void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4218{
Willy Tarreau2b718102021-04-21 07:32:39 +02004219 LIST_DELETE(&kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004220 LIST_INIT(&kwl->list);
4221}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004222
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004223/* this function register new section in the haproxy configuration file.
4224 * <section_name> is the name of this new section and <section_parser>
4225 * is the called parser. If two section declaration have the same name,
4226 * only the first declared is used.
4227 */
4228int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004229 int (*section_parser)(const char *, int, char **, int),
4230 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004231{
4232 struct cfg_section *cs;
4233
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004234 list_for_each_entry(cs, &sections, list) {
4235 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004236 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004237 return 0;
4238 }
4239 }
4240
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004241 cs = calloc(1, sizeof(*cs));
4242 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004243 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004244 return 0;
4245 }
4246
4247 cs->section_name = section_name;
4248 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004249 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004250
Willy Tarreau2b718102021-04-21 07:32:39 +02004251 LIST_APPEND(&sections, &cs->list);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004252
4253 return 1;
4254}
4255
William Lallemand48b4bb42017-10-23 14:36:34 +02004256/* this function register a new function which will be called once the haproxy
4257 * configuration file has been parsed. It's useful to check dependencies
4258 * between sections or to resolve items once everything is parsed.
4259 */
4260int cfg_register_postparser(char *name, int (*func)())
4261{
4262 struct cfg_postparser *cp;
4263
4264 cp = calloc(1, sizeof(*cp));
4265 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004266 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004267 return 0;
4268 }
4269 cp->name = name;
4270 cp->func = func;
4271
Willy Tarreau2b718102021-04-21 07:32:39 +02004272 LIST_APPEND(&postparsers, &cp->list);
William Lallemand48b4bb42017-10-23 14:36:34 +02004273
4274 return 1;
4275}
4276
Willy Tarreaubaaee002006-06-26 02:48:02 +02004277/*
David Carlier845efb52015-09-25 11:49:18 +01004278 * free all config section entries
4279 */
4280void cfg_unregister_sections(void)
4281{
4282 struct cfg_section *cs, *ics;
4283
4284 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004285 LIST_DELETE(&cs->list);
David Carlier845efb52015-09-25 11:49:18 +01004286 free(cs);
4287 }
4288}
4289
Christopher Faulet7110b402016-10-26 11:09:44 +02004290void cfg_backup_sections(struct list *backup_sections)
4291{
4292 struct cfg_section *cs, *ics;
4293
4294 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004295 LIST_DELETE(&cs->list);
4296 LIST_APPEND(backup_sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004297 }
4298}
4299
4300void cfg_restore_sections(struct list *backup_sections)
4301{
4302 struct cfg_section *cs, *ics;
4303
4304 list_for_each_entry_safe(cs, ics, backup_sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004305 LIST_DELETE(&cs->list);
4306 LIST_APPEND(&sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004307 }
4308}
4309
Willy Tarreauca1acd62022-03-29 15:02:44 +02004310/* dumps all registered keywords by section on stdout */
4311void cfg_dump_registered_keywords()
4312{
4313 const char* sect_names[] = { "", "global", "listen", "userlist", "peers", 0 };
4314 int section;
4315 int index;
4316
4317 for (section = 1; sect_names[section]; section++) {
4318 struct cfg_kw_list *kwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004319 const struct cfg_keyword *kwp, *kwn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004320
4321 printf("%s\n", sect_names[section]);
Willy Tarreaud9058262022-03-30 11:21:32 +02004322
4323 for (kwn = kwp = NULL;; kwp = kwn) {
4324 list_for_each_entry(kwl, &cfg_keywords.list, list) {
4325 for (index = 0; kwl->kw[index].kw != NULL; index++)
4326 if (kwl->kw[index].section == section &&
4327 strordered(kwp ? kwp->kw : NULL, kwl->kw[index].kw, kwn != kwp ? kwn->kw : NULL))
4328 kwn = &kwl->kw[index];
4329 }
4330 if (kwn == kwp)
4331 break;
4332 printf("\t%s\n", kwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004333 }
4334
4335 if (section == CFG_LISTEN) {
4336 /* there are plenty of other keywords there */
4337 extern struct list tcp_req_conn_keywords, tcp_req_sess_keywords,
4338 tcp_req_cont_keywords, tcp_res_cont_keywords;
4339 extern struct bind_kw_list bind_keywords;
4340 extern struct ssl_bind_kw ssl_bind_kws[] __maybe_unused;
4341 extern struct srv_kw_list srv_keywords;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004342 struct bind_kw_list *bkwl;
4343 struct srv_kw_list *skwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004344 const struct bind_kw *bkwp, *bkwn;
4345 const struct srv_kw *skwp, *skwn;
4346 const struct ssl_bind_kw *sbkwp __maybe_unused, *sbkwn __maybe_unused;
4347 const struct cfg_opt *coptp, *coptn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004348
Willy Tarreaud9058262022-03-30 11:21:32 +02004349 for (bkwn = bkwp = NULL;; bkwp = bkwn) {
4350 list_for_each_entry(bkwl, &bind_keywords.list, list) {
4351 for (index = 0; bkwl->kw[index].kw != NULL; index++)
4352 if (strordered(bkwp ? bkwp->kw : NULL,
4353 bkwl->kw[index].kw,
4354 bkwn != bkwp ? bkwn->kw : NULL))
4355 bkwn = &bkwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004356 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004357 if (bkwn == bkwp)
4358 break;
4359
4360 if (!bkwn->skip)
4361 printf("\tbind <addr> %s\n", bkwn->kw);
4362 else
4363 printf("\tbind <addr> %s +%d\n", bkwn->kw, bkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004364 }
4365
4366#if defined(USE_OPENSSL)
Willy Tarreaud9058262022-03-30 11:21:32 +02004367 for (sbkwn = sbkwp = NULL;; sbkwp = sbkwn) {
4368 for (index = 0; ssl_bind_kws[index].kw != NULL; index++) {
4369 if (strordered(sbkwp ? sbkwp->kw : NULL,
4370 ssl_bind_kws[index].kw,
4371 sbkwn != sbkwp ? sbkwn->kw : NULL))
4372 sbkwn = &ssl_bind_kws[index];
4373 }
4374 if (sbkwn == sbkwp)
4375 break;
4376 if (!sbkwn->skip)
4377 printf("\tbind <addr> ssl %s\n", sbkwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004378 else
Willy Tarreaud9058262022-03-30 11:21:32 +02004379 printf("\tbind <addr> ssl %s +%d\n", sbkwn->kw, sbkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004380 }
4381#endif
4382
Willy Tarreaud9058262022-03-30 11:21:32 +02004383 for (skwn = skwp = NULL;; skwp = skwn) {
4384 list_for_each_entry(skwl, &srv_keywords.list, list) {
4385 for (index = 0; skwl->kw[index].kw != NULL; index++)
4386 if (strordered(skwp ? skwp->kw : NULL,
4387 skwl->kw[index].kw,
4388 skwn != skwp ? skwn->kw : NULL))
4389 skwn = &skwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004390 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004391 if (skwn == skwp)
4392 break;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004393
Willy Tarreaud9058262022-03-30 11:21:32 +02004394 if (!skwn->skip)
4395 printf("\tserver <name> <addr> %s\n", skwn->kw);
4396 else
4397 printf("\tserver <name> <addr> %s +%d\n", skwn->kw, skwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004398 }
4399
Willy Tarreaud9058262022-03-30 11:21:32 +02004400 for (coptn = coptp = NULL;; coptp = coptn) {
4401 for (index = 0; cfg_opts[index].name; index++)
4402 if (strordered(coptp ? coptp->name : NULL,
4403 cfg_opts[index].name,
4404 coptn != coptp ? coptn->name : NULL))
4405 coptn = &cfg_opts[index];
4406
4407 for (index = 0; cfg_opts2[index].name; index++)
4408 if (strordered(coptp ? coptp->name : NULL,
4409 cfg_opts2[index].name,
4410 coptn != coptp ? coptn->name : NULL))
4411 coptn = &cfg_opts2[index];
4412 if (coptn == coptp)
4413 break;
4414
4415 printf("\toption %s [ ", coptn->name);
4416 if (coptn->cap & PR_CAP_FE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004417 printf("FE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004418 if (coptn->cap & PR_CAP_BE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004419 printf("BE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004420 if (coptn->mode == PR_MODE_HTTP)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004421 printf("HTTP ");
4422 printf("]\n");
4423 }
4424
Willy Tarreaud9058262022-03-30 11:21:32 +02004425 dump_act_rules(&tcp_req_conn_keywords, "\ttcp-request connection ");
4426 dump_act_rules(&tcp_req_sess_keywords, "\ttcp-request session ");
4427 dump_act_rules(&tcp_req_cont_keywords, "\ttcp-request content ");
4428 dump_act_rules(&tcp_res_cont_keywords, "\ttcp-response content ");
4429 dump_act_rules(&http_req_keywords.list, "\thttp-request ");
4430 dump_act_rules(&http_res_keywords.list, "\thttp-response ");
4431 dump_act_rules(&http_after_res_keywords.list, "\thttp-after-response ");
Willy Tarreauca1acd62022-03-29 15:02:44 +02004432 }
4433 }
4434}
4435
Willy Tarreaue6552512018-11-26 11:33:13 +01004436/* these are the config sections handled by default */
4437REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4438REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4439REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4440REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4441REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4442REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4443REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4444REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4445REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004446
Willy Tarreau8a022d52021-04-27 20:29:11 +02004447static struct cfg_kw_list cfg_kws = {{ },{
4448 { CFG_GLOBAL, "default-path", cfg_parse_global_def_path },
4449 { /* END */ }
4450}};
4451
4452INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4453
David Carlier845efb52015-09-25 11:49:18 +01004454/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004455 * Local variables:
4456 * c-indent-level: 8
4457 * c-basic-offset: 8
4458 * End:
4459 */