blob: 25820bc017e05094d0f8100d325cc0b68b459293 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Configuration parser
3 *
Willy Tarreauff011f22011-01-06 17:51:27 +01004 * Copyright 2000-2011 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreaue5733232019-05-22 19:24:06 +020013#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +020014/* This is to have crypt() defined on Linux */
15#define _GNU_SOURCE
16
Willy Tarreaue5733232019-05-22 19:24:06 +020017#ifdef USE_CRYPT_H
Cyril Bonté1a0191d2014-08-29 20:20:02 +020018/* some platforms such as Solaris need this */
19#include <crypt.h>
20#endif
Willy Tarreaue5733232019-05-22 19:24:06 +020021#endif /* USE_LIBCRYPT */
Cyril Bonté1a0191d2014-08-29 20:20:02 +020022
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +010023#include <dirent.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020024#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <netdb.h>
28#include <ctype.h>
Willy Tarreau95c20ac2007-03-25 15:39:23 +020029#include <pwd.h>
30#include <grp.h>
Willy Tarreau0b4ed902007-03-26 00:18:40 +020031#include <errno.h>
Willy Tarreau3f49b302007-06-11 00:29:26 +020032#include <sys/types.h>
33#include <sys/stat.h>
34#include <fcntl.h>
35#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020036
Willy Tarreaudcc048a2020-06-04 19:11:43 +020037#include <haproxy/acl.h>
Christopher Faulet42c6cf92021-03-25 17:19:04 +010038#include <haproxy/action.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020039#include <haproxy/api.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020040#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020041#include <haproxy/backend.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020042#include <haproxy/capture.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020043#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020044#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020045#include <haproxy/check.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020046#include <haproxy/chunk.h>
Amaury Denoyellec90932b2021-04-14 16:16:03 +020047#include <haproxy/cpuset.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020048#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020049#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020050#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020051#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020052#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020053#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020054#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020055#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020056#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020057#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020058#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020059#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020060#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020061#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020062#include <haproxy/mailers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020063#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020064#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020065#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020066#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020067#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020068#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020069#include <haproxy/proxy.h>
Emeric Brunc9437992021-02-12 19:42:55 +010070#include <haproxy/resolvers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020071#include <haproxy/sample.h>
72#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020073#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020074#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020075#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020076#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020077#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020078#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020079#include <haproxy/thread.h>
80#include <haproxy/time.h>
81#include <haproxy/tools.h>
82#include <haproxy/uri_auth-t.h>
Frédéric Lécaille884f2e92020-11-23 14:23:21 +010083#include <haproxy/xprt_quic.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020084
85
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010086/* Used to chain configuration sections definitions. This list
87 * stores struct cfg_section
88 */
89struct list sections = LIST_HEAD_INIT(sections);
90
William Lallemand48b4bb42017-10-23 14:36:34 +020091struct list postparsers = LIST_HEAD_INIT(postparsers);
92
Eric Salama1b8dacc2021-03-16 15:12:17 +010093extern struct proxy *mworker_proxy;
94
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010095char *cursection = NULL;
Willy Tarreauc8d5b952019-02-27 17:25:52 +010096int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +010097int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +010098char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +020099
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200100/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100101struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200102 .list = LIST_HEAD_INIT(cfg_keywords.list)
103};
104
Willy Tarreau4b103022021-02-12 17:59:10 +0100105/* nested if/elif/else/endif block states */
106enum nested_cond_state {
107 NESTED_COND_IF_TAKE, // "if" with a true condition
108 NESTED_COND_IF_DROP, // "if" with a false condition
109 NESTED_COND_IF_SKIP, // "if" masked by an outer false condition
110
111 NESTED_COND_ELIF_TAKE, // "elif" with a true condition from a false one
112 NESTED_COND_ELIF_DROP, // "elif" with a false condition from a false one
113 NESTED_COND_ELIF_SKIP, // "elif" masked by an outer false condition or a previously taken if
114
115 NESTED_COND_ELSE_TAKE, // taken "else" after an if false condition
116 NESTED_COND_ELSE_DROP, // "else" masked by outer false condition or an if true condition
117};
118
119/* 100 levels of nested conditions should already be sufficient */
120#define MAXNESTEDCONDS 100
121
Willy Tarreaubaaee002006-06-26 02:48:02 +0200122/*
123 * converts <str> to a list of listeners which are dynamically allocated.
124 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
125 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
126 * - <port> is a numerical port from 1 to 65535 ;
127 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
128 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200129 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
130 * not NULL, it must be a valid pointer to either NULL or a freeable area that
131 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200132 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200133int 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 +0200134{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200135 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100136 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200137 int port, end;
138
139 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200140
Willy Tarreaubaaee002006-06-26 02:48:02 +0200141 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200142 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100143 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200144
145 str = next;
146 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100147 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200148 *next++ = 0;
149 }
150
Willy Tarreau5fc93282020-09-16 18:25:03 +0200151 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Eric Salama1b8dacc2021-03-16 15:12:17 +0100152 (curproxy == global.cli_fe || curproxy == mworker_proxy) ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200153 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200154 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100155 if (!ss2)
156 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200157
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100158 /* OK the address looks correct */
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100159
160#ifdef USE_QUIC
161 /* The transport layer automatically switches to QUIC when QUIC
162 * is selected, regardless of bind_conf settings. We then need
163 * to initialize QUIC params.
164 */
165 if (proto->sock_type == SOCK_DGRAM && proto->ctrl_type == SOCK_STREAM) {
166 bind_conf->xprt = xprt_get(XPRT_QUIC);
167 quic_transport_params_init(&bind_conf->quic_params, 1);
168 }
169#endif
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200170 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200171 memprintf(err, "%s for address '%s'.\n", *err, str);
172 goto fail;
173 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200174 } /* end while(next) */
175 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200176 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200177 fail:
178 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200179 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200180}
181
William Lallemand6e62fb62015-04-28 16:55:23 +0200182/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200183 * converts <str> to a list of datagram-oriented listeners which are dynamically
184 * allocated.
185 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
186 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
187 * - <port> is a numerical port from 1 to 65535 ;
188 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
189 * This can be repeated as many times as necessary, separated by a coma.
190 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
191 * not NULL, it must be a valid pointer to either NULL or a freeable area that
192 * will be replaced with an error message.
193 */
194int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
195{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200196 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200197 char *next, *dupstr;
198 int port, end;
199
200 next = dupstr = strdup(str);
201
202 while (next && *next) {
203 struct sockaddr_storage *ss2;
204 int fd = -1;
205
206 str = next;
207 /* 1) look for the end of the first address */
208 if ((next = strchr(str, ',')) != NULL) {
209 *next++ = 0;
210 }
211
Willy Tarreau5fc93282020-09-16 18:25:03 +0200212 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreau4975d142021-03-13 11:00:33 +0100213 curproxy == global.cli_fe ? NULL : global.unix_bind.prefix,
Willy Tarreauaa333122020-09-16 15:13:04 +0200214 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
215 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
216 if (!ss2)
217 goto fail;
218
219 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200220 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200221 memprintf(err, "%s for address '%s'.\n", *err, str);
222 goto fail;
223 }
224 } /* end while(next) */
225 free(dupstr);
226 return 1;
227 fail:
228 free(dupstr);
229 return 0;
230}
231
232/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100233 * Report an error in <msg> when there are too many arguments. This version is
234 * intended to be used by keyword parsers so that the message will be included
235 * into the general error message. The index is the current keyword in args.
236 * Return 0 if the number of argument is correct, otherwise build a message and
237 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
238 * message may also be null, it will simply not be produced (useful to check only).
239 * <msg> and <err_code> are only affected on error.
240 */
241int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
242{
243 int i;
244
245 if (!*args[index + maxarg + 1])
246 return 0;
247
248 if (msg) {
249 *msg = NULL;
250 memprintf(msg, "%s", args[0]);
251 for (i = 1; i <= index; i++)
252 memprintf(msg, "%s %s", *msg, args[i]);
253
254 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
255 }
256 if (err_code)
257 *err_code |= ERR_ALERT | ERR_FATAL;
258
259 return 1;
260}
261
262/*
263 * same as too_many_args_idx with a 0 index
264 */
265int too_many_args(int maxarg, char **args, char **msg, int *err_code)
266{
267 return too_many_args_idx(maxarg, 0, args, msg, err_code);
268}
269
270/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200271 * Report a fatal Alert when there is too much arguments
272 * The index is the current keyword in args
273 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
274 * Fill err_code with an ERR_ALERT and an ERR_FATAL
275 */
276int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
277{
278 char *kw = NULL;
279 int i;
280
281 if (!*args[index + maxarg + 1])
282 return 0;
283
284 memprintf(&kw, "%s", args[0]);
285 for (i = 1; i <= index; i++) {
286 memprintf(&kw, "%s %s", kw, args[i]);
287 }
288
Christopher Faulet767a84b2017-11-24 16:50:31 +0100289 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 +0200290 free(kw);
291 *err_code |= ERR_ALERT | ERR_FATAL;
292 return 1;
293}
294
295/*
296 * same as alertif_too_many_args_idx with a 0 index
297 */
298int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
299{
300 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
301}
302
Willy Tarreau61d18892009-03-31 10:49:21 +0200303
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100304/* Report it if a request ACL condition uses some keywords that are incompatible
305 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
306 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
307 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100308 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100309int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100310{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100311 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200312 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100313
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100314 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100315 return 0;
316
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100317 acl = acl_cond_conflicts(cond, where);
318 if (acl) {
319 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100320 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
321 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100322 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100323 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
324 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100325 return ERR_WARN;
326 }
327 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100328 return 0;
329
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100330 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100331 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
332 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100333 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100334 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
335 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100336 return ERR_WARN;
337}
338
Christopher Faulet581db2b2021-03-26 10:02:46 +0100339/* Report it if an ACL uses a L6 sample fetch from an HTTP proxy. It returns
340 * either 0 or ERR_WARN so that its result can be or'ed with err_code. Note that
341 * <cond> may be NULL and then will be ignored.
342*/
343int warnif_tcp_http_cond(const struct proxy *px, const struct acl_cond *cond)
344{
345 if (!cond || px->mode != PR_MODE_HTTP)
346 return 0;
347
348 if (cond->use & (SMP_USE_L6REQ|SMP_USE_L6RES)) {
349 ha_warning("Proxy '%s': L6 sample fetches ignored on HTTP proxies (declared at %s:%d).\n",
350 px->id, cond->file, cond->line);
351 return ERR_WARN;
352 }
353 return 0;
354}
355
Willy Tarreaue2afcc42021-03-12 09:08:04 +0100356/* try to find in <list> the word that looks closest to <word> by counting
357 * transitions between letters, digits and other characters. Will return the
358 * best matching word if found, otherwise NULL. An optional array of extra
359 * words to compare may be passed in <extra>, but it must then be terminated
360 * by a NULL entry. If unused it may be NULL.
361 */
362const char *cfg_find_best_match(const char *word, const struct list *list, int section, const char **extra)
363{
364 uint8_t word_sig[1024]; // 0..25=letter, 26=digit, 27=other, 28=begin, 29=end
365 uint8_t list_sig[1024];
366 const struct cfg_kw_list *kwl;
367 int index;
368 const char *best_ptr = NULL;
369 int dist, best_dist = INT_MAX;
370
371 make_word_fingerprint(word_sig, word);
372 list_for_each_entry(kwl, list, list) {
373 for (index = 0; kwl->kw[index].kw != NULL; index++) {
374 if (kwl->kw[index].section != section)
375 continue;
376
377 make_word_fingerprint(list_sig, kwl->kw[index].kw);
378 dist = word_fingerprint_distance(word_sig, list_sig);
379 if (dist < best_dist) {
380 best_dist = dist;
381 best_ptr = kwl->kw[index].kw;
382 }
383 }
384 }
385
386 while (extra && *extra) {
387 make_word_fingerprint(list_sig, *extra);
388 dist = word_fingerprint_distance(word_sig, list_sig);
389 if (dist < best_dist) {
390 best_dist = dist;
391 best_ptr = *extra;
392 }
393 extra++;
394 }
395
396 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
397 best_ptr = NULL;
398 return best_ptr;
399}
400
Christopher Faulet62519022017-10-16 15:49:32 +0200401/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100402 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100403 * two such numbers delimited by a dash ('-'). On success, it returns
404 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200405 *
406 * Note: this function can also be used to parse a thread number or a set of
407 * threads.
408 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100409int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200410{
Christopher Faulet26028f62017-11-22 15:01:51 +0100411 if (autoinc) {
412 *autoinc = 0;
413 if (strncmp(arg, "auto:", 5) == 0) {
414 arg += 5;
415 *autoinc = 1;
416 }
417 }
418
Christopher Faulet62519022017-10-16 15:49:32 +0200419 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100420 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200421 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100422 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200423 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100424 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200425 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100426 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100427 unsigned int low, high;
428
Christopher Faulet18cca782019-02-07 16:29:41 +0100429 for (p = arg; *p; p++) {
430 if (*p == '-' && !dash)
431 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100432 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100433 memprintf(err, "'%s' is not a valid number/range.", arg);
434 return -1;
435 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100436 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100437
438 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100439 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100440 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100441
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100442 if (high < low) {
443 unsigned int swap = low;
444 low = high;
445 high = swap;
446 }
447
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100448 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100449 memprintf(err, "'%s' is not a valid number/range."
450 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100451 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100452 return 1;
453 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100454
455 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100456 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200457 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100458 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100459
Christopher Faulet5ab51772017-11-22 11:21:58 +0100460 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200461}
462
David Carlier7e351ee2017-12-01 09:14:02 +0000463#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200464/* Parse cpu sets. Each CPU set is either a unique number between 0 and
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200465 * ha_cpuset_size() - 1 or a range with two such numbers delimited by a dash
Amaury Denoyellea8082352021-04-06 16:46:15 +0200466 * ('-'). If <comma_allowed> is set, each CPU set can be a list of unique
467 * numbers or ranges separated by a comma. It is also possible to specify
468 * multiple cpu numbers or ranges in distinct argument in <args>. On success,
469 * it returns 0, otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200470 */
Amaury Denoyellea8082352021-04-06 16:46:15 +0200471unsigned long parse_cpu_set(const char **args, struct hap_cpuset *cpu_set,
472 int comma_allowed, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200473{
474 int cur_arg = 0;
Amaury Denoyellea8082352021-04-06 16:46:15 +0200475 const char *arg;
Christopher Faulet62519022017-10-16 15:49:32 +0200476
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200477 ha_cpuset_zero(cpu_set);
478
Amaury Denoyellea8082352021-04-06 16:46:15 +0200479 arg = args[cur_arg];
480 while (*arg) {
481 const char *dash, *comma;
Christopher Faulet62519022017-10-16 15:49:32 +0200482 unsigned int low, high;
483
Willy Tarreau90807112020-02-25 08:16:33 +0100484 if (!isdigit((unsigned char)*args[cur_arg])) {
Amaury Denoyellea8082352021-04-06 16:46:15 +0200485 memprintf(err, "'%s' is not a CPU range.", arg);
Christopher Faulet62519022017-10-16 15:49:32 +0200486 return -1;
487 }
488
Amaury Denoyellea8082352021-04-06 16:46:15 +0200489 low = high = str2uic(arg);
490
491 comma = comma_allowed ? strchr(arg, ',') : NULL;
492 dash = strchr(arg, '-');
493
494 if (dash && (!comma || dash < comma))
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200495 high = *(dash+1) ? str2uic(dash + 1) : ha_cpuset_size() - 1;
Christopher Faulet62519022017-10-16 15:49:32 +0200496
497 if (high < low) {
498 unsigned int swap = low;
499 low = high;
500 high = swap;
501 }
502
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200503 if (high >= ha_cpuset_size()) {
504 memprintf(err, "supports CPU numbers from 0 to %d.",
505 ha_cpuset_size() - 1);
Christopher Faulet62519022017-10-16 15:49:32 +0200506 return 1;
507 }
508
509 while (low <= high)
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200510 ha_cpuset_set(cpu_set, low++);
Christopher Faulet62519022017-10-16 15:49:32 +0200511
Amaury Denoyellea8082352021-04-06 16:46:15 +0200512 /* if a comma is present, parse the rest of the arg, else
513 * skip to the next arg */
514 arg = comma ? comma + 1 : args[++cur_arg];
Christopher Faulet62519022017-10-16 15:49:32 +0200515 }
516 return 0;
517}
David Carlier7e351ee2017-12-01 09:14:02 +0000518#endif
519
Frédéric Lécaille18251032019-01-11 11:07:15 +0100520/* Allocate and initialize the frontend of a "peers" section found in
521 * file <file> at line <linenum> with <id> as ID.
522 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200523 * Note that this function may be called from "default-server"
524 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100525 */
526static int init_peers_frontend(const char *file, int linenum,
527 const char *id, struct peers *peers)
528{
529 struct proxy *p;
530
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200531 if (peers->peers_fe) {
532 p = peers->peers_fe;
533 goto out;
534 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100535
Frédéric Lécaille18251032019-01-11 11:07:15 +0100536 p = calloc(1, sizeof *p);
537 if (!p) {
538 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
539 return -1;
540 }
541
542 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200543 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100544 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200545 /* Finally store this frontend. */
546 peers->peers_fe = p;
547
548 out:
549 if (id && !p->id)
550 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200551 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100552 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100553 if (linenum != -1)
554 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100555
556 return 0;
557}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100558
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100559/* Only change ->file, ->line and ->arg struct bind_conf member values
560 * if already present.
561 */
562static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
563 const char *file, int line,
564 const char *arg, struct xprt_ops *xprt)
565{
566 struct bind_conf *bind_conf;
567
568 if (!LIST_ISEMPTY(&p->conf.bind)) {
569 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
570 free(bind_conf->file);
571 bind_conf->file = strdup(file);
572 bind_conf->line = line;
573 if (arg) {
574 free(bind_conf->arg);
575 bind_conf->arg = strdup(arg);
576 }
577 }
578 else {
579 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
580 }
581
582 return bind_conf;
583}
584
585/*
586 * Allocate a new struct peer parsed at line <linenum> in file <file>
587 * to be added to <peers>.
588 * Returns the new allocated structure if succeeded, NULL if not.
589 */
590static struct peer *cfg_peers_add_peer(struct peers *peers,
591 const char *file, int linenum,
592 const char *id, int local)
593{
594 struct peer *p;
595
596 p = calloc(1, sizeof *p);
597 if (!p) {
598 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
599 return NULL;
600 }
601
602 /* the peers are linked backwards first */
603 peers->count++;
604 p->next = peers->remote;
605 peers->remote = p;
606 p->conf.file = strdup(file);
607 p->conf.line = linenum;
608 p->last_change = now.tv_sec;
609 p->xprt = xprt_get(XPRT_RAW);
610 p->sock_init_arg = NULL;
611 HA_SPIN_INIT(&p->lock);
612 if (id)
613 p->id = strdup(id);
614 if (local) {
615 p->local = 1;
616 peers->local = p;
617 }
618
619 return p;
620}
621
Willy Tarreaubaaee002006-06-26 02:48:02 +0200622/*
William Lallemand51097192015-04-14 16:35:22 +0200623 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200624 * Returns the error code, 0 if OK, or any combination of :
625 * - ERR_ABORT: must abort ASAP
626 * - ERR_FATAL: we can continue parsing but not start the service
627 * - ERR_WARN: a warning has been emitted
628 * - ERR_ALERT: an alert has been emitted
629 * Only the two first ones can stop processing, the two others are just
630 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200631 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200632int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
633{
634 static struct peers *curpeers = NULL;
635 struct peer *newpeer = NULL;
636 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200637 struct bind_conf *bind_conf;
638 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200639 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100640 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100641 static int bind_line, peer_line;
642
643 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
644 int cur_arg;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100645 struct bind_conf *bind_conf;
646 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200647
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100648 cur_arg = 1;
649
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200650 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
651 err_code |= ERR_ALERT | ERR_ABORT;
652 goto out;
653 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100654
655 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
656 NULL, xprt_get(XPRT_RAW));
657 if (*args[0] == 'b') {
658 struct listener *l;
659
660 if (peer_line) {
661 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
662 err_code |= ERR_ALERT | ERR_FATAL;
663 goto out;
664 }
665
666 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
667 if (errmsg && *errmsg) {
668 indent_msg(&errmsg, 2);
669 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
670 }
671 else
672 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
673 file, linenum, args[0], args[1], args[2]);
674 err_code |= ERR_FATAL;
675 goto out;
676 }
677 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
678 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100679 l->accept = session_accept_fd;
680 l->analysers |= curpeers->peers_fe->fe_req_ana;
681 l->default_target = curpeers->peers_fe->default_target;
682 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100683 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100684
685 bind_line = 1;
686 if (cfg_peers->local) {
687 newpeer = cfg_peers->local;
688 }
689 else {
690 /* This peer is local.
691 * Note that we do not set the peer ID. This latter is initialized
692 * when parsing "peer" or "server" line.
693 */
694 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
695 if (!newpeer) {
696 err_code |= ERR_ALERT | ERR_ABORT;
697 goto out;
698 }
699 }
Willy Tarreau37159062020-08-27 07:48:42 +0200700 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200701 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100702 cur_arg++;
703 }
704
705 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
706 int ret;
707
708 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
709 err_code |= ret;
710 if (ret) {
711 if (errmsg && *errmsg) {
712 indent_msg(&errmsg, 2);
713 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
714 }
715 else
716 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
717 file, linenum, args[cur_arg]);
718 if (ret & ERR_FATAL)
719 goto out;
720 }
721 cur_arg += 1 + kw->skip;
722 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100723 if (*args[cur_arg] != 0) {
Willy Tarreau433b05f2021-03-12 10:14:07 +0100724 const char *best = bind_find_best_kw(args[cur_arg]);
725 if (best)
726 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section; did you mean '%s' maybe ?\n",
727 file, linenum, args[cur_arg], cursection, best);
728 else
729 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.\n",
730 file, linenum, args[cur_arg], cursection);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100731 err_code |= ERR_ALERT | ERR_FATAL;
732 goto out;
733 }
734 }
735 else if (strcmp(args[0], "default-server") == 0) {
736 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
737 err_code |= ERR_ALERT | ERR_ABORT;
738 goto out;
739 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100740 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
741 SRV_PARSE_DEFAULT_SERVER|SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200742 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100743 else if (strcmp(args[0], "log") == 0) {
744 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
745 err_code |= ERR_ALERT | ERR_ABORT;
746 goto out;
747 }
Emeric Brun9533a702021-04-02 10:13:43 +0200748 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), file, linenum, &errmsg)) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100749 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
750 err_code |= ERR_ALERT | ERR_FATAL;
751 goto out;
752 }
753 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200754 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100755 /* Initialize these static variables when entering a new "peers" section*/
756 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100757 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100758 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100759 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100760 goto out;
761 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200762
William Lallemand6e62fb62015-04-28 16:55:23 +0200763 if (alertif_too_many_args(1, file, linenum, args, &err_code))
764 goto out;
765
Emeric Brun32da3c42010-09-23 18:39:19 +0200766 err = invalid_char(args[1]);
767 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100768 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
769 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100770 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100771 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200772 }
773
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200774 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200775 /*
776 * If there are two proxies with the same name only following
777 * combinations are allowed:
778 */
779 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100780 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
781 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200782 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200783 }
784 }
785
Vincent Bernat02779b62016-04-03 13:48:43 +0200786 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100787 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200788 err_code |= ERR_ALERT | ERR_ABORT;
789 goto out;
790 }
791
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200792 curpeers->next = cfg_peers;
793 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200794 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200795 curpeers->conf.line = linenum;
796 curpeers->last_change = now.tv_sec;
797 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200798 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200799 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200800 else if (strcmp(args[0], "peer") == 0 ||
801 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100802 int local_peer, peer;
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100803 int parse_addr = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200804
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100805 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100806 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100807 /* The local peer may have already partially been parsed on a "bind" line. */
808 if (*args[0] == 'p') {
809 if (bind_line) {
810 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
811 err_code |= ERR_ALERT | ERR_FATAL;
812 goto out;
813 }
814 peer_line = 1;
815 }
816 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
817 /* The local peer has already been initialized on a "bind" line.
818 * Let's use it and store its ID.
819 */
820 newpeer = cfg_peers->local;
821 newpeer->id = strdup(localpeer);
822 }
823 else {
824 if (local_peer && cfg_peers->local) {
825 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
826 file, linenum, args[0], args[1],
827 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
828 err_code |= ERR_FATAL;
829 goto out;
830 }
831 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
832 if (!newpeer) {
833 err_code |= ERR_ALERT | ERR_ABORT;
834 goto out;
835 }
836 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200837
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100838 /* Line number and peer ID are updated only if this peer is the local one. */
839 if (init_peers_frontend(file,
840 newpeer->local ? linenum: -1,
841 newpeer->local ? newpeer->id : NULL,
842 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200843 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100844 goto out;
845 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100846
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100847 /* This initializes curpeer->peers->peers_fe->srv.
848 * The server address is parsed only if we are parsing a "peer" line,
849 * or if we are parsing a "server" line and the current peer is not the local one.
850 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100851 parse_addr = (peer || !local_peer) ? SRV_PARSE_PARSE_ADDR : 0;
852 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
853 SRV_PARSE_IN_PEER_SECTION|parse_addr|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200854 if (!curpeers->peers_fe->srv) {
855 /* Remove the newly allocated peer. */
856 if (newpeer != curpeers->local) {
857 struct peer *p;
858
859 p = curpeers->remote;
860 curpeers->remote = curpeers->remote->next;
861 free(p->id);
862 free(p);
863 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200864 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200865 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200866
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100867 /* If the peer address has just been parsed, let's copy it to <newpeer>
868 * and initializes ->proto.
869 */
870 if (peer || !local_peer) {
871 newpeer->addr = curpeers->peers_fe->srv->addr;
872 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
873 }
874
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100875 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200876 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100877 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200878
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100879 newpeer->srv = curpeers->peers_fe->srv;
880 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200881 goto out;
882
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100883 /* The lines above are reserved to "peer" lines. */
884 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200885 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200886
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100887 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 +0100888
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100889 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
890 if (errmsg && *errmsg) {
891 indent_msg(&errmsg, 2);
892 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 +0100893 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100894 else
895 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
896 file, linenum, args[0], args[1], args[2]);
897 err_code |= ERR_FATAL;
898 goto out;
899 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100900
901 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
902 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100903 l->accept = session_accept_fd;
904 l->analysers |= curpeers->peers_fe->fe_req_ana;
905 l->default_target = curpeers->peers_fe->default_target;
906 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100907 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100908 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100909 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100910 struct stktable *t, *other;
911 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100912 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100913
914 /* Line number and peer ID are updated only if this peer is the local one. */
915 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
916 err_code |= ERR_ALERT | ERR_ABORT;
917 goto out;
918 }
919
920 other = stktable_find_by_name(args[1]);
921 if (other) {
922 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
923 file, linenum, args[1],
924 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
925 other->proxy ? other->id : other->peers.p->id,
926 other->conf.file, other->conf.line);
927 err_code |= ERR_ALERT | ERR_FATAL;
928 goto out;
929 }
930
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100931 /* Build the stick-table name, concatenating the "peers" section name
932 * followed by a '/' character and the table name argument.
933 */
934 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100935 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100936 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
937 file, linenum, args[0], args[1]);
938 err_code |= ERR_ALERT | ERR_FATAL;
939 goto out;
940 }
941
942 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100943 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100944 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
945 file, linenum, args[0], args[1]);
946 err_code |= ERR_ALERT | ERR_FATAL;
947 goto out;
948 }
949
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100950 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100951 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100952 if (!t || !id) {
953 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
954 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +0200955 free(t);
956 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100957 err_code |= ERR_ALERT | ERR_FATAL;
958 goto out;
959 }
960
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100961 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +0200962 if (err_code & ERR_FATAL) {
963 free(t);
964 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100965 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +0200966 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100967
968 stktable_store_name(t);
969 t->next = stktables_list;
970 stktables_list = t;
971 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100972 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200973 curpeers->disabled = 1;
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200974 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100975 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200976 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200977 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200978 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100979 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200980 err_code |= ERR_ALERT | ERR_FATAL;
981 goto out;
982 }
983
984out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100985 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200986 return err_code;
987}
988
Baptiste Assmann325137d2015-04-13 23:40:55 +0200989/*
William Lallemand51097192015-04-14 16:35:22 +0200990 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +0900991 * Returns the error code, 0 if OK, or any combination of :
992 * - ERR_ABORT: must abort ASAP
993 * - ERR_FATAL: we can continue parsing but not start the service
994 * - ERR_WARN: a warning has been emitted
995 * - ERR_ALERT: an alert has been emitted
996 * Only the two first ones can stop processing, the two others are just
997 * indicators.
998 */
999int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1000{
1001 static struct mailers *curmailers = NULL;
1002 struct mailer *newmailer = NULL;
1003 const char *err;
1004 int err_code = 0;
1005 char *errmsg = NULL;
1006
1007 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1008 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001009 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001010 err_code |= ERR_ALERT | ERR_ABORT;
1011 goto out;
1012 }
1013
1014 err = invalid_char(args[1]);
1015 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001016 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1017 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001018 err_code |= ERR_ALERT | ERR_ABORT;
1019 goto out;
1020 }
1021
1022 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1023 /*
1024 * If there are two proxies with the same name only following
1025 * combinations are allowed:
1026 */
1027 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001028 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1029 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001030 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001031 }
1032 }
1033
Vincent Bernat02779b62016-04-03 13:48:43 +02001034 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001035 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001036 err_code |= ERR_ALERT | ERR_ABORT;
1037 goto out;
1038 }
1039
1040 curmailers->next = mailers;
1041 mailers = curmailers;
1042 curmailers->conf.file = strdup(file);
1043 curmailers->conf.line = linenum;
1044 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001045 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1046 * But need enough time so that timeouts don't occur
1047 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001048 }
1049 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1050 struct sockaddr_storage *sk;
1051 int port1, port2;
1052 struct protocol *proto;
1053
1054 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001055 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1056 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001057 err_code |= ERR_ALERT | ERR_FATAL;
1058 goto out;
1059 }
1060
1061 err = invalid_char(args[1]);
1062 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001063 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1064 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001065 err_code |= ERR_ALERT | ERR_FATAL;
1066 goto out;
1067 }
1068
Vincent Bernat02779b62016-04-03 13:48:43 +02001069 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001070 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001071 err_code |= ERR_ALERT | ERR_ABORT;
1072 goto out;
1073 }
1074
1075 /* the mailers are linked backwards first */
1076 curmailers->count++;
1077 newmailer->next = curmailers->mailer_list;
1078 curmailers->mailer_list = newmailer;
1079 newmailer->mailers = curmailers;
1080 newmailer->conf.file = strdup(file);
1081 newmailer->conf.line = linenum;
1082
1083 newmailer->id = strdup(args[1]);
1084
Willy Tarreau5fc93282020-09-16 18:25:03 +02001085 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001086 &errmsg, NULL, NULL,
1087 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 +09001088 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001089 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001090 err_code |= ERR_ALERT | ERR_FATAL;
1091 goto out;
1092 }
1093
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001094 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001095 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1096 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001097 err_code |= ERR_ALERT | ERR_FATAL;
1098 goto out;
1099 }
1100
Simon Horman0d16a402015-01-30 11:22:58 +09001101 newmailer->addr = *sk;
1102 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001103 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001104 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001105 }
1106 else if (strcmp(args[0], "timeout") == 0) {
1107 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001108 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1109 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001110 err_code |= ERR_ALERT | ERR_FATAL;
1111 goto out;
1112 }
1113 else if (strcmp(args[1], "mail") == 0) {
1114 const char *res;
1115 unsigned int timeout_mail;
1116 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001117 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1118 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001119 err_code |= ERR_ALERT | ERR_FATAL;
1120 goto out;
1121 }
1122 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001123 if (res == PARSE_TIME_OVER) {
1124 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1125 file, linenum, args[2], args[0], args[1]);
1126 err_code |= ERR_ALERT | ERR_FATAL;
1127 goto out;
1128 }
1129 else if (res == PARSE_TIME_UNDER) {
1130 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1131 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001132 err_code |= ERR_ALERT | ERR_FATAL;
1133 goto out;
1134 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001135 else if (res) {
1136 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1137 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001138 err_code |= ERR_ALERT | ERR_FATAL;
1139 goto out;
1140 }
1141 curmailers->timeout.mail = timeout_mail;
1142 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001143 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001144 file, linenum, args[0], args[1]);
1145 err_code |= ERR_ALERT | ERR_FATAL;
1146 goto out;
1147 }
1148 }
Simon Horman0d16a402015-01-30 11:22:58 +09001149 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001150 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001151 err_code |= ERR_ALERT | ERR_FATAL;
1152 goto out;
1153 }
1154
1155out:
1156 free(errmsg);
1157 return err_code;
1158}
1159
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001160void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001161{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001162 ha_free(&p->email_alert.mailers.name);
1163 ha_free(&p->email_alert.from);
1164 ha_free(&p->email_alert.to);
1165 ha_free(&p->email_alert.myhostname);
Simon Horman9dc49962015-01-30 11:22:59 +09001166}
1167
Willy Tarreaubaaee002006-06-26 02:48:02 +02001168
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001169int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001170cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1171{
Willy Tarreaue5733232019-05-22 19:24:06 +02001172#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001173 const char *err;
1174 const char *item = args[0];
1175
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001176 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001177 return 0;
1178 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001179 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001180 size_t idx = 1;
1181 const char *current;
1182 while (*(current = args[idx++])) {
1183 err = invalid_char(current);
1184 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001185 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1186 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001187 return ERR_ALERT | ERR_FATAL;
1188 }
1189
1190 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001191 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1192 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001193 return ERR_ALERT | ERR_FATAL;
1194 }
1195 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001196 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1197 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001198 return ERR_ALERT | ERR_FATAL;
1199 }
1200 }
1201 }
1202
1203 return 0;
1204#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001205 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1206 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001207 return ERR_ALERT | ERR_FATAL;
1208#endif
1209}
1210
1211int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001212cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1213{
1214
1215 int err_code = 0;
1216 const char *err;
1217
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001218 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001219 struct userlist *newul;
1220
1221 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001222 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1223 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001224 err_code |= ERR_ALERT | ERR_FATAL;
1225 goto out;
1226 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001227 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1228 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001229
1230 err = invalid_char(args[1]);
1231 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001232 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1233 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001234 err_code |= ERR_ALERT | ERR_FATAL;
1235 goto out;
1236 }
1237
1238 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001239 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001240 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1241 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001242 err_code |= ERR_WARN;
1243 goto out;
1244 }
1245
Vincent Bernat02779b62016-04-03 13:48:43 +02001246 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001247 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001248 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001249 err_code |= ERR_ALERT | ERR_ABORT;
1250 goto out;
1251 }
1252
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001253 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001254 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001255 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001256 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001257 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001258 goto out;
1259 }
1260
1261 newul->next = userlist;
1262 userlist = newul;
1263
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001264 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001265 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001266 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001267 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001268
1269 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001270 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1271 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001272 err_code |= ERR_ALERT | ERR_FATAL;
1273 goto out;
1274 }
1275
1276 err = invalid_char(args[1]);
1277 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001278 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1279 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001280 err_code |= ERR_ALERT | ERR_FATAL;
1281 goto out;
1282 }
1283
William Lallemand4ac9f542015-05-28 18:03:51 +02001284 if (!userlist)
1285 goto out;
1286
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001287 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001288 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001289 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1290 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001291 err_code |= ERR_ALERT;
1292 goto out;
1293 }
1294
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001295 ag = calloc(1, sizeof(*ag));
1296 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001297 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001298 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001299 goto out;
1300 }
1301
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001302 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001303 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001304 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001305 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001306 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001307 goto out;
1308 }
1309
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001310 cur_arg = 2;
1311
1312 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001313 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001314 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001315 cur_arg += 2;
1316 continue;
1317 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001318 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1319 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001320 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001321 free(ag->groupusers);
1322 free(ag->name);
1323 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001324 goto out;
1325 }
1326 }
1327
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001328 ag->next = userlist->groups;
1329 userlist->groups = ag;
1330
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001331 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001332 struct auth_users *newuser;
1333 int cur_arg;
1334
1335 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001336 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1337 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001338 err_code |= ERR_ALERT | ERR_FATAL;
1339 goto out;
1340 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001341 if (!userlist)
1342 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001343
1344 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001345 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001346 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1347 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001348 err_code |= ERR_ALERT;
1349 goto out;
1350 }
1351
Vincent Bernat02779b62016-04-03 13:48:43 +02001352 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001353 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001354 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001355 err_code |= ERR_ALERT | ERR_ABORT;
1356 goto out;
1357 }
1358
1359 newuser->user = strdup(args[1]);
1360
1361 newuser->next = userlist->users;
1362 userlist->users = newuser;
1363
1364 cur_arg = 2;
1365
1366 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001367 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001368#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001369 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001370 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1371 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001372 err_code |= ERR_ALERT | ERR_FATAL;
1373 goto out;
1374 }
1375#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001376 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1377 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001378 err_code |= ERR_ALERT;
1379#endif
1380 newuser->pass = strdup(args[cur_arg + 1]);
1381 cur_arg += 2;
1382 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001383 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001384 newuser->pass = strdup(args[cur_arg + 1]);
1385 newuser->flags |= AU_O_INSECURE;
1386 cur_arg += 2;
1387 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001388 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001389 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001390 cur_arg += 2;
1391 continue;
1392 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001393 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1394 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001395 err_code |= ERR_ALERT | ERR_FATAL;
1396 goto out;
1397 }
1398 }
1399 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001400 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 +01001401 err_code |= ERR_ALERT | ERR_FATAL;
1402 }
1403
1404out:
1405 return err_code;
1406}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001407
Christopher Faulet79bdef32016-11-04 22:36:15 +01001408int
1409cfg_parse_scope(const char *file, int linenum, char *line)
1410{
1411 char *beg, *end, *scope = NULL;
1412 int err_code = 0;
1413 const char *err;
1414
1415 beg = line + 1;
1416 end = strchr(beg, ']');
1417
1418 /* Detect end of scope declaration */
1419 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001420 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1421 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001422 err_code |= ERR_ALERT | ERR_FATAL;
1423 goto out;
1424 }
1425
1426 /* Get scope name and check its validity */
1427 scope = my_strndup(beg, end-beg);
1428 err = invalid_char(scope);
1429 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001430 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1431 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001432 err_code |= ERR_ALERT | ERR_ABORT;
1433 goto out;
1434 }
1435
1436 /* Be sure to have a scope declaration alone on its line */
1437 line = end+1;
1438 while (isspace((unsigned char)*line))
1439 line++;
1440 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001441 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1442 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001443 err_code |= ERR_ALERT | ERR_ABORT;
1444 goto out;
1445 }
1446
1447 /* We have a valid scope declaration, save it */
1448 free(cfg_scope);
1449 cfg_scope = scope;
1450 scope = NULL;
1451
1452 out:
1453 free(scope);
1454 return err_code;
1455}
1456
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001457int
1458cfg_parse_track_sc_num(unsigned int *track_sc_num,
1459 const char *arg, const char *end, char **errmsg)
1460{
1461 const char *p;
1462 unsigned int num;
1463
1464 p = arg;
1465 num = read_uint64(&arg, end);
1466
1467 if (arg != end) {
1468 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1469 return -1;
1470 }
1471
1472 if (num >= MAX_SESS_STKCTR) {
1473 memprintf(errmsg, "%u track-sc number exceeding "
1474 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1475 return -1;
1476 }
1477
1478 *track_sc_num = num;
1479 return 0;
1480}
1481
Willy Tarreaubaaee002006-06-26 02:48:02 +02001482/*
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001483 * Detect a global section after a non-global one and output a diagnostic
1484 * warning.
1485 */
1486static void check_section_position(char *section_name,
1487 const char *file, int linenum,
1488 int *non_global_parsed)
1489{
1490 if (!strcmp(section_name, "global")) {
1491 if (*non_global_parsed == 1)
1492 _ha_diag_warning("parsing [%s:%d] : global section detected after a non-global one, the prevalence of their statements is unspecified\n", file, linenum);
1493 }
1494 else if (*non_global_parsed == 0) {
1495 *non_global_parsed = 1;
1496 }
1497}
1498
1499/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001500 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001501 * Returns the error code, 0 if OK, or any combination of :
1502 * - ERR_ABORT: must abort ASAP
1503 * - ERR_FATAL: we can continue parsing but not start the service
1504 * - ERR_WARN: a warning has been emitted
1505 * - ERR_ALERT: an alert has been emitted
1506 * Only the two first ones can stop processing, the two others are just
1507 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001508 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001509int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001510{
William Lallemand64e84512015-05-12 14:25:37 +02001511 char *thisline;
1512 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001513 FILE *f;
1514 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001515 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001516 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001517 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001518 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001519 char *outline = NULL;
1520 size_t outlen = 0;
1521 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001522 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001523 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001524 int nested_cond_lvl = 0;
1525 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001526 int non_global_section_parsed = 0;
William Lallemand64e84512015-05-12 14:25:37 +02001527
1528 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001529 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001530 return -1;
1531 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001532
David Carlier97880bb2016-04-08 10:35:26 +01001533 if ((f=fopen(file,"r")) == NULL) {
1534 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001535 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001536 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001537
William Lallemandb2f07452015-05-12 14:27:13 +02001538next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001539 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001540 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001541 char *end;
1542 char *args[MAX_LINE_ARGS + 1];
1543 char *line = thisline;
1544
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001545 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001546 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1547 file, linenum, (missing_lf + 1));
1548 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001549 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001550 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001551 }
1552
Willy Tarreaubaaee002006-06-26 02:48:02 +02001553 linenum++;
1554
Willy Tarreau32234e72020-06-16 17:14:33 +02001555 if (fatal >= 50) {
1556 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1557 break;
1558 }
1559
Willy Tarreaubaaee002006-06-26 02:48:02 +02001560 end = line + strlen(line);
1561
William Lallemand64e84512015-05-12 14:25:37 +02001562 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001563 /* Check if we reached the limit and the last char is not \n.
1564 * Watch out for the last line without the terminating '\n'!
1565 */
William Lallemand64e84512015-05-12 14:25:37 +02001566 char *newline;
1567 int newlinesize = linesize * 2;
1568
1569 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1570 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001571 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1572 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001573 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001574 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001575 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001576 continue;
1577 }
1578
1579 readbytes = linesize - 1;
1580 linesize = newlinesize;
1581 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001582 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001583 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001584 }
1585
William Lallemand64e84512015-05-12 14:25:37 +02001586 readbytes = 0;
1587
Willy Tarreau08488f62020-06-26 17:24:54 +02001588 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001589 /* kill trailing LF */
1590 *(end - 1) = 0;
1591 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001592 else {
1593 /* mark this line as truncated */
1594 missing_lf = end - line;
1595 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001596
Willy Tarreaubaaee002006-06-26 02:48:02 +02001597 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001598 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001599 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001600
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001601 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001602 err_code |= cfg_parse_scope(file, linenum, line);
1603 goto next_line;
1604 }
1605
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001606 while (1) {
1607 uint32_t err;
1608 char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001609
Willy Tarreau61dd44b2020-06-25 07:35:42 +02001610 arg = MAX_LINE_ARGS + 1;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001611 outlen = outlinesize;
1612 err = parse_line(line, outline, &outlen, args, &arg,
1613 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001614 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1615 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001616
1617 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001618 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1619
1620 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1621 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001622 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001623 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001624 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001625 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001626
1627 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001628 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1629
1630 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1631 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001632 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001633 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001634 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001635 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001636
1637 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001638 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1639
1640 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1641 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001642 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001643 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001644 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001645 }
William Lallemandb2f07452015-05-12 14:27:13 +02001646
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001647 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001648 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1649
1650 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1651 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001652 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001653 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001654 goto next_line;
1655 }
William Lallemandb2f07452015-05-12 14:27:13 +02001656
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001657 if (err & PARSE_ERR_WRONG_EXPAND) {
1658 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1659
1660 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1661 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1662 err_code |= ERR_ALERT | ERR_FATAL;
1663 fatal++;
1664 goto next_line;
1665 }
1666
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001667 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1668 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001669 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001670 if (outline == NULL) {
1671 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1672 file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001673 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001674 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001675 goto next_line;
William Lallemandb2f07452015-05-12 14:27:13 +02001676 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001677 /* try again */
1678 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001679 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001680
1681 if (err & PARSE_ERR_TOOMANY) {
1682 /* only check this *after* being sure the output is allocated */
1683 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1684 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1685 err_code |= ERR_ALERT | ERR_FATAL;
1686 fatal++;
1687 goto next_line;
1688 }
1689
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001690 /* everything's OK */
1691 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001692 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001693
1694 /* empty line */
1695 if (!**args)
1696 continue;
1697
Willy Tarreau4b103022021-02-12 17:59:10 +01001698 /* check for config macros */
1699 if (*args[0] == '.') {
1700 if (strcmp(args[0], ".if") == 0) {
1701 nested_cond_lvl++;
1702 if (nested_cond_lvl >= MAXNESTEDCONDS) {
1703 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
1704 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1705 goto err;
1706 }
1707
1708 if (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
1709 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
1710 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
1711 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
1712 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP) {
1713 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
1714 } else if (!*args[1] || *args[1] == '0') {
1715 /* empty = false */
1716 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
1717 } else if (atoi(args[1]) > 0) {
1718 /* true */
1719 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
1720 } else {
1721 ha_alert("parsing [%s:%d]: unparsable conditional expression '%s'.\n", file, linenum, args[1]);
1722 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1723 goto err;
1724 }
1725 goto next_line;
1726 }
1727 else if (strcmp(args[0], ".elif") == 0) {
1728 if (!nested_cond_lvl) {
1729 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
1730 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1731 goto err;
1732 }
1733
1734 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
1735 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
1736 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
1737 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1738 goto err;
1739 }
1740
1741 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
1742 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
1743 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
1744 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
1745 } else if (!*args[1] || *args[1] == '0') {
1746 /* empty = false */
1747 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
1748 } else if (atoi(args[1]) > 0) {
1749 /* true */
1750 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
1751 } else {
1752 ha_alert("parsing [%s:%d]: unparsable conditional expression '%s'.\n", file, linenum, args[1]);
1753 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1754 goto err;
1755 }
1756 goto next_line;
1757 }
1758 else if (strcmp(args[0], ".else") == 0) {
1759 if (!nested_cond_lvl) {
1760 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
1761 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1762 goto err;
1763 }
1764
1765 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
1766 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
1767 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
1768 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1769 goto err;
1770 }
1771
1772 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
1773 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
1774 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
1775 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
1776 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
1777 } else {
1778 /* otherwise we take the "else" */
1779 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
1780 }
1781 goto next_line;
1782 }
1783 else if (strcmp(args[0], ".endif") == 0) {
1784 if (!nested_cond_lvl) {
1785 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
1786 err_code |= ERR_ALERT | ERR_FATAL;
1787 fatal++;
1788 break;
1789 }
1790 nested_cond_lvl--;
1791 goto next_line;
1792 }
1793 }
1794
1795 if (nested_cond_lvl &&
1796 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
1797 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
1798 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
1799 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
1800 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
1801 /* The current block is masked out by the conditions */
1802 goto next_line;
1803 }
1804
1805 /* .warning/.error/.notice */
1806 if (*args[0] == '.') {
1807 if (strcmp(args[0], ".alert") == 0) {
1808 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
1809 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1810 goto err;
1811 }
1812 else if (strcmp(args[0], ".warning") == 0) {
1813 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
1814 err_code |= ERR_WARN;
1815 goto next_line;
1816 }
1817 else if (strcmp(args[0], ".notice") == 0) {
1818 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
1819 goto next_line;
1820 }
1821 else {
1822 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
1823 err_code |= ERR_ALERT | ERR_FATAL;
1824 fatal++;
1825 break;
1826 }
1827 }
1828
Willy Tarreau3842f002009-06-14 11:39:52 +02001829 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001830 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02001831 char *tmp;
1832
Willy Tarreau3842f002009-06-14 11:39:52 +02001833 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02001834 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001835 for (arg=0; *args[arg+1]; arg++)
1836 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02001837 *tmp = '\0'; // fix the next arg to \0
1838 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001839 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001840 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001841 kwm = KWM_DEF;
1842 for (arg=0; *args[arg+1]; arg++)
1843 args[arg] = args[arg+1]; // shift args after inversion
1844 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001845
William Dauchyec730982019-10-27 20:08:10 +01001846 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
1847 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01001848 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
1849 strcmp(args[0], "insecure-fork-wanted") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01001850 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01001851 "supported only for options, log, busy-polling, "
Willy Tarreaud96f1122019-12-03 07:07:36 +01001852 "set-dumpable, strict-limits, and insecure-fork-wanted.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02001853 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001854 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001855 }
1856
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001857 /* detect section start */
1858 list_for_each_entry(ics, &sections, list) {
1859 if (strcmp(args[0], ics->section_name) == 0) {
1860 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001861 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001862 cs = ics;
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001863
1864 if (global.mode & MODE_DIAG) {
1865 check_section_position(args[0], file, linenum,
1866 &non_global_section_parsed);
1867 }
1868
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001869 break;
1870 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001871 }
1872
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001873 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02001874 int status;
1875
1876 status = pcs->post_section_parser();
1877 err_code |= status;
1878 if (status & ERR_FATAL)
1879 fatal++;
1880
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001881 if (err_code & ERR_ABORT)
1882 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001883 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01001884 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001885
William Lallemandd2ff56d2017-10-16 11:06:50 +02001886 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001887 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02001888 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001889 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001890 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02001891 int status;
1892
1893 status = cs->section_parser(file, linenum, args, kwm);
1894 err_code |= status;
1895 if (status & ERR_FATAL)
1896 fatal++;
1897
William Lallemandd2ff56d2017-10-16 11:06:50 +02001898 if (err_code & ERR_ABORT)
1899 goto err;
1900 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001901 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02001902
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001903 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001904 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
1905 file, linenum, (missing_lf + 1));
1906 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001907 }
1908
Christopher Fauletbf7a9592018-12-02 09:37:38 +01001909 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001910 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02001911
Willy Tarreau4b103022021-02-12 17:59:10 +01001912 if (nested_cond_lvl) {
1913 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
1914 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1915 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02001916err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001917 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01001918 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001919 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001920 free(outline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001921 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02001922 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001923}
1924
Willy Tarreau64ab6072014-09-16 12:17:36 +02001925/* This function propagates processes from frontend <from> to backend <to> so
1926 * that it is always guaranteed that a backend pointed to by a frontend is
1927 * bound to all of its processes. After that, if the target is a "listen"
1928 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02001929 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02001930 * checked first to ensure that <to> is already bound to all processes of
1931 * <from>, there is no risk of looping and we ensure to follow the shortest
1932 * path to the destination.
1933 *
1934 * It is possible to set <to> to NULL for the first call so that the function
1935 * takes care of visiting the initial frontend in <from>.
1936 *
1937 * It is important to note that the function relies on the fact that all names
1938 * have already been resolved.
1939 */
1940void propagate_processes(struct proxy *from, struct proxy *to)
1941{
1942 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02001943
1944 if (to) {
1945 /* check whether we need to go down */
1946 if (from->bind_proc &&
1947 (from->bind_proc & to->bind_proc) == from->bind_proc)
1948 return;
1949
1950 if (!from->bind_proc && !to->bind_proc)
1951 return;
1952
1953 to->bind_proc = from->bind_proc ?
1954 (to->bind_proc | from->bind_proc) : 0;
1955
1956 /* now propagate down */
1957 from = to;
1958 }
1959
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01001960 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02001961 return;
1962
Willy Tarreauc3914d42020-09-24 08:39:22 +02001963 if (from->disabled)
Willy Tarreauf6b70012014-12-18 14:00:43 +01001964 return;
1965
Willy Tarreau64ab6072014-09-16 12:17:36 +02001966 /* default_backend */
1967 if (from->defbe.be)
1968 propagate_processes(from, from->defbe.be);
1969
1970 /* use_backend */
1971 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02001972 if (rule->dynamic)
1973 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02001974 to = rule->be.backend;
1975 propagate_processes(from, to);
1976 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02001977}
1978
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01001979#if defined(__linux__) && defined USE_CPU_AFFINITY
1980/* filter directory name of the pattern node<X> */
1981static int numa_filter(const struct dirent *dir)
1982{
1983 char *endptr;
1984
1985 /* dir name must start with "node" prefix */
1986 if (strncmp(dir->d_name, "node", 4))
1987 return 0;
1988
1989 /* dir name must be at least 5 characters long */
1990 if (!dir->d_name[4])
1991 return 0;
1992
1993 /* dir name must end with a numeric id */
1994 if (strtol(&dir->d_name[4], &endptr, 10) < 0 || *endptr)
1995 return 0;
1996
1997 /* all tests succeeded */
1998 return 1;
1999}
2000
2001/* Parse a linux cpu map string representing to a numeric cpu mask map
2002 * The cpu map string is a list of 4-byte hex strings separated by commas, with
2003 * most-significant byte first, one bit per cpu number.
2004 */
2005static void parse_cpumap(char *cpumap_str, struct hap_cpuset *cpu_set)
2006{
2007 unsigned long cpumap;
2008 char *start, *endptr, *comma;
2009 int i, j;
2010
2011 ha_cpuset_zero(cpu_set);
2012
2013 i = 0;
2014 do {
2015 /* reverse-search for a comma, parse the string after the comma
2016 * or at the beginning if no comma found
2017 */
2018 comma = strrchr(cpumap_str, ',');
2019 start = comma ? comma + 1 : cpumap_str;
2020
2021 cpumap = strtoul(start, &endptr, 16);
2022 for (j = 0; cpumap; cpumap >>= 1, ++j) {
2023 if (cpumap & 0x1)
2024 ha_cpuset_set(cpu_set, j + i * 32);
2025 }
2026
2027 if (comma)
2028 *comma = '\0';
2029 ++i;
2030 } while (comma);
2031}
2032
2033/* Read the first line of a file from <path> into the trash buffer.
2034 * Returns 0 on success, otherwise non-zero.
2035 */
2036static int read_file_to_trash(const char *path)
2037{
2038 FILE *file;
2039 int ret = 1;
2040
2041 file = fopen(path, "r");
2042 if (file) {
2043 if (fgets(trash.area, trash.size, file))
2044 ret = 0;
2045
2046 fclose(file);
2047 }
2048
2049 return ret;
2050}
2051
2052/* Inspect the cpu topology of the machine on startup. If a multi-socket
2053 * machine is detected, try to bind on the first node with active cpu. This is
2054 * done to prevent an impact on the overall performance when the topology of
2055 * the machine is unknown. This function is not called if one of the conditions
2056 * is met :
2057 * - a non-null nbthread directive is active
2058 * - a restrictive cpu-map directive is active
2059 * - a restrictive affinity is already applied, for example via taskset
2060 *
2061 * Returns the count of cpus selected. If no automatic binding was required or
2062 * an error occurred and the topology is unknown, 0 is returned.
2063 */
2064static int numa_detect_topology()
2065{
2066 struct dirent **node_dirlist;
2067 int node_dirlist_size;
2068
2069 struct hap_cpuset active_cpus, node_cpu_set;
2070 const char *parse_cpu_set_args[2];
2071 char cpumap_path[PATH_MAX];
2072 char *err = NULL;
2073
2074 /* node_cpu_set count is used as return value */
2075 ha_cpuset_zero(&node_cpu_set);
2076
2077 /* 1. count the sysfs node<X> directories */
2078 node_dirlist_size = scandir(NUMA_DETECT_SYSTEM_SYSFS_PATH"/node", &node_dirlist, numa_filter, alphasort);
2079 if (node_dirlist_size <= 1)
2080 goto free_scandir_entries;
2081
2082 /* 2. read and parse the list of currently online cpu */
2083 if (read_file_to_trash(NUMA_DETECT_SYSTEM_SYSFS_PATH"/cpu/online")) {
2084 ha_notice("Cannot read online CPUs list, will not try to refine binding\n");
2085 goto free_scandir_entries;
2086 }
2087
2088 parse_cpu_set_args[0] = trash.area;
2089 parse_cpu_set_args[1] = "\0";
2090 if (parse_cpu_set(parse_cpu_set_args, &active_cpus, 1, &err)) {
2091 ha_notice("Cannot read online CPUs list: '%s'. Will not try to refine binding\n", err);
2092 free(err);
2093 goto free_scandir_entries;
2094 }
2095
2096 /* 3. loop through nodes dirs and find the first one with active cpus */
2097 while (node_dirlist_size--) {
2098 const char *node = node_dirlist[node_dirlist_size]->d_name;
2099 ha_cpuset_zero(&node_cpu_set);
2100
2101 snprintf(cpumap_path, PATH_MAX, "%s/node/%s/cpumap",
2102 NUMA_DETECT_SYSTEM_SYSFS_PATH, node);
2103
2104 if (read_file_to_trash(cpumap_path)) {
2105 ha_notice("Cannot read CPUs list of '%s', will not select them to refine binding\n", node);
2106 free(node_dirlist[node_dirlist_size]);
2107 continue;
2108 }
2109
2110 parse_cpumap(trash.area, &node_cpu_set);
2111 ha_cpuset_and(&node_cpu_set, &active_cpus);
2112
2113 /* 5. set affinity on the first found node with active cpus */
2114 if (!ha_cpuset_count(&node_cpu_set)) {
2115 free(node_dirlist[node_dirlist_size]);
2116 continue;
2117 }
2118
2119 ha_diag_warning("Multi-socket cpu detected, automatically binding on active CPUs of '%s' (%u active cpu(s))\n", node, ha_cpuset_count(&node_cpu_set));
2120 if (sched_setaffinity(getpid(), sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2121 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2122
2123 /* clear the cpuset used as return value */
2124 ha_cpuset_zero(&node_cpu_set);
2125 }
2126
2127 free(node_dirlist[node_dirlist_size]);
2128 break;
2129 }
2130
2131 free_scandir_entries:
2132 while (node_dirlist_size-- > 0)
2133 free(node_dirlist[node_dirlist_size]);
2134 free(node_dirlist);
2135
2136 return ha_cpuset_count(&node_cpu_set);
2137}
2138#endif /* __linux__ && USE_CPU_AFFINITY */
2139
Willy Tarreaubb925012009-07-23 13:36:36 +02002140/*
2141 * Returns the error code, 0 if OK, or any combination of :
2142 * - ERR_ABORT: must abort ASAP
2143 * - ERR_FATAL: we can continue parsing but not start the service
2144 * - ERR_WARN: a warning has been emitted
2145 * - ERR_ALERT: an alert has been emitted
2146 * Only the two first ones can stop processing, the two others are just
2147 * indicators.
2148 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002149int check_config_validity()
2150{
2151 int cfgerr = 0;
2152 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002153 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002154 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002155 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002156 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002157 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002158 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002159 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01002160 struct resolvers *curr_resolvers = NULL;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002161 int i;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002162
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002163 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002164 /*
2165 * Now, check for the integrity of all that we have collected.
2166 */
2167
2168 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002169 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002170
Willy Tarreau193b8c62012-11-22 00:17:38 +01002171 if (!global.tune.max_http_hdr)
2172 global.tune.max_http_hdr = MAX_HTTP_HDR;
2173
2174 if (!global.tune.cookie_len)
2175 global.tune.cookie_len = CAPTURE_LEN;
2176
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002177 if (!global.tune.requri_len)
2178 global.tune.requri_len = REQURI_LEN;
2179
Willy Tarreau149ab772019-01-26 14:27:06 +01002180 if (!global.nbthread) {
2181 /* nbthread not set, thus automatic. In this case, and only if
2182 * running on a single process, we enable the same number of
2183 * threads as the number of CPUs the process is bound to. This
2184 * allows to easily control the number of threads using taskset.
2185 */
2186 global.nbthread = 1;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002187
Willy Tarreau149ab772019-01-26 14:27:06 +01002188#if defined(USE_THREAD)
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002189 if (global.nbproc == 1) {
2190 int numa_cores = 0;
2191#if defined(__linux__) && defined USE_CPU_AFFINITY
2192 if (!thread_cpu_mask_forced())
2193 numa_cores = numa_detect_topology();
2194#endif
2195 global.nbthread = numa_cores ? numa_cores :
2196 thread_cpus_enabled_at_boot;
2197 }
Willy Tarreau149ab772019-01-26 14:27:06 +01002198 all_threads_mask = nbits(global.nbthread);
2199#endif
2200 }
2201
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002202 if (global.nbproc > 1 && global.nbthread > 1) {
2203 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2204 err_code |= ERR_ALERT | ERR_FATAL;
2205 goto out;
2206 }
2207
Willy Tarreaubafbe012017-11-24 17:34:44 +01002208 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002209
Willy Tarreaubafbe012017-11-24 17:34:44 +01002210 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002211
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002212 /* Post initialisation of the users and groups lists. */
2213 err_code = userlist_postinit();
2214 if (err_code != ERR_NONE)
2215 goto out;
2216
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002217 /* first, we will invert the proxy list order */
2218 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002219 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002220 struct proxy *next;
2221
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002222 next = proxies_list->next;
2223 proxies_list->next = curproxy;
2224 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002225 if (!next)
2226 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002227 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002228 }
2229
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002230 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002231 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002232 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002233 struct sticking_rule *mrule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002234 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002235 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002236 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002237
Willy Tarreau050536d2012-10-04 08:47:34 +02002238 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002239 /* proxy ID not set, use automatic numbering with first
2240 * spare entry starting with next_pxid.
2241 */
2242 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2243 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2244 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002245 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002246 next_pxid++;
2247
Willy Tarreau55ea7572007-06-17 19:56:27 +02002248
Willy Tarreauc3914d42020-09-24 08:39:22 +02002249 if (curproxy->disabled) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002250 /* ensure we don't keep listeners uselessly bound. We
2251 * can't disable their listeners yet (fdtab not
2252 * allocated yet) but let's skip them.
2253 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002254 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002255 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002256 curproxy->table->peers.p = NULL;
2257 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002258 continue;
2259 }
2260
Willy Tarreau102df612014-05-07 23:56:38 +02002261 /* Check multi-process mode compatibility for the current proxy */
2262
2263 if (curproxy->bind_proc) {
2264 /* an explicit bind-process was specified, let's check how many
2265 * processes remain.
2266 */
David Carliere6c39412015-07-02 07:00:17 +00002267 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002268
Willy Tarreaua38a7172019-02-02 17:11:28 +01002269 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002270 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002271 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 +02002272 curproxy->bind_proc = 1;
2273 }
2274 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002275 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 +02002276 curproxy->bind_proc = 0;
2277 }
2278 }
2279
Willy Tarreau3d209582014-05-09 17:06:11 +02002280 /* check and reduce the bind-proc of each listener */
2281 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2282 unsigned long mask;
2283
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002284 /* HTTP frontends with "h2" as ALPN/NPN will work in
2285 * HTTP/2 and absolutely require buffers 16kB or larger.
2286 */
2287#ifdef USE_OPENSSL
2288 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2289#ifdef OPENSSL_NPN_NEGOTIATED
2290 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002291 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002292 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",
2293 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002294 cfgerr++;
2295 }
2296#endif
2297#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2298 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002299 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002300 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",
2301 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002302 cfgerr++;
2303 }
2304#endif
2305 } /* HTTP && bufsize < 16384 */
2306#endif
2307
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002308 /* detect and address thread affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002309 mask = thread_mask(bind_conf->settings.bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002310 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002311 unsigned long new_mask = 0;
2312
2313 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002314 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002315 mask >>= global.nbthread;
2316 }
2317
Willy Tarreaue26993c2020-09-03 07:18:55 +02002318 bind_conf->settings.bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002319 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",
2320 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2321 }
2322
2323 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002324 mask = proc_mask(bind_conf->settings.bind_proc) & proc_mask(curproxy->bind_proc);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002325 if (!(mask & all_proc_mask)) {
2326 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02002327 nbproc = my_popcountl(bind_conf->settings.bind_proc);
2328 bind_conf->settings.bind_proc = proc_mask(bind_conf->settings.bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002329
Willy Tarreaue26993c2020-09-03 07:18:55 +02002330 if (!bind_conf->settings.bind_proc && nbproc == 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002331 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",
2332 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002333 bind_conf->settings.bind_proc = mask & ~(mask - 1);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002334 }
Willy Tarreaue26993c2020-09-03 07:18:55 +02002335 else if (!bind_conf->settings.bind_proc && nbproc > 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002336 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",
2337 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002338 bind_conf->settings.bind_proc = 0;
Willy Tarreaua36b3242019-02-02 13:14:34 +01002339 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002340 }
2341 }
2342
Willy Tarreauff01a212009-03-15 13:46:16 +01002343 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01002344 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002345 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002346 break;
2347
2348 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002349 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002350 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002351
2352 case PR_MODE_CLI:
2353 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2354 break;
Emeric Brun54932b42020-07-07 09:43:24 +02002355 case PR_MODE_SYSLOG:
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002356 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02002357 case PR_MODES:
2358 /* should not happen, bug gcc warn missing switch statement */
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002359 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 +02002360 proxy_type_str(curproxy), curproxy->id);
2361 cfgerr++;
2362 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002363 }
2364
Willy Tarreau4975d142021-03-13 11:00:33 +01002365 if (curproxy != global.cli_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002366 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2367 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002368 err_code |= ERR_WARN;
2369 }
2370
Willy Tarreau77e0dae2020-10-14 15:44:27 +02002371 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002372 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002373 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002374 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2375 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002376 cfgerr++;
2377 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002378#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002379 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002380 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2381 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002382 cfgerr++;
2383 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002384#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002385 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002386 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2387 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002388 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002389 }
2390 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002391 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002392 /* If no LB algo is set in a backend, and we're not in
2393 * transparent mode, dispatch mode nor proxy mode, we
2394 * want to use balance roundrobin by default.
2395 */
2396 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2397 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002398 }
2399 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002400
Willy Tarreau1620ec32011-08-06 17:05:02 +02002401 if (curproxy->options & PR_O_DISPATCH)
2402 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2403 else if (curproxy->options & PR_O_HTTP_PROXY)
2404 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2405 else if (curproxy->options & PR_O_TRANSP)
2406 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002407
Christopher Faulete5870d82020-04-15 11:32:03 +02002408 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2409 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2410 proxy_type_str(curproxy), curproxy->id);
2411 err_code |= ERR_WARN;
2412 }
2413
2414 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002415 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002416 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002417 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2418 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002419 err_code |= ERR_WARN;
2420 curproxy->options &= ~PR_O_DISABLE404;
2421 }
2422 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002423 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2424 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002425 err_code |= ERR_WARN;
2426 curproxy->options &= ~PR_O2_CHK_SNDST;
2427 }
Willy Tarreauef781042010-01-27 11:53:01 +01002428 }
2429
Simon Horman98637e52014-06-20 12:30:16 +09002430 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2431 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002432 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2433 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002434 cfgerr++;
2435 }
2436 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002437 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2438 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002439 cfgerr++;
2440 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002441 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2442 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2443 curproxy->id, "option external-check");
2444 err_code |= ERR_WARN;
2445 }
Simon Horman98637e52014-06-20 12:30:16 +09002446 }
2447
Simon Horman64e34162015-02-06 11:11:57 +09002448 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002449 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002450 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2451 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2452 "'email-alert myhostname', or 'email-alert to' "
2453 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2454 "to be present).\n",
2455 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002456 err_code |= ERR_WARN;
2457 free_email_alert(curproxy);
2458 }
2459 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002460 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002461 }
2462
Simon Horman98637e52014-06-20 12:30:16 +09002463 if (curproxy->check_command) {
2464 int clear = 0;
2465 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002466 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2467 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002468 err_code |= ERR_WARN;
2469 clear = 1;
2470 }
2471 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002472 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2473 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002474 cfgerr++;
2475 }
2476 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002477 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09002478 }
2479 }
2480
2481 if (curproxy->check_path) {
2482 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002483 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2484 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002485 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002486 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09002487 }
2488 }
2489
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002490 /* if a default backend was specified, let's find it */
2491 if (curproxy->defbe.name) {
2492 struct proxy *target;
2493
Willy Tarreauafb39922015-05-26 12:04:09 +02002494 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002495 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002496 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2497 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002498 cfgerr++;
2499 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002500 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2501 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002502 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002503 } else if (target->mode != curproxy->mode &&
2504 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2505
Christopher Faulet767a84b2017-11-24 16:50:31 +01002506 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2507 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2508 curproxy->conf.file, curproxy->conf.line,
2509 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2510 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002511 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002512 } else {
2513 free(curproxy->defbe.name);
2514 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002515 /* Emit a warning if this proxy also has some servers */
2516 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002517 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2518 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002519 err_code |= ERR_WARN;
2520 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002521 }
2522 }
2523
Willy Tarreau55ea7572007-06-17 19:56:27 +02002524 /* find the target proxy for 'use_backend' rules */
2525 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002526 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002527 struct logformat_node *node;
2528 char *pxname;
2529
2530 /* Try to parse the string as a log format expression. If the result
2531 * of the parsing is only one entry containing a simple string, then
2532 * it's a standard string corresponding to a static rule, thus the
2533 * parsing is cancelled and be.name is restored to be resolved.
2534 */
2535 pxname = rule->be.name;
2536 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002537 curproxy->conf.args.ctx = ARGC_UBK;
2538 curproxy->conf.args.file = rule->file;
2539 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002540 err = NULL;
2541 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002542 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2543 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002544 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002545 cfgerr++;
2546 continue;
2547 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002548 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2549
2550 if (!LIST_ISEMPTY(&rule->be.expr)) {
2551 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2552 rule->dynamic = 1;
2553 free(pxname);
2554 continue;
2555 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002556 /* Only one element in the list, a simple string: free the expression and
2557 * fall back to static rule
2558 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002559 LIST_DELETE(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002560 free(node->arg);
2561 free(node);
2562 }
2563
2564 rule->dynamic = 0;
2565 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002566
Willy Tarreauafb39922015-05-26 12:04:09 +02002567 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002568 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002569 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2570 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002571 cfgerr++;
2572 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002573 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2574 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002575 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002576 } else if (target->mode != curproxy->mode &&
2577 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2578
Christopher Faulet767a84b2017-11-24 16:50:31 +01002579 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2580 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2581 curproxy->conf.file, curproxy->conf.line,
2582 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2583 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002584 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002585 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002586 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002587 rule->be.backend = target;
2588 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01002589 err_code |= warnif_tcp_http_cond(curproxy, rule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002590 }
2591
Willy Tarreau64ab6072014-09-16 12:17:36 +02002592 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002593 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002594 struct server *target;
2595 struct logformat_node *node;
2596 char *server_name;
2597
2598 /* We try to parse the string as a log format expression. If the result of the parsing
2599 * is only one entry containing a single string, then it's a standard string corresponding
2600 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2601 */
2602 server_name = srule->srv.name;
2603 LIST_INIT(&srule->expr);
2604 curproxy->conf.args.ctx = ARGC_USRV;
2605 err = NULL;
2606 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2607 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2608 srule->file, srule->line, server_name, err);
2609 free(err);
2610 cfgerr++;
2611 continue;
2612 }
2613 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2614
2615 if (!LIST_ISEMPTY(&srule->expr)) {
2616 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2617 srule->dynamic = 1;
2618 free(server_name);
2619 continue;
2620 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002621 /* Only one element in the list, a simple string: free the expression and
2622 * fall back to static rule
2623 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002624 LIST_DELETE(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002625 free(node->arg);
2626 free(node);
2627 }
2628
2629 srule->dynamic = 0;
2630 srule->srv.name = server_name;
2631 target = findserver(curproxy, srule->srv.name);
Christopher Faulet581db2b2021-03-26 10:02:46 +01002632 err_code |= warnif_tcp_http_cond(curproxy, srule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002633
2634 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002635 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2636 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002637 cfgerr++;
2638 continue;
2639 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01002640 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002641 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002642 }
2643
Emeric Brunb982a3d2010-01-04 15:45:53 +01002644 /* find the target table for 'stick' rules */
2645 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002646 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002647
Emeric Brun1d33b292010-01-04 15:47:17 +01002648 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2649 if (mrule->flags & STK_IS_STORE)
2650 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2651
Emeric Brunb982a3d2010-01-04 15:45:53 +01002652 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002653 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002654 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002655 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002656
2657 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002658 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002659 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002660 cfgerr++;
2661 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002662 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002663 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2664 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002665 cfgerr++;
2666 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002667 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002668 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2669 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002670 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002671 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002672 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002673 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002674 mrule->table.t = target;
2675 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07002676 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002677 if (!in_proxies_list(target->proxies_list, curproxy)) {
2678 curproxy->next_stkt_ref = target->proxies_list;
2679 target->proxies_list = curproxy;
2680 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002681 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01002682 err_code |= warnif_tcp_http_cond(curproxy, mrule->cond);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002683 }
2684
2685 /* find the target table for 'store response' rules */
2686 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002687 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002688
Emeric Brun1d33b292010-01-04 15:47:17 +01002689 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2690
Emeric Brunb982a3d2010-01-04 15:45:53 +01002691 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002692 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002693 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002694 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002695
2696 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002697 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002698 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002699 cfgerr++;
2700 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002701 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002702 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2703 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002704 cfgerr++;
2705 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002706 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002707 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2708 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002709 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002710 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002711 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002712 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002713 mrule->table.t = target;
2714 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07002715 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002716 if (!in_proxies_list(target->proxies_list, curproxy)) {
2717 curproxy->next_stkt_ref = target->proxies_list;
2718 target->proxies_list = curproxy;
2719 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002720 }
2721 }
2722
Christopher Faulet42c6cf92021-03-25 17:19:04 +01002723 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
2724 cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code);
2725 cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code);
2726 cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code);
2727 cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code);
2728 cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code);
2729 cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code);
2730 cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002731
Christopher Faulet5eef0182021-03-31 17:13:49 +02002732 /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */
2733 if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) {
2734 if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP)
2735 ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. "
2736 "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n",
2737 curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy));
2738 }
2739
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002740 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002741 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002742
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002743 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002744 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002745 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002746 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002747 break;
2748 }
2749 }
2750
2751 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002752 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002753 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01002754 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002755 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002756 cfgerr++;
2757 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02002758 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002759 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002760 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002761 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002762 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002763 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2764 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002765 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002766 cfgerr++;
2767 }
2768 }
2769
Simon Horman9dc49962015-01-30 11:22:59 +09002770
2771 if (curproxy->email_alert.mailers.name) {
2772 struct mailers *curmailers = mailers;
2773
2774 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002775 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09002776 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002777 }
Simon Horman9dc49962015-01-30 11:22:59 +09002778 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002779 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2780 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002781 free_email_alert(curproxy);
2782 cfgerr++;
2783 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002784 else {
2785 err = NULL;
2786 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002787 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002788 free(err);
2789 cfgerr++;
2790 }
2791 }
Simon Horman9dc49962015-01-30 11:22:59 +09002792 }
2793
Willy Tarreau5bbc6762021-02-12 11:49:25 +01002794 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002795 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002796 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002797 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2798 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002799 cfgerr++;
2800 goto out_uri_auth_compat;
2801 }
2802
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002803 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01002804 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002805 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002806 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002807 struct act_rule *rule;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002808 i = 0;
2809
Willy Tarreau95fa4692010-02-01 13:05:50 +01002810 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2811 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002812
2813 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002814 uri_auth_compat_req[i++] = "realm";
2815 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2816 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002817
Willy Tarreau95fa4692010-02-01 13:05:50 +01002818 uri_auth_compat_req[i++] = "unless";
2819 uri_auth_compat_req[i++] = "{";
2820 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2821 uri_auth_compat_req[i++] = "}";
2822 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002823
Willy Tarreauff011f22011-01-06 17:51:27 +01002824 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2825 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002826 cfgerr++;
2827 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002828 }
2829
Willy Tarreau2b718102021-04-21 07:32:39 +02002830 LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002831
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002832 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002833 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002834 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01002835 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002836 }
2837out_uri_auth_compat:
2838
Dragan Dosen43885c72015-10-01 13:18:13 +02002839 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002840 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002841 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2842 if (!curproxy->conf.logformat_sd_string) {
2843 /* set the default logformat_sd_string */
2844 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2845 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002846 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002847 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002848 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002849
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002850 /* compile the log format */
2851 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002852 if (curproxy->conf.logformat_string != default_http_log_format &&
2853 curproxy->conf.logformat_string != default_tcp_log_format &&
2854 curproxy->conf.logformat_string != clf_http_log_format)
2855 free(curproxy->conf.logformat_string);
2856 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002857 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02002858 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002859
2860 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2861 free(curproxy->conf.logformat_sd_string);
2862 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002863 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002864 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002865 }
2866
Willy Tarreau62a61232013-04-12 18:13:46 +02002867 if (curproxy->conf.logformat_string) {
2868 curproxy->conf.args.ctx = ARGC_LOG;
2869 curproxy->conf.args.file = curproxy->conf.lfs_file;
2870 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002871 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002872 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
2873 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002874 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002875 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
2876 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002877 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002878 cfgerr++;
2879 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002880 curproxy->conf.args.file = NULL;
2881 curproxy->conf.args.line = 0;
2882 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002883
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002884 if (curproxy->conf.logformat_sd_string) {
2885 curproxy->conf.args.ctx = ARGC_LOGSD;
2886 curproxy->conf.args.file = curproxy->conf.lfsd_file;
2887 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002888 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002889 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
2890 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002891 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002892 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2893 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002894 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002895 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002896 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002897 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2898 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002899 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002900 cfgerr++;
2901 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002902 curproxy->conf.args.file = NULL;
2903 curproxy->conf.args.line = 0;
2904 }
2905
Willy Tarreau62a61232013-04-12 18:13:46 +02002906 if (curproxy->conf.uniqueid_format_string) {
2907 curproxy->conf.args.ctx = ARGC_UIF;
2908 curproxy->conf.args.file = curproxy->conf.uif_file;
2909 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002910 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002911 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
2912 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES,
2913 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR
2914 : SMP_VAL_BE_HRQ_HDR,
2915 &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002916 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
2917 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002918 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002919 cfgerr++;
2920 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002921 curproxy->conf.args.file = NULL;
2922 curproxy->conf.args.line = 0;
2923 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002924
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002925 /* only now we can check if some args remain unresolved.
2926 * This must be done after the users and groups resolution.
2927 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01002928 err = NULL;
2929 i = smp_resolve_args(curproxy, &err);
2930 cfgerr += i;
2931 if (i) {
2932 indent_msg(&err, 8);
2933 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
2934 ha_free(&err);
2935 } else
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002936 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002937
Willy Tarreau2738a142006-07-08 17:28:09 +02002938 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002939 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02002940 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02002941 (!curproxy->timeout.connect ||
2942 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002943 ha_warning("config : missing timeouts for %s '%s'.\n"
2944 " | While not properly invalid, you will certainly encounter various problems\n"
2945 " | with such a configuration. To fix this, please ensure that all following\n"
2946 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
2947 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002948 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02002949 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02002950
Willy Tarreau1fa31262007-12-03 00:36:16 +01002951 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
2952 * We must still support older configurations, so let's find out whether those
2953 * parameters have been set or must be copied from contimeouts.
2954 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01002955 if (!curproxy->timeout.tarpit)
2956 curproxy->timeout.tarpit = curproxy->timeout.connect;
2957 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
2958 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002959
Christopher Faulete5870d82020-04-15 11:32:03 +02002960 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002961 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
2962 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02002963 err_code |= ERR_WARN;
2964 }
2965
Willy Tarreau193b8c62012-11-22 00:17:38 +01002966 /* ensure that cookie capture length is not too large */
2967 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002968 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
2969 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002970 err_code |= ERR_WARN;
2971 curproxy->capture_len = global.tune.cookie_len - 1;
2972 }
2973
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002974 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01002975 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02002976 curproxy->req_cap_pool = create_pool("ptrcap",
2977 curproxy->nb_req_cap * sizeof(char *),
2978 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01002979 }
2980
2981 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02002982 curproxy->rsp_cap_pool = create_pool("ptrcap",
2983 curproxy->nb_rsp_cap * sizeof(char *),
2984 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01002985 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002986
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002987 switch (curproxy->load_server_state_from_file) {
2988 case PR_SRV_STATE_FILE_UNSPEC:
2989 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
2990 break;
2991 case PR_SRV_STATE_FILE_GLOBAL:
2992 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002993 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",
2994 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002995 err_code |= ERR_WARN;
2996 }
2997 break;
2998 }
2999
Willy Tarreaubaaee002006-06-26 02:48:02 +02003000 /* first, we will invert the servers list order */
3001 newsrv = NULL;
3002 while (curproxy->srv) {
3003 struct server *next;
3004
3005 next = curproxy->srv->next;
3006 curproxy->srv->next = newsrv;
3007 newsrv = curproxy->srv;
3008 if (!next)
3009 break;
3010 curproxy->srv = next;
3011 }
3012
Willy Tarreau17edc812014-01-03 12:14:34 +01003013 /* Check that no server name conflicts. This causes trouble in the stats.
3014 * We only emit a warning for the first conflict affecting each server,
3015 * in order to avoid combinatory explosion if all servers have the same
3016 * name. We do that only for servers which do not have an explicit ID,
3017 * because these IDs were made also for distinguishing them and we don't
3018 * want to annoy people who correctly manage them.
3019 */
3020 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3021 struct server *other_srv;
3022
3023 if (newsrv->puid)
3024 continue;
3025
3026 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3027 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003028 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 +01003029 newsrv->conf.file, newsrv->conf.line,
3030 proxy_type_str(curproxy), curproxy->id,
3031 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003032 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003033 break;
3034 }
3035 }
3036 }
3037
Willy Tarreaudd701652010-05-25 23:03:02 +02003038 /* assign automatic UIDs to servers which don't have one yet */
3039 next_id = 1;
3040 newsrv = curproxy->srv;
3041 while (newsrv != NULL) {
3042 if (!newsrv->puid) {
3043 /* server ID not set, use automatic numbering with first
3044 * spare entry starting with next_svid.
3045 */
3046 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3047 newsrv->conf.id.key = newsrv->puid = next_id;
3048 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003049 newsrv->conf.name.key = newsrv->id;
3050 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003051 }
3052 next_id++;
3053 newsrv = newsrv->next;
3054 }
3055
Willy Tarreau20697042007-11-15 23:26:18 +01003056 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003057 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003058
Willy Tarreau62c3be22012-01-20 13:12:32 +01003059 /*
3060 * If this server supports a maxconn parameter, it needs a dedicated
3061 * tasks to fill the emptied slots when a connection leaves.
3062 * Also, resolve deferred tracking dependency if needed.
3063 */
3064 newsrv = curproxy->srv;
3065 while (newsrv != NULL) {
3066 if (newsrv->minconn > newsrv->maxconn) {
3067 /* Only 'minconn' was specified, or it was higher than or equal
3068 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3069 * this will avoid further useless expensive computations.
3070 */
3071 newsrv->maxconn = newsrv->minconn;
3072 } else if (newsrv->maxconn && !newsrv->minconn) {
3073 /* minconn was not specified, so we set it to maxconn */
3074 newsrv->minconn = newsrv->maxconn;
3075 }
3076
William Dauchyf6370442020-11-14 19:25:33 +01003077 /* this will also properly set the transport layer for
3078 * prod and checks
3079 * if default-server have use_ssl, prerare ssl init
3080 * without activating it */
3081 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
3082 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3083 (newsrv->use_ssl != 1 && curproxy->defsrv.use_ssl == 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003084 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3085 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3086 }
Emeric Brun94324a42012-10-11 14:00:19 +02003087
Willy Tarreau034c88c2017-01-23 23:36:45 +01003088 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3089 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3090 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3091 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",
3092 newsrv->conf.file, newsrv->conf.line,
3093 proxy_type_str(curproxy), curproxy->id,
3094 newsrv->id);
3095
Willy Tarreau62c3be22012-01-20 13:12:32 +01003096 if (newsrv->trackit) {
3097 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003098 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003099 char *pname, *sname;
3100
3101 pname = newsrv->trackit;
3102 sname = strrchr(pname, '/');
3103
3104 if (sname)
3105 *sname++ = '\0';
3106 else {
3107 sname = pname;
3108 pname = NULL;
3109 }
3110
3111 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003112 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003113 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003114 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3115 proxy_type_str(curproxy), curproxy->id,
3116 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003117 cfgerr++;
3118 goto next_srv;
3119 }
3120 } else
3121 px = curproxy;
3122
3123 srv = findserver(px, sname);
3124 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003125 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3126 proxy_type_str(curproxy), curproxy->id,
3127 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003128 cfgerr++;
3129 goto next_srv;
3130 }
3131
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003132 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003133 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3134 "tracking as it does not have any check nor agent enabled.\n",
3135 proxy_type_str(curproxy), curproxy->id,
3136 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003137 cfgerr++;
3138 goto next_srv;
3139 }
3140
3141 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3142
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003143 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003144 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3145 "belongs to a tracking chain looping back to %s/%s.\n",
3146 proxy_type_str(curproxy), curproxy->id,
3147 newsrv->id, px->id, srv->id, px->id,
3148 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003149 cfgerr++;
3150 goto next_srv;
3151 }
3152
3153 if (curproxy != px &&
3154 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003155 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3156 "tracking: disable-on-404 option inconsistency.\n",
3157 proxy_type_str(curproxy), curproxy->id,
3158 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003159 cfgerr++;
3160 goto next_srv;
3161 }
3162
Willy Tarreau62c3be22012-01-20 13:12:32 +01003163 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003164 newsrv->tracknext = srv->trackers;
3165 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003166
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003167 ha_free(&newsrv->trackit);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003168 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003169
Willy Tarreau62c3be22012-01-20 13:12:32 +01003170 next_srv:
3171 newsrv = newsrv->next;
3172 }
3173
Olivier Houchard4e694042017-03-14 20:01:29 +01003174 /*
3175 * Try to generate dynamic cookies for servers now.
3176 * It couldn't be done earlier, since at the time we parsed
3177 * the server line, we may not have known yet that we
3178 * should use dynamic cookies, or the secret key may not
3179 * have been provided yet.
3180 */
3181 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3182 newsrv = curproxy->srv;
3183 while (newsrv != NULL) {
3184 srv_set_dyncookie(newsrv);
3185 newsrv = newsrv->next;
3186 }
3187
3188 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003189 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003190 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003191 */
3192
3193 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3194 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3195 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003196 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3197 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3198 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003199 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3200 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3201 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003202 } else {
3203 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3204 fwrr_init_server_groups(curproxy);
3205 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003206 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003207
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003208 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003209 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3210 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3211 fwlc_init_server_tree(curproxy);
3212 } else {
3213 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3214 fas_init_server_tree(curproxy);
3215 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003216 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003217
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003218 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003219 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3220 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3221 chash_init_server_tree(curproxy);
3222 } else {
3223 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3224 init_server_map(curproxy);
3225 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003226 break;
3227 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003228 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003229
3230 if (curproxy->options & PR_O_LOGASAP)
3231 curproxy->to_log &= ~LW_BYTES;
3232
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003233 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003234 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3235 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003236 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3237 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003238 err_code |= ERR_WARN;
3239 }
3240
Christopher Faulet3b6446f2021-03-15 15:10:38 +01003241 if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) {
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003242 int optnum;
3243
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003244 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003245 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3246 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003247 err_code |= ERR_WARN;
3248 curproxy->uri_auth = NULL;
3249 }
3250
Willy Tarreaude7dc882017-03-10 11:49:21 +01003251 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003252 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3253 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003254 err_code |= ERR_WARN;
3255 }
3256
3257 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003258 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3259 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003260 err_code |= ERR_WARN;
3261 }
3262
3263 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003264 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3265 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003266 err_code |= ERR_WARN;
3267 }
3268
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003269 if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) {
3270 ha_warning("config : 'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3271 proxy_type_str(curproxy), curproxy->id);
3272 err_code |= ERR_WARN;
3273 }
3274
Willy Tarreaude7dc882017-03-10 11:49:21 +01003275 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003276 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3277 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003278 err_code |= ERR_WARN;
3279 }
3280
Willy Tarreau87cf5142011-08-19 22:57:24 +02003281 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003282 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3283 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003284 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003285 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003286 }
3287
3288 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003289 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3290 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003291 err_code |= ERR_WARN;
3292 curproxy->options &= ~PR_O_ORGTO;
3293 }
3294
3295 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3296 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3297 (curproxy->cap & cfg_opts[optnum].cap) &&
3298 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003299 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3300 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003301 err_code |= ERR_WARN;
3302 curproxy->options &= ~cfg_opts[optnum].val;
3303 }
3304 }
3305
3306 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3307 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3308 (curproxy->cap & cfg_opts2[optnum].cap) &&
3309 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003310 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3311 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003312 err_code |= ERR_WARN;
3313 curproxy->options2 &= ~cfg_opts2[optnum].val;
3314 }
3315 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003316
Willy Tarreau29fbe512015-08-20 19:35:14 +02003317#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003318 if (curproxy->conn_src.bind_hdr_occ) {
3319 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003320 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3321 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003322 err_code |= ERR_WARN;
3323 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003324#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003325 }
3326
Willy Tarreaubaaee002006-06-26 02:48:02 +02003327 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003328 * ensure that we're not cross-dressing a TCP server into HTTP.
3329 */
3330 newsrv = curproxy->srv;
3331 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003332 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003333 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3334 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003335 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003336 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003337
Willy Tarreau0cec3312011-10-31 13:49:26 +01003338 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003339 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3340 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003341 err_code |= ERR_WARN;
3342 }
3343
Willy Tarreauc93cd162014-05-13 15:54:22 +02003344 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003345 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3346 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003347 err_code |= ERR_WARN;
3348 }
3349
Willy Tarreau29fbe512015-08-20 19:35:14 +02003350#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003351 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3352 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003353 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3354 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003355 err_code |= ERR_WARN;
3356 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003357#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003358
Willy Tarreau46deab62018-04-28 07:18:15 +02003359 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3360 curproxy->options &= ~PR_O_REUSE_MASK;
3361
Willy Tarreau21d2af32008-02-14 20:25:24 +01003362 newsrv = newsrv->next;
3363 }
3364
Christopher Fauletd7c91962015-04-30 11:48:27 +02003365 /* Check filter configuration, if any */
3366 cfgerr += flt_check(curproxy);
3367
Willy Tarreauc1a21672009-08-16 22:37:44 +02003368 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003369 if (!curproxy->accept)
3370 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003371
Willy Tarreauc1a21672009-08-16 22:37:44 +02003372 if (curproxy->tcp_req.inspect_delay ||
3373 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003374 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003375
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003376 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003377 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003378 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003379 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003380
William Lallemandcf62f7e2018-10-26 14:47:40 +02003381 if (curproxy->mode == PR_MODE_CLI) {
3382 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3383 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3384 }
3385
Willy Tarreauc1a21672009-08-16 22:37:44 +02003386 /* both TCP and HTTP must check switching rules */
3387 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003388
3389 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003390 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003391 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3392 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 +02003393 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003394 }
3395
3396 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003397 if (curproxy->tcp_req.inspect_delay ||
3398 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3399 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3400
Emeric Brun97679e72010-09-23 17:56:44 +02003401 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3402 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3403
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003404 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003405 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003406 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003407 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003408
3409 /* If the backend does requires RDP cookie persistence, we have to
3410 * enable the corresponding analyser.
3411 */
3412 if (curproxy->options2 & PR_O2_RDPC_PRST)
3413 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003414
3415 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003416 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003417 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3418 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 +02003419 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003420 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003421
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003422 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003423 * attached to the current proxy */
3424 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3425 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003426 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003427
3428 if (!bind_conf->mux_proto)
3429 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003430
3431 /* it is possible that an incorrect mux was referenced
3432 * due to the proxy's mode not being taken into account
3433 * on first pass. Let's adjust it now.
3434 */
3435 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3436
3437 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003438 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3439 proxy_type_str(curproxy), curproxy->id,
3440 (int)bind_conf->mux_proto->token.len,
3441 bind_conf->mux_proto->token.ptr,
3442 bind_conf->arg, bind_conf->file, bind_conf->line);
3443 cfgerr++;
3444 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003445
3446 /* update the mux */
3447 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003448 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003449 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3450 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003451 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003452
3453 if (!newsrv->mux_proto)
3454 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003455
3456 /* it is possible that an incorrect mux was referenced
3457 * due to the proxy's mode not being taken into account
3458 * on first pass. Let's adjust it now.
3459 */
3460 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3461
3462 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003463 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3464 proxy_type_str(curproxy), curproxy->id,
3465 (int)newsrv->mux_proto->token.len,
3466 newsrv->mux_proto->token.ptr,
3467 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3468 cfgerr++;
3469 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003470
3471 /* update the mux */
3472 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003473 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01003474 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003475
Willy Tarreau4cdac162021-03-05 10:48:42 +01003476 /***********************************************************/
3477 /* At this point, target names have already been resolved. */
3478 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01003479
Willy Tarreau4cdac162021-03-05 10:48:42 +01003480 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01003481
Willy Tarreau4cdac162021-03-05 10:48:42 +01003482 list_for_each_entry(newsrv, &servers_list, global_list) {
3483 /* initialize idle conns lists */
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003484 newsrv->per_thr = calloc(global.nbthread, sizeof(*newsrv->per_thr));
3485 if (!newsrv->per_thr) {
3486 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
3487 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01003488 cfgerr++;
3489 continue;
3490 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003491
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003492 for (i = 0; i < global.nbthread; i++) {
3493 newsrv->per_thr[i].idle_conns = EB_ROOT;
3494 newsrv->per_thr[i].safe_conns = EB_ROOT;
3495 newsrv->per_thr[i].avail_conns = EB_ROOT;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01003496 MT_LIST_INIT(&newsrv->per_thr[i].streams);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003497 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003498
Willy Tarreau4cdac162021-03-05 10:48:42 +01003499 if (newsrv->max_idle_conns != 0) {
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003500 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
3501 if (!newsrv->curr_idle_thr) {
3502 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3503 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3504 cfgerr++;
3505 continue;
3506 }
3507 }
3508 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003509
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003510 idle_conn_task = task_new(MAX_THREADS_MASK);
3511 if (!idle_conn_task) {
3512 ha_alert("parsing : failed to allocate global idle connection task.\n");
3513 cfgerr++;
3514 }
3515 else {
3516 idle_conn_task->process = srv_cleanup_idle_conns;
3517 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003518
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003519 for (i = 0; i < global.nbthread; i++) {
3520 idle_conns[i].cleanup_task = task_new(1UL << i);
3521 if (!idle_conns[i].cleanup_task) {
3522 ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i);
3523 cfgerr++;
3524 break;
Willy Tarreau4cdac162021-03-05 10:48:42 +01003525 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003526
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003527 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
3528 idle_conns[i].cleanup_task->context = NULL;
3529 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
3530 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Willy Tarreau835daa12019-02-07 14:46:29 +01003531 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003532 }
3533
Willy Tarreau419ead82014-09-16 13:41:21 +02003534 /* Check multi-process mode compatibility */
3535
Willy Tarreau4975d142021-03-13 11:00:33 +01003536 if (global.nbproc > 1 && global.cli_fe) {
3537 list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003538 unsigned long mask;
3539
Willy Tarreau4975d142021-03-13 11:00:33 +01003540 mask = proc_mask(global.cli_fe->bind_proc) && all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02003541 mask &= proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003542
3543 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003544 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003545 break;
3546 }
Willy Tarreau4975d142021-03-13 11:00:33 +01003547 if (&bind_conf->by_fe != &global.cli_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003548 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 +02003549 }
3550 }
3551
3552 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003553 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003554 if (curproxy->bind_proc)
3555 continue;
3556
3557 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3558 unsigned long mask;
3559
Willy Tarreaue26993c2020-09-03 07:18:55 +02003560 mask = proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003561 curproxy->bind_proc |= mask;
3562 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003563 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003564 }
3565
Willy Tarreau4975d142021-03-13 11:00:33 +01003566 if (global.cli_fe) {
3567 list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003568 unsigned long mask;
3569
Willy Tarreaue26993c2020-09-03 07:18:55 +02003570 mask = bind_conf->settings.bind_proc ? bind_conf->settings.bind_proc : 0;
Willy Tarreau4975d142021-03-13 11:00:33 +01003571 global.cli_fe->bind_proc |= mask;
Willy Tarreau419ead82014-09-16 13:41:21 +02003572 }
Willy Tarreau4975d142021-03-13 11:00:33 +01003573 global.cli_fe->bind_proc = proc_mask(global.cli_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003574 }
3575
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003576 /* propagate bindings from frontends to backends. Don't do it if there
3577 * are any fatal errors as we must not call it with unresolved proxies.
3578 */
3579 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003580 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003581 if (curproxy->cap & PR_CAP_FE)
3582 propagate_processes(curproxy, NULL);
3583 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003584 }
3585
3586 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003587 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3588 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003589
3590 /*******************************************************/
3591 /* At this step, all proxies have a non-null bind_proc */
3592 /*******************************************************/
3593
3594 /* perform the final checks before creating tasks */
3595
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003596 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003597 struct listener *listener;
3598 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003599
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003600 /* Configure SSL for each bind line.
3601 * Note: if configuration fails at some point, the ->ctx member
3602 * remains NULL so that listeners can later detach.
3603 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003604 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003605 if (bind_conf->xprt->prepare_bind_conf &&
3606 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003607 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003608 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003609
Willy Tarreaue6b98942007-10-29 01:09:36 +01003610 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003611 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003612 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003613 int nbproc;
3614
3615 nbproc = my_popcountl(curproxy->bind_proc &
Willy Tarreaue26993c2020-09-03 07:18:55 +02003616 (listener->bind_conf->settings.bind_proc ? listener->bind_conf->settings.bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003617 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003618
3619 if (!nbproc) /* no intersection between listener and frontend */
3620 nbproc = 1;
3621
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003622 if (!listener->luid) {
3623 /* listener ID not set, use automatic numbering with first
3624 * spare entry starting with next_luid.
3625 */
3626 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3627 listener->conf.id.key = listener->luid = next_id;
3628 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003629 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003630 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003631
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003632 /* enable separate counters */
3633 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003634 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003635 if (!listener->name)
3636 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003637 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003638
Willy Tarreaue6b98942007-10-29 01:09:36 +01003639 if (curproxy->options & PR_O_TCP_NOLING)
3640 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003641 if (!listener->maxaccept)
Willy Tarreau66161322021-02-19 15:50:27 +01003642 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau16a21472012-11-19 12:39:59 +01003643
3644 /* we want to have an optimal behaviour on single process mode to
3645 * maximize the work at once, but in multi-process we want to keep
3646 * some fairness between processes, so we target half of the max
3647 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003648 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003649 * used to disable the limit.
3650 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003651 if (listener->maxaccept > 0 && nbproc > 1) {
3652 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003653 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3654 }
3655
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003656 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003657 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003658 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003659
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003660 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003661 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003662
Willy Tarreau620408f2016-10-21 16:37:51 +02003663 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3664 listener->options |= LI_O_TCP_L5_RULES;
3665
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003666 /* smart accept mode is automatic in HTTP mode */
3667 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003668 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003669 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3670 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003671 }
3672
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003673 /* Release unused SSL configs */
3674 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003675 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3676 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003677 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003678
Willy Tarreaua38a7172019-02-02 17:11:28 +01003679 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003680 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003681 int count, maxproc = 0;
3682
3683 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreaue26993c2020-09-03 07:18:55 +02003684 count = my_popcountl(bind_conf->settings.bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003685 if (count > maxproc)
3686 maxproc = count;
3687 }
3688 /* backends have 0, frontends have 1 or more */
3689 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003690 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3691 " limited to process assigned to the current request.\n",
3692 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003693
Willy Tarreau102df612014-05-07 23:56:38 +02003694 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003695 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3696 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003697 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003698 }
Willy Tarreau102df612014-05-07 23:56:38 +02003699 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003700 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3701 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003702 }
3703 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003704
3705 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003706 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003707 if (curproxy->task) {
3708 curproxy->task->context = curproxy;
3709 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003710 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003711 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3712 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003713 cfgerr++;
3714 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003715 }
3716
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003717 /*
3718 * Recount currently required checks.
3719 */
3720
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003721 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003722 int optnum;
3723
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003724 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3725 if (curproxy->options & cfg_opts[optnum].val)
3726 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003727
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003728 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3729 if (curproxy->options2 & cfg_opts2[optnum].val)
3730 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003731 }
3732
Willy Tarreau0fca4832015-05-01 19:12:05 +02003733 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003734 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003735 if (curproxy->table && curproxy->table->peers.p)
3736 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003737
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003738 /* compute the required process bindings for the peers from <stktables_list>
3739 * for all the stick-tables, the ones coming with "peers" sections included.
3740 */
3741 for (t = stktables_list; t; t = t->next) {
3742 struct proxy *p;
3743
3744 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3745 if (t->peers.p && t->peers.p->peers_fe) {
3746 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3747 }
3748 }
3749 }
3750
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003751 if (cfg_peers) {
3752 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003753 struct peer *p, *pb;
3754
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003755 /* In the case the peers frontend was not initialized by a
3756 stick-table used in the configuration, set its bind_proc
3757 by default to the first process. */
3758 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003759 if (curpeers->peers_fe) {
3760 if (curpeers->peers_fe->bind_proc == 0)
3761 curpeers->peers_fe->bind_proc = 1;
3762 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003763 curpeers = curpeers->next;
3764 }
3765
3766 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003767 /* Remove all peers sections which don't have a valid listener,
3768 * which are not used by any table, or which are bound to more
3769 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003770 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003771 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003772 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003773 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003774 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003775
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003776 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003777 /* the "disabled" keyword was present */
3778 if (curpeers->peers_fe)
3779 stop_proxy(curpeers->peers_fe);
3780 curpeers->peers_fe = NULL;
3781 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003782 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003783 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3784 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003785 if (curpeers->peers_fe)
3786 stop_proxy(curpeers->peers_fe);
3787 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003788 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003789 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003790 /* either it's totally stopped or too much used */
3791 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003792 ha_alert("Peers section '%s': peers referenced by sections "
3793 "running in different processes (%d different ones). "
3794 "Check global.nbproc and all tables' bind-process "
3795 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003796 cfgerr++;
3797 }
3798 stop_proxy(curpeers->peers_fe);
3799 curpeers->peers_fe = NULL;
3800 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003801 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003802 /* Initializes the transport layer of the server part of all the peers belonging to
3803 * <curpeers> section if required.
3804 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3805 * of an old process.
3806 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003807 p = curpeers->remote;
3808 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003809 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003810 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 +01003811 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3812 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003813 p = p->next;
3814 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003815 /* Configure the SSL bindings of the local peer if required. */
3816 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3817 struct list *l;
3818 struct bind_conf *bind_conf;
3819
3820 l = &curpeers->peers_fe->conf.bind;
3821 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3822 if (bind_conf->xprt->prepare_bind_conf &&
3823 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3824 cfgerr++;
3825 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003826 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02003827 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3828 curpeers->id);
3829 cfgerr++;
3830 break;
3831 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003832 last = &curpeers->next;
3833 continue;
3834 }
3835
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003836 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003837 p = curpeers->remote;
3838 while (p) {
3839 pb = p->next;
3840 free(p->id);
3841 free(p);
3842 p = pb;
3843 }
3844
3845 /* Destroy and unlink this curpeers section.
3846 * Note: curpeers is backed up into *last.
3847 */
3848 free(curpeers->id);
3849 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003850 /* Reset any refereance to this peers section in the list of stick-tables */
3851 for (t = stktables_list; t; t = t->next) {
3852 if (t->peers.p && t->peers.p == *last)
3853 t->peers.p = NULL;
3854 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003855 free(*last);
3856 *last = curpeers;
3857 }
3858 }
3859
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003860 for (t = stktables_list; t; t = t->next) {
3861 if (t->proxy)
3862 continue;
3863 if (!stktable_init(t)) {
3864 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
3865 cfgerr++;
3866 }
3867 }
3868
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003869 /* initialize stick-tables on backend capable proxies. This must not
3870 * be done earlier because the data size may be discovered while parsing
3871 * other proxies.
3872 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003873 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauc3914d42020-09-24 08:39:22 +02003874 if (curproxy->disabled || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003875 continue;
3876
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003877 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003878 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003879 cfgerr++;
3880 }
3881 }
3882
Simon Horman0d16a402015-01-30 11:22:58 +09003883 if (mailers) {
3884 struct mailers *curmailers = mailers, **last;
3885 struct mailer *m, *mb;
3886
3887 /* Remove all mailers sections which don't have a valid listener.
3888 * This can happen when a mailers section is never referenced.
3889 */
3890 last = &mailers;
3891 while (*last) {
3892 curmailers = *last;
3893 if (curmailers->users) {
3894 last = &curmailers->next;
3895 continue;
3896 }
3897
Christopher Faulet767a84b2017-11-24 16:50:31 +01003898 ha_warning("Removing incomplete section 'mailers %s'.\n",
3899 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09003900
3901 m = curmailers->mailer_list;
3902 while (m) {
3903 mb = m->next;
3904 free(m->id);
3905 free(m);
3906 m = mb;
3907 }
3908
3909 /* Destroy and unlink this curmailers section.
3910 * Note: curmailers is backed up into *last.
3911 */
3912 free(curmailers->id);
3913 curmailers = curmailers->next;
3914 free(*last);
3915 *last = curmailers;
3916 }
3917 }
3918
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003919 /* Update server_state_file_name to backend name if backend is supposed to use
3920 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003921 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003922 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
3923 curproxy->server_state_file_name == NULL)
3924 curproxy->server_state_file_name = strdup(curproxy->id);
3925 }
3926
Emeric Brun750fe792020-12-23 16:51:12 +01003927 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06003928 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
3929 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
3930 curr_resolvers->id, curr_resolvers->conf.file,
3931 curr_resolvers->conf.line);
3932 err_code |= ERR_WARN;
3933 }
3934 }
3935
William Lallemand48b4bb42017-10-23 14:36:34 +02003936 list_for_each_entry(postparser, &postparsers, list) {
3937 if (postparser->func)
3938 cfgerr += postparser->func();
3939 }
3940
Willy Tarreaubb925012009-07-23 13:36:36 +02003941 if (cfgerr > 0)
3942 err_code |= ERR_ALERT | ERR_FATAL;
3943 out:
3944 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003945}
3946
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003947/*
3948 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
3949 * parsing sessions.
3950 */
3951void cfg_register_keywords(struct cfg_kw_list *kwl)
3952{
Willy Tarreau2b718102021-04-21 07:32:39 +02003953 LIST_APPEND(&cfg_keywords.list, &kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003954}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003955
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003956/*
3957 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
3958 */
3959void cfg_unregister_keywords(struct cfg_kw_list *kwl)
3960{
Willy Tarreau2b718102021-04-21 07:32:39 +02003961 LIST_DELETE(&kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003962 LIST_INIT(&kwl->list);
3963}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003964
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003965/* this function register new section in the haproxy configuration file.
3966 * <section_name> is the name of this new section and <section_parser>
3967 * is the called parser. If two section declaration have the same name,
3968 * only the first declared is used.
3969 */
3970int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02003971 int (*section_parser)(const char *, int, char **, int),
3972 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003973{
3974 struct cfg_section *cs;
3975
Willy Tarreau5e4261b2016-05-17 16:16:09 +02003976 list_for_each_entry(cs, &sections, list) {
3977 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003978 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02003979 return 0;
3980 }
3981 }
3982
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003983 cs = calloc(1, sizeof(*cs));
3984 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003985 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003986 return 0;
3987 }
3988
3989 cs->section_name = section_name;
3990 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02003991 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003992
Willy Tarreau2b718102021-04-21 07:32:39 +02003993 LIST_APPEND(&sections, &cs->list);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003994
3995 return 1;
3996}
3997
William Lallemand48b4bb42017-10-23 14:36:34 +02003998/* this function register a new function which will be called once the haproxy
3999 * configuration file has been parsed. It's useful to check dependencies
4000 * between sections or to resolve items once everything is parsed.
4001 */
4002int cfg_register_postparser(char *name, int (*func)())
4003{
4004 struct cfg_postparser *cp;
4005
4006 cp = calloc(1, sizeof(*cp));
4007 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004008 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004009 return 0;
4010 }
4011 cp->name = name;
4012 cp->func = func;
4013
Willy Tarreau2b718102021-04-21 07:32:39 +02004014 LIST_APPEND(&postparsers, &cp->list);
William Lallemand48b4bb42017-10-23 14:36:34 +02004015
4016 return 1;
4017}
4018
Willy Tarreaubaaee002006-06-26 02:48:02 +02004019/*
David Carlier845efb52015-09-25 11:49:18 +01004020 * free all config section entries
4021 */
4022void cfg_unregister_sections(void)
4023{
4024 struct cfg_section *cs, *ics;
4025
4026 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004027 LIST_DELETE(&cs->list);
David Carlier845efb52015-09-25 11:49:18 +01004028 free(cs);
4029 }
4030}
4031
Christopher Faulet7110b402016-10-26 11:09:44 +02004032void cfg_backup_sections(struct list *backup_sections)
4033{
4034 struct cfg_section *cs, *ics;
4035
4036 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004037 LIST_DELETE(&cs->list);
4038 LIST_APPEND(backup_sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004039 }
4040}
4041
4042void cfg_restore_sections(struct list *backup_sections)
4043{
4044 struct cfg_section *cs, *ics;
4045
4046 list_for_each_entry_safe(cs, ics, backup_sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004047 LIST_DELETE(&cs->list);
4048 LIST_APPEND(&sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004049 }
4050}
4051
Willy Tarreaue6552512018-11-26 11:33:13 +01004052/* these are the config sections handled by default */
4053REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4054REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4055REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4056REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4057REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4058REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4059REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4060REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4061REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004062
David Carlier845efb52015-09-25 11:49:18 +01004063/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004064 * Local variables:
4065 * c-indent-level: 8
4066 * c-basic-offset: 8
4067 * End:
4068 */