blob: 48d588436fa0e4c74731a5d4fdea045ff34d69d1 [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++;
653 p->next = peers->remote;
654 peers->remote = p;
655 p->conf.file = strdup(file);
656 p->conf.line = linenum;
657 p->last_change = now.tv_sec;
658 p->xprt = xprt_get(XPRT_RAW);
659 p->sock_init_arg = NULL;
660 HA_SPIN_INIT(&p->lock);
661 if (id)
662 p->id = strdup(id);
663 if (local) {
664 p->local = 1;
665 peers->local = p;
666 }
667
668 return p;
669}
670
Willy Tarreaubaaee002006-06-26 02:48:02 +0200671/*
William Lallemand51097192015-04-14 16:35:22 +0200672 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200673 * Returns the error code, 0 if OK, or any combination of :
674 * - ERR_ABORT: must abort ASAP
675 * - ERR_FATAL: we can continue parsing but not start the service
676 * - ERR_WARN: a warning has been emitted
677 * - ERR_ALERT: an alert has been emitted
678 * Only the two first ones can stop processing, the two others are just
679 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200680 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200681int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
682{
683 static struct peers *curpeers = NULL;
684 struct peer *newpeer = NULL;
685 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200686 struct bind_conf *bind_conf;
687 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200688 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100689 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100690 static int bind_line, peer_line;
691
692 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
693 int cur_arg;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100694 struct bind_conf *bind_conf;
695 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200696
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100697 cur_arg = 1;
698
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200699 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
700 err_code |= ERR_ALERT | ERR_ABORT;
701 goto out;
702 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100703
704 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
705 NULL, xprt_get(XPRT_RAW));
706 if (*args[0] == 'b') {
707 struct listener *l;
708
709 if (peer_line) {
710 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
711 err_code |= ERR_ALERT | ERR_FATAL;
712 goto out;
713 }
714
715 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
716 if (errmsg && *errmsg) {
717 indent_msg(&errmsg, 2);
718 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
719 }
720 else
721 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
722 file, linenum, args[0], args[1], args[2]);
723 err_code |= ERR_FATAL;
724 goto out;
725 }
726 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
727 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100728 l->accept = session_accept_fd;
729 l->analysers |= curpeers->peers_fe->fe_req_ana;
730 l->default_target = curpeers->peers_fe->default_target;
731 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100732 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100733
734 bind_line = 1;
735 if (cfg_peers->local) {
736 newpeer = cfg_peers->local;
737 }
738 else {
739 /* This peer is local.
740 * Note that we do not set the peer ID. This latter is initialized
741 * when parsing "peer" or "server" line.
742 */
743 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
744 if (!newpeer) {
745 err_code |= ERR_ALERT | ERR_ABORT;
746 goto out;
747 }
748 }
Willy Tarreau37159062020-08-27 07:48:42 +0200749 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200750 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100751 cur_arg++;
752 }
753
754 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
755 int ret;
756
757 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
758 err_code |= ret;
759 if (ret) {
760 if (errmsg && *errmsg) {
761 indent_msg(&errmsg, 2);
762 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
763 }
764 else
765 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
766 file, linenum, args[cur_arg]);
767 if (ret & ERR_FATAL)
768 goto out;
769 }
770 cur_arg += 1 + kw->skip;
771 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100772 if (*args[cur_arg] != 0) {
Willy Tarreau433b05f2021-03-12 10:14:07 +0100773 const char *best = bind_find_best_kw(args[cur_arg]);
774 if (best)
775 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section; did you mean '%s' maybe ?\n",
776 file, linenum, args[cur_arg], cursection, best);
777 else
778 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.\n",
779 file, linenum, args[cur_arg], cursection);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100780 err_code |= ERR_ALERT | ERR_FATAL;
781 goto out;
782 }
783 }
784 else if (strcmp(args[0], "default-server") == 0) {
785 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
786 err_code |= ERR_ALERT | ERR_ABORT;
787 goto out;
788 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100789 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
790 SRV_PARSE_DEFAULT_SERVER|SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200791 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100792 else if (strcmp(args[0], "log") == 0) {
793 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
794 err_code |= ERR_ALERT | ERR_ABORT;
795 goto out;
796 }
Emeric Brun9533a702021-04-02 10:13:43 +0200797 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), file, linenum, &errmsg)) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100798 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
799 err_code |= ERR_ALERT | ERR_FATAL;
800 goto out;
801 }
802 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200803 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100804 /* Initialize these static variables when entering a new "peers" section*/
805 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100806 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100807 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100808 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100809 goto out;
810 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200811
William Lallemand6e62fb62015-04-28 16:55:23 +0200812 if (alertif_too_many_args(1, file, linenum, args, &err_code))
813 goto out;
814
Emeric Brun32da3c42010-09-23 18:39:19 +0200815 err = invalid_char(args[1]);
816 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100817 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
818 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100819 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100820 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200821 }
822
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200823 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200824 /*
825 * If there are two proxies with the same name only following
826 * combinations are allowed:
827 */
828 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100829 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
830 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200831 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200832 }
833 }
834
Vincent Bernat02779b62016-04-03 13:48:43 +0200835 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100836 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200837 err_code |= ERR_ALERT | ERR_ABORT;
838 goto out;
839 }
840
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200841 curpeers->next = cfg_peers;
842 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200843 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200844 curpeers->conf.line = linenum;
845 curpeers->last_change = now.tv_sec;
846 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200847 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200848 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200849 else if (strcmp(args[0], "peer") == 0 ||
850 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100851 int local_peer, peer;
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100852 int parse_addr = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200853
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100854 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100855 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100856 /* The local peer may have already partially been parsed on a "bind" line. */
857 if (*args[0] == 'p') {
858 if (bind_line) {
859 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
860 err_code |= ERR_ALERT | ERR_FATAL;
861 goto out;
862 }
863 peer_line = 1;
864 }
865 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
866 /* The local peer has already been initialized on a "bind" line.
867 * Let's use it and store its ID.
868 */
869 newpeer = cfg_peers->local;
870 newpeer->id = strdup(localpeer);
871 }
872 else {
873 if (local_peer && cfg_peers->local) {
874 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
875 file, linenum, args[0], args[1],
876 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
877 err_code |= ERR_FATAL;
878 goto out;
879 }
880 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
881 if (!newpeer) {
882 err_code |= ERR_ALERT | ERR_ABORT;
883 goto out;
884 }
885 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200886
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100887 /* Line number and peer ID are updated only if this peer is the local one. */
888 if (init_peers_frontend(file,
889 newpeer->local ? linenum: -1,
890 newpeer->local ? newpeer->id : NULL,
891 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200892 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100893 goto out;
894 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100895
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100896 /* This initializes curpeer->peers->peers_fe->srv.
897 * The server address is parsed only if we are parsing a "peer" line,
898 * or if we are parsing a "server" line and the current peer is not the local one.
899 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100900 parse_addr = (peer || !local_peer) ? SRV_PARSE_PARSE_ADDR : 0;
901 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
902 SRV_PARSE_IN_PEER_SECTION|parse_addr|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200903 if (!curpeers->peers_fe->srv) {
904 /* Remove the newly allocated peer. */
905 if (newpeer != curpeers->local) {
906 struct peer *p;
907
908 p = curpeers->remote;
909 curpeers->remote = curpeers->remote->next;
910 free(p->id);
911 free(p);
912 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200913 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200914 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200915
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100916 /* If the peer address has just been parsed, let's copy it to <newpeer>
917 * and initializes ->proto.
918 */
919 if (peer || !local_peer) {
920 newpeer->addr = curpeers->peers_fe->srv->addr;
Willy Tarreau14e7f292021-10-27 17:41:07 +0200921 newpeer->proto = protocol_lookup(newpeer->addr.ss_family, PROTO_TYPE_STREAM, 0);
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100922 }
923
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100924 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200925 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100926 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200927
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100928 newpeer->srv = curpeers->peers_fe->srv;
929 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200930 goto out;
931
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100932 /* The lines above are reserved to "peer" lines. */
933 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200934 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200935
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100936 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 +0100937
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100938 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
939 if (errmsg && *errmsg) {
940 indent_msg(&errmsg, 2);
941 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 +0100942 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100943 else
944 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
945 file, linenum, args[0], args[1], args[2]);
946 err_code |= ERR_FATAL;
947 goto out;
948 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100949
950 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
951 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100952 l->accept = session_accept_fd;
953 l->analysers |= curpeers->peers_fe->fe_req_ana;
954 l->default_target = curpeers->peers_fe->default_target;
955 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100956 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100957 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100958 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100959 struct stktable *t, *other;
960 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100961 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100962
963 /* Line number and peer ID are updated only if this peer is the local one. */
964 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
965 err_code |= ERR_ALERT | ERR_ABORT;
966 goto out;
967 }
968
969 other = stktable_find_by_name(args[1]);
970 if (other) {
971 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
972 file, linenum, args[1],
973 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
974 other->proxy ? other->id : other->peers.p->id,
975 other->conf.file, other->conf.line);
976 err_code |= ERR_ALERT | ERR_FATAL;
977 goto out;
978 }
979
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100980 /* Build the stick-table name, concatenating the "peers" section name
981 * followed by a '/' character and the table name argument.
982 */
983 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100984 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100985 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
986 file, linenum, args[0], args[1]);
987 err_code |= ERR_ALERT | ERR_FATAL;
988 goto out;
989 }
990
991 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100992 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100993 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
994 file, linenum, args[0], args[1]);
995 err_code |= ERR_ALERT | ERR_FATAL;
996 goto out;
997 }
998
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100999 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001000 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001001 if (!t || !id) {
1002 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
1003 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +02001004 free(t);
1005 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001006 err_code |= ERR_ALERT | ERR_FATAL;
1007 goto out;
1008 }
1009
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001010 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +02001011 if (err_code & ERR_FATAL) {
1012 free(t);
1013 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001014 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +02001015 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001016
1017 stktable_store_name(t);
1018 t->next = stktables_list;
1019 stktables_list = t;
1020 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001021 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001022 curpeers->disabled |= PR_FL_DISABLED;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001023 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001024 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02001025 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001026 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001027 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001028 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +02001029 err_code |= ERR_ALERT | ERR_FATAL;
1030 goto out;
1031 }
1032
1033out:
Willy Tarreau902636f2013-03-10 19:44:48 +01001034 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +02001035 return err_code;
1036}
1037
Baptiste Assmann325137d2015-04-13 23:40:55 +02001038/*
William Lallemand51097192015-04-14 16:35:22 +02001039 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001040 * Returns the error code, 0 if OK, or any combination of :
1041 * - ERR_ABORT: must abort ASAP
1042 * - ERR_FATAL: we can continue parsing but not start the service
1043 * - ERR_WARN: a warning has been emitted
1044 * - ERR_ALERT: an alert has been emitted
1045 * Only the two first ones can stop processing, the two others are just
1046 * indicators.
1047 */
1048int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1049{
1050 static struct mailers *curmailers = NULL;
1051 struct mailer *newmailer = NULL;
1052 const char *err;
1053 int err_code = 0;
1054 char *errmsg = NULL;
1055
1056 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1057 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001058 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001059 err_code |= ERR_ALERT | ERR_ABORT;
1060 goto out;
1061 }
1062
1063 err = invalid_char(args[1]);
1064 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001065 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1066 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001067 err_code |= ERR_ALERT | ERR_ABORT;
1068 goto out;
1069 }
1070
1071 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1072 /*
1073 * If there are two proxies with the same name only following
1074 * combinations are allowed:
1075 */
1076 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001077 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1078 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001079 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001080 }
1081 }
1082
Vincent Bernat02779b62016-04-03 13:48:43 +02001083 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001084 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001085 err_code |= ERR_ALERT | ERR_ABORT;
1086 goto out;
1087 }
1088
1089 curmailers->next = mailers;
1090 mailers = curmailers;
1091 curmailers->conf.file = strdup(file);
1092 curmailers->conf.line = linenum;
1093 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001094 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1095 * But need enough time so that timeouts don't occur
1096 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001097 }
1098 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1099 struct sockaddr_storage *sk;
1100 int port1, port2;
1101 struct protocol *proto;
1102
1103 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001104 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1105 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001106 err_code |= ERR_ALERT | ERR_FATAL;
1107 goto out;
1108 }
1109
1110 err = invalid_char(args[1]);
1111 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001112 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1113 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001114 err_code |= ERR_ALERT | ERR_FATAL;
1115 goto out;
1116 }
1117
Vincent Bernat02779b62016-04-03 13:48:43 +02001118 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001119 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001120 err_code |= ERR_ALERT | ERR_ABORT;
1121 goto out;
1122 }
1123
1124 /* the mailers are linked backwards first */
1125 curmailers->count++;
1126 newmailer->next = curmailers->mailer_list;
1127 curmailers->mailer_list = newmailer;
1128 newmailer->mailers = curmailers;
1129 newmailer->conf.file = strdup(file);
1130 newmailer->conf.line = linenum;
1131
1132 newmailer->id = strdup(args[1]);
1133
Willy Tarreau5fc93282020-09-16 18:25:03 +02001134 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001135 &errmsg, NULL, NULL,
1136 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 +09001137 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001138 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001139 err_code |= ERR_ALERT | ERR_FATAL;
1140 goto out;
1141 }
1142
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001143 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001144 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1145 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001146 err_code |= ERR_ALERT | ERR_FATAL;
1147 goto out;
1148 }
1149
Simon Horman0d16a402015-01-30 11:22:58 +09001150 newmailer->addr = *sk;
1151 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001152 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001153 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001154 }
1155 else if (strcmp(args[0], "timeout") == 0) {
1156 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001157 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1158 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001159 err_code |= ERR_ALERT | ERR_FATAL;
1160 goto out;
1161 }
1162 else if (strcmp(args[1], "mail") == 0) {
1163 const char *res;
1164 unsigned int timeout_mail;
1165 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001166 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1167 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001168 err_code |= ERR_ALERT | ERR_FATAL;
1169 goto out;
1170 }
1171 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001172 if (res == PARSE_TIME_OVER) {
1173 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1174 file, linenum, args[2], args[0], args[1]);
1175 err_code |= ERR_ALERT | ERR_FATAL;
1176 goto out;
1177 }
1178 else if (res == PARSE_TIME_UNDER) {
1179 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1180 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001181 err_code |= ERR_ALERT | ERR_FATAL;
1182 goto out;
1183 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001184 else if (res) {
1185 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1186 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001187 err_code |= ERR_ALERT | ERR_FATAL;
1188 goto out;
1189 }
1190 curmailers->timeout.mail = timeout_mail;
1191 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001192 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001193 file, linenum, args[0], args[1]);
1194 err_code |= ERR_ALERT | ERR_FATAL;
1195 goto out;
1196 }
1197 }
Simon Horman0d16a402015-01-30 11:22:58 +09001198 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001199 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001200 err_code |= ERR_ALERT | ERR_FATAL;
1201 goto out;
1202 }
1203
1204out:
1205 free(errmsg);
1206 return err_code;
1207}
1208
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001209void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001210{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001211 ha_free(&p->email_alert.mailers.name);
1212 ha_free(&p->email_alert.from);
1213 ha_free(&p->email_alert.to);
1214 ha_free(&p->email_alert.myhostname);
Simon Horman9dc49962015-01-30 11:22:59 +09001215}
1216
Willy Tarreaubaaee002006-06-26 02:48:02 +02001217
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001218int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001219cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1220{
Willy Tarreaue5733232019-05-22 19:24:06 +02001221#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001222 const char *err;
1223 const char *item = args[0];
1224
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001225 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001226 return 0;
1227 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001228 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001229 size_t idx = 1;
1230 const char *current;
1231 while (*(current = args[idx++])) {
1232 err = invalid_char(current);
1233 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001234 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1235 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001236 return ERR_ALERT | ERR_FATAL;
1237 }
1238
1239 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001240 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1241 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001242 return ERR_ALERT | ERR_FATAL;
1243 }
1244 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001245 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1246 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001247 return ERR_ALERT | ERR_FATAL;
1248 }
1249 }
1250 }
1251
1252 return 0;
1253#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001254 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1255 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001256 return ERR_ALERT | ERR_FATAL;
1257#endif
1258}
1259
1260int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001261cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1262{
1263
1264 int err_code = 0;
1265 const char *err;
1266
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001267 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001268 struct userlist *newul;
1269
1270 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001271 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1272 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001273 err_code |= ERR_ALERT | ERR_FATAL;
1274 goto out;
1275 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001276 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1277 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001278
1279 err = invalid_char(args[1]);
1280 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001281 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1282 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001283 err_code |= ERR_ALERT | ERR_FATAL;
1284 goto out;
1285 }
1286
1287 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001288 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001289 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1290 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001291 err_code |= ERR_WARN;
1292 goto out;
1293 }
1294
Vincent Bernat02779b62016-04-03 13:48:43 +02001295 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001296 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001297 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001298 err_code |= ERR_ALERT | ERR_ABORT;
1299 goto out;
1300 }
1301
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001302 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001303 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001304 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001305 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001306 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001307 goto out;
1308 }
1309
1310 newul->next = userlist;
1311 userlist = newul;
1312
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001313 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001314 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001315 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001316 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001317
1318 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001319 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1320 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001321 err_code |= ERR_ALERT | ERR_FATAL;
1322 goto out;
1323 }
1324
1325 err = invalid_char(args[1]);
1326 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001327 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1328 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001329 err_code |= ERR_ALERT | ERR_FATAL;
1330 goto out;
1331 }
1332
William Lallemand4ac9f542015-05-28 18:03:51 +02001333 if (!userlist)
1334 goto out;
1335
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001336 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001337 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001338 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1339 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001340 err_code |= ERR_ALERT;
1341 goto out;
1342 }
1343
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001344 ag = calloc(1, sizeof(*ag));
1345 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001346 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001347 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001348 goto out;
1349 }
1350
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001351 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001352 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001353 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001354 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001355 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001356 goto out;
1357 }
1358
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001359 cur_arg = 2;
1360
1361 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001362 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001363 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001364 cur_arg += 2;
1365 continue;
1366 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001367 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1368 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001369 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001370 free(ag->groupusers);
1371 free(ag->name);
1372 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001373 goto out;
1374 }
1375 }
1376
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001377 ag->next = userlist->groups;
1378 userlist->groups = ag;
1379
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001380 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001381 struct auth_users *newuser;
1382 int cur_arg;
1383
1384 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001385 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1386 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001387 err_code |= ERR_ALERT | ERR_FATAL;
1388 goto out;
1389 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001390 if (!userlist)
1391 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001392
1393 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001394 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001395 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1396 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001397 err_code |= ERR_ALERT;
1398 goto out;
1399 }
1400
Vincent Bernat02779b62016-04-03 13:48:43 +02001401 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001402 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001403 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001404 err_code |= ERR_ALERT | ERR_ABORT;
1405 goto out;
1406 }
1407
1408 newuser->user = strdup(args[1]);
1409
1410 newuser->next = userlist->users;
1411 userlist->users = newuser;
1412
1413 cur_arg = 2;
1414
1415 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001416 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001417#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001418 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001419 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1420 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001421 err_code |= ERR_ALERT | ERR_FATAL;
1422 goto out;
1423 }
1424#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001425 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1426 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001427 err_code |= ERR_ALERT;
1428#endif
1429 newuser->pass = strdup(args[cur_arg + 1]);
1430 cur_arg += 2;
1431 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001432 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001433 newuser->pass = strdup(args[cur_arg + 1]);
1434 newuser->flags |= AU_O_INSECURE;
1435 cur_arg += 2;
1436 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001437 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001438 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001439 cur_arg += 2;
1440 continue;
1441 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001442 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1443 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001444 err_code |= ERR_ALERT | ERR_FATAL;
1445 goto out;
1446 }
1447 }
1448 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001449 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 +01001450 err_code |= ERR_ALERT | ERR_FATAL;
1451 }
1452
1453out:
1454 return err_code;
1455}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001456
Christopher Faulet79bdef32016-11-04 22:36:15 +01001457int
1458cfg_parse_scope(const char *file, int linenum, char *line)
1459{
1460 char *beg, *end, *scope = NULL;
1461 int err_code = 0;
1462 const char *err;
1463
1464 beg = line + 1;
1465 end = strchr(beg, ']');
1466
1467 /* Detect end of scope declaration */
1468 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001469 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1470 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001471 err_code |= ERR_ALERT | ERR_FATAL;
1472 goto out;
1473 }
1474
1475 /* Get scope name and check its validity */
1476 scope = my_strndup(beg, end-beg);
1477 err = invalid_char(scope);
1478 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001479 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1480 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001481 err_code |= ERR_ALERT | ERR_ABORT;
1482 goto out;
1483 }
1484
1485 /* Be sure to have a scope declaration alone on its line */
1486 line = end+1;
1487 while (isspace((unsigned char)*line))
1488 line++;
1489 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001490 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1491 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001492 err_code |= ERR_ALERT | ERR_ABORT;
1493 goto out;
1494 }
1495
1496 /* We have a valid scope declaration, save it */
1497 free(cfg_scope);
1498 cfg_scope = scope;
1499 scope = NULL;
1500
1501 out:
1502 free(scope);
1503 return err_code;
1504}
1505
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001506int
1507cfg_parse_track_sc_num(unsigned int *track_sc_num,
1508 const char *arg, const char *end, char **errmsg)
1509{
1510 const char *p;
1511 unsigned int num;
1512
1513 p = arg;
1514 num = read_uint64(&arg, end);
1515
1516 if (arg != end) {
1517 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1518 return -1;
1519 }
1520
1521 if (num >= MAX_SESS_STKCTR) {
1522 memprintf(errmsg, "%u track-sc number exceeding "
1523 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1524 return -1;
1525 }
1526
1527 *track_sc_num = num;
1528 return 0;
1529}
1530
Willy Tarreaubaaee002006-06-26 02:48:02 +02001531/*
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001532 * Detect a global section after a non-global one and output a diagnostic
1533 * warning.
1534 */
1535static void check_section_position(char *section_name,
1536 const char *file, int linenum,
1537 int *non_global_parsed)
1538{
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02001539 if (strcmp(section_name, "global") == 0) {
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001540 if (*non_global_parsed == 1)
1541 _ha_diag_warning("parsing [%s:%d] : global section detected after a non-global one, the prevalence of their statements is unspecified\n", file, linenum);
1542 }
1543 else if (*non_global_parsed == 0) {
1544 *non_global_parsed = 1;
1545 }
1546}
1547
Willy Tarreau8a022d52021-04-27 20:29:11 +02001548/* apply the current default_path setting for config file <file>, and
1549 * optionally replace the current path to <origin> if not NULL while the
1550 * default-path mode is set to "origin". Errors are returned into an
1551 * allocated string passed to <err> if it's not NULL. Returns 0 on failure
1552 * or non-zero on success.
1553 */
1554static int cfg_apply_default_path(const char *file, const char *origin, char **err)
1555{
1556 const char *beg, *end;
1557
1558 /* make path start at <beg> and end before <end>, and switch it to ""
1559 * if no slash was passed.
1560 */
1561 beg = file;
1562 end = strrchr(beg, '/');
1563 if (!end)
1564 end = beg;
1565
1566 if (!*initial_cwd) {
1567 if (getcwd(initial_cwd, sizeof(initial_cwd)) == NULL) {
1568 if (err)
1569 memprintf(err, "Impossible to retrieve startup directory name: %s", strerror(errno));
1570 return 0;
1571 }
1572 }
1573 else if (chdir(initial_cwd) == -1) {
1574 if (err)
1575 memprintf(err, "Impossible to get back to initial directory '%s': %s", initial_cwd, strerror(errno));
1576 return 0;
1577 }
1578
1579 /* OK now we're (back) to initial_cwd */
1580
1581 switch (default_path_mode) {
1582 case DEFAULT_PATH_CURRENT:
1583 /* current_cwd never set, nothing to do */
1584 return 1;
1585
1586 case DEFAULT_PATH_ORIGIN:
1587 /* current_cwd set in the config */
1588 if (origin &&
1589 snprintf(current_cwd, sizeof(current_cwd), "%s", origin) > sizeof(current_cwd)) {
1590 if (err)
1591 memprintf(err, "Absolute path too long: '%s'", origin);
1592 return 0;
1593 }
1594 break;
1595
1596 case DEFAULT_PATH_CONFIG:
1597 if (end - beg >= sizeof(current_cwd)) {
1598 if (err)
1599 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1600 return 0;
1601 }
1602 memcpy(current_cwd, beg, end - beg);
1603 current_cwd[end - beg] = 0;
1604 break;
1605
1606 case DEFAULT_PATH_PARENT:
1607 if (end - beg + 3 >= sizeof(current_cwd)) {
1608 if (err)
1609 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1610 return 0;
1611 }
1612 memcpy(current_cwd, beg, end - beg);
1613 if (end > beg)
1614 memcpy(current_cwd + (end - beg), "/..\0", 4);
1615 else
1616 memcpy(current_cwd + (end - beg), "..\0", 3);
1617 break;
1618 }
1619
1620 if (*current_cwd && chdir(current_cwd) == -1) {
1621 if (err)
1622 memprintf(err, "Impossible to get back to directory '%s': %s", initial_cwd, strerror(errno));
1623 return 0;
1624 }
1625
1626 return 1;
1627}
1628
1629/* parses a global "default-path" directive. */
1630static int cfg_parse_global_def_path(char **args, int section_type, struct proxy *curpx,
1631 const struct proxy *defpx, const char *file, int line,
1632 char **err)
1633{
1634 int ret = -1;
1635
1636 /* "current", "config", "parent", "origin <path>" */
1637
1638 if (strcmp(args[1], "current") == 0)
1639 default_path_mode = DEFAULT_PATH_CURRENT;
1640 else if (strcmp(args[1], "config") == 0)
1641 default_path_mode = DEFAULT_PATH_CONFIG;
1642 else if (strcmp(args[1], "parent") == 0)
1643 default_path_mode = DEFAULT_PATH_PARENT;
1644 else if (strcmp(args[1], "origin") == 0)
1645 default_path_mode = DEFAULT_PATH_ORIGIN;
1646 else {
1647 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]);
1648 goto end;
1649 }
1650
1651 if (default_path_mode == DEFAULT_PATH_ORIGIN) {
1652 if (!*args[2]) {
1653 memprintf(err, "'%s %s' expects a directory as an argument.", args[0], args[1]);
1654 goto end;
1655 }
1656 if (!cfg_apply_default_path(file, args[2], err)) {
1657 memprintf(err, "couldn't set '%s' to origin '%s': %s.", args[0], args[2], *err);
1658 goto end;
1659 }
1660 }
1661 else if (!cfg_apply_default_path(file, NULL, err)) {
1662 memprintf(err, "couldn't set '%s' to '%s': %s.", args[0], args[1], *err);
1663 goto end;
1664 }
1665
1666 /* note that once applied, the path is immediately updated */
1667
1668 ret = 0;
1669 end:
1670 return ret;
1671}
1672
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001673/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001674 * This function reads and parses the configuration file given in the argument.
Willy Tarreauda543e12021-04-27 18:30:28 +02001675 * Returns the error code, 0 if OK, -1 if the config file couldn't be opened,
1676 * or any combination of :
Willy Tarreau058e9072009-07-20 09:30:05 +02001677 * - ERR_ABORT: must abort ASAP
1678 * - ERR_FATAL: we can continue parsing but not start the service
1679 * - ERR_WARN: a warning has been emitted
1680 * - ERR_ALERT: an alert has been emitted
1681 * Only the two first ones can stop processing, the two others are just
1682 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001683 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001684int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001685{
Willy Tarreauda543e12021-04-27 18:30:28 +02001686 char *thisline = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001687 int linesize = LINESIZE;
Willy Tarreauda543e12021-04-27 18:30:28 +02001688 FILE *f = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001689 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001690 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001691 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001692 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001693 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001694 char *outline = NULL;
1695 size_t outlen = 0;
1696 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001697 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001698 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001699 int nested_cond_lvl = 0;
1700 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001701 int non_global_section_parsed = 0;
Willy Tarreau8a022d52021-04-27 20:29:11 +02001702 char *errmsg = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001703
Willy Tarreau51508052021-05-06 10:04:45 +02001704 global.cfg_curr_line = 0;
1705 global.cfg_curr_file = file;
1706
William Lallemand64e84512015-05-12 14:25:37 +02001707 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Willy Tarreauda543e12021-04-27 18:30:28 +02001708 ha_alert("Out of memory trying to allocate a buffer for a configuration line.\n");
1709 err_code = -1;
1710 goto err;
William Lallemand64e84512015-05-12 14:25:37 +02001711 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001712
Willy Tarreauda543e12021-04-27 18:30:28 +02001713 if ((f = fopen(file,"r")) == NULL) {
1714 err_code = -1;
1715 goto err;
David Carlier97880bb2016-04-08 10:35:26 +01001716 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001717
Willy Tarreau8a022d52021-04-27 20:29:11 +02001718 /* change to the new dir if required */
1719 if (!cfg_apply_default_path(file, NULL, &errmsg)) {
1720 ha_alert("parsing [%s:%d]: failed to apply default-path: %s.\n", file, linenum, errmsg);
1721 free(errmsg);
1722 err_code = -1;
1723 goto err;
1724 }
1725
William Lallemandb2f07452015-05-12 14:27:13 +02001726next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001727 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001728 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001729 char *end;
1730 char *args[MAX_LINE_ARGS + 1];
1731 char *line = thisline;
1732
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001733 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001734 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1735 file, linenum, (missing_lf + 1));
1736 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001737 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001738 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001739 }
1740
Willy Tarreaubaaee002006-06-26 02:48:02 +02001741 linenum++;
Willy Tarreau51508052021-05-06 10:04:45 +02001742 global.cfg_curr_line = linenum;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001743
Willy Tarreau32234e72020-06-16 17:14:33 +02001744 if (fatal >= 50) {
1745 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1746 break;
1747 }
1748
Willy Tarreaubaaee002006-06-26 02:48:02 +02001749 end = line + strlen(line);
1750
William Lallemand64e84512015-05-12 14:25:37 +02001751 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001752 /* Check if we reached the limit and the last char is not \n.
1753 * Watch out for the last line without the terminating '\n'!
1754 */
William Lallemand64e84512015-05-12 14:25:37 +02001755 char *newline;
1756 int newlinesize = linesize * 2;
1757
1758 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1759 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001760 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1761 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001762 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001763 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001764 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001765 continue;
1766 }
1767
1768 readbytes = linesize - 1;
1769 linesize = newlinesize;
1770 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001771 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001772 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001773 }
1774
William Lallemand64e84512015-05-12 14:25:37 +02001775 readbytes = 0;
1776
Willy Tarreau08488f62020-06-26 17:24:54 +02001777 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001778 /* kill trailing LF */
1779 *(end - 1) = 0;
1780 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001781 else {
1782 /* mark this line as truncated */
1783 missing_lf = end - line;
1784 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001785
Willy Tarreaubaaee002006-06-26 02:48:02 +02001786 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001787 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001788 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001789
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001790 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001791 err_code |= cfg_parse_scope(file, linenum, line);
1792 goto next_line;
1793 }
1794
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001795 while (1) {
1796 uint32_t err;
Maximilian Mader29c6cd72021-06-06 00:50:21 +02001797 const char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001798
Tim Duesterhusb3168b32021-06-06 00:50:20 +02001799 arg = sizeof(args) / sizeof(*args);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001800 outlen = outlinesize;
1801 err = parse_line(line, outline, &outlen, args, &arg,
1802 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001803 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1804 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001805
1806 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001807 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1808
1809 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1810 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001811 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001812 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001813 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001814 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001815
1816 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001817 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1818
1819 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1820 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001821 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001822 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001823 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001824 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001825
1826 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001827 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1828
1829 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1830 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001831 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001832 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001833 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001834 }
William Lallemandb2f07452015-05-12 14:27:13 +02001835
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001836 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001837 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1838
1839 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1840 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001841 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001842 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001843 goto next_line;
1844 }
William Lallemandb2f07452015-05-12 14:27:13 +02001845
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001846 if (err & PARSE_ERR_WRONG_EXPAND) {
1847 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1848
1849 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1850 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1851 err_code |= ERR_ALERT | ERR_FATAL;
1852 fatal++;
1853 goto next_line;
1854 }
1855
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001856 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1857 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001858 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001859 if (outline == NULL) {
1860 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1861 file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001862 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001863 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001864 goto next_line;
William Lallemandb2f07452015-05-12 14:27:13 +02001865 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001866 /* try again */
1867 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001868 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001869
1870 if (err & PARSE_ERR_TOOMANY) {
1871 /* only check this *after* being sure the output is allocated */
1872 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1873 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1874 err_code |= ERR_ALERT | ERR_FATAL;
1875 fatal++;
1876 goto next_line;
1877 }
1878
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001879 /* everything's OK */
1880 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001881 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001882
1883 /* empty line */
1884 if (!**args)
1885 continue;
1886
Willy Tarreau4b103022021-02-12 17:59:10 +01001887 /* check for config macros */
1888 if (*args[0] == '.') {
1889 if (strcmp(args[0], ".if") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001890 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001891 char *errmsg = NULL;
1892 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02001893 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001894
Willy Tarreauc8194c32021-07-16 16:38:58 +02001895 /* remerge all words into a single expression */
1896 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
1897 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001898
Willy Tarreau4b103022021-02-12 17:59:10 +01001899 nested_cond_lvl++;
1900 if (nested_cond_lvl >= MAXNESTEDCONDS) {
1901 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
1902 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1903 goto err;
1904 }
1905
Willy Tarreau6e647c92021-05-06 08:46:11 +02001906 if (nested_cond_lvl > 1 &&
1907 (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
1908 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
1909 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
1910 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
1911 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP)) {
Willy Tarreau4b103022021-02-12 17:59:10 +01001912 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001913 goto next_line;
1914 }
1915
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001916 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001917 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001918 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 76);
1919
1920 ha_alert("parsing [%s:%d]: %s in '.if' at position %d:\n .if %s\n %*s\n",
1921 file, linenum, errmsg,
1922 (int)(errptr-args[1]+1), args[1], (int)(newpos+5), "^");
1923
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001924 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01001925 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1926 goto err;
1927 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001928
1929 if (cond)
1930 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
1931 else
1932 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
1933
Willy Tarreau4b103022021-02-12 17:59:10 +01001934 goto next_line;
1935 }
1936 else if (strcmp(args[0], ".elif") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001937 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001938 char *errmsg = NULL;
1939 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02001940 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001941
Willy Tarreauc8194c32021-07-16 16:38:58 +02001942 /* remerge all words into a single expression */
1943 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
1944 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001945
Willy Tarreau4b103022021-02-12 17:59:10 +01001946 if (!nested_cond_lvl) {
1947 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
1948 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1949 goto err;
1950 }
1951
1952 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
1953 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
1954 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
1955 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1956 goto err;
1957 }
1958
1959 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
1960 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
Willy Tarreauf67ff022021-05-06 08:48:09 +02001961 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
Willy Tarreau4b103022021-02-12 17:59:10 +01001962 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
1963 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001964 goto next_line;
1965 }
1966
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001967 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001968 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001969 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 74);
1970
1971 ha_alert("parsing [%s:%d]: %s in '.elif' at position %d:\n .elif %s\n %*s\n",
1972 file, linenum, errmsg,
1973 (int)(errptr-args[1]+1), args[1], (int)(newpos+7), "^");
1974
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001975 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01001976 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1977 goto err;
1978 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001979
1980 if (cond)
1981 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
1982 else
1983 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
1984
Willy Tarreau4b103022021-02-12 17:59:10 +01001985 goto next_line;
1986 }
1987 else if (strcmp(args[0], ".else") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001988 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05001989 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001990 file, linenum, args[1], args[0]);
1991 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1992 break;
1993 }
1994
Willy Tarreau4b103022021-02-12 17:59:10 +01001995 if (!nested_cond_lvl) {
1996 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
1997 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1998 goto err;
1999 }
2000
2001 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2002 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2003 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
2004 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2005 goto err;
2006 }
2007
2008 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2009 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2010 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
2011 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2012 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
2013 } else {
2014 /* otherwise we take the "else" */
2015 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
2016 }
2017 goto next_line;
2018 }
2019 else if (strcmp(args[0], ".endif") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002020 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002021 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002022 file, linenum, args[1], args[0]);
2023 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2024 break;
2025 }
2026
Willy Tarreau4b103022021-02-12 17:59:10 +01002027 if (!nested_cond_lvl) {
2028 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002029 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau4b103022021-02-12 17:59:10 +01002030 break;
2031 }
2032 nested_cond_lvl--;
2033 goto next_line;
2034 }
2035 }
2036
2037 if (nested_cond_lvl &&
2038 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
2039 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2040 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
2041 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
2042 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
2043 /* The current block is masked out by the conditions */
2044 goto next_line;
2045 }
2046
Willy Tarreau7190b982021-05-07 08:59:50 +02002047 /* .warning/.error/.notice/.diag */
Willy Tarreau4b103022021-02-12 17:59:10 +01002048 if (*args[0] == '.') {
2049 if (strcmp(args[0], ".alert") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002050 if (*args[2]) {
2051 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2052 file, linenum, args[2], args[0]);
2053 err_code |= ERR_ALERT | ERR_FATAL;
2054 goto next_line;
2055 }
2056
Willy Tarreau4b103022021-02-12 17:59:10 +01002057 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2058 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2059 goto err;
2060 }
2061 else if (strcmp(args[0], ".warning") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002062 if (*args[2]) {
2063 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2064 file, linenum, args[2], args[0]);
2065 err_code |= ERR_ALERT | ERR_FATAL;
2066 goto next_line;
2067 }
2068
Willy Tarreau4b103022021-02-12 17:59:10 +01002069 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2070 err_code |= ERR_WARN;
2071 goto next_line;
2072 }
2073 else if (strcmp(args[0], ".notice") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002074 if (*args[2]) {
2075 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2076 file, linenum, args[2], args[0]);
2077 err_code |= ERR_ALERT | ERR_FATAL;
2078 goto next_line;
2079 }
2080
Willy Tarreau4b103022021-02-12 17:59:10 +01002081 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2082 goto next_line;
2083 }
Willy Tarreau7190b982021-05-07 08:59:50 +02002084 else if (strcmp(args[0], ".diag") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002085 if (*args[2]) {
2086 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2087 file, linenum, args[2], args[0]);
2088 err_code |= ERR_ALERT | ERR_FATAL;
2089 goto next_line;
2090 }
2091
Willy Tarreau7190b982021-05-07 08:59:50 +02002092 ha_diag_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2093 goto next_line;
2094 }
Willy Tarreau4b103022021-02-12 17:59:10 +01002095 else {
2096 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
2097 err_code |= ERR_ALERT | ERR_FATAL;
2098 fatal++;
2099 break;
2100 }
2101 }
2102
Willy Tarreau3842f002009-06-14 11:39:52 +02002103 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002104 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02002105 char *tmp;
2106
Willy Tarreau3842f002009-06-14 11:39:52 +02002107 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002108 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002109 for (arg=0; *args[arg+1]; arg++)
2110 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002111 *tmp = '\0'; // fix the next arg to \0
2112 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002113 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002114 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02002115 kwm = KWM_DEF;
2116 for (arg=0; *args[arg+1]; arg++)
2117 args[arg] = args[arg+1]; // shift args after inversion
2118 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002119
William Dauchyec730982019-10-27 20:08:10 +01002120 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2121 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002122 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002123 strcmp(args[0], "insecure-fork-wanted") != 0 &&
2124 strcmp(args[0], "numa-cpu-mapping") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002125 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002126 "supported only for options, log, busy-polling, "
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002127 "set-dumpable, strict-limits, insecure-fork-wanted "
2128 "and numa-cpu-mapping.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002129 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002130 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002131 }
2132
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002133 /* detect section start */
2134 list_for_each_entry(ics, &sections, list) {
2135 if (strcmp(args[0], ics->section_name) == 0) {
2136 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002137 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002138 cs = ics;
Willy Tarreau51508052021-05-06 10:04:45 +02002139 free(global.cfg_curr_section);
2140 global.cfg_curr_section = strdup(*args[1] ? args[1] : args[0]);
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02002141
2142 if (global.mode & MODE_DIAG) {
2143 check_section_position(args[0], file, linenum,
2144 &non_global_section_parsed);
2145 }
2146
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002147 break;
2148 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002149 }
2150
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002151 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002152 int status;
2153
2154 status = pcs->post_section_parser();
2155 err_code |= status;
2156 if (status & ERR_FATAL)
2157 fatal++;
2158
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002159 if (err_code & ERR_ABORT)
2160 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002161 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002162 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002163
William Lallemandd2ff56d2017-10-16 11:06:50 +02002164 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002165 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002166 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002167 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002168 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002169 int status;
2170
2171 status = cs->section_parser(file, linenum, args, kwm);
2172 err_code |= status;
2173 if (status & ERR_FATAL)
2174 fatal++;
2175
William Lallemandd2ff56d2017-10-16 11:06:50 +02002176 if (err_code & ERR_ABORT)
2177 goto err;
2178 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002179 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002180
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002181 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002182 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2183 file, linenum, (missing_lf + 1));
2184 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002185 }
2186
Willy Tarreau51508052021-05-06 10:04:45 +02002187 ha_free(&global.cfg_curr_section);
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002188 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002189 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002190
Willy Tarreau4b103022021-02-12 17:59:10 +01002191 if (nested_cond_lvl) {
2192 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
2193 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2194 }
Willy Tarreau8a022d52021-04-27 20:29:11 +02002195
2196 if (*initial_cwd && chdir(initial_cwd) == -1) {
2197 ha_alert("Impossible to get back to initial directory '%s' : %s\n", initial_cwd, strerror(errno));
2198 err_code |= ERR_ALERT | ERR_FATAL;
2199 }
2200
William Lallemandd2ff56d2017-10-16 11:06:50 +02002201err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002202 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01002203 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002204 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002205 free(outline);
Willy Tarreau51508052021-05-06 10:04:45 +02002206 global.cfg_curr_line = 0;
2207 global.cfg_curr_file = NULL;
2208
Willy Tarreauda543e12021-04-27 18:30:28 +02002209 if (f)
2210 fclose(f);
2211
Willy Tarreau058e9072009-07-20 09:30:05 +02002212 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002213}
2214
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002215#if defined(USE_THREAD) && defined USE_CPU_AFFINITY
2216#if defined(__linux__)
2217
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002218/* filter directory name of the pattern node<X> */
2219static int numa_filter(const struct dirent *dir)
2220{
2221 char *endptr;
2222
2223 /* dir name must start with "node" prefix */
2224 if (strncmp(dir->d_name, "node", 4))
2225 return 0;
2226
2227 /* dir name must be at least 5 characters long */
2228 if (!dir->d_name[4])
2229 return 0;
2230
2231 /* dir name must end with a numeric id */
2232 if (strtol(&dir->d_name[4], &endptr, 10) < 0 || *endptr)
2233 return 0;
2234
2235 /* all tests succeeded */
2236 return 1;
2237}
2238
2239/* Parse a linux cpu map string representing to a numeric cpu mask map
2240 * The cpu map string is a list of 4-byte hex strings separated by commas, with
2241 * most-significant byte first, one bit per cpu number.
2242 */
2243static void parse_cpumap(char *cpumap_str, struct hap_cpuset *cpu_set)
2244{
2245 unsigned long cpumap;
2246 char *start, *endptr, *comma;
2247 int i, j;
2248
2249 ha_cpuset_zero(cpu_set);
2250
2251 i = 0;
2252 do {
2253 /* reverse-search for a comma, parse the string after the comma
2254 * or at the beginning if no comma found
2255 */
2256 comma = strrchr(cpumap_str, ',');
2257 start = comma ? comma + 1 : cpumap_str;
2258
2259 cpumap = strtoul(start, &endptr, 16);
2260 for (j = 0; cpumap; cpumap >>= 1, ++j) {
2261 if (cpumap & 0x1)
2262 ha_cpuset_set(cpu_set, j + i * 32);
2263 }
2264
2265 if (comma)
2266 *comma = '\0';
2267 ++i;
2268 } while (comma);
2269}
2270
2271/* Read the first line of a file from <path> into the trash buffer.
2272 * Returns 0 on success, otherwise non-zero.
2273 */
2274static int read_file_to_trash(const char *path)
2275{
2276 FILE *file;
2277 int ret = 1;
2278
2279 file = fopen(path, "r");
2280 if (file) {
2281 if (fgets(trash.area, trash.size, file))
2282 ret = 0;
2283
2284 fclose(file);
2285 }
2286
2287 return ret;
2288}
2289
2290/* Inspect the cpu topology of the machine on startup. If a multi-socket
2291 * machine is detected, try to bind on the first node with active cpu. This is
2292 * done to prevent an impact on the overall performance when the topology of
2293 * the machine is unknown. This function is not called if one of the conditions
2294 * is met :
2295 * - a non-null nbthread directive is active
2296 * - a restrictive cpu-map directive is active
2297 * - a restrictive affinity is already applied, for example via taskset
2298 *
2299 * Returns the count of cpus selected. If no automatic binding was required or
2300 * an error occurred and the topology is unknown, 0 is returned.
2301 */
2302static int numa_detect_topology()
2303{
2304 struct dirent **node_dirlist;
2305 int node_dirlist_size;
2306
2307 struct hap_cpuset active_cpus, node_cpu_set;
2308 const char *parse_cpu_set_args[2];
2309 char cpumap_path[PATH_MAX];
2310 char *err = NULL;
2311
2312 /* node_cpu_set count is used as return value */
2313 ha_cpuset_zero(&node_cpu_set);
2314
2315 /* 1. count the sysfs node<X> directories */
Willy Tarreau07bf21c2021-04-23 19:09:16 +02002316 node_dirlist = NULL;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002317 node_dirlist_size = scandir(NUMA_DETECT_SYSTEM_SYSFS_PATH"/node", &node_dirlist, numa_filter, alphasort);
2318 if (node_dirlist_size <= 1)
2319 goto free_scandir_entries;
2320
2321 /* 2. read and parse the list of currently online cpu */
2322 if (read_file_to_trash(NUMA_DETECT_SYSTEM_SYSFS_PATH"/cpu/online")) {
2323 ha_notice("Cannot read online CPUs list, will not try to refine binding\n");
2324 goto free_scandir_entries;
2325 }
2326
2327 parse_cpu_set_args[0] = trash.area;
2328 parse_cpu_set_args[1] = "\0";
2329 if (parse_cpu_set(parse_cpu_set_args, &active_cpus, 1, &err)) {
2330 ha_notice("Cannot read online CPUs list: '%s'. Will not try to refine binding\n", err);
2331 free(err);
2332 goto free_scandir_entries;
2333 }
2334
2335 /* 3. loop through nodes dirs and find the first one with active cpus */
2336 while (node_dirlist_size--) {
2337 const char *node = node_dirlist[node_dirlist_size]->d_name;
2338 ha_cpuset_zero(&node_cpu_set);
2339
2340 snprintf(cpumap_path, PATH_MAX, "%s/node/%s/cpumap",
2341 NUMA_DETECT_SYSTEM_SYSFS_PATH, node);
2342
2343 if (read_file_to_trash(cpumap_path)) {
2344 ha_notice("Cannot read CPUs list of '%s', will not select them to refine binding\n", node);
2345 free(node_dirlist[node_dirlist_size]);
2346 continue;
2347 }
2348
2349 parse_cpumap(trash.area, &node_cpu_set);
2350 ha_cpuset_and(&node_cpu_set, &active_cpus);
2351
2352 /* 5. set affinity on the first found node with active cpus */
2353 if (!ha_cpuset_count(&node_cpu_set)) {
2354 free(node_dirlist[node_dirlist_size]);
2355 continue;
2356 }
2357
2358 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));
2359 if (sched_setaffinity(getpid(), sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2360 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2361
2362 /* clear the cpuset used as return value */
2363 ha_cpuset_zero(&node_cpu_set);
2364 }
2365
2366 free(node_dirlist[node_dirlist_size]);
2367 break;
2368 }
2369
2370 free_scandir_entries:
2371 while (node_dirlist_size-- > 0)
2372 free(node_dirlist[node_dirlist_size]);
2373 free(node_dirlist);
2374
2375 return ha_cpuset_count(&node_cpu_set);
2376}
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002377
David CARLIERf5d48f82021-12-06 11:00:10 +00002378#elif defined(__FreeBSD__)
2379static int numa_detect_topology()
2380{
2381 struct hap_cpuset node_cpu_set;
2382 int ndomains = 0, i;
2383 size_t len = sizeof(ndomains);
2384
2385 if (sysctlbyname("vm.ndomains", &ndomains, &len, NULL, 0) == -1) {
2386 ha_notice("Cannot assess the number of CPUs domains\n");
2387 return 0;
2388 }
2389
2390 BUG_ON(ndomains > MAXMEMDOM);
2391 ha_cpuset_zero(&node_cpu_set);
2392
2393 /*
2394 * We retrieve the first active valid CPU domain
2395 * with active cpu and binding it, we returns
2396 * the number of cpu from the said domain
2397 */
2398 for (i = 0; i < ndomains; i ++) {
2399 struct hap_cpuset dom;
2400 ha_cpuset_zero(&dom);
2401 if (cpuset_getaffinity(CPU_LEVEL_WHICH, CPU_WHICH_DOMAIN, i, sizeof(dom.cpuset), &dom.cpuset) == -1)
2402 continue;
2403
2404 if (!ha_cpuset_count(&dom))
2405 continue;
2406
2407 ha_cpuset_assign(&node_cpu_set, &dom);
2408
2409 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));
2410 if (cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2411 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2412
2413 /* clear the cpuset used as return value */
2414 ha_cpuset_zero(&node_cpu_set);
2415 }
2416 break;
2417 }
2418
2419 return ha_cpuset_count(&node_cpu_set);
2420}
2421
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002422#else
2423static int numa_detect_topology()
2424{
2425 return 0;
2426}
2427
2428#endif
2429#endif /* USE_THREAD && USE_CPU_AFFINITY */
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002430
Willy Tarreaubb925012009-07-23 13:36:36 +02002431/*
2432 * Returns the error code, 0 if OK, or any combination of :
2433 * - ERR_ABORT: must abort ASAP
2434 * - ERR_FATAL: we can continue parsing but not start the service
2435 * - ERR_WARN: a warning has been emitted
2436 * - ERR_ALERT: an alert has been emitted
2437 * Only the two first ones can stop processing, the two others are just
2438 * indicators.
2439 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002440int check_config_validity()
2441{
2442 int cfgerr = 0;
2443 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002444 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002445 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002446 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002447 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002448 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002449 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002450 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01002451 struct resolvers *curr_resolvers = NULL;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002452 int i;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002453
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002454 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002455 /*
2456 * Now, check for the integrity of all that we have collected.
2457 */
2458
2459 /* will be needed further to delay some tasks */
Willy Tarreau55542642021-10-08 09:33:24 +02002460 clock_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002461
Willy Tarreau193b8c62012-11-22 00:17:38 +01002462 if (!global.tune.max_http_hdr)
2463 global.tune.max_http_hdr = MAX_HTTP_HDR;
2464
2465 if (!global.tune.cookie_len)
2466 global.tune.cookie_len = CAPTURE_LEN;
2467
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002468 if (!global.tune.requri_len)
2469 global.tune.requri_len = REQURI_LEN;
2470
Willy Tarreau149ab772019-01-26 14:27:06 +01002471 if (!global.nbthread) {
2472 /* nbthread not set, thus automatic. In this case, and only if
2473 * running on a single process, we enable the same number of
2474 * threads as the number of CPUs the process is bound to. This
2475 * allows to easily control the number of threads using taskset.
2476 */
2477 global.nbthread = 1;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002478
Willy Tarreau149ab772019-01-26 14:27:06 +01002479#if defined(USE_THREAD)
Willy Tarreaub63dbb72021-06-11 16:50:29 +02002480 {
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002481 int numa_cores = 0;
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002482#if defined(USE_CPU_AFFINITY)
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002483 if (global.numa_cpu_mapping && !thread_cpu_mask_forced())
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002484 numa_cores = numa_detect_topology();
2485#endif
2486 global.nbthread = numa_cores ? numa_cores :
2487 thread_cpus_enabled_at_boot;
2488 }
Willy Tarreau149ab772019-01-26 14:27:06 +01002489 all_threads_mask = nbits(global.nbthread);
2490#endif
2491 }
2492
Willy Tarreauc33b9692021-09-22 12:07:23 +02002493 if (!global.nbtgroups)
2494 global.nbtgroups = 1;
2495
Willy Tarreaue6806eb2021-09-27 10:10:26 +02002496 if (thread_map_to_groups() < 0) {
2497 err_code |= ERR_ALERT | ERR_FATAL;
2498 goto out;
2499 }
2500
Willy Tarreaubafbe012017-11-24 17:34:44 +01002501 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002502
Willy Tarreaubafbe012017-11-24 17:34:44 +01002503 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002504
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002505 /* Post initialisation of the users and groups lists. */
2506 err_code = userlist_postinit();
2507 if (err_code != ERR_NONE)
2508 goto out;
2509
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002510 /* first, we will invert the proxy list order */
2511 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002512 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002513 struct proxy *next;
2514
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002515 next = proxies_list->next;
2516 proxies_list->next = curproxy;
2517 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002518 if (!next)
2519 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002520 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002521 }
2522
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002523 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002524 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002525 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002526 struct sticking_rule *mrule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002527 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002528 unsigned int next_id;
2529
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002530 if (!(curproxy->cap & PR_CAP_INT) && curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002531 /* proxy ID not set, use automatic numbering with first
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002532 * spare entry starting with next_pxid. We don't assign
2533 * numbers for internal proxies as they may depend on
2534 * build or config options and we don't want them to
2535 * possibly reuse existing IDs.
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002536 */
2537 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2538 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2539 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002540 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002541
Willy Tarreau32b51cd2021-08-26 15:59:44 +02002542 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize >= (256 << 20) && ONLY_ONCE()) {
2543 ha_alert("global.tune.bufsize must be below 256 MB when HTTP is in use (current value = %d).\n",
2544 global.tune.bufsize);
2545 cfgerr++;
2546 }
2547
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002548 /* next IDs are shifted even if the proxy is disabled, this
2549 * guarantees that a proxy that is temporarily disabled in the
2550 * configuration doesn't cause a renumbering. Internal proxies
2551 * that are not assigned a static ID must never shift the IDs
2552 * either since they may appear in any order (Lua, logs, etc).
2553 * The GLOBAL proxy that carries the stats socket has its ID
2554 * forced to zero.
2555 */
2556 if (curproxy->uuid >= 0)
2557 next_pxid++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002558
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002559 if (curproxy->flags & PR_FL_DISABLED) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002560 /* ensure we don't keep listeners uselessly bound. We
2561 * can't disable their listeners yet (fdtab not
2562 * allocated yet) but let's skip them.
2563 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002564 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002565 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002566 curproxy->table->peers.p = NULL;
2567 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002568 continue;
2569 }
2570
Christopher Fauletff556272021-10-13 11:04:10 +02002571 /* The current proxy is referencing a default proxy. We must
2572 * finalize its config, but only once. If the default proxy is
2573 * ready (PR_FL_READY) it means it was already fully configured.
2574 */
2575 if (curproxy->defpx) {
2576 if (!(curproxy->defpx->flags & PR_FL_READY)) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02002577 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
2578 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l4_rules, curproxy->defpx, &err_code);
2579 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l5_rules, curproxy->defpx, &err_code);
2580 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.inspect_rules, curproxy->defpx, &err_code);
2581 cfgerr += check_action_rules(&curproxy->defpx->tcp_rep.inspect_rules, curproxy->defpx, &err_code);
2582 cfgerr += check_action_rules(&curproxy->defpx->http_req_rules, curproxy->defpx, &err_code);
2583 cfgerr += check_action_rules(&curproxy->defpx->http_res_rules, curproxy->defpx, &err_code);
2584 cfgerr += check_action_rules(&curproxy->defpx->http_after_res_rules, curproxy->defpx, &err_code);
2585
Christopher Fauletff556272021-10-13 11:04:10 +02002586 err = NULL;
2587 i = smp_resolve_args(curproxy->defpx, &err);
2588 cfgerr += i;
2589 if (i) {
2590 indent_msg(&err, 8);
2591 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
2592 ha_free(&err);
2593 }
2594 else
2595 cfgerr += acl_find_targets(curproxy->defpx);
2596
2597 /* default proxy is now ready. Set the right FE/BE capabilities */
2598 curproxy->defpx->flags |= PR_FL_READY;
2599 }
2600 }
2601
Willy Tarreau3d209582014-05-09 17:06:11 +02002602 /* check and reduce the bind-proc of each listener */
2603 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2604 unsigned long mask;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002605 struct listener *li;
Willy Tarreau3d209582014-05-09 17:06:11 +02002606
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002607 /* HTTP frontends with "h2" as ALPN/NPN will work in
2608 * HTTP/2 and absolutely require buffers 16kB or larger.
2609 */
2610#ifdef USE_OPENSSL
2611 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2612#ifdef OPENSSL_NPN_NEGOTIATED
2613 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002614 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002615 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 +01002616 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002617 cfgerr++;
2618 }
2619#endif
2620#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2621 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002622 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002623 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 +01002624 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002625 cfgerr++;
2626 }
2627#endif
2628 } /* HTTP && bufsize < 16384 */
2629#endif
2630
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002631 /* detect and address thread affinity inconsistencies */
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002632 err = NULL;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002633 if (thread_resolve_group_mask(bind_conf->bind_tgroup, bind_conf->bind_thread,
2634 &bind_conf->bind_tgroup, &bind_conf->bind_thread, &err) < 0) {
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002635 ha_alert("Proxy '%s': %s in 'bind %s' at [%s:%d].\n",
2636 curproxy->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
2637 free(err);
2638 cfgerr++;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002639 } else if (!((mask = bind_conf->bind_thread) & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002640 unsigned long new_mask = 0;
2641
2642 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002643 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002644 mask >>= global.nbthread;
2645 }
2646
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002647 bind_conf->bind_thread = new_mask;
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002648 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 +02002649 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2650 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002651
2652 /* apply thread masks and groups to all receivers */
2653 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
Willy Tarreau6dfbef42021-10-12 15:23:03 +02002654 if (bind_conf->settings.shards <= 1) {
2655 li->rx.bind_thread = bind_conf->bind_thread;
2656 li->rx.bind_tgroup = bind_conf->bind_tgroup;
2657 } else {
2658 struct listener *new_li;
2659 int shard, shards, todo, done, bit;
2660 ulong mask;
2661
2662 shards = bind_conf->settings.shards;
2663 todo = my_popcountl(bind_conf->bind_thread);
2664
2665 /* no more shards than total threads */
2666 if (shards > todo)
2667 shards = todo;
2668
2669 shard = done = bit = 0;
2670 new_li = li;
2671
2672 while (1) {
2673 mask = 0;
2674 while (done < todo) {
2675 /* enlarge mask to cover next bit of bind_thread */
2676 while (!(bind_conf->bind_thread & (1UL << bit)))
2677 bit++;
2678 mask |= (1UL << bit);
2679 bit++;
2680 done += shards;
2681 }
2682
2683 new_li->rx.bind_thread = bind_conf->bind_thread & mask;
2684 new_li->rx.bind_tgroup = bind_conf->bind_tgroup;
2685 done -= todo;
2686
2687 shard++;
2688 if (shard >= shards)
2689 break;
2690
2691 /* create another listener for new shards */
2692 new_li = clone_listener(li);
2693 if (!new_li) {
2694 ha_alert("Out of memory while trying to allocate extra listener for shard %d in %s %s\n",
2695 shard, proxy_type_str(curproxy), curproxy->id);
2696 cfgerr++;
2697 err_code |= ERR_FATAL | ERR_ALERT;
2698 goto out;
2699 }
2700 }
2701 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002702 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002703 }
2704
Willy Tarreauff01a212009-03-15 13:46:16 +01002705 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01002706 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002707 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002708 break;
2709
2710 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002711 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002712 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002713
2714 case PR_MODE_CLI:
2715 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2716 break;
Emeric Brun54932b42020-07-07 09:43:24 +02002717 case PR_MODE_SYSLOG:
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002718 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02002719 case PR_MODES:
2720 /* should not happen, bug gcc warn missing switch statement */
Amaury Denoyelle11124302021-06-04 18:22:08 +02002721 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 +02002722 proxy_type_str(curproxy), curproxy->id);
2723 cfgerr++;
2724 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002725 }
2726
William Lallemand2c04a5a2021-08-13 15:21:12 +02002727 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002728 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 +01002729 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002730 err_code |= ERR_WARN;
2731 }
2732
Willy Tarreau77e0dae2020-10-14 15:44:27 +02002733 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002734 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002735 if (curproxy->options & PR_O_TRANSP) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002736 ha_alert("%s '%s' cannot use both transparent and balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002737 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002738 cfgerr++;
2739 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002740#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002741 else if (curproxy->srv == NULL) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002742 ha_alert("%s '%s' needs at least 1 server in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002743 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002744 cfgerr++;
2745 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002746#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002747 else if (curproxy->options & PR_O_DISPATCH) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002748 ha_warning("dispatch address of %s '%s' will be ignored in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002749 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002750 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002751 }
2752 }
Willy Tarreau25241232021-07-18 19:18:56 +02002753 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002754 /* If no LB algo is set in a backend, and we're not in
2755 * transparent mode, dispatch mode nor proxy mode, we
2756 * want to use balance roundrobin by default.
2757 */
2758 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2759 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002760 }
2761 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002762
Willy Tarreau1620ec32011-08-06 17:05:02 +02002763 if (curproxy->options & PR_O_DISPATCH)
Willy Tarreau25241232021-07-18 19:18:56 +02002764 curproxy->options &= ~PR_O_TRANSP;
Willy Tarreau1620ec32011-08-06 17:05:02 +02002765 else if (curproxy->options & PR_O_TRANSP)
Willy Tarreau25241232021-07-18 19:18:56 +02002766 curproxy->options &= ~PR_O_DISPATCH;
Willy Tarreau82936582007-11-30 15:20:09 +01002767
Christopher Faulete5870d82020-04-15 11:32:03 +02002768 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002769 ha_warning("%s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
Christopher Faulete5870d82020-04-15 11:32:03 +02002770 proxy_type_str(curproxy), curproxy->id);
2771 err_code |= ERR_WARN;
2772 }
2773
2774 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002775 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002776 if (curproxy->options & PR_O_DISABLE404) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002777 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002778 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002779 err_code |= ERR_WARN;
2780 curproxy->options &= ~PR_O_DISABLE404;
2781 }
2782 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002783 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002784 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002785 err_code |= ERR_WARN;
2786 curproxy->options &= ~PR_O2_CHK_SNDST;
2787 }
Willy Tarreauef781042010-01-27 11:53:01 +01002788 }
2789
Simon Horman98637e52014-06-20 12:30:16 +09002790 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2791 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002792 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2793 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002794 cfgerr++;
2795 }
2796 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002797 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2798 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002799 cfgerr++;
2800 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002801 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2802 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2803 curproxy->id, "option external-check");
2804 err_code |= ERR_WARN;
2805 }
Simon Horman98637e52014-06-20 12:30:16 +09002806 }
2807
Simon Horman64e34162015-02-06 11:11:57 +09002808 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002809 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002810 ha_warning("'email-alert' will be ignored for %s '%s' (the presence any of "
Christopher Faulet767a84b2017-11-24 16:50:31 +01002811 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2812 "'email-alert myhostname', or 'email-alert to' "
2813 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2814 "to be present).\n",
2815 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002816 err_code |= ERR_WARN;
2817 free_email_alert(curproxy);
2818 }
2819 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002820 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002821 }
2822
Simon Horman98637e52014-06-20 12:30:16 +09002823 if (curproxy->check_command) {
2824 int clear = 0;
2825 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002826 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002827 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002828 err_code |= ERR_WARN;
2829 clear = 1;
2830 }
2831 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002832 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2833 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002834 cfgerr++;
2835 }
2836 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002837 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09002838 }
2839 }
2840
2841 if (curproxy->check_path) {
2842 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002843 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002844 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002845 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002846 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09002847 }
2848 }
2849
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002850 /* if a default backend was specified, let's find it */
2851 if (curproxy->defbe.name) {
2852 struct proxy *target;
2853
Willy Tarreauafb39922015-05-26 12:04:09 +02002854 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002855 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002856 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2857 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002858 cfgerr++;
2859 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002860 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2861 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002862 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002863 } else if (target->mode != curproxy->mode &&
2864 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2865
Christopher Faulet767a84b2017-11-24 16:50:31 +01002866 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2867 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2868 curproxy->conf.file, curproxy->conf.line,
2869 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2870 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002871 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002872 } else {
2873 free(curproxy->defbe.name);
2874 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002875 /* Emit a warning if this proxy also has some servers */
2876 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002877 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2878 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002879 err_code |= ERR_WARN;
2880 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002881 }
2882 }
2883
Willy Tarreau55ea7572007-06-17 19:56:27 +02002884 /* find the target proxy for 'use_backend' rules */
2885 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002886 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002887 struct logformat_node *node;
2888 char *pxname;
2889
2890 /* Try to parse the string as a log format expression. If the result
2891 * of the parsing is only one entry containing a simple string, then
2892 * it's a standard string corresponding to a static rule, thus the
2893 * parsing is cancelled and be.name is restored to be resolved.
2894 */
2895 pxname = rule->be.name;
2896 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002897 curproxy->conf.args.ctx = ARGC_UBK;
2898 curproxy->conf.args.file = rule->file;
2899 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002900 err = NULL;
2901 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002902 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2903 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002904 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002905 cfgerr++;
2906 continue;
2907 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002908 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2909
2910 if (!LIST_ISEMPTY(&rule->be.expr)) {
2911 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2912 rule->dynamic = 1;
2913 free(pxname);
2914 continue;
2915 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002916 /* Only one element in the list, a simple string: free the expression and
2917 * fall back to static rule
2918 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002919 LIST_DELETE(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002920 free(node->arg);
2921 free(node);
2922 }
2923
2924 rule->dynamic = 0;
2925 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002926
Willy Tarreauafb39922015-05-26 12:04:09 +02002927 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002928 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002929 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2930 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002931 cfgerr++;
2932 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002933 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2934 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002935 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002936 } else if (target->mode != curproxy->mode &&
2937 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2938
Christopher Faulet767a84b2017-11-24 16:50:31 +01002939 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2940 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2941 curproxy->conf.file, curproxy->conf.line,
2942 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2943 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002944 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002945 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002946 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002947 rule->be.backend = target;
2948 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01002949 err_code |= warnif_tcp_http_cond(curproxy, rule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002950 }
2951
Willy Tarreau64ab6072014-09-16 12:17:36 +02002952 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002953 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002954 struct server *target;
2955 struct logformat_node *node;
2956 char *server_name;
2957
2958 /* We try to parse the string as a log format expression. If the result of the parsing
2959 * is only one entry containing a single string, then it's a standard string corresponding
2960 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2961 */
2962 server_name = srule->srv.name;
2963 LIST_INIT(&srule->expr);
2964 curproxy->conf.args.ctx = ARGC_USRV;
2965 err = NULL;
2966 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2967 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2968 srule->file, srule->line, server_name, err);
2969 free(err);
2970 cfgerr++;
2971 continue;
2972 }
2973 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2974
2975 if (!LIST_ISEMPTY(&srule->expr)) {
2976 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2977 srule->dynamic = 1;
2978 free(server_name);
2979 continue;
2980 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002981 /* Only one element in the list, a simple string: free the expression and
2982 * fall back to static rule
2983 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002984 LIST_DELETE(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002985 free(node->arg);
2986 free(node);
2987 }
2988
2989 srule->dynamic = 0;
2990 srule->srv.name = server_name;
2991 target = findserver(curproxy, srule->srv.name);
Christopher Faulet581db2b2021-03-26 10:02:46 +01002992 err_code |= warnif_tcp_http_cond(curproxy, srule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002993
2994 if (!target) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002995 ha_alert("%s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002996 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002997 cfgerr++;
2998 continue;
2999 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01003000 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003001 srule->srv.ptr = target;
Amaury Denoyelle06269612021-08-23 14:05:07 +02003002 target->flags |= SRV_F_NON_PURGEABLE;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003003 }
3004
Emeric Brunb982a3d2010-01-04 15:45:53 +01003005 /* find the target table for 'stick' rules */
3006 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003007 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003008
Emeric Brun1d33b292010-01-04 15:47:17 +01003009 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
3010 if (mrule->flags & STK_IS_STORE)
3011 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3012
Emeric Brunb982a3d2010-01-04 15:45:53 +01003013 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003014 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003015 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003016 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003017
3018 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003019 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003020 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003021 cfgerr++;
3022 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003023 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003024 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3025 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003026 cfgerr++;
3027 }
3028 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003029 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003030 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003031 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3032 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003033 if (!in_proxies_list(target->proxies_list, curproxy)) {
3034 curproxy->next_stkt_ref = target->proxies_list;
3035 target->proxies_list = curproxy;
3036 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003037 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003038 err_code |= warnif_tcp_http_cond(curproxy, mrule->cond);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003039 }
3040
3041 /* find the target table for 'store response' rules */
3042 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003043 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003044
Emeric Brun1d33b292010-01-04 15:47:17 +01003045 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3046
Emeric Brunb982a3d2010-01-04 15:45:53 +01003047 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003048 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003049 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003050 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003051
3052 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003053 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003054 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003055 cfgerr++;
3056 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003057 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003058 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3059 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003060 cfgerr++;
3061 }
3062 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003063 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003064 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003065 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3066 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003067 if (!in_proxies_list(target->proxies_list, curproxy)) {
3068 curproxy->next_stkt_ref = target->proxies_list;
3069 target->proxies_list = curproxy;
3070 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003071 }
3072 }
3073
Christopher Faulet42c6cf92021-03-25 17:19:04 +01003074 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
3075 cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code);
3076 cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code);
3077 cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code);
3078 cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code);
3079 cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code);
3080 cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code);
3081 cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003082
Christopher Faulet5eef0182021-03-31 17:13:49 +02003083 /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */
3084 if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) {
3085 if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP)
3086 ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. "
3087 "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n",
3088 curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy));
3089 }
3090
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003091 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003092 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003093
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003094 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003095 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003096 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003097 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003098 break;
3099 }
3100 }
3101
3102 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003103 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003104 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01003105 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003106 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003107 cfgerr++;
3108 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003109 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003110 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003111 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003112 }
Emeric Brun32da3c42010-09-23 18:39:19 +02003113 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003114 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
3115 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003116 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003117 cfgerr++;
3118 }
3119 }
3120
Simon Horman9dc49962015-01-30 11:22:59 +09003121
3122 if (curproxy->email_alert.mailers.name) {
3123 struct mailers *curmailers = mailers;
3124
3125 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003126 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09003127 break;
Simon Horman9dc49962015-01-30 11:22:59 +09003128 }
Simon Horman9dc49962015-01-30 11:22:59 +09003129 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003130 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
3131 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09003132 free_email_alert(curproxy);
3133 cfgerr++;
3134 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02003135 else {
3136 err = NULL;
3137 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003138 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003139 free(err);
3140 cfgerr++;
3141 }
3142 }
Simon Horman9dc49962015-01-30 11:22:59 +09003143 }
3144
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003145 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01003146 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003147 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003148 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
3149 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003150 cfgerr++;
3151 goto out_uri_auth_compat;
3152 }
3153
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003154 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003155 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003156 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003157 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003158 struct act_rule *rule;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003159 i = 0;
3160
Willy Tarreau95fa4692010-02-01 13:05:50 +01003161 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
3162 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003163
3164 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003165 uri_auth_compat_req[i++] = "realm";
3166 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
3167 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003168
Willy Tarreau95fa4692010-02-01 13:05:50 +01003169 uri_auth_compat_req[i++] = "unless";
3170 uri_auth_compat_req[i++] = "{";
3171 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
3172 uri_auth_compat_req[i++] = "}";
3173 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003174
Willy Tarreauff011f22011-01-06 17:51:27 +01003175 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
3176 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003177 cfgerr++;
3178 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003179 }
3180
Willy Tarreau2b718102021-04-21 07:32:39 +02003181 LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01003182
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003183 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003184 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003185 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003186 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003187 }
3188out_uri_auth_compat:
3189
Dragan Dosen43885c72015-10-01 13:18:13 +02003190 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02003191 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02003192 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
3193 if (!curproxy->conf.logformat_sd_string) {
3194 /* set the default logformat_sd_string */
3195 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
3196 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003197 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02003198 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003199 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02003200
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003201 /* compile the log format */
3202 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02003203 if (curproxy->conf.logformat_string != default_http_log_format &&
3204 curproxy->conf.logformat_string != default_tcp_log_format &&
3205 curproxy->conf.logformat_string != clf_http_log_format)
3206 free(curproxy->conf.logformat_string);
3207 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003208 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02003209 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003210
3211 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3212 free(curproxy->conf.logformat_sd_string);
3213 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003214 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003215 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003216 }
3217
Willy Tarreau62a61232013-04-12 18:13:46 +02003218 if (curproxy->conf.logformat_string) {
3219 curproxy->conf.args.ctx = ARGC_LOG;
3220 curproxy->conf.args.file = curproxy->conf.lfs_file;
3221 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003222 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003223 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
3224 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003225 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003226 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3227 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003228 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003229 cfgerr++;
3230 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003231 curproxy->conf.args.file = NULL;
3232 curproxy->conf.args.line = 0;
3233 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003234
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003235 if (curproxy->conf.logformat_sd_string) {
3236 curproxy->conf.args.ctx = ARGC_LOGSD;
3237 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3238 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003239 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003240 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
3241 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003242 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003243 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3244 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003245 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003246 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003247 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003248 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3249 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003250 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003251 cfgerr++;
3252 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003253 curproxy->conf.args.file = NULL;
3254 curproxy->conf.args.line = 0;
3255 }
3256
Willy Tarreau62a61232013-04-12 18:13:46 +02003257 if (curproxy->conf.uniqueid_format_string) {
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003258 int where = 0;
3259
Willy Tarreau62a61232013-04-12 18:13:46 +02003260 curproxy->conf.args.ctx = ARGC_UIF;
3261 curproxy->conf.args.file = curproxy->conf.uif_file;
3262 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003263 err = NULL;
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003264 if (curproxy->cap & PR_CAP_FE)
3265 where |= SMP_VAL_FE_HRQ_HDR;
3266 if (curproxy->cap & PR_CAP_BE)
3267 where |= SMP_VAL_BE_HRQ_HDR;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003268 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003269 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES, where, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003270 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3271 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003272 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003273 cfgerr++;
3274 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003275 curproxy->conf.args.file = NULL;
3276 curproxy->conf.args.line = 0;
3277 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003278
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +02003279 if (curproxy->conf.error_logformat_string) {
3280 curproxy->conf.args.ctx = ARGC_LOG;
3281 curproxy->conf.args.file = curproxy->conf.elfs_file;
3282 curproxy->conf.args.line = curproxy->conf.elfs_line;
3283 err = NULL;
3284 if (!parse_logformat_string(curproxy->conf.error_logformat_string, curproxy, &curproxy->logformat_error,
3285 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
3286 SMP_VAL_FE_LOG_END, &err)) {
3287 ha_alert("Parsing [%s:%d]: failed to parse error-log-format : %s.\n",
3288 curproxy->conf.elfs_file, curproxy->conf.elfs_line, err);
3289 free(err);
3290 cfgerr++;
3291 }
3292 curproxy->conf.args.file = NULL;
3293 curproxy->conf.args.line = 0;
3294 }
3295
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +02003296 /* "balance hash" needs to compile its expression */
3297 if ((curproxy->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_SMP) {
3298 int idx = 0;
3299 const char *args[] = {
3300 curproxy->lbprm.arg_str,
3301 NULL,
3302 };
3303
3304 err = NULL;
3305 curproxy->conf.args.ctx = ARGC_USRV; // same context as use_server.
3306 curproxy->lbprm.expr =
3307 sample_parse_expr((char **)args, &idx,
3308 curproxy->conf.file, curproxy->conf.line,
3309 &err, &curproxy->conf.args, NULL);
3310
3311 if (!curproxy->lbprm.expr) {
3312 ha_alert("%s '%s' [%s:%d]: failed to parse 'balance hash' expression '%s' in : %s.\n",
3313 proxy_type_str(curproxy), curproxy->id,
3314 curproxy->conf.file, curproxy->conf.line,
3315 curproxy->lbprm.arg_str, err);
3316 ha_free(&err);
3317 cfgerr++;
3318 }
3319 else if (!(curproxy->lbprm.expr->fetch->val & SMP_VAL_BE_SET_SRV)) {
3320 ha_alert("%s '%s' [%s:%d]: error detected while parsing 'balance hash' expression '%s' "
3321 "which requires information from %s, which is not available here.\n",
3322 proxy_type_str(curproxy), curproxy->id,
3323 curproxy->conf.file, curproxy->conf.line,
3324 curproxy->lbprm.arg_str, sample_src_names(curproxy->lbprm.expr->fetch->use));
3325 cfgerr++;
3326 }
3327 else if (curproxy->mode == PR_MODE_HTTP && (curproxy->lbprm.expr->fetch->use & SMP_USE_L6REQ)) {
3328 ha_warning("%s '%s' [%s:%d]: L6 sample fetch <%s> will be ignored in 'balance hash' expression in HTTP mode.\n",
3329 proxy_type_str(curproxy), curproxy->id,
3330 curproxy->conf.file, curproxy->conf.line,
3331 curproxy->lbprm.arg_str);
3332 }
3333 else
3334 curproxy->http_needed |= !!(curproxy->lbprm.expr->fetch->use & SMP_USE_HTTP_ANY);
3335 }
3336
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003337 /* only now we can check if some args remain unresolved.
3338 * This must be done after the users and groups resolution.
3339 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01003340 err = NULL;
3341 i = smp_resolve_args(curproxy, &err);
3342 cfgerr += i;
3343 if (i) {
3344 indent_msg(&err, 8);
3345 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
3346 ha_free(&err);
3347 } else
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003348 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003349
William Lallemand2c04a5a2021-08-13 15:21:12 +02003350 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003351 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003352 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003353 (!curproxy->timeout.connect ||
3354 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003355 ha_warning("missing timeouts for %s '%s'.\n"
Christopher Faulet767a84b2017-11-24 16:50:31 +01003356 " | While not properly invalid, you will certainly encounter various problems\n"
3357 " | with such a configuration. To fix this, please ensure that all following\n"
3358 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3359 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003360 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003361 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003362
Willy Tarreau1fa31262007-12-03 00:36:16 +01003363 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3364 * We must still support older configurations, so let's find out whether those
3365 * parameters have been set or must be copied from contimeouts.
3366 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01003367 if (!curproxy->timeout.tarpit)
3368 curproxy->timeout.tarpit = curproxy->timeout.connect;
3369 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
3370 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003371
Christopher Faulete5870d82020-04-15 11:32:03 +02003372 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003373 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 +01003374 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003375 err_code |= ERR_WARN;
3376 }
3377
Willy Tarreau193b8c62012-11-22 00:17:38 +01003378 /* ensure that cookie capture length is not too large */
3379 if (curproxy->capture_len >= global.tune.cookie_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003380 ha_warning("truncating capture length to %d bytes for %s '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003381 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003382 err_code |= ERR_WARN;
3383 curproxy->capture_len = global.tune.cookie_len - 1;
3384 }
3385
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003386 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003387 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003388 curproxy->req_cap_pool = create_pool("ptrcap",
3389 curproxy->nb_req_cap * sizeof(char *),
3390 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003391 }
3392
3393 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003394 curproxy->rsp_cap_pool = create_pool("ptrcap",
3395 curproxy->nb_rsp_cap * sizeof(char *),
3396 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003397 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003398
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003399 switch (curproxy->load_server_state_from_file) {
3400 case PR_SRV_STATE_FILE_UNSPEC:
3401 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3402 break;
3403 case PR_SRV_STATE_FILE_GLOBAL:
3404 if (!global.server_state_file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003405 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 +01003406 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003407 err_code |= ERR_WARN;
3408 }
3409 break;
3410 }
3411
Willy Tarreaubaaee002006-06-26 02:48:02 +02003412 /* first, we will invert the servers list order */
3413 newsrv = NULL;
3414 while (curproxy->srv) {
3415 struct server *next;
3416
3417 next = curproxy->srv->next;
3418 curproxy->srv->next = newsrv;
3419 newsrv = curproxy->srv;
3420 if (!next)
3421 break;
3422 curproxy->srv = next;
3423 }
3424
Willy Tarreau17edc812014-01-03 12:14:34 +01003425 /* Check that no server name conflicts. This causes trouble in the stats.
3426 * We only emit a warning for the first conflict affecting each server,
3427 * in order to avoid combinatory explosion if all servers have the same
3428 * name. We do that only for servers which do not have an explicit ID,
3429 * because these IDs were made also for distinguishing them and we don't
3430 * want to annoy people who correctly manage them.
3431 */
3432 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3433 struct server *other_srv;
3434
3435 if (newsrv->puid)
3436 continue;
3437
3438 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3439 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003440 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 +01003441 newsrv->conf.file, newsrv->conf.line,
3442 proxy_type_str(curproxy), curproxy->id,
3443 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003444 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003445 break;
3446 }
3447 }
3448 }
3449
Willy Tarreaudd701652010-05-25 23:03:02 +02003450 /* assign automatic UIDs to servers which don't have one yet */
3451 next_id = 1;
3452 newsrv = curproxy->srv;
3453 while (newsrv != NULL) {
3454 if (!newsrv->puid) {
3455 /* server ID not set, use automatic numbering with first
3456 * spare entry starting with next_svid.
3457 */
3458 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3459 newsrv->conf.id.key = newsrv->puid = next_id;
3460 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
3461 }
Amaury Denoyelle077c6b82021-06-14 17:04:25 +02003462 newsrv->conf.name.key = newsrv->id;
3463 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
3464
Willy Tarreaudd701652010-05-25 23:03:02 +02003465 next_id++;
3466 newsrv = newsrv->next;
3467 }
3468
Willy Tarreau20697042007-11-15 23:26:18 +01003469 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003470 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003471
Willy Tarreau62c3be22012-01-20 13:12:32 +01003472 /*
3473 * If this server supports a maxconn parameter, it needs a dedicated
3474 * tasks to fill the emptied slots when a connection leaves.
3475 * Also, resolve deferred tracking dependency if needed.
3476 */
3477 newsrv = curproxy->srv;
3478 while (newsrv != NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003479 set_usermsgs_ctx(newsrv->conf.file, newsrv->conf.line, &newsrv->obj_type);
3480
Willy Tarreau62c3be22012-01-20 13:12:32 +01003481 if (newsrv->minconn > newsrv->maxconn) {
3482 /* Only 'minconn' was specified, or it was higher than or equal
3483 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3484 * this will avoid further useless expensive computations.
3485 */
3486 newsrv->maxconn = newsrv->minconn;
3487 } else if (newsrv->maxconn && !newsrv->minconn) {
3488 /* minconn was not specified, so we set it to maxconn */
3489 newsrv->minconn = newsrv->maxconn;
3490 }
3491
William Dauchyf6370442020-11-14 19:25:33 +01003492 /* this will also properly set the transport layer for
3493 * prod and checks
3494 * if default-server have use_ssl, prerare ssl init
3495 * without activating it */
3496 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
Christopher Faulet4ab26792021-12-01 09:50:41 +01003497 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3498 ((newsrv->flags & SRV_F_DEFSRV_USE_SSL) && newsrv->use_ssl != 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003499 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3500 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3501 }
Emeric Brun94324a42012-10-11 14:00:19 +02003502
Willy Tarreau034c88c2017-01-23 23:36:45 +01003503 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3504 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3505 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003506 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 +01003507
Willy Tarreau62c3be22012-01-20 13:12:32 +01003508 if (newsrv->trackit) {
Amaury Denoyelle669b6202021-07-13 10:35:23 +02003509 if (srv_apply_track(newsrv, curproxy)) {
3510 ++cfgerr;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003511 goto next_srv;
3512 }
Willy Tarreau62c3be22012-01-20 13:12:32 +01003513 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003514
Willy Tarreau62c3be22012-01-20 13:12:32 +01003515 next_srv:
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003516 reset_usermsgs_ctx();
Willy Tarreau62c3be22012-01-20 13:12:32 +01003517 newsrv = newsrv->next;
3518 }
3519
Olivier Houchard4e694042017-03-14 20:01:29 +01003520 /*
3521 * Try to generate dynamic cookies for servers now.
3522 * It couldn't be done earlier, since at the time we parsed
3523 * the server line, we may not have known yet that we
3524 * should use dynamic cookies, or the secret key may not
3525 * have been provided yet.
3526 */
3527 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3528 newsrv = curproxy->srv;
3529 while (newsrv != NULL) {
3530 srv_set_dyncookie(newsrv);
3531 newsrv = newsrv->next;
3532 }
3533
3534 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003535 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003536 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003537 */
3538
3539 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3540 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3541 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003542 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3543 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3544 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003545 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3546 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003547 if (chash_init_server_tree(curproxy) < 0) {
3548 cfgerr++;
3549 }
Willy Tarreau9757a382009-10-03 12:56:50 +02003550 } else {
3551 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3552 fwrr_init_server_groups(curproxy);
3553 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003554 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003555
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003556 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003557 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3558 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3559 fwlc_init_server_tree(curproxy);
3560 } else {
3561 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3562 fas_init_server_tree(curproxy);
3563 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003564 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003565
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003566 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003567 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3568 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003569 if (chash_init_server_tree(curproxy) < 0) {
3570 cfgerr++;
3571 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003572 } else {
3573 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3574 init_server_map(curproxy);
3575 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003576 break;
3577 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003578 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003579
3580 if (curproxy->options & PR_O_LOGASAP)
3581 curproxy->to_log &= ~LW_BYTES;
3582
William Lallemand2c04a5a2021-08-13 15:21:12 +02003583 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003584 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3585 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003586 ha_warning("log format ignored for %s '%s' since it has no log address.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003587 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003588 err_code |= ERR_WARN;
3589 }
3590
Christopher Faulet3b6446f2021-03-15 15:10:38 +01003591 if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) {
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003592 int optnum;
3593
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003594 if (curproxy->uri_auth) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003595 ha_warning("'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003596 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003597 err_code |= ERR_WARN;
3598 curproxy->uri_auth = NULL;
3599 }
3600
Willy Tarreaude7dc882017-03-10 11:49:21 +01003601 if (curproxy->capture_name) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003602 ha_warning("'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003603 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003604 err_code |= ERR_WARN;
3605 }
3606
3607 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003608 ha_warning("'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003609 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003610 err_code |= ERR_WARN;
3611 }
3612
3613 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003614 ha_warning("'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003615 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003616 err_code |= ERR_WARN;
3617 }
3618
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003619 if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003620 ha_warning("'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003621 proxy_type_str(curproxy), curproxy->id);
3622 err_code |= ERR_WARN;
3623 }
3624
Willy Tarreaude7dc882017-03-10 11:49:21 +01003625 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003626 ha_warning("'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003627 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003628 err_code |= ERR_WARN;
3629 }
3630
Willy Tarreau87cf5142011-08-19 22:57:24 +02003631 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003632 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003633 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003634 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003635 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003636 }
3637
3638 if (curproxy->options & PR_O_ORGTO) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003639 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003640 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003641 err_code |= ERR_WARN;
3642 curproxy->options &= ~PR_O_ORGTO;
3643 }
3644
3645 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3646 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3647 (curproxy->cap & cfg_opts[optnum].cap) &&
3648 (curproxy->options & cfg_opts[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003649 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003650 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003651 err_code |= ERR_WARN;
3652 curproxy->options &= ~cfg_opts[optnum].val;
3653 }
3654 }
3655
3656 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3657 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3658 (curproxy->cap & cfg_opts2[optnum].cap) &&
3659 (curproxy->options2 & cfg_opts2[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003660 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003661 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003662 err_code |= ERR_WARN;
3663 curproxy->options2 &= ~cfg_opts2[optnum].val;
3664 }
3665 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003666
Willy Tarreau29fbe512015-08-20 19:35:14 +02003667#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003668 if (curproxy->conn_src.bind_hdr_occ) {
3669 curproxy->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02003670 ha_warning("%s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003671 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003672 err_code |= ERR_WARN;
3673 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003674#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003675 }
3676
Willy Tarreaubaaee002006-06-26 02:48:02 +02003677 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003678 * ensure that we're not cross-dressing a TCP server into HTTP.
3679 */
3680 newsrv = curproxy->srv;
3681 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003682 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003683 ha_alert("%s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003684 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003685 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003686 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003687
Willy Tarreau0cec3312011-10-31 13:49:26 +01003688 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003689 ha_warning("%s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003690 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003691 err_code |= ERR_WARN;
3692 }
3693
Willy Tarreauc93cd162014-05-13 15:54:22 +02003694 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003695 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 +01003696 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003697 err_code |= ERR_WARN;
3698 }
3699
Willy Tarreau29fbe512015-08-20 19:35:14 +02003700#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003701 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3702 newsrv->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02003703 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 +01003704 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003705 err_code |= ERR_WARN;
3706 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003707#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003708
Willy Tarreau46deab62018-04-28 07:18:15 +02003709 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3710 curproxy->options &= ~PR_O_REUSE_MASK;
3711
Willy Tarreau21d2af32008-02-14 20:25:24 +01003712 newsrv = newsrv->next;
3713 }
3714
Christopher Fauletd7c91962015-04-30 11:48:27 +02003715 /* Check filter configuration, if any */
3716 cfgerr += flt_check(curproxy);
3717
Willy Tarreauc1a21672009-08-16 22:37:44 +02003718 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003719 if (!curproxy->accept)
3720 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003721
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003722 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
3723 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02003724 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003725
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003726 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003727 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003728 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003729 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003730
William Lallemandcf62f7e2018-10-26 14:47:40 +02003731 if (curproxy->mode == PR_MODE_CLI) {
3732 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3733 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3734 }
3735
Willy Tarreauc1a21672009-08-16 22:37:44 +02003736 /* both TCP and HTTP must check switching rules */
3737 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003738
3739 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003740 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003741 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3742 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 +02003743 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003744 }
3745
3746 if (curproxy->cap & PR_CAP_BE) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003747 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
3748 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02003749 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3750
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003751 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules) ||
3752 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_rep.inspect_rules)))
Emeric Brun97679e72010-09-23 17:56:44 +02003753 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3754
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003755 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003756 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003757 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003758 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003759
3760 /* If the backend does requires RDP cookie persistence, we have to
3761 * enable the corresponding analyser.
3762 */
3763 if (curproxy->options2 & PR_O2_RDPC_PRST)
3764 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003765
3766 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003767 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003768 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3769 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 +02003770 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003771 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003772
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003773 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003774 * attached to the current proxy */
3775 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3776 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003777 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003778
3779 if (!bind_conf->mux_proto)
3780 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003781
3782 /* it is possible that an incorrect mux was referenced
3783 * due to the proxy's mode not being taken into account
3784 * on first pass. Let's adjust it now.
3785 */
3786 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3787
3788 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003789 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
Christopher Fauleta717b992018-04-10 14:43:00 +02003790 proxy_type_str(curproxy), curproxy->id,
3791 (int)bind_conf->mux_proto->token.len,
3792 bind_conf->mux_proto->token.ptr,
3793 bind_conf->arg, bind_conf->file, bind_conf->line);
3794 cfgerr++;
3795 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003796
3797 /* update the mux */
3798 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003799 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003800 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3801 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003802 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003803
3804 if (!newsrv->mux_proto)
3805 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003806
3807 /* it is possible that an incorrect mux was referenced
3808 * due to the proxy's mode not being taken into account
3809 * on first pass. Let's adjust it now.
3810 */
3811 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3812
3813 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003814 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003815 proxy_type_str(curproxy), curproxy->id,
3816 (int)newsrv->mux_proto->token.len,
3817 newsrv->mux_proto->token.ptr,
3818 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3819 cfgerr++;
3820 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003821
3822 /* update the mux */
3823 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003824 }
Amaury Denoyellef2c27a52021-07-23 15:46:46 +02003825
3826 /* Allocate default tcp-check rules for proxies without
3827 * explicit rules.
3828 */
3829 if (curproxy->cap & PR_CAP_BE) {
3830 if (!(curproxy->options2 & PR_O2_CHK_ANY)) {
3831 struct tcpcheck_ruleset *rs = NULL;
3832 struct tcpcheck_rules *rules = &curproxy->tcpcheck_rules;
3833
3834 curproxy->options2 |= PR_O2_TCPCHK_CHK;
3835
3836 rs = find_tcpcheck_ruleset("*tcp-check");
3837 if (!rs) {
3838 rs = create_tcpcheck_ruleset("*tcp-check");
3839 if (rs == NULL) {
3840 ha_alert("config: %s '%s': out of memory.\n",
3841 proxy_type_str(curproxy), curproxy->id);
3842 cfgerr++;
3843 }
3844 }
3845
3846 free_tcpcheck_vars(&rules->preset_vars);
3847 rules->list = &rs->rules;
3848 rules->flags = 0;
3849 }
3850 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01003851 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003852
Willy Tarreau4cdac162021-03-05 10:48:42 +01003853 /***********************************************************/
3854 /* At this point, target names have already been resolved. */
3855 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01003856
Willy Tarreau4cdac162021-03-05 10:48:42 +01003857 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01003858
Willy Tarreau4cdac162021-03-05 10:48:42 +01003859 list_for_each_entry(newsrv, &servers_list, global_list) {
3860 /* initialize idle conns lists */
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02003861 if (srv_init_per_thr(newsrv) == -1) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003862 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
3863 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01003864 cfgerr++;
3865 continue;
3866 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003867
Willy Tarreau4cdac162021-03-05 10:48:42 +01003868 if (newsrv->max_idle_conns != 0) {
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003869 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
3870 if (!newsrv->curr_idle_thr) {
3871 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3872 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3873 cfgerr++;
3874 continue;
3875 }
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003876
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003877 }
3878 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003879
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003880 idle_conn_task = task_new_anywhere();
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003881 if (!idle_conn_task) {
3882 ha_alert("parsing : failed to allocate global idle connection task.\n");
3883 cfgerr++;
3884 }
3885 else {
3886 idle_conn_task->process = srv_cleanup_idle_conns;
3887 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003888
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003889 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003890 idle_conns[i].cleanup_task = task_new_on(i);
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003891 if (!idle_conns[i].cleanup_task) {
3892 ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i);
3893 cfgerr++;
3894 break;
Willy Tarreau4cdac162021-03-05 10:48:42 +01003895 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003896
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003897 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
3898 idle_conns[i].cleanup_task->context = NULL;
3899 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
3900 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Willy Tarreau835daa12019-02-07 14:46:29 +01003901 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003902 }
3903
Willy Tarreau419ead82014-09-16 13:41:21 +02003904 /* perform the final checks before creating tasks */
3905
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003906 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003907 struct listener *listener;
3908 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003909
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003910 /* Configure SSL for each bind line.
3911 * Note: if configuration fails at some point, the ->ctx member
3912 * remains NULL so that listeners can later detach.
3913 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003914 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003915 if (bind_conf->xprt->prepare_bind_conf &&
3916 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003917 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003918 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003919
Willy Tarreaue6b98942007-10-29 01:09:36 +01003920 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003921 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003922 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003923 if (!listener->luid) {
3924 /* listener ID not set, use automatic numbering with first
3925 * spare entry starting with next_luid.
3926 */
3927 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3928 listener->conf.id.key = listener->luid = next_id;
3929 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003930 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003931 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003932
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003933 /* enable separate counters */
3934 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003935 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003936 if (!listener->name)
3937 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003938 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003939
Willy Tarreaue6b98942007-10-29 01:09:36 +01003940 if (curproxy->options & PR_O_TCP_NOLING)
3941 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003942 if (!listener->maxaccept)
Willy Tarreau66161322021-02-19 15:50:27 +01003943 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau16a21472012-11-19 12:39:59 +01003944
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01003945 /* listener accept callback */
3946 listener->accept = session_accept_fd;
3947#ifdef USE_QUIC
3948 /* override the accept callback for QUIC listeners. */
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01003949 if (listener->flags & LI_F_QUIC_LISTENER) {
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01003950 listener->accept = quic_session_accept;
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01003951 li_init_per_thr(listener);
3952 }
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01003953#endif
Amaury Denoyelle57af0692022-01-18 15:39:02 +01003954
Willy Tarreauc1a21672009-08-16 22:37:44 +02003955 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003956 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003957
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003958 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003959 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003960
Willy Tarreau620408f2016-10-21 16:37:51 +02003961 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3962 listener->options |= LI_O_TCP_L5_RULES;
3963
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003964 /* smart accept mode is automatic in HTTP mode */
3965 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003966 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003967 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3968 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003969 }
3970
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003971 /* Release unused SSL configs */
3972 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003973 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3974 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003975 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003976
Willy Tarreau918ff602011-07-25 16:33:49 +02003977 /* create the task associated with the proxy */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003978 curproxy->task = task_new_anywhere();
Willy Tarreau918ff602011-07-25 16:33:49 +02003979 if (curproxy->task) {
3980 curproxy->task->context = curproxy;
3981 curproxy->task->process = manage_proxy;
Christopher Faulet56717802021-10-13 10:10:09 +02003982 curproxy->flags |= PR_FL_READY;
Willy Tarreau918ff602011-07-25 16:33:49 +02003983 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003984 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3985 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003986 cfgerr++;
3987 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003988 }
3989
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003990 /*
3991 * Recount currently required checks.
3992 */
3993
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003994 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003995 int optnum;
3996
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003997 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3998 if (curproxy->options & cfg_opts[optnum].val)
3999 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004000
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004001 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
4002 if (curproxy->options2 & cfg_opts2[optnum].val)
4003 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004004 }
4005
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004006 if (cfg_peers) {
4007 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02004008 struct peer *p, *pb;
4009
Willy Tarreau1e273012015-05-01 19:15:17 +02004010 /* Remove all peers sections which don't have a valid listener,
4011 * which are not used by any table, or which are bound to more
4012 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02004013 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004014 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02004015 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004016 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02004017 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004018
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02004019 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004020 /* the "disabled" keyword was present */
4021 if (curpeers->peers_fe)
4022 stop_proxy(curpeers->peers_fe);
4023 curpeers->peers_fe = NULL;
4024 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02004025 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004026 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
4027 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004028 if (curpeers->peers_fe)
4029 stop_proxy(curpeers->peers_fe);
4030 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004031 }
4032 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004033 /* Initializes the transport layer of the server part of all the peers belonging to
4034 * <curpeers> section if required.
4035 * Note that ->srv is used by the local peer of a new process to connect to the local peer
4036 * of an old process.
4037 */
Christopher Faulet56717802021-10-13 10:10:09 +02004038 curpeers->peers_fe->flags |= PR_FL_READY;
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004039 p = curpeers->remote;
4040 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004041 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004042 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 +01004043 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
4044 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004045 p = p->next;
4046 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004047 /* Configure the SSL bindings of the local peer if required. */
4048 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
4049 struct list *l;
4050 struct bind_conf *bind_conf;
4051
4052 l = &curpeers->peers_fe->conf.bind;
4053 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
4054 if (bind_conf->xprt->prepare_bind_conf &&
4055 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4056 cfgerr++;
4057 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004058 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004059 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4060 curpeers->id);
4061 cfgerr++;
4062 break;
4063 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004064 last = &curpeers->next;
4065 continue;
4066 }
4067
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004068 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004069 p = curpeers->remote;
4070 while (p) {
4071 pb = p->next;
4072 free(p->id);
4073 free(p);
4074 p = pb;
4075 }
4076
4077 /* Destroy and unlink this curpeers section.
4078 * Note: curpeers is backed up into *last.
4079 */
4080 free(curpeers->id);
4081 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004082 /* Reset any refereance to this peers section in the list of stick-tables */
4083 for (t = stktables_list; t; t = t->next) {
4084 if (t->peers.p && t->peers.p == *last)
4085 t->peers.p = NULL;
4086 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004087 free(*last);
4088 *last = curpeers;
4089 }
4090 }
4091
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004092 for (t = stktables_list; t; t = t->next) {
4093 if (t->proxy)
4094 continue;
4095 if (!stktable_init(t)) {
4096 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4097 cfgerr++;
4098 }
4099 }
4100
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004101 /* initialize stick-tables on backend capable proxies. This must not
4102 * be done earlier because the data size may be discovered while parsing
4103 * other proxies.
4104 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004105 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004106 if ((curproxy->flags & PR_FL_DISABLED) || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004107 continue;
4108
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004109 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004110 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004111 cfgerr++;
4112 }
4113 }
4114
Simon Horman0d16a402015-01-30 11:22:58 +09004115 if (mailers) {
4116 struct mailers *curmailers = mailers, **last;
4117 struct mailer *m, *mb;
4118
4119 /* Remove all mailers sections which don't have a valid listener.
4120 * This can happen when a mailers section is never referenced.
4121 */
4122 last = &mailers;
4123 while (*last) {
4124 curmailers = *last;
4125 if (curmailers->users) {
4126 last = &curmailers->next;
4127 continue;
4128 }
4129
Christopher Faulet767a84b2017-11-24 16:50:31 +01004130 ha_warning("Removing incomplete section 'mailers %s'.\n",
4131 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004132
4133 m = curmailers->mailer_list;
4134 while (m) {
4135 mb = m->next;
4136 free(m->id);
4137 free(m);
4138 m = mb;
4139 }
4140
4141 /* Destroy and unlink this curmailers section.
4142 * Note: curmailers is backed up into *last.
4143 */
4144 free(curmailers->id);
4145 curmailers = curmailers->next;
4146 free(*last);
4147 *last = curmailers;
4148 }
4149 }
4150
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004151 /* Update server_state_file_name to backend name if backend is supposed to use
4152 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004153 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004154 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4155 curproxy->server_state_file_name == NULL)
4156 curproxy->server_state_file_name = strdup(curproxy->id);
4157 }
4158
Emeric Brun750fe792020-12-23 16:51:12 +01004159 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06004160 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004161 ha_warning("resolvers '%s' [%s:%d] has no nameservers configured!\n",
Ben Draut054fbee2018-04-13 15:43:04 -06004162 curr_resolvers->id, curr_resolvers->conf.file,
4163 curr_resolvers->conf.line);
4164 err_code |= ERR_WARN;
4165 }
4166 }
4167
William Lallemand48b4bb42017-10-23 14:36:34 +02004168 list_for_each_entry(postparser, &postparsers, list) {
4169 if (postparser->func)
4170 cfgerr += postparser->func();
4171 }
4172
Willy Tarreaubb925012009-07-23 13:36:36 +02004173 if (cfgerr > 0)
4174 err_code |= ERR_ALERT | ERR_FATAL;
4175 out:
4176 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004177}
4178
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004179/*
4180 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4181 * parsing sessions.
4182 */
4183void cfg_register_keywords(struct cfg_kw_list *kwl)
4184{
Willy Tarreau2b718102021-04-21 07:32:39 +02004185 LIST_APPEND(&cfg_keywords.list, &kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004186}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004187
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004188/*
4189 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4190 */
4191void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4192{
Willy Tarreau2b718102021-04-21 07:32:39 +02004193 LIST_DELETE(&kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004194 LIST_INIT(&kwl->list);
4195}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004196
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004197/* this function register new section in the haproxy configuration file.
4198 * <section_name> is the name of this new section and <section_parser>
4199 * is the called parser. If two section declaration have the same name,
4200 * only the first declared is used.
4201 */
4202int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004203 int (*section_parser)(const char *, int, char **, int),
4204 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004205{
4206 struct cfg_section *cs;
4207
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004208 list_for_each_entry(cs, &sections, list) {
4209 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004210 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004211 return 0;
4212 }
4213 }
4214
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004215 cs = calloc(1, sizeof(*cs));
4216 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004217 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004218 return 0;
4219 }
4220
4221 cs->section_name = section_name;
4222 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004223 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004224
Willy Tarreau2b718102021-04-21 07:32:39 +02004225 LIST_APPEND(&sections, &cs->list);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004226
4227 return 1;
4228}
4229
William Lallemand48b4bb42017-10-23 14:36:34 +02004230/* this function register a new function which will be called once the haproxy
4231 * configuration file has been parsed. It's useful to check dependencies
4232 * between sections or to resolve items once everything is parsed.
4233 */
4234int cfg_register_postparser(char *name, int (*func)())
4235{
4236 struct cfg_postparser *cp;
4237
4238 cp = calloc(1, sizeof(*cp));
4239 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004240 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004241 return 0;
4242 }
4243 cp->name = name;
4244 cp->func = func;
4245
Willy Tarreau2b718102021-04-21 07:32:39 +02004246 LIST_APPEND(&postparsers, &cp->list);
William Lallemand48b4bb42017-10-23 14:36:34 +02004247
4248 return 1;
4249}
4250
Willy Tarreaubaaee002006-06-26 02:48:02 +02004251/*
David Carlier845efb52015-09-25 11:49:18 +01004252 * free all config section entries
4253 */
4254void cfg_unregister_sections(void)
4255{
4256 struct cfg_section *cs, *ics;
4257
4258 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004259 LIST_DELETE(&cs->list);
David Carlier845efb52015-09-25 11:49:18 +01004260 free(cs);
4261 }
4262}
4263
Christopher Faulet7110b402016-10-26 11:09:44 +02004264void cfg_backup_sections(struct list *backup_sections)
4265{
4266 struct cfg_section *cs, *ics;
4267
4268 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004269 LIST_DELETE(&cs->list);
4270 LIST_APPEND(backup_sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004271 }
4272}
4273
4274void cfg_restore_sections(struct list *backup_sections)
4275{
4276 struct cfg_section *cs, *ics;
4277
4278 list_for_each_entry_safe(cs, ics, backup_sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004279 LIST_DELETE(&cs->list);
4280 LIST_APPEND(&sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004281 }
4282}
4283
Willy Tarreauca1acd62022-03-29 15:02:44 +02004284/* dumps all registered keywords by section on stdout */
4285void cfg_dump_registered_keywords()
4286{
4287 const char* sect_names[] = { "", "global", "listen", "userlist", "peers", 0 };
4288 int section;
4289 int index;
4290
4291 for (section = 1; sect_names[section]; section++) {
4292 struct cfg_kw_list *kwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004293 const struct cfg_keyword *kwp, *kwn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004294
4295 printf("%s\n", sect_names[section]);
Willy Tarreaud9058262022-03-30 11:21:32 +02004296
4297 for (kwn = kwp = NULL;; kwp = kwn) {
4298 list_for_each_entry(kwl, &cfg_keywords.list, list) {
4299 for (index = 0; kwl->kw[index].kw != NULL; index++)
4300 if (kwl->kw[index].section == section &&
4301 strordered(kwp ? kwp->kw : NULL, kwl->kw[index].kw, kwn != kwp ? kwn->kw : NULL))
4302 kwn = &kwl->kw[index];
4303 }
4304 if (kwn == kwp)
4305 break;
4306 printf("\t%s\n", kwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004307 }
4308
4309 if (section == CFG_LISTEN) {
4310 /* there are plenty of other keywords there */
4311 extern struct list tcp_req_conn_keywords, tcp_req_sess_keywords,
4312 tcp_req_cont_keywords, tcp_res_cont_keywords;
4313 extern struct bind_kw_list bind_keywords;
4314 extern struct ssl_bind_kw ssl_bind_kws[] __maybe_unused;
4315 extern struct srv_kw_list srv_keywords;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004316 struct bind_kw_list *bkwl;
4317 struct srv_kw_list *skwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004318 const struct bind_kw *bkwp, *bkwn;
4319 const struct srv_kw *skwp, *skwn;
4320 const struct ssl_bind_kw *sbkwp __maybe_unused, *sbkwn __maybe_unused;
4321 const struct cfg_opt *coptp, *coptn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004322
Willy Tarreaud9058262022-03-30 11:21:32 +02004323 for (bkwn = bkwp = NULL;; bkwp = bkwn) {
4324 list_for_each_entry(bkwl, &bind_keywords.list, list) {
4325 for (index = 0; bkwl->kw[index].kw != NULL; index++)
4326 if (strordered(bkwp ? bkwp->kw : NULL,
4327 bkwl->kw[index].kw,
4328 bkwn != bkwp ? bkwn->kw : NULL))
4329 bkwn = &bkwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004330 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004331 if (bkwn == bkwp)
4332 break;
4333
4334 if (!bkwn->skip)
4335 printf("\tbind <addr> %s\n", bkwn->kw);
4336 else
4337 printf("\tbind <addr> %s +%d\n", bkwn->kw, bkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004338 }
4339
4340#if defined(USE_OPENSSL)
Willy Tarreaud9058262022-03-30 11:21:32 +02004341 for (sbkwn = sbkwp = NULL;; sbkwp = sbkwn) {
4342 for (index = 0; ssl_bind_kws[index].kw != NULL; index++) {
4343 if (strordered(sbkwp ? sbkwp->kw : NULL,
4344 ssl_bind_kws[index].kw,
4345 sbkwn != sbkwp ? sbkwn->kw : NULL))
4346 sbkwn = &ssl_bind_kws[index];
4347 }
4348 if (sbkwn == sbkwp)
4349 break;
4350 if (!sbkwn->skip)
4351 printf("\tbind <addr> ssl %s\n", sbkwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004352 else
Willy Tarreaud9058262022-03-30 11:21:32 +02004353 printf("\tbind <addr> ssl %s +%d\n", sbkwn->kw, sbkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004354 }
4355#endif
4356
Willy Tarreaud9058262022-03-30 11:21:32 +02004357 for (skwn = skwp = NULL;; skwp = skwn) {
4358 list_for_each_entry(skwl, &srv_keywords.list, list) {
4359 for (index = 0; skwl->kw[index].kw != NULL; index++)
4360 if (strordered(skwp ? skwp->kw : NULL,
4361 skwl->kw[index].kw,
4362 skwn != skwp ? skwn->kw : NULL))
4363 skwn = &skwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004364 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004365 if (skwn == skwp)
4366 break;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004367
Willy Tarreaud9058262022-03-30 11:21:32 +02004368 if (!skwn->skip)
4369 printf("\tserver <name> <addr> %s\n", skwn->kw);
4370 else
4371 printf("\tserver <name> <addr> %s +%d\n", skwn->kw, skwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004372 }
4373
Willy Tarreaud9058262022-03-30 11:21:32 +02004374 for (coptn = coptp = NULL;; coptp = coptn) {
4375 for (index = 0; cfg_opts[index].name; index++)
4376 if (strordered(coptp ? coptp->name : NULL,
4377 cfg_opts[index].name,
4378 coptn != coptp ? coptn->name : NULL))
4379 coptn = &cfg_opts[index];
4380
4381 for (index = 0; cfg_opts2[index].name; index++)
4382 if (strordered(coptp ? coptp->name : NULL,
4383 cfg_opts2[index].name,
4384 coptn != coptp ? coptn->name : NULL))
4385 coptn = &cfg_opts2[index];
4386 if (coptn == coptp)
4387 break;
4388
4389 printf("\toption %s [ ", coptn->name);
4390 if (coptn->cap & PR_CAP_FE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004391 printf("FE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004392 if (coptn->cap & PR_CAP_BE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004393 printf("BE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004394 if (coptn->mode == PR_MODE_HTTP)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004395 printf("HTTP ");
4396 printf("]\n");
4397 }
4398
Willy Tarreaud9058262022-03-30 11:21:32 +02004399 dump_act_rules(&tcp_req_conn_keywords, "\ttcp-request connection ");
4400 dump_act_rules(&tcp_req_sess_keywords, "\ttcp-request session ");
4401 dump_act_rules(&tcp_req_cont_keywords, "\ttcp-request content ");
4402 dump_act_rules(&tcp_res_cont_keywords, "\ttcp-response content ");
4403 dump_act_rules(&http_req_keywords.list, "\thttp-request ");
4404 dump_act_rules(&http_res_keywords.list, "\thttp-response ");
4405 dump_act_rules(&http_after_res_keywords.list, "\thttp-after-response ");
Willy Tarreauca1acd62022-03-29 15:02:44 +02004406 }
4407 }
4408}
4409
Willy Tarreaue6552512018-11-26 11:33:13 +01004410/* these are the config sections handled by default */
4411REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4412REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4413REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4414REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4415REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4416REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4417REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4418REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4419REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004420
Willy Tarreau8a022d52021-04-27 20:29:11 +02004421static struct cfg_kw_list cfg_kws = {{ },{
4422 { CFG_GLOBAL, "default-path", cfg_parse_global_def_path },
4423 { /* END */ }
4424}};
4425
4426INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4427
David Carlier845efb52015-09-25 11:49:18 +01004428/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004429 * Local variables:
4430 * c-indent-level: 8
4431 * c-basic-offset: 8
4432 * End:
4433 */