blob: 9b2c432fab7c924a9832394b0405272581b3e8b8 [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 Tarreaue36b38e2022-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 Tarreaue36b38e2022-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 Tarreaue36b38e2022-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>
37#include <fcntl.h>
38#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020039
Willy Tarreaudcc048a2020-06-04 19:11:43 +020040#include <haproxy/acl.h>
Christopher Faulet42c6cf92021-03-25 17:19:04 +010041#include <haproxy/action.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020042#include <haproxy/api.h>
Willy Tarreau732525f2021-05-06 15:49:04 +020043#include <haproxy/arg.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020044#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020045#include <haproxy/backend.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020046#include <haproxy/capture.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>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020051#ifdef USE_CPU_AFFINITY
Amaury Denoyellec90932b2021-04-14 16:16:03 +020052#include <haproxy/cpuset.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020053#endif
Willy Tarreau7ea393d2020-06-04 18:02:10 +020054#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020055#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020056#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020057#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020058#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020059#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020060#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020061#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020062#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020063#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020064#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020065#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020066#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020067#include <haproxy/log.h>
Emeric Brunfd667082022-09-13 16:16:30 +020068#include <haproxy/sink.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>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020071#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020072#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020073#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020074#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020075#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020076#include <haproxy/proxy.h>
Emeric Brunc9437992021-02-12 19:42:55 +010077#include <haproxy/resolvers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020078#include <haproxy/sample.h>
79#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020080#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020081#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020082#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020083#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020084#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020085#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020086#include <haproxy/thread.h>
87#include <haproxy/time.h>
88#include <haproxy/tools.h>
89#include <haproxy/uri_auth-t.h>
Frédéric Lécaille884f2e92020-11-23 14:23:21 +010090#include <haproxy/xprt_quic.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020091
92
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010093/* Used to chain configuration sections definitions. This list
94 * stores struct cfg_section
95 */
96struct list sections = LIST_HEAD_INIT(sections);
97
William Lallemand48b4bb42017-10-23 14:36:34 +020098struct list postparsers = LIST_HEAD_INIT(postparsers);
99
Eric Salama1b8dacc2021-03-16 15:12:17 +0100100extern struct proxy *mworker_proxy;
101
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100102char *cursection = NULL;
Willy Tarreauc8d5b952019-02-27 17:25:52 +0100103int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +0100104int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +0100105char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200106
Willy Tarreau8a022d52021-04-27 20:29:11 +0200107/* how to handle default paths */
108static enum default_path_mode {
109 DEFAULT_PATH_CURRENT = 0, /* "current": paths are relative to CWD (this is the default) */
110 DEFAULT_PATH_CONFIG, /* "config": paths are relative to config file */
111 DEFAULT_PATH_PARENT, /* "parent": paths are relative to config file's ".." */
112 DEFAULT_PATH_ORIGIN, /* "origin": paths are relative to default_path_origin */
113} default_path_mode;
114
115static char initial_cwd[PATH_MAX];
116static char current_cwd[PATH_MAX];
117
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200118/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100119struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200120 .list = LIST_HEAD_INIT(cfg_keywords.list)
121};
122
Willy Tarreau4b103022021-02-12 17:59:10 +0100123/* nested if/elif/else/endif block states */
124enum nested_cond_state {
125 NESTED_COND_IF_TAKE, // "if" with a true condition
126 NESTED_COND_IF_DROP, // "if" with a false condition
127 NESTED_COND_IF_SKIP, // "if" masked by an outer false condition
128
129 NESTED_COND_ELIF_TAKE, // "elif" with a true condition from a false one
130 NESTED_COND_ELIF_DROP, // "elif" with a false condition from a false one
131 NESTED_COND_ELIF_SKIP, // "elif" masked by an outer false condition or a previously taken if
132
133 NESTED_COND_ELSE_TAKE, // taken "else" after an if false condition
134 NESTED_COND_ELSE_DROP, // "else" masked by outer false condition or an if true condition
135};
136
137/* 100 levels of nested conditions should already be sufficient */
138#define MAXNESTEDCONDS 100
139
Willy Tarreau732525f2021-05-06 15:49:04 +0200140/* supported conditional predicates for .if/.elif */
141enum cond_predicate {
142 CFG_PRED_NONE, // none
Willy Tarreau42ed14b2021-05-06 15:55:14 +0200143 CFG_PRED_DEFINED, // "defined"
Willy Tarreau58ca7062021-05-06 16:34:23 +0200144 CFG_PRED_FEATURE, // "feature"
Willy Tarreau6492e872021-05-06 16:10:09 +0200145 CFG_PRED_STREQ, // "streq"
146 CFG_PRED_STRNEQ, // "strneq"
Willy Tarreau0b7c78a2021-05-06 16:53:26 +0200147 CFG_PRED_VERSION_ATLEAST, // "version_atleast"
148 CFG_PRED_VERSION_BEFORE, // "version_before"
Willy Tarreau732525f2021-05-06 15:49:04 +0200149};
150
151struct cond_pred_kw {
152 const char *word; // NULL marks the end of the list
153 enum cond_predicate prd; // one of the CFG_PRED_* above
154 uint64_t arg_mask; // mask of supported arguments (strings only)
155};
156
157/* supported condition predicates */
158const struct cond_pred_kw cond_predicates[] = {
Willy Tarreau42ed14b2021-05-06 15:55:14 +0200159 { "defined", CFG_PRED_DEFINED, ARG1(1, STR) },
Willy Tarreau58ca7062021-05-06 16:34:23 +0200160 { "feature", CFG_PRED_FEATURE, ARG1(1, STR) },
Willy Tarreau6492e872021-05-06 16:10:09 +0200161 { "streq", CFG_PRED_STREQ, ARG2(2, STR, STR) },
162 { "strneq", CFG_PRED_STRNEQ, ARG2(2, STR, STR) },
Willy Tarreau0b7c78a2021-05-06 16:53:26 +0200163 { "version_atleast", CFG_PRED_VERSION_ATLEAST, ARG1(1, STR) },
164 { "version_before", CFG_PRED_VERSION_BEFORE, ARG1(1, STR) },
Willy Tarreau732525f2021-05-06 15:49:04 +0200165 { NULL, CFG_PRED_NONE, 0 }
166};
167
Willy Tarreaubaaee002006-06-26 02:48:02 +0200168/*
169 * converts <str> to a list of listeners which are dynamically allocated.
170 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
171 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
172 * - <port> is a numerical port from 1 to 65535 ;
173 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
174 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200175 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
176 * not NULL, it must be a valid pointer to either NULL or a freeable area that
177 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200178 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200179int 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 +0200180{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200181 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100182 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200183 int port, end;
184
185 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200186
Willy Tarreaubaaee002006-06-26 02:48:02 +0200187 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200188 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100189 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200190
191 str = next;
192 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100193 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200194 *next++ = 0;
195 }
196
Willy Tarreau5fc93282020-09-16 18:25:03 +0200197 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Eric Salama1b8dacc2021-03-16 15:12:17 +0100198 (curproxy == global.cli_fe || curproxy == mworker_proxy) ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200199 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200200 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100201 if (!ss2)
202 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200203
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100204 /* OK the address looks correct */
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100205
206#ifdef USE_QUIC
207 /* The transport layer automatically switches to QUIC when QUIC
208 * is selected, regardless of bind_conf settings. We then need
209 * to initialize QUIC params.
210 */
211 if (proto->sock_type == SOCK_DGRAM && proto->ctrl_type == SOCK_STREAM) {
212 bind_conf->xprt = xprt_get(XPRT_QUIC);
213 quic_transport_params_init(&bind_conf->quic_params, 1);
214 }
215#endif
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200216 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200217 memprintf(err, "%s for address '%s'.\n", *err, str);
218 goto fail;
219 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200220 } /* end while(next) */
221 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200222 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200223 fail:
224 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200225 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200226}
227
William Lallemand6e62fb62015-04-28 16:55:23 +0200228/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200229 * converts <str> to a list of datagram-oriented listeners which are dynamically
230 * allocated.
231 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
232 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
233 * - <port> is a numerical port from 1 to 65535 ;
234 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
235 * This can be repeated as many times as necessary, separated by a coma.
236 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
237 * not NULL, it must be a valid pointer to either NULL or a freeable area that
238 * will be replaced with an error message.
239 */
240int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
241{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200242 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200243 char *next, *dupstr;
244 int port, end;
245
246 next = dupstr = strdup(str);
247
248 while (next && *next) {
249 struct sockaddr_storage *ss2;
250 int fd = -1;
251
252 str = next;
253 /* 1) look for the end of the first address */
254 if ((next = strchr(str, ',')) != NULL) {
255 *next++ = 0;
256 }
257
Willy Tarreau5fc93282020-09-16 18:25:03 +0200258 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreau4975d142021-03-13 11:00:33 +0100259 curproxy == global.cli_fe ? NULL : global.unix_bind.prefix,
Willy Tarreauaa333122020-09-16 15:13:04 +0200260 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
261 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
262 if (!ss2)
263 goto fail;
264
265 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200266 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200267 memprintf(err, "%s for address '%s'.\n", *err, str);
268 goto fail;
269 }
270 } /* end while(next) */
271 free(dupstr);
272 return 1;
273 fail:
274 free(dupstr);
275 return 0;
276}
277
278/*
Willy Tarreau08138612021-05-08 19:58:37 +0200279 * Sends a warning if proxy <proxy> does not have at least one of the
280 * capabilities in <cap>. An optional <hint> may be added at the end
281 * of the warning to help the user. Returns 1 if a warning was emitted
282 * or 0 if the condition is valid.
283 */
284int warnifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint)
285{
286 char *msg;
287
288 switch (cap) {
289 case PR_CAP_BE: msg = "no backend"; break;
290 case PR_CAP_FE: msg = "no frontend"; break;
291 case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break;
292 default: msg = "not enough"; break;
293 }
294
295 if (!(proxy->cap & cap)) {
296 ha_warning("parsing [%s:%d] : '%s' ignored because %s '%s' has %s capability.%s\n",
297 file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : "");
298 return 1;
299 }
300 return 0;
301}
302
303/*
304 * Sends an alert if proxy <proxy> does not have at least one of the
305 * capabilities in <cap>. An optional <hint> may be added at the end
306 * of the alert to help the user. Returns 1 if an alert was emitted
307 * or 0 if the condition is valid.
308 */
309int failifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint)
310{
311 char *msg;
312
313 switch (cap) {
314 case PR_CAP_BE: msg = "no backend"; break;
315 case PR_CAP_FE: msg = "no frontend"; break;
316 case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break;
317 default: msg = "not enough"; break;
318 }
319
320 if (!(proxy->cap & cap)) {
321 ha_alert("parsing [%s:%d] : '%s' not allowed because %s '%s' has %s capability.%s\n",
322 file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : "");
323 return 1;
324 }
325 return 0;
326}
327
328/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100329 * Report an error in <msg> when there are too many arguments. This version is
330 * intended to be used by keyword parsers so that the message will be included
331 * into the general error message. The index is the current keyword in args.
332 * Return 0 if the number of argument is correct, otherwise build a message and
333 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
334 * message may also be null, it will simply not be produced (useful to check only).
335 * <msg> and <err_code> are only affected on error.
336 */
337int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
338{
339 int i;
340
341 if (!*args[index + maxarg + 1])
342 return 0;
343
344 if (msg) {
345 *msg = NULL;
346 memprintf(msg, "%s", args[0]);
347 for (i = 1; i <= index; i++)
348 memprintf(msg, "%s %s", *msg, args[i]);
349
350 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
351 }
352 if (err_code)
353 *err_code |= ERR_ALERT | ERR_FATAL;
354
355 return 1;
356}
357
358/*
359 * same as too_many_args_idx with a 0 index
360 */
361int too_many_args(int maxarg, char **args, char **msg, int *err_code)
362{
363 return too_many_args_idx(maxarg, 0, args, msg, err_code);
364}
365
366/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200367 * Report a fatal Alert when there is too much arguments
368 * The index is the current keyword in args
369 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
370 * Fill err_code with an ERR_ALERT and an ERR_FATAL
371 */
372int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
373{
374 char *kw = NULL;
375 int i;
376
377 if (!*args[index + maxarg + 1])
378 return 0;
379
380 memprintf(&kw, "%s", args[0]);
381 for (i = 1; i <= index; i++) {
382 memprintf(&kw, "%s %s", kw, args[i]);
383 }
384
Christopher Faulet767a84b2017-11-24 16:50:31 +0100385 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 +0200386 free(kw);
387 *err_code |= ERR_ALERT | ERR_FATAL;
388 return 1;
389}
390
391/*
392 * same as alertif_too_many_args_idx with a 0 index
393 */
394int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
395{
396 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
397}
398
Willy Tarreau61d18892009-03-31 10:49:21 +0200399
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100400/* Report it if a request ACL condition uses some keywords that are incompatible
401 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
402 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
403 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100404 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100405int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100406{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100407 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200408 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100409
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100410 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100411 return 0;
412
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100413 acl = acl_cond_conflicts(cond, where);
414 if (acl) {
415 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100416 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
417 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100418 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100419 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
420 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100421 return ERR_WARN;
422 }
423 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100424 return 0;
425
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100426 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100427 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
428 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100429 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100430 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
431 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100432 return ERR_WARN;
433}
434
Christopher Faulet581db2b2021-03-26 10:02:46 +0100435/* Report it if an ACL uses a L6 sample fetch from an HTTP proxy. It returns
436 * either 0 or ERR_WARN so that its result can be or'ed with err_code. Note that
437 * <cond> may be NULL and then will be ignored.
438*/
439int warnif_tcp_http_cond(const struct proxy *px, const struct acl_cond *cond)
440{
441 if (!cond || px->mode != PR_MODE_HTTP)
442 return 0;
443
444 if (cond->use & (SMP_USE_L6REQ|SMP_USE_L6RES)) {
445 ha_warning("Proxy '%s': L6 sample fetches ignored on HTTP proxies (declared at %s:%d).\n",
446 px->id, cond->file, cond->line);
447 return ERR_WARN;
448 }
449 return 0;
450}
451
Willy Tarreaue2afcc42021-03-12 09:08:04 +0100452/* try to find in <list> the word that looks closest to <word> by counting
453 * transitions between letters, digits and other characters. Will return the
454 * best matching word if found, otherwise NULL. An optional array of extra
455 * words to compare may be passed in <extra>, but it must then be terminated
456 * by a NULL entry. If unused it may be NULL.
457 */
458const char *cfg_find_best_match(const char *word, const struct list *list, int section, const char **extra)
459{
460 uint8_t word_sig[1024]; // 0..25=letter, 26=digit, 27=other, 28=begin, 29=end
461 uint8_t list_sig[1024];
462 const struct cfg_kw_list *kwl;
463 int index;
464 const char *best_ptr = NULL;
465 int dist, best_dist = INT_MAX;
466
467 make_word_fingerprint(word_sig, word);
468 list_for_each_entry(kwl, list, list) {
469 for (index = 0; kwl->kw[index].kw != NULL; index++) {
470 if (kwl->kw[index].section != section)
471 continue;
472
473 make_word_fingerprint(list_sig, kwl->kw[index].kw);
474 dist = word_fingerprint_distance(word_sig, list_sig);
475 if (dist < best_dist) {
476 best_dist = dist;
477 best_ptr = kwl->kw[index].kw;
478 }
479 }
480 }
481
482 while (extra && *extra) {
483 make_word_fingerprint(list_sig, *extra);
484 dist = word_fingerprint_distance(word_sig, list_sig);
485 if (dist < best_dist) {
486 best_dist = dist;
487 best_ptr = *extra;
488 }
489 extra++;
490 }
491
492 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
493 best_ptr = NULL;
494 return best_ptr;
495}
496
Christopher Faulet62519022017-10-16 15:49:32 +0200497/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100498 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100499 * two such numbers delimited by a dash ('-'). On success, it returns
500 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200501 *
502 * Note: this function can also be used to parse a thread number or a set of
503 * threads.
504 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100505int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200506{
Christopher Faulet26028f62017-11-22 15:01:51 +0100507 if (autoinc) {
508 *autoinc = 0;
509 if (strncmp(arg, "auto:", 5) == 0) {
510 arg += 5;
511 *autoinc = 1;
512 }
513 }
514
Christopher Faulet62519022017-10-16 15:49:32 +0200515 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100516 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200517 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100518 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200519 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100520 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200521 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100522 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100523 unsigned int low, high;
524
Christopher Faulet18cca782019-02-07 16:29:41 +0100525 for (p = arg; *p; p++) {
526 if (*p == '-' && !dash)
527 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100528 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100529 memprintf(err, "'%s' is not a valid number/range.", arg);
530 return -1;
531 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100532 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100533
534 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100535 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100536 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100537
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100538 if (high < low) {
539 unsigned int swap = low;
540 low = high;
541 high = swap;
542 }
543
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100544 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100545 memprintf(err, "'%s' is not a valid number/range."
546 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100547 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100548 return 1;
549 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100550
551 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100552 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200553 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100554 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100555
Christopher Faulet5ab51772017-11-22 11:21:58 +0100556 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200557}
558
David Carlier7e351ee2017-12-01 09:14:02 +0000559#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200560/* Parse cpu sets. Each CPU set is either a unique number between 0 and
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200561 * ha_cpuset_size() - 1 or a range with two such numbers delimited by a dash
Amaury Denoyellea8082352021-04-06 16:46:15 +0200562 * ('-'). If <comma_allowed> is set, each CPU set can be a list of unique
563 * numbers or ranges separated by a comma. It is also possible to specify
564 * multiple cpu numbers or ranges in distinct argument in <args>. On success,
565 * it returns 0, otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200566 */
Amaury Denoyellea8082352021-04-06 16:46:15 +0200567unsigned long parse_cpu_set(const char **args, struct hap_cpuset *cpu_set,
568 int comma_allowed, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200569{
570 int cur_arg = 0;
Amaury Denoyellea8082352021-04-06 16:46:15 +0200571 const char *arg;
Christopher Faulet62519022017-10-16 15:49:32 +0200572
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200573 ha_cpuset_zero(cpu_set);
574
Amaury Denoyellea8082352021-04-06 16:46:15 +0200575 arg = args[cur_arg];
576 while (*arg) {
577 const char *dash, *comma;
Christopher Faulet62519022017-10-16 15:49:32 +0200578 unsigned int low, high;
579
Willy Tarreau90807112020-02-25 08:16:33 +0100580 if (!isdigit((unsigned char)*args[cur_arg])) {
Amaury Denoyellea8082352021-04-06 16:46:15 +0200581 memprintf(err, "'%s' is not a CPU range.", arg);
Christopher Faulet62519022017-10-16 15:49:32 +0200582 return -1;
583 }
584
Amaury Denoyellea8082352021-04-06 16:46:15 +0200585 low = high = str2uic(arg);
586
587 comma = comma_allowed ? strchr(arg, ',') : NULL;
588 dash = strchr(arg, '-');
589
590 if (dash && (!comma || dash < comma))
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200591 high = *(dash+1) ? str2uic(dash + 1) : ha_cpuset_size() - 1;
Christopher Faulet62519022017-10-16 15:49:32 +0200592
593 if (high < low) {
594 unsigned int swap = low;
595 low = high;
596 high = swap;
597 }
598
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200599 if (high >= ha_cpuset_size()) {
600 memprintf(err, "supports CPU numbers from 0 to %d.",
601 ha_cpuset_size() - 1);
Christopher Faulet62519022017-10-16 15:49:32 +0200602 return 1;
603 }
604
605 while (low <= high)
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200606 ha_cpuset_set(cpu_set, low++);
Christopher Faulet62519022017-10-16 15:49:32 +0200607
Amaury Denoyellea8082352021-04-06 16:46:15 +0200608 /* if a comma is present, parse the rest of the arg, else
609 * skip to the next arg */
610 arg = comma ? comma + 1 : args[++cur_arg];
Christopher Faulet62519022017-10-16 15:49:32 +0200611 }
612 return 0;
613}
David Carlier7e351ee2017-12-01 09:14:02 +0000614#endif
615
Frédéric Lécaille18251032019-01-11 11:07:15 +0100616/* Allocate and initialize the frontend of a "peers" section found in
617 * file <file> at line <linenum> with <id> as ID.
618 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200619 * Note that this function may be called from "default-server"
620 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100621 */
622static int init_peers_frontend(const char *file, int linenum,
623 const char *id, struct peers *peers)
624{
625 struct proxy *p;
626
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200627 if (peers->peers_fe) {
628 p = peers->peers_fe;
629 goto out;
630 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100631
Frédéric Lécaille18251032019-01-11 11:07:15 +0100632 p = calloc(1, sizeof *p);
633 if (!p) {
634 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
635 return -1;
636 }
637
638 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200639 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100640 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200641 /* Finally store this frontend. */
642 peers->peers_fe = p;
643
644 out:
645 if (id && !p->id)
646 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200647 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100648 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100649 if (linenum != -1)
650 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100651
652 return 0;
653}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100654
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100655/* Only change ->file, ->line and ->arg struct bind_conf member values
656 * if already present.
657 */
658static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
659 const char *file, int line,
660 const char *arg, struct xprt_ops *xprt)
661{
662 struct bind_conf *bind_conf;
663
664 if (!LIST_ISEMPTY(&p->conf.bind)) {
665 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
Emeric Brun0618a3a2022-05-25 10:12:07 +0200666 /*
667 * We keep bind_conf->file and bind_conf->line unchanged
668 * to make them available for error messages
669 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100670 if (arg) {
671 free(bind_conf->arg);
672 bind_conf->arg = strdup(arg);
673 }
674 }
675 else {
676 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
677 }
678
679 return bind_conf;
680}
681
682/*
683 * Allocate a new struct peer parsed at line <linenum> in file <file>
684 * to be added to <peers>.
685 * Returns the new allocated structure if succeeded, NULL if not.
686 */
687static struct peer *cfg_peers_add_peer(struct peers *peers,
688 const char *file, int linenum,
689 const char *id, int local)
690{
691 struct peer *p;
692
693 p = calloc(1, sizeof *p);
694 if (!p) {
695 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
696 return NULL;
697 }
698
699 /* the peers are linked backwards first */
700 peers->count++;
701 p->next = peers->remote;
702 peers->remote = p;
703 p->conf.file = strdup(file);
704 p->conf.line = linenum;
705 p->last_change = now.tv_sec;
706 p->xprt = xprt_get(XPRT_RAW);
707 p->sock_init_arg = NULL;
708 HA_SPIN_INIT(&p->lock);
709 if (id)
710 p->id = strdup(id);
711 if (local) {
712 p->local = 1;
713 peers->local = p;
714 }
715
716 return p;
717}
718
Willy Tarreaubaaee002006-06-26 02:48:02 +0200719/*
William Lallemand51097192015-04-14 16:35:22 +0200720 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200721 * Returns the error code, 0 if OK, or any combination of :
722 * - ERR_ABORT: must abort ASAP
723 * - ERR_FATAL: we can continue parsing but not start the service
724 * - ERR_WARN: a warning has been emitted
725 * - ERR_ALERT: an alert has been emitted
726 * Only the two first ones can stop processing, the two others are just
727 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200728 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200729int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
730{
731 static struct peers *curpeers = NULL;
732 struct peer *newpeer = NULL;
733 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200734 struct bind_conf *bind_conf;
735 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200736 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100737 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100738 static int bind_line, peer_line;
739
740 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
741 int cur_arg;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100742 struct bind_conf *bind_conf;
743 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200744
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100745 cur_arg = 1;
746
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200747 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
748 err_code |= ERR_ALERT | ERR_ABORT;
749 goto out;
750 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100751
752 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
Willy Tarreau8ed76152022-07-05 15:54:09 +0200753 args[1], xprt_get(XPRT_RAW));
William Lallemand8e1b8df2022-07-06 14:30:23 +0200754 if (!bind_conf) {
755 ha_alert("parsing [%s:%d] : '%s %s' : cannot allocate memory.\n", file, linenum, args[0], args[1]);
756 err_code |= ERR_FATAL;
757 goto out;
758 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100759 if (*args[0] == 'b') {
760 struct listener *l;
761
762 if (peer_line) {
763 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
764 err_code |= ERR_ALERT | ERR_FATAL;
765 goto out;
766 }
767
Emeric Brun0618a3a2022-05-25 10:12:07 +0200768 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
769 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);
770 err_code |= ERR_FATAL;
771 }
772
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100773 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
774 if (errmsg && *errmsg) {
775 indent_msg(&errmsg, 2);
776 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
777 }
778 else
779 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
Willy Tarreau5ab278b2022-05-20 15:19:48 +0200780 file, linenum, args[0], args[1], args[1]);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100781 err_code |= ERR_FATAL;
782 goto out;
783 }
Emeric Bruna25fb612022-05-25 10:25:45 +0200784 /*
785 * Newly allocated listener is at the end of the list
786 */
787 l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100788 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100789 l->accept = session_accept_fd;
790 l->analysers |= curpeers->peers_fe->fe_req_ana;
791 l->default_target = curpeers->peers_fe->default_target;
792 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100793 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100794
795 bind_line = 1;
796 if (cfg_peers->local) {
797 newpeer = cfg_peers->local;
798 }
799 else {
800 /* This peer is local.
801 * Note that we do not set the peer ID. This latter is initialized
802 * when parsing "peer" or "server" line.
803 */
804 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
805 if (!newpeer) {
806 err_code |= ERR_ALERT | ERR_ABORT;
807 goto out;
808 }
809 }
Willy Tarreau37159062020-08-27 07:48:42 +0200810 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200811 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100812 cur_arg++;
813 }
814
815 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
816 int ret;
817
818 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
819 err_code |= ret;
820 if (ret) {
821 if (errmsg && *errmsg) {
822 indent_msg(&errmsg, 2);
823 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
824 }
825 else
826 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
827 file, linenum, args[cur_arg]);
828 if (ret & ERR_FATAL)
829 goto out;
830 }
831 cur_arg += 1 + kw->skip;
832 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100833 if (*args[cur_arg] != 0) {
Willy Tarreau433b05f2021-03-12 10:14:07 +0100834 const char *best = bind_find_best_kw(args[cur_arg]);
835 if (best)
836 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section; did you mean '%s' maybe ?\n",
837 file, linenum, args[cur_arg], cursection, best);
838 else
839 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.\n",
840 file, linenum, args[cur_arg], cursection);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100841 err_code |= ERR_ALERT | ERR_FATAL;
842 goto out;
843 }
844 }
845 else if (strcmp(args[0], "default-server") == 0) {
846 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
847 err_code |= ERR_ALERT | ERR_ABORT;
848 goto out;
849 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100850 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
851 SRV_PARSE_DEFAULT_SERVER|SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200852 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100853 else if (strcmp(args[0], "log") == 0) {
854 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
855 err_code |= ERR_ALERT | ERR_ABORT;
856 goto out;
857 }
Emeric Brun9533a702021-04-02 10:13:43 +0200858 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), file, linenum, &errmsg)) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100859 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
860 err_code |= ERR_ALERT | ERR_FATAL;
861 goto out;
862 }
863 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200864 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100865 /* Initialize these static variables when entering a new "peers" section*/
866 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100867 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100868 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100869 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100870 goto out;
871 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200872
William Lallemand6e62fb62015-04-28 16:55:23 +0200873 if (alertif_too_many_args(1, file, linenum, args, &err_code))
874 goto out;
875
Emeric Brun32da3c42010-09-23 18:39:19 +0200876 err = invalid_char(args[1]);
877 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100878 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
879 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100880 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100881 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200882 }
883
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200884 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200885 /*
886 * If there are two proxies with the same name only following
887 * combinations are allowed:
888 */
889 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100890 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
891 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200892 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200893 }
894 }
895
Vincent Bernat02779b62016-04-03 13:48:43 +0200896 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100897 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200898 err_code |= ERR_ALERT | ERR_ABORT;
899 goto out;
900 }
901
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200902 curpeers->next = cfg_peers;
903 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200904 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200905 curpeers->conf.line = linenum;
906 curpeers->last_change = now.tv_sec;
907 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200908 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200909 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200910 else if (strcmp(args[0], "peer") == 0 ||
911 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100912 int local_peer, peer;
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100913 int parse_addr = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200914
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100915 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100916 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100917 /* The local peer may have already partially been parsed on a "bind" line. */
918 if (*args[0] == 'p') {
919 if (bind_line) {
920 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
921 err_code |= ERR_ALERT | ERR_FATAL;
922 goto out;
923 }
924 peer_line = 1;
925 }
926 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
927 /* The local peer has already been initialized on a "bind" line.
928 * Let's use it and store its ID.
929 */
930 newpeer = cfg_peers->local;
931 newpeer->id = strdup(localpeer);
932 }
933 else {
934 if (local_peer && cfg_peers->local) {
935 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
936 file, linenum, args[0], args[1],
937 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
938 err_code |= ERR_FATAL;
939 goto out;
940 }
941 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
942 if (!newpeer) {
943 err_code |= ERR_ALERT | ERR_ABORT;
944 goto out;
945 }
946 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200947
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100948 /* Line number and peer ID are updated only if this peer is the local one. */
949 if (init_peers_frontend(file,
950 newpeer->local ? linenum: -1,
951 newpeer->local ? newpeer->id : NULL,
952 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200953 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100954 goto out;
955 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100956
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100957 /* This initializes curpeer->peers->peers_fe->srv.
958 * The server address is parsed only if we are parsing a "peer" line,
959 * or if we are parsing a "server" line and the current peer is not the local one.
960 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100961 parse_addr = (peer || !local_peer) ? SRV_PARSE_PARSE_ADDR : 0;
962 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
963 SRV_PARSE_IN_PEER_SECTION|parse_addr|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200964 if (!curpeers->peers_fe->srv) {
965 /* Remove the newly allocated peer. */
966 if (newpeer != curpeers->local) {
967 struct peer *p;
968
969 p = curpeers->remote;
970 curpeers->remote = curpeers->remote->next;
971 free(p->id);
972 free(p);
973 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200974 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200975 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200976
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100977 /* If the peer address has just been parsed, let's copy it to <newpeer>
978 * and initializes ->proto.
979 */
980 if (peer || !local_peer) {
981 newpeer->addr = curpeers->peers_fe->srv->addr;
982 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
983 }
984
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100985 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200986 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100987 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200988
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100989 newpeer->srv = curpeers->peers_fe->srv;
990 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200991 goto out;
992
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100993 /* The lines above are reserved to "peer" lines. */
994 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200995 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200996
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100997 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW));
William Lallemand8e1b8df2022-07-06 14:30:23 +0200998 if (!bind_conf) {
999 ha_alert("parsing [%s:%d] : '%s %s' : Cannot allocate memory.\n", file, linenum, args[0], args[1]);
1000 err_code |= ERR_FATAL;
1001 goto out;
1002 }
Frédéric Lécaille16e49102019-01-11 11:27:16 +01001003
Emeric Brun0618a3a2022-05-25 10:12:07 +02001004 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
1005 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);
1006 err_code |= ERR_FATAL;
1007 }
1008
Frédéric Lécaille91694d52019-01-11 11:43:53 +01001009 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
1010 if (errmsg && *errmsg) {
1011 indent_msg(&errmsg, 2);
1012 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 +01001013 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +01001014 else
1015 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
1016 file, linenum, args[0], args[1], args[2]);
1017 err_code |= ERR_FATAL;
1018 goto out;
1019 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001020
Emeric Bruna25fb612022-05-25 10:25:45 +02001021 /*
1022 * Newly allocated listener is at the end of the list
1023 */
1024 l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind);
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001025 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +01001026 l->accept = session_accept_fd;
1027 l->analysers |= curpeers->peers_fe->fe_req_ana;
1028 l->default_target = curpeers->peers_fe->default_target;
1029 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +01001030 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001031 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001032 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001033 struct stktable *t, *other;
1034 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001035 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001036
1037 /* Line number and peer ID are updated only if this peer is the local one. */
1038 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
1039 err_code |= ERR_ALERT | ERR_ABORT;
1040 goto out;
1041 }
1042
1043 other = stktable_find_by_name(args[1]);
1044 if (other) {
1045 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
1046 file, linenum, args[1],
1047 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
1048 other->proxy ? other->id : other->peers.p->id,
1049 other->conf.file, other->conf.line);
1050 err_code |= ERR_ALERT | ERR_FATAL;
1051 goto out;
1052 }
1053
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001054 /* Build the stick-table name, concatenating the "peers" section name
1055 * followed by a '/' character and the table name argument.
1056 */
1057 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001058 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001059 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
1060 file, linenum, args[0], args[1]);
1061 err_code |= ERR_ALERT | ERR_FATAL;
1062 goto out;
1063 }
1064
1065 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +01001066 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001067 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
1068 file, linenum, args[0], args[1]);
1069 err_code |= ERR_ALERT | ERR_FATAL;
1070 goto out;
1071 }
1072
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001073 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001074 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001075 if (!t || !id) {
1076 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
1077 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +02001078 free(t);
1079 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001080 err_code |= ERR_ALERT | ERR_FATAL;
1081 goto out;
1082 }
1083
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001084 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +02001085 if (err_code & ERR_FATAL) {
1086 free(t);
1087 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001088 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +02001089 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001090
1091 stktable_store_name(t);
1092 t->next = stktables_list;
1093 stktables_list = t;
1094 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001095 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02001096 curpeers->disabled = 1;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001097 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001098 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02001099 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001100 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001101 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001102 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +02001103 err_code |= ERR_ALERT | ERR_FATAL;
1104 goto out;
1105 }
1106
1107out:
Willy Tarreau902636f2013-03-10 19:44:48 +01001108 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +02001109 return err_code;
1110}
1111
Baptiste Assmann325137d2015-04-13 23:40:55 +02001112/*
William Lallemand51097192015-04-14 16:35:22 +02001113 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001114 * Returns the error code, 0 if OK, or any combination of :
1115 * - ERR_ABORT: must abort ASAP
1116 * - ERR_FATAL: we can continue parsing but not start the service
1117 * - ERR_WARN: a warning has been emitted
1118 * - ERR_ALERT: an alert has been emitted
1119 * Only the two first ones can stop processing, the two others are just
1120 * indicators.
1121 */
1122int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1123{
1124 static struct mailers *curmailers = NULL;
1125 struct mailer *newmailer = NULL;
1126 const char *err;
1127 int err_code = 0;
1128 char *errmsg = NULL;
1129
1130 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1131 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001132 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001133 err_code |= ERR_ALERT | ERR_ABORT;
1134 goto out;
1135 }
1136
1137 err = invalid_char(args[1]);
1138 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001139 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1140 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001141 err_code |= ERR_ALERT | ERR_ABORT;
1142 goto out;
1143 }
1144
1145 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1146 /*
1147 * If there are two proxies with the same name only following
1148 * combinations are allowed:
1149 */
1150 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001151 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1152 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001153 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001154 }
1155 }
1156
Vincent Bernat02779b62016-04-03 13:48:43 +02001157 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001158 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001159 err_code |= ERR_ALERT | ERR_ABORT;
1160 goto out;
1161 }
1162
1163 curmailers->next = mailers;
1164 mailers = curmailers;
1165 curmailers->conf.file = strdup(file);
1166 curmailers->conf.line = linenum;
1167 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001168 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1169 * But need enough time so that timeouts don't occur
1170 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001171 }
1172 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1173 struct sockaddr_storage *sk;
1174 int port1, port2;
1175 struct protocol *proto;
1176
1177 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001178 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1179 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001180 err_code |= ERR_ALERT | ERR_FATAL;
1181 goto out;
1182 }
1183
1184 err = invalid_char(args[1]);
1185 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001186 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1187 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001188 err_code |= ERR_ALERT | ERR_FATAL;
1189 goto out;
1190 }
1191
Vincent Bernat02779b62016-04-03 13:48:43 +02001192 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001193 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001194 err_code |= ERR_ALERT | ERR_ABORT;
1195 goto out;
1196 }
1197
1198 /* the mailers are linked backwards first */
1199 curmailers->count++;
1200 newmailer->next = curmailers->mailer_list;
1201 curmailers->mailer_list = newmailer;
1202 newmailer->mailers = curmailers;
1203 newmailer->conf.file = strdup(file);
1204 newmailer->conf.line = linenum;
1205
1206 newmailer->id = strdup(args[1]);
1207
Willy Tarreau5fc93282020-09-16 18:25:03 +02001208 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001209 &errmsg, NULL, NULL,
1210 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 +09001211 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001212 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001213 err_code |= ERR_ALERT | ERR_FATAL;
1214 goto out;
1215 }
1216
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001217 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001218 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1219 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001220 err_code |= ERR_ALERT | ERR_FATAL;
1221 goto out;
1222 }
1223
Simon Horman0d16a402015-01-30 11:22:58 +09001224 newmailer->addr = *sk;
1225 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001226 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001227 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001228 }
1229 else if (strcmp(args[0], "timeout") == 0) {
1230 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001231 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1232 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001233 err_code |= ERR_ALERT | ERR_FATAL;
1234 goto out;
1235 }
1236 else if (strcmp(args[1], "mail") == 0) {
1237 const char *res;
1238 unsigned int timeout_mail;
1239 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001240 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1241 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001242 err_code |= ERR_ALERT | ERR_FATAL;
1243 goto out;
1244 }
1245 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001246 if (res == PARSE_TIME_OVER) {
1247 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1248 file, linenum, args[2], args[0], args[1]);
1249 err_code |= ERR_ALERT | ERR_FATAL;
1250 goto out;
1251 }
1252 else if (res == PARSE_TIME_UNDER) {
1253 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1254 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001255 err_code |= ERR_ALERT | ERR_FATAL;
1256 goto out;
1257 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001258 else if (res) {
1259 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1260 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001261 err_code |= ERR_ALERT | ERR_FATAL;
1262 goto out;
1263 }
1264 curmailers->timeout.mail = timeout_mail;
1265 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001266 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001267 file, linenum, args[0], args[1]);
1268 err_code |= ERR_ALERT | ERR_FATAL;
1269 goto out;
1270 }
1271 }
Simon Horman0d16a402015-01-30 11:22:58 +09001272 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001273 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001274 err_code |= ERR_ALERT | ERR_FATAL;
1275 goto out;
1276 }
1277
1278out:
1279 free(errmsg);
1280 return err_code;
1281}
1282
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001283void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001284{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001285 ha_free(&p->email_alert.mailers.name);
1286 ha_free(&p->email_alert.from);
1287 ha_free(&p->email_alert.to);
1288 ha_free(&p->email_alert.myhostname);
Simon Horman9dc49962015-01-30 11:22:59 +09001289}
1290
Willy Tarreaubaaee002006-06-26 02:48:02 +02001291
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001292int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001293cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1294{
Willy Tarreaue5733232019-05-22 19:24:06 +02001295#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001296 const char *err;
1297 const char *item = args[0];
1298
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001299 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001300 return 0;
1301 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001302 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001303 size_t idx = 1;
1304 const char *current;
1305 while (*(current = args[idx++])) {
1306 err = invalid_char(current);
1307 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001308 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1309 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001310 return ERR_ALERT | ERR_FATAL;
1311 }
1312
1313 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001314 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1315 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001316 return ERR_ALERT | ERR_FATAL;
1317 }
1318 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001319 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1320 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001321 return ERR_ALERT | ERR_FATAL;
1322 }
1323 }
1324 }
1325
1326 return 0;
1327#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001328 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1329 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001330 return ERR_ALERT | ERR_FATAL;
1331#endif
1332}
1333
1334int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001335cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1336{
1337
1338 int err_code = 0;
1339 const char *err;
1340
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001341 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001342 struct userlist *newul;
1343
1344 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001345 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1346 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001347 err_code |= ERR_ALERT | ERR_FATAL;
1348 goto out;
1349 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001350 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1351 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001352
1353 err = invalid_char(args[1]);
1354 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001355 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1356 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001357 err_code |= ERR_ALERT | ERR_FATAL;
1358 goto out;
1359 }
1360
1361 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001362 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001363 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1364 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001365 err_code |= ERR_WARN;
1366 goto out;
1367 }
1368
Vincent Bernat02779b62016-04-03 13:48:43 +02001369 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001370 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001371 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001372 err_code |= ERR_ALERT | ERR_ABORT;
1373 goto out;
1374 }
1375
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001376 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001377 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001378 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001379 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001380 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001381 goto out;
1382 }
1383
1384 newul->next = userlist;
1385 userlist = newul;
1386
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001387 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001388 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001389 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001390 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001391
1392 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001393 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1394 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001395 err_code |= ERR_ALERT | ERR_FATAL;
1396 goto out;
1397 }
1398
1399 err = invalid_char(args[1]);
1400 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001401 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1402 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001403 err_code |= ERR_ALERT | ERR_FATAL;
1404 goto out;
1405 }
1406
William Lallemand4ac9f542015-05-28 18:03:51 +02001407 if (!userlist)
1408 goto out;
1409
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001410 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001411 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001412 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1413 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001414 err_code |= ERR_ALERT;
1415 goto out;
1416 }
1417
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001418 ag = calloc(1, sizeof(*ag));
1419 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001420 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001421 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001422 goto out;
1423 }
1424
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001425 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001426 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001427 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001428 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001429 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001430 goto out;
1431 }
1432
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001433 cur_arg = 2;
1434
1435 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001436 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001437 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001438 cur_arg += 2;
1439 continue;
1440 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001441 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1442 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001443 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001444 free(ag->groupusers);
1445 free(ag->name);
1446 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001447 goto out;
1448 }
1449 }
1450
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001451 ag->next = userlist->groups;
1452 userlist->groups = ag;
1453
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001454 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001455 struct auth_users *newuser;
1456 int cur_arg;
1457
1458 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001459 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1460 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001461 err_code |= ERR_ALERT | ERR_FATAL;
1462 goto out;
1463 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001464 if (!userlist)
1465 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001466
1467 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001468 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001469 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1470 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001471 err_code |= ERR_ALERT;
1472 goto out;
1473 }
1474
Vincent Bernat02779b62016-04-03 13:48:43 +02001475 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001476 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001477 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001478 err_code |= ERR_ALERT | ERR_ABORT;
1479 goto out;
1480 }
1481
1482 newuser->user = strdup(args[1]);
1483
1484 newuser->next = userlist->users;
1485 userlist->users = newuser;
1486
1487 cur_arg = 2;
1488
1489 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001490 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001491#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001492 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001493 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1494 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001495 err_code |= ERR_ALERT | ERR_FATAL;
1496 goto out;
1497 }
1498#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001499 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1500 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001501 err_code |= ERR_ALERT;
1502#endif
1503 newuser->pass = strdup(args[cur_arg + 1]);
1504 cur_arg += 2;
1505 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001506 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001507 newuser->pass = strdup(args[cur_arg + 1]);
1508 newuser->flags |= AU_O_INSECURE;
1509 cur_arg += 2;
1510 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001511 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001512 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001513 cur_arg += 2;
1514 continue;
1515 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001516 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1517 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001518 err_code |= ERR_ALERT | ERR_FATAL;
1519 goto out;
1520 }
1521 }
1522 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001523 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 +01001524 err_code |= ERR_ALERT | ERR_FATAL;
1525 }
1526
1527out:
1528 return err_code;
1529}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001530
Christopher Faulet79bdef32016-11-04 22:36:15 +01001531int
1532cfg_parse_scope(const char *file, int linenum, char *line)
1533{
1534 char *beg, *end, *scope = NULL;
1535 int err_code = 0;
1536 const char *err;
1537
1538 beg = line + 1;
1539 end = strchr(beg, ']');
1540
1541 /* Detect end of scope declaration */
1542 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001543 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1544 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001545 err_code |= ERR_ALERT | ERR_FATAL;
1546 goto out;
1547 }
1548
1549 /* Get scope name and check its validity */
1550 scope = my_strndup(beg, end-beg);
1551 err = invalid_char(scope);
1552 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001553 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1554 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001555 err_code |= ERR_ALERT | ERR_ABORT;
1556 goto out;
1557 }
1558
1559 /* Be sure to have a scope declaration alone on its line */
1560 line = end+1;
1561 while (isspace((unsigned char)*line))
1562 line++;
1563 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001564 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1565 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001566 err_code |= ERR_ALERT | ERR_ABORT;
1567 goto out;
1568 }
1569
1570 /* We have a valid scope declaration, save it */
1571 free(cfg_scope);
1572 cfg_scope = scope;
1573 scope = NULL;
1574
1575 out:
1576 free(scope);
1577 return err_code;
1578}
1579
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001580int
1581cfg_parse_track_sc_num(unsigned int *track_sc_num,
1582 const char *arg, const char *end, char **errmsg)
1583{
1584 const char *p;
1585 unsigned int num;
1586
1587 p = arg;
1588 num = read_uint64(&arg, end);
1589
1590 if (arg != end) {
1591 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1592 return -1;
1593 }
1594
1595 if (num >= MAX_SESS_STKCTR) {
1596 memprintf(errmsg, "%u track-sc number exceeding "
1597 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1598 return -1;
1599 }
1600
1601 *track_sc_num = num;
1602 return 0;
1603}
1604
Willy Tarreaubaaee002006-06-26 02:48:02 +02001605/*
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001606 * Detect a global section after a non-global one and output a diagnostic
1607 * warning.
1608 */
1609static void check_section_position(char *section_name,
1610 const char *file, int linenum,
1611 int *non_global_parsed)
1612{
1613 if (!strcmp(section_name, "global")) {
1614 if (*non_global_parsed == 1)
1615 _ha_diag_warning("parsing [%s:%d] : global section detected after a non-global one, the prevalence of their statements is unspecified\n", file, linenum);
1616 }
1617 else if (*non_global_parsed == 0) {
1618 *non_global_parsed = 1;
1619 }
1620}
1621
Willy Tarreau8a022d52021-04-27 20:29:11 +02001622/* apply the current default_path setting for config file <file>, and
1623 * optionally replace the current path to <origin> if not NULL while the
1624 * default-path mode is set to "origin". Errors are returned into an
1625 * allocated string passed to <err> if it's not NULL. Returns 0 on failure
1626 * or non-zero on success.
1627 */
1628static int cfg_apply_default_path(const char *file, const char *origin, char **err)
1629{
1630 const char *beg, *end;
1631
1632 /* make path start at <beg> and end before <end>, and switch it to ""
1633 * if no slash was passed.
1634 */
1635 beg = file;
1636 end = strrchr(beg, '/');
1637 if (!end)
1638 end = beg;
1639
1640 if (!*initial_cwd) {
1641 if (getcwd(initial_cwd, sizeof(initial_cwd)) == NULL) {
1642 if (err)
1643 memprintf(err, "Impossible to retrieve startup directory name: %s", strerror(errno));
1644 return 0;
1645 }
1646 }
1647 else if (chdir(initial_cwd) == -1) {
1648 if (err)
1649 memprintf(err, "Impossible to get back to initial directory '%s': %s", initial_cwd, strerror(errno));
1650 return 0;
1651 }
1652
1653 /* OK now we're (back) to initial_cwd */
1654
1655 switch (default_path_mode) {
1656 case DEFAULT_PATH_CURRENT:
1657 /* current_cwd never set, nothing to do */
1658 return 1;
1659
1660 case DEFAULT_PATH_ORIGIN:
1661 /* current_cwd set in the config */
1662 if (origin &&
1663 snprintf(current_cwd, sizeof(current_cwd), "%s", origin) > sizeof(current_cwd)) {
1664 if (err)
1665 memprintf(err, "Absolute path too long: '%s'", origin);
1666 return 0;
1667 }
1668 break;
1669
1670 case DEFAULT_PATH_CONFIG:
1671 if (end - beg >= sizeof(current_cwd)) {
1672 if (err)
1673 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1674 return 0;
1675 }
1676 memcpy(current_cwd, beg, end - beg);
1677 current_cwd[end - beg] = 0;
1678 break;
1679
1680 case DEFAULT_PATH_PARENT:
1681 if (end - beg + 3 >= sizeof(current_cwd)) {
1682 if (err)
1683 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1684 return 0;
1685 }
1686 memcpy(current_cwd, beg, end - beg);
1687 if (end > beg)
1688 memcpy(current_cwd + (end - beg), "/..\0", 4);
1689 else
1690 memcpy(current_cwd + (end - beg), "..\0", 3);
1691 break;
1692 }
1693
1694 if (*current_cwd && chdir(current_cwd) == -1) {
1695 if (err)
1696 memprintf(err, "Impossible to get back to directory '%s': %s", initial_cwd, strerror(errno));
1697 return 0;
1698 }
1699
1700 return 1;
1701}
1702
1703/* parses a global "default-path" directive. */
1704static int cfg_parse_global_def_path(char **args, int section_type, struct proxy *curpx,
1705 const struct proxy *defpx, const char *file, int line,
1706 char **err)
1707{
1708 int ret = -1;
1709
1710 /* "current", "config", "parent", "origin <path>" */
1711
1712 if (strcmp(args[1], "current") == 0)
1713 default_path_mode = DEFAULT_PATH_CURRENT;
1714 else if (strcmp(args[1], "config") == 0)
1715 default_path_mode = DEFAULT_PATH_CONFIG;
1716 else if (strcmp(args[1], "parent") == 0)
1717 default_path_mode = DEFAULT_PATH_PARENT;
1718 else if (strcmp(args[1], "origin") == 0)
1719 default_path_mode = DEFAULT_PATH_ORIGIN;
1720 else {
1721 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]);
1722 goto end;
1723 }
1724
1725 if (default_path_mode == DEFAULT_PATH_ORIGIN) {
1726 if (!*args[2]) {
1727 memprintf(err, "'%s %s' expects a directory as an argument.", args[0], args[1]);
1728 goto end;
1729 }
1730 if (!cfg_apply_default_path(file, args[2], err)) {
1731 memprintf(err, "couldn't set '%s' to origin '%s': %s.", args[0], args[2], *err);
1732 goto end;
1733 }
1734 }
1735 else if (!cfg_apply_default_path(file, NULL, err)) {
1736 memprintf(err, "couldn't set '%s' to '%s': %s.", args[0], args[1], *err);
1737 goto end;
1738 }
1739
1740 /* note that once applied, the path is immediately updated */
1741
1742 ret = 0;
1743 end:
1744 return ret;
1745}
1746
Willy Tarreau732525f2021-05-06 15:49:04 +02001747/* looks up a cond predicate matching the keyword in <str>, possibly followed
1748 * by a parenthesis. Returns a pointer to it or NULL if not found.
1749 */
1750static const struct cond_pred_kw *cfg_lookup_cond_pred(const char *str)
1751{
1752 const struct cond_pred_kw *ret;
1753 int len = strcspn(str, " (");
1754
1755 for (ret = &cond_predicates[0]; ret->word; ret++) {
1756 if (len != strlen(ret->word))
1757 continue;
1758 if (strncmp(str, ret->word, len) != 0)
1759 continue;
1760 return ret;
1761 }
1762 return NULL;
1763}
1764
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001765/* evaluate a condition on a .if/.elif line. The condition is already tokenized
1766 * in <err>. Returns -1 on error (in which case err is filled with a message,
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001767 * and only in this case), 0 if the condition is false, 1 if it's true. If
1768 * <errptr> is not NULL, it's set to the first invalid character on error.
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001769 */
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001770static int cfg_eval_condition(char **args, char **err, const char **errptr)
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001771{
Willy Tarreau732525f2021-05-06 15:49:04 +02001772 const struct cond_pred_kw *cond_pred = NULL;
1773 const char *end_ptr;
1774 struct arg *argp = NULL;
1775 int err_arg;
1776 int nbargs;
1777 int ret = -1;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001778 char *end;
1779 long val;
1780
1781 if (!*args[0]) /* note: empty = false */
1782 return 0;
1783
1784 val = strtol(args[0], &end, 0);
1785 if (end && *end == '\0')
1786 return val != 0;
1787
Willy Tarreau732525f2021-05-06 15:49:04 +02001788 /* below we'll likely all make_arg_list() so we must return only via
1789 * the <done> label which frees the arg list.
1790 */
1791 cond_pred = cfg_lookup_cond_pred(args[0]);
1792 if (cond_pred) {
1793 nbargs = make_arg_list(args[0] + strlen(cond_pred->word), -1,
1794 cond_pred->arg_mask, &argp, err,
1795 &end_ptr, &err_arg, NULL);
1796
1797 if (nbargs < 0) {
1798 memprintf(err, "%s in argument %d of predicate '%s' used in conditional expression", *err, err_arg, cond_pred->word);
1799 if (errptr)
1800 *errptr = end_ptr;
1801 goto done;
1802 }
1803
1804 /* here we know we have a valid predicate with <nbargs> valid
1805 * arguments, placed in <argp> (which we'll need to free).
1806 */
1807 switch (cond_pred->prd) {
Willy Tarreau42ed14b2021-05-06 15:55:14 +02001808 case CFG_PRED_DEFINED: // checks if arg exists as an environment variable
1809 ret = getenv(argp[0].data.str.area) != NULL;
1810 goto done;
1811
Willy Tarreau58ca7062021-05-06 16:34:23 +02001812 case CFG_PRED_FEATURE: { // checks if the arg matches an enabled feature
1813 const char *p;
1814
1815 for (p = build_features; (p = strstr(p, argp[0].data.str.area)); p++) {
1816 if ((p[argp[0].data.str.data] == ' ' || p[argp[0].data.str.data] == 0) &&
1817 p > build_features) {
1818 if (*(p-1) == '+') { // "+OPENSSL"
1819 ret = 1;
1820 goto done;
1821 }
1822 else if (*(p-1) == '-') { // "-OPENSSL"
1823 ret = 0;
1824 goto done;
1825 }
1826 /* it was a sub-word, let's restart from next place */
1827 }
1828 }
1829 /* not found */
1830 ret = 0;
1831 goto done;
1832 }
Willy Tarreau6492e872021-05-06 16:10:09 +02001833 case CFG_PRED_STREQ: // checks if the two arg are equal
1834 ret = strcmp(argp[0].data.str.area, argp[1].data.str.area) == 0;
1835 goto done;
1836
1837 case CFG_PRED_STRNEQ: // checks if the two arg are different
1838 ret = strcmp(argp[0].data.str.area, argp[1].data.str.area) != 0;
1839 goto done;
1840
Willy Tarreau0b7c78a2021-05-06 16:53:26 +02001841 case CFG_PRED_VERSION_ATLEAST: // checks if the current version is at least this one
1842 ret = compare_current_version(argp[0].data.str.area) <= 0;
1843 goto done;
1844
1845 case CFG_PRED_VERSION_BEFORE: // checks if the current version is older than this one
1846 ret = compare_current_version(argp[0].data.str.area) > 0;
1847 goto done;
1848
Willy Tarreau732525f2021-05-06 15:49:04 +02001849 default:
1850 memprintf(err, "internal error: unhandled conditional expression predicate '%s'", cond_pred->word);
1851 if (errptr)
1852 *errptr = args[0];
1853 goto done;
1854 }
1855 }
1856
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001857 memprintf(err, "unparsable conditional expression '%s'", args[0]);
1858 if (errptr)
1859 *errptr = args[0];
Willy Tarreau732525f2021-05-06 15:49:04 +02001860 done:
1861 for (nbargs = 0; argp && argp[nbargs].type != ARGT_STOP; nbargs++) {
1862 if (argp[nbargs].type == ARGT_STR)
1863 free(argp[nbargs].data.str.area);
1864 }
1865 free(argp);
1866 return ret;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001867}
Willy Tarreau8a022d52021-04-27 20:29:11 +02001868
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001869/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001870 * This function reads and parses the configuration file given in the argument.
Willy Tarreauda543e12021-04-27 18:30:28 +02001871 * Returns the error code, 0 if OK, -1 if the config file couldn't be opened,
1872 * or any combination of :
Willy Tarreau058e9072009-07-20 09:30:05 +02001873 * - ERR_ABORT: must abort ASAP
1874 * - ERR_FATAL: we can continue parsing but not start the service
1875 * - ERR_WARN: a warning has been emitted
1876 * - ERR_ALERT: an alert has been emitted
1877 * Only the two first ones can stop processing, the two others are just
1878 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001879 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001880int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001881{
Willy Tarreauda543e12021-04-27 18:30:28 +02001882 char *thisline = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001883 int linesize = LINESIZE;
Willy Tarreauda543e12021-04-27 18:30:28 +02001884 FILE *f = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001885 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001886 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001887 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001888 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001889 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001890 char *outline = NULL;
1891 size_t outlen = 0;
1892 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001893 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001894 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001895 int nested_cond_lvl = 0;
1896 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001897 int non_global_section_parsed = 0;
Willy Tarreau8a022d52021-04-27 20:29:11 +02001898 char *errmsg = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001899
Willy Tarreau51508052021-05-06 10:04:45 +02001900 global.cfg_curr_line = 0;
1901 global.cfg_curr_file = file;
1902
William Lallemand64e84512015-05-12 14:25:37 +02001903 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Willy Tarreauda543e12021-04-27 18:30:28 +02001904 ha_alert("Out of memory trying to allocate a buffer for a configuration line.\n");
1905 err_code = -1;
1906 goto err;
William Lallemand64e84512015-05-12 14:25:37 +02001907 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001908
Willy Tarreauda543e12021-04-27 18:30:28 +02001909 if ((f = fopen(file,"r")) == NULL) {
1910 err_code = -1;
1911 goto err;
David Carlier97880bb2016-04-08 10:35:26 +01001912 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001913
Willy Tarreau8a022d52021-04-27 20:29:11 +02001914 /* change to the new dir if required */
1915 if (!cfg_apply_default_path(file, NULL, &errmsg)) {
1916 ha_alert("parsing [%s:%d]: failed to apply default-path: %s.\n", file, linenum, errmsg);
1917 free(errmsg);
1918 err_code = -1;
1919 goto err;
1920 }
1921
William Lallemandb2f07452015-05-12 14:27:13 +02001922next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001923 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001924 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001925 char *end;
1926 char *args[MAX_LINE_ARGS + 1];
1927 char *line = thisline;
1928
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001929 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001930 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1931 file, linenum, (missing_lf + 1));
1932 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001933 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001934 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001935 }
1936
Willy Tarreaubaaee002006-06-26 02:48:02 +02001937 linenum++;
Willy Tarreau51508052021-05-06 10:04:45 +02001938 global.cfg_curr_line = linenum;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001939
Willy Tarreau32234e72020-06-16 17:14:33 +02001940 if (fatal >= 50) {
1941 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1942 break;
1943 }
1944
Willy Tarreaubaaee002006-06-26 02:48:02 +02001945 end = line + strlen(line);
1946
William Lallemand64e84512015-05-12 14:25:37 +02001947 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001948 /* Check if we reached the limit and the last char is not \n.
1949 * Watch out for the last line without the terminating '\n'!
1950 */
William Lallemand64e84512015-05-12 14:25:37 +02001951 char *newline;
1952 int newlinesize = linesize * 2;
1953
1954 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1955 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001956 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1957 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001958 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001959 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001960 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001961 continue;
1962 }
1963
1964 readbytes = linesize - 1;
1965 linesize = newlinesize;
1966 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001967 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001968 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001969 }
1970
William Lallemand64e84512015-05-12 14:25:37 +02001971 readbytes = 0;
1972
Willy Tarreau08488f62020-06-26 17:24:54 +02001973 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001974 /* kill trailing LF */
1975 *(end - 1) = 0;
1976 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001977 else {
1978 /* mark this line as truncated */
1979 missing_lf = end - line;
1980 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001981
Willy Tarreaubaaee002006-06-26 02:48:02 +02001982 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001983 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001984 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001985
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001986 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001987 err_code |= cfg_parse_scope(file, linenum, line);
1988 goto next_line;
1989 }
1990
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001991 while (1) {
1992 uint32_t err;
1993 char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001994
Willy Tarreau61dd44b2020-06-25 07:35:42 +02001995 arg = MAX_LINE_ARGS + 1;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001996 outlen = outlinesize;
1997 err = parse_line(line, outline, &outlen, args, &arg,
1998 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001999 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
2000 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002001
2002 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02002003 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
2004
2005 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
2006 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002007 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002008 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002009 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002010 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002011
2012 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02002013 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
2014
2015 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
2016 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002017 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002018 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002019 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002020 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002021
2022 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02002023 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
2024
2025 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
2026 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002027 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002028 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002029 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002030 }
William Lallemandb2f07452015-05-12 14:27:13 +02002031
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002032 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02002033 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
2034
2035 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
2036 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002037 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02002038 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002039 goto next_line;
2040 }
William Lallemandb2f07452015-05-12 14:27:13 +02002041
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02002042 if (err & PARSE_ERR_WRONG_EXPAND) {
2043 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
2044
2045 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
2046 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
2047 err_code |= ERR_ALERT | ERR_FATAL;
2048 fatal++;
2049 goto next_line;
2050 }
2051
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002052 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
2053 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05002054 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002055 if (outline == NULL) {
2056 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
2057 file, linenum);
Willy Tarreau0c68be72022-05-20 09:13:38 +02002058 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau32234e72020-06-16 17:14:33 +02002059 fatal++;
Christopher Faulet6ae99cb2022-05-18 16:22:43 +02002060 outlinesize = 0;
Willy Tarreau0c68be72022-05-20 09:13:38 +02002061 goto err;
William Lallemandb2f07452015-05-12 14:27:13 +02002062 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002063 /* try again */
2064 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002065 }
Willy Tarreau07d47062020-06-25 07:41:22 +02002066
2067 if (err & PARSE_ERR_TOOMANY) {
2068 /* only check this *after* being sure the output is allocated */
2069 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
2070 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
2071 err_code |= ERR_ALERT | ERR_FATAL;
2072 fatal++;
2073 goto next_line;
2074 }
2075
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002076 /* everything's OK */
2077 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02002078 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002079
2080 /* empty line */
2081 if (!**args)
2082 continue;
2083
Willy Tarreau4b103022021-02-12 17:59:10 +01002084 /* check for config macros */
2085 if (*args[0] == '.') {
2086 if (strcmp(args[0], ".if") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002087 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002088 char *errmsg = NULL;
2089 int cond;
2090
Tim Duesterhusf41ea3e2021-05-26 17:45:33 +02002091 if (*args[2]) {
2092 ha_warning("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
2093 file, linenum, args[2], args[0]);
2094 err_code |= ERR_WARN;
2095 }
2096
Willy Tarreau4b103022021-02-12 17:59:10 +01002097 nested_cond_lvl++;
2098 if (nested_cond_lvl >= MAXNESTEDCONDS) {
2099 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
2100 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2101 goto err;
2102 }
2103
Willy Tarreau6e647c92021-05-06 08:46:11 +02002104 if (nested_cond_lvl > 1 &&
2105 (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
2106 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
2107 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
2108 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
2109 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP)) {
Willy Tarreau4b103022021-02-12 17:59:10 +01002110 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002111 goto next_line;
2112 }
2113
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002114 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002115 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002116 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 76);
2117
2118 ha_alert("parsing [%s:%d]: %s in '.if' at position %d:\n .if %s\n %*s\n",
2119 file, linenum, errmsg,
2120 (int)(errptr-args[1]+1), args[1], (int)(newpos+5), "^");
2121
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002122 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01002123 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2124 goto err;
2125 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002126
2127 if (cond)
2128 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
2129 else
2130 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
2131
Willy Tarreau4b103022021-02-12 17:59:10 +01002132 goto next_line;
2133 }
2134 else if (strcmp(args[0], ".elif") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002135 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002136 char *errmsg = NULL;
2137 int cond;
2138
Tim Duesterhusf41ea3e2021-05-26 17:45:33 +02002139 if (*args[2]) {
2140 ha_warning("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
2141 file, linenum, args[2], args[0]);
2142 err_code |= ERR_WARN;
2143 }
2144
Willy Tarreau4b103022021-02-12 17:59:10 +01002145 if (!nested_cond_lvl) {
2146 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
2147 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2148 goto err;
2149 }
2150
2151 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2152 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2153 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
2154 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2155 goto err;
2156 }
2157
2158 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2159 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
Willy Tarreauf67ff022021-05-06 08:48:09 +02002160 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
Willy Tarreau4b103022021-02-12 17:59:10 +01002161 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2162 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002163 goto next_line;
2164 }
2165
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002166 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002167 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02002168 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 74);
2169
2170 ha_alert("parsing [%s:%d]: %s in '.elif' at position %d:\n .elif %s\n %*s\n",
2171 file, linenum, errmsg,
2172 (int)(errptr-args[1]+1), args[1], (int)(newpos+7), "^");
2173
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002174 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01002175 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2176 goto err;
2177 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02002178
2179 if (cond)
2180 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
2181 else
2182 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
2183
Willy Tarreau4b103022021-02-12 17:59:10 +01002184 goto next_line;
2185 }
2186 else if (strcmp(args[0], ".else") == 0) {
Tim Duesterhusf41ea3e2021-05-26 17:45:33 +02002187 if (*args[1]) {
2188 ha_warning("parsing [%s:%d]: Unxpected argument '%s' for '%s'.\n",
2189 file, linenum, args[1], args[0]);
2190 err_code |= ERR_WARN;
2191 }
2192
Willy Tarreau4b103022021-02-12 17:59:10 +01002193 if (!nested_cond_lvl) {
2194 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
2195 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2196 goto err;
2197 }
2198
2199 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2200 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2201 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
2202 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2203 goto err;
2204 }
2205
2206 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2207 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2208 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
2209 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2210 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
2211 } else {
2212 /* otherwise we take the "else" */
2213 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
2214 }
2215 goto next_line;
2216 }
2217 else if (strcmp(args[0], ".endif") == 0) {
Tim Duesterhusf41ea3e2021-05-26 17:45:33 +02002218 if (*args[1]) {
2219 ha_warning("parsing [%s:%d]: Unxpected argument '%s' for '%s'.\n",
2220 file, linenum, args[1], args[0]);
2221 err_code |= ERR_WARN;
2222 }
2223
Willy Tarreau4b103022021-02-12 17:59:10 +01002224 if (!nested_cond_lvl) {
2225 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
Tim Duesterhusf41ea3e2021-05-26 17:45:33 +02002226 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau4b103022021-02-12 17:59:10 +01002227 break;
2228 }
2229 nested_cond_lvl--;
2230 goto next_line;
2231 }
2232 }
2233
2234 if (nested_cond_lvl &&
2235 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
2236 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2237 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
2238 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
2239 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
2240 /* The current block is masked out by the conditions */
2241 goto next_line;
2242 }
2243
Willy Tarreau7190b982021-05-07 08:59:50 +02002244 /* .warning/.error/.notice/.diag */
Willy Tarreau4b103022021-02-12 17:59:10 +01002245 if (*args[0] == '.') {
2246 if (strcmp(args[0], ".alert") == 0) {
Tim Duesterhusf41ea3e2021-05-26 17:45:33 +02002247 if (*args[2]) {
2248 ha_warning("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2249 file, linenum, args[2], args[0]);
2250 err_code |= ERR_WARN;
2251 }
2252
Willy Tarreau4b103022021-02-12 17:59:10 +01002253 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2254 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2255 goto err;
2256 }
2257 else if (strcmp(args[0], ".warning") == 0) {
Tim Duesterhusf41ea3e2021-05-26 17:45:33 +02002258 if (*args[2]) {
2259 ha_warning("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2260 file, linenum, args[2], args[0]);
2261 err_code |= ERR_WARN;
2262 }
2263
Willy Tarreau4b103022021-02-12 17:59:10 +01002264 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2265 err_code |= ERR_WARN;
2266 goto next_line;
2267 }
2268 else if (strcmp(args[0], ".notice") == 0) {
Tim Duesterhusf41ea3e2021-05-26 17:45:33 +02002269 if (*args[2]) {
2270 ha_warning("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2271 file, linenum, args[2], args[0]);
2272 err_code |= ERR_WARN;
2273 }
2274
Willy Tarreau4b103022021-02-12 17:59:10 +01002275 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2276 goto next_line;
2277 }
Willy Tarreau7190b982021-05-07 08:59:50 +02002278 else if (strcmp(args[0], ".diag") == 0) {
Tim Duesterhusf41ea3e2021-05-26 17:45:33 +02002279 if (*args[2]) {
2280 ha_warning("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2281 file, linenum, args[2], args[0]);
2282 err_code |= ERR_WARN;
2283 }
2284
Willy Tarreau7190b982021-05-07 08:59:50 +02002285 ha_diag_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2286 goto next_line;
2287 }
Willy Tarreau4b103022021-02-12 17:59:10 +01002288 else {
2289 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
2290 err_code |= ERR_ALERT | ERR_FATAL;
2291 fatal++;
2292 break;
2293 }
2294 }
2295
Willy Tarreau3842f002009-06-14 11:39:52 +02002296 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002297 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02002298 char *tmp;
2299
Willy Tarreau3842f002009-06-14 11:39:52 +02002300 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002301 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002302 for (arg=0; *args[arg+1]; arg++)
2303 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002304 *tmp = '\0'; // fix the next arg to \0
2305 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002306 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002307 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02002308 kwm = KWM_DEF;
2309 for (arg=0; *args[arg+1]; arg++)
2310 args[arg] = args[arg+1]; // shift args after inversion
2311 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002312
William Dauchyec730982019-10-27 20:08:10 +01002313 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2314 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002315 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002316 strcmp(args[0], "insecure-fork-wanted") != 0 &&
2317 strcmp(args[0], "numa-cpu-mapping") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002318 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002319 "supported only for options, log, busy-polling, "
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002320 "set-dumpable, strict-limits, insecure-fork-wanted "
2321 "and numa-cpu-mapping.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002322 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002323 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002324 }
2325
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002326 /* detect section start */
2327 list_for_each_entry(ics, &sections, list) {
2328 if (strcmp(args[0], ics->section_name) == 0) {
2329 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002330 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002331 cs = ics;
Willy Tarreau51508052021-05-06 10:04:45 +02002332 free(global.cfg_curr_section);
2333 global.cfg_curr_section = strdup(*args[1] ? args[1] : args[0]);
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02002334
2335 if (global.mode & MODE_DIAG) {
2336 check_section_position(args[0], file, linenum,
2337 &non_global_section_parsed);
2338 }
2339
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002340 break;
2341 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002342 }
2343
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002344 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002345 int status;
2346
2347 status = pcs->post_section_parser();
2348 err_code |= status;
2349 if (status & ERR_FATAL)
2350 fatal++;
2351
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002352 if (err_code & ERR_ABORT)
2353 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002354 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002355 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002356
William Lallemandd2ff56d2017-10-16 11:06:50 +02002357 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002358 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002359 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002360 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002361 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002362 int status;
2363
2364 status = cs->section_parser(file, linenum, args, kwm);
2365 err_code |= status;
2366 if (status & ERR_FATAL)
2367 fatal++;
2368
William Lallemandd2ff56d2017-10-16 11:06:50 +02002369 if (err_code & ERR_ABORT)
2370 goto err;
2371 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002372 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002373
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002374 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002375 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2376 file, linenum, (missing_lf + 1));
2377 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002378 }
2379
Willy Tarreau51508052021-05-06 10:04:45 +02002380 ha_free(&global.cfg_curr_section);
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002381 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002382 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002383
Willy Tarreau4b103022021-02-12 17:59:10 +01002384 if (nested_cond_lvl) {
2385 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
2386 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2387 }
Willy Tarreau8a022d52021-04-27 20:29:11 +02002388
2389 if (*initial_cwd && chdir(initial_cwd) == -1) {
2390 ha_alert("Impossible to get back to initial directory '%s' : %s\n", initial_cwd, strerror(errno));
2391 err_code |= ERR_ALERT | ERR_FATAL;
2392 }
2393
William Lallemandd2ff56d2017-10-16 11:06:50 +02002394err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002395 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01002396 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002397 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002398 free(outline);
Willy Tarreau51508052021-05-06 10:04:45 +02002399 global.cfg_curr_line = 0;
2400 global.cfg_curr_file = NULL;
2401
Willy Tarreauda543e12021-04-27 18:30:28 +02002402 if (f)
2403 fclose(f);
2404
Willy Tarreau058e9072009-07-20 09:30:05 +02002405 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002406}
2407
Willy Tarreau64ab6072014-09-16 12:17:36 +02002408/* This function propagates processes from frontend <from> to backend <to> so
2409 * that it is always guaranteed that a backend pointed to by a frontend is
2410 * bound to all of its processes. After that, if the target is a "listen"
2411 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002412 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002413 * checked first to ensure that <to> is already bound to all processes of
2414 * <from>, there is no risk of looping and we ensure to follow the shortest
2415 * path to the destination.
2416 *
2417 * It is possible to set <to> to NULL for the first call so that the function
2418 * takes care of visiting the initial frontend in <from>.
2419 *
2420 * It is important to note that the function relies on the fact that all names
2421 * have already been resolved.
2422 */
2423void propagate_processes(struct proxy *from, struct proxy *to)
2424{
2425 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002426
2427 if (to) {
2428 /* check whether we need to go down */
2429 if (from->bind_proc &&
2430 (from->bind_proc & to->bind_proc) == from->bind_proc)
2431 return;
2432
2433 if (!from->bind_proc && !to->bind_proc)
2434 return;
2435
2436 to->bind_proc = from->bind_proc ?
2437 (to->bind_proc | from->bind_proc) : 0;
2438
2439 /* now propagate down */
2440 from = to;
2441 }
2442
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002443 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002444 return;
2445
Willy Tarreauc3914d42020-09-24 08:39:22 +02002446 if (from->disabled)
Willy Tarreauf6b70012014-12-18 14:00:43 +01002447 return;
2448
Willy Tarreau64ab6072014-09-16 12:17:36 +02002449 /* default_backend */
2450 if (from->defbe.be)
2451 propagate_processes(from, from->defbe.be);
2452
2453 /* use_backend */
2454 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002455 if (rule->dynamic)
2456 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002457 to = rule->be.backend;
2458 propagate_processes(from, to);
2459 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002460}
2461
Willy Tarreau6bfc10c2021-05-14 08:30:46 +02002462#if defined(USE_THREAD) && defined(__linux__) && defined USE_CPU_AFFINITY
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002463/* filter directory name of the pattern node<X> */
2464static int numa_filter(const struct dirent *dir)
2465{
2466 char *endptr;
2467
2468 /* dir name must start with "node" prefix */
2469 if (strncmp(dir->d_name, "node", 4))
2470 return 0;
2471
2472 /* dir name must be at least 5 characters long */
2473 if (!dir->d_name[4])
2474 return 0;
2475
2476 /* dir name must end with a numeric id */
2477 if (strtol(&dir->d_name[4], &endptr, 10) < 0 || *endptr)
2478 return 0;
2479
2480 /* all tests succeeded */
2481 return 1;
2482}
2483
2484/* Parse a linux cpu map string representing to a numeric cpu mask map
2485 * The cpu map string is a list of 4-byte hex strings separated by commas, with
2486 * most-significant byte first, one bit per cpu number.
2487 */
2488static void parse_cpumap(char *cpumap_str, struct hap_cpuset *cpu_set)
2489{
2490 unsigned long cpumap;
2491 char *start, *endptr, *comma;
2492 int i, j;
2493
2494 ha_cpuset_zero(cpu_set);
2495
2496 i = 0;
2497 do {
2498 /* reverse-search for a comma, parse the string after the comma
2499 * or at the beginning if no comma found
2500 */
2501 comma = strrchr(cpumap_str, ',');
2502 start = comma ? comma + 1 : cpumap_str;
2503
2504 cpumap = strtoul(start, &endptr, 16);
2505 for (j = 0; cpumap; cpumap >>= 1, ++j) {
2506 if (cpumap & 0x1)
2507 ha_cpuset_set(cpu_set, j + i * 32);
2508 }
2509
2510 if (comma)
2511 *comma = '\0';
2512 ++i;
2513 } while (comma);
2514}
2515
2516/* Read the first line of a file from <path> into the trash buffer.
2517 * Returns 0 on success, otherwise non-zero.
2518 */
2519static int read_file_to_trash(const char *path)
2520{
2521 FILE *file;
2522 int ret = 1;
2523
2524 file = fopen(path, "r");
2525 if (file) {
2526 if (fgets(trash.area, trash.size, file))
2527 ret = 0;
2528
2529 fclose(file);
2530 }
2531
2532 return ret;
2533}
2534
2535/* Inspect the cpu topology of the machine on startup. If a multi-socket
2536 * machine is detected, try to bind on the first node with active cpu. This is
2537 * done to prevent an impact on the overall performance when the topology of
2538 * the machine is unknown. This function is not called if one of the conditions
2539 * is met :
2540 * - a non-null nbthread directive is active
2541 * - a restrictive cpu-map directive is active
2542 * - a restrictive affinity is already applied, for example via taskset
2543 *
2544 * Returns the count of cpus selected. If no automatic binding was required or
2545 * an error occurred and the topology is unknown, 0 is returned.
2546 */
2547static int numa_detect_topology()
2548{
2549 struct dirent **node_dirlist;
2550 int node_dirlist_size;
2551
2552 struct hap_cpuset active_cpus, node_cpu_set;
2553 const char *parse_cpu_set_args[2];
2554 char cpumap_path[PATH_MAX];
2555 char *err = NULL;
2556
2557 /* node_cpu_set count is used as return value */
2558 ha_cpuset_zero(&node_cpu_set);
2559
2560 /* 1. count the sysfs node<X> directories */
Willy Tarreau07bf21c2021-04-23 19:09:16 +02002561 node_dirlist = NULL;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002562 node_dirlist_size = scandir(NUMA_DETECT_SYSTEM_SYSFS_PATH"/node", &node_dirlist, numa_filter, alphasort);
2563 if (node_dirlist_size <= 1)
2564 goto free_scandir_entries;
2565
2566 /* 2. read and parse the list of currently online cpu */
2567 if (read_file_to_trash(NUMA_DETECT_SYSTEM_SYSFS_PATH"/cpu/online")) {
2568 ha_notice("Cannot read online CPUs list, will not try to refine binding\n");
2569 goto free_scandir_entries;
2570 }
2571
2572 parse_cpu_set_args[0] = trash.area;
2573 parse_cpu_set_args[1] = "\0";
2574 if (parse_cpu_set(parse_cpu_set_args, &active_cpus, 1, &err)) {
2575 ha_notice("Cannot read online CPUs list: '%s'. Will not try to refine binding\n", err);
2576 free(err);
2577 goto free_scandir_entries;
2578 }
2579
2580 /* 3. loop through nodes dirs and find the first one with active cpus */
2581 while (node_dirlist_size--) {
2582 const char *node = node_dirlist[node_dirlist_size]->d_name;
2583 ha_cpuset_zero(&node_cpu_set);
2584
2585 snprintf(cpumap_path, PATH_MAX, "%s/node/%s/cpumap",
2586 NUMA_DETECT_SYSTEM_SYSFS_PATH, node);
2587
2588 if (read_file_to_trash(cpumap_path)) {
2589 ha_notice("Cannot read CPUs list of '%s', will not select them to refine binding\n", node);
2590 free(node_dirlist[node_dirlist_size]);
2591 continue;
2592 }
2593
2594 parse_cpumap(trash.area, &node_cpu_set);
2595 ha_cpuset_and(&node_cpu_set, &active_cpus);
2596
2597 /* 5. set affinity on the first found node with active cpus */
2598 if (!ha_cpuset_count(&node_cpu_set)) {
2599 free(node_dirlist[node_dirlist_size]);
2600 continue;
2601 }
2602
2603 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));
2604 if (sched_setaffinity(getpid(), sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2605 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2606
2607 /* clear the cpuset used as return value */
2608 ha_cpuset_zero(&node_cpu_set);
2609 }
2610
2611 free(node_dirlist[node_dirlist_size]);
2612 break;
2613 }
2614
2615 free_scandir_entries:
2616 while (node_dirlist_size-- > 0)
2617 free(node_dirlist[node_dirlist_size]);
2618 free(node_dirlist);
2619
2620 return ha_cpuset_count(&node_cpu_set);
2621}
2622#endif /* __linux__ && USE_CPU_AFFINITY */
2623
Willy Tarreaubb925012009-07-23 13:36:36 +02002624/*
2625 * Returns the error code, 0 if OK, or any combination of :
2626 * - ERR_ABORT: must abort ASAP
2627 * - ERR_FATAL: we can continue parsing but not start the service
2628 * - ERR_WARN: a warning has been emitted
2629 * - ERR_ALERT: an alert has been emitted
2630 * Only the two first ones can stop processing, the two others are just
2631 * indicators.
2632 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002633int check_config_validity()
2634{
2635 int cfgerr = 0;
2636 struct proxy *curproxy = NULL;
Emeric Brunfe0979f2022-08-18 15:53:21 +02002637 struct proxy *init_proxies_list = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002638 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002639 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002640 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002641 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002642 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002643 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002644 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01002645 struct resolvers *curr_resolvers = NULL;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002646 int i;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002647
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002648 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002649 /*
2650 * Now, check for the integrity of all that we have collected.
2651 */
2652
2653 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002654 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002655
Willy Tarreau193b8c62012-11-22 00:17:38 +01002656 if (!global.tune.max_http_hdr)
2657 global.tune.max_http_hdr = MAX_HTTP_HDR;
2658
2659 if (!global.tune.cookie_len)
2660 global.tune.cookie_len = CAPTURE_LEN;
2661
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002662 if (!global.tune.requri_len)
2663 global.tune.requri_len = REQURI_LEN;
2664
Willy Tarreau149ab772019-01-26 14:27:06 +01002665 if (!global.nbthread) {
2666 /* nbthread not set, thus automatic. In this case, and only if
2667 * running on a single process, we enable the same number of
2668 * threads as the number of CPUs the process is bound to. This
2669 * allows to easily control the number of threads using taskset.
2670 */
2671 global.nbthread = 1;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002672
Willy Tarreau149ab772019-01-26 14:27:06 +01002673#if defined(USE_THREAD)
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002674 if (global.nbproc == 1) {
2675 int numa_cores = 0;
2676#if defined(__linux__) && defined USE_CPU_AFFINITY
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002677 if (global.numa_cpu_mapping && !thread_cpu_mask_forced())
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002678 numa_cores = numa_detect_topology();
2679#endif
2680 global.nbthread = numa_cores ? numa_cores :
2681 thread_cpus_enabled_at_boot;
Willy Tarreaufea6f522023-03-09 11:47:55 +01002682
2683 if (global.nbthread > MAX_THREADS) {
2684 ha_diag_warning("nbthread not set, found %d CPUs, limiting to %d threads. Please set nbthreads in the global section to silence this warning.\n",
2685 global.nbthread, MAX_THREADS);
2686 global.nbthread = MAX_THREADS;
2687 }
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002688 }
Willy Tarreau149ab772019-01-26 14:27:06 +01002689 all_threads_mask = nbits(global.nbthread);
2690#endif
2691 }
2692
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002693 if (global.nbproc > 1 && global.nbthread > 1) {
2694 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2695 err_code |= ERR_ALERT | ERR_FATAL;
2696 goto out;
2697 }
2698
Willy Tarreaubafbe012017-11-24 17:34:44 +01002699 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002700
Willy Tarreaubafbe012017-11-24 17:34:44 +01002701 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002702
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002703 /* Post initialisation of the users and groups lists. */
2704 err_code = userlist_postinit();
2705 if (err_code != ERR_NONE)
2706 goto out;
2707
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002708 /* first, we will invert the proxy list order */
2709 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002710 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002711 struct proxy *next;
2712
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002713 next = proxies_list->next;
2714 proxies_list->next = curproxy;
2715 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002716 if (!next)
2717 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002718 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002719 }
2720
Emeric Brunfe0979f2022-08-18 15:53:21 +02002721 /* starting to initialize the main proxies list */
2722 init_proxies_list = proxies_list;
2723
2724init_proxies_list_stage1:
2725 for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002726 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002727 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002728 struct sticking_rule *mrule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002729 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002730 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002731 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002732
Willy Tarreau050536d2012-10-04 08:47:34 +02002733 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002734 /* proxy ID not set, use automatic numbering with first
2735 * spare entry starting with next_pxid.
2736 */
2737 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2738 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2739 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002740 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002741 next_pxid++;
2742
Willy Tarreau95d08102021-08-26 15:59:44 +02002743 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize >= (256 << 20) && ONLY_ONCE()) {
2744 ha_alert("global.tune.bufsize must be below 256 MB when HTTP is in use (current value = %d).\n",
2745 global.tune.bufsize);
2746 cfgerr++;
2747 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02002748
Willy Tarreauc3914d42020-09-24 08:39:22 +02002749 if (curproxy->disabled) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002750 /* ensure we don't keep listeners uselessly bound. We
2751 * can't disable their listeners yet (fdtab not
2752 * allocated yet) but let's skip them.
2753 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002754 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002755 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002756 curproxy->table->peers.p = NULL;
2757 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002758 continue;
2759 }
2760
Willy Tarreau102df612014-05-07 23:56:38 +02002761 /* Check multi-process mode compatibility for the current proxy */
2762
2763 if (curproxy->bind_proc) {
2764 /* an explicit bind-process was specified, let's check how many
2765 * processes remain.
2766 */
David Carliere6c39412015-07-02 07:00:17 +00002767 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002768
Willy Tarreaua38a7172019-02-02 17:11:28 +01002769 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002770 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002771 ha_warning("Proxy '%s': the process specified on the 'bind-process' directive refers to a process number that is higher than global.nbproc. The proxy has been forced to run on process 1 only.\n", curproxy->id);
Willy Tarreau102df612014-05-07 23:56:38 +02002772 curproxy->bind_proc = 1;
2773 }
2774 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002775 ha_warning("Proxy '%s': all processes specified on the 'bind-process' directive refer to numbers that are all higher than global.nbproc. The directive was ignored and the proxy will run on all processes.\n", curproxy->id);
Willy Tarreau102df612014-05-07 23:56:38 +02002776 curproxy->bind_proc = 0;
2777 }
2778 }
2779
Willy Tarreau3d209582014-05-09 17:06:11 +02002780 /* check and reduce the bind-proc of each listener */
2781 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2782 unsigned long mask;
2783
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002784 /* HTTP frontends with "h2" as ALPN/NPN will work in
2785 * HTTP/2 and absolutely require buffers 16kB or larger.
2786 */
2787#ifdef USE_OPENSSL
2788 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2789#ifdef OPENSSL_NPN_NEGOTIATED
2790 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002791 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002792 ha_alert("config : HTTP frontend '%s' enables HTTP/2 via NPN at [%s:%d], so global.tune.bufsize must be at least 16384 bytes (%d now).\n",
2793 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002794 cfgerr++;
2795 }
2796#endif
2797#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2798 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002799 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002800 ha_alert("config : HTTP frontend '%s' enables HTTP/2 via ALPN at [%s:%d], so global.tune.bufsize must be at least 16384 bytes (%d now).\n",
2801 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002802 cfgerr++;
2803 }
2804#endif
2805 } /* HTTP && bufsize < 16384 */
2806#endif
2807
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002808 /* detect and address thread affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002809 mask = thread_mask(bind_conf->settings.bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002810 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002811 unsigned long new_mask = 0;
2812
2813 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002814 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002815 mask >>= global.nbthread;
2816 }
2817
Willy Tarreaue26993c2020-09-03 07:18:55 +02002818 bind_conf->settings.bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002819 ha_warning("Proxy '%s': the thread range specified on the 'process' directive of 'bind %s' at [%s:%d] only refers to thread numbers out of the range defined by the global 'nbthread' directive. The thread numbers were remapped to existing threads instead (mask 0x%lx).\n",
2820 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2821 }
2822
2823 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002824 mask = proc_mask(bind_conf->settings.bind_proc) & proc_mask(curproxy->bind_proc);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002825 if (!(mask & all_proc_mask)) {
2826 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02002827 nbproc = my_popcountl(bind_conf->settings.bind_proc);
2828 bind_conf->settings.bind_proc = proc_mask(bind_conf->settings.bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002829
Willy Tarreaue26993c2020-09-03 07:18:55 +02002830 if (!bind_conf->settings.bind_proc && nbproc == 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002831 ha_warning("Proxy '%s': the process number specified on the 'process' directive of 'bind %s' at [%s:%d] refers to a process not covered by the proxy. This has been fixed by forcing it to run on the proxy's first process only.\n",
2832 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002833 bind_conf->settings.bind_proc = mask & ~(mask - 1);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002834 }
Willy Tarreaue26993c2020-09-03 07:18:55 +02002835 else if (!bind_conf->settings.bind_proc && nbproc > 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002836 ha_warning("Proxy '%s': the process range specified on the 'process' directive of 'bind %s' at [%s:%d] only refers to processes not covered by the proxy. The directive was ignored so that all of the proxy's processes are used.\n",
2837 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002838 bind_conf->settings.bind_proc = 0;
Willy Tarreaua36b3242019-02-02 13:14:34 +01002839 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002840 }
2841 }
2842
Willy Tarreauff01a212009-03-15 13:46:16 +01002843 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01002844 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002845 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002846 break;
2847
2848 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002849 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002850 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002851
2852 case PR_MODE_CLI:
2853 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2854 break;
Emeric Brunfe0979f2022-08-18 15:53:21 +02002855
Emeric Brun54932b42020-07-07 09:43:24 +02002856 case PR_MODE_SYSLOG:
Emeric Brunfe0979f2022-08-18 15:53:21 +02002857 /* this mode is initialized as the classic tcp proxy */
2858 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2859 break;
2860
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002861 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02002862 case PR_MODES:
2863 /* should not happen, bug gcc warn missing switch statement */
Emeric Brunfe0979f2022-08-18 15:53:21 +02002864 ha_alert("config: %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 +02002865 proxy_type_str(curproxy), curproxy->id);
2866 cfgerr++;
2867 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002868 }
2869
Willy Tarreau4975d142021-03-13 11:00:33 +01002870 if (curproxy != global.cli_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002871 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2872 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002873 err_code |= ERR_WARN;
2874 }
2875
Willy Tarreau77e0dae2020-10-14 15:44:27 +02002876 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002877 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002878 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002879 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2880 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002881 cfgerr++;
2882 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002883#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002884 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002885 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2886 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002887 cfgerr++;
2888 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002889#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002890 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002891 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2892 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002893 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002894 }
2895 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002896 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002897 /* If no LB algo is set in a backend, and we're not in
2898 * transparent mode, dispatch mode nor proxy mode, we
2899 * want to use balance roundrobin by default.
2900 */
2901 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2902 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002903 }
2904 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002905
Willy Tarreau1620ec32011-08-06 17:05:02 +02002906 if (curproxy->options & PR_O_DISPATCH)
2907 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2908 else if (curproxy->options & PR_O_HTTP_PROXY)
2909 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2910 else if (curproxy->options & PR_O_TRANSP)
2911 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002912
Christopher Faulete5870d82020-04-15 11:32:03 +02002913 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2914 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2915 proxy_type_str(curproxy), curproxy->id);
2916 err_code |= ERR_WARN;
2917 }
2918
2919 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002920 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002921 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002922 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2923 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002924 err_code |= ERR_WARN;
2925 curproxy->options &= ~PR_O_DISABLE404;
2926 }
2927 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002928 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2929 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002930 err_code |= ERR_WARN;
2931 curproxy->options &= ~PR_O2_CHK_SNDST;
2932 }
Willy Tarreauef781042010-01-27 11:53:01 +01002933 }
2934
Simon Horman98637e52014-06-20 12:30:16 +09002935 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2936 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002937 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2938 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002939 cfgerr++;
2940 }
2941 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002942 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2943 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002944 cfgerr++;
2945 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002946 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2947 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2948 curproxy->id, "option external-check");
2949 err_code |= ERR_WARN;
2950 }
Simon Horman98637e52014-06-20 12:30:16 +09002951 }
2952
Simon Horman64e34162015-02-06 11:11:57 +09002953 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002954 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002955 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2956 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2957 "'email-alert myhostname', or 'email-alert to' "
2958 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2959 "to be present).\n",
2960 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002961 err_code |= ERR_WARN;
2962 free_email_alert(curproxy);
2963 }
2964 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002965 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002966 }
2967
Simon Horman98637e52014-06-20 12:30:16 +09002968 if (curproxy->check_command) {
2969 int clear = 0;
2970 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002971 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2972 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002973 err_code |= ERR_WARN;
2974 clear = 1;
2975 }
2976 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002977 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2978 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002979 cfgerr++;
2980 }
2981 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002982 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09002983 }
2984 }
2985
2986 if (curproxy->check_path) {
2987 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002988 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2989 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002990 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002991 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09002992 }
2993 }
2994
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002995 /* if a default backend was specified, let's find it */
2996 if (curproxy->defbe.name) {
2997 struct proxy *target;
2998
Willy Tarreauafb39922015-05-26 12:04:09 +02002999 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01003000 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003001 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
3002 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003003 cfgerr++;
3004 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003005 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
3006 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02003007 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02003008 } else if (target->mode != curproxy->mode &&
3009 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
3010
Christopher Faulet767a84b2017-11-24 16:50:31 +01003011 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
3012 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
3013 curproxy->conf.file, curproxy->conf.line,
3014 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
3015 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02003016 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01003017 } else {
3018 free(curproxy->defbe.name);
3019 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01003020 /* Emit a warning if this proxy also has some servers */
3021 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003022 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
3023 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01003024 err_code |= ERR_WARN;
3025 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02003026 }
3027 }
3028
Willy Tarreau55ea7572007-06-17 19:56:27 +02003029 /* find the target proxy for 'use_backend' rules */
3030 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02003031 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003032 struct logformat_node *node;
3033 char *pxname;
3034
3035 /* Try to parse the string as a log format expression. If the result
3036 * of the parsing is only one entry containing a simple string, then
3037 * it's a standard string corresponding to a static rule, thus the
3038 * parsing is cancelled and be.name is restored to be resolved.
3039 */
3040 pxname = rule->be.name;
3041 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01003042 curproxy->conf.args.ctx = ARGC_UBK;
3043 curproxy->conf.args.file = rule->file;
3044 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003045 err = NULL;
3046 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003047 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
3048 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003049 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003050 cfgerr++;
3051 continue;
3052 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003053 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
3054
3055 if (!LIST_ISEMPTY(&rule->be.expr)) {
3056 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
3057 rule->dynamic = 1;
3058 free(pxname);
3059 continue;
3060 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02003061 /* Only one element in the list, a simple string: free the expression and
3062 * fall back to static rule
3063 */
Willy Tarreau2b718102021-04-21 07:32:39 +02003064 LIST_DELETE(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01003065 free(node->arg);
3066 free(node);
3067 }
3068
3069 rule->dynamic = 0;
3070 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003071
Willy Tarreauafb39922015-05-26 12:04:09 +02003072 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01003073 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003074 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
3075 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003076 cfgerr++;
3077 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003078 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
3079 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003080 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02003081 } else if (target->mode != curproxy->mode &&
3082 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
3083
Christopher Faulet767a84b2017-11-24 16:50:31 +01003084 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
3085 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
3086 curproxy->conf.file, curproxy->conf.line,
3087 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
3088 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02003089 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003090 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003091 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02003092 rule->be.backend = target;
3093 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003094 err_code |= warnif_tcp_http_cond(curproxy, rule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003095 }
3096
Willy Tarreau64ab6072014-09-16 12:17:36 +02003097 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003098 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02003099 struct server *target;
3100 struct logformat_node *node;
3101 char *server_name;
3102
3103 /* We try to parse the string as a log format expression. If the result of the parsing
3104 * is only one entry containing a single string, then it's a standard string corresponding
3105 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
3106 */
3107 server_name = srule->srv.name;
3108 LIST_INIT(&srule->expr);
3109 curproxy->conf.args.ctx = ARGC_USRV;
3110 err = NULL;
3111 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
3112 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
3113 srule->file, srule->line, server_name, err);
3114 free(err);
3115 cfgerr++;
3116 continue;
3117 }
3118 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
3119
3120 if (!LIST_ISEMPTY(&srule->expr)) {
3121 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
3122 srule->dynamic = 1;
3123 free(server_name);
3124 continue;
3125 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02003126 /* Only one element in the list, a simple string: free the expression and
3127 * fall back to static rule
3128 */
Willy Tarreau2b718102021-04-21 07:32:39 +02003129 LIST_DELETE(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02003130 free(node->arg);
3131 free(node);
3132 }
3133
3134 srule->dynamic = 0;
3135 srule->srv.name = server_name;
3136 target = findserver(curproxy, srule->srv.name);
Christopher Faulet581db2b2021-03-26 10:02:46 +01003137 err_code |= warnif_tcp_http_cond(curproxy, srule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003138
3139 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003140 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
3141 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003142 cfgerr++;
3143 continue;
3144 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01003145 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003146 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003147 }
3148
Emeric Brunb982a3d2010-01-04 15:45:53 +01003149 /* find the target table for 'stick' rules */
3150 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003151 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003152
Emeric Brun1d33b292010-01-04 15:47:17 +01003153 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
3154 if (mrule->flags & STK_IS_STORE)
3155 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3156
Emeric Brunb982a3d2010-01-04 15:45:53 +01003157 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003158 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003159 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003160 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003161
3162 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003163 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003164 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003165 cfgerr++;
3166 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003167 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003168 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3169 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003170 cfgerr++;
3171 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003172 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01003173 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
3174 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01003175 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01003176 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003177 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003178 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003179 mrule->table.t = target;
3180 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07003181 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003182 if (!in_proxies_list(target->proxies_list, curproxy)) {
3183 curproxy->next_stkt_ref = target->proxies_list;
3184 target->proxies_list = curproxy;
3185 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003186 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003187 err_code |= warnif_tcp_http_cond(curproxy, mrule->cond);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003188 }
3189
3190 /* find the target table for 'store response' rules */
3191 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003192 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003193
Emeric Brun1d33b292010-01-04 15:47:17 +01003194 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3195
Emeric Brunb982a3d2010-01-04 15:45:53 +01003196 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003197 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003198 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003199 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003200
3201 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003202 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003203 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003204 cfgerr++;
3205 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003206 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003207 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3208 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003209 cfgerr++;
3210 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003211 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01003212 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
3213 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01003214 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01003215 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003216 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003217 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003218 mrule->table.t = target;
3219 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07003220 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003221 if (!in_proxies_list(target->proxies_list, curproxy)) {
3222 curproxy->next_stkt_ref = target->proxies_list;
3223 target->proxies_list = curproxy;
3224 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003225 }
3226 }
3227
Christopher Faulet42c6cf92021-03-25 17:19:04 +01003228 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
3229 cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code);
3230 cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code);
3231 cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code);
3232 cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code);
3233 cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code);
3234 cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code);
3235 cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003236
Christopher Faulet5eef0182021-03-31 17:13:49 +02003237 /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */
3238 if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) {
3239 if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP)
3240 ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. "
3241 "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n",
3242 curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy));
3243 }
3244
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003245 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003246 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003247
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003248 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003249 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003250 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003251 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003252 break;
3253 }
3254 }
3255
3256 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003257 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003258 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01003259 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003260 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003261 cfgerr++;
3262 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003263 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003264 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003265 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003266 }
Emeric Brun32da3c42010-09-23 18:39:19 +02003267 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003268 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
3269 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003270 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003271 cfgerr++;
3272 }
3273 }
3274
Simon Horman9dc49962015-01-30 11:22:59 +09003275
3276 if (curproxy->email_alert.mailers.name) {
3277 struct mailers *curmailers = mailers;
3278
3279 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003280 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09003281 break;
Simon Horman9dc49962015-01-30 11:22:59 +09003282 }
Simon Horman9dc49962015-01-30 11:22:59 +09003283 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003284 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
3285 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09003286 free_email_alert(curproxy);
3287 cfgerr++;
3288 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02003289 else {
3290 err = NULL;
3291 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003292 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003293 free(err);
3294 cfgerr++;
3295 }
3296 }
Simon Horman9dc49962015-01-30 11:22:59 +09003297 }
3298
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003299 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01003300 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003301 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003302 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
3303 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003304 cfgerr++;
3305 goto out_uri_auth_compat;
3306 }
3307
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003308 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003309 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003310 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003311 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003312 struct act_rule *rule;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003313 i = 0;
3314
Willy Tarreau95fa4692010-02-01 13:05:50 +01003315 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
3316 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003317
3318 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003319 uri_auth_compat_req[i++] = "realm";
3320 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
3321 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003322
Willy Tarreau95fa4692010-02-01 13:05:50 +01003323 uri_auth_compat_req[i++] = "unless";
3324 uri_auth_compat_req[i++] = "{";
3325 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
3326 uri_auth_compat_req[i++] = "}";
3327 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003328
Willy Tarreauff011f22011-01-06 17:51:27 +01003329 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
3330 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003331 cfgerr++;
3332 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003333 }
3334
Willy Tarreau2b718102021-04-21 07:32:39 +02003335 LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01003336
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003337 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003338 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003339 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003340 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003341 }
3342out_uri_auth_compat:
3343
Dragan Dosen43885c72015-10-01 13:18:13 +02003344 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02003345 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02003346 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
3347 if (!curproxy->conf.logformat_sd_string) {
3348 /* set the default logformat_sd_string */
3349 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
3350 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003351 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02003352 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003353 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02003354
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003355 /* compile the log format */
3356 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02003357 if (curproxy->conf.logformat_string != default_http_log_format &&
3358 curproxy->conf.logformat_string != default_tcp_log_format &&
3359 curproxy->conf.logformat_string != clf_http_log_format)
3360 free(curproxy->conf.logformat_string);
3361 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003362 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02003363 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003364
3365 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3366 free(curproxy->conf.logformat_sd_string);
3367 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003368 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003369 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003370 }
3371
Willy Tarreau62a61232013-04-12 18:13:46 +02003372 if (curproxy->conf.logformat_string) {
3373 curproxy->conf.args.ctx = ARGC_LOG;
3374 curproxy->conf.args.file = curproxy->conf.lfs_file;
3375 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003376 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003377 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
3378 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003379 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003380 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3381 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003382 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003383 cfgerr++;
3384 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003385 curproxy->conf.args.file = NULL;
3386 curproxy->conf.args.line = 0;
3387 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003388
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003389 if (curproxy->conf.logformat_sd_string) {
3390 curproxy->conf.args.ctx = ARGC_LOGSD;
3391 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3392 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003393 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003394 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
3395 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003396 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003397 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3398 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003399 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003400 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003401 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003402 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3403 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003404 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003405 cfgerr++;
3406 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003407 curproxy->conf.args.file = NULL;
3408 curproxy->conf.args.line = 0;
3409 }
3410
Willy Tarreau62a61232013-04-12 18:13:46 +02003411 if (curproxy->conf.uniqueid_format_string) {
Christopher Faulet5f802b32021-10-13 17:22:17 +02003412 int where = 0;
3413
Willy Tarreau62a61232013-04-12 18:13:46 +02003414 curproxy->conf.args.ctx = ARGC_UIF;
3415 curproxy->conf.args.file = curproxy->conf.uif_file;
3416 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003417 err = NULL;
Christopher Faulet5f802b32021-10-13 17:22:17 +02003418 if (curproxy->cap & PR_CAP_FE)
3419 where |= SMP_VAL_FE_HRQ_HDR;
3420 if (curproxy->cap & PR_CAP_BE)
3421 where |= SMP_VAL_BE_HRQ_HDR;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003422 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
Christopher Faulet5f802b32021-10-13 17:22:17 +02003423 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES, where, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003424 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3425 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003426 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003427 cfgerr++;
3428 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003429 curproxy->conf.args.file = NULL;
3430 curproxy->conf.args.line = 0;
3431 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003432
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003433 /* only now we can check if some args remain unresolved.
3434 * This must be done after the users and groups resolution.
3435 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01003436 err = NULL;
3437 i = smp_resolve_args(curproxy, &err);
3438 cfgerr += i;
3439 if (i) {
3440 indent_msg(&err, 8);
3441 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
3442 ha_free(&err);
3443 } else
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003444 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003445
Willy Tarreau2738a142006-07-08 17:28:09 +02003446 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003447 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003448 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003449 (!curproxy->timeout.connect ||
3450 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003451 ha_warning("config : missing timeouts for %s '%s'.\n"
3452 " | While not properly invalid, you will certainly encounter various problems\n"
3453 " | with such a configuration. To fix this, please ensure that all following\n"
3454 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3455 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003456 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003457 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003458
Willy Tarreau1fa31262007-12-03 00:36:16 +01003459 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3460 * We must still support older configurations, so let's find out whether those
3461 * parameters have been set or must be copied from contimeouts.
3462 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01003463 if (!curproxy->timeout.tarpit)
3464 curproxy->timeout.tarpit = curproxy->timeout.connect;
3465 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
3466 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003467
Christopher Faulete5870d82020-04-15 11:32:03 +02003468 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003469 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
3470 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003471 err_code |= ERR_WARN;
3472 }
3473
Willy Tarreau193b8c62012-11-22 00:17:38 +01003474 /* ensure that cookie capture length is not too large */
3475 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003476 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3477 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003478 err_code |= ERR_WARN;
3479 curproxy->capture_len = global.tune.cookie_len - 1;
3480 }
3481
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003482 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003483 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003484 curproxy->req_cap_pool = create_pool("ptrcap",
3485 curproxy->nb_req_cap * sizeof(char *),
3486 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003487 }
3488
3489 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003490 curproxy->rsp_cap_pool = create_pool("ptrcap",
3491 curproxy->nb_rsp_cap * sizeof(char *),
3492 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003493 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003494
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003495 switch (curproxy->load_server_state_from_file) {
3496 case PR_SRV_STATE_FILE_UNSPEC:
3497 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3498 break;
3499 case PR_SRV_STATE_FILE_GLOBAL:
3500 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003501 ha_warning("config : backend '%s' configured to load server state file from global section 'server-state-file' directive. Unfortunately, 'server-state-file' is not set!\n",
3502 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003503 err_code |= ERR_WARN;
3504 }
3505 break;
3506 }
3507
Willy Tarreaubaaee002006-06-26 02:48:02 +02003508 /* first, we will invert the servers list order */
3509 newsrv = NULL;
3510 while (curproxy->srv) {
3511 struct server *next;
3512
3513 next = curproxy->srv->next;
3514 curproxy->srv->next = newsrv;
3515 newsrv = curproxy->srv;
3516 if (!next)
3517 break;
3518 curproxy->srv = next;
3519 }
3520
Willy Tarreau17edc812014-01-03 12:14:34 +01003521 /* Check that no server name conflicts. This causes trouble in the stats.
3522 * We only emit a warning for the first conflict affecting each server,
3523 * in order to avoid combinatory explosion if all servers have the same
3524 * name. We do that only for servers which do not have an explicit ID,
3525 * because these IDs were made also for distinguishing them and we don't
3526 * want to annoy people who correctly manage them.
3527 */
3528 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3529 struct server *other_srv;
3530
3531 if (newsrv->puid)
3532 continue;
3533
3534 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3535 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003536 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 +01003537 newsrv->conf.file, newsrv->conf.line,
3538 proxy_type_str(curproxy), curproxy->id,
3539 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003540 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003541 break;
3542 }
3543 }
3544 }
3545
Willy Tarreaudd701652010-05-25 23:03:02 +02003546 /* assign automatic UIDs to servers which don't have one yet */
3547 next_id = 1;
3548 newsrv = curproxy->srv;
3549 while (newsrv != NULL) {
3550 if (!newsrv->puid) {
3551 /* server ID not set, use automatic numbering with first
3552 * spare entry starting with next_svid.
3553 */
3554 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3555 newsrv->conf.id.key = newsrv->puid = next_id;
3556 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
3557 }
Amaury Denoyelle50779ae2021-06-14 17:04:25 +02003558 newsrv->conf.name.key = newsrv->id;
3559 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
3560
Willy Tarreaudd701652010-05-25 23:03:02 +02003561 next_id++;
3562 newsrv = newsrv->next;
3563 }
3564
Willy Tarreau20697042007-11-15 23:26:18 +01003565 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003566 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003567
Willy Tarreau62c3be22012-01-20 13:12:32 +01003568 /*
3569 * If this server supports a maxconn parameter, it needs a dedicated
3570 * tasks to fill the emptied slots when a connection leaves.
3571 * Also, resolve deferred tracking dependency if needed.
3572 */
3573 newsrv = curproxy->srv;
3574 while (newsrv != NULL) {
3575 if (newsrv->minconn > newsrv->maxconn) {
3576 /* Only 'minconn' was specified, or it was higher than or equal
3577 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3578 * this will avoid further useless expensive computations.
3579 */
3580 newsrv->maxconn = newsrv->minconn;
3581 } else if (newsrv->maxconn && !newsrv->minconn) {
3582 /* minconn was not specified, so we set it to maxconn */
3583 newsrv->minconn = newsrv->maxconn;
3584 }
3585
William Dauchyf6370442020-11-14 19:25:33 +01003586 /* this will also properly set the transport layer for
3587 * prod and checks
3588 * if default-server have use_ssl, prerare ssl init
3589 * without activating it */
3590 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
Christopher Faulet7cbd1562021-12-01 09:50:41 +01003591 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3592 ((newsrv->flags & SRV_F_DEFSRV_USE_SSL) && newsrv->use_ssl != 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003593 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3594 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3595 }
Emeric Brun94324a42012-10-11 14:00:19 +02003596
Willy Tarreau034c88c2017-01-23 23:36:45 +01003597 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3598 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3599 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3600 ha_warning("parsing [%s:%d] : %s '%s': server '%s' 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",
3601 newsrv->conf.file, newsrv->conf.line,
3602 proxy_type_str(curproxy), curproxy->id,
3603 newsrv->id);
3604
Willy Tarreau62c3be22012-01-20 13:12:32 +01003605 if (newsrv->trackit) {
3606 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003607 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003608 char *pname, *sname;
3609
3610 pname = newsrv->trackit;
3611 sname = strrchr(pname, '/');
3612
3613 if (sname)
3614 *sname++ = '\0';
3615 else {
3616 sname = pname;
3617 pname = NULL;
3618 }
3619
3620 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003621 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003622 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003623 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3624 proxy_type_str(curproxy), curproxy->id,
3625 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003626 cfgerr++;
3627 goto next_srv;
3628 }
3629 } else
3630 px = curproxy;
3631
3632 srv = findserver(px, sname);
3633 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003634 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3635 proxy_type_str(curproxy), curproxy->id,
3636 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003637 cfgerr++;
3638 goto next_srv;
3639 }
3640
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003641 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003642 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3643 "tracking as it does not have any check nor agent enabled.\n",
3644 proxy_type_str(curproxy), curproxy->id,
3645 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003646 cfgerr++;
3647 goto next_srv;
3648 }
3649
3650 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3651
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003652 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003653 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3654 "belongs to a tracking chain looping back to %s/%s.\n",
3655 proxy_type_str(curproxy), curproxy->id,
3656 newsrv->id, px->id, srv->id, px->id,
3657 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003658 cfgerr++;
3659 goto next_srv;
3660 }
3661
3662 if (curproxy != px &&
3663 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003664 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3665 "tracking: disable-on-404 option inconsistency.\n",
3666 proxy_type_str(curproxy), curproxy->id,
3667 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003668 cfgerr++;
3669 goto next_srv;
3670 }
3671
Willy Tarreau62c3be22012-01-20 13:12:32 +01003672 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003673 newsrv->tracknext = srv->trackers;
3674 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003675
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003676 ha_free(&newsrv->trackit);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003677 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003678
Willy Tarreau62c3be22012-01-20 13:12:32 +01003679 next_srv:
3680 newsrv = newsrv->next;
3681 }
3682
Olivier Houchard4e694042017-03-14 20:01:29 +01003683 /*
3684 * Try to generate dynamic cookies for servers now.
3685 * It couldn't be done earlier, since at the time we parsed
3686 * the server line, we may not have known yet that we
3687 * should use dynamic cookies, or the secret key may not
3688 * have been provided yet.
3689 */
3690 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3691 newsrv = curproxy->srv;
3692 while (newsrv != NULL) {
3693 srv_set_dyncookie(newsrv);
3694 newsrv = newsrv->next;
3695 }
3696
3697 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003698 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003699 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003700 */
3701
3702 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3703 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3704 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003705 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3706 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3707 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003708 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3709 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Bretonc5c5bc42021-05-19 16:40:28 +02003710 if (chash_init_server_tree(curproxy) < 0) {
3711 cfgerr++;
3712 }
Willy Tarreau9757a382009-10-03 12:56:50 +02003713 } else {
3714 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3715 fwrr_init_server_groups(curproxy);
3716 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003717 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003718
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003719 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003720 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3721 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3722 fwlc_init_server_tree(curproxy);
3723 } else {
3724 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3725 fas_init_server_tree(curproxy);
3726 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003727 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003728
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003729 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003730 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3731 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Bretonc5c5bc42021-05-19 16:40:28 +02003732 if (chash_init_server_tree(curproxy) < 0) {
3733 cfgerr++;
3734 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003735 } else {
3736 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3737 init_server_map(curproxy);
3738 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003739 break;
3740 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003741 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003742
3743 if (curproxy->options & PR_O_LOGASAP)
3744 curproxy->to_log &= ~LW_BYTES;
3745
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003746 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003747 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3748 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003749 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3750 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003751 err_code |= ERR_WARN;
3752 }
3753
Christopher Faulet3b6446f2021-03-15 15:10:38 +01003754 if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) {
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003755 int optnum;
3756
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003757 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003758 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3759 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003760 err_code |= ERR_WARN;
3761 curproxy->uri_auth = NULL;
3762 }
3763
Willy Tarreaude7dc882017-03-10 11:49:21 +01003764 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003765 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3766 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003767 err_code |= ERR_WARN;
3768 }
3769
3770 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003771 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3772 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003773 err_code |= ERR_WARN;
3774 }
3775
3776 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003777 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3778 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003779 err_code |= ERR_WARN;
3780 }
3781
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003782 if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) {
3783 ha_warning("config : 'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3784 proxy_type_str(curproxy), curproxy->id);
3785 err_code |= ERR_WARN;
3786 }
3787
Willy Tarreaude7dc882017-03-10 11:49:21 +01003788 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003789 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3790 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003791 err_code |= ERR_WARN;
3792 }
3793
Willy Tarreau87cf5142011-08-19 22:57:24 +02003794 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003795 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3796 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003797 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003798 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003799 }
3800
3801 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003802 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3803 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003804 err_code |= ERR_WARN;
3805 curproxy->options &= ~PR_O_ORGTO;
3806 }
3807
3808 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3809 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3810 (curproxy->cap & cfg_opts[optnum].cap) &&
3811 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003812 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3813 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003814 err_code |= ERR_WARN;
3815 curproxy->options &= ~cfg_opts[optnum].val;
3816 }
3817 }
3818
3819 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3820 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3821 (curproxy->cap & cfg_opts2[optnum].cap) &&
3822 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003823 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3824 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003825 err_code |= ERR_WARN;
3826 curproxy->options2 &= ~cfg_opts2[optnum].val;
3827 }
3828 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003829
Willy Tarreau29fbe512015-08-20 19:35:14 +02003830#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003831 if (curproxy->conn_src.bind_hdr_occ) {
3832 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003833 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3834 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003835 err_code |= ERR_WARN;
3836 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003837#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003838 }
3839
Willy Tarreaubaaee002006-06-26 02:48:02 +02003840 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003841 * ensure that we're not cross-dressing a TCP server into HTTP.
3842 */
3843 newsrv = curproxy->srv;
3844 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003845 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003846 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3847 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003848 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003849 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003850
Willy Tarreau0cec3312011-10-31 13:49:26 +01003851 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003852 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3853 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003854 err_code |= ERR_WARN;
3855 }
3856
Willy Tarreauc93cd162014-05-13 15:54:22 +02003857 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003858 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3859 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003860 err_code |= ERR_WARN;
3861 }
3862
Willy Tarreau29fbe512015-08-20 19:35:14 +02003863#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003864 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3865 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003866 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3867 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003868 err_code |= ERR_WARN;
3869 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003870#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003871
Willy Tarreau46deab62018-04-28 07:18:15 +02003872 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3873 curproxy->options &= ~PR_O_REUSE_MASK;
3874
Willy Tarreau21d2af32008-02-14 20:25:24 +01003875 newsrv = newsrv->next;
3876 }
3877
Christopher Fauletd7c91962015-04-30 11:48:27 +02003878 /* Check filter configuration, if any */
3879 cfgerr += flt_check(curproxy);
3880
Willy Tarreauc1a21672009-08-16 22:37:44 +02003881 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003882 if (!curproxy->accept)
3883 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003884
Willy Tarreauc1a21672009-08-16 22:37:44 +02003885 if (curproxy->tcp_req.inspect_delay ||
3886 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003887 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003888
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003889 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003890 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003891 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003892 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003893
William Lallemandcf62f7e2018-10-26 14:47:40 +02003894 if (curproxy->mode == PR_MODE_CLI) {
3895 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3896 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3897 }
3898
Willy Tarreauc1a21672009-08-16 22:37:44 +02003899 /* both TCP and HTTP must check switching rules */
3900 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003901
3902 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003903 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003904 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3905 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 +02003906 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003907 }
3908
3909 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003910 if (curproxy->tcp_req.inspect_delay ||
3911 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3912 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3913
Emeric Brun97679e72010-09-23 17:56:44 +02003914 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3915 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3916
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003917 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003918 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003919 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003920 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003921
3922 /* If the backend does requires RDP cookie persistence, we have to
3923 * enable the corresponding analyser.
3924 */
3925 if (curproxy->options2 & PR_O2_RDPC_PRST)
3926 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003927
3928 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003929 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003930 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3931 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 +02003932 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003933 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003934
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003935 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003936 * attached to the current proxy */
3937 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3938 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003939 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003940
3941 if (!bind_conf->mux_proto)
3942 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003943
3944 /* it is possible that an incorrect mux was referenced
3945 * due to the proxy's mode not being taken into account
3946 * on first pass. Let's adjust it now.
3947 */
3948 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3949
3950 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003951 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3952 proxy_type_str(curproxy), curproxy->id,
3953 (int)bind_conf->mux_proto->token.len,
3954 bind_conf->mux_proto->token.ptr,
3955 bind_conf->arg, bind_conf->file, bind_conf->line);
3956 cfgerr++;
3957 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003958
3959 /* update the mux */
3960 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003961 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003962 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3963 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003964 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003965
3966 if (!newsrv->mux_proto)
3967 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003968
3969 /* it is possible that an incorrect mux was referenced
3970 * due to the proxy's mode not being taken into account
3971 * on first pass. Let's adjust it now.
3972 */
3973 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3974
3975 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003976 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3977 proxy_type_str(curproxy), curproxy->id,
3978 (int)newsrv->mux_proto->token.len,
3979 newsrv->mux_proto->token.ptr,
3980 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3981 cfgerr++;
3982 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003983
3984 /* update the mux */
3985 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003986 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01003987 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003988
Emeric Brunfe0979f2022-08-18 15:53:21 +02003989 /*
3990 * We have just initialized the main proxies list
3991 * we must also configure the log-forward proxies list
3992 */
3993 if (init_proxies_list == proxies_list) {
3994 init_proxies_list = cfg_log_forward;
Emeric Brunba6af4f2022-08-22 10:25:11 +02003995 /* check if list is not null to avoid infinite loop */
3996 if (init_proxies_list)
3997 goto init_proxies_list_stage1;
Emeric Brunfe0979f2022-08-18 15:53:21 +02003998 }
3999
Emeric Brunfd667082022-09-13 16:16:30 +02004000 if (init_proxies_list == cfg_log_forward) {
4001 init_proxies_list = sink_proxies_list;
4002 /* check if list is not null to avoid infinite loop */
4003 if (init_proxies_list)
4004 goto init_proxies_list_stage1;
4005 }
4006
Willy Tarreau4cdac162021-03-05 10:48:42 +01004007 /***********************************************************/
4008 /* At this point, target names have already been resolved. */
4009 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01004010
Willy Tarreau4cdac162021-03-05 10:48:42 +01004011 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01004012
Willy Tarreau4cdac162021-03-05 10:48:42 +01004013 list_for_each_entry(newsrv, &servers_list, global_list) {
4014 /* initialize idle conns lists */
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004015 newsrv->per_thr = calloc(global.nbthread, sizeof(*newsrv->per_thr));
4016 if (!newsrv->per_thr) {
4017 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
4018 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01004019 cfgerr++;
4020 continue;
4021 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004022
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004023 for (i = 0; i < global.nbthread; i++) {
4024 newsrv->per_thr[i].idle_conns = EB_ROOT;
4025 newsrv->per_thr[i].safe_conns = EB_ROOT;
4026 newsrv->per_thr[i].avail_conns = EB_ROOT;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01004027 MT_LIST_INIT(&newsrv->per_thr[i].streams);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01004028 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004029
Willy Tarreau4cdac162021-03-05 10:48:42 +01004030 if (newsrv->max_idle_conns != 0) {
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004031 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
4032 if (!newsrv->curr_idle_thr) {
4033 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
4034 newsrv->conf.file, newsrv->conf.line, newsrv->id);
4035 cfgerr++;
4036 continue;
4037 }
Remi Tricot-Le Bretonc5c5bc42021-05-19 16:40:28 +02004038
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004039 }
4040 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004041
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004042 idle_conn_task = task_new(MAX_THREADS_MASK);
4043 if (!idle_conn_task) {
4044 ha_alert("parsing : failed to allocate global idle connection task.\n");
4045 cfgerr++;
4046 }
4047 else {
4048 idle_conn_task->process = srv_cleanup_idle_conns;
4049 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004050
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004051 for (i = 0; i < global.nbthread; i++) {
4052 idle_conns[i].cleanup_task = task_new(1UL << i);
4053 if (!idle_conns[i].cleanup_task) {
4054 ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i);
4055 cfgerr++;
4056 break;
Willy Tarreau4cdac162021-03-05 10:48:42 +01004057 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01004058
Amaury Denoyelle3efee652021-03-08 17:31:39 +01004059 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
4060 idle_conns[i].cleanup_task->context = NULL;
4061 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
4062 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Willy Tarreau835daa12019-02-07 14:46:29 +01004063 }
Willy Tarreau419ead82014-09-16 13:41:21 +02004064 }
4065
Willy Tarreau419ead82014-09-16 13:41:21 +02004066 /* Check multi-process mode compatibility */
4067
Willy Tarreau4975d142021-03-13 11:00:33 +01004068 if (global.nbproc > 1 && global.cli_fe) {
4069 list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) {
Willy Tarreau419ead82014-09-16 13:41:21 +02004070 unsigned long mask;
4071
Willy Tarreau4975d142021-03-13 11:00:33 +01004072 mask = proc_mask(global.cli_fe->bind_proc) && all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02004073 mask &= proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02004074
4075 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02004076 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02004077 break;
4078 }
Willy Tarreau4975d142021-03-13 11:00:33 +01004079 if (&bind_conf->by_fe != &global.cli_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004080 ha_warning("stats socket will not work as expected in multi-process mode (nbproc > 1), you should force process binding globally using 'stats bind-process' or per socket using the 'process' attribute.\n");
Willy Tarreau419ead82014-09-16 13:41:21 +02004081 }
4082 }
4083
4084 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004085 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02004086 if (curproxy->bind_proc)
4087 continue;
4088
4089 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
4090 unsigned long mask;
4091
Willy Tarreaue26993c2020-09-03 07:18:55 +02004092 mask = proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02004093 curproxy->bind_proc |= mask;
4094 }
Willy Tarreau6daac192019-02-02 17:39:53 +01004095 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02004096 }
4097
Willy Tarreau4975d142021-03-13 11:00:33 +01004098 if (global.cli_fe) {
4099 list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) {
Willy Tarreau419ead82014-09-16 13:41:21 +02004100 unsigned long mask;
4101
Willy Tarreaue26993c2020-09-03 07:18:55 +02004102 mask = bind_conf->settings.bind_proc ? bind_conf->settings.bind_proc : 0;
Willy Tarreau4975d142021-03-13 11:00:33 +01004103 global.cli_fe->bind_proc |= mask;
Willy Tarreau419ead82014-09-16 13:41:21 +02004104 }
Willy Tarreau4975d142021-03-13 11:00:33 +01004105 global.cli_fe->bind_proc = proc_mask(global.cli_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02004106 }
4107
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02004108 /* propagate bindings from frontends to backends. Don't do it if there
4109 * are any fatal errors as we must not call it with unresolved proxies.
4110 */
4111 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004112 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02004113 if (curproxy->cap & PR_CAP_FE)
4114 propagate_processes(curproxy, NULL);
4115 }
Willy Tarreau419ead82014-09-16 13:41:21 +02004116 }
4117
4118 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01004119 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
4120 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02004121
4122 /*******************************************************/
4123 /* At this step, all proxies have a non-null bind_proc */
4124 /*******************************************************/
4125
4126 /* perform the final checks before creating tasks */
4127
Emeric Brunfe0979f2022-08-18 15:53:21 +02004128 /* starting to initialize the main proxies list */
4129 init_proxies_list = proxies_list;
4130
4131init_proxies_list_stage2:
4132 for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02004133 struct listener *listener;
4134 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02004135
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004136 /* Configure SSL for each bind line.
4137 * Note: if configuration fails at some point, the ->ctx member
4138 * remains NULL so that listeners can later detach.
4139 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004140 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01004141 if (bind_conf->xprt->prepare_bind_conf &&
4142 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004143 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004144 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004145
Willy Tarreaue6b98942007-10-29 01:09:36 +01004146 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004147 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02004148 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02004149 int nbproc;
4150
4151 nbproc = my_popcountl(curproxy->bind_proc &
Willy Tarreaue26993c2020-09-03 07:18:55 +02004152 (listener->bind_conf->settings.bind_proc ? listener->bind_conf->settings.bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01004153 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02004154
4155 if (!nbproc) /* no intersection between listener and frontend */
4156 nbproc = 1;
4157
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004158 if (!listener->luid) {
4159 /* listener ID not set, use automatic numbering with first
4160 * spare entry starting with next_luid.
4161 */
4162 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
4163 listener->conf.id.key = listener->luid = next_id;
4164 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004165 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01004166 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02004167
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004168 /* enable separate counters */
4169 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01004170 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01004171 if (!listener->name)
4172 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02004173 }
Willy Tarreau81796be2012-09-22 19:11:47 +02004174
Willy Tarreaue6b98942007-10-29 01:09:36 +01004175 if (curproxy->options & PR_O_TCP_NOLING)
4176 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01004177 if (!listener->maxaccept)
Willy Tarreau66161322021-02-19 15:50:27 +01004178 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau16a21472012-11-19 12:39:59 +01004179
4180 /* we want to have an optimal behaviour on single process mode to
4181 * maximize the work at once, but in multi-process we want to keep
4182 * some fairness between processes, so we target half of the max
4183 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05004184 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01004185 * used to disable the limit.
4186 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02004187 if (listener->maxaccept > 0 && nbproc > 1) {
4188 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01004189 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
4190 }
4191
Willy Tarreau9903f0e2015-04-04 18:50:31 +02004192 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02004193 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01004194 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01004195
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02004196 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02004197 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02004198
Willy Tarreau620408f2016-10-21 16:37:51 +02004199 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
4200 listener->options |= LI_O_TCP_L5_RULES;
4201
Willy Tarreau9ea05a72009-06-14 12:07:01 +02004202 /* smart accept mode is automatic in HTTP mode */
4203 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004204 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02004205 !(curproxy->no_options2 & PR_O2_SMARTACC)))
4206 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01004207 }
4208
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004209 /* Release unused SSL configs */
4210 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01004211 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
4212 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004213 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004214
Willy Tarreaua38a7172019-02-02 17:11:28 +01004215 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02004216 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02004217 int count, maxproc = 0;
4218
4219 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreaue26993c2020-09-03 07:18:55 +02004220 count = my_popcountl(bind_conf->settings.bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02004221 if (count > maxproc)
4222 maxproc = count;
4223 }
4224 /* backends have 0, frontends have 1 or more */
4225 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01004226 ha_warning("Proxy '%s': in multi-process mode, stats will be"
4227 " limited to process assigned to the current request.\n",
4228 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02004229
Willy Tarreau102df612014-05-07 23:56:38 +02004230 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004231 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
4232 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01004233 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01004234 }
Willy Tarreau102df612014-05-07 23:56:38 +02004235 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004236 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
4237 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01004238 }
4239 }
Willy Tarreau918ff602011-07-25 16:33:49 +02004240
4241 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02004242 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02004243 if (curproxy->task) {
4244 curproxy->task->context = curproxy;
4245 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02004246 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004247 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
4248 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02004249 cfgerr++;
4250 }
Willy Tarreaub369a042014-09-16 13:21:03 +02004251 }
4252
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004253 /*
Emeric Brunfe0979f2022-08-18 15:53:21 +02004254 * We have just initialized the main proxies list
4255 * we must also configure the log-forward proxies list
4256 */
4257 if (init_proxies_list == proxies_list) {
4258 init_proxies_list = cfg_log_forward;
Emeric Brunba6af4f2022-08-22 10:25:11 +02004259 /* check if list is not null to avoid infinite loop */
4260 if (init_proxies_list)
4261 goto init_proxies_list_stage2;
Emeric Brunfe0979f2022-08-18 15:53:21 +02004262 }
4263
4264 /*
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004265 * Recount currently required checks.
4266 */
4267
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004268 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004269 int optnum;
4270
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004271 for (optnum = 0; cfg_opts[optnum].name; optnum++)
4272 if (curproxy->options & cfg_opts[optnum].val)
4273 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004274
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004275 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
4276 if (curproxy->options2 & cfg_opts2[optnum].val)
4277 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004278 }
4279
Willy Tarreau0fca4832015-05-01 19:12:05 +02004280 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004281 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004282 if (curproxy->table && curproxy->table->peers.p)
4283 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02004284
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01004285 /* compute the required process bindings for the peers from <stktables_list>
4286 * for all the stick-tables, the ones coming with "peers" sections included.
4287 */
4288 for (t = stktables_list; t; t = t->next) {
4289 struct proxy *p;
4290
4291 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
4292 if (t->peers.p && t->peers.p->peers_fe) {
4293 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
4294 }
4295 }
4296 }
4297
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004298 if (cfg_peers) {
4299 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02004300 struct peer *p, *pb;
4301
William Lallemanda2cfd7e2020-03-24 16:02:48 +01004302 /* In the case the peers frontend was not initialized by a
4303 stick-table used in the configuration, set its bind_proc
4304 by default to the first process. */
4305 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01004306 if (curpeers->peers_fe) {
4307 if (curpeers->peers_fe->bind_proc == 0)
4308 curpeers->peers_fe->bind_proc = 1;
4309 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01004310 curpeers = curpeers->next;
4311 }
4312
4313 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02004314 /* Remove all peers sections which don't have a valid listener,
4315 * which are not used by any table, or which are bound to more
4316 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02004317 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004318 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02004319 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004320 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02004321 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004322
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02004323 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004324 /* the "disabled" keyword was present */
4325 if (curpeers->peers_fe)
4326 stop_proxy(curpeers->peers_fe);
4327 curpeers->peers_fe = NULL;
4328 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02004329 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004330 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
4331 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004332 if (curpeers->peers_fe)
4333 stop_proxy(curpeers->peers_fe);
4334 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004335 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02004336 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02004337 /* either it's totally stopped or too much used */
4338 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004339 ha_alert("Peers section '%s': peers referenced by sections "
4340 "running in different processes (%d different ones). "
4341 "Check global.nbproc and all tables' bind-process "
4342 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02004343 cfgerr++;
4344 }
4345 stop_proxy(curpeers->peers_fe);
4346 curpeers->peers_fe = NULL;
4347 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004348 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004349 /* Initializes the transport layer of the server part of all the peers belonging to
4350 * <curpeers> section if required.
4351 * Note that ->srv is used by the local peer of a new process to connect to the local peer
4352 * of an old process.
4353 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004354 p = curpeers->remote;
4355 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004356 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004357 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 +01004358 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
4359 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004360 p = p->next;
4361 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004362 /* Configure the SSL bindings of the local peer if required. */
4363 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
4364 struct list *l;
4365 struct bind_conf *bind_conf;
4366
4367 l = &curpeers->peers_fe->conf.bind;
4368 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
4369 if (bind_conf->xprt->prepare_bind_conf &&
4370 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4371 cfgerr++;
4372 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004373 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004374 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4375 curpeers->id);
4376 cfgerr++;
4377 break;
4378 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004379 last = &curpeers->next;
4380 continue;
4381 }
4382
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004383 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004384 p = curpeers->remote;
4385 while (p) {
4386 pb = p->next;
4387 free(p->id);
4388 free(p);
4389 p = pb;
4390 }
4391
4392 /* Destroy and unlink this curpeers section.
4393 * Note: curpeers is backed up into *last.
4394 */
4395 free(curpeers->id);
4396 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004397 /* Reset any refereance to this peers section in the list of stick-tables */
4398 for (t = stktables_list; t; t = t->next) {
4399 if (t->peers.p && t->peers.p == *last)
4400 t->peers.p = NULL;
4401 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004402 free(*last);
4403 *last = curpeers;
4404 }
4405 }
4406
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004407 for (t = stktables_list; t; t = t->next) {
4408 if (t->proxy)
4409 continue;
4410 if (!stktable_init(t)) {
4411 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4412 cfgerr++;
4413 }
4414 }
4415
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004416 /* initialize stick-tables on backend capable proxies. This must not
4417 * be done earlier because the data size may be discovered while parsing
4418 * other proxies.
4419 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004420 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauc3914d42020-09-24 08:39:22 +02004421 if (curproxy->disabled || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004422 continue;
4423
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004424 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004425 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004426 cfgerr++;
4427 }
4428 }
4429
Simon Horman0d16a402015-01-30 11:22:58 +09004430 if (mailers) {
4431 struct mailers *curmailers = mailers, **last;
4432 struct mailer *m, *mb;
4433
4434 /* Remove all mailers sections which don't have a valid listener.
4435 * This can happen when a mailers section is never referenced.
4436 */
4437 last = &mailers;
4438 while (*last) {
4439 curmailers = *last;
4440 if (curmailers->users) {
4441 last = &curmailers->next;
4442 continue;
4443 }
4444
Christopher Faulet767a84b2017-11-24 16:50:31 +01004445 ha_warning("Removing incomplete section 'mailers %s'.\n",
4446 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004447
4448 m = curmailers->mailer_list;
4449 while (m) {
4450 mb = m->next;
4451 free(m->id);
4452 free(m);
4453 m = mb;
4454 }
4455
4456 /* Destroy and unlink this curmailers section.
4457 * Note: curmailers is backed up into *last.
4458 */
4459 free(curmailers->id);
4460 curmailers = curmailers->next;
4461 free(*last);
4462 *last = curmailers;
4463 }
4464 }
4465
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004466 /* Update server_state_file_name to backend name if backend is supposed to use
4467 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004468 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004469 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4470 curproxy->server_state_file_name == NULL)
4471 curproxy->server_state_file_name = strdup(curproxy->id);
4472 }
4473
Emeric Brun750fe792020-12-23 16:51:12 +01004474 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06004475 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
4476 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
4477 curr_resolvers->id, curr_resolvers->conf.file,
4478 curr_resolvers->conf.line);
4479 err_code |= ERR_WARN;
4480 }
4481 }
4482
William Lallemand48b4bb42017-10-23 14:36:34 +02004483 list_for_each_entry(postparser, &postparsers, list) {
4484 if (postparser->func)
4485 cfgerr += postparser->func();
4486 }
4487
Willy Tarreaubb925012009-07-23 13:36:36 +02004488 if (cfgerr > 0)
4489 err_code |= ERR_ALERT | ERR_FATAL;
4490 out:
4491 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004492}
4493
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004494/*
4495 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4496 * parsing sessions.
4497 */
4498void cfg_register_keywords(struct cfg_kw_list *kwl)
4499{
Willy Tarreau2b718102021-04-21 07:32:39 +02004500 LIST_APPEND(&cfg_keywords.list, &kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004501}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004502
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004503/*
4504 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4505 */
4506void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4507{
Willy Tarreau2b718102021-04-21 07:32:39 +02004508 LIST_DELETE(&kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004509 LIST_INIT(&kwl->list);
4510}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004511
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004512/* this function register new section in the haproxy configuration file.
4513 * <section_name> is the name of this new section and <section_parser>
4514 * is the called parser. If two section declaration have the same name,
4515 * only the first declared is used.
4516 */
4517int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004518 int (*section_parser)(const char *, int, char **, int),
4519 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004520{
4521 struct cfg_section *cs;
4522
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004523 list_for_each_entry(cs, &sections, list) {
4524 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004525 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004526 return 0;
4527 }
4528 }
4529
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004530 cs = calloc(1, sizeof(*cs));
4531 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004532 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004533 return 0;
4534 }
4535
4536 cs->section_name = section_name;
4537 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004538 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004539
Willy Tarreau2b718102021-04-21 07:32:39 +02004540 LIST_APPEND(&sections, &cs->list);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004541
4542 return 1;
4543}
4544
William Lallemand48b4bb42017-10-23 14:36:34 +02004545/* this function register a new function which will be called once the haproxy
4546 * configuration file has been parsed. It's useful to check dependencies
4547 * between sections or to resolve items once everything is parsed.
4548 */
4549int cfg_register_postparser(char *name, int (*func)())
4550{
4551 struct cfg_postparser *cp;
4552
4553 cp = calloc(1, sizeof(*cp));
4554 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004555 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004556 return 0;
4557 }
4558 cp->name = name;
4559 cp->func = func;
4560
Willy Tarreau2b718102021-04-21 07:32:39 +02004561 LIST_APPEND(&postparsers, &cp->list);
William Lallemand48b4bb42017-10-23 14:36:34 +02004562
4563 return 1;
4564}
4565
Willy Tarreaubaaee002006-06-26 02:48:02 +02004566/*
David Carlier845efb52015-09-25 11:49:18 +01004567 * free all config section entries
4568 */
4569void cfg_unregister_sections(void)
4570{
4571 struct cfg_section *cs, *ics;
4572
4573 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004574 LIST_DELETE(&cs->list);
David Carlier845efb52015-09-25 11:49:18 +01004575 free(cs);
4576 }
4577}
4578
Christopher Faulet7110b402016-10-26 11:09:44 +02004579void cfg_backup_sections(struct list *backup_sections)
4580{
4581 struct cfg_section *cs, *ics;
4582
4583 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004584 LIST_DELETE(&cs->list);
4585 LIST_APPEND(backup_sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004586 }
4587}
4588
4589void cfg_restore_sections(struct list *backup_sections)
4590{
4591 struct cfg_section *cs, *ics;
4592
4593 list_for_each_entry_safe(cs, ics, backup_sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004594 LIST_DELETE(&cs->list);
4595 LIST_APPEND(&sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004596 }
4597}
4598
Willy Tarreaue6552512018-11-26 11:33:13 +01004599/* these are the config sections handled by default */
4600REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4601REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4602REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4603REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4604REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4605REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4606REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4607REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4608REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004609
Willy Tarreau8a022d52021-04-27 20:29:11 +02004610static struct cfg_kw_list cfg_kws = {{ },{
4611 { CFG_GLOBAL, "default-path", cfg_parse_global_def_path },
4612 { /* END */ }
4613}};
4614
4615INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4616
David Carlier845efb52015-09-25 11:49:18 +01004617/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004618 * Local variables:
4619 * c-indent-level: 8
4620 * c-basic-offset: 8
4621 * End:
4622 */