blob: 4201c1354183604c69eae6166e2748d15de832d0 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Configuration parser
3 *
Willy Tarreauff011f22011-01-06 17:51:27 +01004 * Copyright 2000-2011 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreau2e644722022-08-07 16:55:07 +020013/* This is to have crypt() and sched_setaffinity() defined on Linux */
Cyril Bonté1a0191d2014-08-29 20:20:02 +020014#define _GNU_SOURCE
15
Willy Tarreau2e644722022-08-07 16:55:07 +020016#ifdef USE_LIBCRYPT
Willy Tarreaue5733232019-05-22 19:24:06 +020017#ifdef USE_CRYPT_H
Cyril Bonté1a0191d2014-08-29 20:20:02 +020018/* some platforms such as Solaris need this */
19#include <crypt.h>
20#endif
Willy Tarreaue5733232019-05-22 19:24:06 +020021#endif /* USE_LIBCRYPT */
Cyril Bonté1a0191d2014-08-29 20:20:02 +020022
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +010023#include <dirent.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020024#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <netdb.h>
28#include <ctype.h>
Willy Tarreau95c20ac2007-03-25 15:39:23 +020029#include <pwd.h>
30#include <grp.h>
Willy Tarreau0b4ed902007-03-26 00:18:40 +020031#include <errno.h>
Willy Tarreau2e644722022-08-07 16:55:07 +020032#ifdef USE_CPU_AFFINITY
33#include <sched.h>
34#endif
Willy Tarreau3f49b302007-06-11 00:29:26 +020035#include <sys/types.h>
36#include <sys/stat.h>
Willy Tarreau3f49b302007-06-11 00:29:26 +020037#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020038
Willy Tarreaudcc048a2020-06-04 19:11:43 +020039#include <haproxy/acl.h>
Christopher Faulet42c6cf92021-03-25 17:19:04 +010040#include <haproxy/action.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020041#include <haproxy/api.h>
Willy Tarreau732525f2021-05-06 15:49:04 +020042#include <haproxy/arg.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020043#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020044#include <haproxy/backend.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020045#include <haproxy/capture.h>
Willy Tarreau66243b42021-07-16 15:39:28 +020046#include <haproxy/cfgcond.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020047#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020048#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020049#include <haproxy/check.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020050#include <haproxy/chunk.h>
Willy Tarreau55542642021-10-08 09:33:24 +020051#include <haproxy/clock.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020052#ifdef USE_CPU_AFFINITY
Amaury Denoyellec90932b2021-04-14 16:16:03 +020053#include <haproxy/cpuset.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020054#endif
Willy Tarreau7ea393d2020-06-04 18:02:10 +020055#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020056#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020057#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020058#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020059#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020060#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020061#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020062#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020063#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020064#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020065#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020066#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020067#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020068#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020069#include <haproxy/mailers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020070#include <haproxy/namespace.h>
Amaury Denoyelleb59b8892022-01-25 17:48:47 +010071#include <haproxy/quic_sock.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020072#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020073#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020074#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020075#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020076#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020077#include <haproxy/proxy.h>
Emeric Brunc9437992021-02-12 19:42:55 +010078#include <haproxy/resolvers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020079#include <haproxy/sample.h>
80#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020081#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020082#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020083#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020084#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020085#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020086#include <haproxy/tcp_rules.h>
Amaury Denoyellef2c27a52021-07-23 15:46:46 +020087#include <haproxy/tcpcheck.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020088#include <haproxy/thread.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020089#include <haproxy/tools.h>
90#include <haproxy/uri_auth-t.h>
Frédéric Lécaille884f2e92020-11-23 14:23:21 +010091#include <haproxy/xprt_quic.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020092
93
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010094/* Used to chain configuration sections definitions. This list
95 * stores struct cfg_section
96 */
97struct list sections = LIST_HEAD_INIT(sections);
98
William Lallemand48b4bb42017-10-23 14:36:34 +020099struct list postparsers = LIST_HEAD_INIT(postparsers);
100
Eric Salama1b8dacc2021-03-16 15:12:17 +0100101extern struct proxy *mworker_proxy;
102
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100103char *cursection = NULL;
Willy Tarreauc8d5b952019-02-27 17:25:52 +0100104int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +0100105int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +0100106char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200107
Willy Tarreau8a022d52021-04-27 20:29:11 +0200108/* how to handle default paths */
109static enum default_path_mode {
110 DEFAULT_PATH_CURRENT = 0, /* "current": paths are relative to CWD (this is the default) */
111 DEFAULT_PATH_CONFIG, /* "config": paths are relative to config file */
112 DEFAULT_PATH_PARENT, /* "parent": paths are relative to config file's ".." */
113 DEFAULT_PATH_ORIGIN, /* "origin": paths are relative to default_path_origin */
114} default_path_mode;
115
116static char initial_cwd[PATH_MAX];
117static char current_cwd[PATH_MAX];
118
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200119/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100120struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200121 .list = LIST_HEAD_INIT(cfg_keywords.list)
122};
123
Willy Tarreaubaaee002006-06-26 02:48:02 +0200124/*
125 * converts <str> to a list of listeners which are dynamically allocated.
126 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
127 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
128 * - <port> is a numerical port from 1 to 65535 ;
129 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
130 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200131 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
132 * not NULL, it must be a valid pointer to either NULL or a freeable area that
133 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200134 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200135int 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 +0200136{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200137 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100138 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200139 int port, end;
140
141 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200142
Willy Tarreaubaaee002006-06-26 02:48:02 +0200143 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200144 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100145 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200146
147 str = next;
148 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100149 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200150 *next++ = 0;
151 }
152
Willy Tarreau5fc93282020-09-16 18:25:03 +0200153 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Eric Salama1b8dacc2021-03-16 15:12:17 +0100154 (curproxy == global.cli_fe || curproxy == mworker_proxy) ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200155 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200156 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100157 if (!ss2)
158 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200159
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100160 /* OK the address looks correct */
Willy Tarreau91b780a2022-05-20 16:15:01 +0200161 if (proto->proto_type == PROTO_TYPE_DGRAM)
162 bind_conf->options |= BC_O_USE_SOCK_DGRAM;
163 else
164 bind_conf->options |= BC_O_USE_SOCK_STREAM;
165
166 if (proto->xprt_type == PROTO_TYPE_DGRAM)
167 bind_conf->options |= BC_O_USE_XPRT_DGRAM;
168 else
169 bind_conf->options |= BC_O_USE_XPRT_STREAM;
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100170
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200171 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200172 memprintf(err, "%s for address '%s'.\n", *err, str);
173 goto fail;
174 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200175 } /* end while(next) */
176 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200177 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200178 fail:
179 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200180 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200181}
182
William Lallemand6e62fb62015-04-28 16:55:23 +0200183/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200184 * converts <str> to a list of datagram-oriented listeners which are dynamically
185 * allocated.
186 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
187 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
188 * - <port> is a numerical port from 1 to 65535 ;
189 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
190 * This can be repeated as many times as necessary, separated by a coma.
191 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
192 * not NULL, it must be a valid pointer to either NULL or a freeable area that
193 * will be replaced with an error message.
194 */
195int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
196{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200197 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200198 char *next, *dupstr;
199 int port, end;
200
201 next = dupstr = strdup(str);
202
203 while (next && *next) {
204 struct sockaddr_storage *ss2;
205 int fd = -1;
206
207 str = next;
208 /* 1) look for the end of the first address */
209 if ((next = strchr(str, ',')) != NULL) {
210 *next++ = 0;
211 }
212
Willy Tarreau5fc93282020-09-16 18:25:03 +0200213 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreau4975d142021-03-13 11:00:33 +0100214 curproxy == global.cli_fe ? NULL : global.unix_bind.prefix,
Willy Tarreauaa333122020-09-16 15:13:04 +0200215 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
216 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
217 if (!ss2)
218 goto fail;
219
220 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200221 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200222 memprintf(err, "%s for address '%s'.\n", *err, str);
223 goto fail;
224 }
225 } /* end while(next) */
226 free(dupstr);
227 return 1;
228 fail:
229 free(dupstr);
230 return 0;
231}
232
233/*
Willy Tarreau08138612021-05-08 19:58:37 +0200234 * Sends a warning if proxy <proxy> does not have at least one of the
235 * capabilities in <cap>. An optional <hint> may be added at the end
236 * of the warning to help the user. Returns 1 if a warning was emitted
237 * or 0 if the condition is valid.
238 */
239int warnifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint)
240{
241 char *msg;
242
243 switch (cap) {
244 case PR_CAP_BE: msg = "no backend"; break;
245 case PR_CAP_FE: msg = "no frontend"; break;
246 case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break;
247 default: msg = "not enough"; break;
248 }
249
250 if (!(proxy->cap & cap)) {
251 ha_warning("parsing [%s:%d] : '%s' ignored because %s '%s' has %s capability.%s\n",
252 file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : "");
253 return 1;
254 }
255 return 0;
256}
257
258/*
259 * Sends an alert if proxy <proxy> does not have at least one of the
260 * capabilities in <cap>. An optional <hint> may be added at the end
261 * of the alert to help the user. Returns 1 if an alert was emitted
262 * or 0 if the condition is valid.
263 */
264int failifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint)
265{
266 char *msg;
267
268 switch (cap) {
269 case PR_CAP_BE: msg = "no backend"; break;
270 case PR_CAP_FE: msg = "no frontend"; break;
271 case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break;
272 default: msg = "not enough"; break;
273 }
274
275 if (!(proxy->cap & cap)) {
276 ha_alert("parsing [%s:%d] : '%s' not allowed because %s '%s' has %s capability.%s\n",
277 file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : "");
278 return 1;
279 }
280 return 0;
281}
282
283/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100284 * Report an error in <msg> when there are too many arguments. This version is
285 * intended to be used by keyword parsers so that the message will be included
286 * into the general error message. The index is the current keyword in args.
287 * Return 0 if the number of argument is correct, otherwise build a message and
288 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
289 * message may also be null, it will simply not be produced (useful to check only).
290 * <msg> and <err_code> are only affected on error.
291 */
292int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
293{
294 int i;
295
296 if (!*args[index + maxarg + 1])
297 return 0;
298
299 if (msg) {
300 *msg = NULL;
301 memprintf(msg, "%s", args[0]);
302 for (i = 1; i <= index; i++)
303 memprintf(msg, "%s %s", *msg, args[i]);
304
305 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
306 }
307 if (err_code)
308 *err_code |= ERR_ALERT | ERR_FATAL;
309
310 return 1;
311}
312
313/*
314 * same as too_many_args_idx with a 0 index
315 */
316int too_many_args(int maxarg, char **args, char **msg, int *err_code)
317{
318 return too_many_args_idx(maxarg, 0, args, msg, err_code);
319}
320
321/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200322 * Report a fatal Alert when there is too much arguments
323 * The index is the current keyword in args
324 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
325 * Fill err_code with an ERR_ALERT and an ERR_FATAL
326 */
327int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
328{
329 char *kw = NULL;
330 int i;
331
332 if (!*args[index + maxarg + 1])
333 return 0;
334
335 memprintf(&kw, "%s", args[0]);
336 for (i = 1; i <= index; i++) {
337 memprintf(&kw, "%s %s", kw, args[i]);
338 }
339
Christopher Faulet767a84b2017-11-24 16:50:31 +0100340 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 +0200341 free(kw);
342 *err_code |= ERR_ALERT | ERR_FATAL;
343 return 1;
344}
345
346/*
347 * same as alertif_too_many_args_idx with a 0 index
348 */
349int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
350{
351 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
352}
353
Willy Tarreau61d18892009-03-31 10:49:21 +0200354
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100355/* Report it if a request ACL condition uses some keywords that are incompatible
356 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
357 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
358 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100359 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100360int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100361{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100362 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200363 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100364
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100365 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100366 return 0;
367
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100368 acl = acl_cond_conflicts(cond, where);
369 if (acl) {
370 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100371 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
372 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100373 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100374 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
375 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100376 return ERR_WARN;
377 }
378 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100379 return 0;
380
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100381 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100382 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
383 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100384 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100385 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
386 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100387 return ERR_WARN;
388}
389
Christopher Faulet581db2b2021-03-26 10:02:46 +0100390/* Report it if an ACL uses a L6 sample fetch from an HTTP proxy. It returns
391 * either 0 or ERR_WARN so that its result can be or'ed with err_code. Note that
392 * <cond> may be NULL and then will be ignored.
393*/
394int warnif_tcp_http_cond(const struct proxy *px, const struct acl_cond *cond)
395{
396 if (!cond || px->mode != PR_MODE_HTTP)
397 return 0;
398
399 if (cond->use & (SMP_USE_L6REQ|SMP_USE_L6RES)) {
400 ha_warning("Proxy '%s': L6 sample fetches ignored on HTTP proxies (declared at %s:%d).\n",
401 px->id, cond->file, cond->line);
402 return ERR_WARN;
403 }
404 return 0;
405}
406
Willy Tarreaue2afcc42021-03-12 09:08:04 +0100407/* try to find in <list> the word that looks closest to <word> by counting
408 * transitions between letters, digits and other characters. Will return the
409 * best matching word if found, otherwise NULL. An optional array of extra
410 * words to compare may be passed in <extra>, but it must then be terminated
411 * by a NULL entry. If unused it may be NULL.
412 */
413const char *cfg_find_best_match(const char *word, const struct list *list, int section, const char **extra)
414{
415 uint8_t word_sig[1024]; // 0..25=letter, 26=digit, 27=other, 28=begin, 29=end
416 uint8_t list_sig[1024];
417 const struct cfg_kw_list *kwl;
418 int index;
419 const char *best_ptr = NULL;
420 int dist, best_dist = INT_MAX;
421
422 make_word_fingerprint(word_sig, word);
423 list_for_each_entry(kwl, list, list) {
424 for (index = 0; kwl->kw[index].kw != NULL; index++) {
425 if (kwl->kw[index].section != section)
426 continue;
427
428 make_word_fingerprint(list_sig, kwl->kw[index].kw);
429 dist = word_fingerprint_distance(word_sig, list_sig);
430 if (dist < best_dist) {
431 best_dist = dist;
432 best_ptr = kwl->kw[index].kw;
433 }
434 }
435 }
436
437 while (extra && *extra) {
438 make_word_fingerprint(list_sig, *extra);
439 dist = word_fingerprint_distance(word_sig, list_sig);
440 if (dist < best_dist) {
441 best_dist = dist;
442 best_ptr = *extra;
443 }
444 extra++;
445 }
446
447 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
448 best_ptr = NULL;
449 return best_ptr;
450}
451
Christopher Faulet62519022017-10-16 15:49:32 +0200452/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100453 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100454 * two such numbers delimited by a dash ('-'). On success, it returns
455 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200456 *
457 * Note: this function can also be used to parse a thread number or a set of
458 * threads.
459 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100460int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200461{
Christopher Faulet26028f62017-11-22 15:01:51 +0100462 if (autoinc) {
463 *autoinc = 0;
464 if (strncmp(arg, "auto:", 5) == 0) {
465 arg += 5;
466 *autoinc = 1;
467 }
468 }
469
Christopher Faulet62519022017-10-16 15:49:32 +0200470 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100471 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200472 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100473 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200474 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100475 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200476 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100477 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100478 unsigned int low, high;
479
Christopher Faulet18cca782019-02-07 16:29:41 +0100480 for (p = arg; *p; p++) {
481 if (*p == '-' && !dash)
482 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100483 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100484 memprintf(err, "'%s' is not a valid number/range.", arg);
485 return -1;
486 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100487 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100488
489 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100490 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100491 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100492
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100493 if (high < low) {
494 unsigned int swap = low;
495 low = high;
496 high = swap;
497 }
498
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100499 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100500 memprintf(err, "'%s' is not a valid number/range."
501 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100502 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100503 return 1;
504 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100505
506 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100507 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200508 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100509 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100510
Christopher Faulet5ab51772017-11-22 11:21:58 +0100511 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200512}
513
David Carlier7e351ee2017-12-01 09:14:02 +0000514#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200515/* Parse cpu sets. Each CPU set is either a unique number between 0 and
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200516 * ha_cpuset_size() - 1 or a range with two such numbers delimited by a dash
Amaury Denoyellea8082352021-04-06 16:46:15 +0200517 * ('-'). If <comma_allowed> is set, each CPU set can be a list of unique
518 * numbers or ranges separated by a comma. It is also possible to specify
519 * multiple cpu numbers or ranges in distinct argument in <args>. On success,
520 * it returns 0, otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200521 */
Amaury Denoyellea8082352021-04-06 16:46:15 +0200522unsigned long parse_cpu_set(const char **args, struct hap_cpuset *cpu_set,
523 int comma_allowed, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200524{
525 int cur_arg = 0;
Amaury Denoyellea8082352021-04-06 16:46:15 +0200526 const char *arg;
Christopher Faulet62519022017-10-16 15:49:32 +0200527
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200528 ha_cpuset_zero(cpu_set);
529
Amaury Denoyellea8082352021-04-06 16:46:15 +0200530 arg = args[cur_arg];
531 while (*arg) {
532 const char *dash, *comma;
Christopher Faulet62519022017-10-16 15:49:32 +0200533 unsigned int low, high;
534
Willy Tarreau90807112020-02-25 08:16:33 +0100535 if (!isdigit((unsigned char)*args[cur_arg])) {
Amaury Denoyellea8082352021-04-06 16:46:15 +0200536 memprintf(err, "'%s' is not a CPU range.", arg);
Christopher Faulet62519022017-10-16 15:49:32 +0200537 return -1;
538 }
539
Amaury Denoyellea8082352021-04-06 16:46:15 +0200540 low = high = str2uic(arg);
541
542 comma = comma_allowed ? strchr(arg, ',') : NULL;
543 dash = strchr(arg, '-');
544
545 if (dash && (!comma || dash < comma))
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200546 high = *(dash+1) ? str2uic(dash + 1) : ha_cpuset_size() - 1;
Christopher Faulet62519022017-10-16 15:49:32 +0200547
548 if (high < low) {
549 unsigned int swap = low;
550 low = high;
551 high = swap;
552 }
553
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200554 if (high >= ha_cpuset_size()) {
555 memprintf(err, "supports CPU numbers from 0 to %d.",
556 ha_cpuset_size() - 1);
Christopher Faulet62519022017-10-16 15:49:32 +0200557 return 1;
558 }
559
560 while (low <= high)
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200561 ha_cpuset_set(cpu_set, low++);
Christopher Faulet62519022017-10-16 15:49:32 +0200562
Amaury Denoyellea8082352021-04-06 16:46:15 +0200563 /* if a comma is present, parse the rest of the arg, else
564 * skip to the next arg */
565 arg = comma ? comma + 1 : args[++cur_arg];
Christopher Faulet62519022017-10-16 15:49:32 +0200566 }
567 return 0;
568}
David Carlier7e351ee2017-12-01 09:14:02 +0000569#endif
570
Frédéric Lécaille18251032019-01-11 11:07:15 +0100571/* Allocate and initialize the frontend of a "peers" section found in
Christopher Faulet244331f2022-07-25 15:10:44 +0200572 * file <file> at line <linenum> with <id> as ID.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100573 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200574 * Note that this function may be called from "default-server"
575 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100576 */
Christopher Faulet244331f2022-07-25 15:10:44 +0200577static int init_peers_frontend(const char *file, int linenum,
578 const char *id, struct peers *peers)
Frédéric Lécaille18251032019-01-11 11:07:15 +0100579{
580 struct proxy *p;
581
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200582 if (peers->peers_fe) {
583 p = peers->peers_fe;
584 goto out;
585 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100586
Frédéric Lécaille18251032019-01-11 11:07:15 +0100587 p = calloc(1, sizeof *p);
588 if (!p) {
589 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
590 return -1;
591 }
592
593 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200594 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100595 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200596 /* Finally store this frontend. */
597 peers->peers_fe = p;
598
599 out:
Christopher Faulet244331f2022-07-25 15:10:44 +0200600 if (id && !p->id)
601 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200602 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100603 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100604 if (linenum != -1)
605 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100606
607 return 0;
608}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100609
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100610/* Only change ->file, ->line and ->arg struct bind_conf member values
611 * if already present.
612 */
613static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
614 const char *file, int line,
615 const char *arg, struct xprt_ops *xprt)
616{
617 struct bind_conf *bind_conf;
618
619 if (!LIST_ISEMPTY(&p->conf.bind)) {
620 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200621 /*
622 * We keep bind_conf->file and bind_conf->line unchanged
623 * to make them available for error messages
624 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100625 if (arg) {
626 free(bind_conf->arg);
627 bind_conf->arg = strdup(arg);
628 }
629 }
630 else {
631 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
632 }
633
634 return bind_conf;
635}
636
637/*
638 * Allocate a new struct peer parsed at line <linenum> in file <file>
639 * to be added to <peers>.
640 * Returns the new allocated structure if succeeded, NULL if not.
641 */
642static struct peer *cfg_peers_add_peer(struct peers *peers,
643 const char *file, int linenum,
644 const char *id, int local)
645{
646 struct peer *p;
647
648 p = calloc(1, sizeof *p);
649 if (!p) {
650 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
651 return NULL;
652 }
653
654 /* the peers are linked backwards first */
655 peers->count++;
Christopher Faulet387e7972022-05-12 14:47:52 +0200656 p->peers = peers;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100657 p->next = peers->remote;
658 peers->remote = p;
659 p->conf.file = strdup(file);
660 p->conf.line = linenum;
661 p->last_change = now.tv_sec;
662 p->xprt = xprt_get(XPRT_RAW);
663 p->sock_init_arg = NULL;
664 HA_SPIN_INIT(&p->lock);
665 if (id)
666 p->id = strdup(id);
667 if (local) {
668 p->local = 1;
669 peers->local = p;
670 }
671
672 return p;
673}
674
Willy Tarreaubaaee002006-06-26 02:48:02 +0200675/*
William Lallemand51097192015-04-14 16:35:22 +0200676 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200677 * Returns the error code, 0 if OK, or any combination of :
678 * - ERR_ABORT: must abort ASAP
679 * - ERR_FATAL: we can continue parsing but not start the service
680 * - ERR_WARN: a warning has been emitted
681 * - ERR_ALERT: an alert has been emitted
682 * Only the two first ones can stop processing, the two others are just
683 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200684 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200685int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
686{
687 static struct peers *curpeers = NULL;
688 struct peer *newpeer = NULL;
689 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200690 struct bind_conf *bind_conf;
691 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200692 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100693 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100694 static int bind_line, peer_line;
695
696 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
697 int cur_arg;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100698 struct bind_conf *bind_conf;
Willy Tarreau55f0f7b2022-05-20 15:44:17 +0200699 int ret;
Emeric Brun32da3c42010-09-23 18:39:19 +0200700
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100701 cur_arg = 1;
702
Christopher Faulet244331f2022-07-25 15:10:44 +0200703 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200704 err_code |= ERR_ALERT | ERR_ABORT;
705 goto out;
706 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100707
708 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
Willy Tarreau8d158132022-07-05 15:54:09 +0200709 args[1], xprt_get(XPRT_RAW));
William Lallemand1d932172022-07-06 14:30:23 +0200710 if (!bind_conf) {
711 ha_alert("parsing [%s:%d] : '%s %s' : cannot allocate memory.\n", file, linenum, args[0], args[1]);
712 err_code |= ERR_FATAL;
713 goto out;
714 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100715 if (*args[0] == 'b') {
716 struct listener *l;
717
718 if (peer_line) {
719 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
720 err_code |= ERR_ALERT | ERR_FATAL;
721 goto out;
722 }
723
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200724 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
725 ha_alert("parsing [%s:%d] : One listener per \"peers\" section is authorized but another is already configured at [%s:%d].\n", file, linenum, bind_conf->file, bind_conf->line);
726 err_code |= ERR_FATAL;
727 }
728
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100729 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
730 if (errmsg && *errmsg) {
731 indent_msg(&errmsg, 2);
732 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
733 }
734 else
735 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
Willy Tarreau0d044102022-05-20 15:19:48 +0200736 file, linenum, args[0], args[1], args[1]);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100737 err_code |= ERR_FATAL;
738 goto out;
739 }
Emeric Brunca825782022-05-25 10:25:45 +0200740 /*
741 * Newly allocated listener is at the end of the list
742 */
743 l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100744 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100745 l->accept = session_accept_fd;
746 l->analysers |= curpeers->peers_fe->fe_req_ana;
747 l->default_target = curpeers->peers_fe->default_target;
748 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100749 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100750
751 bind_line = 1;
752 if (cfg_peers->local) {
753 newpeer = cfg_peers->local;
754 }
755 else {
756 /* This peer is local.
757 * Note that we do not set the peer ID. This latter is initialized
758 * when parsing "peer" or "server" line.
759 */
760 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
761 if (!newpeer) {
762 err_code |= ERR_ALERT | ERR_ABORT;
763 goto out;
764 }
765 }
Willy Tarreau37159062020-08-27 07:48:42 +0200766 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200767 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100768 cur_arg++;
769 }
770
Willy Tarreau55f0f7b2022-05-20 15:44:17 +0200771 ret = bind_parse_args_list(bind_conf, args, cur_arg, cursection, file, linenum);
772 err_code |= ret;
773 if (ret != 0)
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100774 goto out;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100775 }
776 else if (strcmp(args[0], "default-server") == 0) {
Christopher Faulet244331f2022-07-25 15:10:44 +0200777 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100778 err_code |= ERR_ALERT | ERR_ABORT;
779 goto out;
780 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100781 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
782 SRV_PARSE_DEFAULT_SERVER|SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200783 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100784 else if (strcmp(args[0], "log") == 0) {
Christopher Faulet244331f2022-07-25 15:10:44 +0200785 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100786 err_code |= ERR_ALERT | ERR_ABORT;
787 goto out;
788 }
Emeric Brun9533a702021-04-02 10:13:43 +0200789 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), file, linenum, &errmsg)) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100790 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
791 err_code |= ERR_ALERT | ERR_FATAL;
792 goto out;
793 }
794 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200795 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100796 /* Initialize these static variables when entering a new "peers" section*/
797 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100798 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100799 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100800 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100801 goto out;
802 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200803
William Lallemand6e62fb62015-04-28 16:55:23 +0200804 if (alertif_too_many_args(1, file, linenum, args, &err_code))
805 goto out;
806
Emeric Brun32da3c42010-09-23 18:39:19 +0200807 err = invalid_char(args[1]);
808 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100809 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
810 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100811 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100812 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200813 }
814
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200815 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200816 /*
817 * If there are two proxies with the same name only following
818 * combinations are allowed:
819 */
820 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100821 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
822 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200823 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200824 }
825 }
826
Vincent Bernat02779b62016-04-03 13:48:43 +0200827 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100828 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200829 err_code |= ERR_ALERT | ERR_ABORT;
830 goto out;
831 }
832
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200833 curpeers->next = cfg_peers;
834 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200835 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200836 curpeers->conf.line = linenum;
837 curpeers->last_change = now.tv_sec;
838 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200839 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200840 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200841 else if (strcmp(args[0], "peer") == 0 ||
842 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100843 int local_peer, peer;
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100844 int parse_addr = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200845
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100846 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100847 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100848 /* The local peer may have already partially been parsed on a "bind" line. */
849 if (*args[0] == 'p') {
850 if (bind_line) {
851 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
852 err_code |= ERR_ALERT | ERR_FATAL;
853 goto out;
854 }
855 peer_line = 1;
856 }
857 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
858 /* The local peer has already been initialized on a "bind" line.
859 * Let's use it and store its ID.
860 */
861 newpeer = cfg_peers->local;
862 newpeer->id = strdup(localpeer);
863 }
864 else {
865 if (local_peer && cfg_peers->local) {
866 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
867 file, linenum, args[0], args[1],
868 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
869 err_code |= ERR_FATAL;
870 goto out;
871 }
872 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
873 if (!newpeer) {
874 err_code |= ERR_ALERT | ERR_ABORT;
875 goto out;
876 }
877 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200878
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100879 /* Line number and peer ID are updated only if this peer is the local one. */
880 if (init_peers_frontend(file,
881 newpeer->local ? linenum: -1,
Christopher Faulet244331f2022-07-25 15:10:44 +0200882 newpeer->local ? newpeer->id : NULL,
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100883 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200884 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100885 goto out;
886 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100887
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100888 /* This initializes curpeer->peers->peers_fe->srv.
889 * The server address is parsed only if we are parsing a "peer" line,
890 * or if we are parsing a "server" line and the current peer is not the local one.
891 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100892 parse_addr = (peer || !local_peer) ? SRV_PARSE_PARSE_ADDR : 0;
893 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
894 SRV_PARSE_IN_PEER_SECTION|parse_addr|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200895 if (!curpeers->peers_fe->srv) {
896 /* Remove the newly allocated peer. */
897 if (newpeer != curpeers->local) {
898 struct peer *p;
899
900 p = curpeers->remote;
901 curpeers->remote = curpeers->remote->next;
902 free(p->id);
903 free(p);
904 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200905 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200906 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200907
Willy Tarreau824c8c52022-05-31 09:42:44 +0200908 if (curpeers->peers_fe->srv->init_addr_methods || curpeers->peers_fe->srv->resolvers_id ||
909 curpeers->peers_fe->srv->do_check || curpeers->peers_fe->srv->do_agent) {
910 ha_warning("parsing [%s:%d] : '%s %s' : init_addr, resolvers, check and agent are ignored for peers.\n", file, linenum, args[0], args[1]);
911 err_code |= ERR_WARN;
912 }
913
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100914 /* If the peer address has just been parsed, let's copy it to <newpeer>
915 * and initializes ->proto.
916 */
917 if (peer || !local_peer) {
918 newpeer->addr = curpeers->peers_fe->srv->addr;
Willy Tarreau14e7f292021-10-27 17:41:07 +0200919 newpeer->proto = protocol_lookup(newpeer->addr.ss_family, PROTO_TYPE_STREAM, 0);
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100920 }
921
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100922 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200923 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100924 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200925
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100926 newpeer->srv = curpeers->peers_fe->srv;
927 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200928 goto out;
929
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100930 /* The lines above are reserved to "peer" lines. */
931 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200932 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200933
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100934 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW));
William Lallemand1d932172022-07-06 14:30:23 +0200935 if (!bind_conf) {
936 ha_alert("parsing [%s:%d] : '%s %s' : Cannot allocate memory.\n", file, linenum, args[0], args[1]);
937 err_code |= ERR_FATAL;
938 goto out;
939 }
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100940
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200941 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
942 ha_alert("parsing [%s:%d] : One listener per \"peers\" section is authorized but another is already configured at [%s:%d].\n", file, linenum, bind_conf->file, bind_conf->line);
943 err_code |= ERR_FATAL;
944 }
945
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100946 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
947 if (errmsg && *errmsg) {
948 indent_msg(&errmsg, 2);
949 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 +0100950 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100951 else
952 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
953 file, linenum, args[0], args[1], args[2]);
954 err_code |= ERR_FATAL;
955 goto out;
956 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100957
Emeric Brunca825782022-05-25 10:25:45 +0200958 /*
959 * Newly allocated listener is at the end of the list
960 */
961 l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100962 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100963 l->accept = session_accept_fd;
964 l->analysers |= curpeers->peers_fe->fe_req_ana;
965 l->default_target = curpeers->peers_fe->default_target;
966 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100967 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100968 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100969 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100970 struct stktable *t, *other;
971 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100972 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100973
974 /* Line number and peer ID are updated only if this peer is the local one. */
Christopher Faulet244331f2022-07-25 15:10:44 +0200975 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100976 err_code |= ERR_ALERT | ERR_ABORT;
977 goto out;
978 }
979
980 other = stktable_find_by_name(args[1]);
981 if (other) {
982 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
983 file, linenum, args[1],
984 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
985 other->proxy ? other->id : other->peers.p->id,
986 other->conf.file, other->conf.line);
987 err_code |= ERR_ALERT | ERR_FATAL;
988 goto out;
989 }
990
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100991 /* Build the stick-table name, concatenating the "peers" section name
992 * followed by a '/' character and the table name argument.
993 */
994 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100995 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100996 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
997 file, linenum, args[0], args[1]);
998 err_code |= ERR_ALERT | ERR_FATAL;
999 goto out;
1000 }
1001
1002 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001003 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001004 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
1005 file, linenum, args[0], args[1]);
1006 err_code |= ERR_ALERT | ERR_FATAL;
1007 goto out;
1008 }
1009
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001010 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001011 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001012 if (!t || !id) {
1013 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
1014 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +02001015 free(t);
1016 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001017 err_code |= ERR_ALERT | ERR_FATAL;
1018 goto out;
1019 }
1020
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001021 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +02001022 if (err_code & ERR_FATAL) {
1023 free(t);
1024 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001025 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +02001026 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001027
1028 stktable_store_name(t);
1029 t->next = stktables_list;
1030 stktables_list = t;
1031 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001032 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001033 curpeers->disabled |= PR_FL_DISABLED;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001034 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001035 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02001036 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001037 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001038 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001039 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +02001040 err_code |= ERR_ALERT | ERR_FATAL;
1041 goto out;
1042 }
1043
1044out:
Willy Tarreau902636f2013-03-10 19:44:48 +01001045 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +02001046 return err_code;
1047}
1048
Baptiste Assmann325137d2015-04-13 23:40:55 +02001049/*
William Lallemand51097192015-04-14 16:35:22 +02001050 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001051 * Returns the error code, 0 if OK, or any combination of :
1052 * - ERR_ABORT: must abort ASAP
1053 * - ERR_FATAL: we can continue parsing but not start the service
1054 * - ERR_WARN: a warning has been emitted
1055 * - ERR_ALERT: an alert has been emitted
1056 * Only the two first ones can stop processing, the two others are just
1057 * indicators.
1058 */
1059int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1060{
1061 static struct mailers *curmailers = NULL;
1062 struct mailer *newmailer = NULL;
1063 const char *err;
1064 int err_code = 0;
1065 char *errmsg = NULL;
1066
1067 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1068 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001069 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001070 err_code |= ERR_ALERT | ERR_ABORT;
1071 goto out;
1072 }
1073
1074 err = invalid_char(args[1]);
1075 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001076 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1077 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001078 err_code |= ERR_ALERT | ERR_ABORT;
1079 goto out;
1080 }
1081
1082 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1083 /*
1084 * If there are two proxies with the same name only following
1085 * combinations are allowed:
1086 */
1087 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001088 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1089 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001090 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001091 }
1092 }
1093
Vincent Bernat02779b62016-04-03 13:48:43 +02001094 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001095 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001096 err_code |= ERR_ALERT | ERR_ABORT;
1097 goto out;
1098 }
1099
1100 curmailers->next = mailers;
1101 mailers = curmailers;
1102 curmailers->conf.file = strdup(file);
1103 curmailers->conf.line = linenum;
1104 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001105 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1106 * But need enough time so that timeouts don't occur
1107 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001108 }
1109 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1110 struct sockaddr_storage *sk;
1111 int port1, port2;
1112 struct protocol *proto;
1113
1114 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001115 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1116 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001117 err_code |= ERR_ALERT | ERR_FATAL;
1118 goto out;
1119 }
1120
1121 err = invalid_char(args[1]);
1122 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001123 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1124 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001125 err_code |= ERR_ALERT | ERR_FATAL;
1126 goto out;
1127 }
1128
Vincent Bernat02779b62016-04-03 13:48:43 +02001129 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001130 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001131 err_code |= ERR_ALERT | ERR_ABORT;
1132 goto out;
1133 }
1134
1135 /* the mailers are linked backwards first */
1136 curmailers->count++;
1137 newmailer->next = curmailers->mailer_list;
1138 curmailers->mailer_list = newmailer;
1139 newmailer->mailers = curmailers;
1140 newmailer->conf.file = strdup(file);
1141 newmailer->conf.line = linenum;
1142
1143 newmailer->id = strdup(args[1]);
1144
Willy Tarreau5fc93282020-09-16 18:25:03 +02001145 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001146 &errmsg, NULL, NULL,
1147 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 +09001148 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001149 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001150 err_code |= ERR_ALERT | ERR_FATAL;
1151 goto out;
1152 }
1153
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001154 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001155 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1156 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001157 err_code |= ERR_ALERT | ERR_FATAL;
1158 goto out;
1159 }
1160
Simon Horman0d16a402015-01-30 11:22:58 +09001161 newmailer->addr = *sk;
1162 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001163 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001164 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001165 }
1166 else if (strcmp(args[0], "timeout") == 0) {
1167 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001168 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1169 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001170 err_code |= ERR_ALERT | ERR_FATAL;
1171 goto out;
1172 }
1173 else if (strcmp(args[1], "mail") == 0) {
1174 const char *res;
1175 unsigned int timeout_mail;
1176 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001177 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1178 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001179 err_code |= ERR_ALERT | ERR_FATAL;
1180 goto out;
1181 }
1182 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001183 if (res == PARSE_TIME_OVER) {
1184 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1185 file, linenum, args[2], args[0], args[1]);
1186 err_code |= ERR_ALERT | ERR_FATAL;
1187 goto out;
1188 }
1189 else if (res == PARSE_TIME_UNDER) {
1190 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1191 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001192 err_code |= ERR_ALERT | ERR_FATAL;
1193 goto out;
1194 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001195 else if (res) {
1196 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1197 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001198 err_code |= ERR_ALERT | ERR_FATAL;
1199 goto out;
1200 }
1201 curmailers->timeout.mail = timeout_mail;
1202 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001203 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001204 file, linenum, args[0], args[1]);
1205 err_code |= ERR_ALERT | ERR_FATAL;
1206 goto out;
1207 }
1208 }
Simon Horman0d16a402015-01-30 11:22:58 +09001209 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001210 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001211 err_code |= ERR_ALERT | ERR_FATAL;
1212 goto out;
1213 }
1214
1215out:
1216 free(errmsg);
1217 return err_code;
1218}
1219
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001220void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001221{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001222 ha_free(&p->email_alert.mailers.name);
1223 ha_free(&p->email_alert.from);
1224 ha_free(&p->email_alert.to);
1225 ha_free(&p->email_alert.myhostname);
Simon Horman9dc49962015-01-30 11:22:59 +09001226}
1227
Willy Tarreaubaaee002006-06-26 02:48:02 +02001228
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001229int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001230cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1231{
Willy Tarreaue5733232019-05-22 19:24:06 +02001232#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001233 const char *err;
1234 const char *item = args[0];
1235
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001236 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001237 return 0;
1238 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001239 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001240 size_t idx = 1;
1241 const char *current;
1242 while (*(current = args[idx++])) {
1243 err = invalid_char(current);
1244 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001245 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1246 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001247 return ERR_ALERT | ERR_FATAL;
1248 }
1249
1250 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001251 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1252 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001253 return ERR_ALERT | ERR_FATAL;
1254 }
1255 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001256 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1257 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001258 return ERR_ALERT | ERR_FATAL;
1259 }
1260 }
1261 }
1262
1263 return 0;
1264#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001265 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1266 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001267 return ERR_ALERT | ERR_FATAL;
1268#endif
1269}
1270
1271int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001272cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1273{
1274
1275 int err_code = 0;
1276 const char *err;
1277
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001278 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001279 struct userlist *newul;
1280
1281 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001282 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1283 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001284 err_code |= ERR_ALERT | ERR_FATAL;
1285 goto out;
1286 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001287 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1288 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001289
1290 err = invalid_char(args[1]);
1291 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001292 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1293 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001294 err_code |= ERR_ALERT | ERR_FATAL;
1295 goto out;
1296 }
1297
1298 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001299 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001300 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1301 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001302 err_code |= ERR_WARN;
1303 goto out;
1304 }
1305
Vincent Bernat02779b62016-04-03 13:48:43 +02001306 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001307 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001308 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001309 err_code |= ERR_ALERT | ERR_ABORT;
1310 goto out;
1311 }
1312
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001313 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001314 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001315 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001316 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001317 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001318 goto out;
1319 }
1320
1321 newul->next = userlist;
1322 userlist = newul;
1323
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001324 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001325 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001326 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001327 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001328
1329 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001330 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1331 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001332 err_code |= ERR_ALERT | ERR_FATAL;
1333 goto out;
1334 }
1335
1336 err = invalid_char(args[1]);
1337 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001338 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1339 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001340 err_code |= ERR_ALERT | ERR_FATAL;
1341 goto out;
1342 }
1343
William Lallemand4ac9f542015-05-28 18:03:51 +02001344 if (!userlist)
1345 goto out;
1346
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001347 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001348 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001349 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1350 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001351 err_code |= ERR_ALERT;
1352 goto out;
1353 }
1354
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001355 ag = calloc(1, sizeof(*ag));
1356 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001357 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001358 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001359 goto out;
1360 }
1361
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001362 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001363 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001364 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001365 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001366 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001367 goto out;
1368 }
1369
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001370 cur_arg = 2;
1371
1372 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001373 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001374 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001375 cur_arg += 2;
1376 continue;
1377 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001378 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1379 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001380 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001381 free(ag->groupusers);
1382 free(ag->name);
1383 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001384 goto out;
1385 }
1386 }
1387
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001388 ag->next = userlist->groups;
1389 userlist->groups = ag;
1390
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001391 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001392 struct auth_users *newuser;
1393 int cur_arg;
1394
1395 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001396 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1397 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001398 err_code |= ERR_ALERT | ERR_FATAL;
1399 goto out;
1400 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001401 if (!userlist)
1402 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001403
1404 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001405 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001406 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1407 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001408 err_code |= ERR_ALERT;
1409 goto out;
1410 }
1411
Vincent Bernat02779b62016-04-03 13:48:43 +02001412 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001413 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001414 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001415 err_code |= ERR_ALERT | ERR_ABORT;
1416 goto out;
1417 }
1418
1419 newuser->user = strdup(args[1]);
1420
1421 newuser->next = userlist->users;
1422 userlist->users = newuser;
1423
1424 cur_arg = 2;
1425
1426 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001427 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001428#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001429 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001430 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1431 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001432 err_code |= ERR_ALERT | ERR_FATAL;
1433 goto out;
1434 }
1435#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001436 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1437 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001438 err_code |= ERR_ALERT;
1439#endif
1440 newuser->pass = strdup(args[cur_arg + 1]);
1441 cur_arg += 2;
1442 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001443 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001444 newuser->pass = strdup(args[cur_arg + 1]);
1445 newuser->flags |= AU_O_INSECURE;
1446 cur_arg += 2;
1447 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001448 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001449 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001450 cur_arg += 2;
1451 continue;
1452 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001453 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1454 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001455 err_code |= ERR_ALERT | ERR_FATAL;
1456 goto out;
1457 }
1458 }
1459 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001460 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 +01001461 err_code |= ERR_ALERT | ERR_FATAL;
1462 }
1463
1464out:
1465 return err_code;
1466}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001467
Christopher Faulet79bdef32016-11-04 22:36:15 +01001468int
1469cfg_parse_scope(const char *file, int linenum, char *line)
1470{
1471 char *beg, *end, *scope = NULL;
1472 int err_code = 0;
1473 const char *err;
1474
1475 beg = line + 1;
1476 end = strchr(beg, ']');
1477
1478 /* Detect end of scope declaration */
1479 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001480 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1481 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001482 err_code |= ERR_ALERT | ERR_FATAL;
1483 goto out;
1484 }
1485
1486 /* Get scope name and check its validity */
1487 scope = my_strndup(beg, end-beg);
1488 err = invalid_char(scope);
1489 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001490 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1491 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001492 err_code |= ERR_ALERT | ERR_ABORT;
1493 goto out;
1494 }
1495
1496 /* Be sure to have a scope declaration alone on its line */
1497 line = end+1;
1498 while (isspace((unsigned char)*line))
1499 line++;
1500 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001501 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1502 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001503 err_code |= ERR_ALERT | ERR_ABORT;
1504 goto out;
1505 }
1506
1507 /* We have a valid scope declaration, save it */
1508 free(cfg_scope);
1509 cfg_scope = scope;
1510 scope = NULL;
1511
1512 out:
1513 free(scope);
1514 return err_code;
1515}
1516
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001517int
1518cfg_parse_track_sc_num(unsigned int *track_sc_num,
1519 const char *arg, const char *end, char **errmsg)
1520{
1521 const char *p;
1522 unsigned int num;
1523
1524 p = arg;
1525 num = read_uint64(&arg, end);
1526
1527 if (arg != end) {
1528 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1529 return -1;
1530 }
1531
1532 if (num >= MAX_SESS_STKCTR) {
1533 memprintf(errmsg, "%u track-sc number exceeding "
1534 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1535 return -1;
1536 }
1537
1538 *track_sc_num = num;
1539 return 0;
1540}
1541
Willy Tarreaubaaee002006-06-26 02:48:02 +02001542/*
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001543 * Detect a global section after a non-global one and output a diagnostic
1544 * warning.
1545 */
1546static void check_section_position(char *section_name,
1547 const char *file, int linenum,
1548 int *non_global_parsed)
1549{
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02001550 if (strcmp(section_name, "global") == 0) {
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001551 if (*non_global_parsed == 1)
1552 _ha_diag_warning("parsing [%s:%d] : global section detected after a non-global one, the prevalence of their statements is unspecified\n", file, linenum);
1553 }
1554 else if (*non_global_parsed == 0) {
1555 *non_global_parsed = 1;
1556 }
1557}
1558
Willy Tarreau8a022d52021-04-27 20:29:11 +02001559/* apply the current default_path setting for config file <file>, and
1560 * optionally replace the current path to <origin> if not NULL while the
1561 * default-path mode is set to "origin". Errors are returned into an
1562 * allocated string passed to <err> if it's not NULL. Returns 0 on failure
1563 * or non-zero on success.
1564 */
1565static int cfg_apply_default_path(const char *file, const char *origin, char **err)
1566{
1567 const char *beg, *end;
1568
1569 /* make path start at <beg> and end before <end>, and switch it to ""
1570 * if no slash was passed.
1571 */
1572 beg = file;
1573 end = strrchr(beg, '/');
1574 if (!end)
1575 end = beg;
1576
1577 if (!*initial_cwd) {
1578 if (getcwd(initial_cwd, sizeof(initial_cwd)) == NULL) {
1579 if (err)
1580 memprintf(err, "Impossible to retrieve startup directory name: %s", strerror(errno));
1581 return 0;
1582 }
1583 }
1584 else if (chdir(initial_cwd) == -1) {
1585 if (err)
1586 memprintf(err, "Impossible to get back to initial directory '%s': %s", initial_cwd, strerror(errno));
1587 return 0;
1588 }
1589
1590 /* OK now we're (back) to initial_cwd */
1591
1592 switch (default_path_mode) {
1593 case DEFAULT_PATH_CURRENT:
1594 /* current_cwd never set, nothing to do */
1595 return 1;
1596
1597 case DEFAULT_PATH_ORIGIN:
1598 /* current_cwd set in the config */
1599 if (origin &&
1600 snprintf(current_cwd, sizeof(current_cwd), "%s", origin) > sizeof(current_cwd)) {
1601 if (err)
1602 memprintf(err, "Absolute path too long: '%s'", origin);
1603 return 0;
1604 }
1605 break;
1606
1607 case DEFAULT_PATH_CONFIG:
1608 if (end - beg >= sizeof(current_cwd)) {
1609 if (err)
1610 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1611 return 0;
1612 }
1613 memcpy(current_cwd, beg, end - beg);
1614 current_cwd[end - beg] = 0;
1615 break;
1616
1617 case DEFAULT_PATH_PARENT:
1618 if (end - beg + 3 >= sizeof(current_cwd)) {
1619 if (err)
1620 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1621 return 0;
1622 }
1623 memcpy(current_cwd, beg, end - beg);
1624 if (end > beg)
1625 memcpy(current_cwd + (end - beg), "/..\0", 4);
1626 else
1627 memcpy(current_cwd + (end - beg), "..\0", 3);
1628 break;
1629 }
1630
1631 if (*current_cwd && chdir(current_cwd) == -1) {
1632 if (err)
1633 memprintf(err, "Impossible to get back to directory '%s': %s", initial_cwd, strerror(errno));
1634 return 0;
1635 }
1636
1637 return 1;
1638}
1639
1640/* parses a global "default-path" directive. */
1641static int cfg_parse_global_def_path(char **args, int section_type, struct proxy *curpx,
1642 const struct proxy *defpx, const char *file, int line,
1643 char **err)
1644{
1645 int ret = -1;
1646
1647 /* "current", "config", "parent", "origin <path>" */
1648
1649 if (strcmp(args[1], "current") == 0)
1650 default_path_mode = DEFAULT_PATH_CURRENT;
1651 else if (strcmp(args[1], "config") == 0)
1652 default_path_mode = DEFAULT_PATH_CONFIG;
1653 else if (strcmp(args[1], "parent") == 0)
1654 default_path_mode = DEFAULT_PATH_PARENT;
1655 else if (strcmp(args[1], "origin") == 0)
1656 default_path_mode = DEFAULT_PATH_ORIGIN;
1657 else {
1658 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]);
1659 goto end;
1660 }
1661
1662 if (default_path_mode == DEFAULT_PATH_ORIGIN) {
1663 if (!*args[2]) {
1664 memprintf(err, "'%s %s' expects a directory as an argument.", args[0], args[1]);
1665 goto end;
1666 }
1667 if (!cfg_apply_default_path(file, args[2], err)) {
1668 memprintf(err, "couldn't set '%s' to origin '%s': %s.", args[0], args[2], *err);
1669 goto end;
1670 }
1671 }
1672 else if (!cfg_apply_default_path(file, NULL, err)) {
1673 memprintf(err, "couldn't set '%s' to '%s': %s.", args[0], args[1], *err);
1674 goto end;
1675 }
1676
1677 /* note that once applied, the path is immediately updated */
1678
1679 ret = 0;
1680 end:
1681 return ret;
1682}
1683
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001684/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001685 * This function reads and parses the configuration file given in the argument.
Willy Tarreauda543e12021-04-27 18:30:28 +02001686 * Returns the error code, 0 if OK, -1 if the config file couldn't be opened,
1687 * or any combination of :
Willy Tarreau058e9072009-07-20 09:30:05 +02001688 * - ERR_ABORT: must abort ASAP
1689 * - ERR_FATAL: we can continue parsing but not start the service
1690 * - ERR_WARN: a warning has been emitted
1691 * - ERR_ALERT: an alert has been emitted
1692 * Only the two first ones can stop processing, the two others are just
1693 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001694 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001695int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001696{
Willy Tarreauda543e12021-04-27 18:30:28 +02001697 char *thisline = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001698 int linesize = LINESIZE;
Willy Tarreauda543e12021-04-27 18:30:28 +02001699 FILE *f = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001700 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001701 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001702 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001703 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001704 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001705 char *outline = NULL;
1706 size_t outlen = 0;
1707 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001708 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001709 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001710 int nested_cond_lvl = 0;
1711 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001712 int non_global_section_parsed = 0;
Willy Tarreau8a022d52021-04-27 20:29:11 +02001713 char *errmsg = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001714
Willy Tarreau51508052021-05-06 10:04:45 +02001715 global.cfg_curr_line = 0;
1716 global.cfg_curr_file = file;
1717
William Lallemand64e84512015-05-12 14:25:37 +02001718 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Willy Tarreauda543e12021-04-27 18:30:28 +02001719 ha_alert("Out of memory trying to allocate a buffer for a configuration line.\n");
1720 err_code = -1;
1721 goto err;
William Lallemand64e84512015-05-12 14:25:37 +02001722 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001723
Willy Tarreauda543e12021-04-27 18:30:28 +02001724 if ((f = fopen(file,"r")) == NULL) {
1725 err_code = -1;
1726 goto err;
David Carlier97880bb2016-04-08 10:35:26 +01001727 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001728
Willy Tarreau8a022d52021-04-27 20:29:11 +02001729 /* change to the new dir if required */
1730 if (!cfg_apply_default_path(file, NULL, &errmsg)) {
1731 ha_alert("parsing [%s:%d]: failed to apply default-path: %s.\n", file, linenum, errmsg);
1732 free(errmsg);
1733 err_code = -1;
1734 goto err;
1735 }
1736
William Lallemandb2f07452015-05-12 14:27:13 +02001737next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001738 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001739 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001740 char *end;
1741 char *args[MAX_LINE_ARGS + 1];
1742 char *line = thisline;
1743
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001744 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001745 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1746 file, linenum, (missing_lf + 1));
1747 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001748 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001749 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001750 }
1751
Willy Tarreaubaaee002006-06-26 02:48:02 +02001752 linenum++;
Willy Tarreau51508052021-05-06 10:04:45 +02001753 global.cfg_curr_line = linenum;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001754
Willy Tarreau32234e72020-06-16 17:14:33 +02001755 if (fatal >= 50) {
1756 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1757 break;
1758 }
1759
Willy Tarreaubaaee002006-06-26 02:48:02 +02001760 end = line + strlen(line);
1761
William Lallemand64e84512015-05-12 14:25:37 +02001762 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001763 /* Check if we reached the limit and the last char is not \n.
1764 * Watch out for the last line without the terminating '\n'!
1765 */
William Lallemand64e84512015-05-12 14:25:37 +02001766 char *newline;
1767 int newlinesize = linesize * 2;
1768
1769 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1770 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001771 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1772 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001773 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001774 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001775 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001776 continue;
1777 }
1778
1779 readbytes = linesize - 1;
1780 linesize = newlinesize;
1781 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001782 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001783 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001784 }
1785
William Lallemand64e84512015-05-12 14:25:37 +02001786 readbytes = 0;
1787
Willy Tarreau08488f62020-06-26 17:24:54 +02001788 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001789 /* kill trailing LF */
1790 *(end - 1) = 0;
1791 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001792 else {
1793 /* mark this line as truncated */
1794 missing_lf = end - line;
1795 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001796
Willy Tarreaubaaee002006-06-26 02:48:02 +02001797 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001798 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001799 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001800
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001801 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001802 err_code |= cfg_parse_scope(file, linenum, line);
1803 goto next_line;
1804 }
1805
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001806 while (1) {
1807 uint32_t err;
Maximilian Mader29c6cd72021-06-06 00:50:21 +02001808 const char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001809
Tim Duesterhusb3168b32021-06-06 00:50:20 +02001810 arg = sizeof(args) / sizeof(*args);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001811 outlen = outlinesize;
1812 err = parse_line(line, outline, &outlen, args, &arg,
1813 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001814 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1815 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001816
1817 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001818 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1819
1820 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1821 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001822 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001823 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001824 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001825 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001826
1827 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001828 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1829
1830 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1831 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001832 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001833 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001834 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001835 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001836
1837 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001838 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1839
1840 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1841 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001842 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001843 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001844 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001845 }
William Lallemandb2f07452015-05-12 14:27:13 +02001846
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001847 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001848 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1849
1850 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1851 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001852 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001853 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001854 goto next_line;
1855 }
William Lallemandb2f07452015-05-12 14:27:13 +02001856
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001857 if (err & PARSE_ERR_WRONG_EXPAND) {
1858 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1859
1860 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1861 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1862 err_code |= ERR_ALERT | ERR_FATAL;
1863 fatal++;
1864 goto next_line;
1865 }
1866
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001867 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1868 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001869 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001870 if (outline == NULL) {
1871 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1872 file, linenum);
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001873 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau32234e72020-06-16 17:14:33 +02001874 fatal++;
Christopher Fauletdfe32c72022-05-18 16:22:43 +02001875 outlinesize = 0;
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001876 goto err;
William Lallemandb2f07452015-05-12 14:27:13 +02001877 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001878 /* try again */
1879 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001880 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001881
1882 if (err & PARSE_ERR_TOOMANY) {
1883 /* only check this *after* being sure the output is allocated */
1884 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1885 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1886 err_code |= ERR_ALERT | ERR_FATAL;
1887 fatal++;
1888 goto next_line;
1889 }
1890
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001891 /* everything's OK */
1892 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001893 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001894
1895 /* empty line */
1896 if (!**args)
1897 continue;
1898
Willy Tarreau4b103022021-02-12 17:59:10 +01001899 /* check for config macros */
1900 if (*args[0] == '.') {
1901 if (strcmp(args[0], ".if") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001902 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001903 char *errmsg = NULL;
1904 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02001905 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001906
Willy Tarreauc8194c32021-07-16 16:38:58 +02001907 /* remerge all words into a single expression */
1908 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
1909 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001910
Willy Tarreau4b103022021-02-12 17:59:10 +01001911 nested_cond_lvl++;
1912 if (nested_cond_lvl >= MAXNESTEDCONDS) {
1913 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
1914 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1915 goto err;
1916 }
1917
Willy Tarreau6e647c92021-05-06 08:46:11 +02001918 if (nested_cond_lvl > 1 &&
1919 (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
1920 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
1921 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
1922 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
1923 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP)) {
Willy Tarreau4b103022021-02-12 17:59:10 +01001924 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001925 goto next_line;
1926 }
1927
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001928 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001929 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001930 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 76);
1931
1932 ha_alert("parsing [%s:%d]: %s in '.if' at position %d:\n .if %s\n %*s\n",
1933 file, linenum, errmsg,
1934 (int)(errptr-args[1]+1), args[1], (int)(newpos+5), "^");
1935
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001936 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01001937 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1938 goto err;
1939 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001940
1941 if (cond)
1942 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
1943 else
1944 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
1945
Willy Tarreau4b103022021-02-12 17:59:10 +01001946 goto next_line;
1947 }
1948 else if (strcmp(args[0], ".elif") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001949 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001950 char *errmsg = NULL;
1951 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02001952 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001953
Willy Tarreauc8194c32021-07-16 16:38:58 +02001954 /* remerge all words into a single expression */
1955 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
1956 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001957
Willy Tarreau4b103022021-02-12 17:59:10 +01001958 if (!nested_cond_lvl) {
1959 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
1960 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1961 goto err;
1962 }
1963
1964 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
1965 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
1966 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
1967 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1968 goto err;
1969 }
1970
1971 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
1972 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
Willy Tarreauf67ff022021-05-06 08:48:09 +02001973 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
Willy Tarreau4b103022021-02-12 17:59:10 +01001974 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
1975 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001976 goto next_line;
1977 }
1978
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001979 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001980 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001981 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 74);
1982
1983 ha_alert("parsing [%s:%d]: %s in '.elif' at position %d:\n .elif %s\n %*s\n",
1984 file, linenum, errmsg,
1985 (int)(errptr-args[1]+1), args[1], (int)(newpos+7), "^");
1986
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001987 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01001988 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1989 goto err;
1990 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001991
1992 if (cond)
1993 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
1994 else
1995 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
1996
Willy Tarreau4b103022021-02-12 17:59:10 +01001997 goto next_line;
1998 }
1999 else if (strcmp(args[0], ".else") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002000 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002001 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002002 file, linenum, args[1], args[0]);
2003 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2004 break;
2005 }
2006
Willy Tarreau4b103022021-02-12 17:59:10 +01002007 if (!nested_cond_lvl) {
2008 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
2009 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2010 goto err;
2011 }
2012
2013 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2014 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2015 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
2016 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2017 goto err;
2018 }
2019
2020 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2021 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2022 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
2023 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2024 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
2025 } else {
2026 /* otherwise we take the "else" */
2027 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
2028 }
2029 goto next_line;
2030 }
2031 else if (strcmp(args[0], ".endif") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002032 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002033 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002034 file, linenum, args[1], args[0]);
2035 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2036 break;
2037 }
2038
Willy Tarreau4b103022021-02-12 17:59:10 +01002039 if (!nested_cond_lvl) {
2040 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002041 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau4b103022021-02-12 17:59:10 +01002042 break;
2043 }
2044 nested_cond_lvl--;
2045 goto next_line;
2046 }
2047 }
2048
2049 if (nested_cond_lvl &&
2050 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
2051 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2052 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
2053 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
2054 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
2055 /* The current block is masked out by the conditions */
2056 goto next_line;
2057 }
2058
Willy Tarreau7190b982021-05-07 08:59:50 +02002059 /* .warning/.error/.notice/.diag */
Willy Tarreau4b103022021-02-12 17:59:10 +01002060 if (*args[0] == '.') {
2061 if (strcmp(args[0], ".alert") == 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_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2070 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2071 goto err;
2072 }
2073 else if (strcmp(args[0], ".warning") == 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_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2082 err_code |= ERR_WARN;
2083 goto next_line;
2084 }
2085 else if (strcmp(args[0], ".notice") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002086 if (*args[2]) {
2087 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2088 file, linenum, args[2], args[0]);
2089 err_code |= ERR_ALERT | ERR_FATAL;
2090 goto next_line;
2091 }
2092
Willy Tarreau4b103022021-02-12 17:59:10 +01002093 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2094 goto next_line;
2095 }
Willy Tarreau7190b982021-05-07 08:59:50 +02002096 else if (strcmp(args[0], ".diag") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002097 if (*args[2]) {
2098 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2099 file, linenum, args[2], args[0]);
2100 err_code |= ERR_ALERT | ERR_FATAL;
2101 goto next_line;
2102 }
2103
Willy Tarreau7190b982021-05-07 08:59:50 +02002104 ha_diag_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2105 goto next_line;
2106 }
Willy Tarreau4b103022021-02-12 17:59:10 +01002107 else {
2108 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
2109 err_code |= ERR_ALERT | ERR_FATAL;
2110 fatal++;
2111 break;
2112 }
2113 }
2114
Willy Tarreau3842f002009-06-14 11:39:52 +02002115 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002116 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02002117 char *tmp;
2118
Willy Tarreau3842f002009-06-14 11:39:52 +02002119 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002120 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002121 for (arg=0; *args[arg+1]; arg++)
2122 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002123 *tmp = '\0'; // fix the next arg to \0
2124 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002125 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002126 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02002127 kwm = KWM_DEF;
2128 for (arg=0; *args[arg+1]; arg++)
2129 args[arg] = args[arg+1]; // shift args after inversion
2130 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002131
William Dauchyec730982019-10-27 20:08:10 +01002132 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2133 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002134 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002135 strcmp(args[0], "insecure-fork-wanted") != 0 &&
2136 strcmp(args[0], "numa-cpu-mapping") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002137 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002138 "supported only for options, log, busy-polling, "
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002139 "set-dumpable, strict-limits, insecure-fork-wanted "
2140 "and numa-cpu-mapping.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002141 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002142 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002143 }
2144
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002145 /* detect section start */
2146 list_for_each_entry(ics, &sections, list) {
2147 if (strcmp(args[0], ics->section_name) == 0) {
2148 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002149 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002150 cs = ics;
Willy Tarreau51508052021-05-06 10:04:45 +02002151 free(global.cfg_curr_section);
2152 global.cfg_curr_section = strdup(*args[1] ? args[1] : args[0]);
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02002153
2154 if (global.mode & MODE_DIAG) {
2155 check_section_position(args[0], file, linenum,
2156 &non_global_section_parsed);
2157 }
2158
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002159 break;
2160 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002161 }
2162
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002163 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002164 int status;
2165
2166 status = pcs->post_section_parser();
2167 err_code |= status;
2168 if (status & ERR_FATAL)
2169 fatal++;
2170
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002171 if (err_code & ERR_ABORT)
2172 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002173 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002174 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002175
William Lallemandd2ff56d2017-10-16 11:06:50 +02002176 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002177 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002178 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002179 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002180 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002181 int status;
2182
2183 status = cs->section_parser(file, linenum, args, kwm);
2184 err_code |= status;
2185 if (status & ERR_FATAL)
2186 fatal++;
2187
William Lallemandd2ff56d2017-10-16 11:06:50 +02002188 if (err_code & ERR_ABORT)
2189 goto err;
2190 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002191 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002192
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002193 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002194 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2195 file, linenum, (missing_lf + 1));
2196 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002197 }
2198
Willy Tarreau51508052021-05-06 10:04:45 +02002199 ha_free(&global.cfg_curr_section);
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002200 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002201 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002202
Willy Tarreau4b103022021-02-12 17:59:10 +01002203 if (nested_cond_lvl) {
2204 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
2205 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2206 }
Willy Tarreau8a022d52021-04-27 20:29:11 +02002207
2208 if (*initial_cwd && chdir(initial_cwd) == -1) {
2209 ha_alert("Impossible to get back to initial directory '%s' : %s\n", initial_cwd, strerror(errno));
2210 err_code |= ERR_ALERT | ERR_FATAL;
2211 }
2212
William Lallemandd2ff56d2017-10-16 11:06:50 +02002213err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002214 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01002215 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002216 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002217 free(outline);
Willy Tarreau51508052021-05-06 10:04:45 +02002218 global.cfg_curr_line = 0;
2219 global.cfg_curr_file = NULL;
2220
Willy Tarreauda543e12021-04-27 18:30:28 +02002221 if (f)
2222 fclose(f);
2223
Willy Tarreau058e9072009-07-20 09:30:05 +02002224 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002225}
2226
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002227#if defined(USE_THREAD) && defined USE_CPU_AFFINITY
2228#if defined(__linux__)
2229
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002230/* filter directory name of the pattern node<X> */
2231static int numa_filter(const struct dirent *dir)
2232{
2233 char *endptr;
2234
2235 /* dir name must start with "node" prefix */
2236 if (strncmp(dir->d_name, "node", 4))
2237 return 0;
2238
2239 /* dir name must be at least 5 characters long */
2240 if (!dir->d_name[4])
2241 return 0;
2242
2243 /* dir name must end with a numeric id */
2244 if (strtol(&dir->d_name[4], &endptr, 10) < 0 || *endptr)
2245 return 0;
2246
2247 /* all tests succeeded */
2248 return 1;
2249}
2250
2251/* Parse a linux cpu map string representing to a numeric cpu mask map
2252 * The cpu map string is a list of 4-byte hex strings separated by commas, with
2253 * most-significant byte first, one bit per cpu number.
2254 */
2255static void parse_cpumap(char *cpumap_str, struct hap_cpuset *cpu_set)
2256{
2257 unsigned long cpumap;
2258 char *start, *endptr, *comma;
2259 int i, j;
2260
2261 ha_cpuset_zero(cpu_set);
2262
2263 i = 0;
2264 do {
2265 /* reverse-search for a comma, parse the string after the comma
2266 * or at the beginning if no comma found
2267 */
2268 comma = strrchr(cpumap_str, ',');
2269 start = comma ? comma + 1 : cpumap_str;
2270
2271 cpumap = strtoul(start, &endptr, 16);
2272 for (j = 0; cpumap; cpumap >>= 1, ++j) {
2273 if (cpumap & 0x1)
2274 ha_cpuset_set(cpu_set, j + i * 32);
2275 }
2276
2277 if (comma)
2278 *comma = '\0';
2279 ++i;
2280 } while (comma);
2281}
2282
2283/* Read the first line of a file from <path> into the trash buffer.
2284 * Returns 0 on success, otherwise non-zero.
2285 */
2286static int read_file_to_trash(const char *path)
2287{
2288 FILE *file;
2289 int ret = 1;
2290
2291 file = fopen(path, "r");
2292 if (file) {
2293 if (fgets(trash.area, trash.size, file))
2294 ret = 0;
2295
2296 fclose(file);
2297 }
2298
2299 return ret;
2300}
2301
2302/* Inspect the cpu topology of the machine on startup. If a multi-socket
2303 * machine is detected, try to bind on the first node with active cpu. This is
2304 * done to prevent an impact on the overall performance when the topology of
2305 * the machine is unknown. This function is not called if one of the conditions
2306 * is met :
2307 * - a non-null nbthread directive is active
2308 * - a restrictive cpu-map directive is active
2309 * - a restrictive affinity is already applied, for example via taskset
2310 *
2311 * Returns the count of cpus selected. If no automatic binding was required or
2312 * an error occurred and the topology is unknown, 0 is returned.
2313 */
2314static int numa_detect_topology()
2315{
2316 struct dirent **node_dirlist;
2317 int node_dirlist_size;
2318
2319 struct hap_cpuset active_cpus, node_cpu_set;
2320 const char *parse_cpu_set_args[2];
2321 char cpumap_path[PATH_MAX];
2322 char *err = NULL;
2323
2324 /* node_cpu_set count is used as return value */
2325 ha_cpuset_zero(&node_cpu_set);
2326
2327 /* 1. count the sysfs node<X> directories */
Willy Tarreau07bf21c2021-04-23 19:09:16 +02002328 node_dirlist = NULL;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002329 node_dirlist_size = scandir(NUMA_DETECT_SYSTEM_SYSFS_PATH"/node", &node_dirlist, numa_filter, alphasort);
2330 if (node_dirlist_size <= 1)
2331 goto free_scandir_entries;
2332
2333 /* 2. read and parse the list of currently online cpu */
2334 if (read_file_to_trash(NUMA_DETECT_SYSTEM_SYSFS_PATH"/cpu/online")) {
2335 ha_notice("Cannot read online CPUs list, will not try to refine binding\n");
2336 goto free_scandir_entries;
2337 }
2338
2339 parse_cpu_set_args[0] = trash.area;
2340 parse_cpu_set_args[1] = "\0";
2341 if (parse_cpu_set(parse_cpu_set_args, &active_cpus, 1, &err)) {
2342 ha_notice("Cannot read online CPUs list: '%s'. Will not try to refine binding\n", err);
2343 free(err);
2344 goto free_scandir_entries;
2345 }
2346
2347 /* 3. loop through nodes dirs and find the first one with active cpus */
2348 while (node_dirlist_size--) {
2349 const char *node = node_dirlist[node_dirlist_size]->d_name;
2350 ha_cpuset_zero(&node_cpu_set);
2351
2352 snprintf(cpumap_path, PATH_MAX, "%s/node/%s/cpumap",
2353 NUMA_DETECT_SYSTEM_SYSFS_PATH, node);
2354
2355 if (read_file_to_trash(cpumap_path)) {
2356 ha_notice("Cannot read CPUs list of '%s', will not select them to refine binding\n", node);
2357 free(node_dirlist[node_dirlist_size]);
2358 continue;
2359 }
2360
2361 parse_cpumap(trash.area, &node_cpu_set);
2362 ha_cpuset_and(&node_cpu_set, &active_cpus);
2363
2364 /* 5. set affinity on the first found node with active cpus */
2365 if (!ha_cpuset_count(&node_cpu_set)) {
2366 free(node_dirlist[node_dirlist_size]);
2367 continue;
2368 }
2369
2370 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));
2371 if (sched_setaffinity(getpid(), sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2372 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2373
2374 /* clear the cpuset used as return value */
2375 ha_cpuset_zero(&node_cpu_set);
2376 }
2377
2378 free(node_dirlist[node_dirlist_size]);
2379 break;
2380 }
2381
2382 free_scandir_entries:
2383 while (node_dirlist_size-- > 0)
2384 free(node_dirlist[node_dirlist_size]);
2385 free(node_dirlist);
2386
2387 return ha_cpuset_count(&node_cpu_set);
2388}
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002389
David CARLIERf5d48f82021-12-06 11:00:10 +00002390#elif defined(__FreeBSD__)
2391static int numa_detect_topology()
2392{
2393 struct hap_cpuset node_cpu_set;
2394 int ndomains = 0, i;
2395 size_t len = sizeof(ndomains);
2396
2397 if (sysctlbyname("vm.ndomains", &ndomains, &len, NULL, 0) == -1) {
2398 ha_notice("Cannot assess the number of CPUs domains\n");
2399 return 0;
2400 }
2401
2402 BUG_ON(ndomains > MAXMEMDOM);
2403 ha_cpuset_zero(&node_cpu_set);
2404
2405 /*
2406 * We retrieve the first active valid CPU domain
2407 * with active cpu and binding it, we returns
2408 * the number of cpu from the said domain
2409 */
2410 for (i = 0; i < ndomains; i ++) {
2411 struct hap_cpuset dom;
2412 ha_cpuset_zero(&dom);
2413 if (cpuset_getaffinity(CPU_LEVEL_WHICH, CPU_WHICH_DOMAIN, i, sizeof(dom.cpuset), &dom.cpuset) == -1)
2414 continue;
2415
2416 if (!ha_cpuset_count(&dom))
2417 continue;
2418
2419 ha_cpuset_assign(&node_cpu_set, &dom);
2420
2421 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));
2422 if (cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2423 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2424
2425 /* clear the cpuset used as return value */
2426 ha_cpuset_zero(&node_cpu_set);
2427 }
2428 break;
2429 }
2430
2431 return ha_cpuset_count(&node_cpu_set);
2432}
2433
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002434#else
2435static int numa_detect_topology()
2436{
2437 return 0;
2438}
2439
2440#endif
2441#endif /* USE_THREAD && USE_CPU_AFFINITY */
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002442
Willy Tarreaubb925012009-07-23 13:36:36 +02002443/*
2444 * Returns the error code, 0 if OK, or any combination of :
2445 * - ERR_ABORT: must abort ASAP
2446 * - ERR_FATAL: we can continue parsing but not start the service
2447 * - ERR_WARN: a warning has been emitted
2448 * - ERR_ALERT: an alert has been emitted
2449 * Only the two first ones can stop processing, the two others are just
2450 * indicators.
2451 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002452int check_config_validity()
2453{
2454 int cfgerr = 0;
2455 struct proxy *curproxy = NULL;
Emeric Brun3b68b602022-08-18 15:53:21 +02002456 struct proxy *init_proxies_list = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002457 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002458 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002459 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002460 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002461 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002462 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002463 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01002464 struct resolvers *curr_resolvers = NULL;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002465 int i;
Frédéric Lécaille372508c2022-05-06 08:53:16 +02002466 int diag_no_cluster_secret = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002467
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002468 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002469 /*
2470 * Now, check for the integrity of all that we have collected.
2471 */
2472
2473 /* will be needed further to delay some tasks */
Willy Tarreau55542642021-10-08 09:33:24 +02002474 clock_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002475
Willy Tarreau193b8c62012-11-22 00:17:38 +01002476 if (!global.tune.max_http_hdr)
2477 global.tune.max_http_hdr = MAX_HTTP_HDR;
2478
2479 if (!global.tune.cookie_len)
2480 global.tune.cookie_len = CAPTURE_LEN;
2481
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002482 if (!global.tune.requri_len)
2483 global.tune.requri_len = REQURI_LEN;
2484
Willy Tarreau149ab772019-01-26 14:27:06 +01002485 if (!global.nbthread) {
2486 /* nbthread not set, thus automatic. In this case, and only if
2487 * running on a single process, we enable the same number of
2488 * threads as the number of CPUs the process is bound to. This
2489 * allows to easily control the number of threads using taskset.
2490 */
2491 global.nbthread = 1;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002492
Willy Tarreau149ab772019-01-26 14:27:06 +01002493#if defined(USE_THREAD)
Willy Tarreaub63dbb72021-06-11 16:50:29 +02002494 {
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002495 int numa_cores = 0;
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002496#if defined(USE_CPU_AFFINITY)
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002497 if (global.numa_cpu_mapping && !thread_cpu_mask_forced())
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002498 numa_cores = numa_detect_topology();
2499#endif
2500 global.nbthread = numa_cores ? numa_cores :
2501 thread_cpus_enabled_at_boot;
2502 }
Willy Tarreau149ab772019-01-26 14:27:06 +01002503#endif
2504 }
2505
Willy Tarreauc33b9692021-09-22 12:07:23 +02002506 if (!global.nbtgroups)
2507 global.nbtgroups = 1;
2508
Willy Tarreaue6806eb2021-09-27 10:10:26 +02002509 if (thread_map_to_groups() < 0) {
2510 err_code |= ERR_ALERT | ERR_FATAL;
2511 goto out;
2512 }
2513
Willy Tarreaubafbe012017-11-24 17:34:44 +01002514 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002515
Willy Tarreaubafbe012017-11-24 17:34:44 +01002516 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002517
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002518 /* Post initialisation of the users and groups lists. */
2519 err_code = userlist_postinit();
2520 if (err_code != ERR_NONE)
2521 goto out;
2522
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002523 /* first, we will invert the proxy list order */
2524 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002525 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002526 struct proxy *next;
2527
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002528 next = proxies_list->next;
2529 proxies_list->next = curproxy;
2530 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002531 if (!next)
2532 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002533 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002534 }
2535
Emeric Brun3b68b602022-08-18 15:53:21 +02002536 /* starting to initialize the main proxies list */
2537 init_proxies_list = proxies_list;
2538
2539init_proxies_list_stage1:
2540 for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002541 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002542 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002543 struct sticking_rule *mrule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002544 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002545 unsigned int next_id;
2546
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002547 if (!(curproxy->cap & PR_CAP_INT) && curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002548 /* proxy ID not set, use automatic numbering with first
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002549 * spare entry starting with next_pxid. We don't assign
2550 * numbers for internal proxies as they may depend on
2551 * build or config options and we don't want them to
2552 * possibly reuse existing IDs.
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002553 */
2554 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2555 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2556 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002557 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002558
Willy Tarreau32b51cd2021-08-26 15:59:44 +02002559 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize >= (256 << 20) && ONLY_ONCE()) {
2560 ha_alert("global.tune.bufsize must be below 256 MB when HTTP is in use (current value = %d).\n",
2561 global.tune.bufsize);
2562 cfgerr++;
2563 }
2564
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002565 /* next IDs are shifted even if the proxy is disabled, this
2566 * guarantees that a proxy that is temporarily disabled in the
2567 * configuration doesn't cause a renumbering. Internal proxies
2568 * that are not assigned a static ID must never shift the IDs
2569 * either since they may appear in any order (Lua, logs, etc).
2570 * The GLOBAL proxy that carries the stats socket has its ID
2571 * forced to zero.
2572 */
2573 if (curproxy->uuid >= 0)
2574 next_pxid++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002575
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002576 if (curproxy->flags & PR_FL_DISABLED) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002577 /* ensure we don't keep listeners uselessly bound. We
2578 * can't disable their listeners yet (fdtab not
2579 * allocated yet) but let's skip them.
2580 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002581 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002582 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002583 curproxy->table->peers.p = NULL;
2584 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002585 continue;
2586 }
2587
Christopher Fauletff556272021-10-13 11:04:10 +02002588 /* The current proxy is referencing a default proxy. We must
2589 * finalize its config, but only once. If the default proxy is
2590 * ready (PR_FL_READY) it means it was already fully configured.
2591 */
2592 if (curproxy->defpx) {
2593 if (!(curproxy->defpx->flags & PR_FL_READY)) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02002594 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
2595 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l4_rules, curproxy->defpx, &err_code);
2596 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l5_rules, curproxy->defpx, &err_code);
2597 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.inspect_rules, curproxy->defpx, &err_code);
2598 cfgerr += check_action_rules(&curproxy->defpx->tcp_rep.inspect_rules, curproxy->defpx, &err_code);
2599 cfgerr += check_action_rules(&curproxy->defpx->http_req_rules, curproxy->defpx, &err_code);
2600 cfgerr += check_action_rules(&curproxy->defpx->http_res_rules, curproxy->defpx, &err_code);
2601 cfgerr += check_action_rules(&curproxy->defpx->http_after_res_rules, curproxy->defpx, &err_code);
2602
Christopher Fauletff556272021-10-13 11:04:10 +02002603 err = NULL;
2604 i = smp_resolve_args(curproxy->defpx, &err);
2605 cfgerr += i;
2606 if (i) {
2607 indent_msg(&err, 8);
2608 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
2609 ha_free(&err);
2610 }
2611 else
2612 cfgerr += acl_find_targets(curproxy->defpx);
2613
2614 /* default proxy is now ready. Set the right FE/BE capabilities */
2615 curproxy->defpx->flags |= PR_FL_READY;
2616 }
2617 }
2618
Willy Tarreau3d209582014-05-09 17:06:11 +02002619 /* check and reduce the bind-proc of each listener */
2620 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2621 unsigned long mask;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002622 struct listener *li;
Willy Tarreau3d209582014-05-09 17:06:11 +02002623
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002624 /* HTTP frontends with "h2" as ALPN/NPN will work in
2625 * HTTP/2 and absolutely require buffers 16kB or larger.
2626 */
2627#ifdef USE_OPENSSL
2628 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2629#ifdef OPENSSL_NPN_NEGOTIATED
2630 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002631 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002632 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 +01002633 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002634 cfgerr++;
2635 }
2636#endif
2637#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2638 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002639 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002640 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 +01002641 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002642 cfgerr++;
2643 }
2644#endif
2645 } /* HTTP && bufsize < 16384 */
2646#endif
2647
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002648 /* detect and address thread affinity inconsistencies */
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002649 err = NULL;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002650 if (thread_resolve_group_mask(bind_conf->bind_tgroup, bind_conf->bind_thread,
2651 &bind_conf->bind_tgroup, &bind_conf->bind_thread, &err) < 0) {
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002652 ha_alert("Proxy '%s': %s in 'bind %s' at [%s:%d].\n",
2653 curproxy->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
2654 free(err);
2655 cfgerr++;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002656 } else if (!((mask = bind_conf->bind_thread) & ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002657 unsigned long new_mask = 0;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002658 ulong thr_mask = ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002659
2660 while (mask) {
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002661 new_mask |= mask & thr_mask;
2662 mask >>= ha_tgroup_info[bind_conf->bind_tgroup-1].count;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002663 }
2664
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002665 bind_conf->bind_thread = new_mask;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002666 ha_warning("Proxy '%s': the thread range specified on the 'thread' directive of 'bind %s' at [%s:%d] only refers to thread numbers out of the range supported by thread group %d (%d). The thread numbers were remapped to existing threads instead (mask 0x%lx).\n",
2667 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line,
2668 bind_conf->bind_tgroup, ha_tgroup_info[bind_conf->bind_tgroup-1].count, new_mask);
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002669 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002670
2671 /* apply thread masks and groups to all receivers */
2672 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
Willy Tarreau6dfbef42021-10-12 15:23:03 +02002673 if (bind_conf->settings.shards <= 1) {
2674 li->rx.bind_thread = bind_conf->bind_thread;
2675 li->rx.bind_tgroup = bind_conf->bind_tgroup;
2676 } else {
2677 struct listener *new_li;
2678 int shard, shards, todo, done, bit;
2679 ulong mask;
2680
2681 shards = bind_conf->settings.shards;
2682 todo = my_popcountl(bind_conf->bind_thread);
2683
2684 /* no more shards than total threads */
2685 if (shards > todo)
2686 shards = todo;
2687
2688 shard = done = bit = 0;
2689 new_li = li;
2690
2691 while (1) {
2692 mask = 0;
2693 while (done < todo) {
2694 /* enlarge mask to cover next bit of bind_thread */
2695 while (!(bind_conf->bind_thread & (1UL << bit)))
2696 bit++;
2697 mask |= (1UL << bit);
2698 bit++;
2699 done += shards;
2700 }
2701
2702 new_li->rx.bind_thread = bind_conf->bind_thread & mask;
2703 new_li->rx.bind_tgroup = bind_conf->bind_tgroup;
2704 done -= todo;
2705
2706 shard++;
2707 if (shard >= shards)
2708 break;
2709
2710 /* create another listener for new shards */
2711 new_li = clone_listener(li);
2712 if (!new_li) {
2713 ha_alert("Out of memory while trying to allocate extra listener for shard %d in %s %s\n",
2714 shard, proxy_type_str(curproxy), curproxy->id);
2715 cfgerr++;
2716 err_code |= ERR_FATAL | ERR_ALERT;
2717 goto out;
2718 }
2719 }
2720 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002721 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002722 }
2723
Willy Tarreauff01a212009-03-15 13:46:16 +01002724 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01002725 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002726 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002727 break;
2728
2729 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002730 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002731 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002732
2733 case PR_MODE_CLI:
2734 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2735 break;
Emeric Brun3b68b602022-08-18 15:53:21 +02002736
Emeric Brun54932b42020-07-07 09:43:24 +02002737 case PR_MODE_SYSLOG:
Emeric Brun3b68b602022-08-18 15:53:21 +02002738 /* this mode is initialized as the classic tcp proxy */
2739 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2740 break;
2741
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002742 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02002743 case PR_MODES:
2744 /* should not happen, bug gcc warn missing switch statement */
Emeric Brun3b68b602022-08-18 15:53:21 +02002745 ha_alert("%s '%s' cannot initialize this proxy mode (peers) in this way. NOTE: PLEASE REPORT THIS TO DEVELOPERS AS YOU'RE NOT SUPPOSED TO BE ABLE TO CREATE A CONFIGURATION TRIGGERING THIS!\n",
Emeric Brun54932b42020-07-07 09:43:24 +02002746 proxy_type_str(curproxy), curproxy->id);
2747 cfgerr++;
2748 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002749 }
2750
William Lallemand2c04a5a2021-08-13 15:21:12 +02002751 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002752 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 +01002753 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002754 err_code |= ERR_WARN;
2755 }
2756
Willy Tarreau77e0dae2020-10-14 15:44:27 +02002757 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002758 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002759 if (curproxy->options & PR_O_TRANSP) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002760 ha_alert("%s '%s' cannot use both transparent and balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002761 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002762 cfgerr++;
2763 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002764#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002765 else if (curproxy->srv == NULL) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002766 ha_alert("%s '%s' needs at least 1 server in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002767 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002768 cfgerr++;
2769 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002770#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002771 else if (curproxy->options & PR_O_DISPATCH) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002772 ha_warning("dispatch address of %s '%s' will be ignored in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002773 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002774 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002775 }
2776 }
Willy Tarreau25241232021-07-18 19:18:56 +02002777 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002778 /* If no LB algo is set in a backend, and we're not in
2779 * transparent mode, dispatch mode nor proxy mode, we
2780 * want to use balance roundrobin by default.
2781 */
2782 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2783 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002784 }
2785 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002786
Willy Tarreau1620ec32011-08-06 17:05:02 +02002787 if (curproxy->options & PR_O_DISPATCH)
Willy Tarreau25241232021-07-18 19:18:56 +02002788 curproxy->options &= ~PR_O_TRANSP;
Willy Tarreau1620ec32011-08-06 17:05:02 +02002789 else if (curproxy->options & PR_O_TRANSP)
Willy Tarreau25241232021-07-18 19:18:56 +02002790 curproxy->options &= ~PR_O_DISPATCH;
Willy Tarreau82936582007-11-30 15:20:09 +01002791
Christopher Faulete5870d82020-04-15 11:32:03 +02002792 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002793 ha_warning("%s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
Christopher Faulete5870d82020-04-15 11:32:03 +02002794 proxy_type_str(curproxy), curproxy->id);
2795 err_code |= ERR_WARN;
2796 }
2797
2798 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002799 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002800 if (curproxy->options & PR_O_DISABLE404) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002801 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002802 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002803 err_code |= ERR_WARN;
2804 curproxy->options &= ~PR_O_DISABLE404;
2805 }
2806 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002807 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002808 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002809 err_code |= ERR_WARN;
2810 curproxy->options &= ~PR_O2_CHK_SNDST;
2811 }
Willy Tarreauef781042010-01-27 11:53:01 +01002812 }
2813
Simon Horman98637e52014-06-20 12:30:16 +09002814 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2815 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002816 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2817 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002818 cfgerr++;
2819 }
2820 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002821 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2822 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002823 cfgerr++;
2824 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002825 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2826 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2827 curproxy->id, "option external-check");
2828 err_code |= ERR_WARN;
2829 }
Simon Horman98637e52014-06-20 12:30:16 +09002830 }
2831
Simon Horman64e34162015-02-06 11:11:57 +09002832 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002833 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002834 ha_warning("'email-alert' will be ignored for %s '%s' (the presence any of "
Christopher Faulet767a84b2017-11-24 16:50:31 +01002835 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2836 "'email-alert myhostname', or 'email-alert to' "
2837 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2838 "to be present).\n",
2839 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002840 err_code |= ERR_WARN;
2841 free_email_alert(curproxy);
2842 }
2843 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002844 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002845 }
2846
Simon Horman98637e52014-06-20 12:30:16 +09002847 if (curproxy->check_command) {
2848 int clear = 0;
2849 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002850 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002851 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002852 err_code |= ERR_WARN;
2853 clear = 1;
2854 }
2855 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002856 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2857 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002858 cfgerr++;
2859 }
2860 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002861 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09002862 }
2863 }
2864
2865 if (curproxy->check_path) {
2866 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002867 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002868 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002869 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002870 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09002871 }
2872 }
2873
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002874 /* if a default backend was specified, let's find it */
2875 if (curproxy->defbe.name) {
2876 struct proxy *target;
2877
Willy Tarreauafb39922015-05-26 12:04:09 +02002878 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002879 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002880 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2881 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002882 cfgerr++;
2883 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002884 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2885 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002886 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002887 } else if (target->mode != curproxy->mode &&
2888 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2889
Christopher Faulet767a84b2017-11-24 16:50:31 +01002890 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2891 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2892 curproxy->conf.file, curproxy->conf.line,
2893 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2894 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002895 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002896 } else {
2897 free(curproxy->defbe.name);
2898 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002899 /* Emit a warning if this proxy also has some servers */
2900 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002901 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2902 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002903 err_code |= ERR_WARN;
2904 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002905 }
2906 }
2907
Willy Tarreau55ea7572007-06-17 19:56:27 +02002908 /* find the target proxy for 'use_backend' rules */
2909 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002910 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002911 struct logformat_node *node;
2912 char *pxname;
2913
2914 /* Try to parse the string as a log format expression. If the result
2915 * of the parsing is only one entry containing a simple string, then
2916 * it's a standard string corresponding to a static rule, thus the
2917 * parsing is cancelled and be.name is restored to be resolved.
2918 */
2919 pxname = rule->be.name;
2920 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002921 curproxy->conf.args.ctx = ARGC_UBK;
2922 curproxy->conf.args.file = rule->file;
2923 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002924 err = NULL;
2925 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002926 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2927 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002928 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002929 cfgerr++;
2930 continue;
2931 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002932 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2933
2934 if (!LIST_ISEMPTY(&rule->be.expr)) {
2935 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2936 rule->dynamic = 1;
2937 free(pxname);
2938 continue;
2939 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002940 /* Only one element in the list, a simple string: free the expression and
2941 * fall back to static rule
2942 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002943 LIST_DELETE(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002944 free(node->arg);
2945 free(node);
2946 }
2947
2948 rule->dynamic = 0;
2949 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002950
Willy Tarreauafb39922015-05-26 12:04:09 +02002951 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002952 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002953 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2954 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002955 cfgerr++;
2956 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002957 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2958 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002959 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002960 } else if (target->mode != curproxy->mode &&
2961 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2962
Christopher Faulet767a84b2017-11-24 16:50:31 +01002963 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2964 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2965 curproxy->conf.file, curproxy->conf.line,
2966 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2967 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002968 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002969 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002970 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002971 rule->be.backend = target;
2972 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01002973 err_code |= warnif_tcp_http_cond(curproxy, rule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002974 }
2975
Willy Tarreau64ab6072014-09-16 12:17:36 +02002976 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002977 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002978 struct server *target;
2979 struct logformat_node *node;
2980 char *server_name;
2981
2982 /* We try to parse the string as a log format expression. If the result of the parsing
2983 * is only one entry containing a single string, then it's a standard string corresponding
2984 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2985 */
2986 server_name = srule->srv.name;
2987 LIST_INIT(&srule->expr);
2988 curproxy->conf.args.ctx = ARGC_USRV;
2989 err = NULL;
2990 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2991 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2992 srule->file, srule->line, server_name, err);
2993 free(err);
2994 cfgerr++;
2995 continue;
2996 }
2997 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2998
2999 if (!LIST_ISEMPTY(&srule->expr)) {
3000 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
3001 srule->dynamic = 1;
3002 free(server_name);
3003 continue;
3004 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02003005 /* Only one element in the list, a simple string: free the expression and
3006 * fall back to static rule
3007 */
Willy Tarreau2b718102021-04-21 07:32:39 +02003008 LIST_DELETE(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02003009 free(node->arg);
3010 free(node);
3011 }
3012
3013 srule->dynamic = 0;
3014 srule->srv.name = server_name;
3015 target = findserver(curproxy, srule->srv.name);
Christopher Faulet581db2b2021-03-26 10:02:46 +01003016 err_code |= warnif_tcp_http_cond(curproxy, srule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003017
3018 if (!target) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003019 ha_alert("%s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003020 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003021 cfgerr++;
3022 continue;
3023 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01003024 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003025 srule->srv.ptr = target;
Amaury Denoyelle06269612021-08-23 14:05:07 +02003026 target->flags |= SRV_F_NON_PURGEABLE;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003027 }
3028
Emeric Brunb982a3d2010-01-04 15:45:53 +01003029 /* find the target table for 'stick' rules */
3030 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003031 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003032
Emeric Brun1d33b292010-01-04 15:47:17 +01003033 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
3034 if (mrule->flags & STK_IS_STORE)
3035 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3036
Emeric Brunb982a3d2010-01-04 15:45:53 +01003037 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003038 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003039 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003040 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003041
3042 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003043 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003044 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003045 cfgerr++;
3046 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003047 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003048 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3049 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003050 cfgerr++;
3051 }
3052 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003053 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003054 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003055 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3056 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003057 if (!in_proxies_list(target->proxies_list, curproxy)) {
3058 curproxy->next_stkt_ref = target->proxies_list;
3059 target->proxies_list = curproxy;
3060 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003061 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003062 err_code |= warnif_tcp_http_cond(curproxy, mrule->cond);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003063 }
3064
3065 /* find the target table for 'store response' rules */
3066 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003067 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003068
Emeric Brun1d33b292010-01-04 15:47:17 +01003069 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3070
Emeric Brunb982a3d2010-01-04 15:45:53 +01003071 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003072 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003073 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003074 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003075
3076 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003077 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003078 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003079 cfgerr++;
3080 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003081 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003082 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3083 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003084 cfgerr++;
3085 }
3086 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003087 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003088 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003089 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3090 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003091 if (!in_proxies_list(target->proxies_list, curproxy)) {
3092 curproxy->next_stkt_ref = target->proxies_list;
3093 target->proxies_list = curproxy;
3094 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003095 }
3096 }
3097
Christopher Faulet42c6cf92021-03-25 17:19:04 +01003098 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
3099 cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code);
3100 cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code);
3101 cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code);
3102 cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code);
3103 cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code);
3104 cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code);
3105 cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003106
Christopher Faulet5eef0182021-03-31 17:13:49 +02003107 /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */
3108 if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) {
3109 if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP)
3110 ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. "
3111 "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n",
3112 curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy));
3113 }
3114
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003115 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003116 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003117
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003118 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003119 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003120 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003121 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003122 break;
3123 }
3124 }
3125
3126 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003127 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003128 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01003129 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003130 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003131 cfgerr++;
3132 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003133 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003134 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003135 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003136 }
Emeric Brun32da3c42010-09-23 18:39:19 +02003137 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003138 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
3139 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003140 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003141 cfgerr++;
3142 }
3143 }
3144
Simon Horman9dc49962015-01-30 11:22:59 +09003145
3146 if (curproxy->email_alert.mailers.name) {
3147 struct mailers *curmailers = mailers;
3148
3149 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003150 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09003151 break;
Simon Horman9dc49962015-01-30 11:22:59 +09003152 }
Simon Horman9dc49962015-01-30 11:22:59 +09003153 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003154 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
3155 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09003156 free_email_alert(curproxy);
3157 cfgerr++;
3158 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02003159 else {
3160 err = NULL;
3161 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003162 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003163 free(err);
3164 cfgerr++;
3165 }
3166 }
Simon Horman9dc49962015-01-30 11:22:59 +09003167 }
3168
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003169 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01003170 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003171 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003172 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
3173 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003174 cfgerr++;
3175 goto out_uri_auth_compat;
3176 }
3177
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003178 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003179 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003180 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003181 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003182 struct act_rule *rule;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003183 i = 0;
3184
Willy Tarreau95fa4692010-02-01 13:05:50 +01003185 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
3186 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003187
3188 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003189 uri_auth_compat_req[i++] = "realm";
3190 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
3191 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003192
Willy Tarreau95fa4692010-02-01 13:05:50 +01003193 uri_auth_compat_req[i++] = "unless";
3194 uri_auth_compat_req[i++] = "{";
3195 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
3196 uri_auth_compat_req[i++] = "}";
3197 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003198
Willy Tarreauff011f22011-01-06 17:51:27 +01003199 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
3200 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003201 cfgerr++;
3202 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003203 }
3204
Willy Tarreau2b718102021-04-21 07:32:39 +02003205 LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01003206
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003207 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003208 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003209 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003210 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003211 }
3212out_uri_auth_compat:
3213
Dragan Dosen43885c72015-10-01 13:18:13 +02003214 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02003215 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02003216 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
3217 if (!curproxy->conf.logformat_sd_string) {
3218 /* set the default logformat_sd_string */
3219 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
3220 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003221 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02003222 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003223 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02003224
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003225 /* compile the log format */
3226 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02003227 if (curproxy->conf.logformat_string != default_http_log_format &&
3228 curproxy->conf.logformat_string != default_tcp_log_format &&
3229 curproxy->conf.logformat_string != clf_http_log_format)
3230 free(curproxy->conf.logformat_string);
3231 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003232 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02003233 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003234
3235 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3236 free(curproxy->conf.logformat_sd_string);
3237 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003238 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003239 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003240 }
3241
Willy Tarreau62a61232013-04-12 18:13:46 +02003242 if (curproxy->conf.logformat_string) {
3243 curproxy->conf.args.ctx = ARGC_LOG;
3244 curproxy->conf.args.file = curproxy->conf.lfs_file;
3245 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003246 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003247 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
3248 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003249 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003250 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3251 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003252 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003253 cfgerr++;
3254 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003255 curproxy->conf.args.file = NULL;
3256 curproxy->conf.args.line = 0;
3257 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003258
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003259 if (curproxy->conf.logformat_sd_string) {
3260 curproxy->conf.args.ctx = ARGC_LOGSD;
3261 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3262 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003263 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003264 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
3265 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003266 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003267 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3268 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003269 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003270 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003271 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003272 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3273 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003274 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003275 cfgerr++;
3276 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003277 curproxy->conf.args.file = NULL;
3278 curproxy->conf.args.line = 0;
3279 }
3280
Willy Tarreau62a61232013-04-12 18:13:46 +02003281 if (curproxy->conf.uniqueid_format_string) {
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003282 int where = 0;
3283
Willy Tarreau62a61232013-04-12 18:13:46 +02003284 curproxy->conf.args.ctx = ARGC_UIF;
3285 curproxy->conf.args.file = curproxy->conf.uif_file;
3286 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003287 err = NULL;
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003288 if (curproxy->cap & PR_CAP_FE)
3289 where |= SMP_VAL_FE_HRQ_HDR;
3290 if (curproxy->cap & PR_CAP_BE)
3291 where |= SMP_VAL_BE_HRQ_HDR;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003292 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003293 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES, where, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003294 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3295 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003296 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003297 cfgerr++;
3298 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003299 curproxy->conf.args.file = NULL;
3300 curproxy->conf.args.line = 0;
3301 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003302
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +02003303 if (curproxy->conf.error_logformat_string) {
3304 curproxy->conf.args.ctx = ARGC_LOG;
3305 curproxy->conf.args.file = curproxy->conf.elfs_file;
3306 curproxy->conf.args.line = curproxy->conf.elfs_line;
3307 err = NULL;
3308 if (!parse_logformat_string(curproxy->conf.error_logformat_string, curproxy, &curproxy->logformat_error,
3309 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
3310 SMP_VAL_FE_LOG_END, &err)) {
3311 ha_alert("Parsing [%s:%d]: failed to parse error-log-format : %s.\n",
3312 curproxy->conf.elfs_file, curproxy->conf.elfs_line, err);
3313 free(err);
3314 cfgerr++;
3315 }
3316 curproxy->conf.args.file = NULL;
3317 curproxy->conf.args.line = 0;
3318 }
3319
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +02003320 /* "balance hash" needs to compile its expression */
3321 if ((curproxy->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_SMP) {
3322 int idx = 0;
3323 const char *args[] = {
3324 curproxy->lbprm.arg_str,
3325 NULL,
3326 };
3327
3328 err = NULL;
3329 curproxy->conf.args.ctx = ARGC_USRV; // same context as use_server.
3330 curproxy->lbprm.expr =
3331 sample_parse_expr((char **)args, &idx,
3332 curproxy->conf.file, curproxy->conf.line,
3333 &err, &curproxy->conf.args, NULL);
3334
3335 if (!curproxy->lbprm.expr) {
3336 ha_alert("%s '%s' [%s:%d]: failed to parse 'balance hash' expression '%s' in : %s.\n",
3337 proxy_type_str(curproxy), curproxy->id,
3338 curproxy->conf.file, curproxy->conf.line,
3339 curproxy->lbprm.arg_str, err);
3340 ha_free(&err);
3341 cfgerr++;
3342 }
3343 else if (!(curproxy->lbprm.expr->fetch->val & SMP_VAL_BE_SET_SRV)) {
3344 ha_alert("%s '%s' [%s:%d]: error detected while parsing 'balance hash' expression '%s' "
3345 "which requires information from %s, which is not available here.\n",
3346 proxy_type_str(curproxy), curproxy->id,
3347 curproxy->conf.file, curproxy->conf.line,
3348 curproxy->lbprm.arg_str, sample_src_names(curproxy->lbprm.expr->fetch->use));
3349 cfgerr++;
3350 }
3351 else if (curproxy->mode == PR_MODE_HTTP && (curproxy->lbprm.expr->fetch->use & SMP_USE_L6REQ)) {
3352 ha_warning("%s '%s' [%s:%d]: L6 sample fetch <%s> will be ignored in 'balance hash' expression in HTTP mode.\n",
3353 proxy_type_str(curproxy), curproxy->id,
3354 curproxy->conf.file, curproxy->conf.line,
3355 curproxy->lbprm.arg_str);
3356 }
3357 else
3358 curproxy->http_needed |= !!(curproxy->lbprm.expr->fetch->use & SMP_USE_HTTP_ANY);
3359 }
3360
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003361 /* only now we can check if some args remain unresolved.
3362 * This must be done after the users and groups resolution.
3363 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01003364 err = NULL;
3365 i = smp_resolve_args(curproxy, &err);
3366 cfgerr += i;
3367 if (i) {
3368 indent_msg(&err, 8);
3369 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
3370 ha_free(&err);
3371 } else
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003372 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003373
William Lallemand2c04a5a2021-08-13 15:21:12 +02003374 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003375 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003376 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003377 (!curproxy->timeout.connect ||
3378 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003379 ha_warning("missing timeouts for %s '%s'.\n"
Christopher Faulet767a84b2017-11-24 16:50:31 +01003380 " | While not properly invalid, you will certainly encounter various problems\n"
3381 " | with such a configuration. To fix this, please ensure that all following\n"
3382 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3383 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003384 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003385 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003386
Willy Tarreau1fa31262007-12-03 00:36:16 +01003387 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3388 * We must still support older configurations, so let's find out whether those
3389 * parameters have been set or must be copied from contimeouts.
3390 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01003391 if (!curproxy->timeout.tarpit)
3392 curproxy->timeout.tarpit = curproxy->timeout.connect;
3393 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
3394 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003395
Christopher Faulete5870d82020-04-15 11:32:03 +02003396 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003397 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 +01003398 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003399 err_code |= ERR_WARN;
3400 }
3401
Willy Tarreau193b8c62012-11-22 00:17:38 +01003402 /* ensure that cookie capture length is not too large */
3403 if (curproxy->capture_len >= global.tune.cookie_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003404 ha_warning("truncating capture length to %d bytes for %s '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003405 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003406 err_code |= ERR_WARN;
3407 curproxy->capture_len = global.tune.cookie_len - 1;
3408 }
3409
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003410 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003411 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003412 curproxy->req_cap_pool = create_pool("ptrcap",
3413 curproxy->nb_req_cap * sizeof(char *),
3414 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003415 }
3416
3417 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003418 curproxy->rsp_cap_pool = create_pool("ptrcap",
3419 curproxy->nb_rsp_cap * sizeof(char *),
3420 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003421 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003422
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003423 switch (curproxy->load_server_state_from_file) {
3424 case PR_SRV_STATE_FILE_UNSPEC:
3425 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3426 break;
3427 case PR_SRV_STATE_FILE_GLOBAL:
3428 if (!global.server_state_file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003429 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 +01003430 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003431 err_code |= ERR_WARN;
3432 }
3433 break;
3434 }
3435
Willy Tarreaubaaee002006-06-26 02:48:02 +02003436 /* first, we will invert the servers list order */
3437 newsrv = NULL;
3438 while (curproxy->srv) {
3439 struct server *next;
3440
3441 next = curproxy->srv->next;
3442 curproxy->srv->next = newsrv;
3443 newsrv = curproxy->srv;
3444 if (!next)
3445 break;
3446 curproxy->srv = next;
3447 }
3448
Willy Tarreau17edc812014-01-03 12:14:34 +01003449 /* Check that no server name conflicts. This causes trouble in the stats.
3450 * We only emit a warning for the first conflict affecting each server,
3451 * in order to avoid combinatory explosion if all servers have the same
3452 * name. We do that only for servers which do not have an explicit ID,
3453 * because these IDs were made also for distinguishing them and we don't
3454 * want to annoy people who correctly manage them.
3455 */
3456 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3457 struct server *other_srv;
3458
3459 if (newsrv->puid)
3460 continue;
3461
3462 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3463 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003464 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 +01003465 newsrv->conf.file, newsrv->conf.line,
3466 proxy_type_str(curproxy), curproxy->id,
3467 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003468 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003469 break;
3470 }
3471 }
3472 }
3473
Willy Tarreaudd701652010-05-25 23:03:02 +02003474 /* assign automatic UIDs to servers which don't have one yet */
3475 next_id = 1;
3476 newsrv = curproxy->srv;
3477 while (newsrv != NULL) {
3478 if (!newsrv->puid) {
3479 /* server ID not set, use automatic numbering with first
3480 * spare entry starting with next_svid.
3481 */
3482 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3483 newsrv->conf.id.key = newsrv->puid = next_id;
3484 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
3485 }
Amaury Denoyelle077c6b82021-06-14 17:04:25 +02003486 newsrv->conf.name.key = newsrv->id;
3487 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
3488
Willy Tarreaudd701652010-05-25 23:03:02 +02003489 next_id++;
3490 newsrv = newsrv->next;
3491 }
3492
Willy Tarreau20697042007-11-15 23:26:18 +01003493 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003494 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003495
Willy Tarreau62c3be22012-01-20 13:12:32 +01003496 /*
3497 * If this server supports a maxconn parameter, it needs a dedicated
3498 * tasks to fill the emptied slots when a connection leaves.
3499 * Also, resolve deferred tracking dependency if needed.
3500 */
3501 newsrv = curproxy->srv;
3502 while (newsrv != NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003503 set_usermsgs_ctx(newsrv->conf.file, newsrv->conf.line, &newsrv->obj_type);
3504
Willy Tarreau62c3be22012-01-20 13:12:32 +01003505 if (newsrv->minconn > newsrv->maxconn) {
3506 /* Only 'minconn' was specified, or it was higher than or equal
3507 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3508 * this will avoid further useless expensive computations.
3509 */
3510 newsrv->maxconn = newsrv->minconn;
3511 } else if (newsrv->maxconn && !newsrv->minconn) {
3512 /* minconn was not specified, so we set it to maxconn */
3513 newsrv->minconn = newsrv->maxconn;
3514 }
3515
William Dauchyf6370442020-11-14 19:25:33 +01003516 /* this will also properly set the transport layer for
3517 * prod and checks
3518 * if default-server have use_ssl, prerare ssl init
3519 * without activating it */
3520 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
Christopher Faulet4ab26792021-12-01 09:50:41 +01003521 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3522 ((newsrv->flags & SRV_F_DEFSRV_USE_SSL) && newsrv->use_ssl != 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003523 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3524 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3525 }
Emeric Brun94324a42012-10-11 14:00:19 +02003526
Willy Tarreau034c88c2017-01-23 23:36:45 +01003527 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3528 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3529 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003530 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 +01003531
Willy Tarreau62c3be22012-01-20 13:12:32 +01003532 if (newsrv->trackit) {
Amaury Denoyelle669b6202021-07-13 10:35:23 +02003533 if (srv_apply_track(newsrv, curproxy)) {
3534 ++cfgerr;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003535 goto next_srv;
3536 }
Willy Tarreau62c3be22012-01-20 13:12:32 +01003537 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003538
Willy Tarreau62c3be22012-01-20 13:12:32 +01003539 next_srv:
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003540 reset_usermsgs_ctx();
Willy Tarreau62c3be22012-01-20 13:12:32 +01003541 newsrv = newsrv->next;
3542 }
3543
Olivier Houchard4e694042017-03-14 20:01:29 +01003544 /*
3545 * Try to generate dynamic cookies for servers now.
3546 * It couldn't be done earlier, since at the time we parsed
3547 * the server line, we may not have known yet that we
3548 * should use dynamic cookies, or the secret key may not
3549 * have been provided yet.
3550 */
3551 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3552 newsrv = curproxy->srv;
3553 while (newsrv != NULL) {
3554 srv_set_dyncookie(newsrv);
3555 newsrv = newsrv->next;
3556 }
3557
3558 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003559 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003560 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003561 */
3562
3563 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3564 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3565 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003566 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3567 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3568 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003569 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3570 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003571 if (chash_init_server_tree(curproxy) < 0) {
3572 cfgerr++;
3573 }
Willy Tarreau9757a382009-10-03 12:56:50 +02003574 } else {
3575 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3576 fwrr_init_server_groups(curproxy);
3577 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003578 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003579
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003580 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003581 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3582 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3583 fwlc_init_server_tree(curproxy);
3584 } else {
3585 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3586 fas_init_server_tree(curproxy);
3587 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003588 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003589
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003590 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003591 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3592 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003593 if (chash_init_server_tree(curproxy) < 0) {
3594 cfgerr++;
3595 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003596 } else {
3597 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3598 init_server_map(curproxy);
3599 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003600 break;
3601 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003602 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003603
3604 if (curproxy->options & PR_O_LOGASAP)
3605 curproxy->to_log &= ~LW_BYTES;
3606
William Lallemand2c04a5a2021-08-13 15:21:12 +02003607 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003608 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3609 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003610 ha_warning("log format ignored for %s '%s' since it has no log address.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003611 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003612 err_code |= ERR_WARN;
3613 }
3614
Christopher Faulet3b6446f2021-03-15 15:10:38 +01003615 if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) {
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003616 int optnum;
3617
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003618 if (curproxy->uri_auth) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003619 ha_warning("'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003620 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003621 err_code |= ERR_WARN;
3622 curproxy->uri_auth = NULL;
3623 }
3624
Willy Tarreaude7dc882017-03-10 11:49:21 +01003625 if (curproxy->capture_name) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003626 ha_warning("'capture' statement ignored for %s '%s' as it requires 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
3631 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003632 ha_warning("'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003633 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003634 err_code |= ERR_WARN;
3635 }
3636
3637 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003638 ha_warning("'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003639 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003640 err_code |= ERR_WARN;
3641 }
3642
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003643 if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003644 ha_warning("'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003645 proxy_type_str(curproxy), curproxy->id);
3646 err_code |= ERR_WARN;
3647 }
3648
Willy Tarreaude7dc882017-03-10 11:49:21 +01003649 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003650 ha_warning("'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003651 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003652 err_code |= ERR_WARN;
3653 }
3654
Willy Tarreau87cf5142011-08-19 22:57:24 +02003655 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003656 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003657 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003658 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003659 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003660 }
3661
3662 if (curproxy->options & PR_O_ORGTO) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003663 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003664 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003665 err_code |= ERR_WARN;
3666 curproxy->options &= ~PR_O_ORGTO;
3667 }
3668
3669 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3670 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3671 (curproxy->cap & cfg_opts[optnum].cap) &&
3672 (curproxy->options & cfg_opts[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003673 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003674 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003675 err_code |= ERR_WARN;
3676 curproxy->options &= ~cfg_opts[optnum].val;
3677 }
3678 }
3679
3680 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3681 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3682 (curproxy->cap & cfg_opts2[optnum].cap) &&
3683 (curproxy->options2 & cfg_opts2[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003684 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003685 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003686 err_code |= ERR_WARN;
3687 curproxy->options2 &= ~cfg_opts2[optnum].val;
3688 }
3689 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003690
Willy Tarreau29fbe512015-08-20 19:35:14 +02003691#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003692 if (curproxy->conn_src.bind_hdr_occ) {
3693 curproxy->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02003694 ha_warning("%s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003695 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003696 err_code |= ERR_WARN;
3697 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003698#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003699 }
3700
Willy Tarreaubaaee002006-06-26 02:48:02 +02003701 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003702 * ensure that we're not cross-dressing a TCP server into HTTP.
3703 */
3704 newsrv = curproxy->srv;
3705 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003706 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003707 ha_alert("%s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003708 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003709 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003710 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003711
Willy Tarreau0cec3312011-10-31 13:49:26 +01003712 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003713 ha_warning("%s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003714 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003715 err_code |= ERR_WARN;
3716 }
3717
Willy Tarreauc93cd162014-05-13 15:54:22 +02003718 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003719 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 +01003720 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003721 err_code |= ERR_WARN;
3722 }
3723
Willy Tarreau29fbe512015-08-20 19:35:14 +02003724#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003725 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3726 newsrv->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02003727 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 +01003728 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003729 err_code |= ERR_WARN;
3730 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003731#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003732
Willy Tarreau46deab62018-04-28 07:18:15 +02003733 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3734 curproxy->options &= ~PR_O_REUSE_MASK;
3735
Willy Tarreau21d2af32008-02-14 20:25:24 +01003736 newsrv = newsrv->next;
3737 }
3738
Christopher Fauletd7c91962015-04-30 11:48:27 +02003739 /* Check filter configuration, if any */
3740 cfgerr += flt_check(curproxy);
3741
Willy Tarreauc1a21672009-08-16 22:37:44 +02003742 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003743 if (!curproxy->accept)
3744 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003745
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003746 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
3747 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02003748 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003749
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003750 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003751 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003752 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003753 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003754
William Lallemandcf62f7e2018-10-26 14:47:40 +02003755 if (curproxy->mode == PR_MODE_CLI) {
3756 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3757 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3758 }
3759
Willy Tarreauc1a21672009-08-16 22:37:44 +02003760 /* both TCP and HTTP must check switching rules */
3761 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003762
3763 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003764 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003765 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3766 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 +02003767 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003768 }
3769
3770 if (curproxy->cap & PR_CAP_BE) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003771 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
3772 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02003773 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3774
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003775 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules) ||
3776 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_rep.inspect_rules)))
Emeric Brun97679e72010-09-23 17:56:44 +02003777 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3778
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003779 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003780 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003781 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003782 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003783
3784 /* If the backend does requires RDP cookie persistence, we have to
3785 * enable the corresponding analyser.
3786 */
3787 if (curproxy->options2 & PR_O2_RDPC_PRST)
3788 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003789
3790 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003791 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003792 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3793 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 +02003794 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003795 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003796
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003797 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003798 * attached to the current proxy */
3799 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3800 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003801 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003802
Willy Tarreau730cc022022-05-20 18:07:06 +02003803 if (!bind_conf->mux_proto) {
3804 /* No protocol was specified. If we're using QUIC at the transport
3805 * layer, we'll instantiate it as a mux as well. If QUIC is not
Ilya Shipitsin3b64a282022-07-29 22:26:53 +05003806 * compiled in, this will remain NULL.
Willy Tarreau730cc022022-05-20 18:07:06 +02003807 */
3808 if (bind_conf->xprt && bind_conf->xprt == xprt_get(XPRT_QUIC))
3809 bind_conf->mux_proto = get_mux_proto(ist("quic"));
3810 }
3811
Christopher Fauleta717b992018-04-10 14:43:00 +02003812 if (!bind_conf->mux_proto)
3813 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003814
3815 /* it is possible that an incorrect mux was referenced
3816 * due to the proxy's mode not being taken into account
3817 * on first pass. Let's adjust it now.
3818 */
3819 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3820
3821 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003822 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
Christopher Fauleta717b992018-04-10 14:43:00 +02003823 proxy_type_str(curproxy), curproxy->id,
3824 (int)bind_conf->mux_proto->token.len,
3825 bind_conf->mux_proto->token.ptr,
3826 bind_conf->arg, bind_conf->file, bind_conf->line);
3827 cfgerr++;
Willy Tarreaucac619b2022-05-20 17:53:32 +02003828 } else {
3829 if ((mux_ent->mux->flags & MX_FL_FRAMED) && !(bind_conf->options & BC_O_USE_SOCK_DGRAM)) {
3830 ha_alert("%s '%s' : frame-based MUX protocol '%.*s' is incompatible with stream transport of 'bind %s' at [%s:%d].\n",
3831 proxy_type_str(curproxy), curproxy->id,
3832 (int)bind_conf->mux_proto->token.len,
3833 bind_conf->mux_proto->token.ptr,
3834 bind_conf->arg, bind_conf->file, bind_conf->line);
3835 cfgerr++;
3836 }
3837 else if (!(mux_ent->mux->flags & MX_FL_FRAMED) && !(bind_conf->options & BC_O_USE_SOCK_STREAM)) {
3838 ha_alert("%s '%s' : stream-based MUX protocol '%.*s' is incompatible with framed transport of 'bind %s' at [%s:%d].\n",
3839 proxy_type_str(curproxy), curproxy->id,
3840 (int)bind_conf->mux_proto->token.len,
3841 bind_conf->mux_proto->token.ptr,
3842 bind_conf->arg, bind_conf->file, bind_conf->line);
3843 cfgerr++;
3844 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003845 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003846
3847 /* update the mux */
3848 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003849 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003850 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3851 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003852 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003853
3854 if (!newsrv->mux_proto)
3855 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003856
3857 /* it is possible that an incorrect mux was referenced
3858 * due to the proxy's mode not being taken into account
3859 * on first pass. Let's adjust it now.
3860 */
3861 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3862
3863 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003864 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003865 proxy_type_str(curproxy), curproxy->id,
3866 (int)newsrv->mux_proto->token.len,
3867 newsrv->mux_proto->token.ptr,
3868 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3869 cfgerr++;
3870 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003871
3872 /* update the mux */
3873 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003874 }
Amaury Denoyellef2c27a52021-07-23 15:46:46 +02003875
3876 /* Allocate default tcp-check rules for proxies without
3877 * explicit rules.
3878 */
3879 if (curproxy->cap & PR_CAP_BE) {
3880 if (!(curproxy->options2 & PR_O2_CHK_ANY)) {
3881 struct tcpcheck_ruleset *rs = NULL;
3882 struct tcpcheck_rules *rules = &curproxy->tcpcheck_rules;
3883
3884 curproxy->options2 |= PR_O2_TCPCHK_CHK;
3885
3886 rs = find_tcpcheck_ruleset("*tcp-check");
3887 if (!rs) {
3888 rs = create_tcpcheck_ruleset("*tcp-check");
3889 if (rs == NULL) {
3890 ha_alert("config: %s '%s': out of memory.\n",
3891 proxy_type_str(curproxy), curproxy->id);
3892 cfgerr++;
3893 }
3894 }
3895
3896 free_tcpcheck_vars(&rules->preset_vars);
3897 rules->list = &rs->rules;
3898 rules->flags = 0;
3899 }
3900 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01003901 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003902
Emeric Brun3b68b602022-08-18 15:53:21 +02003903 /*
3904 * We have just initialized the main proxies list
3905 * we must also configure the log-forward proxies list
3906 */
3907 if (init_proxies_list == proxies_list) {
3908 init_proxies_list = cfg_log_forward;
Emeric Brun8032a272022-08-22 10:25:11 +02003909 /* check if list is not null to avoid infinite loop */
3910 if (init_proxies_list)
3911 goto init_proxies_list_stage1;
Emeric Brun3b68b602022-08-18 15:53:21 +02003912 }
3913
Willy Tarreau4cdac162021-03-05 10:48:42 +01003914 /***********************************************************/
3915 /* At this point, target names have already been resolved. */
3916 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01003917
Willy Tarreau4cdac162021-03-05 10:48:42 +01003918 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01003919
Willy Tarreau4cdac162021-03-05 10:48:42 +01003920 list_for_each_entry(newsrv, &servers_list, global_list) {
3921 /* initialize idle conns lists */
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02003922 if (srv_init_per_thr(newsrv) == -1) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003923 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
3924 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01003925 cfgerr++;
3926 continue;
3927 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003928
Willy Tarreau4cdac162021-03-05 10:48:42 +01003929 if (newsrv->max_idle_conns != 0) {
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003930 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
3931 if (!newsrv->curr_idle_thr) {
3932 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3933 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3934 cfgerr++;
3935 continue;
3936 }
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003937
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003938 }
3939 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003940
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003941 idle_conn_task = task_new_anywhere();
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003942 if (!idle_conn_task) {
3943 ha_alert("parsing : failed to allocate global idle connection task.\n");
3944 cfgerr++;
3945 }
3946 else {
3947 idle_conn_task->process = srv_cleanup_idle_conns;
3948 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003949
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003950 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003951 idle_conns[i].cleanup_task = task_new_on(i);
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003952 if (!idle_conns[i].cleanup_task) {
3953 ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i);
3954 cfgerr++;
3955 break;
Willy Tarreau4cdac162021-03-05 10:48:42 +01003956 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003957
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003958 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
3959 idle_conns[i].cleanup_task->context = NULL;
3960 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
3961 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Willy Tarreau835daa12019-02-07 14:46:29 +01003962 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003963 }
3964
Willy Tarreau419ead82014-09-16 13:41:21 +02003965 /* perform the final checks before creating tasks */
3966
Emeric Brun3b68b602022-08-18 15:53:21 +02003967 /* starting to initialize the main proxies list */
3968 init_proxies_list = proxies_list;
3969
3970init_proxies_list_stage2:
3971 for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003972 struct listener *listener;
3973 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003974
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003975 /* Configure SSL for each bind line.
3976 * Note: if configuration fails at some point, the ->ctx member
3977 * remains NULL so that listeners can later detach.
3978 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003979 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003980 if (bind_conf->xprt->prepare_bind_conf &&
3981 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003982 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003983 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003984
Willy Tarreaue6b98942007-10-29 01:09:36 +01003985 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003986 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003987 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003988 if (!listener->luid) {
3989 /* listener ID not set, use automatic numbering with first
3990 * spare entry starting with next_luid.
3991 */
3992 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3993 listener->conf.id.key = listener->luid = next_id;
3994 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003995 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003996 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003997
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003998 /* enable separate counters */
3999 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01004000 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004001 if (!listener->name)
4002 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004003 }
Willy Tarreau81796be2012-09-22 19:11:47 +02004004
Willy Tarreaue6b98942007-10-29 01:09:36 +01004005 if (curproxy->options & PR_O_TCP_NOLING)
4006 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01004007 if (!listener->maxaccept)
Willy Tarreau66161322021-02-19 15:50:27 +01004008 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau16a21472012-11-19 12:39:59 +01004009
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01004010 /* listener accept callback */
4011 listener->accept = session_accept_fd;
4012#ifdef USE_QUIC
4013 /* override the accept callback for QUIC listeners. */
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01004014 if (listener->flags & LI_F_QUIC_LISTENER) {
Frédéric Lécaille372508c2022-05-06 08:53:16 +02004015 if (!global.cluster_secret)
4016 diag_no_cluster_secret = 1;
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01004017 listener->accept = quic_session_accept;
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01004018 li_init_per_thr(listener);
4019 }
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01004020#endif
Amaury Denoyelle57af0692022-01-18 15:39:02 +01004021
Willy Tarreauc1a21672009-08-16 22:37:44 +02004022 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01004023 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01004024
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02004025 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02004026 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02004027
Willy Tarreau620408f2016-10-21 16:37:51 +02004028 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
4029 listener->options |= LI_O_TCP_L5_RULES;
4030
Willy Tarreau9ea05a72009-06-14 12:07:01 +02004031 /* smart accept mode is automatic in HTTP mode */
4032 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau11ba4042022-05-20 15:56:32 +02004033 ((curproxy->mode == PR_MODE_HTTP || (listener->bind_conf->options & BC_O_USE_SSL)) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02004034 !(curproxy->no_options2 & PR_O2_SMARTACC)))
4035 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01004036 }
4037
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004038 /* Release unused SSL configs */
4039 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau11ba4042022-05-20 15:56:32 +02004040 if (!(bind_conf->options & BC_O_USE_SSL) && bind_conf->xprt->destroy_bind_conf)
Willy Tarreau795cdab2016-12-22 17:30:54 +01004041 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004042 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004043
Willy Tarreau918ff602011-07-25 16:33:49 +02004044 /* create the task associated with the proxy */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004045 curproxy->task = task_new_anywhere();
Willy Tarreau918ff602011-07-25 16:33:49 +02004046 if (curproxy->task) {
4047 curproxy->task->context = curproxy;
4048 curproxy->task->process = manage_proxy;
Christopher Faulet56717802021-10-13 10:10:09 +02004049 curproxy->flags |= PR_FL_READY;
Willy Tarreau918ff602011-07-25 16:33:49 +02004050 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004051 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
4052 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02004053 cfgerr++;
4054 }
Willy Tarreaub369a042014-09-16 13:21:03 +02004055 }
4056
Emeric Brun3b68b602022-08-18 15:53:21 +02004057 /*
4058 * We have just initialized the main proxies list
4059 * we must also configure the log-forward proxies list
4060 */
4061 if (init_proxies_list == proxies_list) {
4062 init_proxies_list = cfg_log_forward;
Emeric Brun8032a272022-08-22 10:25:11 +02004063 /* check if list is not null to avoid infinite loop */
4064 if (init_proxies_list)
4065 goto init_proxies_list_stage2;
Emeric Brun3b68b602022-08-18 15:53:21 +02004066 }
4067
Frédéric Lécaille372508c2022-05-06 08:53:16 +02004068 if (diag_no_cluster_secret)
Frédéric Lécaillead20a562022-05-16 16:51:41 +02004069 ha_diag_warning("No cluster secret was set. The stateless reset and Retry"
4070 " features are disabled for all QUIC bindings.\n");
Frédéric Lécaille372508c2022-05-06 08:53:16 +02004071
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004072 /*
4073 * Recount currently required checks.
4074 */
4075
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004076 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004077 int optnum;
4078
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004079 for (optnum = 0; cfg_opts[optnum].name; optnum++)
4080 if (curproxy->options & cfg_opts[optnum].val)
4081 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004082
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004083 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
4084 if (curproxy->options2 & cfg_opts2[optnum].val)
4085 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004086 }
4087
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004088 if (cfg_peers) {
4089 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02004090 struct peer *p, *pb;
4091
Willy Tarreau1e273012015-05-01 19:15:17 +02004092 /* Remove all peers sections which don't have a valid listener,
4093 * which are not used by any table, or which are bound to more
4094 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02004095 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004096 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02004097 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004098 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02004099 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004100
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02004101 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004102 /* the "disabled" keyword was present */
4103 if (curpeers->peers_fe)
4104 stop_proxy(curpeers->peers_fe);
4105 curpeers->peers_fe = NULL;
4106 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02004107 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004108 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
4109 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004110 if (curpeers->peers_fe)
4111 stop_proxy(curpeers->peers_fe);
4112 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004113 }
4114 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004115 /* Initializes the transport layer of the server part of all the peers belonging to
4116 * <curpeers> section if required.
4117 * Note that ->srv is used by the local peer of a new process to connect to the local peer
4118 * of an old process.
4119 */
Christopher Faulet56717802021-10-13 10:10:09 +02004120 curpeers->peers_fe->flags |= PR_FL_READY;
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004121 p = curpeers->remote;
4122 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004123 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004124 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 +01004125 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
4126 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004127 p = p->next;
4128 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004129 /* Configure the SSL bindings of the local peer if required. */
4130 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
4131 struct list *l;
4132 struct bind_conf *bind_conf;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004133 struct listener *li;
4134 unsigned long mask;
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004135
4136 l = &curpeers->peers_fe->conf.bind;
4137 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
Willy Tarreaud2494e02022-07-05 16:00:56 +02004138
Christopher Faulet1b6fa7f2022-07-26 19:03:51 +02004139 if (curpeers->local->srv) {
4140 if (curpeers->local->srv->use_ssl == 1 && !(bind_conf->options & BC_O_USE_SSL)) {
4141 ha_warning("Peers section '%s': local peer have a non-SSL listener and a SSL server configured at line %s:%d.\n",
4142 curpeers->peers_fe->id, curpeers->local->conf.file, curpeers->local->conf.line);
4143 }
4144 else if (curpeers->local->srv->use_ssl != 1 && (bind_conf->options & BC_O_USE_SSL)) {
4145 ha_warning("Peers section '%s': local peer have a SSL listener and a non-SSL server configured at line %s:%d.\n",
4146 curpeers->peers_fe->id, curpeers->local->conf.file, curpeers->local->conf.line);
4147 }
4148 }
4149
Willy Tarreaud2494e02022-07-05 16:00:56 +02004150 err = NULL;
4151 if (thread_resolve_group_mask(bind_conf->bind_tgroup, bind_conf->bind_thread,
4152 &bind_conf->bind_tgroup, &bind_conf->bind_thread, &err) < 0) {
4153 ha_alert("Peers section '%s': %s in 'bind %s' at [%s:%d].\n",
4154 curpeers->peers_fe->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
4155 free(err);
4156 cfgerr++;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004157 } else if (!((mask = bind_conf->bind_thread) & ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled)) {
Willy Tarreaud2494e02022-07-05 16:00:56 +02004158 unsigned long new_mask = 0;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004159 ulong thr_mask = ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004160
4161 while (mask) {
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004162 new_mask |= mask & thr_mask;
4163 mask >>= ha_tgroup_info[bind_conf->bind_tgroup-1].count;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004164 }
4165
4166 bind_conf->bind_thread = new_mask;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004167 ha_warning("Peers section '%s': the thread range specified on the 'thread' directive of 'bind %s' at [%s:%d] only refers to thread numbers out of the range supported by thread group %d (%d). The thread numbers were remapped to existing threads instead (mask 0x%lx).\n",
4168 curpeers->peers_fe->id, bind_conf->arg, bind_conf->file, bind_conf->line,
4169 bind_conf->bind_tgroup, ha_tgroup_info[bind_conf->bind_tgroup-1].count, new_mask);
Willy Tarreaud2494e02022-07-05 16:00:56 +02004170 }
4171
4172 /* apply thread masks and groups to all receivers */
4173 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
4174 li->rx.bind_thread = bind_conf->bind_thread;
4175 li->rx.bind_tgroup = bind_conf->bind_tgroup;
4176 }
4177
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004178 if (bind_conf->xprt->prepare_bind_conf &&
4179 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4180 cfgerr++;
4181 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004182 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004183 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4184 curpeers->id);
4185 cfgerr++;
4186 break;
4187 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004188 last = &curpeers->next;
4189 continue;
4190 }
4191
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004192 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004193 p = curpeers->remote;
4194 while (p) {
4195 pb = p->next;
4196 free(p->id);
4197 free(p);
4198 p = pb;
4199 }
4200
4201 /* Destroy and unlink this curpeers section.
4202 * Note: curpeers is backed up into *last.
4203 */
4204 free(curpeers->id);
4205 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004206 /* Reset any refereance to this peers section in the list of stick-tables */
4207 for (t = stktables_list; t; t = t->next) {
4208 if (t->peers.p && t->peers.p == *last)
4209 t->peers.p = NULL;
4210 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004211 free(*last);
4212 *last = curpeers;
4213 }
4214 }
4215
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004216 for (t = stktables_list; t; t = t->next) {
4217 if (t->proxy)
4218 continue;
4219 if (!stktable_init(t)) {
4220 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4221 cfgerr++;
4222 }
4223 }
4224
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004225 /* initialize stick-tables on backend capable proxies. This must not
4226 * be done earlier because the data size may be discovered while parsing
4227 * other proxies.
4228 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004229 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004230 if ((curproxy->flags & PR_FL_DISABLED) || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004231 continue;
4232
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004233 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004234 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004235 cfgerr++;
4236 }
4237 }
4238
Simon Horman0d16a402015-01-30 11:22:58 +09004239 if (mailers) {
4240 struct mailers *curmailers = mailers, **last;
4241 struct mailer *m, *mb;
4242
4243 /* Remove all mailers sections which don't have a valid listener.
4244 * This can happen when a mailers section is never referenced.
4245 */
4246 last = &mailers;
4247 while (*last) {
4248 curmailers = *last;
4249 if (curmailers->users) {
4250 last = &curmailers->next;
4251 continue;
4252 }
4253
Christopher Faulet767a84b2017-11-24 16:50:31 +01004254 ha_warning("Removing incomplete section 'mailers %s'.\n",
4255 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004256
4257 m = curmailers->mailer_list;
4258 while (m) {
4259 mb = m->next;
4260 free(m->id);
4261 free(m);
4262 m = mb;
4263 }
4264
4265 /* Destroy and unlink this curmailers section.
4266 * Note: curmailers is backed up into *last.
4267 */
4268 free(curmailers->id);
4269 curmailers = curmailers->next;
4270 free(*last);
4271 *last = curmailers;
4272 }
4273 }
4274
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004275 /* Update server_state_file_name to backend name if backend is supposed to use
4276 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004277 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004278 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4279 curproxy->server_state_file_name == NULL)
4280 curproxy->server_state_file_name = strdup(curproxy->id);
4281 }
4282
Emeric Brun750fe792020-12-23 16:51:12 +01004283 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06004284 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004285 ha_warning("resolvers '%s' [%s:%d] has no nameservers configured!\n",
Ben Draut054fbee2018-04-13 15:43:04 -06004286 curr_resolvers->id, curr_resolvers->conf.file,
4287 curr_resolvers->conf.line);
4288 err_code |= ERR_WARN;
4289 }
4290 }
4291
William Lallemand48b4bb42017-10-23 14:36:34 +02004292 list_for_each_entry(postparser, &postparsers, list) {
4293 if (postparser->func)
4294 cfgerr += postparser->func();
4295 }
4296
Willy Tarreaubb925012009-07-23 13:36:36 +02004297 if (cfgerr > 0)
4298 err_code |= ERR_ALERT | ERR_FATAL;
4299 out:
4300 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004301}
4302
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004303/*
4304 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4305 * parsing sessions.
4306 */
4307void cfg_register_keywords(struct cfg_kw_list *kwl)
4308{
Willy Tarreau2b718102021-04-21 07:32:39 +02004309 LIST_APPEND(&cfg_keywords.list, &kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004310}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004311
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004312/*
4313 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4314 */
4315void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4316{
Willy Tarreau2b718102021-04-21 07:32:39 +02004317 LIST_DELETE(&kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004318 LIST_INIT(&kwl->list);
4319}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004320
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004321/* this function register new section in the haproxy configuration file.
4322 * <section_name> is the name of this new section and <section_parser>
4323 * is the called parser. If two section declaration have the same name,
4324 * only the first declared is used.
4325 */
4326int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004327 int (*section_parser)(const char *, int, char **, int),
4328 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004329{
4330 struct cfg_section *cs;
4331
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004332 list_for_each_entry(cs, &sections, list) {
4333 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004334 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004335 return 0;
4336 }
4337 }
4338
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004339 cs = calloc(1, sizeof(*cs));
4340 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004341 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004342 return 0;
4343 }
4344
4345 cs->section_name = section_name;
4346 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004347 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004348
Willy Tarreau2b718102021-04-21 07:32:39 +02004349 LIST_APPEND(&sections, &cs->list);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004350
4351 return 1;
4352}
4353
William Lallemand48b4bb42017-10-23 14:36:34 +02004354/* this function register a new function which will be called once the haproxy
4355 * configuration file has been parsed. It's useful to check dependencies
4356 * between sections or to resolve items once everything is parsed.
4357 */
4358int cfg_register_postparser(char *name, int (*func)())
4359{
4360 struct cfg_postparser *cp;
4361
4362 cp = calloc(1, sizeof(*cp));
4363 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004364 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004365 return 0;
4366 }
4367 cp->name = name;
4368 cp->func = func;
4369
Willy Tarreau2b718102021-04-21 07:32:39 +02004370 LIST_APPEND(&postparsers, &cp->list);
William Lallemand48b4bb42017-10-23 14:36:34 +02004371
4372 return 1;
4373}
4374
Willy Tarreaubaaee002006-06-26 02:48:02 +02004375/*
David Carlier845efb52015-09-25 11:49:18 +01004376 * free all config section entries
4377 */
4378void cfg_unregister_sections(void)
4379{
4380 struct cfg_section *cs, *ics;
4381
4382 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004383 LIST_DELETE(&cs->list);
David Carlier845efb52015-09-25 11:49:18 +01004384 free(cs);
4385 }
4386}
4387
Christopher Faulet7110b402016-10-26 11:09:44 +02004388void cfg_backup_sections(struct list *backup_sections)
4389{
4390 struct cfg_section *cs, *ics;
4391
4392 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004393 LIST_DELETE(&cs->list);
4394 LIST_APPEND(backup_sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004395 }
4396}
4397
4398void cfg_restore_sections(struct list *backup_sections)
4399{
4400 struct cfg_section *cs, *ics;
4401
4402 list_for_each_entry_safe(cs, ics, backup_sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004403 LIST_DELETE(&cs->list);
4404 LIST_APPEND(&sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004405 }
4406}
4407
Willy Tarreauca1acd62022-03-29 15:02:44 +02004408/* dumps all registered keywords by section on stdout */
4409void cfg_dump_registered_keywords()
4410{
4411 const char* sect_names[] = { "", "global", "listen", "userlist", "peers", 0 };
4412 int section;
4413 int index;
4414
4415 for (section = 1; sect_names[section]; section++) {
4416 struct cfg_kw_list *kwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004417 const struct cfg_keyword *kwp, *kwn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004418
4419 printf("%s\n", sect_names[section]);
Willy Tarreaud9058262022-03-30 11:21:32 +02004420
4421 for (kwn = kwp = NULL;; kwp = kwn) {
4422 list_for_each_entry(kwl, &cfg_keywords.list, list) {
4423 for (index = 0; kwl->kw[index].kw != NULL; index++)
4424 if (kwl->kw[index].section == section &&
4425 strordered(kwp ? kwp->kw : NULL, kwl->kw[index].kw, kwn != kwp ? kwn->kw : NULL))
4426 kwn = &kwl->kw[index];
4427 }
4428 if (kwn == kwp)
4429 break;
4430 printf("\t%s\n", kwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004431 }
4432
4433 if (section == CFG_LISTEN) {
4434 /* there are plenty of other keywords there */
4435 extern struct list tcp_req_conn_keywords, tcp_req_sess_keywords,
4436 tcp_req_cont_keywords, tcp_res_cont_keywords;
4437 extern struct bind_kw_list bind_keywords;
4438 extern struct ssl_bind_kw ssl_bind_kws[] __maybe_unused;
4439 extern struct srv_kw_list srv_keywords;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004440 struct bind_kw_list *bkwl;
4441 struct srv_kw_list *skwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004442 const struct bind_kw *bkwp, *bkwn;
4443 const struct srv_kw *skwp, *skwn;
4444 const struct ssl_bind_kw *sbkwp __maybe_unused, *sbkwn __maybe_unused;
4445 const struct cfg_opt *coptp, *coptn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004446
Willy Tarreaud9058262022-03-30 11:21:32 +02004447 for (bkwn = bkwp = NULL;; bkwp = bkwn) {
4448 list_for_each_entry(bkwl, &bind_keywords.list, list) {
4449 for (index = 0; bkwl->kw[index].kw != NULL; index++)
4450 if (strordered(bkwp ? bkwp->kw : NULL,
4451 bkwl->kw[index].kw,
4452 bkwn != bkwp ? bkwn->kw : NULL))
4453 bkwn = &bkwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004454 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004455 if (bkwn == bkwp)
4456 break;
4457
4458 if (!bkwn->skip)
4459 printf("\tbind <addr> %s\n", bkwn->kw);
4460 else
4461 printf("\tbind <addr> %s +%d\n", bkwn->kw, bkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004462 }
4463
4464#if defined(USE_OPENSSL)
Willy Tarreaud9058262022-03-30 11:21:32 +02004465 for (sbkwn = sbkwp = NULL;; sbkwp = sbkwn) {
4466 for (index = 0; ssl_bind_kws[index].kw != NULL; index++) {
4467 if (strordered(sbkwp ? sbkwp->kw : NULL,
4468 ssl_bind_kws[index].kw,
4469 sbkwn != sbkwp ? sbkwn->kw : NULL))
4470 sbkwn = &ssl_bind_kws[index];
4471 }
4472 if (sbkwn == sbkwp)
4473 break;
4474 if (!sbkwn->skip)
4475 printf("\tbind <addr> ssl %s\n", sbkwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004476 else
Willy Tarreaud9058262022-03-30 11:21:32 +02004477 printf("\tbind <addr> ssl %s +%d\n", sbkwn->kw, sbkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004478 }
4479#endif
4480
Willy Tarreaud9058262022-03-30 11:21:32 +02004481 for (skwn = skwp = NULL;; skwp = skwn) {
4482 list_for_each_entry(skwl, &srv_keywords.list, list) {
4483 for (index = 0; skwl->kw[index].kw != NULL; index++)
4484 if (strordered(skwp ? skwp->kw : NULL,
4485 skwl->kw[index].kw,
4486 skwn != skwp ? skwn->kw : NULL))
4487 skwn = &skwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004488 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004489 if (skwn == skwp)
4490 break;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004491
Willy Tarreaud9058262022-03-30 11:21:32 +02004492 if (!skwn->skip)
4493 printf("\tserver <name> <addr> %s\n", skwn->kw);
4494 else
4495 printf("\tserver <name> <addr> %s +%d\n", skwn->kw, skwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004496 }
4497
Willy Tarreaud9058262022-03-30 11:21:32 +02004498 for (coptn = coptp = NULL;; coptp = coptn) {
4499 for (index = 0; cfg_opts[index].name; index++)
4500 if (strordered(coptp ? coptp->name : NULL,
4501 cfg_opts[index].name,
4502 coptn != coptp ? coptn->name : NULL))
4503 coptn = &cfg_opts[index];
4504
4505 for (index = 0; cfg_opts2[index].name; index++)
4506 if (strordered(coptp ? coptp->name : NULL,
4507 cfg_opts2[index].name,
4508 coptn != coptp ? coptn->name : NULL))
4509 coptn = &cfg_opts2[index];
4510 if (coptn == coptp)
4511 break;
4512
4513 printf("\toption %s [ ", coptn->name);
4514 if (coptn->cap & PR_CAP_FE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004515 printf("FE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004516 if (coptn->cap & PR_CAP_BE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004517 printf("BE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004518 if (coptn->mode == PR_MODE_HTTP)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004519 printf("HTTP ");
4520 printf("]\n");
4521 }
4522
Willy Tarreaud9058262022-03-30 11:21:32 +02004523 dump_act_rules(&tcp_req_conn_keywords, "\ttcp-request connection ");
4524 dump_act_rules(&tcp_req_sess_keywords, "\ttcp-request session ");
4525 dump_act_rules(&tcp_req_cont_keywords, "\ttcp-request content ");
4526 dump_act_rules(&tcp_res_cont_keywords, "\ttcp-response content ");
4527 dump_act_rules(&http_req_keywords.list, "\thttp-request ");
4528 dump_act_rules(&http_res_keywords.list, "\thttp-response ");
4529 dump_act_rules(&http_after_res_keywords.list, "\thttp-after-response ");
Willy Tarreauca1acd62022-03-29 15:02:44 +02004530 }
4531 }
4532}
4533
Willy Tarreaue6552512018-11-26 11:33:13 +01004534/* these are the config sections handled by default */
4535REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4536REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4537REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4538REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4539REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4540REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4541REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4542REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4543REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004544
Willy Tarreau8a022d52021-04-27 20:29:11 +02004545static struct cfg_kw_list cfg_kws = {{ },{
4546 { CFG_GLOBAL, "default-path", cfg_parse_global_def_path },
4547 { /* END */ }
4548}};
4549
4550INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4551
David Carlier845efb52015-09-25 11:49:18 +01004552/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004553 * Local variables:
4554 * c-indent-level: 8
4555 * c-basic-offset: 8
4556 * End:
4557 */