blob: dd8a2c13cf2e0413451340985a9ca4ddf1a22d31 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Configuration parser
3 *
Willy Tarreauff011f22011-01-06 17:51:27 +01004 * Copyright 2000-2011 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreaue5733232019-05-22 19:24:06 +020013#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +020014/* This is to have crypt() defined on Linux */
15#define _GNU_SOURCE
16
Willy Tarreaue5733232019-05-22 19:24:06 +020017#ifdef USE_CRYPT_H
Cyril Bonté1a0191d2014-08-29 20:20:02 +020018/* some platforms such as Solaris need this */
19#include <crypt.h>
20#endif
Willy Tarreaue5733232019-05-22 19:24:06 +020021#endif /* USE_LIBCRYPT */
Cyril Bonté1a0191d2014-08-29 20:20:02 +020022
Willy Tarreaubaaee002006-06-26 02:48:02 +020023#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <netdb.h>
27#include <ctype.h>
Willy Tarreau95c20ac2007-03-25 15:39:23 +020028#include <pwd.h>
29#include <grp.h>
Willy Tarreau0b4ed902007-03-26 00:18:40 +020030#include <errno.h>
Willy Tarreau3f49b302007-06-11 00:29:26 +020031#include <sys/types.h>
32#include <sys/stat.h>
33#include <fcntl.h>
34#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035
Willy Tarreaudcc048a2020-06-04 19:11:43 +020036#include <haproxy/acl.h>
Christopher Faulet42c6cf92021-03-25 17:19:04 +010037#include <haproxy/action.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020038#include <haproxy/api.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020039#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020040#include <haproxy/backend.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020041#include <haproxy/capture.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020042#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020043#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020044#include <haproxy/check.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020045#include <haproxy/chunk.h>
Amaury Denoyellec90932b2021-04-14 16:16:03 +020046#include <haproxy/cpuset.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020047#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020048#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020049#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020050#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020051#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020052#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020053#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020054#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020055#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020056#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020057#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020058#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020059#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020060#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020061#include <haproxy/mailers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020062#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020063#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020064#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020065#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020066#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020067#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020068#include <haproxy/proxy.h>
Emeric Brunc9437992021-02-12 19:42:55 +010069#include <haproxy/resolvers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020070#include <haproxy/sample.h>
71#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020072#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020073#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020074#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020075#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020076#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020077#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020078#include <haproxy/thread.h>
79#include <haproxy/time.h>
80#include <haproxy/tools.h>
81#include <haproxy/uri_auth-t.h>
Frédéric Lécaille884f2e92020-11-23 14:23:21 +010082#include <haproxy/xprt_quic.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020083
84
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010085/* Used to chain configuration sections definitions. This list
86 * stores struct cfg_section
87 */
88struct list sections = LIST_HEAD_INIT(sections);
89
William Lallemand48b4bb42017-10-23 14:36:34 +020090struct list postparsers = LIST_HEAD_INIT(postparsers);
91
Eric Salama1b8dacc2021-03-16 15:12:17 +010092extern struct proxy *mworker_proxy;
93
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010094char *cursection = NULL;
Willy Tarreauc8d5b952019-02-27 17:25:52 +010095int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +010096int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +010097char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +020098
Willy Tarreau5b2c3362008-07-09 19:39:06 +020099/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100100struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200101 .list = LIST_HEAD_INIT(cfg_keywords.list)
102};
103
Willy Tarreau4b103022021-02-12 17:59:10 +0100104/* nested if/elif/else/endif block states */
105enum nested_cond_state {
106 NESTED_COND_IF_TAKE, // "if" with a true condition
107 NESTED_COND_IF_DROP, // "if" with a false condition
108 NESTED_COND_IF_SKIP, // "if" masked by an outer false condition
109
110 NESTED_COND_ELIF_TAKE, // "elif" with a true condition from a false one
111 NESTED_COND_ELIF_DROP, // "elif" with a false condition from a false one
112 NESTED_COND_ELIF_SKIP, // "elif" masked by an outer false condition or a previously taken if
113
114 NESTED_COND_ELSE_TAKE, // taken "else" after an if false condition
115 NESTED_COND_ELSE_DROP, // "else" masked by outer false condition or an if true condition
116};
117
118/* 100 levels of nested conditions should already be sufficient */
119#define MAXNESTEDCONDS 100
120
Willy Tarreaubaaee002006-06-26 02:48:02 +0200121/*
122 * converts <str> to a list of listeners which are dynamically allocated.
123 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
124 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
125 * - <port> is a numerical port from 1 to 65535 ;
126 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
127 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200128 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
129 * not NULL, it must be a valid pointer to either NULL or a freeable area that
130 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200131 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200132int str2listener(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200133{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200134 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100135 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200136 int port, end;
137
138 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200139
Willy Tarreaubaaee002006-06-26 02:48:02 +0200140 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200141 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100142 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200143
144 str = next;
145 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100146 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200147 *next++ = 0;
148 }
149
Willy Tarreau5fc93282020-09-16 18:25:03 +0200150 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Eric Salama1b8dacc2021-03-16 15:12:17 +0100151 (curproxy == global.cli_fe || curproxy == mworker_proxy) ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200152 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200153 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100154 if (!ss2)
155 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200156
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100157 /* OK the address looks correct */
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100158
159#ifdef USE_QUIC
160 /* The transport layer automatically switches to QUIC when QUIC
161 * is selected, regardless of bind_conf settings. We then need
162 * to initialize QUIC params.
163 */
164 if (proto->sock_type == SOCK_DGRAM && proto->ctrl_type == SOCK_STREAM) {
165 bind_conf->xprt = xprt_get(XPRT_QUIC);
166 quic_transport_params_init(&bind_conf->quic_params, 1);
167 }
168#endif
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200169 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200170 memprintf(err, "%s for address '%s'.\n", *err, str);
171 goto fail;
172 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200173 } /* end while(next) */
174 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200175 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200176 fail:
177 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200178 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200179}
180
William Lallemand6e62fb62015-04-28 16:55:23 +0200181/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200182 * converts <str> to a list of datagram-oriented listeners which are dynamically
183 * allocated.
184 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
185 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
186 * - <port> is a numerical port from 1 to 65535 ;
187 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
188 * This can be repeated as many times as necessary, separated by a coma.
189 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
190 * not NULL, it must be a valid pointer to either NULL or a freeable area that
191 * will be replaced with an error message.
192 */
193int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
194{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200195 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200196 char *next, *dupstr;
197 int port, end;
198
199 next = dupstr = strdup(str);
200
201 while (next && *next) {
202 struct sockaddr_storage *ss2;
203 int fd = -1;
204
205 str = next;
206 /* 1) look for the end of the first address */
207 if ((next = strchr(str, ',')) != NULL) {
208 *next++ = 0;
209 }
210
Willy Tarreau5fc93282020-09-16 18:25:03 +0200211 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreau4975d142021-03-13 11:00:33 +0100212 curproxy == global.cli_fe ? NULL : global.unix_bind.prefix,
Willy Tarreauaa333122020-09-16 15:13:04 +0200213 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
214 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
215 if (!ss2)
216 goto fail;
217
218 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200219 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200220 memprintf(err, "%s for address '%s'.\n", *err, str);
221 goto fail;
222 }
223 } /* end while(next) */
224 free(dupstr);
225 return 1;
226 fail:
227 free(dupstr);
228 return 0;
229}
230
231/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100232 * Report an error in <msg> when there are too many arguments. This version is
233 * intended to be used by keyword parsers so that the message will be included
234 * into the general error message. The index is the current keyword in args.
235 * Return 0 if the number of argument is correct, otherwise build a message and
236 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
237 * message may also be null, it will simply not be produced (useful to check only).
238 * <msg> and <err_code> are only affected on error.
239 */
240int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
241{
242 int i;
243
244 if (!*args[index + maxarg + 1])
245 return 0;
246
247 if (msg) {
248 *msg = NULL;
249 memprintf(msg, "%s", args[0]);
250 for (i = 1; i <= index; i++)
251 memprintf(msg, "%s %s", *msg, args[i]);
252
253 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
254 }
255 if (err_code)
256 *err_code |= ERR_ALERT | ERR_FATAL;
257
258 return 1;
259}
260
261/*
262 * same as too_many_args_idx with a 0 index
263 */
264int too_many_args(int maxarg, char **args, char **msg, int *err_code)
265{
266 return too_many_args_idx(maxarg, 0, args, msg, err_code);
267}
268
269/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200270 * Report a fatal Alert when there is too much arguments
271 * The index is the current keyword in args
272 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
273 * Fill err_code with an ERR_ALERT and an ERR_FATAL
274 */
275int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
276{
277 char *kw = NULL;
278 int i;
279
280 if (!*args[index + maxarg + 1])
281 return 0;
282
283 memprintf(&kw, "%s", args[0]);
284 for (i = 1; i <= index; i++) {
285 memprintf(&kw, "%s %s", kw, args[i]);
286 }
287
Christopher Faulet767a84b2017-11-24 16:50:31 +0100288 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 +0200289 free(kw);
290 *err_code |= ERR_ALERT | ERR_FATAL;
291 return 1;
292}
293
294/*
295 * same as alertif_too_many_args_idx with a 0 index
296 */
297int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
298{
299 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
300}
301
Willy Tarreau61d18892009-03-31 10:49:21 +0200302
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100303/* Report it if a request ACL condition uses some keywords that are incompatible
304 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
305 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
306 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100307 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100308int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100309{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100310 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200311 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100312
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100313 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100314 return 0;
315
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100316 acl = acl_cond_conflicts(cond, where);
317 if (acl) {
318 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100319 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
320 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100321 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100322 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
323 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100324 return ERR_WARN;
325 }
326 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100327 return 0;
328
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100329 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100330 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
331 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100332 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100333 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
334 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100335 return ERR_WARN;
336}
337
Christopher Faulet581db2b2021-03-26 10:02:46 +0100338/* Report it if an ACL uses a L6 sample fetch from an HTTP proxy. It returns
339 * either 0 or ERR_WARN so that its result can be or'ed with err_code. Note that
340 * <cond> may be NULL and then will be ignored.
341*/
342int warnif_tcp_http_cond(const struct proxy *px, const struct acl_cond *cond)
343{
344 if (!cond || px->mode != PR_MODE_HTTP)
345 return 0;
346
347 if (cond->use & (SMP_USE_L6REQ|SMP_USE_L6RES)) {
348 ha_warning("Proxy '%s': L6 sample fetches ignored on HTTP proxies (declared at %s:%d).\n",
349 px->id, cond->file, cond->line);
350 return ERR_WARN;
351 }
352 return 0;
353}
354
Willy Tarreaue2afcc42021-03-12 09:08:04 +0100355/* try to find in <list> the word that looks closest to <word> by counting
356 * transitions between letters, digits and other characters. Will return the
357 * best matching word if found, otherwise NULL. An optional array of extra
358 * words to compare may be passed in <extra>, but it must then be terminated
359 * by a NULL entry. If unused it may be NULL.
360 */
361const char *cfg_find_best_match(const char *word, const struct list *list, int section, const char **extra)
362{
363 uint8_t word_sig[1024]; // 0..25=letter, 26=digit, 27=other, 28=begin, 29=end
364 uint8_t list_sig[1024];
365 const struct cfg_kw_list *kwl;
366 int index;
367 const char *best_ptr = NULL;
368 int dist, best_dist = INT_MAX;
369
370 make_word_fingerprint(word_sig, word);
371 list_for_each_entry(kwl, list, list) {
372 for (index = 0; kwl->kw[index].kw != NULL; index++) {
373 if (kwl->kw[index].section != section)
374 continue;
375
376 make_word_fingerprint(list_sig, kwl->kw[index].kw);
377 dist = word_fingerprint_distance(word_sig, list_sig);
378 if (dist < best_dist) {
379 best_dist = dist;
380 best_ptr = kwl->kw[index].kw;
381 }
382 }
383 }
384
385 while (extra && *extra) {
386 make_word_fingerprint(list_sig, *extra);
387 dist = word_fingerprint_distance(word_sig, list_sig);
388 if (dist < best_dist) {
389 best_dist = dist;
390 best_ptr = *extra;
391 }
392 extra++;
393 }
394
395 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
396 best_ptr = NULL;
397 return best_ptr;
398}
399
Christopher Faulet62519022017-10-16 15:49:32 +0200400/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100401 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100402 * two such numbers delimited by a dash ('-'). On success, it returns
403 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200404 *
405 * Note: this function can also be used to parse a thread number or a set of
406 * threads.
407 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100408int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200409{
Christopher Faulet26028f62017-11-22 15:01:51 +0100410 if (autoinc) {
411 *autoinc = 0;
412 if (strncmp(arg, "auto:", 5) == 0) {
413 arg += 5;
414 *autoinc = 1;
415 }
416 }
417
Christopher Faulet62519022017-10-16 15:49:32 +0200418 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100419 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200420 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100421 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200422 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100423 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200424 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100425 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100426 unsigned int low, high;
427
Christopher Faulet18cca782019-02-07 16:29:41 +0100428 for (p = arg; *p; p++) {
429 if (*p == '-' && !dash)
430 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100431 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100432 memprintf(err, "'%s' is not a valid number/range.", arg);
433 return -1;
434 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100435 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100436
437 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100438 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100439 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100440
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100441 if (high < low) {
442 unsigned int swap = low;
443 low = high;
444 high = swap;
445 }
446
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100447 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100448 memprintf(err, "'%s' is not a valid number/range."
449 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100450 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100451 return 1;
452 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100453
454 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100455 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200456 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100457 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100458
Christopher Faulet5ab51772017-11-22 11:21:58 +0100459 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200460}
461
David Carlier7e351ee2017-12-01 09:14:02 +0000462#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200463/* Parse cpu sets. Each CPU set is either a unique number between 0 and
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200464 * ha_cpuset_size() - 1 or a range with two such numbers delimited by a dash
Christopher Faulet62519022017-10-16 15:49:32 +0200465 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
466 * returns 0. otherwise it returns 1 with an error message in <err>.
467 */
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200468unsigned long parse_cpu_set(const char **args, struct hap_cpuset *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200469{
470 int cur_arg = 0;
471
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200472 ha_cpuset_zero(cpu_set);
473
Christopher Faulet62519022017-10-16 15:49:32 +0200474 while (*args[cur_arg]) {
475 char *dash;
476 unsigned int low, high;
477
Willy Tarreau90807112020-02-25 08:16:33 +0100478 if (!isdigit((unsigned char)*args[cur_arg])) {
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200479 memprintf(err, "'%s' is not a CPU range.", args[cur_arg]);
Christopher Faulet62519022017-10-16 15:49:32 +0200480 return -1;
481 }
482
483 low = high = str2uic(args[cur_arg]);
484 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200485 high = *(dash+1) ? str2uic(dash + 1) : ha_cpuset_size() - 1;
Christopher Faulet62519022017-10-16 15:49:32 +0200486
487 if (high < low) {
488 unsigned int swap = low;
489 low = high;
490 high = swap;
491 }
492
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200493 if (high >= ha_cpuset_size()) {
494 memprintf(err, "supports CPU numbers from 0 to %d.",
495 ha_cpuset_size() - 1);
Christopher Faulet62519022017-10-16 15:49:32 +0200496 return 1;
497 }
498
499 while (low <= high)
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200500 ha_cpuset_set(cpu_set, low++);
Christopher Faulet62519022017-10-16 15:49:32 +0200501
502 cur_arg++;
503 }
504 return 0;
505}
David Carlier7e351ee2017-12-01 09:14:02 +0000506#endif
507
Frédéric Lécaille18251032019-01-11 11:07:15 +0100508/* Allocate and initialize the frontend of a "peers" section found in
509 * file <file> at line <linenum> with <id> as ID.
510 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200511 * Note that this function may be called from "default-server"
512 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100513 */
514static int init_peers_frontend(const char *file, int linenum,
515 const char *id, struct peers *peers)
516{
517 struct proxy *p;
518
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200519 if (peers->peers_fe) {
520 p = peers->peers_fe;
521 goto out;
522 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100523
Frédéric Lécaille18251032019-01-11 11:07:15 +0100524 p = calloc(1, sizeof *p);
525 if (!p) {
526 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
527 return -1;
528 }
529
530 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200531 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100532 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200533 /* Finally store this frontend. */
534 peers->peers_fe = p;
535
536 out:
537 if (id && !p->id)
538 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200539 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100540 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100541 if (linenum != -1)
542 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100543
544 return 0;
545}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100546
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100547/* Only change ->file, ->line and ->arg struct bind_conf member values
548 * if already present.
549 */
550static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
551 const char *file, int line,
552 const char *arg, struct xprt_ops *xprt)
553{
554 struct bind_conf *bind_conf;
555
556 if (!LIST_ISEMPTY(&p->conf.bind)) {
557 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
558 free(bind_conf->file);
559 bind_conf->file = strdup(file);
560 bind_conf->line = line;
561 if (arg) {
562 free(bind_conf->arg);
563 bind_conf->arg = strdup(arg);
564 }
565 }
566 else {
567 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
568 }
569
570 return bind_conf;
571}
572
573/*
574 * Allocate a new struct peer parsed at line <linenum> in file <file>
575 * to be added to <peers>.
576 * Returns the new allocated structure if succeeded, NULL if not.
577 */
578static struct peer *cfg_peers_add_peer(struct peers *peers,
579 const char *file, int linenum,
580 const char *id, int local)
581{
582 struct peer *p;
583
584 p = calloc(1, sizeof *p);
585 if (!p) {
586 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
587 return NULL;
588 }
589
590 /* the peers are linked backwards first */
591 peers->count++;
592 p->next = peers->remote;
593 peers->remote = p;
594 p->conf.file = strdup(file);
595 p->conf.line = linenum;
596 p->last_change = now.tv_sec;
597 p->xprt = xprt_get(XPRT_RAW);
598 p->sock_init_arg = NULL;
599 HA_SPIN_INIT(&p->lock);
600 if (id)
601 p->id = strdup(id);
602 if (local) {
603 p->local = 1;
604 peers->local = p;
605 }
606
607 return p;
608}
609
Willy Tarreaubaaee002006-06-26 02:48:02 +0200610/*
William Lallemand51097192015-04-14 16:35:22 +0200611 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200612 * Returns the error code, 0 if OK, or any combination of :
613 * - ERR_ABORT: must abort ASAP
614 * - ERR_FATAL: we can continue parsing but not start the service
615 * - ERR_WARN: a warning has been emitted
616 * - ERR_ALERT: an alert has been emitted
617 * Only the two first ones can stop processing, the two others are just
618 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200619 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200620int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
621{
622 static struct peers *curpeers = NULL;
623 struct peer *newpeer = NULL;
624 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200625 struct bind_conf *bind_conf;
626 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200627 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100628 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100629 static int bind_line, peer_line;
630
631 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
632 int cur_arg;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100633 struct bind_conf *bind_conf;
634 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200635
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100636 cur_arg = 1;
637
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200638 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
639 err_code |= ERR_ALERT | ERR_ABORT;
640 goto out;
641 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100642
643 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
644 NULL, xprt_get(XPRT_RAW));
645 if (*args[0] == 'b') {
646 struct listener *l;
647
648 if (peer_line) {
649 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
650 err_code |= ERR_ALERT | ERR_FATAL;
651 goto out;
652 }
653
654 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
655 if (errmsg && *errmsg) {
656 indent_msg(&errmsg, 2);
657 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
658 }
659 else
660 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
661 file, linenum, args[0], args[1], args[2]);
662 err_code |= ERR_FATAL;
663 goto out;
664 }
665 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
666 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100667 l->accept = session_accept_fd;
668 l->analysers |= curpeers->peers_fe->fe_req_ana;
669 l->default_target = curpeers->peers_fe->default_target;
670 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100671 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100672
673 bind_line = 1;
674 if (cfg_peers->local) {
675 newpeer = cfg_peers->local;
676 }
677 else {
678 /* This peer is local.
679 * Note that we do not set the peer ID. This latter is initialized
680 * when parsing "peer" or "server" line.
681 */
682 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
683 if (!newpeer) {
684 err_code |= ERR_ALERT | ERR_ABORT;
685 goto out;
686 }
687 }
Willy Tarreau37159062020-08-27 07:48:42 +0200688 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200689 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100690 cur_arg++;
691 }
692
693 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
694 int ret;
695
696 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
697 err_code |= ret;
698 if (ret) {
699 if (errmsg && *errmsg) {
700 indent_msg(&errmsg, 2);
701 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
702 }
703 else
704 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
705 file, linenum, args[cur_arg]);
706 if (ret & ERR_FATAL)
707 goto out;
708 }
709 cur_arg += 1 + kw->skip;
710 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100711 if (*args[cur_arg] != 0) {
Willy Tarreau433b05f2021-03-12 10:14:07 +0100712 const char *best = bind_find_best_kw(args[cur_arg]);
713 if (best)
714 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section; did you mean '%s' maybe ?\n",
715 file, linenum, args[cur_arg], cursection, best);
716 else
717 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.\n",
718 file, linenum, args[cur_arg], cursection);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100719 err_code |= ERR_ALERT | ERR_FATAL;
720 goto out;
721 }
722 }
723 else if (strcmp(args[0], "default-server") == 0) {
724 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
725 err_code |= ERR_ALERT | ERR_ABORT;
726 goto out;
727 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100728 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
729 SRV_PARSE_DEFAULT_SERVER|SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200730 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100731 else if (strcmp(args[0], "log") == 0) {
732 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
733 err_code |= ERR_ALERT | ERR_ABORT;
734 goto out;
735 }
Emeric Brun9533a702021-04-02 10:13:43 +0200736 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), file, linenum, &errmsg)) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100737 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
738 err_code |= ERR_ALERT | ERR_FATAL;
739 goto out;
740 }
741 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200742 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100743 /* Initialize these static variables when entering a new "peers" section*/
744 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100745 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100746 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100747 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100748 goto out;
749 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200750
William Lallemand6e62fb62015-04-28 16:55:23 +0200751 if (alertif_too_many_args(1, file, linenum, args, &err_code))
752 goto out;
753
Emeric Brun32da3c42010-09-23 18:39:19 +0200754 err = invalid_char(args[1]);
755 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100756 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
757 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100758 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100759 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200760 }
761
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200762 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200763 /*
764 * If there are two proxies with the same name only following
765 * combinations are allowed:
766 */
767 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100768 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
769 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200770 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200771 }
772 }
773
Vincent Bernat02779b62016-04-03 13:48:43 +0200774 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100775 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200776 err_code |= ERR_ALERT | ERR_ABORT;
777 goto out;
778 }
779
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200780 curpeers->next = cfg_peers;
781 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200782 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200783 curpeers->conf.line = linenum;
784 curpeers->last_change = now.tv_sec;
785 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200786 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200787 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200788 else if (strcmp(args[0], "peer") == 0 ||
789 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100790 int local_peer, peer;
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100791 int parse_addr = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200792
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100793 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100794 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100795 /* The local peer may have already partially been parsed on a "bind" line. */
796 if (*args[0] == 'p') {
797 if (bind_line) {
798 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
799 err_code |= ERR_ALERT | ERR_FATAL;
800 goto out;
801 }
802 peer_line = 1;
803 }
804 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
805 /* The local peer has already been initialized on a "bind" line.
806 * Let's use it and store its ID.
807 */
808 newpeer = cfg_peers->local;
809 newpeer->id = strdup(localpeer);
810 }
811 else {
812 if (local_peer && cfg_peers->local) {
813 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
814 file, linenum, args[0], args[1],
815 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
816 err_code |= ERR_FATAL;
817 goto out;
818 }
819 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
820 if (!newpeer) {
821 err_code |= ERR_ALERT | ERR_ABORT;
822 goto out;
823 }
824 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200825
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100826 /* Line number and peer ID are updated only if this peer is the local one. */
827 if (init_peers_frontend(file,
828 newpeer->local ? linenum: -1,
829 newpeer->local ? newpeer->id : NULL,
830 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200831 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100832 goto out;
833 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100834
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100835 /* This initializes curpeer->peers->peers_fe->srv.
836 * The server address is parsed only if we are parsing a "peer" line,
837 * or if we are parsing a "server" line and the current peer is not the local one.
838 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100839 parse_addr = (peer || !local_peer) ? SRV_PARSE_PARSE_ADDR : 0;
840 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
841 SRV_PARSE_IN_PEER_SECTION|parse_addr|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200842 if (!curpeers->peers_fe->srv) {
843 /* Remove the newly allocated peer. */
844 if (newpeer != curpeers->local) {
845 struct peer *p;
846
847 p = curpeers->remote;
848 curpeers->remote = curpeers->remote->next;
849 free(p->id);
850 free(p);
851 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200852 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200853 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200854
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100855 /* If the peer address has just been parsed, let's copy it to <newpeer>
856 * and initializes ->proto.
857 */
858 if (peer || !local_peer) {
859 newpeer->addr = curpeers->peers_fe->srv->addr;
860 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
861 }
862
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100863 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200864 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100865 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200866
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100867 newpeer->srv = curpeers->peers_fe->srv;
868 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200869 goto out;
870
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100871 /* The lines above are reserved to "peer" lines. */
872 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200873 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200874
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100875 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW));
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100876
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100877 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
878 if (errmsg && *errmsg) {
879 indent_msg(&errmsg, 2);
880 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 +0100881 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100882 else
883 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
884 file, linenum, args[0], args[1], args[2]);
885 err_code |= ERR_FATAL;
886 goto out;
887 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100888
889 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
890 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100891 l->accept = session_accept_fd;
892 l->analysers |= curpeers->peers_fe->fe_req_ana;
893 l->default_target = curpeers->peers_fe->default_target;
894 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100895 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100896 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100897 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100898 struct stktable *t, *other;
899 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100900 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100901
902 /* Line number and peer ID are updated only if this peer is the local one. */
903 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
904 err_code |= ERR_ALERT | ERR_ABORT;
905 goto out;
906 }
907
908 other = stktable_find_by_name(args[1]);
909 if (other) {
910 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
911 file, linenum, args[1],
912 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
913 other->proxy ? other->id : other->peers.p->id,
914 other->conf.file, other->conf.line);
915 err_code |= ERR_ALERT | ERR_FATAL;
916 goto out;
917 }
918
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100919 /* Build the stick-table name, concatenating the "peers" section name
920 * followed by a '/' character and the table name argument.
921 */
922 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100923 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100924 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
925 file, linenum, args[0], args[1]);
926 err_code |= ERR_ALERT | ERR_FATAL;
927 goto out;
928 }
929
930 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100931 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100932 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
933 file, linenum, args[0], args[1]);
934 err_code |= ERR_ALERT | ERR_FATAL;
935 goto out;
936 }
937
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100938 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100939 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100940 if (!t || !id) {
941 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
942 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +0200943 free(t);
944 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100945 err_code |= ERR_ALERT | ERR_FATAL;
946 goto out;
947 }
948
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100949 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +0200950 if (err_code & ERR_FATAL) {
951 free(t);
952 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100953 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +0200954 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100955
956 stktable_store_name(t);
957 t->next = stktables_list;
958 stktables_list = t;
959 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100960 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200961 curpeers->disabled = 1;
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200962 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100963 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200964 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200965 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200966 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100967 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200968 err_code |= ERR_ALERT | ERR_FATAL;
969 goto out;
970 }
971
972out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100973 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200974 return err_code;
975}
976
Baptiste Assmann325137d2015-04-13 23:40:55 +0200977/*
William Lallemand51097192015-04-14 16:35:22 +0200978 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +0900979 * Returns the error code, 0 if OK, or any combination of :
980 * - ERR_ABORT: must abort ASAP
981 * - ERR_FATAL: we can continue parsing but not start the service
982 * - ERR_WARN: a warning has been emitted
983 * - ERR_ALERT: an alert has been emitted
984 * Only the two first ones can stop processing, the two others are just
985 * indicators.
986 */
987int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
988{
989 static struct mailers *curmailers = NULL;
990 struct mailer *newmailer = NULL;
991 const char *err;
992 int err_code = 0;
993 char *errmsg = NULL;
994
995 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
996 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100997 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +0900998 err_code |= ERR_ALERT | ERR_ABORT;
999 goto out;
1000 }
1001
1002 err = invalid_char(args[1]);
1003 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001004 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1005 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001006 err_code |= ERR_ALERT | ERR_ABORT;
1007 goto out;
1008 }
1009
1010 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1011 /*
1012 * If there are two proxies with the same name only following
1013 * combinations are allowed:
1014 */
1015 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001016 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1017 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001018 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001019 }
1020 }
1021
Vincent Bernat02779b62016-04-03 13:48:43 +02001022 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001023 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001024 err_code |= ERR_ALERT | ERR_ABORT;
1025 goto out;
1026 }
1027
1028 curmailers->next = mailers;
1029 mailers = curmailers;
1030 curmailers->conf.file = strdup(file);
1031 curmailers->conf.line = linenum;
1032 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001033 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1034 * But need enough time so that timeouts don't occur
1035 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001036 }
1037 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1038 struct sockaddr_storage *sk;
1039 int port1, port2;
1040 struct protocol *proto;
1041
1042 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001043 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1044 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001045 err_code |= ERR_ALERT | ERR_FATAL;
1046 goto out;
1047 }
1048
1049 err = invalid_char(args[1]);
1050 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001051 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1052 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001053 err_code |= ERR_ALERT | ERR_FATAL;
1054 goto out;
1055 }
1056
Vincent Bernat02779b62016-04-03 13:48:43 +02001057 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001058 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001059 err_code |= ERR_ALERT | ERR_ABORT;
1060 goto out;
1061 }
1062
1063 /* the mailers are linked backwards first */
1064 curmailers->count++;
1065 newmailer->next = curmailers->mailer_list;
1066 curmailers->mailer_list = newmailer;
1067 newmailer->mailers = curmailers;
1068 newmailer->conf.file = strdup(file);
1069 newmailer->conf.line = linenum;
1070
1071 newmailer->id = strdup(args[1]);
1072
Willy Tarreau5fc93282020-09-16 18:25:03 +02001073 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001074 &errmsg, NULL, NULL,
1075 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 +09001076 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001077 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001078 err_code |= ERR_ALERT | ERR_FATAL;
1079 goto out;
1080 }
1081
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001082 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001083 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1084 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001085 err_code |= ERR_ALERT | ERR_FATAL;
1086 goto out;
1087 }
1088
Simon Horman0d16a402015-01-30 11:22:58 +09001089 newmailer->addr = *sk;
1090 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001091 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001092 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001093 }
1094 else if (strcmp(args[0], "timeout") == 0) {
1095 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001096 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1097 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001098 err_code |= ERR_ALERT | ERR_FATAL;
1099 goto out;
1100 }
1101 else if (strcmp(args[1], "mail") == 0) {
1102 const char *res;
1103 unsigned int timeout_mail;
1104 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001105 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1106 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001107 err_code |= ERR_ALERT | ERR_FATAL;
1108 goto out;
1109 }
1110 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001111 if (res == PARSE_TIME_OVER) {
1112 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1113 file, linenum, args[2], args[0], args[1]);
1114 err_code |= ERR_ALERT | ERR_FATAL;
1115 goto out;
1116 }
1117 else if (res == PARSE_TIME_UNDER) {
1118 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1119 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001120 err_code |= ERR_ALERT | ERR_FATAL;
1121 goto out;
1122 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001123 else if (res) {
1124 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1125 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001126 err_code |= ERR_ALERT | ERR_FATAL;
1127 goto out;
1128 }
1129 curmailers->timeout.mail = timeout_mail;
1130 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001131 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001132 file, linenum, args[0], args[1]);
1133 err_code |= ERR_ALERT | ERR_FATAL;
1134 goto out;
1135 }
1136 }
Simon Horman0d16a402015-01-30 11:22:58 +09001137 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001138 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001139 err_code |= ERR_ALERT | ERR_FATAL;
1140 goto out;
1141 }
1142
1143out:
1144 free(errmsg);
1145 return err_code;
1146}
1147
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001148void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001149{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001150 ha_free(&p->email_alert.mailers.name);
1151 ha_free(&p->email_alert.from);
1152 ha_free(&p->email_alert.to);
1153 ha_free(&p->email_alert.myhostname);
Simon Horman9dc49962015-01-30 11:22:59 +09001154}
1155
Willy Tarreaubaaee002006-06-26 02:48:02 +02001156
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001157int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001158cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1159{
Willy Tarreaue5733232019-05-22 19:24:06 +02001160#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001161 const char *err;
1162 const char *item = args[0];
1163
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001164 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001165 return 0;
1166 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001167 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001168 size_t idx = 1;
1169 const char *current;
1170 while (*(current = args[idx++])) {
1171 err = invalid_char(current);
1172 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001173 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1174 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001175 return ERR_ALERT | ERR_FATAL;
1176 }
1177
1178 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001179 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1180 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001181 return ERR_ALERT | ERR_FATAL;
1182 }
1183 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001184 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1185 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001186 return ERR_ALERT | ERR_FATAL;
1187 }
1188 }
1189 }
1190
1191 return 0;
1192#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001193 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1194 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001195 return ERR_ALERT | ERR_FATAL;
1196#endif
1197}
1198
1199int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001200cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1201{
1202
1203 int err_code = 0;
1204 const char *err;
1205
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001206 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001207 struct userlist *newul;
1208
1209 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001210 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1211 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001212 err_code |= ERR_ALERT | ERR_FATAL;
1213 goto out;
1214 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001215 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1216 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001217
1218 err = invalid_char(args[1]);
1219 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001220 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1221 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001222 err_code |= ERR_ALERT | ERR_FATAL;
1223 goto out;
1224 }
1225
1226 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001227 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001228 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1229 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001230 err_code |= ERR_WARN;
1231 goto out;
1232 }
1233
Vincent Bernat02779b62016-04-03 13:48:43 +02001234 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001235 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001236 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001237 err_code |= ERR_ALERT | ERR_ABORT;
1238 goto out;
1239 }
1240
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001241 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001242 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001243 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001244 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001245 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001246 goto out;
1247 }
1248
1249 newul->next = userlist;
1250 userlist = newul;
1251
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001252 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001253 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001254 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001255 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001256
1257 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001258 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1259 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001260 err_code |= ERR_ALERT | ERR_FATAL;
1261 goto out;
1262 }
1263
1264 err = invalid_char(args[1]);
1265 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001266 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1267 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001268 err_code |= ERR_ALERT | ERR_FATAL;
1269 goto out;
1270 }
1271
William Lallemand4ac9f542015-05-28 18:03:51 +02001272 if (!userlist)
1273 goto out;
1274
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001275 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001276 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001277 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1278 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001279 err_code |= ERR_ALERT;
1280 goto out;
1281 }
1282
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001283 ag = calloc(1, sizeof(*ag));
1284 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001285 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001286 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001287 goto out;
1288 }
1289
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001290 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001291 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001292 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001293 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001294 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001295 goto out;
1296 }
1297
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001298 cur_arg = 2;
1299
1300 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001301 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001302 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001303 cur_arg += 2;
1304 continue;
1305 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001306 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1307 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001308 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001309 free(ag->groupusers);
1310 free(ag->name);
1311 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001312 goto out;
1313 }
1314 }
1315
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001316 ag->next = userlist->groups;
1317 userlist->groups = ag;
1318
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001319 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001320 struct auth_users *newuser;
1321 int cur_arg;
1322
1323 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001324 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1325 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001326 err_code |= ERR_ALERT | ERR_FATAL;
1327 goto out;
1328 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001329 if (!userlist)
1330 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001331
1332 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001333 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001334 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1335 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001336 err_code |= ERR_ALERT;
1337 goto out;
1338 }
1339
Vincent Bernat02779b62016-04-03 13:48:43 +02001340 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001341 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001342 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001343 err_code |= ERR_ALERT | ERR_ABORT;
1344 goto out;
1345 }
1346
1347 newuser->user = strdup(args[1]);
1348
1349 newuser->next = userlist->users;
1350 userlist->users = newuser;
1351
1352 cur_arg = 2;
1353
1354 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001355 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001356#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001357 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001358 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1359 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001360 err_code |= ERR_ALERT | ERR_FATAL;
1361 goto out;
1362 }
1363#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001364 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1365 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001366 err_code |= ERR_ALERT;
1367#endif
1368 newuser->pass = strdup(args[cur_arg + 1]);
1369 cur_arg += 2;
1370 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001371 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001372 newuser->pass = strdup(args[cur_arg + 1]);
1373 newuser->flags |= AU_O_INSECURE;
1374 cur_arg += 2;
1375 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001376 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001377 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001378 cur_arg += 2;
1379 continue;
1380 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001381 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1382 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001383 err_code |= ERR_ALERT | ERR_FATAL;
1384 goto out;
1385 }
1386 }
1387 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001388 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 +01001389 err_code |= ERR_ALERT | ERR_FATAL;
1390 }
1391
1392out:
1393 return err_code;
1394}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001395
Christopher Faulet79bdef32016-11-04 22:36:15 +01001396int
1397cfg_parse_scope(const char *file, int linenum, char *line)
1398{
1399 char *beg, *end, *scope = NULL;
1400 int err_code = 0;
1401 const char *err;
1402
1403 beg = line + 1;
1404 end = strchr(beg, ']');
1405
1406 /* Detect end of scope declaration */
1407 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001408 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1409 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001410 err_code |= ERR_ALERT | ERR_FATAL;
1411 goto out;
1412 }
1413
1414 /* Get scope name and check its validity */
1415 scope = my_strndup(beg, end-beg);
1416 err = invalid_char(scope);
1417 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001418 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1419 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001420 err_code |= ERR_ALERT | ERR_ABORT;
1421 goto out;
1422 }
1423
1424 /* Be sure to have a scope declaration alone on its line */
1425 line = end+1;
1426 while (isspace((unsigned char)*line))
1427 line++;
1428 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001429 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1430 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001431 err_code |= ERR_ALERT | ERR_ABORT;
1432 goto out;
1433 }
1434
1435 /* We have a valid scope declaration, save it */
1436 free(cfg_scope);
1437 cfg_scope = scope;
1438 scope = NULL;
1439
1440 out:
1441 free(scope);
1442 return err_code;
1443}
1444
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001445int
1446cfg_parse_track_sc_num(unsigned int *track_sc_num,
1447 const char *arg, const char *end, char **errmsg)
1448{
1449 const char *p;
1450 unsigned int num;
1451
1452 p = arg;
1453 num = read_uint64(&arg, end);
1454
1455 if (arg != end) {
1456 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1457 return -1;
1458 }
1459
1460 if (num >= MAX_SESS_STKCTR) {
1461 memprintf(errmsg, "%u track-sc number exceeding "
1462 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1463 return -1;
1464 }
1465
1466 *track_sc_num = num;
1467 return 0;
1468}
1469
Willy Tarreaubaaee002006-06-26 02:48:02 +02001470/*
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001471 * Detect a global section after a non-global one and output a diagnostic
1472 * warning.
1473 */
1474static void check_section_position(char *section_name,
1475 const char *file, int linenum,
1476 int *non_global_parsed)
1477{
1478 if (!strcmp(section_name, "global")) {
1479 if (*non_global_parsed == 1)
1480 _ha_diag_warning("parsing [%s:%d] : global section detected after a non-global one, the prevalence of their statements is unspecified\n", file, linenum);
1481 }
1482 else if (*non_global_parsed == 0) {
1483 *non_global_parsed = 1;
1484 }
1485}
1486
1487/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001488 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001489 * Returns the error code, 0 if OK, or any combination of :
1490 * - ERR_ABORT: must abort ASAP
1491 * - ERR_FATAL: we can continue parsing but not start the service
1492 * - ERR_WARN: a warning has been emitted
1493 * - ERR_ALERT: an alert has been emitted
1494 * Only the two first ones can stop processing, the two others are just
1495 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001496 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001497int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001498{
William Lallemand64e84512015-05-12 14:25:37 +02001499 char *thisline;
1500 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001501 FILE *f;
1502 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001503 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001504 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001505 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001506 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001507 char *outline = NULL;
1508 size_t outlen = 0;
1509 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001510 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001511 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001512 int nested_cond_lvl = 0;
1513 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001514 int non_global_section_parsed = 0;
William Lallemand64e84512015-05-12 14:25:37 +02001515
1516 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001517 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001518 return -1;
1519 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001520
David Carlier97880bb2016-04-08 10:35:26 +01001521 if ((f=fopen(file,"r")) == NULL) {
1522 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001523 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001524 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001525
William Lallemandb2f07452015-05-12 14:27:13 +02001526next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001527 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001528 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001529 char *end;
1530 char *args[MAX_LINE_ARGS + 1];
1531 char *line = thisline;
1532
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001533 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001534 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1535 file, linenum, (missing_lf + 1));
1536 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001537 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001538 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001539 }
1540
Willy Tarreaubaaee002006-06-26 02:48:02 +02001541 linenum++;
1542
Willy Tarreau32234e72020-06-16 17:14:33 +02001543 if (fatal >= 50) {
1544 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1545 break;
1546 }
1547
Willy Tarreaubaaee002006-06-26 02:48:02 +02001548 end = line + strlen(line);
1549
William Lallemand64e84512015-05-12 14:25:37 +02001550 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001551 /* Check if we reached the limit and the last char is not \n.
1552 * Watch out for the last line without the terminating '\n'!
1553 */
William Lallemand64e84512015-05-12 14:25:37 +02001554 char *newline;
1555 int newlinesize = linesize * 2;
1556
1557 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1558 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001559 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1560 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001561 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001562 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001563 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001564 continue;
1565 }
1566
1567 readbytes = linesize - 1;
1568 linesize = newlinesize;
1569 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001570 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001571 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001572 }
1573
William Lallemand64e84512015-05-12 14:25:37 +02001574 readbytes = 0;
1575
Willy Tarreau08488f62020-06-26 17:24:54 +02001576 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001577 /* kill trailing LF */
1578 *(end - 1) = 0;
1579 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001580 else {
1581 /* mark this line as truncated */
1582 missing_lf = end - line;
1583 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001584
Willy Tarreaubaaee002006-06-26 02:48:02 +02001585 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001586 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001587 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001588
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001589 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001590 err_code |= cfg_parse_scope(file, linenum, line);
1591 goto next_line;
1592 }
1593
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001594 while (1) {
1595 uint32_t err;
1596 char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001597
Willy Tarreau61dd44b2020-06-25 07:35:42 +02001598 arg = MAX_LINE_ARGS + 1;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001599 outlen = outlinesize;
1600 err = parse_line(line, outline, &outlen, args, &arg,
1601 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001602 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1603 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001604
1605 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001606 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1607
1608 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1609 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001610 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001611 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001612 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001613 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001614
1615 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001616 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1617
1618 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1619 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001620 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001621 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001622 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001623 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001624
1625 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001626 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1627
1628 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1629 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001630 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001631 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001632 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001633 }
William Lallemandb2f07452015-05-12 14:27:13 +02001634
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001635 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001636 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1637
1638 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1639 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001640 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001641 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001642 goto next_line;
1643 }
William Lallemandb2f07452015-05-12 14:27:13 +02001644
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001645 if (err & PARSE_ERR_WRONG_EXPAND) {
1646 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1647
1648 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1649 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1650 err_code |= ERR_ALERT | ERR_FATAL;
1651 fatal++;
1652 goto next_line;
1653 }
1654
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001655 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1656 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001657 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001658 if (outline == NULL) {
1659 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1660 file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001661 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001662 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001663 goto next_line;
William Lallemandb2f07452015-05-12 14:27:13 +02001664 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001665 /* try again */
1666 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001667 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001668
1669 if (err & PARSE_ERR_TOOMANY) {
1670 /* only check this *after* being sure the output is allocated */
1671 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1672 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1673 err_code |= ERR_ALERT | ERR_FATAL;
1674 fatal++;
1675 goto next_line;
1676 }
1677
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001678 /* everything's OK */
1679 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001680 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001681
1682 /* empty line */
1683 if (!**args)
1684 continue;
1685
Willy Tarreau4b103022021-02-12 17:59:10 +01001686 /* check for config macros */
1687 if (*args[0] == '.') {
1688 if (strcmp(args[0], ".if") == 0) {
1689 nested_cond_lvl++;
1690 if (nested_cond_lvl >= MAXNESTEDCONDS) {
1691 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
1692 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1693 goto err;
1694 }
1695
1696 if (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
1697 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
1698 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
1699 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
1700 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP) {
1701 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
1702 } else if (!*args[1] || *args[1] == '0') {
1703 /* empty = false */
1704 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
1705 } else if (atoi(args[1]) > 0) {
1706 /* true */
1707 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
1708 } else {
1709 ha_alert("parsing [%s:%d]: unparsable conditional expression '%s'.\n", file, linenum, args[1]);
1710 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1711 goto err;
1712 }
1713 goto next_line;
1714 }
1715 else if (strcmp(args[0], ".elif") == 0) {
1716 if (!nested_cond_lvl) {
1717 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
1718 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1719 goto err;
1720 }
1721
1722 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
1723 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
1724 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
1725 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1726 goto err;
1727 }
1728
1729 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
1730 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
1731 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
1732 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
1733 } else if (!*args[1] || *args[1] == '0') {
1734 /* empty = false */
1735 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
1736 } else if (atoi(args[1]) > 0) {
1737 /* true */
1738 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
1739 } else {
1740 ha_alert("parsing [%s:%d]: unparsable conditional expression '%s'.\n", file, linenum, args[1]);
1741 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1742 goto err;
1743 }
1744 goto next_line;
1745 }
1746 else if (strcmp(args[0], ".else") == 0) {
1747 if (!nested_cond_lvl) {
1748 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
1749 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1750 goto err;
1751 }
1752
1753 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
1754 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
1755 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
1756 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1757 goto err;
1758 }
1759
1760 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
1761 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
1762 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
1763 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
1764 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
1765 } else {
1766 /* otherwise we take the "else" */
1767 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
1768 }
1769 goto next_line;
1770 }
1771 else if (strcmp(args[0], ".endif") == 0) {
1772 if (!nested_cond_lvl) {
1773 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
1774 err_code |= ERR_ALERT | ERR_FATAL;
1775 fatal++;
1776 break;
1777 }
1778 nested_cond_lvl--;
1779 goto next_line;
1780 }
1781 }
1782
1783 if (nested_cond_lvl &&
1784 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
1785 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
1786 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
1787 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
1788 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
1789 /* The current block is masked out by the conditions */
1790 goto next_line;
1791 }
1792
1793 /* .warning/.error/.notice */
1794 if (*args[0] == '.') {
1795 if (strcmp(args[0], ".alert") == 0) {
1796 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
1797 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1798 goto err;
1799 }
1800 else if (strcmp(args[0], ".warning") == 0) {
1801 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
1802 err_code |= ERR_WARN;
1803 goto next_line;
1804 }
1805 else if (strcmp(args[0], ".notice") == 0) {
1806 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
1807 goto next_line;
1808 }
1809 else {
1810 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
1811 err_code |= ERR_ALERT | ERR_FATAL;
1812 fatal++;
1813 break;
1814 }
1815 }
1816
Willy Tarreau3842f002009-06-14 11:39:52 +02001817 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001818 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02001819 char *tmp;
1820
Willy Tarreau3842f002009-06-14 11:39:52 +02001821 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02001822 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001823 for (arg=0; *args[arg+1]; arg++)
1824 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02001825 *tmp = '\0'; // fix the next arg to \0
1826 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001827 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001828 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001829 kwm = KWM_DEF;
1830 for (arg=0; *args[arg+1]; arg++)
1831 args[arg] = args[arg+1]; // shift args after inversion
1832 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001833
William Dauchyec730982019-10-27 20:08:10 +01001834 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
1835 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01001836 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
1837 strcmp(args[0], "insecure-fork-wanted") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01001838 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01001839 "supported only for options, log, busy-polling, "
Willy Tarreaud96f1122019-12-03 07:07:36 +01001840 "set-dumpable, strict-limits, and insecure-fork-wanted.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02001841 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001842 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001843 }
1844
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001845 /* detect section start */
1846 list_for_each_entry(ics, &sections, list) {
1847 if (strcmp(args[0], ics->section_name) == 0) {
1848 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001849 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001850 cs = ics;
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001851
1852 if (global.mode & MODE_DIAG) {
1853 check_section_position(args[0], file, linenum,
1854 &non_global_section_parsed);
1855 }
1856
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001857 break;
1858 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001859 }
1860
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001861 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02001862 int status;
1863
1864 status = pcs->post_section_parser();
1865 err_code |= status;
1866 if (status & ERR_FATAL)
1867 fatal++;
1868
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001869 if (err_code & ERR_ABORT)
1870 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001871 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01001872 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001873
William Lallemandd2ff56d2017-10-16 11:06:50 +02001874 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001875 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02001876 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001877 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001878 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02001879 int status;
1880
1881 status = cs->section_parser(file, linenum, args, kwm);
1882 err_code |= status;
1883 if (status & ERR_FATAL)
1884 fatal++;
1885
William Lallemandd2ff56d2017-10-16 11:06:50 +02001886 if (err_code & ERR_ABORT)
1887 goto err;
1888 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001889 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02001890
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001891 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001892 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
1893 file, linenum, (missing_lf + 1));
1894 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001895 }
1896
Christopher Fauletbf7a9592018-12-02 09:37:38 +01001897 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001898 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02001899
Willy Tarreau4b103022021-02-12 17:59:10 +01001900 if (nested_cond_lvl) {
1901 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
1902 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1903 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02001904err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001905 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01001906 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001907 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001908 free(outline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001909 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02001910 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001911}
1912
Willy Tarreau64ab6072014-09-16 12:17:36 +02001913/* This function propagates processes from frontend <from> to backend <to> so
1914 * that it is always guaranteed that a backend pointed to by a frontend is
1915 * bound to all of its processes. After that, if the target is a "listen"
1916 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02001917 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02001918 * checked first to ensure that <to> is already bound to all processes of
1919 * <from>, there is no risk of looping and we ensure to follow the shortest
1920 * path to the destination.
1921 *
1922 * It is possible to set <to> to NULL for the first call so that the function
1923 * takes care of visiting the initial frontend in <from>.
1924 *
1925 * It is important to note that the function relies on the fact that all names
1926 * have already been resolved.
1927 */
1928void propagate_processes(struct proxy *from, struct proxy *to)
1929{
1930 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02001931
1932 if (to) {
1933 /* check whether we need to go down */
1934 if (from->bind_proc &&
1935 (from->bind_proc & to->bind_proc) == from->bind_proc)
1936 return;
1937
1938 if (!from->bind_proc && !to->bind_proc)
1939 return;
1940
1941 to->bind_proc = from->bind_proc ?
1942 (to->bind_proc | from->bind_proc) : 0;
1943
1944 /* now propagate down */
1945 from = to;
1946 }
1947
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01001948 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02001949 return;
1950
Willy Tarreauc3914d42020-09-24 08:39:22 +02001951 if (from->disabled)
Willy Tarreauf6b70012014-12-18 14:00:43 +01001952 return;
1953
Willy Tarreau64ab6072014-09-16 12:17:36 +02001954 /* default_backend */
1955 if (from->defbe.be)
1956 propagate_processes(from, from->defbe.be);
1957
1958 /* use_backend */
1959 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02001960 if (rule->dynamic)
1961 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02001962 to = rule->be.backend;
1963 propagate_processes(from, to);
1964 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02001965}
1966
Willy Tarreaubb925012009-07-23 13:36:36 +02001967/*
1968 * Returns the error code, 0 if OK, or any combination of :
1969 * - ERR_ABORT: must abort ASAP
1970 * - ERR_FATAL: we can continue parsing but not start the service
1971 * - ERR_WARN: a warning has been emitted
1972 * - ERR_ALERT: an alert has been emitted
1973 * Only the two first ones can stop processing, the two others are just
1974 * indicators.
1975 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001976int check_config_validity()
1977{
1978 int cfgerr = 0;
1979 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001980 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001981 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02001982 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02001983 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001984 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01001985 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02001986 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01001987 struct resolvers *curr_resolvers = NULL;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01001988 int i;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001989
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001990 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001991 /*
1992 * Now, check for the integrity of all that we have collected.
1993 */
1994
1995 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001996 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001997
Willy Tarreau193b8c62012-11-22 00:17:38 +01001998 if (!global.tune.max_http_hdr)
1999 global.tune.max_http_hdr = MAX_HTTP_HDR;
2000
2001 if (!global.tune.cookie_len)
2002 global.tune.cookie_len = CAPTURE_LEN;
2003
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002004 if (!global.tune.requri_len)
2005 global.tune.requri_len = REQURI_LEN;
2006
Willy Tarreau149ab772019-01-26 14:27:06 +01002007 if (!global.nbthread) {
2008 /* nbthread not set, thus automatic. In this case, and only if
2009 * running on a single process, we enable the same number of
2010 * threads as the number of CPUs the process is bound to. This
2011 * allows to easily control the number of threads using taskset.
2012 */
2013 global.nbthread = 1;
2014#if defined(USE_THREAD)
2015 if (global.nbproc == 1)
2016 global.nbthread = thread_cpus_enabled_at_boot;
2017 all_threads_mask = nbits(global.nbthread);
2018#endif
2019 }
2020
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002021 if (global.nbproc > 1 && global.nbthread > 1) {
2022 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2023 err_code |= ERR_ALERT | ERR_FATAL;
2024 goto out;
2025 }
2026
Willy Tarreaubafbe012017-11-24 17:34:44 +01002027 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002028
Willy Tarreaubafbe012017-11-24 17:34:44 +01002029 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002030
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002031 /* Post initialisation of the users and groups lists. */
2032 err_code = userlist_postinit();
2033 if (err_code != ERR_NONE)
2034 goto out;
2035
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002036 /* first, we will invert the proxy list order */
2037 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002038 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002039 struct proxy *next;
2040
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002041 next = proxies_list->next;
2042 proxies_list->next = curproxy;
2043 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002044 if (!next)
2045 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002046 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002047 }
2048
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002049 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002050 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002051 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002052 struct sticking_rule *mrule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002053 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002054 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002055 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002056
Willy Tarreau050536d2012-10-04 08:47:34 +02002057 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002058 /* proxy ID not set, use automatic numbering with first
2059 * spare entry starting with next_pxid.
2060 */
2061 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2062 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2063 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002064 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002065 next_pxid++;
2066
Willy Tarreau55ea7572007-06-17 19:56:27 +02002067
Willy Tarreauc3914d42020-09-24 08:39:22 +02002068 if (curproxy->disabled) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002069 /* ensure we don't keep listeners uselessly bound. We
2070 * can't disable their listeners yet (fdtab not
2071 * allocated yet) but let's skip them.
2072 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002073 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002074 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002075 curproxy->table->peers.p = NULL;
2076 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002077 continue;
2078 }
2079
Willy Tarreau102df612014-05-07 23:56:38 +02002080 /* Check multi-process mode compatibility for the current proxy */
2081
2082 if (curproxy->bind_proc) {
2083 /* an explicit bind-process was specified, let's check how many
2084 * processes remain.
2085 */
David Carliere6c39412015-07-02 07:00:17 +00002086 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002087
Willy Tarreaua38a7172019-02-02 17:11:28 +01002088 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002089 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002090 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 +02002091 curproxy->bind_proc = 1;
2092 }
2093 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002094 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 +02002095 curproxy->bind_proc = 0;
2096 }
2097 }
2098
Willy Tarreau3d209582014-05-09 17:06:11 +02002099 /* check and reduce the bind-proc of each listener */
2100 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2101 unsigned long mask;
2102
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002103 /* HTTP frontends with "h2" as ALPN/NPN will work in
2104 * HTTP/2 and absolutely require buffers 16kB or larger.
2105 */
2106#ifdef USE_OPENSSL
2107 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2108#ifdef OPENSSL_NPN_NEGOTIATED
2109 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002110 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002111 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",
2112 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002113 cfgerr++;
2114 }
2115#endif
2116#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2117 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002118 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002119 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",
2120 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002121 cfgerr++;
2122 }
2123#endif
2124 } /* HTTP && bufsize < 16384 */
2125#endif
2126
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002127 /* detect and address thread affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002128 mask = thread_mask(bind_conf->settings.bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002129 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002130 unsigned long new_mask = 0;
2131
2132 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002133 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002134 mask >>= global.nbthread;
2135 }
2136
Willy Tarreaue26993c2020-09-03 07:18:55 +02002137 bind_conf->settings.bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002138 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",
2139 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2140 }
2141
2142 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002143 mask = proc_mask(bind_conf->settings.bind_proc) & proc_mask(curproxy->bind_proc);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002144 if (!(mask & all_proc_mask)) {
2145 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02002146 nbproc = my_popcountl(bind_conf->settings.bind_proc);
2147 bind_conf->settings.bind_proc = proc_mask(bind_conf->settings.bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002148
Willy Tarreaue26993c2020-09-03 07:18:55 +02002149 if (!bind_conf->settings.bind_proc && nbproc == 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002150 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",
2151 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002152 bind_conf->settings.bind_proc = mask & ~(mask - 1);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002153 }
Willy Tarreaue26993c2020-09-03 07:18:55 +02002154 else if (!bind_conf->settings.bind_proc && nbproc > 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002155 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",
2156 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002157 bind_conf->settings.bind_proc = 0;
Willy Tarreaua36b3242019-02-02 13:14:34 +01002158 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002159 }
2160 }
2161
Willy Tarreauff01a212009-03-15 13:46:16 +01002162 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01002163 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002164 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002165 break;
2166
2167 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002168 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002169 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002170
2171 case PR_MODE_CLI:
2172 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2173 break;
Emeric Brun54932b42020-07-07 09:43:24 +02002174 case PR_MODE_SYSLOG:
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002175 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02002176 case PR_MODES:
2177 /* should not happen, bug gcc warn missing switch statement */
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002178 ha_alert("config : %s '%s' cannot use peers or syslog mode for this proxy. NOTE: PLEASE REPORT THIS TO DEVELOPERS AS YOU'RE NOT SUPPOSED TO BE ABLE TO CREATE A CONFIGURATION TRIGGERING THIS!\n",
Emeric Brun54932b42020-07-07 09:43:24 +02002179 proxy_type_str(curproxy), curproxy->id);
2180 cfgerr++;
2181 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002182 }
2183
Willy Tarreau4975d142021-03-13 11:00:33 +01002184 if (curproxy != global.cli_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002185 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2186 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002187 err_code |= ERR_WARN;
2188 }
2189
Willy Tarreau77e0dae2020-10-14 15:44:27 +02002190 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002191 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002192 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002193 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2194 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002195 cfgerr++;
2196 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002197#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002198 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002199 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2200 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002201 cfgerr++;
2202 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002203#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002204 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002205 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2206 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002207 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002208 }
2209 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002210 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002211 /* If no LB algo is set in a backend, and we're not in
2212 * transparent mode, dispatch mode nor proxy mode, we
2213 * want to use balance roundrobin by default.
2214 */
2215 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2216 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002217 }
2218 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002219
Willy Tarreau1620ec32011-08-06 17:05:02 +02002220 if (curproxy->options & PR_O_DISPATCH)
2221 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2222 else if (curproxy->options & PR_O_HTTP_PROXY)
2223 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2224 else if (curproxy->options & PR_O_TRANSP)
2225 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002226
Christopher Faulete5870d82020-04-15 11:32:03 +02002227 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2228 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2229 proxy_type_str(curproxy), curproxy->id);
2230 err_code |= ERR_WARN;
2231 }
2232
2233 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002234 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002235 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002236 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2237 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002238 err_code |= ERR_WARN;
2239 curproxy->options &= ~PR_O_DISABLE404;
2240 }
2241 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002242 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2243 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002244 err_code |= ERR_WARN;
2245 curproxy->options &= ~PR_O2_CHK_SNDST;
2246 }
Willy Tarreauef781042010-01-27 11:53:01 +01002247 }
2248
Simon Horman98637e52014-06-20 12:30:16 +09002249 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2250 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002251 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2252 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002253 cfgerr++;
2254 }
2255 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002256 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2257 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002258 cfgerr++;
2259 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002260 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2261 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2262 curproxy->id, "option external-check");
2263 err_code |= ERR_WARN;
2264 }
Simon Horman98637e52014-06-20 12:30:16 +09002265 }
2266
Simon Horman64e34162015-02-06 11:11:57 +09002267 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002268 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002269 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2270 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2271 "'email-alert myhostname', or 'email-alert to' "
2272 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2273 "to be present).\n",
2274 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002275 err_code |= ERR_WARN;
2276 free_email_alert(curproxy);
2277 }
2278 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002279 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002280 }
2281
Simon Horman98637e52014-06-20 12:30:16 +09002282 if (curproxy->check_command) {
2283 int clear = 0;
2284 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002285 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2286 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002287 err_code |= ERR_WARN;
2288 clear = 1;
2289 }
2290 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002291 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2292 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002293 cfgerr++;
2294 }
2295 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002296 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09002297 }
2298 }
2299
2300 if (curproxy->check_path) {
2301 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002302 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2303 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002304 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002305 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09002306 }
2307 }
2308
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002309 /* if a default backend was specified, let's find it */
2310 if (curproxy->defbe.name) {
2311 struct proxy *target;
2312
Willy Tarreauafb39922015-05-26 12:04:09 +02002313 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002314 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002315 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2316 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002317 cfgerr++;
2318 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002319 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2320 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002321 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002322 } else if (target->mode != curproxy->mode &&
2323 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2324
Christopher Faulet767a84b2017-11-24 16:50:31 +01002325 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2326 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2327 curproxy->conf.file, curproxy->conf.line,
2328 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2329 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002330 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002331 } else {
2332 free(curproxy->defbe.name);
2333 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002334 /* Emit a warning if this proxy also has some servers */
2335 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002336 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2337 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002338 err_code |= ERR_WARN;
2339 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002340 }
2341 }
2342
Willy Tarreau55ea7572007-06-17 19:56:27 +02002343 /* find the target proxy for 'use_backend' rules */
2344 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002345 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002346 struct logformat_node *node;
2347 char *pxname;
2348
2349 /* Try to parse the string as a log format expression. If the result
2350 * of the parsing is only one entry containing a simple string, then
2351 * it's a standard string corresponding to a static rule, thus the
2352 * parsing is cancelled and be.name is restored to be resolved.
2353 */
2354 pxname = rule->be.name;
2355 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002356 curproxy->conf.args.ctx = ARGC_UBK;
2357 curproxy->conf.args.file = rule->file;
2358 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002359 err = NULL;
2360 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002361 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2362 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002363 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002364 cfgerr++;
2365 continue;
2366 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002367 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2368
2369 if (!LIST_ISEMPTY(&rule->be.expr)) {
2370 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2371 rule->dynamic = 1;
2372 free(pxname);
2373 continue;
2374 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002375 /* Only one element in the list, a simple string: free the expression and
2376 * fall back to static rule
2377 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002378 LIST_DELETE(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002379 free(node->arg);
2380 free(node);
2381 }
2382
2383 rule->dynamic = 0;
2384 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002385
Willy Tarreauafb39922015-05-26 12:04:09 +02002386 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002387 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002388 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2389 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002390 cfgerr++;
2391 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002392 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2393 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002394 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002395 } else if (target->mode != curproxy->mode &&
2396 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2397
Christopher Faulet767a84b2017-11-24 16:50:31 +01002398 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2399 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2400 curproxy->conf.file, curproxy->conf.line,
2401 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2402 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002403 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002404 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002405 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002406 rule->be.backend = target;
2407 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01002408 err_code |= warnif_tcp_http_cond(curproxy, rule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002409 }
2410
Willy Tarreau64ab6072014-09-16 12:17:36 +02002411 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002412 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002413 struct server *target;
2414 struct logformat_node *node;
2415 char *server_name;
2416
2417 /* We try to parse the string as a log format expression. If the result of the parsing
2418 * is only one entry containing a single string, then it's a standard string corresponding
2419 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2420 */
2421 server_name = srule->srv.name;
2422 LIST_INIT(&srule->expr);
2423 curproxy->conf.args.ctx = ARGC_USRV;
2424 err = NULL;
2425 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2426 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2427 srule->file, srule->line, server_name, err);
2428 free(err);
2429 cfgerr++;
2430 continue;
2431 }
2432 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2433
2434 if (!LIST_ISEMPTY(&srule->expr)) {
2435 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2436 srule->dynamic = 1;
2437 free(server_name);
2438 continue;
2439 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002440 /* Only one element in the list, a simple string: free the expression and
2441 * fall back to static rule
2442 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002443 LIST_DELETE(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002444 free(node->arg);
2445 free(node);
2446 }
2447
2448 srule->dynamic = 0;
2449 srule->srv.name = server_name;
2450 target = findserver(curproxy, srule->srv.name);
Christopher Faulet581db2b2021-03-26 10:02:46 +01002451 err_code |= warnif_tcp_http_cond(curproxy, srule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002452
2453 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002454 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2455 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002456 cfgerr++;
2457 continue;
2458 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01002459 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002460 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002461 }
2462
Emeric Brunb982a3d2010-01-04 15:45:53 +01002463 /* find the target table for 'stick' rules */
2464 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002465 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002466
Emeric Brun1d33b292010-01-04 15:47:17 +01002467 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2468 if (mrule->flags & STK_IS_STORE)
2469 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2470
Emeric Brunb982a3d2010-01-04 15:45:53 +01002471 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002472 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002473 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002474 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002475
2476 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002477 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002478 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002479 cfgerr++;
2480 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002481 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002482 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2483 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002484 cfgerr++;
2485 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002486 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002487 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2488 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002489 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002490 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002491 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002492 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002493 mrule->table.t = target;
2494 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07002495 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002496 if (!in_proxies_list(target->proxies_list, curproxy)) {
2497 curproxy->next_stkt_ref = target->proxies_list;
2498 target->proxies_list = curproxy;
2499 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002500 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01002501 err_code |= warnif_tcp_http_cond(curproxy, mrule->cond);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002502 }
2503
2504 /* find the target table for 'store response' rules */
2505 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002506 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002507
Emeric Brun1d33b292010-01-04 15:47:17 +01002508 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2509
Emeric Brunb982a3d2010-01-04 15:45:53 +01002510 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002511 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002512 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002513 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002514
2515 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002516 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002517 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002518 cfgerr++;
2519 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002520 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002521 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2522 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002523 cfgerr++;
2524 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002525 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002526 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2527 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002528 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002529 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002530 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002531 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002532 mrule->table.t = target;
2533 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07002534 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002535 if (!in_proxies_list(target->proxies_list, curproxy)) {
2536 curproxy->next_stkt_ref = target->proxies_list;
2537 target->proxies_list = curproxy;
2538 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002539 }
2540 }
2541
Christopher Faulet42c6cf92021-03-25 17:19:04 +01002542 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
2543 cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code);
2544 cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code);
2545 cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code);
2546 cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code);
2547 cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code);
2548 cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code);
2549 cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002550
Christopher Faulet5eef0182021-03-31 17:13:49 +02002551 /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */
2552 if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) {
2553 if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP)
2554 ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. "
2555 "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n",
2556 curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy));
2557 }
2558
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002559 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002560 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002561
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002562 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002563 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002564 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002565 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002566 break;
2567 }
2568 }
2569
2570 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002571 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002572 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01002573 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002574 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002575 cfgerr++;
2576 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02002577 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002578 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002579 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002580 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002581 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002582 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2583 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002584 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002585 cfgerr++;
2586 }
2587 }
2588
Simon Horman9dc49962015-01-30 11:22:59 +09002589
2590 if (curproxy->email_alert.mailers.name) {
2591 struct mailers *curmailers = mailers;
2592
2593 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002594 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09002595 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002596 }
Simon Horman9dc49962015-01-30 11:22:59 +09002597 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002598 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2599 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002600 free_email_alert(curproxy);
2601 cfgerr++;
2602 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002603 else {
2604 err = NULL;
2605 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002606 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002607 free(err);
2608 cfgerr++;
2609 }
2610 }
Simon Horman9dc49962015-01-30 11:22:59 +09002611 }
2612
Willy Tarreau5bbc6762021-02-12 11:49:25 +01002613 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002614 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002615 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002616 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2617 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002618 cfgerr++;
2619 goto out_uri_auth_compat;
2620 }
2621
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002622 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01002623 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002624 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002625 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002626 struct act_rule *rule;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002627 i = 0;
2628
Willy Tarreau95fa4692010-02-01 13:05:50 +01002629 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2630 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002631
2632 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002633 uri_auth_compat_req[i++] = "realm";
2634 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2635 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002636
Willy Tarreau95fa4692010-02-01 13:05:50 +01002637 uri_auth_compat_req[i++] = "unless";
2638 uri_auth_compat_req[i++] = "{";
2639 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2640 uri_auth_compat_req[i++] = "}";
2641 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002642
Willy Tarreauff011f22011-01-06 17:51:27 +01002643 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2644 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002645 cfgerr++;
2646 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002647 }
2648
Willy Tarreau2b718102021-04-21 07:32:39 +02002649 LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002650
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002651 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002652 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002653 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01002654 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002655 }
2656out_uri_auth_compat:
2657
Dragan Dosen43885c72015-10-01 13:18:13 +02002658 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002659 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002660 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2661 if (!curproxy->conf.logformat_sd_string) {
2662 /* set the default logformat_sd_string */
2663 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2664 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002665 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002666 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002667 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002668
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002669 /* compile the log format */
2670 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002671 if (curproxy->conf.logformat_string != default_http_log_format &&
2672 curproxy->conf.logformat_string != default_tcp_log_format &&
2673 curproxy->conf.logformat_string != clf_http_log_format)
2674 free(curproxy->conf.logformat_string);
2675 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002676 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02002677 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002678
2679 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2680 free(curproxy->conf.logformat_sd_string);
2681 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002682 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002683 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002684 }
2685
Willy Tarreau62a61232013-04-12 18:13:46 +02002686 if (curproxy->conf.logformat_string) {
2687 curproxy->conf.args.ctx = ARGC_LOG;
2688 curproxy->conf.args.file = curproxy->conf.lfs_file;
2689 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002690 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002691 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
2692 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002693 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002694 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
2695 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002696 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002697 cfgerr++;
2698 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002699 curproxy->conf.args.file = NULL;
2700 curproxy->conf.args.line = 0;
2701 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002702
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002703 if (curproxy->conf.logformat_sd_string) {
2704 curproxy->conf.args.ctx = ARGC_LOGSD;
2705 curproxy->conf.args.file = curproxy->conf.lfsd_file;
2706 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002707 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002708 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
2709 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002710 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002711 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2712 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002713 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002714 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002715 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002716 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2717 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002718 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002719 cfgerr++;
2720 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002721 curproxy->conf.args.file = NULL;
2722 curproxy->conf.args.line = 0;
2723 }
2724
Willy Tarreau62a61232013-04-12 18:13:46 +02002725 if (curproxy->conf.uniqueid_format_string) {
2726 curproxy->conf.args.ctx = ARGC_UIF;
2727 curproxy->conf.args.file = curproxy->conf.uif_file;
2728 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002729 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002730 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
2731 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES,
2732 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR
2733 : SMP_VAL_BE_HRQ_HDR,
2734 &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002735 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
2736 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002737 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002738 cfgerr++;
2739 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002740 curproxy->conf.args.file = NULL;
2741 curproxy->conf.args.line = 0;
2742 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002743
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002744 /* only now we can check if some args remain unresolved.
2745 * This must be done after the users and groups resolution.
2746 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01002747 err = NULL;
2748 i = smp_resolve_args(curproxy, &err);
2749 cfgerr += i;
2750 if (i) {
2751 indent_msg(&err, 8);
2752 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
2753 ha_free(&err);
2754 } else
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002755 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002756
Willy Tarreau2738a142006-07-08 17:28:09 +02002757 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002758 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02002759 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02002760 (!curproxy->timeout.connect ||
2761 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002762 ha_warning("config : missing timeouts for %s '%s'.\n"
2763 " | While not properly invalid, you will certainly encounter various problems\n"
2764 " | with such a configuration. To fix this, please ensure that all following\n"
2765 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
2766 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002767 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02002768 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02002769
Willy Tarreau1fa31262007-12-03 00:36:16 +01002770 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
2771 * We must still support older configurations, so let's find out whether those
2772 * parameters have been set or must be copied from contimeouts.
2773 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01002774 if (!curproxy->timeout.tarpit)
2775 curproxy->timeout.tarpit = curproxy->timeout.connect;
2776 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
2777 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002778
Christopher Faulete5870d82020-04-15 11:32:03 +02002779 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002780 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
2781 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02002782 err_code |= ERR_WARN;
2783 }
2784
Willy Tarreau193b8c62012-11-22 00:17:38 +01002785 /* ensure that cookie capture length is not too large */
2786 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002787 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
2788 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002789 err_code |= ERR_WARN;
2790 curproxy->capture_len = global.tune.cookie_len - 1;
2791 }
2792
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002793 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01002794 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02002795 curproxy->req_cap_pool = create_pool("ptrcap",
2796 curproxy->nb_req_cap * sizeof(char *),
2797 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01002798 }
2799
2800 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02002801 curproxy->rsp_cap_pool = create_pool("ptrcap",
2802 curproxy->nb_rsp_cap * sizeof(char *),
2803 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01002804 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002805
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002806 switch (curproxy->load_server_state_from_file) {
2807 case PR_SRV_STATE_FILE_UNSPEC:
2808 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
2809 break;
2810 case PR_SRV_STATE_FILE_GLOBAL:
2811 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002812 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",
2813 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002814 err_code |= ERR_WARN;
2815 }
2816 break;
2817 }
2818
Willy Tarreaubaaee002006-06-26 02:48:02 +02002819 /* first, we will invert the servers list order */
2820 newsrv = NULL;
2821 while (curproxy->srv) {
2822 struct server *next;
2823
2824 next = curproxy->srv->next;
2825 curproxy->srv->next = newsrv;
2826 newsrv = curproxy->srv;
2827 if (!next)
2828 break;
2829 curproxy->srv = next;
2830 }
2831
Willy Tarreau17edc812014-01-03 12:14:34 +01002832 /* Check that no server name conflicts. This causes trouble in the stats.
2833 * We only emit a warning for the first conflict affecting each server,
2834 * in order to avoid combinatory explosion if all servers have the same
2835 * name. We do that only for servers which do not have an explicit ID,
2836 * because these IDs were made also for distinguishing them and we don't
2837 * want to annoy people who correctly manage them.
2838 */
2839 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
2840 struct server *other_srv;
2841
2842 if (newsrv->puid)
2843 continue;
2844
2845 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
2846 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02002847 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 +01002848 newsrv->conf.file, newsrv->conf.line,
2849 proxy_type_str(curproxy), curproxy->id,
2850 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02002851 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01002852 break;
2853 }
2854 }
2855 }
2856
Willy Tarreaudd701652010-05-25 23:03:02 +02002857 /* assign automatic UIDs to servers which don't have one yet */
2858 next_id = 1;
2859 newsrv = curproxy->srv;
2860 while (newsrv != NULL) {
2861 if (!newsrv->puid) {
2862 /* server ID not set, use automatic numbering with first
2863 * spare entry starting with next_svid.
2864 */
2865 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
2866 newsrv->conf.id.key = newsrv->puid = next_id;
2867 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02002868 newsrv->conf.name.key = newsrv->id;
2869 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02002870 }
2871 next_id++;
2872 newsrv = newsrv->next;
2873 }
2874
Willy Tarreau20697042007-11-15 23:26:18 +01002875 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01002876 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002877
Willy Tarreau62c3be22012-01-20 13:12:32 +01002878 /*
2879 * If this server supports a maxconn parameter, it needs a dedicated
2880 * tasks to fill the emptied slots when a connection leaves.
2881 * Also, resolve deferred tracking dependency if needed.
2882 */
2883 newsrv = curproxy->srv;
2884 while (newsrv != NULL) {
2885 if (newsrv->minconn > newsrv->maxconn) {
2886 /* Only 'minconn' was specified, or it was higher than or equal
2887 * to 'maxconn'. Let's turn this into maxconn and clean it, as
2888 * this will avoid further useless expensive computations.
2889 */
2890 newsrv->maxconn = newsrv->minconn;
2891 } else if (newsrv->maxconn && !newsrv->minconn) {
2892 /* minconn was not specified, so we set it to maxconn */
2893 newsrv->minconn = newsrv->maxconn;
2894 }
2895
William Dauchyf6370442020-11-14 19:25:33 +01002896 /* this will also properly set the transport layer for
2897 * prod and checks
2898 * if default-server have use_ssl, prerare ssl init
2899 * without activating it */
2900 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
2901 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
2902 (newsrv->use_ssl != 1 && curproxy->defsrv.use_ssl == 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01002903 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
2904 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
2905 }
Emeric Brun94324a42012-10-11 14:00:19 +02002906
Willy Tarreau034c88c2017-01-23 23:36:45 +01002907 if ((newsrv->flags & SRV_F_FASTOPEN) &&
2908 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
2909 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
2910 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",
2911 newsrv->conf.file, newsrv->conf.line,
2912 proxy_type_str(curproxy), curproxy->id,
2913 newsrv->id);
2914
Willy Tarreau62c3be22012-01-20 13:12:32 +01002915 if (newsrv->trackit) {
2916 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02002917 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01002918 char *pname, *sname;
2919
2920 pname = newsrv->trackit;
2921 sname = strrchr(pname, '/');
2922
2923 if (sname)
2924 *sname++ = '\0';
2925 else {
2926 sname = pname;
2927 pname = NULL;
2928 }
2929
2930 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02002931 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002932 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002933 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
2934 proxy_type_str(curproxy), curproxy->id,
2935 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002936 cfgerr++;
2937 goto next_srv;
2938 }
2939 } else
2940 px = curproxy;
2941
2942 srv = findserver(px, sname);
2943 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002944 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
2945 proxy_type_str(curproxy), curproxy->id,
2946 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002947 cfgerr++;
2948 goto next_srv;
2949 }
2950
Christopher Faulet8892e5d2020-03-26 19:48:20 +01002951 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002952 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
2953 "tracking as it does not have any check nor agent enabled.\n",
2954 proxy_type_str(curproxy), curproxy->id,
2955 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02002956 cfgerr++;
2957 goto next_srv;
2958 }
2959
2960 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
2961
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01002962 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002963 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
2964 "belongs to a tracking chain looping back to %s/%s.\n",
2965 proxy_type_str(curproxy), curproxy->id,
2966 newsrv->id, px->id, srv->id, px->id,
2967 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002968 cfgerr++;
2969 goto next_srv;
2970 }
2971
2972 if (curproxy != px &&
2973 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002974 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
2975 "tracking: disable-on-404 option inconsistency.\n",
2976 proxy_type_str(curproxy), curproxy->id,
2977 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002978 cfgerr++;
2979 goto next_srv;
2980 }
2981
Willy Tarreau62c3be22012-01-20 13:12:32 +01002982 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01002983 newsrv->tracknext = srv->trackers;
2984 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01002985
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002986 ha_free(&newsrv->trackit);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002987 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002988
Willy Tarreau62c3be22012-01-20 13:12:32 +01002989 next_srv:
2990 newsrv = newsrv->next;
2991 }
2992
Olivier Houchard4e694042017-03-14 20:01:29 +01002993 /*
2994 * Try to generate dynamic cookies for servers now.
2995 * It couldn't be done earlier, since at the time we parsed
2996 * the server line, we may not have known yet that we
2997 * should use dynamic cookies, or the secret key may not
2998 * have been provided yet.
2999 */
3000 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3001 newsrv = curproxy->srv;
3002 while (newsrv != NULL) {
3003 srv_set_dyncookie(newsrv);
3004 newsrv = newsrv->next;
3005 }
3006
3007 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003008 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003009 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003010 */
3011
3012 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3013 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3014 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003015 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3016 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3017 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003018 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3019 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3020 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003021 } else {
3022 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3023 fwrr_init_server_groups(curproxy);
3024 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003025 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003026
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003027 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003028 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3029 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3030 fwlc_init_server_tree(curproxy);
3031 } else {
3032 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3033 fas_init_server_tree(curproxy);
3034 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003035 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003036
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003037 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003038 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3039 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3040 chash_init_server_tree(curproxy);
3041 } else {
3042 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3043 init_server_map(curproxy);
3044 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003045 break;
3046 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003047 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003048
3049 if (curproxy->options & PR_O_LOGASAP)
3050 curproxy->to_log &= ~LW_BYTES;
3051
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003052 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003053 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3054 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003055 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3056 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003057 err_code |= ERR_WARN;
3058 }
3059
Christopher Faulet3b6446f2021-03-15 15:10:38 +01003060 if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) {
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003061 int optnum;
3062
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003063 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003064 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3065 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003066 err_code |= ERR_WARN;
3067 curproxy->uri_auth = NULL;
3068 }
3069
Willy Tarreaude7dc882017-03-10 11:49:21 +01003070 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003071 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3072 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003073 err_code |= ERR_WARN;
3074 }
3075
3076 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003077 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3078 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003079 err_code |= ERR_WARN;
3080 }
3081
3082 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003083 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3084 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003085 err_code |= ERR_WARN;
3086 }
3087
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003088 if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) {
3089 ha_warning("config : 'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3090 proxy_type_str(curproxy), curproxy->id);
3091 err_code |= ERR_WARN;
3092 }
3093
Willy Tarreaude7dc882017-03-10 11:49:21 +01003094 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003095 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3096 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003097 err_code |= ERR_WARN;
3098 }
3099
Willy Tarreau87cf5142011-08-19 22:57:24 +02003100 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003101 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3102 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003103 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003104 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003105 }
3106
3107 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003108 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3109 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003110 err_code |= ERR_WARN;
3111 curproxy->options &= ~PR_O_ORGTO;
3112 }
3113
3114 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3115 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3116 (curproxy->cap & cfg_opts[optnum].cap) &&
3117 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003118 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3119 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003120 err_code |= ERR_WARN;
3121 curproxy->options &= ~cfg_opts[optnum].val;
3122 }
3123 }
3124
3125 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3126 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3127 (curproxy->cap & cfg_opts2[optnum].cap) &&
3128 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003129 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3130 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003131 err_code |= ERR_WARN;
3132 curproxy->options2 &= ~cfg_opts2[optnum].val;
3133 }
3134 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003135
Willy Tarreau29fbe512015-08-20 19:35:14 +02003136#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003137 if (curproxy->conn_src.bind_hdr_occ) {
3138 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003139 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3140 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003141 err_code |= ERR_WARN;
3142 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003143#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003144 }
3145
Willy Tarreaubaaee002006-06-26 02:48:02 +02003146 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003147 * ensure that we're not cross-dressing a TCP server into HTTP.
3148 */
3149 newsrv = curproxy->srv;
3150 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003151 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003152 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3153 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003154 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003155 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003156
Willy Tarreau0cec3312011-10-31 13:49:26 +01003157 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003158 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3159 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003160 err_code |= ERR_WARN;
3161 }
3162
Willy Tarreauc93cd162014-05-13 15:54:22 +02003163 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003164 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3165 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003166 err_code |= ERR_WARN;
3167 }
3168
Willy Tarreau29fbe512015-08-20 19:35:14 +02003169#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003170 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3171 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003172 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3173 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003174 err_code |= ERR_WARN;
3175 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003176#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003177
Willy Tarreau46deab62018-04-28 07:18:15 +02003178 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3179 curproxy->options &= ~PR_O_REUSE_MASK;
3180
Willy Tarreau21d2af32008-02-14 20:25:24 +01003181 newsrv = newsrv->next;
3182 }
3183
Christopher Fauletd7c91962015-04-30 11:48:27 +02003184 /* Check filter configuration, if any */
3185 cfgerr += flt_check(curproxy);
3186
Willy Tarreauc1a21672009-08-16 22:37:44 +02003187 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003188 if (!curproxy->accept)
3189 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003190
Willy Tarreauc1a21672009-08-16 22:37:44 +02003191 if (curproxy->tcp_req.inspect_delay ||
3192 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003193 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003194
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003195 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003196 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003197 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003198 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003199
William Lallemandcf62f7e2018-10-26 14:47:40 +02003200 if (curproxy->mode == PR_MODE_CLI) {
3201 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3202 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3203 }
3204
Willy Tarreauc1a21672009-08-16 22:37:44 +02003205 /* both TCP and HTTP must check switching rules */
3206 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003207
3208 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003209 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003210 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3211 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 +02003212 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003213 }
3214
3215 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003216 if (curproxy->tcp_req.inspect_delay ||
3217 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3218 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3219
Emeric Brun97679e72010-09-23 17:56:44 +02003220 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3221 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3222
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003223 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003224 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003225 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003226 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003227
3228 /* If the backend does requires RDP cookie persistence, we have to
3229 * enable the corresponding analyser.
3230 */
3231 if (curproxy->options2 & PR_O2_RDPC_PRST)
3232 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003233
3234 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003235 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003236 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3237 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 +02003238 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003239 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003240
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003241 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003242 * attached to the current proxy */
3243 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3244 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003245 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003246
3247 if (!bind_conf->mux_proto)
3248 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003249
3250 /* it is possible that an incorrect mux was referenced
3251 * due to the proxy's mode not being taken into account
3252 * on first pass. Let's adjust it now.
3253 */
3254 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3255
3256 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003257 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3258 proxy_type_str(curproxy), curproxy->id,
3259 (int)bind_conf->mux_proto->token.len,
3260 bind_conf->mux_proto->token.ptr,
3261 bind_conf->arg, bind_conf->file, bind_conf->line);
3262 cfgerr++;
3263 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003264
3265 /* update the mux */
3266 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003267 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003268 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3269 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003270 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003271
3272 if (!newsrv->mux_proto)
3273 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003274
3275 /* it is possible that an incorrect mux was referenced
3276 * due to the proxy's mode not being taken into account
3277 * on first pass. Let's adjust it now.
3278 */
3279 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3280
3281 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003282 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3283 proxy_type_str(curproxy), curproxy->id,
3284 (int)newsrv->mux_proto->token.len,
3285 newsrv->mux_proto->token.ptr,
3286 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3287 cfgerr++;
3288 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003289
3290 /* update the mux */
3291 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003292 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01003293 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003294
Willy Tarreau4cdac162021-03-05 10:48:42 +01003295 /***********************************************************/
3296 /* At this point, target names have already been resolved. */
3297 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01003298
Willy Tarreau4cdac162021-03-05 10:48:42 +01003299 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01003300
Willy Tarreau4cdac162021-03-05 10:48:42 +01003301 list_for_each_entry(newsrv, &servers_list, global_list) {
3302 /* initialize idle conns lists */
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003303 newsrv->per_thr = calloc(global.nbthread, sizeof(*newsrv->per_thr));
3304 if (!newsrv->per_thr) {
3305 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
3306 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01003307 cfgerr++;
3308 continue;
3309 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003310
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003311 for (i = 0; i < global.nbthread; i++) {
3312 newsrv->per_thr[i].idle_conns = EB_ROOT;
3313 newsrv->per_thr[i].safe_conns = EB_ROOT;
3314 newsrv->per_thr[i].avail_conns = EB_ROOT;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01003315 MT_LIST_INIT(&newsrv->per_thr[i].streams);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003316 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003317
Willy Tarreau4cdac162021-03-05 10:48:42 +01003318 if (newsrv->max_idle_conns != 0) {
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003319 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
3320 if (!newsrv->curr_idle_thr) {
3321 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3322 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3323 cfgerr++;
3324 continue;
3325 }
3326 }
3327 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003328
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003329 idle_conn_task = task_new(MAX_THREADS_MASK);
3330 if (!idle_conn_task) {
3331 ha_alert("parsing : failed to allocate global idle connection task.\n");
3332 cfgerr++;
3333 }
3334 else {
3335 idle_conn_task->process = srv_cleanup_idle_conns;
3336 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003337
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003338 for (i = 0; i < global.nbthread; i++) {
3339 idle_conns[i].cleanup_task = task_new(1UL << i);
3340 if (!idle_conns[i].cleanup_task) {
3341 ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i);
3342 cfgerr++;
3343 break;
Willy Tarreau4cdac162021-03-05 10:48:42 +01003344 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003345
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003346 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
3347 idle_conns[i].cleanup_task->context = NULL;
3348 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
3349 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Willy Tarreau835daa12019-02-07 14:46:29 +01003350 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003351 }
3352
Willy Tarreau419ead82014-09-16 13:41:21 +02003353 /* Check multi-process mode compatibility */
3354
Willy Tarreau4975d142021-03-13 11:00:33 +01003355 if (global.nbproc > 1 && global.cli_fe) {
3356 list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003357 unsigned long mask;
3358
Willy Tarreau4975d142021-03-13 11:00:33 +01003359 mask = proc_mask(global.cli_fe->bind_proc) && all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02003360 mask &= proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003361
3362 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003363 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003364 break;
3365 }
Willy Tarreau4975d142021-03-13 11:00:33 +01003366 if (&bind_conf->by_fe != &global.cli_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003367 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 +02003368 }
3369 }
3370
3371 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003372 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003373 if (curproxy->bind_proc)
3374 continue;
3375
3376 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3377 unsigned long mask;
3378
Willy Tarreaue26993c2020-09-03 07:18:55 +02003379 mask = proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003380 curproxy->bind_proc |= mask;
3381 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003382 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003383 }
3384
Willy Tarreau4975d142021-03-13 11:00:33 +01003385 if (global.cli_fe) {
3386 list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003387 unsigned long mask;
3388
Willy Tarreaue26993c2020-09-03 07:18:55 +02003389 mask = bind_conf->settings.bind_proc ? bind_conf->settings.bind_proc : 0;
Willy Tarreau4975d142021-03-13 11:00:33 +01003390 global.cli_fe->bind_proc |= mask;
Willy Tarreau419ead82014-09-16 13:41:21 +02003391 }
Willy Tarreau4975d142021-03-13 11:00:33 +01003392 global.cli_fe->bind_proc = proc_mask(global.cli_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003393 }
3394
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003395 /* propagate bindings from frontends to backends. Don't do it if there
3396 * are any fatal errors as we must not call it with unresolved proxies.
3397 */
3398 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003399 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003400 if (curproxy->cap & PR_CAP_FE)
3401 propagate_processes(curproxy, NULL);
3402 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003403 }
3404
3405 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003406 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3407 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003408
3409 /*******************************************************/
3410 /* At this step, all proxies have a non-null bind_proc */
3411 /*******************************************************/
3412
3413 /* perform the final checks before creating tasks */
3414
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003415 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003416 struct listener *listener;
3417 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003418
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003419 /* Configure SSL for each bind line.
3420 * Note: if configuration fails at some point, the ->ctx member
3421 * remains NULL so that listeners can later detach.
3422 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003423 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003424 if (bind_conf->xprt->prepare_bind_conf &&
3425 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003426 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003427 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003428
Willy Tarreaue6b98942007-10-29 01:09:36 +01003429 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003430 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003431 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003432 int nbproc;
3433
3434 nbproc = my_popcountl(curproxy->bind_proc &
Willy Tarreaue26993c2020-09-03 07:18:55 +02003435 (listener->bind_conf->settings.bind_proc ? listener->bind_conf->settings.bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003436 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003437
3438 if (!nbproc) /* no intersection between listener and frontend */
3439 nbproc = 1;
3440
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003441 if (!listener->luid) {
3442 /* listener ID not set, use automatic numbering with first
3443 * spare entry starting with next_luid.
3444 */
3445 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3446 listener->conf.id.key = listener->luid = next_id;
3447 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003448 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003449 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003450
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003451 /* enable separate counters */
3452 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003453 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003454 if (!listener->name)
3455 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003456 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003457
Willy Tarreaue6b98942007-10-29 01:09:36 +01003458 if (curproxy->options & PR_O_TCP_NOLING)
3459 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003460 if (!listener->maxaccept)
Willy Tarreau66161322021-02-19 15:50:27 +01003461 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau16a21472012-11-19 12:39:59 +01003462
3463 /* we want to have an optimal behaviour on single process mode to
3464 * maximize the work at once, but in multi-process we want to keep
3465 * some fairness between processes, so we target half of the max
3466 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003467 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003468 * used to disable the limit.
3469 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003470 if (listener->maxaccept > 0 && nbproc > 1) {
3471 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003472 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3473 }
3474
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003475 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003476 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003477 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003478
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003479 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003480 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003481
Willy Tarreau620408f2016-10-21 16:37:51 +02003482 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3483 listener->options |= LI_O_TCP_L5_RULES;
3484
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003485 /* smart accept mode is automatic in HTTP mode */
3486 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003487 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003488 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3489 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003490 }
3491
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003492 /* Release unused SSL configs */
3493 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003494 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3495 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003496 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003497
Willy Tarreaua38a7172019-02-02 17:11:28 +01003498 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003499 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003500 int count, maxproc = 0;
3501
3502 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreaue26993c2020-09-03 07:18:55 +02003503 count = my_popcountl(bind_conf->settings.bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003504 if (count > maxproc)
3505 maxproc = count;
3506 }
3507 /* backends have 0, frontends have 1 or more */
3508 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003509 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3510 " limited to process assigned to the current request.\n",
3511 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003512
Willy Tarreau102df612014-05-07 23:56:38 +02003513 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003514 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3515 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003516 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003517 }
Willy Tarreau102df612014-05-07 23:56:38 +02003518 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003519 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3520 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003521 }
3522 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003523
3524 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003525 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003526 if (curproxy->task) {
3527 curproxy->task->context = curproxy;
3528 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003529 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003530 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3531 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003532 cfgerr++;
3533 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003534 }
3535
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003536 /*
3537 * Recount currently required checks.
3538 */
3539
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003540 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003541 int optnum;
3542
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003543 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3544 if (curproxy->options & cfg_opts[optnum].val)
3545 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003546
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003547 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3548 if (curproxy->options2 & cfg_opts2[optnum].val)
3549 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003550 }
3551
Willy Tarreau0fca4832015-05-01 19:12:05 +02003552 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003553 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003554 if (curproxy->table && curproxy->table->peers.p)
3555 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003556
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003557 /* compute the required process bindings for the peers from <stktables_list>
3558 * for all the stick-tables, the ones coming with "peers" sections included.
3559 */
3560 for (t = stktables_list; t; t = t->next) {
3561 struct proxy *p;
3562
3563 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3564 if (t->peers.p && t->peers.p->peers_fe) {
3565 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3566 }
3567 }
3568 }
3569
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003570 if (cfg_peers) {
3571 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003572 struct peer *p, *pb;
3573
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003574 /* In the case the peers frontend was not initialized by a
3575 stick-table used in the configuration, set its bind_proc
3576 by default to the first process. */
3577 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003578 if (curpeers->peers_fe) {
3579 if (curpeers->peers_fe->bind_proc == 0)
3580 curpeers->peers_fe->bind_proc = 1;
3581 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003582 curpeers = curpeers->next;
3583 }
3584
3585 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003586 /* Remove all peers sections which don't have a valid listener,
3587 * which are not used by any table, or which are bound to more
3588 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003589 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003590 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003591 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003592 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003593 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003594
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003595 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003596 /* the "disabled" keyword was present */
3597 if (curpeers->peers_fe)
3598 stop_proxy(curpeers->peers_fe);
3599 curpeers->peers_fe = NULL;
3600 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003601 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003602 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3603 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003604 if (curpeers->peers_fe)
3605 stop_proxy(curpeers->peers_fe);
3606 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003607 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003608 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003609 /* either it's totally stopped or too much used */
3610 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003611 ha_alert("Peers section '%s': peers referenced by sections "
3612 "running in different processes (%d different ones). "
3613 "Check global.nbproc and all tables' bind-process "
3614 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003615 cfgerr++;
3616 }
3617 stop_proxy(curpeers->peers_fe);
3618 curpeers->peers_fe = NULL;
3619 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003620 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003621 /* Initializes the transport layer of the server part of all the peers belonging to
3622 * <curpeers> section if required.
3623 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3624 * of an old process.
3625 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003626 p = curpeers->remote;
3627 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003628 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003629 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 +01003630 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3631 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003632 p = p->next;
3633 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003634 /* Configure the SSL bindings of the local peer if required. */
3635 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3636 struct list *l;
3637 struct bind_conf *bind_conf;
3638
3639 l = &curpeers->peers_fe->conf.bind;
3640 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3641 if (bind_conf->xprt->prepare_bind_conf &&
3642 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3643 cfgerr++;
3644 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003645 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02003646 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3647 curpeers->id);
3648 cfgerr++;
3649 break;
3650 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003651 last = &curpeers->next;
3652 continue;
3653 }
3654
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003655 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003656 p = curpeers->remote;
3657 while (p) {
3658 pb = p->next;
3659 free(p->id);
3660 free(p);
3661 p = pb;
3662 }
3663
3664 /* Destroy and unlink this curpeers section.
3665 * Note: curpeers is backed up into *last.
3666 */
3667 free(curpeers->id);
3668 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003669 /* Reset any refereance to this peers section in the list of stick-tables */
3670 for (t = stktables_list; t; t = t->next) {
3671 if (t->peers.p && t->peers.p == *last)
3672 t->peers.p = NULL;
3673 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003674 free(*last);
3675 *last = curpeers;
3676 }
3677 }
3678
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003679 for (t = stktables_list; t; t = t->next) {
3680 if (t->proxy)
3681 continue;
3682 if (!stktable_init(t)) {
3683 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
3684 cfgerr++;
3685 }
3686 }
3687
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003688 /* initialize stick-tables on backend capable proxies. This must not
3689 * be done earlier because the data size may be discovered while parsing
3690 * other proxies.
3691 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003692 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauc3914d42020-09-24 08:39:22 +02003693 if (curproxy->disabled || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003694 continue;
3695
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003696 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003697 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003698 cfgerr++;
3699 }
3700 }
3701
Simon Horman0d16a402015-01-30 11:22:58 +09003702 if (mailers) {
3703 struct mailers *curmailers = mailers, **last;
3704 struct mailer *m, *mb;
3705
3706 /* Remove all mailers sections which don't have a valid listener.
3707 * This can happen when a mailers section is never referenced.
3708 */
3709 last = &mailers;
3710 while (*last) {
3711 curmailers = *last;
3712 if (curmailers->users) {
3713 last = &curmailers->next;
3714 continue;
3715 }
3716
Christopher Faulet767a84b2017-11-24 16:50:31 +01003717 ha_warning("Removing incomplete section 'mailers %s'.\n",
3718 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09003719
3720 m = curmailers->mailer_list;
3721 while (m) {
3722 mb = m->next;
3723 free(m->id);
3724 free(m);
3725 m = mb;
3726 }
3727
3728 /* Destroy and unlink this curmailers section.
3729 * Note: curmailers is backed up into *last.
3730 */
3731 free(curmailers->id);
3732 curmailers = curmailers->next;
3733 free(*last);
3734 *last = curmailers;
3735 }
3736 }
3737
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003738 /* Update server_state_file_name to backend name if backend is supposed to use
3739 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003740 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003741 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
3742 curproxy->server_state_file_name == NULL)
3743 curproxy->server_state_file_name = strdup(curproxy->id);
3744 }
3745
Emeric Brun750fe792020-12-23 16:51:12 +01003746 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06003747 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
3748 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
3749 curr_resolvers->id, curr_resolvers->conf.file,
3750 curr_resolvers->conf.line);
3751 err_code |= ERR_WARN;
3752 }
3753 }
3754
William Lallemand48b4bb42017-10-23 14:36:34 +02003755 list_for_each_entry(postparser, &postparsers, list) {
3756 if (postparser->func)
3757 cfgerr += postparser->func();
3758 }
3759
Willy Tarreaubb925012009-07-23 13:36:36 +02003760 if (cfgerr > 0)
3761 err_code |= ERR_ALERT | ERR_FATAL;
3762 out:
3763 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003764}
3765
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003766/*
3767 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
3768 * parsing sessions.
3769 */
3770void cfg_register_keywords(struct cfg_kw_list *kwl)
3771{
Willy Tarreau2b718102021-04-21 07:32:39 +02003772 LIST_APPEND(&cfg_keywords.list, &kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003773}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003774
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003775/*
3776 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
3777 */
3778void cfg_unregister_keywords(struct cfg_kw_list *kwl)
3779{
Willy Tarreau2b718102021-04-21 07:32:39 +02003780 LIST_DELETE(&kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003781 LIST_INIT(&kwl->list);
3782}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003783
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003784/* this function register new section in the haproxy configuration file.
3785 * <section_name> is the name of this new section and <section_parser>
3786 * is the called parser. If two section declaration have the same name,
3787 * only the first declared is used.
3788 */
3789int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02003790 int (*section_parser)(const char *, int, char **, int),
3791 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003792{
3793 struct cfg_section *cs;
3794
Willy Tarreau5e4261b2016-05-17 16:16:09 +02003795 list_for_each_entry(cs, &sections, list) {
3796 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003797 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02003798 return 0;
3799 }
3800 }
3801
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003802 cs = calloc(1, sizeof(*cs));
3803 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003804 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003805 return 0;
3806 }
3807
3808 cs->section_name = section_name;
3809 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02003810 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003811
Willy Tarreau2b718102021-04-21 07:32:39 +02003812 LIST_APPEND(&sections, &cs->list);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003813
3814 return 1;
3815}
3816
William Lallemand48b4bb42017-10-23 14:36:34 +02003817/* this function register a new function which will be called once the haproxy
3818 * configuration file has been parsed. It's useful to check dependencies
3819 * between sections or to resolve items once everything is parsed.
3820 */
3821int cfg_register_postparser(char *name, int (*func)())
3822{
3823 struct cfg_postparser *cp;
3824
3825 cp = calloc(1, sizeof(*cp));
3826 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003827 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02003828 return 0;
3829 }
3830 cp->name = name;
3831 cp->func = func;
3832
Willy Tarreau2b718102021-04-21 07:32:39 +02003833 LIST_APPEND(&postparsers, &cp->list);
William Lallemand48b4bb42017-10-23 14:36:34 +02003834
3835 return 1;
3836}
3837
Willy Tarreaubaaee002006-06-26 02:48:02 +02003838/*
David Carlier845efb52015-09-25 11:49:18 +01003839 * free all config section entries
3840 */
3841void cfg_unregister_sections(void)
3842{
3843 struct cfg_section *cs, *ics;
3844
3845 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02003846 LIST_DELETE(&cs->list);
David Carlier845efb52015-09-25 11:49:18 +01003847 free(cs);
3848 }
3849}
3850
Christopher Faulet7110b402016-10-26 11:09:44 +02003851void cfg_backup_sections(struct list *backup_sections)
3852{
3853 struct cfg_section *cs, *ics;
3854
3855 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02003856 LIST_DELETE(&cs->list);
3857 LIST_APPEND(backup_sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02003858 }
3859}
3860
3861void cfg_restore_sections(struct list *backup_sections)
3862{
3863 struct cfg_section *cs, *ics;
3864
3865 list_for_each_entry_safe(cs, ics, backup_sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02003866 LIST_DELETE(&cs->list);
3867 LIST_APPEND(&sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02003868 }
3869}
3870
Willy Tarreaue6552512018-11-26 11:33:13 +01003871/* these are the config sections handled by default */
3872REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
3873REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
3874REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
3875REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
3876REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
3877REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
3878REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
3879REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
3880REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02003881
David Carlier845efb52015-09-25 11:49:18 +01003882/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02003883 * Local variables:
3884 * c-indent-level: 8
3885 * c-basic-offset: 8
3886 * End:
3887 */