blob: 0ddbab0008f8103e2b53eac5e0c4408d30d89b0f [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Configuration parser
3 *
Willy Tarreauff011f22011-01-06 17:51:27 +01004 * Copyright 2000-2011 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreaue5733232019-05-22 19:24:06 +020013#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +020014/* This is to have crypt() defined on Linux */
15#define _GNU_SOURCE
16
Willy Tarreaue5733232019-05-22 19:24:06 +020017#ifdef USE_CRYPT_H
Cyril Bonté1a0191d2014-08-29 20:20:02 +020018/* some platforms such as Solaris need this */
19#include <crypt.h>
20#endif
Willy Tarreaue5733232019-05-22 19:24:06 +020021#endif /* USE_LIBCRYPT */
Cyril Bonté1a0191d2014-08-29 20:20:02 +020022
Willy Tarreaubaaee002006-06-26 02:48:02 +020023#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <netdb.h>
27#include <ctype.h>
Willy Tarreau95c20ac2007-03-25 15:39:23 +020028#include <pwd.h>
29#include <grp.h>
Willy Tarreau0b4ed902007-03-26 00:18:40 +020030#include <errno.h>
Willy Tarreau3f49b302007-06-11 00:29:26 +020031#include <sys/types.h>
32#include <sys/stat.h>
33#include <fcntl.h>
34#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035
Willy Tarreaudcc048a2020-06-04 19:11:43 +020036#include <haproxy/acl.h>
Willy Tarreau122eba92020-06-04 10:15:32 +020037#include <haproxy/action-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020038#include <haproxy/api.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020039#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020040#include <haproxy/backend.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020041#include <haproxy/capture.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020042#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020043#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020044#include <haproxy/check.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020045#include <haproxy/chunk.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020046#include <haproxy/connection.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020047#include <haproxy/dns.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020048#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020049#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020050#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020051#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020052#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020053#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020054#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020055#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020056#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020057#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020058#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020059#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020060#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020061#include <haproxy/mailers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020062#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020063#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020064#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020065#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020066#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020067#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020068#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020069#include <haproxy/sample.h>
70#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020071#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020072#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020073#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020074#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020075#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020076#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020077#include <haproxy/thread.h>
78#include <haproxy/time.h>
79#include <haproxy/tools.h>
80#include <haproxy/uri_auth-t.h>
Frédéric Lécaille884f2e92020-11-23 14:23:21 +010081#include <haproxy/xprt_quic.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020082
83
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010084/* Used to chain configuration sections definitions. This list
85 * stores struct cfg_section
86 */
87struct list sections = LIST_HEAD_INIT(sections);
88
William Lallemand48b4bb42017-10-23 14:36:34 +020089struct list postparsers = LIST_HEAD_INIT(postparsers);
90
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010091char *cursection = NULL;
Willy Tarreauc8d5b952019-02-27 17:25:52 +010092int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +010093int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +010094char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +020095
Willy Tarreau5b2c3362008-07-09 19:39:06 +020096/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +010097struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +020098 .list = LIST_HEAD_INIT(cfg_keywords.list)
99};
100
Willy Tarreaubaaee002006-06-26 02:48:02 +0200101/*
102 * converts <str> to a list of listeners which are dynamically allocated.
103 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
104 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
105 * - <port> is a numerical port from 1 to 65535 ;
106 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
107 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200108 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
109 * not NULL, it must be a valid pointer to either NULL or a freeable area that
110 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200111 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200112int 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 +0200113{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200114 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100115 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200116 int port, end;
117
118 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200119
Willy Tarreaubaaee002006-06-26 02:48:02 +0200120 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200121 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100122 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200123
124 str = next;
125 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100126 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200127 *next++ = 0;
128 }
129
Willy Tarreau5fc93282020-09-16 18:25:03 +0200130 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200131 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200132 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200133 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100134 if (!ss2)
135 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200136
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100137 /* OK the address looks correct */
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100138
139#ifdef USE_QUIC
140 /* The transport layer automatically switches to QUIC when QUIC
141 * is selected, regardless of bind_conf settings. We then need
142 * to initialize QUIC params.
143 */
144 if (proto->sock_type == SOCK_DGRAM && proto->ctrl_type == SOCK_STREAM) {
145 bind_conf->xprt = xprt_get(XPRT_QUIC);
146 quic_transport_params_init(&bind_conf->quic_params, 1);
147 }
148#endif
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200149 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200150 memprintf(err, "%s for address '%s'.\n", *err, str);
151 goto fail;
152 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200153 } /* end while(next) */
154 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200155 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200156 fail:
157 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200158 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200159}
160
William Lallemand6e62fb62015-04-28 16:55:23 +0200161/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200162 * converts <str> to a list of datagram-oriented listeners which are dynamically
163 * allocated.
164 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
165 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
166 * - <port> is a numerical port from 1 to 65535 ;
167 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
168 * This can be repeated as many times as necessary, separated by a coma.
169 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
170 * not NULL, it must be a valid pointer to either NULL or a freeable area that
171 * will be replaced with an error message.
172 */
173int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
174{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200175 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200176 char *next, *dupstr;
177 int port, end;
178
179 next = dupstr = strdup(str);
180
181 while (next && *next) {
182 struct sockaddr_storage *ss2;
183 int fd = -1;
184
185 str = next;
186 /* 1) look for the end of the first address */
187 if ((next = strchr(str, ',')) != NULL) {
188 *next++ = 0;
189 }
190
Willy Tarreau5fc93282020-09-16 18:25:03 +0200191 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreauaa333122020-09-16 15:13:04 +0200192 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
193 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
194 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
195 if (!ss2)
196 goto fail;
197
198 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200199 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200200 memprintf(err, "%s for address '%s'.\n", *err, str);
201 goto fail;
202 }
203 } /* end while(next) */
204 free(dupstr);
205 return 1;
206 fail:
207 free(dupstr);
208 return 0;
209}
210
211/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100212 * Report an error in <msg> when there are too many arguments. This version is
213 * intended to be used by keyword parsers so that the message will be included
214 * into the general error message. The index is the current keyword in args.
215 * Return 0 if the number of argument is correct, otherwise build a message and
216 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
217 * message may also be null, it will simply not be produced (useful to check only).
218 * <msg> and <err_code> are only affected on error.
219 */
220int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
221{
222 int i;
223
224 if (!*args[index + maxarg + 1])
225 return 0;
226
227 if (msg) {
228 *msg = NULL;
229 memprintf(msg, "%s", args[0]);
230 for (i = 1; i <= index; i++)
231 memprintf(msg, "%s %s", *msg, args[i]);
232
233 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
234 }
235 if (err_code)
236 *err_code |= ERR_ALERT | ERR_FATAL;
237
238 return 1;
239}
240
241/*
242 * same as too_many_args_idx with a 0 index
243 */
244int too_many_args(int maxarg, char **args, char **msg, int *err_code)
245{
246 return too_many_args_idx(maxarg, 0, args, msg, err_code);
247}
248
249/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200250 * Report a fatal Alert when there is too much arguments
251 * The index is the current keyword in args
252 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
253 * Fill err_code with an ERR_ALERT and an ERR_FATAL
254 */
255int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
256{
257 char *kw = NULL;
258 int i;
259
260 if (!*args[index + maxarg + 1])
261 return 0;
262
263 memprintf(&kw, "%s", args[0]);
264 for (i = 1; i <= index; i++) {
265 memprintf(&kw, "%s %s", kw, args[i]);
266 }
267
Christopher Faulet767a84b2017-11-24 16:50:31 +0100268 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 +0200269 free(kw);
270 *err_code |= ERR_ALERT | ERR_FATAL;
271 return 1;
272}
273
274/*
275 * same as alertif_too_many_args_idx with a 0 index
276 */
277int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
278{
279 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
280}
281
Willy Tarreau61d18892009-03-31 10:49:21 +0200282
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100283/* Report it if a request ACL condition uses some keywords that are incompatible
284 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
285 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
286 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100287 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100288int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100289{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100290 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200291 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100292
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100293 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100294 return 0;
295
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100296 acl = acl_cond_conflicts(cond, where);
297 if (acl) {
298 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100299 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
300 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100301 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100302 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
303 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100304 return ERR_WARN;
305 }
306 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100307 return 0;
308
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100309 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100310 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
311 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100312 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100313 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
314 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100315 return ERR_WARN;
316}
317
Christopher Faulet62519022017-10-16 15:49:32 +0200318/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100319 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100320 * two such numbers delimited by a dash ('-'). On success, it returns
321 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200322 *
323 * Note: this function can also be used to parse a thread number or a set of
324 * threads.
325 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100326int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200327{
Christopher Faulet26028f62017-11-22 15:01:51 +0100328 if (autoinc) {
329 *autoinc = 0;
330 if (strncmp(arg, "auto:", 5) == 0) {
331 arg += 5;
332 *autoinc = 1;
333 }
334 }
335
Christopher Faulet62519022017-10-16 15:49:32 +0200336 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100337 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200338 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100339 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200340 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100341 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200342 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100343 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100344 unsigned int low, high;
345
Christopher Faulet18cca782019-02-07 16:29:41 +0100346 for (p = arg; *p; p++) {
347 if (*p == '-' && !dash)
348 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100349 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100350 memprintf(err, "'%s' is not a valid number/range.", arg);
351 return -1;
352 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100353 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100354
355 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100356 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100357 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100358
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100359 if (high < low) {
360 unsigned int swap = low;
361 low = high;
362 high = swap;
363 }
364
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100365 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100366 memprintf(err, "'%s' is not a valid number/range."
367 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100368 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100369 return 1;
370 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100371
372 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100373 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200374 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100375 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100376
Christopher Faulet5ab51772017-11-22 11:21:58 +0100377 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200378}
379
David Carlier7e351ee2017-12-01 09:14:02 +0000380#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200381/* Parse cpu sets. Each CPU set is either a unique number between 0 and
382 * <LONGBITS> or a range with two such numbers delimited by a dash
383 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
384 * returns 0. otherwise it returns 1 with an error message in <err>.
385 */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100386unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200387{
388 int cur_arg = 0;
389
390 *cpu_set = 0;
391 while (*args[cur_arg]) {
392 char *dash;
393 unsigned int low, high;
394
Willy Tarreau90807112020-02-25 08:16:33 +0100395 if (!isdigit((unsigned char)*args[cur_arg])) {
Christopher Faulet62519022017-10-16 15:49:32 +0200396 memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
397 return -1;
398 }
399
400 low = high = str2uic(args[cur_arg]);
401 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100402 high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
Christopher Faulet62519022017-10-16 15:49:32 +0200403
404 if (high < low) {
405 unsigned int swap = low;
406 low = high;
407 high = swap;
408 }
409
410 if (high >= LONGBITS) {
411 memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
412 return 1;
413 }
414
415 while (low <= high)
416 *cpu_set |= 1UL << low++;
417
418 cur_arg++;
419 }
420 return 0;
421}
David Carlier7e351ee2017-12-01 09:14:02 +0000422#endif
423
Frédéric Lécaille18251032019-01-11 11:07:15 +0100424/* Allocate and initialize the frontend of a "peers" section found in
425 * file <file> at line <linenum> with <id> as ID.
426 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200427 * Note that this function may be called from "default-server"
428 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100429 */
430static int init_peers_frontend(const char *file, int linenum,
431 const char *id, struct peers *peers)
432{
433 struct proxy *p;
434
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200435 if (peers->peers_fe) {
436 p = peers->peers_fe;
437 goto out;
438 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100439
Frédéric Lécaille18251032019-01-11 11:07:15 +0100440 p = calloc(1, sizeof *p);
441 if (!p) {
442 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
443 return -1;
444 }
445
446 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200447 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100448 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200449 /* Finally store this frontend. */
450 peers->peers_fe = p;
451
452 out:
453 if (id && !p->id)
454 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200455 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100456 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100457 if (linenum != -1)
458 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100459
460 return 0;
461}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100462
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100463/* Only change ->file, ->line and ->arg struct bind_conf member values
464 * if already present.
465 */
466static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
467 const char *file, int line,
468 const char *arg, struct xprt_ops *xprt)
469{
470 struct bind_conf *bind_conf;
471
472 if (!LIST_ISEMPTY(&p->conf.bind)) {
473 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
474 free(bind_conf->file);
475 bind_conf->file = strdup(file);
476 bind_conf->line = line;
477 if (arg) {
478 free(bind_conf->arg);
479 bind_conf->arg = strdup(arg);
480 }
481 }
482 else {
483 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
484 }
485
486 return bind_conf;
487}
488
489/*
490 * Allocate a new struct peer parsed at line <linenum> in file <file>
491 * to be added to <peers>.
492 * Returns the new allocated structure if succeeded, NULL if not.
493 */
494static struct peer *cfg_peers_add_peer(struct peers *peers,
495 const char *file, int linenum,
496 const char *id, int local)
497{
498 struct peer *p;
499
500 p = calloc(1, sizeof *p);
501 if (!p) {
502 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
503 return NULL;
504 }
505
506 /* the peers are linked backwards first */
507 peers->count++;
508 p->next = peers->remote;
509 peers->remote = p;
510 p->conf.file = strdup(file);
511 p->conf.line = linenum;
512 p->last_change = now.tv_sec;
513 p->xprt = xprt_get(XPRT_RAW);
514 p->sock_init_arg = NULL;
515 HA_SPIN_INIT(&p->lock);
516 if (id)
517 p->id = strdup(id);
518 if (local) {
519 p->local = 1;
520 peers->local = p;
521 }
522
523 return p;
524}
525
Willy Tarreaubaaee002006-06-26 02:48:02 +0200526/*
William Lallemand51097192015-04-14 16:35:22 +0200527 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200528 * Returns the error code, 0 if OK, or any combination of :
529 * - ERR_ABORT: must abort ASAP
530 * - ERR_FATAL: we can continue parsing but not start the service
531 * - ERR_WARN: a warning has been emitted
532 * - ERR_ALERT: an alert has been emitted
533 * Only the two first ones can stop processing, the two others are just
534 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200535 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200536int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
537{
538 static struct peers *curpeers = NULL;
539 struct peer *newpeer = NULL;
540 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200541 struct bind_conf *bind_conf;
542 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200543 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100544 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100545 static int bind_line, peer_line;
546
547 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
548 int cur_arg;
549 static int kws_dumped;
550 struct bind_conf *bind_conf;
551 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200552
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100553 cur_arg = 1;
554
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200555 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
556 err_code |= ERR_ALERT | ERR_ABORT;
557 goto out;
558 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100559
560 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
561 NULL, xprt_get(XPRT_RAW));
562 if (*args[0] == 'b') {
563 struct listener *l;
564
565 if (peer_line) {
566 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
567 err_code |= ERR_ALERT | ERR_FATAL;
568 goto out;
569 }
570
571 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
572 if (errmsg && *errmsg) {
573 indent_msg(&errmsg, 2);
574 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
575 }
576 else
577 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
578 file, linenum, args[0], args[1], args[2]);
579 err_code |= ERR_FATAL;
580 goto out;
581 }
582 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
583 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100584 l->accept = session_accept_fd;
585 l->analysers |= curpeers->peers_fe->fe_req_ana;
586 l->default_target = curpeers->peers_fe->default_target;
587 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100588 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100589
590 bind_line = 1;
591 if (cfg_peers->local) {
592 newpeer = cfg_peers->local;
593 }
594 else {
595 /* This peer is local.
596 * Note that we do not set the peer ID. This latter is initialized
597 * when parsing "peer" or "server" line.
598 */
599 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
600 if (!newpeer) {
601 err_code |= ERR_ALERT | ERR_ABORT;
602 goto out;
603 }
604 }
Willy Tarreau37159062020-08-27 07:48:42 +0200605 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200606 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100607 cur_arg++;
608 }
609
610 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
611 int ret;
612
613 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
614 err_code |= ret;
615 if (ret) {
616 if (errmsg && *errmsg) {
617 indent_msg(&errmsg, 2);
618 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
619 }
620 else
621 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
622 file, linenum, args[cur_arg]);
623 if (ret & ERR_FATAL)
624 goto out;
625 }
626 cur_arg += 1 + kw->skip;
627 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100628 if (*args[cur_arg] != 0) {
Tim Duesterhus04bcaa12019-05-12 22:54:50 +0200629 char *kws = NULL;
630
631 if (!kws_dumped) {
632 kws_dumped = 1;
633 bind_dump_kws(&kws);
634 indent_msg(&kws, 4);
635 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100636 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.%s%s\n",
637 file, linenum, args[cur_arg], cursection,
638 kws ? " Registered keywords :" : "", kws ? kws: "");
639 free(kws);
640 err_code |= ERR_ALERT | ERR_FATAL;
641 goto out;
642 }
643 }
644 else if (strcmp(args[0], "default-server") == 0) {
645 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
646 err_code |= ERR_ALERT | ERR_ABORT;
647 goto out;
648 }
Emeric Brund3db3842020-07-21 16:54:36 +0200649 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, 0, 1, 1);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200650 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100651 else if (strcmp(args[0], "log") == 0) {
652 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
653 err_code |= ERR_ALERT | ERR_ABORT;
654 goto out;
655 }
656 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), &errmsg)) {
657 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
658 err_code |= ERR_ALERT | ERR_FATAL;
659 goto out;
660 }
661 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200662 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100663 /* Initialize these static variables when entering a new "peers" section*/
664 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100665 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100666 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100667 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100668 goto out;
669 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200670
William Lallemand6e62fb62015-04-28 16:55:23 +0200671 if (alertif_too_many_args(1, file, linenum, args, &err_code))
672 goto out;
673
Emeric Brun32da3c42010-09-23 18:39:19 +0200674 err = invalid_char(args[1]);
675 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100676 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
677 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100678 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100679 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200680 }
681
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200682 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200683 /*
684 * If there are two proxies with the same name only following
685 * combinations are allowed:
686 */
687 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100688 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
689 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200690 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200691 }
692 }
693
Vincent Bernat02779b62016-04-03 13:48:43 +0200694 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100695 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200696 err_code |= ERR_ALERT | ERR_ABORT;
697 goto out;
698 }
699
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200700 curpeers->next = cfg_peers;
701 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200702 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200703 curpeers->conf.line = linenum;
704 curpeers->last_change = now.tv_sec;
705 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200706 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200707 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200708 else if (strcmp(args[0], "peer") == 0 ||
709 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100710 int local_peer, peer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200711
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100712 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100713 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100714 /* The local peer may have already partially been parsed on a "bind" line. */
715 if (*args[0] == 'p') {
716 if (bind_line) {
717 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
718 err_code |= ERR_ALERT | ERR_FATAL;
719 goto out;
720 }
721 peer_line = 1;
722 }
723 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
724 /* The local peer has already been initialized on a "bind" line.
725 * Let's use it and store its ID.
726 */
727 newpeer = cfg_peers->local;
728 newpeer->id = strdup(localpeer);
729 }
730 else {
731 if (local_peer && cfg_peers->local) {
732 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
733 file, linenum, args[0], args[1],
734 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
735 err_code |= ERR_FATAL;
736 goto out;
737 }
738 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
739 if (!newpeer) {
740 err_code |= ERR_ALERT | ERR_ABORT;
741 goto out;
742 }
743 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200744
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100745 /* Line number and peer ID are updated only if this peer is the local one. */
746 if (init_peers_frontend(file,
747 newpeer->local ? linenum: -1,
748 newpeer->local ? newpeer->id : NULL,
749 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200750 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100751 goto out;
752 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100753
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100754 /* This initializes curpeer->peers->peers_fe->srv.
755 * The server address is parsed only if we are parsing a "peer" line,
756 * or if we are parsing a "server" line and the current peer is not the local one.
757 */
Emeric Brund3db3842020-07-21 16:54:36 +0200758 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, peer || !local_peer, 1, 1);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200759 if (!curpeers->peers_fe->srv) {
760 /* Remove the newly allocated peer. */
761 if (newpeer != curpeers->local) {
762 struct peer *p;
763
764 p = curpeers->remote;
765 curpeers->remote = curpeers->remote->next;
766 free(p->id);
767 free(p);
768 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200769 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200770 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200771
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100772 /* If the peer address has just been parsed, let's copy it to <newpeer>
773 * and initializes ->proto.
774 */
775 if (peer || !local_peer) {
776 newpeer->addr = curpeers->peers_fe->srv->addr;
777 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
778 }
779
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100780 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200781 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100782 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200783
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100784 newpeer->srv = curpeers->peers_fe->srv;
785 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200786 goto out;
787
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100788 /* The lines above are reserved to "peer" lines. */
789 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200790 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200791
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100792 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 +0100793
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100794 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
795 if (errmsg && *errmsg) {
796 indent_msg(&errmsg, 2);
797 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 +0100798 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100799 else
800 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
801 file, linenum, args[0], args[1], args[2]);
802 err_code |= ERR_FATAL;
803 goto out;
804 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100805
806 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
807 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100808 l->accept = session_accept_fd;
809 l->analysers |= curpeers->peers_fe->fe_req_ana;
810 l->default_target = curpeers->peers_fe->default_target;
811 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100812 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100813 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100814 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100815 struct stktable *t, *other;
816 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100817 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100818
819 /* Line number and peer ID are updated only if this peer is the local one. */
820 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
821 err_code |= ERR_ALERT | ERR_ABORT;
822 goto out;
823 }
824
825 other = stktable_find_by_name(args[1]);
826 if (other) {
827 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
828 file, linenum, args[1],
829 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
830 other->proxy ? other->id : other->peers.p->id,
831 other->conf.file, other->conf.line);
832 err_code |= ERR_ALERT | ERR_FATAL;
833 goto out;
834 }
835
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100836 /* Build the stick-table name, concatenating the "peers" section name
837 * followed by a '/' character and the table name argument.
838 */
839 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100840 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100841 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
842 file, linenum, args[0], args[1]);
843 err_code |= ERR_ALERT | ERR_FATAL;
844 goto out;
845 }
846
847 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100848 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100849 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
850 file, linenum, args[0], args[1]);
851 err_code |= ERR_ALERT | ERR_FATAL;
852 goto out;
853 }
854
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100855 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100856 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100857 if (!t || !id) {
858 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
859 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +0200860 free(t);
861 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100862 err_code |= ERR_ALERT | ERR_FATAL;
863 goto out;
864 }
865
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100866 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +0200867 if (err_code & ERR_FATAL) {
868 free(t);
869 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100870 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +0200871 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100872
873 stktable_store_name(t);
874 t->next = stktables_list;
875 stktables_list = t;
876 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100877 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200878 curpeers->disabled = 1;
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200879 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100880 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200881 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200882 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200883 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100884 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200885 err_code |= ERR_ALERT | ERR_FATAL;
886 goto out;
887 }
888
889out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100890 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200891 return err_code;
892}
893
Baptiste Assmann325137d2015-04-13 23:40:55 +0200894/*
895 * Parse a <resolvers> section.
896 * Returns the error code, 0 if OK, or any combination of :
897 * - ERR_ABORT: must abort ASAP
898 * - ERR_FATAL: we can continue parsing but not start the service
899 * - ERR_WARN: a warning has been emitted
900 * - ERR_ALERT: an alert has been emitted
901 * Only the two first ones can stop processing, the two others are just
902 * indicators.
903 */
904int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
905{
906 static struct dns_resolvers *curr_resolvers = NULL;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200907 const char *err;
908 int err_code = 0;
909 char *errmsg = NULL;
910
911 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
912 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100913 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200914 err_code |= ERR_ALERT | ERR_ABORT;
915 goto out;
916 }
917
918 err = invalid_char(args[1]);
919 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100920 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
921 file, linenum, *err, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200922 err_code |= ERR_ALERT | ERR_ABORT;
923 goto out;
924 }
925
926 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
927 /* Error if two resolvers owns the same name */
928 if (strcmp(curr_resolvers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100929 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
930 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200931 err_code |= ERR_ALERT | ERR_ABORT;
932 }
933 }
934
Vincent Bernat02779b62016-04-03 13:48:43 +0200935 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100936 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200937 err_code |= ERR_ALERT | ERR_ABORT;
938 goto out;
939 }
940
941 /* default values */
942 LIST_ADDQ(&dns_resolvers, &curr_resolvers->list);
943 curr_resolvers->conf.file = strdup(file);
944 curr_resolvers->conf.line = linenum;
945 curr_resolvers->id = strdup(args[1]);
946 curr_resolvers->query_ids = EB_ROOT;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200947 /* default maximum response size */
948 curr_resolvers->accepted_payload_size = 512;
Baptiste Assmann987e16d2016-11-02 22:23:31 +0100949 /* default hold period for nx, other, refuse and timeout is 30s */
950 curr_resolvers->hold.nx = 30000;
951 curr_resolvers->hold.other = 30000;
952 curr_resolvers->hold.refused = 30000;
953 curr_resolvers->hold.timeout = 30000;
Baptiste Assmann686408b2017-08-18 10:15:42 +0200954 curr_resolvers->hold.obsolete = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200955 /* default hold period for valid is 10s */
Baptiste Assmann4c5490a2015-07-14 21:42:49 +0200956 curr_resolvers->hold.valid = 10000;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200957 curr_resolvers->timeout.resolve = 1000;
958 curr_resolvers->timeout.retry = 1000;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200959 curr_resolvers->resolve_retries = 3;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200960 curr_resolvers->nb_nameservers = 0;
961 LIST_INIT(&curr_resolvers->nameservers);
962 LIST_INIT(&curr_resolvers->resolutions.curr);
963 LIST_INIT(&curr_resolvers->resolutions.wait);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100964 HA_SPIN_INIT(&curr_resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200965 }
966 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
Eric Salama9139ec32020-11-13 15:56:36 +0100967 struct dns_nameserver *newnameserver = NULL;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200968 struct sockaddr_storage *sk;
969 int port1, port2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200970
971 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100972 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
973 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200974 err_code |= ERR_ALERT | ERR_FATAL;
975 goto out;
976 }
977
978 err = invalid_char(args[1]);
979 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100980 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
981 file, linenum, *err, args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200982 err_code |= ERR_ALERT | ERR_FATAL;
983 goto out;
984 }
985
Christopher Faulet67957bd2017-09-27 11:00:59 +0200986 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
Baptiste Assmanna315c552015-11-02 22:55:49 +0100987 /* Error if two resolvers owns the same name */
988 if (strcmp(newnameserver->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100989 ha_alert("Parsing [%s:%d]: nameserver '%s' has same name as another nameserver (declared at %s:%d).\n",
Ben Draut44e609b2018-05-29 15:40:08 -0600990 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
Baptiste Assmanna315c552015-11-02 22:55:49 +0100991 err_code |= ERR_ALERT | ERR_FATAL;
992 }
993 }
994
Vincent Bernat02779b62016-04-03 13:48:43 +0200995 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100996 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200997 err_code |= ERR_ALERT | ERR_ABORT;
998 goto out;
999 }
1000
1001 /* the nameservers are linked backward first */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001002 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001003 newnameserver->resolvers = curr_resolvers;
1004 newnameserver->conf.file = strdup(file);
1005 newnameserver->conf.line = linenum;
1006 newnameserver->id = strdup(args[1]);
1007
Willy Tarreau5fc93282020-09-16 18:25:03 +02001008 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, NULL,
1009 &errmsg, NULL, NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_DGRAM);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001010 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001011 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001012 err_code |= ERR_ALERT | ERR_FATAL;
1013 goto out;
1014 }
1015
Baptiste Assmann325137d2015-04-13 23:40:55 +02001016 newnameserver->addr = *sk;
1017 }
Ben Draut44e609b2018-05-29 15:40:08 -06001018 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
Eric Salama9139ec32020-11-13 15:56:36 +01001019 struct dns_nameserver *newnameserver = NULL;
Ben Draut44e609b2018-05-29 15:40:08 -06001020 const char *whitespace = "\r\n\t ";
1021 char *resolv_line = NULL;
1022 int resolv_linenum = 0;
1023 FILE *f = NULL;
1024 char *address = NULL;
1025 struct sockaddr_storage *sk = NULL;
1026 struct protocol *proto;
1027 int duplicate_name = 0;
1028
1029 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
1030 ha_alert("parsing [%s:%d] : out of memory.\n",
1031 file, linenum);
1032 err_code |= ERR_ALERT | ERR_FATAL;
1033 goto resolv_out;
1034 }
1035
1036 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
1037 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
1038 file, linenum);
1039 err_code |= ERR_ALERT | ERR_FATAL;
1040 goto resolv_out;
1041 }
1042
1043 sk = calloc(1, sizeof(*sk));
1044 if (sk == NULL) {
1045 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
1046 resolv_linenum);
1047 err_code |= ERR_ALERT | ERR_FATAL;
1048 goto resolv_out;
1049 }
1050
1051 while (fgets(resolv_line, LINESIZE, f) != NULL) {
1052 resolv_linenum++;
1053 if (strncmp(resolv_line, "nameserver", 10) != 0)
1054 continue;
1055
1056 address = strtok(resolv_line + 10, whitespace);
1057 if (address == resolv_line + 10)
1058 continue;
1059
1060 if (address == NULL) {
1061 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
1062 resolv_linenum);
1063 err_code |= ERR_WARN;
1064 continue;
1065 }
1066
1067 duplicate_name = 0;
1068 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
1069 if (strcmp(newnameserver->id, address) == 0) {
1070 ha_warning("Parsing [/etc/resolv.conf:%d] : generated name for /etc/resolv.conf nameserver '%s' conflicts with another nameserver (declared at %s:%d), it appears to be a duplicate and will be excluded.\n",
1071 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
1072 err_code |= ERR_WARN;
1073 duplicate_name = 1;
1074 }
1075 }
1076
1077 if (duplicate_name)
1078 continue;
1079
1080 memset(sk, 0, sizeof(*sk));
Willy Tarreau78675252020-05-28 18:07:10 +02001081 if (!str2ip2(address, sk, 1)) {
1082 ha_warning("parsing [/etc/resolv.conf:%d] : address '%s' could not be recognized, nameserver will be excluded.\n",
Ben Draut44e609b2018-05-29 15:40:08 -06001083 resolv_linenum, address);
1084 err_code |= ERR_WARN;
1085 continue;
1086 }
1087
1088 set_host_port(sk, 53);
1089
1090 proto = protocol_by_family(sk->ss_family);
1091 if (!proto || !proto->connect) {
1092 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
1093 resolv_linenum, address);
1094 err_code |= ERR_WARN;
1095 continue;
1096 }
1097
1098 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
1099 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1100 err_code |= ERR_ALERT | ERR_FATAL;
1101 goto resolv_out;
1102 }
1103
1104 newnameserver->conf.file = strdup("/etc/resolv.conf");
1105 if (newnameserver->conf.file == NULL) {
1106 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1107 err_code |= ERR_ALERT | ERR_FATAL;
Eric Salama9139ec32020-11-13 15:56:36 +01001108 free(newnameserver);
Ben Draut44e609b2018-05-29 15:40:08 -06001109 goto resolv_out;
1110 }
1111
1112 newnameserver->id = strdup(address);
1113 if (newnameserver->id == NULL) {
1114 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1115 err_code |= ERR_ALERT | ERR_FATAL;
Eric Salama9139ec32020-11-13 15:56:36 +01001116 free((char *)newnameserver->conf.file);
1117 free(newnameserver);
Ben Draut44e609b2018-05-29 15:40:08 -06001118 goto resolv_out;
1119 }
1120
1121 newnameserver->resolvers = curr_resolvers;
1122 newnameserver->conf.line = resolv_linenum;
1123 newnameserver->addr = *sk;
1124
1125 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
1126 }
1127
1128resolv_out:
1129 free(sk);
1130 free(resolv_line);
1131 if (f != NULL)
1132 fclose(f);
1133 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001134 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
1135 const char *res;
1136 unsigned int time;
1137
1138 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001139 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
1140 file, linenum, args[0]);
1141 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
Baptiste Assmann325137d2015-04-13 23:40:55 +02001142 err_code |= ERR_ALERT | ERR_FATAL;
1143 goto out;
1144 }
1145 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001146 if (res == PARSE_TIME_OVER) {
1147 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s>, maximum value is 2147483647 ms (~24.8 days).\n",
1148 file, linenum, args[1], args[0]);
1149 err_code |= ERR_ALERT | ERR_FATAL;
1150 goto out;
1151 }
1152 else if (res == PARSE_TIME_UNDER) {
1153 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s>, minimum non-null value is 1 ms.\n",
1154 file, linenum, args[1], args[0]);
1155 err_code |= ERR_ALERT | ERR_FATAL;
1156 goto out;
1157 }
1158 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001159 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1160 file, linenum, *res, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001161 err_code |= ERR_ALERT | ERR_FATAL;
1162 goto out;
1163 }
Baptiste Assmann987e16d2016-11-02 22:23:31 +01001164 if (strcmp(args[1], "nx") == 0)
1165 curr_resolvers->hold.nx = time;
1166 else if (strcmp(args[1], "other") == 0)
1167 curr_resolvers->hold.other = time;
1168 else if (strcmp(args[1], "refused") == 0)
1169 curr_resolvers->hold.refused = time;
1170 else if (strcmp(args[1], "timeout") == 0)
1171 curr_resolvers->hold.timeout = time;
1172 else if (strcmp(args[1], "valid") == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001173 curr_resolvers->hold.valid = time;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001174 else if (strcmp(args[1], "obsolete") == 0)
1175 curr_resolvers->hold.obsolete = time;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001176 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001177 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
1178 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001179 err_code |= ERR_ALERT | ERR_FATAL;
1180 goto out;
1181 }
1182
1183 }
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001184 else if (strcmp(args[0], "accepted_payload_size") == 0) {
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001185 int i = 0;
1186
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001187 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001188 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1189 file, linenum, args[0]);
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001190 err_code |= ERR_ALERT | ERR_FATAL;
1191 goto out;
1192 }
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001193
1194 i = atoi(args[1]);
Willy Tarreau0c219be2017-08-22 12:01:26 +02001195 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001196 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
1197 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001198 err_code |= ERR_ALERT | ERR_FATAL;
1199 goto out;
1200 }
1201
1202 curr_resolvers->accepted_payload_size = i;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001203 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001204 else if (strcmp(args[0], "resolution_pool_size") == 0) {
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001205 ha_alert("parsing [%s:%d] : '%s' directive is not supported anymore (it never appeared in a stable release).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01001206 file, linenum, args[0]);
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001207 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001208 goto out;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001209 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001210 else if (strcmp(args[0], "resolve_retries") == 0) {
1211 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001212 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1213 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001214 err_code |= ERR_ALERT | ERR_FATAL;
1215 goto out;
1216 }
1217 curr_resolvers->resolve_retries = atoi(args[1]);
1218 }
1219 else if (strcmp(args[0], "timeout") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001220 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001221 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
1222 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001223 err_code |= ERR_ALERT | ERR_FATAL;
1224 goto out;
1225 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001226 else if (strcmp(args[1], "retry") == 0 ||
1227 strcmp(args[1], "resolve") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001228 const char *res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001229 unsigned int tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001230
1231 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001232 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1233 file, linenum, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001234 err_code |= ERR_ALERT | ERR_FATAL;
1235 goto out;
1236 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001237 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001238 if (res == PARSE_TIME_OVER) {
1239 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1240 file, linenum, args[2], args[0], args[1]);
1241 err_code |= ERR_ALERT | ERR_FATAL;
1242 goto out;
1243 }
1244 else if (res == PARSE_TIME_UNDER) {
1245 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1246 file, linenum, args[2], args[0], args[1]);
1247 err_code |= ERR_ALERT | ERR_FATAL;
1248 goto out;
1249 }
1250 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001251 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1252 file, linenum, *res, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001253 err_code |= ERR_ALERT | ERR_FATAL;
1254 goto out;
1255 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001256 if (args[1][2] == 't')
1257 curr_resolvers->timeout.retry = tout;
1258 else
1259 curr_resolvers->timeout.resolve = tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001260 }
1261 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001262 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
1263 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001264 err_code |= ERR_ALERT | ERR_FATAL;
1265 goto out;
1266 }
Eric Salama9139ec32020-11-13 15:56:36 +01001267 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001268 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001269 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001270 err_code |= ERR_ALERT | ERR_FATAL;
1271 goto out;
1272 }
1273
1274 out:
1275 free(errmsg);
1276 return err_code;
1277}
Simon Horman0d16a402015-01-30 11:22:58 +09001278
1279/*
William Lallemand51097192015-04-14 16:35:22 +02001280 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001281 * Returns the error code, 0 if OK, or any combination of :
1282 * - ERR_ABORT: must abort ASAP
1283 * - ERR_FATAL: we can continue parsing but not start the service
1284 * - ERR_WARN: a warning has been emitted
1285 * - ERR_ALERT: an alert has been emitted
1286 * Only the two first ones can stop processing, the two others are just
1287 * indicators.
1288 */
1289int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1290{
1291 static struct mailers *curmailers = NULL;
1292 struct mailer *newmailer = NULL;
1293 const char *err;
1294 int err_code = 0;
1295 char *errmsg = NULL;
1296
1297 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1298 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001299 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001300 err_code |= ERR_ALERT | ERR_ABORT;
1301 goto out;
1302 }
1303
1304 err = invalid_char(args[1]);
1305 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001306 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1307 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001308 err_code |= ERR_ALERT | ERR_ABORT;
1309 goto out;
1310 }
1311
1312 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1313 /*
1314 * If there are two proxies with the same name only following
1315 * combinations are allowed:
1316 */
1317 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001318 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1319 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001320 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001321 }
1322 }
1323
Vincent Bernat02779b62016-04-03 13:48:43 +02001324 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001325 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001326 err_code |= ERR_ALERT | ERR_ABORT;
1327 goto out;
1328 }
1329
1330 curmailers->next = mailers;
1331 mailers = curmailers;
1332 curmailers->conf.file = strdup(file);
1333 curmailers->conf.line = linenum;
1334 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001335 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1336 * But need enough time so that timeouts don't occur
1337 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001338 }
1339 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1340 struct sockaddr_storage *sk;
1341 int port1, port2;
1342 struct protocol *proto;
1343
1344 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001345 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1346 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001347 err_code |= ERR_ALERT | ERR_FATAL;
1348 goto out;
1349 }
1350
1351 err = invalid_char(args[1]);
1352 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001353 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1354 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001355 err_code |= ERR_ALERT | ERR_FATAL;
1356 goto out;
1357 }
1358
Vincent Bernat02779b62016-04-03 13:48:43 +02001359 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001360 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001361 err_code |= ERR_ALERT | ERR_ABORT;
1362 goto out;
1363 }
1364
1365 /* the mailers are linked backwards first */
1366 curmailers->count++;
1367 newmailer->next = curmailers->mailer_list;
1368 curmailers->mailer_list = newmailer;
1369 newmailer->mailers = curmailers;
1370 newmailer->conf.file = strdup(file);
1371 newmailer->conf.line = linenum;
1372
1373 newmailer->id = strdup(args[1]);
1374
Willy Tarreau5fc93282020-09-16 18:25:03 +02001375 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001376 &errmsg, NULL, NULL,
1377 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 +09001378 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001379 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001380 err_code |= ERR_ALERT | ERR_FATAL;
1381 goto out;
1382 }
1383
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001384 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001385 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1386 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001387 err_code |= ERR_ALERT | ERR_FATAL;
1388 goto out;
1389 }
1390
Simon Horman0d16a402015-01-30 11:22:58 +09001391 newmailer->addr = *sk;
1392 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001393 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001394 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001395 }
1396 else if (strcmp(args[0], "timeout") == 0) {
1397 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001398 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1399 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001400 err_code |= ERR_ALERT | ERR_FATAL;
1401 goto out;
1402 }
1403 else if (strcmp(args[1], "mail") == 0) {
1404 const char *res;
1405 unsigned int timeout_mail;
1406 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001407 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1408 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001409 err_code |= ERR_ALERT | ERR_FATAL;
1410 goto out;
1411 }
1412 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001413 if (res == PARSE_TIME_OVER) {
1414 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1415 file, linenum, args[2], args[0], args[1]);
1416 err_code |= ERR_ALERT | ERR_FATAL;
1417 goto out;
1418 }
1419 else if (res == PARSE_TIME_UNDER) {
1420 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1421 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001422 err_code |= ERR_ALERT | ERR_FATAL;
1423 goto out;
1424 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001425 else if (res) {
1426 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1427 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001428 err_code |= ERR_ALERT | ERR_FATAL;
1429 goto out;
1430 }
1431 curmailers->timeout.mail = timeout_mail;
1432 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001433 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001434 file, linenum, args[0], args[1]);
1435 err_code |= ERR_ALERT | ERR_FATAL;
1436 goto out;
1437 }
1438 }
Simon Horman0d16a402015-01-30 11:22:58 +09001439 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001440 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001441 err_code |= ERR_ALERT | ERR_FATAL;
1442 goto out;
1443 }
1444
1445out:
1446 free(errmsg);
1447 return err_code;
1448}
1449
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001450void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001451{
1452 free(p->email_alert.mailers.name);
1453 p->email_alert.mailers.name = NULL;
1454 free(p->email_alert.from);
1455 p->email_alert.from = NULL;
1456 free(p->email_alert.to);
1457 p->email_alert.to = NULL;
1458 free(p->email_alert.myhostname);
1459 p->email_alert.myhostname = NULL;
1460}
1461
Willy Tarreaubaaee002006-06-26 02:48:02 +02001462
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001463int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001464cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1465{
Willy Tarreaue5733232019-05-22 19:24:06 +02001466#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001467 const char *err;
1468 const char *item = args[0];
1469
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001470 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001471 return 0;
1472 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001473 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001474 size_t idx = 1;
1475 const char *current;
1476 while (*(current = args[idx++])) {
1477 err = invalid_char(current);
1478 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001479 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1480 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001481 return ERR_ALERT | ERR_FATAL;
1482 }
1483
1484 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001485 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1486 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001487 return ERR_ALERT | ERR_FATAL;
1488 }
1489 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001490 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1491 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001492 return ERR_ALERT | ERR_FATAL;
1493 }
1494 }
1495 }
1496
1497 return 0;
1498#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001499 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1500 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001501 return ERR_ALERT | ERR_FATAL;
1502#endif
1503}
1504
1505int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001506cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1507{
1508
1509 int err_code = 0;
1510 const char *err;
1511
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001512 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001513 struct userlist *newul;
1514
1515 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001516 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1517 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001518 err_code |= ERR_ALERT | ERR_FATAL;
1519 goto out;
1520 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001521 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1522 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001523
1524 err = invalid_char(args[1]);
1525 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001526 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1527 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001528 err_code |= ERR_ALERT | ERR_FATAL;
1529 goto out;
1530 }
1531
1532 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001533 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001534 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1535 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001536 err_code |= ERR_WARN;
1537 goto out;
1538 }
1539
Vincent Bernat02779b62016-04-03 13:48:43 +02001540 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001541 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001542 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001543 err_code |= ERR_ALERT | ERR_ABORT;
1544 goto out;
1545 }
1546
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001547 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001548 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001549 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001550 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001551 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001552 goto out;
1553 }
1554
1555 newul->next = userlist;
1556 userlist = newul;
1557
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001558 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001559 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001560 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001561 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001562
1563 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001564 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1565 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001566 err_code |= ERR_ALERT | ERR_FATAL;
1567 goto out;
1568 }
1569
1570 err = invalid_char(args[1]);
1571 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001572 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1573 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001574 err_code |= ERR_ALERT | ERR_FATAL;
1575 goto out;
1576 }
1577
William Lallemand4ac9f542015-05-28 18:03:51 +02001578 if (!userlist)
1579 goto out;
1580
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001581 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001582 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001583 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1584 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001585 err_code |= ERR_ALERT;
1586 goto out;
1587 }
1588
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001589 ag = calloc(1, sizeof(*ag));
1590 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001591 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001592 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001593 goto out;
1594 }
1595
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001596 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001597 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001598 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001599 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001600 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001601 goto out;
1602 }
1603
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001604 cur_arg = 2;
1605
1606 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001607 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001608 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001609 cur_arg += 2;
1610 continue;
1611 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001612 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1613 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001614 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001615 free(ag->groupusers);
1616 free(ag->name);
1617 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001618 goto out;
1619 }
1620 }
1621
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001622 ag->next = userlist->groups;
1623 userlist->groups = ag;
1624
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001625 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001626 struct auth_users *newuser;
1627 int cur_arg;
1628
1629 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001630 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1631 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001632 err_code |= ERR_ALERT | ERR_FATAL;
1633 goto out;
1634 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001635 if (!userlist)
1636 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001637
1638 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001639 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001640 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1641 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001642 err_code |= ERR_ALERT;
1643 goto out;
1644 }
1645
Vincent Bernat02779b62016-04-03 13:48:43 +02001646 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001647 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001648 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001649 err_code |= ERR_ALERT | ERR_ABORT;
1650 goto out;
1651 }
1652
1653 newuser->user = strdup(args[1]);
1654
1655 newuser->next = userlist->users;
1656 userlist->users = newuser;
1657
1658 cur_arg = 2;
1659
1660 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001661 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001662#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001663 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001664 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1665 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001666 err_code |= ERR_ALERT | ERR_FATAL;
1667 goto out;
1668 }
1669#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001670 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1671 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001672 err_code |= ERR_ALERT;
1673#endif
1674 newuser->pass = strdup(args[cur_arg + 1]);
1675 cur_arg += 2;
1676 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001677 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001678 newuser->pass = strdup(args[cur_arg + 1]);
1679 newuser->flags |= AU_O_INSECURE;
1680 cur_arg += 2;
1681 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001682 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001683 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001684 cur_arg += 2;
1685 continue;
1686 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001687 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1688 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001689 err_code |= ERR_ALERT | ERR_FATAL;
1690 goto out;
1691 }
1692 }
1693 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001694 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 +01001695 err_code |= ERR_ALERT | ERR_FATAL;
1696 }
1697
1698out:
1699 return err_code;
1700}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001701
Christopher Faulet79bdef32016-11-04 22:36:15 +01001702int
1703cfg_parse_scope(const char *file, int linenum, char *line)
1704{
1705 char *beg, *end, *scope = NULL;
1706 int err_code = 0;
1707 const char *err;
1708
1709 beg = line + 1;
1710 end = strchr(beg, ']');
1711
1712 /* Detect end of scope declaration */
1713 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001714 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1715 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001716 err_code |= ERR_ALERT | ERR_FATAL;
1717 goto out;
1718 }
1719
1720 /* Get scope name and check its validity */
1721 scope = my_strndup(beg, end-beg);
1722 err = invalid_char(scope);
1723 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001724 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1725 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001726 err_code |= ERR_ALERT | ERR_ABORT;
1727 goto out;
1728 }
1729
1730 /* Be sure to have a scope declaration alone on its line */
1731 line = end+1;
1732 while (isspace((unsigned char)*line))
1733 line++;
1734 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001735 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1736 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001737 err_code |= ERR_ALERT | ERR_ABORT;
1738 goto out;
1739 }
1740
1741 /* We have a valid scope declaration, save it */
1742 free(cfg_scope);
1743 cfg_scope = scope;
1744 scope = NULL;
1745
1746 out:
1747 free(scope);
1748 return err_code;
1749}
1750
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001751int
1752cfg_parse_track_sc_num(unsigned int *track_sc_num,
1753 const char *arg, const char *end, char **errmsg)
1754{
1755 const char *p;
1756 unsigned int num;
1757
1758 p = arg;
1759 num = read_uint64(&arg, end);
1760
1761 if (arg != end) {
1762 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1763 return -1;
1764 }
1765
1766 if (num >= MAX_SESS_STKCTR) {
1767 memprintf(errmsg, "%u track-sc number exceeding "
1768 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1769 return -1;
1770 }
1771
1772 *track_sc_num = num;
1773 return 0;
1774}
1775
Willy Tarreaubaaee002006-06-26 02:48:02 +02001776/*
1777 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001778 * Returns the error code, 0 if OK, or any combination of :
1779 * - ERR_ABORT: must abort ASAP
1780 * - ERR_FATAL: we can continue parsing but not start the service
1781 * - ERR_WARN: a warning has been emitted
1782 * - ERR_ALERT: an alert has been emitted
1783 * Only the two first ones can stop processing, the two others are just
1784 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001785 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001786int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001787{
William Lallemand64e84512015-05-12 14:25:37 +02001788 char *thisline;
1789 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001790 FILE *f;
1791 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001792 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001793 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001794 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001795 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001796 char *outline = NULL;
1797 size_t outlen = 0;
1798 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001799 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001800 int missing_lf = -1;
William Lallemand64e84512015-05-12 14:25:37 +02001801
1802 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001803 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001804 return -1;
1805 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001806
David Carlier97880bb2016-04-08 10:35:26 +01001807 if ((f=fopen(file,"r")) == NULL) {
1808 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001809 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001810 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001811
William Lallemandb2f07452015-05-12 14:27:13 +02001812next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001813 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001814 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001815 char *end;
1816 char *args[MAX_LINE_ARGS + 1];
1817 char *line = thisline;
1818
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001819 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001820 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1821 file, linenum, (missing_lf + 1));
1822 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001823 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001824 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001825 }
1826
Willy Tarreaubaaee002006-06-26 02:48:02 +02001827 linenum++;
1828
Willy Tarreau32234e72020-06-16 17:14:33 +02001829 if (fatal >= 50) {
1830 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1831 break;
1832 }
1833
Willy Tarreaubaaee002006-06-26 02:48:02 +02001834 end = line + strlen(line);
1835
William Lallemand64e84512015-05-12 14:25:37 +02001836 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001837 /* Check if we reached the limit and the last char is not \n.
1838 * Watch out for the last line without the terminating '\n'!
1839 */
William Lallemand64e84512015-05-12 14:25:37 +02001840 char *newline;
1841 int newlinesize = linesize * 2;
1842
1843 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1844 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001845 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1846 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001847 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001848 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001849 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001850 continue;
1851 }
1852
1853 readbytes = linesize - 1;
1854 linesize = newlinesize;
1855 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001856 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001857 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001858 }
1859
William Lallemand64e84512015-05-12 14:25:37 +02001860 readbytes = 0;
1861
Willy Tarreau08488f62020-06-26 17:24:54 +02001862 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001863 /* kill trailing LF */
1864 *(end - 1) = 0;
1865 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001866 else {
1867 /* mark this line as truncated */
1868 missing_lf = end - line;
1869 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001870
Willy Tarreaubaaee002006-06-26 02:48:02 +02001871 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001872 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001873 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001874
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001875 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001876 err_code |= cfg_parse_scope(file, linenum, line);
1877 goto next_line;
1878 }
1879
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001880 while (1) {
1881 uint32_t err;
1882 char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001883
Willy Tarreau61dd44b2020-06-25 07:35:42 +02001884 arg = MAX_LINE_ARGS + 1;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001885 outlen = outlinesize;
1886 err = parse_line(line, outline, &outlen, args, &arg,
1887 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001888 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1889 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001890
1891 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001892 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1893
1894 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1895 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001896 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001897 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001898 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001899 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001900
1901 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001902 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1903
1904 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1905 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001906 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001907 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001908 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001909 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001910
1911 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001912 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1913
1914 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1915 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001916 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001917 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001918 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001919 }
William Lallemandb2f07452015-05-12 14:27:13 +02001920
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001921 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001922 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1923
1924 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1925 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001926 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001927 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001928 goto next_line;
1929 }
William Lallemandb2f07452015-05-12 14:27:13 +02001930
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001931 if (err & PARSE_ERR_WRONG_EXPAND) {
1932 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1933
1934 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1935 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1936 err_code |= ERR_ALERT | ERR_FATAL;
1937 fatal++;
1938 goto next_line;
1939 }
1940
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001941 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1942 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001943 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001944 if (outline == NULL) {
1945 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1946 file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001947 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001948 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001949 goto next_line;
William Lallemandb2f07452015-05-12 14:27:13 +02001950 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001951 /* try again */
1952 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001953 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001954
1955 if (err & PARSE_ERR_TOOMANY) {
1956 /* only check this *after* being sure the output is allocated */
1957 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1958 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1959 err_code |= ERR_ALERT | ERR_FATAL;
1960 fatal++;
1961 goto next_line;
1962 }
1963
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001964 /* everything's OK */
1965 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001966 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001967
1968 /* empty line */
1969 if (!**args)
1970 continue;
1971
Willy Tarreau3842f002009-06-14 11:39:52 +02001972 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001973 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02001974 char *tmp;
1975
Willy Tarreau3842f002009-06-14 11:39:52 +02001976 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02001977 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001978 for (arg=0; *args[arg+1]; arg++)
1979 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02001980 *tmp = '\0'; // fix the next arg to \0
1981 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001982 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001983 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001984 kwm = KWM_DEF;
1985 for (arg=0; *args[arg+1]; arg++)
1986 args[arg] = args[arg+1]; // shift args after inversion
1987 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001988
William Dauchyec730982019-10-27 20:08:10 +01001989 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
1990 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01001991 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
1992 strcmp(args[0], "insecure-fork-wanted") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01001993 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01001994 "supported only for options, log, busy-polling, "
Willy Tarreaud96f1122019-12-03 07:07:36 +01001995 "set-dumpable, strict-limits, and insecure-fork-wanted.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02001996 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001997 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001998 }
1999
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002000 /* detect section start */
2001 list_for_each_entry(ics, &sections, list) {
2002 if (strcmp(args[0], ics->section_name) == 0) {
2003 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002004 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002005 cs = ics;
2006 break;
2007 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002008 }
2009
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002010 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002011 int status;
2012
2013 status = pcs->post_section_parser();
2014 err_code |= status;
2015 if (status & ERR_FATAL)
2016 fatal++;
2017
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002018 if (err_code & ERR_ABORT)
2019 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002020 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002021 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002022
William Lallemandd2ff56d2017-10-16 11:06:50 +02002023 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002024 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002025 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002026 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002027 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002028 int status;
2029
2030 status = cs->section_parser(file, linenum, args, kwm);
2031 err_code |= status;
2032 if (status & ERR_FATAL)
2033 fatal++;
2034
William Lallemandd2ff56d2017-10-16 11:06:50 +02002035 if (err_code & ERR_ABORT)
2036 goto err;
2037 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002038 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002039
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002040 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002041 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2042 file, linenum, (missing_lf + 1));
2043 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002044 }
2045
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002046 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002047 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002048
2049err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002050 free(cfg_scope);
2051 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002052 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002053 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002054 free(outline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002055 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002056 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002057}
2058
Willy Tarreau64ab6072014-09-16 12:17:36 +02002059/* This function propagates processes from frontend <from> to backend <to> so
2060 * that it is always guaranteed that a backend pointed to by a frontend is
2061 * bound to all of its processes. After that, if the target is a "listen"
2062 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002063 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002064 * checked first to ensure that <to> is already bound to all processes of
2065 * <from>, there is no risk of looping and we ensure to follow the shortest
2066 * path to the destination.
2067 *
2068 * It is possible to set <to> to NULL for the first call so that the function
2069 * takes care of visiting the initial frontend in <from>.
2070 *
2071 * It is important to note that the function relies on the fact that all names
2072 * have already been resolved.
2073 */
2074void propagate_processes(struct proxy *from, struct proxy *to)
2075{
2076 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002077
2078 if (to) {
2079 /* check whether we need to go down */
2080 if (from->bind_proc &&
2081 (from->bind_proc & to->bind_proc) == from->bind_proc)
2082 return;
2083
2084 if (!from->bind_proc && !to->bind_proc)
2085 return;
2086
2087 to->bind_proc = from->bind_proc ?
2088 (to->bind_proc | from->bind_proc) : 0;
2089
2090 /* now propagate down */
2091 from = to;
2092 }
2093
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002094 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002095 return;
2096
Willy Tarreauc3914d42020-09-24 08:39:22 +02002097 if (from->disabled)
Willy Tarreauf6b70012014-12-18 14:00:43 +01002098 return;
2099
Willy Tarreau64ab6072014-09-16 12:17:36 +02002100 /* default_backend */
2101 if (from->defbe.be)
2102 propagate_processes(from, from->defbe.be);
2103
2104 /* use_backend */
2105 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002106 if (rule->dynamic)
2107 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002108 to = rule->be.backend;
2109 propagate_processes(from, to);
2110 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002111}
2112
Willy Tarreaubb925012009-07-23 13:36:36 +02002113/*
2114 * Returns the error code, 0 if OK, or any combination of :
2115 * - ERR_ABORT: must abort ASAP
2116 * - ERR_FATAL: we can continue parsing but not start the service
2117 * - ERR_WARN: a warning has been emitted
2118 * - ERR_ALERT: an alert has been emitted
2119 * Only the two first ones can stop processing, the two others are just
2120 * indicators.
2121 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002122int check_config_validity()
2123{
2124 int cfgerr = 0;
2125 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002126 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002127 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002128 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002129 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002130 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002131 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002132 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002133 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002134
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002135 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002136 /*
2137 * Now, check for the integrity of all that we have collected.
2138 */
2139
2140 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002141 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002142
Willy Tarreau193b8c62012-11-22 00:17:38 +01002143 if (!global.tune.max_http_hdr)
2144 global.tune.max_http_hdr = MAX_HTTP_HDR;
2145
2146 if (!global.tune.cookie_len)
2147 global.tune.cookie_len = CAPTURE_LEN;
2148
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002149 if (!global.tune.requri_len)
2150 global.tune.requri_len = REQURI_LEN;
2151
Willy Tarreau149ab772019-01-26 14:27:06 +01002152 if (!global.nbthread) {
2153 /* nbthread not set, thus automatic. In this case, and only if
2154 * running on a single process, we enable the same number of
2155 * threads as the number of CPUs the process is bound to. This
2156 * allows to easily control the number of threads using taskset.
2157 */
2158 global.nbthread = 1;
2159#if defined(USE_THREAD)
2160 if (global.nbproc == 1)
2161 global.nbthread = thread_cpus_enabled_at_boot;
2162 all_threads_mask = nbits(global.nbthread);
2163#endif
2164 }
2165
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002166 if (global.nbproc > 1 && global.nbthread > 1) {
2167 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2168 err_code |= ERR_ALERT | ERR_FATAL;
2169 goto out;
2170 }
2171
Willy Tarreaubafbe012017-11-24 17:34:44 +01002172 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002173
Willy Tarreaubafbe012017-11-24 17:34:44 +01002174 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002175
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002176 /* Post initialisation of the users and groups lists. */
2177 err_code = userlist_postinit();
2178 if (err_code != ERR_NONE)
2179 goto out;
2180
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002181 /* first, we will invert the proxy list order */
2182 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002183 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002184 struct proxy *next;
2185
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002186 next = proxies_list->next;
2187 proxies_list->next = curproxy;
2188 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002189 if (!next)
2190 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002191 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002192 }
2193
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002194 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002195 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002196 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002197 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002198 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002199 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002200 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002201 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002202
Willy Tarreau050536d2012-10-04 08:47:34 +02002203 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002204 /* proxy ID not set, use automatic numbering with first
2205 * spare entry starting with next_pxid.
2206 */
2207 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2208 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2209 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002210 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002211 next_pxid++;
2212
Willy Tarreau55ea7572007-06-17 19:56:27 +02002213
Willy Tarreauc3914d42020-09-24 08:39:22 +02002214 if (curproxy->disabled) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002215 /* ensure we don't keep listeners uselessly bound. We
2216 * can't disable their listeners yet (fdtab not
2217 * allocated yet) but let's skip them.
2218 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002219 if (curproxy->table) {
2220 free((void *)curproxy->table->peers.name);
Willy Tarreau02b092f2020-10-07 18:36:54 +02002221 curproxy->table->peers.name = NULL;
Dragan Dosen7d61a332019-05-07 14:16:18 +02002222 curproxy->table->peers.p = NULL;
2223 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002224 continue;
2225 }
2226
Willy Tarreau102df612014-05-07 23:56:38 +02002227 /* Check multi-process mode compatibility for the current proxy */
2228
2229 if (curproxy->bind_proc) {
2230 /* an explicit bind-process was specified, let's check how many
2231 * processes remain.
2232 */
David Carliere6c39412015-07-02 07:00:17 +00002233 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002234
Willy Tarreaua38a7172019-02-02 17:11:28 +01002235 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002236 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002237 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 +02002238 curproxy->bind_proc = 1;
2239 }
2240 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002241 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 +02002242 curproxy->bind_proc = 0;
2243 }
2244 }
2245
Willy Tarreau3d209582014-05-09 17:06:11 +02002246 /* check and reduce the bind-proc of each listener */
2247 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2248 unsigned long mask;
2249
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002250 /* HTTP frontends with "h2" as ALPN/NPN will work in
2251 * HTTP/2 and absolutely require buffers 16kB or larger.
2252 */
2253#ifdef USE_OPENSSL
2254 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2255#ifdef OPENSSL_NPN_NEGOTIATED
2256 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002257 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002258 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",
2259 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002260 cfgerr++;
2261 }
2262#endif
2263#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2264 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002265 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002266 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",
2267 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002268 cfgerr++;
2269 }
2270#endif
2271 } /* HTTP && bufsize < 16384 */
2272#endif
2273
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002274 /* detect and address thread affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002275 mask = thread_mask(bind_conf->settings.bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002276 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002277 unsigned long new_mask = 0;
2278
2279 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002280 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002281 mask >>= global.nbthread;
2282 }
2283
Willy Tarreaue26993c2020-09-03 07:18:55 +02002284 bind_conf->settings.bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002285 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",
2286 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2287 }
2288
2289 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002290 mask = proc_mask(bind_conf->settings.bind_proc) & proc_mask(curproxy->bind_proc);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002291 if (!(mask & all_proc_mask)) {
2292 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02002293 nbproc = my_popcountl(bind_conf->settings.bind_proc);
2294 bind_conf->settings.bind_proc = proc_mask(bind_conf->settings.bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002295
Willy Tarreaue26993c2020-09-03 07:18:55 +02002296 if (!bind_conf->settings.bind_proc && nbproc == 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002297 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",
2298 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002299 bind_conf->settings.bind_proc = mask & ~(mask - 1);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002300 }
Willy Tarreaue26993c2020-09-03 07:18:55 +02002301 else if (!bind_conf->settings.bind_proc && nbproc > 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002302 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",
2303 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002304 bind_conf->settings.bind_proc = 0;
Willy Tarreaua36b3242019-02-02 13:14:34 +01002305 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002306 }
2307 }
2308
Willy Tarreauff01a212009-03-15 13:46:16 +01002309 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01002310 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002311 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002312 break;
2313
2314 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002315 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002316 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002317
2318 case PR_MODE_CLI:
2319 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2320 break;
Emeric Brun54932b42020-07-07 09:43:24 +02002321 case PR_MODE_SYSLOG:
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002322 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02002323 case PR_MODES:
2324 /* should not happen, bug gcc warn missing switch statement */
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002325 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 +02002326 proxy_type_str(curproxy), curproxy->id);
2327 cfgerr++;
2328 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002329 }
2330
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002331 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002332 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2333 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002334 err_code |= ERR_WARN;
2335 }
2336
Willy Tarreau77e0dae2020-10-14 15:44:27 +02002337 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002338 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002339 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002340 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2341 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002342 cfgerr++;
2343 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002344#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002345 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002346 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2347 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002348 cfgerr++;
2349 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002350#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002351 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002352 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2353 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002354 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002355 }
2356 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002357 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002358 /* If no LB algo is set in a backend, and we're not in
2359 * transparent mode, dispatch mode nor proxy mode, we
2360 * want to use balance roundrobin by default.
2361 */
2362 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2363 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002364 }
2365 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002366
Willy Tarreau1620ec32011-08-06 17:05:02 +02002367 if (curproxy->options & PR_O_DISPATCH)
2368 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2369 else if (curproxy->options & PR_O_HTTP_PROXY)
2370 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2371 else if (curproxy->options & PR_O_TRANSP)
2372 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002373
Christopher Faulete5870d82020-04-15 11:32:03 +02002374 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2375 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2376 proxy_type_str(curproxy), curproxy->id);
2377 err_code |= ERR_WARN;
2378 }
2379
2380 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002381 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002382 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002383 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2384 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002385 err_code |= ERR_WARN;
2386 curproxy->options &= ~PR_O_DISABLE404;
2387 }
2388 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002389 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2390 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002391 err_code |= ERR_WARN;
2392 curproxy->options &= ~PR_O2_CHK_SNDST;
2393 }
Willy Tarreauef781042010-01-27 11:53:01 +01002394 }
2395
Simon Horman98637e52014-06-20 12:30:16 +09002396 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2397 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002398 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2399 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002400 cfgerr++;
2401 }
2402 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002403 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2404 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002405 cfgerr++;
2406 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002407 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2408 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2409 curproxy->id, "option external-check");
2410 err_code |= ERR_WARN;
2411 }
Simon Horman98637e52014-06-20 12:30:16 +09002412 }
2413
Simon Horman64e34162015-02-06 11:11:57 +09002414 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002415 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002416 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2417 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2418 "'email-alert myhostname', or 'email-alert to' "
2419 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2420 "to be present).\n",
2421 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002422 err_code |= ERR_WARN;
2423 free_email_alert(curproxy);
2424 }
2425 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002426 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002427 }
2428
Simon Horman98637e52014-06-20 12:30:16 +09002429 if (curproxy->check_command) {
2430 int clear = 0;
2431 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002432 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2433 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002434 err_code |= ERR_WARN;
2435 clear = 1;
2436 }
2437 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002438 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2439 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002440 cfgerr++;
2441 }
2442 if (clear) {
2443 free(curproxy->check_command);
2444 curproxy->check_command = NULL;
2445 }
2446 }
2447
2448 if (curproxy->check_path) {
2449 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002450 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2451 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002452 err_code |= ERR_WARN;
2453 free(curproxy->check_path);
2454 curproxy->check_path = NULL;
2455 }
2456 }
2457
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002458 /* if a default backend was specified, let's find it */
2459 if (curproxy->defbe.name) {
2460 struct proxy *target;
2461
Willy Tarreauafb39922015-05-26 12:04:09 +02002462 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002463 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002464 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2465 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002466 cfgerr++;
2467 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002468 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2469 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002470 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002471 } else if (target->mode != curproxy->mode &&
2472 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2473
Christopher Faulet767a84b2017-11-24 16:50:31 +01002474 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2475 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2476 curproxy->conf.file, curproxy->conf.line,
2477 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2478 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002479 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002480 } else {
2481 free(curproxy->defbe.name);
2482 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002483 /* Emit a warning if this proxy also has some servers */
2484 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002485 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2486 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002487 err_code |= ERR_WARN;
2488 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002489 }
2490 }
2491
Willy Tarreau55ea7572007-06-17 19:56:27 +02002492 /* find the target proxy for 'use_backend' rules */
2493 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002494 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002495 struct logformat_node *node;
2496 char *pxname;
2497
2498 /* Try to parse the string as a log format expression. If the result
2499 * of the parsing is only one entry containing a simple string, then
2500 * it's a standard string corresponding to a static rule, thus the
2501 * parsing is cancelled and be.name is restored to be resolved.
2502 */
2503 pxname = rule->be.name;
2504 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002505 curproxy->conf.args.ctx = ARGC_UBK;
2506 curproxy->conf.args.file = rule->file;
2507 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002508 err = NULL;
2509 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002510 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2511 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002512 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002513 cfgerr++;
2514 continue;
2515 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002516 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2517
2518 if (!LIST_ISEMPTY(&rule->be.expr)) {
2519 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2520 rule->dynamic = 1;
2521 free(pxname);
2522 continue;
2523 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002524 /* Only one element in the list, a simple string: free the expression and
2525 * fall back to static rule
2526 */
2527 LIST_DEL(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002528 free(node->arg);
2529 free(node);
2530 }
2531
2532 rule->dynamic = 0;
2533 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002534
Willy Tarreauafb39922015-05-26 12:04:09 +02002535 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002536 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002537 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2538 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002539 cfgerr++;
2540 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002541 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2542 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002543 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002544 } else if (target->mode != curproxy->mode &&
2545 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2546
Christopher Faulet767a84b2017-11-24 16:50:31 +01002547 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2548 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2549 curproxy->conf.file, curproxy->conf.line,
2550 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2551 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002552 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002553 } else {
2554 free((void *)rule->be.name);
2555 rule->be.backend = target;
2556 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002557 }
2558
Willy Tarreau64ab6072014-09-16 12:17:36 +02002559 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002560 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002561 struct server *target;
2562 struct logformat_node *node;
2563 char *server_name;
2564
2565 /* We try to parse the string as a log format expression. If the result of the parsing
2566 * is only one entry containing a single string, then it's a standard string corresponding
2567 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2568 */
2569 server_name = srule->srv.name;
2570 LIST_INIT(&srule->expr);
2571 curproxy->conf.args.ctx = ARGC_USRV;
2572 err = NULL;
2573 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2574 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2575 srule->file, srule->line, server_name, err);
2576 free(err);
2577 cfgerr++;
2578 continue;
2579 }
2580 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2581
2582 if (!LIST_ISEMPTY(&srule->expr)) {
2583 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2584 srule->dynamic = 1;
2585 free(server_name);
2586 continue;
2587 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002588 /* Only one element in the list, a simple string: free the expression and
2589 * fall back to static rule
2590 */
2591 LIST_DEL(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002592 free(node->arg);
2593 free(node);
2594 }
2595
2596 srule->dynamic = 0;
2597 srule->srv.name = server_name;
2598 target = findserver(curproxy, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002599
2600 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002601 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2602 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002603 cfgerr++;
2604 continue;
2605 }
2606 free((void *)srule->srv.name);
2607 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002608 }
2609
Emeric Brunb982a3d2010-01-04 15:45:53 +01002610 /* find the target table for 'stick' rules */
2611 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002612 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002613
Emeric Brun1d33b292010-01-04 15:47:17 +01002614 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2615 if (mrule->flags & STK_IS_STORE)
2616 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2617
Emeric Brunb982a3d2010-01-04 15:45:53 +01002618 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002619 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002620 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002621 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002622
2623 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002624 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002625 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002626 cfgerr++;
2627 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002628 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002629 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2630 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002631 cfgerr++;
2632 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002633 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002634 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2635 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002636 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002637 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002638 else {
2639 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002640 mrule->table.t = target;
2641 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07002642 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002643 if (!in_proxies_list(target->proxies_list, curproxy)) {
2644 curproxy->next_stkt_ref = target->proxies_list;
2645 target->proxies_list = curproxy;
2646 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002647 }
2648 }
2649
2650 /* find the target table for 'store response' rules */
2651 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002652 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002653
Emeric Brun1d33b292010-01-04 15:47:17 +01002654 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2655
Emeric Brunb982a3d2010-01-04 15:45:53 +01002656 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002657 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002658 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002659 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002660
2661 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002662 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002663 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002664 cfgerr++;
2665 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002666 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002667 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2668 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002669 cfgerr++;
2670 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002671 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002672 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2673 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002674 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002675 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002676 else {
2677 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002678 mrule->table.t = target;
2679 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07002680 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002681 if (!in_proxies_list(target->proxies_list, curproxy)) {
2682 curproxy->next_stkt_ref = target->proxies_list;
2683 target->proxies_list = curproxy;
2684 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002685 }
2686 }
2687
Christopher Faulete4e830d2017-09-18 14:51:41 +02002688 /* check validity for 'tcp-request' layer 4 rules */
2689 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2690 err = NULL;
2691 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002692 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002693 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002694 cfgerr++;
2695 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002696 }
2697
Christopher Faulete4e830d2017-09-18 14:51:41 +02002698 /* check validity for 'tcp-request' layer 5 rules */
2699 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2700 err = NULL;
2701 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002702 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002703 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002704 cfgerr++;
2705 }
2706 }
2707
Christopher Faulete4e830d2017-09-18 14:51:41 +02002708 /* check validity for 'tcp-request' layer 6 rules */
2709 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2710 err = NULL;
2711 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002712 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002713 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002714 cfgerr++;
2715 }
2716 }
2717
Christopher Faulete4e830d2017-09-18 14:51:41 +02002718 /* check validity for 'http-request' layer 7 rules */
2719 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2720 err = NULL;
2721 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002722 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002723 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002724 cfgerr++;
2725 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002726 }
2727
Christopher Faulete4e830d2017-09-18 14:51:41 +02002728 /* check validity for 'http-response' layer 7 rules */
2729 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2730 err = NULL;
2731 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002732 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002733 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002734 cfgerr++;
2735 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002736 }
2737
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002738 /* check validity for 'http-after-response' layer 7 rules */
2739 list_for_each_entry(arule, &curproxy->http_after_res_rules, list) {
2740 err = NULL;
2741 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
2742 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
2743 free(err);
2744 cfgerr++;
2745 }
2746 }
2747
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002748 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002749 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002750
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002751 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002752 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
2753 free((void *)curproxy->table->peers.name);
2754 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002755 break;
2756 }
2757 }
2758
2759 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002760 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002761 curproxy->id, curproxy->table->peers.name);
2762 free((void *)curproxy->table->peers.name);
2763 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002764 cfgerr++;
2765 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02002766 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002767 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002768 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002769 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002770 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002771 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2772 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002773 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002774 cfgerr++;
2775 }
2776 }
2777
Simon Horman9dc49962015-01-30 11:22:59 +09002778
2779 if (curproxy->email_alert.mailers.name) {
2780 struct mailers *curmailers = mailers;
2781
2782 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002783 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09002784 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002785 }
Simon Horman9dc49962015-01-30 11:22:59 +09002786 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002787 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2788 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002789 free_email_alert(curproxy);
2790 cfgerr++;
2791 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002792 else {
2793 err = NULL;
2794 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002795 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002796 free(err);
2797 cfgerr++;
2798 }
2799 }
Simon Horman9dc49962015-01-30 11:22:59 +09002800 }
2801
Willy Tarreau5bbc6762021-02-12 11:49:25 +01002802 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002803 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002804 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002805 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2806 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002807 cfgerr++;
2808 goto out_uri_auth_compat;
2809 }
2810
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002811 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01002812 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002813 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002814 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002815 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002816 int i = 0;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002817 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2818 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002819
2820 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002821 uri_auth_compat_req[i++] = "realm";
2822 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2823 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002824
Willy Tarreau95fa4692010-02-01 13:05:50 +01002825 uri_auth_compat_req[i++] = "unless";
2826 uri_auth_compat_req[i++] = "{";
2827 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2828 uri_auth_compat_req[i++] = "}";
2829 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002830
Willy Tarreauff011f22011-01-06 17:51:27 +01002831 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2832 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002833 cfgerr++;
2834 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002835 }
2836
Willy Tarreauff011f22011-01-06 17:51:27 +01002837 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002838
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002839 if (curproxy->uri_auth->auth_realm) {
2840 free(curproxy->uri_auth->auth_realm);
2841 curproxy->uri_auth->auth_realm = NULL;
2842 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01002843 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002844 }
2845out_uri_auth_compat:
2846
Dragan Dosen43885c72015-10-01 13:18:13 +02002847 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002848 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002849 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2850 if (!curproxy->conf.logformat_sd_string) {
2851 /* set the default logformat_sd_string */
2852 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2853 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002854 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002855 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002856 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002857
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002858 /* compile the log format */
2859 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002860 if (curproxy->conf.logformat_string != default_http_log_format &&
2861 curproxy->conf.logformat_string != default_tcp_log_format &&
2862 curproxy->conf.logformat_string != clf_http_log_format)
2863 free(curproxy->conf.logformat_string);
2864 curproxy->conf.logformat_string = NULL;
2865 free(curproxy->conf.lfs_file);
2866 curproxy->conf.lfs_file = NULL;
2867 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002868
2869 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2870 free(curproxy->conf.logformat_sd_string);
2871 curproxy->conf.logformat_sd_string = NULL;
2872 free(curproxy->conf.lfsd_file);
2873 curproxy->conf.lfsd_file = NULL;
2874 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002875 }
2876
Willy Tarreau62a61232013-04-12 18:13:46 +02002877 if (curproxy->conf.logformat_string) {
2878 curproxy->conf.args.ctx = ARGC_LOG;
2879 curproxy->conf.args.file = curproxy->conf.lfs_file;
2880 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002881 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002882 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
2883 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002884 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002885 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
2886 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002887 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002888 cfgerr++;
2889 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002890 curproxy->conf.args.file = NULL;
2891 curproxy->conf.args.line = 0;
2892 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002893
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002894 if (curproxy->conf.logformat_sd_string) {
2895 curproxy->conf.args.ctx = ARGC_LOGSD;
2896 curproxy->conf.args.file = curproxy->conf.lfsd_file;
2897 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002898 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002899 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
2900 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002901 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002902 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2903 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002904 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002905 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002906 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002907 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2908 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002909 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002910 cfgerr++;
2911 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002912 curproxy->conf.args.file = NULL;
2913 curproxy->conf.args.line = 0;
2914 }
2915
Willy Tarreau62a61232013-04-12 18:13:46 +02002916 if (curproxy->conf.uniqueid_format_string) {
2917 curproxy->conf.args.ctx = ARGC_UIF;
2918 curproxy->conf.args.file = curproxy->conf.uif_file;
2919 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002920 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002921 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
2922 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES,
2923 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR
2924 : SMP_VAL_BE_HRQ_HDR,
2925 &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002926 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
2927 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002928 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002929 cfgerr++;
2930 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002931 curproxy->conf.args.file = NULL;
2932 curproxy->conf.args.line = 0;
2933 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002934
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002935 /* only now we can check if some args remain unresolved.
2936 * This must be done after the users and groups resolution.
2937 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002938 cfgerr += smp_resolve_args(curproxy);
2939 if (!cfgerr)
2940 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002941
Willy Tarreau2738a142006-07-08 17:28:09 +02002942 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002943 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02002944 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02002945 (!curproxy->timeout.connect ||
2946 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002947 ha_warning("config : missing timeouts for %s '%s'.\n"
2948 " | While not properly invalid, you will certainly encounter various problems\n"
2949 " | with such a configuration. To fix this, please ensure that all following\n"
2950 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
2951 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002952 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02002953 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02002954
Willy Tarreau1fa31262007-12-03 00:36:16 +01002955 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
2956 * We must still support older configurations, so let's find out whether those
2957 * parameters have been set or must be copied from contimeouts.
2958 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01002959 if (!curproxy->timeout.tarpit)
2960 curproxy->timeout.tarpit = curproxy->timeout.connect;
2961 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
2962 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002963
Christopher Faulete5870d82020-04-15 11:32:03 +02002964 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002965 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
2966 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02002967 err_code |= ERR_WARN;
2968 }
2969
Willy Tarreau193b8c62012-11-22 00:17:38 +01002970 /* ensure that cookie capture length is not too large */
2971 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002972 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
2973 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002974 err_code |= ERR_WARN;
2975 curproxy->capture_len = global.tune.cookie_len - 1;
2976 }
2977
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002978 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01002979 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02002980 curproxy->req_cap_pool = create_pool("ptrcap",
2981 curproxy->nb_req_cap * sizeof(char *),
2982 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01002983 }
2984
2985 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02002986 curproxy->rsp_cap_pool = create_pool("ptrcap",
2987 curproxy->nb_rsp_cap * sizeof(char *),
2988 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01002989 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002990
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002991 switch (curproxy->load_server_state_from_file) {
2992 case PR_SRV_STATE_FILE_UNSPEC:
2993 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
2994 break;
2995 case PR_SRV_STATE_FILE_GLOBAL:
2996 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002997 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",
2998 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002999 err_code |= ERR_WARN;
3000 }
3001 break;
3002 }
3003
Willy Tarreaubaaee002006-06-26 02:48:02 +02003004 /* first, we will invert the servers list order */
3005 newsrv = NULL;
3006 while (curproxy->srv) {
3007 struct server *next;
3008
3009 next = curproxy->srv->next;
3010 curproxy->srv->next = newsrv;
3011 newsrv = curproxy->srv;
3012 if (!next)
3013 break;
3014 curproxy->srv = next;
3015 }
3016
Willy Tarreau17edc812014-01-03 12:14:34 +01003017 /* Check that no server name conflicts. This causes trouble in the stats.
3018 * We only emit a warning for the first conflict affecting each server,
3019 * in order to avoid combinatory explosion if all servers have the same
3020 * name. We do that only for servers which do not have an explicit ID,
3021 * because these IDs were made also for distinguishing them and we don't
3022 * want to annoy people who correctly manage them.
3023 */
3024 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3025 struct server *other_srv;
3026
3027 if (newsrv->puid)
3028 continue;
3029
3030 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3031 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003032 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 +01003033 newsrv->conf.file, newsrv->conf.line,
3034 proxy_type_str(curproxy), curproxy->id,
3035 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003036 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003037 break;
3038 }
3039 }
3040 }
3041
Willy Tarreaudd701652010-05-25 23:03:02 +02003042 /* assign automatic UIDs to servers which don't have one yet */
3043 next_id = 1;
3044 newsrv = curproxy->srv;
3045 while (newsrv != NULL) {
3046 if (!newsrv->puid) {
3047 /* server ID not set, use automatic numbering with first
3048 * spare entry starting with next_svid.
3049 */
3050 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3051 newsrv->conf.id.key = newsrv->puid = next_id;
3052 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003053 newsrv->conf.name.key = newsrv->id;
3054 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003055 }
3056 next_id++;
3057 newsrv = newsrv->next;
3058 }
3059
Willy Tarreau20697042007-11-15 23:26:18 +01003060 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003061 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003062
Willy Tarreau62c3be22012-01-20 13:12:32 +01003063 /*
3064 * If this server supports a maxconn parameter, it needs a dedicated
3065 * tasks to fill the emptied slots when a connection leaves.
3066 * Also, resolve deferred tracking dependency if needed.
3067 */
3068 newsrv = curproxy->srv;
3069 while (newsrv != NULL) {
3070 if (newsrv->minconn > newsrv->maxconn) {
3071 /* Only 'minconn' was specified, or it was higher than or equal
3072 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3073 * this will avoid further useless expensive computations.
3074 */
3075 newsrv->maxconn = newsrv->minconn;
3076 } else if (newsrv->maxconn && !newsrv->minconn) {
3077 /* minconn was not specified, so we set it to maxconn */
3078 newsrv->minconn = newsrv->maxconn;
3079 }
3080
William Dauchyf6370442020-11-14 19:25:33 +01003081 /* this will also properly set the transport layer for
3082 * prod and checks
3083 * if default-server have use_ssl, prerare ssl init
3084 * without activating it */
3085 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
3086 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3087 (newsrv->use_ssl != 1 && curproxy->defsrv.use_ssl == 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003088 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3089 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3090 }
Emeric Brun94324a42012-10-11 14:00:19 +02003091
Willy Tarreau034c88c2017-01-23 23:36:45 +01003092 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3093 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3094 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3095 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",
3096 newsrv->conf.file, newsrv->conf.line,
3097 proxy_type_str(curproxy), curproxy->id,
3098 newsrv->id);
3099
Willy Tarreau62c3be22012-01-20 13:12:32 +01003100 if (newsrv->trackit) {
3101 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003102 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003103 char *pname, *sname;
3104
3105 pname = newsrv->trackit;
3106 sname = strrchr(pname, '/');
3107
3108 if (sname)
3109 *sname++ = '\0';
3110 else {
3111 sname = pname;
3112 pname = NULL;
3113 }
3114
3115 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003116 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003117 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003118 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3119 proxy_type_str(curproxy), curproxy->id,
3120 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003121 cfgerr++;
3122 goto next_srv;
3123 }
3124 } else
3125 px = curproxy;
3126
3127 srv = findserver(px, sname);
3128 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003129 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3130 proxy_type_str(curproxy), curproxy->id,
3131 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003132 cfgerr++;
3133 goto next_srv;
3134 }
3135
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003136 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003137 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3138 "tracking as it does not have any check nor agent enabled.\n",
3139 proxy_type_str(curproxy), curproxy->id,
3140 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003141 cfgerr++;
3142 goto next_srv;
3143 }
3144
3145 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3146
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003147 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003148 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3149 "belongs to a tracking chain looping back to %s/%s.\n",
3150 proxy_type_str(curproxy), curproxy->id,
3151 newsrv->id, px->id, srv->id, px->id,
3152 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003153 cfgerr++;
3154 goto next_srv;
3155 }
3156
3157 if (curproxy != px &&
3158 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003159 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3160 "tracking: disable-on-404 option inconsistency.\n",
3161 proxy_type_str(curproxy), curproxy->id,
3162 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003163 cfgerr++;
3164 goto next_srv;
3165 }
3166
Willy Tarreau62c3be22012-01-20 13:12:32 +01003167 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003168 newsrv->tracknext = srv->trackers;
3169 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003170
3171 free(newsrv->trackit);
3172 newsrv->trackit = NULL;
3173 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003174
Willy Tarreau62c3be22012-01-20 13:12:32 +01003175 next_srv:
3176 newsrv = newsrv->next;
3177 }
3178
Olivier Houchard4e694042017-03-14 20:01:29 +01003179 /*
3180 * Try to generate dynamic cookies for servers now.
3181 * It couldn't be done earlier, since at the time we parsed
3182 * the server line, we may not have known yet that we
3183 * should use dynamic cookies, or the secret key may not
3184 * have been provided yet.
3185 */
3186 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3187 newsrv = curproxy->srv;
3188 while (newsrv != NULL) {
3189 srv_set_dyncookie(newsrv);
3190 newsrv = newsrv->next;
3191 }
3192
3193 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003194 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003195 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003196 */
3197
3198 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3199 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3200 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003201 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3202 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3203 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003204 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3205 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3206 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003207 } else {
3208 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3209 fwrr_init_server_groups(curproxy);
3210 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003211 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003212
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003213 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003214 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3215 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3216 fwlc_init_server_tree(curproxy);
3217 } else {
3218 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3219 fas_init_server_tree(curproxy);
3220 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003221 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003222
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003223 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003224 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3225 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3226 chash_init_server_tree(curproxy);
3227 } else {
3228 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3229 init_server_map(curproxy);
3230 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003231 break;
3232 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003233 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003234
3235 if (curproxy->options & PR_O_LOGASAP)
3236 curproxy->to_log &= ~LW_BYTES;
3237
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003238 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003239 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3240 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003241 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3242 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003243 err_code |= ERR_WARN;
3244 }
3245
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003246 if (curproxy->mode != PR_MODE_HTTP) {
3247 int optnum;
3248
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003249 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003250 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3251 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003252 err_code |= ERR_WARN;
3253 curproxy->uri_auth = NULL;
3254 }
3255
Willy Tarreaude7dc882017-03-10 11:49:21 +01003256 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003257 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3258 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003259 err_code |= ERR_WARN;
3260 }
3261
3262 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003263 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3264 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003265 err_code |= ERR_WARN;
3266 }
3267
3268 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003269 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3270 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003271 err_code |= ERR_WARN;
3272 }
3273
Willy Tarreaude7dc882017-03-10 11:49:21 +01003274 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003275 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3276 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003277 err_code |= ERR_WARN;
3278 }
3279
Willy Tarreau87cf5142011-08-19 22:57:24 +02003280 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003281 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3282 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003283 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003284 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003285 }
3286
3287 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003288 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3289 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003290 err_code |= ERR_WARN;
3291 curproxy->options &= ~PR_O_ORGTO;
3292 }
3293
3294 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3295 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3296 (curproxy->cap & cfg_opts[optnum].cap) &&
3297 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003298 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3299 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003300 err_code |= ERR_WARN;
3301 curproxy->options &= ~cfg_opts[optnum].val;
3302 }
3303 }
3304
3305 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3306 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3307 (curproxy->cap & cfg_opts2[optnum].cap) &&
3308 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003309 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3310 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003311 err_code |= ERR_WARN;
3312 curproxy->options2 &= ~cfg_opts2[optnum].val;
3313 }
3314 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003315
Willy Tarreau29fbe512015-08-20 19:35:14 +02003316#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003317 if (curproxy->conn_src.bind_hdr_occ) {
3318 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003319 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3320 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003321 err_code |= ERR_WARN;
3322 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003323#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003324 }
3325
Willy Tarreaubaaee002006-06-26 02:48:02 +02003326 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003327 * ensure that we're not cross-dressing a TCP server into HTTP.
3328 */
3329 newsrv = curproxy->srv;
3330 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003331 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003332 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3333 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003334 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003335 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003336
Willy Tarreau0cec3312011-10-31 13:49:26 +01003337 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003338 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3339 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003340 err_code |= ERR_WARN;
3341 }
3342
Willy Tarreauc93cd162014-05-13 15:54:22 +02003343 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003344 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3345 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003346 err_code |= ERR_WARN;
3347 }
3348
Willy Tarreau29fbe512015-08-20 19:35:14 +02003349#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003350 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3351 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003352 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3353 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003354 err_code |= ERR_WARN;
3355 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003356#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003357
Willy Tarreau46deab62018-04-28 07:18:15 +02003358 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3359 curproxy->options &= ~PR_O_REUSE_MASK;
3360
Willy Tarreau21d2af32008-02-14 20:25:24 +01003361 newsrv = newsrv->next;
3362 }
3363
Christopher Fauletd7c91962015-04-30 11:48:27 +02003364 /* Check filter configuration, if any */
3365 cfgerr += flt_check(curproxy);
3366
Willy Tarreauc1a21672009-08-16 22:37:44 +02003367 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003368 if (!curproxy->accept)
3369 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003370
Willy Tarreauc1a21672009-08-16 22:37:44 +02003371 if (curproxy->tcp_req.inspect_delay ||
3372 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003373 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003374
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003375 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003376 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003377 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003378 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003379
William Lallemandcf62f7e2018-10-26 14:47:40 +02003380 if (curproxy->mode == PR_MODE_CLI) {
3381 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3382 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3383 }
3384
Willy Tarreauc1a21672009-08-16 22:37:44 +02003385 /* both TCP and HTTP must check switching rules */
3386 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003387
3388 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003389 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003390 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3391 curproxy->fe_rsp_ana |= AN_RES_FLT_START_FE | AN_RES_FLT_XFER_DATA | AN_RES_FLT_END;
Christopher Faulet309c6412015-12-02 09:57:32 +01003392 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003393 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3394 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003395 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003396 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003397 }
3398
3399 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003400 if (curproxy->tcp_req.inspect_delay ||
3401 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3402 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3403
Emeric Brun97679e72010-09-23 17:56:44 +02003404 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3405 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3406
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003407 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003408 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003409 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003410 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003411
3412 /* If the backend does requires RDP cookie persistence, we have to
3413 * enable the corresponding analyser.
3414 */
3415 if (curproxy->options2 & PR_O2_RDPC_PRST)
3416 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003417
3418 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003419 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003420 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3421 curproxy->be_rsp_ana |= AN_RES_FLT_START_BE | AN_RES_FLT_XFER_DATA | AN_RES_FLT_END;
Christopher Faulet309c6412015-12-02 09:57:32 +01003422 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003423 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3424 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003425 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003426 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003427 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003428
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003429 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003430 * attached to the current proxy */
3431 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3432 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003433 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003434
3435 if (!bind_conf->mux_proto)
3436 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003437
3438 /* it is possible that an incorrect mux was referenced
3439 * due to the proxy's mode not being taken into account
3440 * on first pass. Let's adjust it now.
3441 */
3442 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3443
3444 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003445 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3446 proxy_type_str(curproxy), curproxy->id,
3447 (int)bind_conf->mux_proto->token.len,
3448 bind_conf->mux_proto->token.ptr,
3449 bind_conf->arg, bind_conf->file, bind_conf->line);
3450 cfgerr++;
3451 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003452
3453 /* update the mux */
3454 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003455 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003456 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3457 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003458 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003459
3460 if (!newsrv->mux_proto)
3461 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003462
3463 /* it is possible that an incorrect mux was referenced
3464 * due to the proxy's mode not being taken into account
3465 * on first pass. Let's adjust it now.
3466 */
3467 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3468
3469 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003470 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3471 proxy_type_str(curproxy), curproxy->id,
3472 (int)newsrv->mux_proto->token.len,
3473 newsrv->mux_proto->token.ptr,
3474 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3475 cfgerr++;
3476 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003477
3478 /* update the mux */
3479 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003480 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003481
3482 /* initialize idle conns lists */
3483 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3484 int i;
3485
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003486 newsrv->available_conns_tree = calloc(global.nbthread, sizeof(*newsrv->available_conns_tree));
Willy Tarreau835daa12019-02-07 14:46:29 +01003487
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003488 if (!newsrv->available_conns_tree) {
Willy Tarreau835daa12019-02-07 14:46:29 +01003489 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003490 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau835daa12019-02-07 14:46:29 +01003491 cfgerr++;
3492 continue;
3493 }
3494
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003495 for (i = 0; i < global.nbthread; i++)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003496 newsrv->available_conns_tree[i] = EB_ROOT;
Willy Tarreau980855b2019-02-07 14:59:29 +01003497
3498 if (newsrv->max_idle_conns != 0) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003499 if (idle_conn_task == NULL) {
3500 idle_conn_task = task_new(MAX_THREADS_MASK);
3501 if (!idle_conn_task)
3502 goto err;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003503
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003504 idle_conn_task->process = srv_cleanup_idle_connections;
3505 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003506
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003507 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003508 idle_conns[i].cleanup_task = task_new(1UL << i);
3509 if (!idle_conns[i].cleanup_task)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003510 goto err;
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003511 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_connections;
3512 idle_conns[i].cleanup_task->context = NULL;
Amaury Denoyelle5c7086f2021-01-11 09:21:52 +01003513 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003514 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003515 }
3516 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003517
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003518 newsrv->idle_conns_tree = calloc((unsigned short)global.nbthread, sizeof(*newsrv->idle_conns_tree));
3519 if (!newsrv->idle_conns_tree) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003520 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003521 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003522 cfgerr++;
3523 continue;
3524 }
3525
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003526 for (i = 0; i < global.nbthread; i++)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003527 newsrv->idle_conns_tree[i] = EB_ROOT;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003528
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003529 newsrv->safe_conns_tree = calloc(global.nbthread, sizeof(*newsrv->safe_conns_tree));
3530 if (!newsrv->safe_conns_tree) {
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003531 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003532 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003533 cfgerr++;
3534 continue;
3535 }
3536
3537 for (i = 0; i < global.nbthread; i++)
Amaury Denoyellef232cb32021-01-06 16:14:12 +01003538 newsrv->safe_conns_tree[i] = EB_ROOT;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003539
Tim Duesterhusb53dd032020-09-12 20:26:42 +02003540 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
Olivier Houchardf1314812019-02-18 16:41:17 +01003541 if (!newsrv->curr_idle_thr)
3542 goto err;
Willy Tarreau980855b2019-02-07 14:59:29 +01003543 continue;
3544 err:
3545 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3546 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3547 cfgerr++;
3548 continue;
3549 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003550 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003551 }
3552
3553 /***********************************************************/
3554 /* At this point, target names have already been resolved. */
3555 /***********************************************************/
3556
3557 /* Check multi-process mode compatibility */
3558
3559 if (global.nbproc > 1 && global.stats_fe) {
3560 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3561 unsigned long mask;
3562
Willy Tarreau6daac192019-02-02 17:39:53 +01003563 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02003564 mask &= proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003565
3566 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003567 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003568 break;
3569 }
3570 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003571 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 +02003572 }
3573 }
3574
3575 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003576 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003577 if (curproxy->bind_proc)
3578 continue;
3579
3580 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3581 unsigned long mask;
3582
Willy Tarreaue26993c2020-09-03 07:18:55 +02003583 mask = proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003584 curproxy->bind_proc |= mask;
3585 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003586 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003587 }
3588
3589 if (global.stats_fe) {
3590 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3591 unsigned long mask;
3592
Willy Tarreaue26993c2020-09-03 07:18:55 +02003593 mask = bind_conf->settings.bind_proc ? bind_conf->settings.bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003594 global.stats_fe->bind_proc |= mask;
3595 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003596 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003597 }
3598
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003599 /* propagate bindings from frontends to backends. Don't do it if there
3600 * are any fatal errors as we must not call it with unresolved proxies.
3601 */
3602 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003603 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003604 if (curproxy->cap & PR_CAP_FE)
3605 propagate_processes(curproxy, NULL);
3606 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003607 }
3608
3609 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003610 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3611 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003612
3613 /*******************************************************/
3614 /* At this step, all proxies have a non-null bind_proc */
3615 /*******************************************************/
3616
3617 /* perform the final checks before creating tasks */
3618
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003619 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003620 struct listener *listener;
3621 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003622
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003623 /* Configure SSL for each bind line.
3624 * Note: if configuration fails at some point, the ->ctx member
3625 * remains NULL so that listeners can later detach.
3626 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003627 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003628 if (bind_conf->xprt->prepare_bind_conf &&
3629 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003630 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003631 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003632
Willy Tarreaue6b98942007-10-29 01:09:36 +01003633 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003634 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003635 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003636 int nbproc;
3637
3638 nbproc = my_popcountl(curproxy->bind_proc &
Willy Tarreaue26993c2020-09-03 07:18:55 +02003639 (listener->bind_conf->settings.bind_proc ? listener->bind_conf->settings.bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003640 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003641
3642 if (!nbproc) /* no intersection between listener and frontend */
3643 nbproc = 1;
3644
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003645 if (!listener->luid) {
3646 /* listener ID not set, use automatic numbering with first
3647 * spare entry starting with next_luid.
3648 */
3649 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3650 listener->conf.id.key = listener->luid = next_id;
3651 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003652 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003653 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003654
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003655 /* enable separate counters */
3656 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003657 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003658 if (!listener->name)
3659 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003660 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003661
Willy Tarreaue6b98942007-10-29 01:09:36 +01003662 if (curproxy->options & PR_O_TCP_NOLING)
3663 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003664 if (!listener->maxaccept)
3665 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3666
3667 /* we want to have an optimal behaviour on single process mode to
3668 * maximize the work at once, but in multi-process we want to keep
3669 * some fairness between processes, so we target half of the max
3670 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003671 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003672 * used to disable the limit.
3673 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003674 if (listener->maxaccept > 0 && nbproc > 1) {
3675 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003676 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3677 }
3678
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003679 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003680 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003681 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003682
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003683 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003684 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003685
Willy Tarreau620408f2016-10-21 16:37:51 +02003686 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3687 listener->options |= LI_O_TCP_L5_RULES;
3688
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003689 /* smart accept mode is automatic in HTTP mode */
3690 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003691 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003692 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3693 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003694 }
3695
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003696 /* Release unused SSL configs */
3697 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003698 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3699 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003700 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003701
Willy Tarreaua38a7172019-02-02 17:11:28 +01003702 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003703 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003704 int count, maxproc = 0;
3705
3706 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreaue26993c2020-09-03 07:18:55 +02003707 count = my_popcountl(bind_conf->settings.bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003708 if (count > maxproc)
3709 maxproc = count;
3710 }
3711 /* backends have 0, frontends have 1 or more */
3712 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003713 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3714 " limited to process assigned to the current request.\n",
3715 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003716
Willy Tarreau102df612014-05-07 23:56:38 +02003717 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003718 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3719 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003720 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003721 }
Willy Tarreau102df612014-05-07 23:56:38 +02003722 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003723 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3724 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003725 }
3726 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003727
3728 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003729 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003730 if (curproxy->task) {
3731 curproxy->task->context = curproxy;
3732 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003733 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003734 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3735 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003736 cfgerr++;
3737 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003738 }
3739
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003740 /*
3741 * Recount currently required checks.
3742 */
3743
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003744 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003745 int optnum;
3746
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003747 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3748 if (curproxy->options & cfg_opts[optnum].val)
3749 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003750
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003751 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3752 if (curproxy->options2 & cfg_opts2[optnum].val)
3753 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003754 }
3755
Willy Tarreau0fca4832015-05-01 19:12:05 +02003756 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003757 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003758 if (curproxy->table && curproxy->table->peers.p)
3759 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003760
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003761 /* compute the required process bindings for the peers from <stktables_list>
3762 * for all the stick-tables, the ones coming with "peers" sections included.
3763 */
3764 for (t = stktables_list; t; t = t->next) {
3765 struct proxy *p;
3766
3767 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3768 if (t->peers.p && t->peers.p->peers_fe) {
3769 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3770 }
3771 }
3772 }
3773
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003774 if (cfg_peers) {
3775 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003776 struct peer *p, *pb;
3777
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003778 /* In the case the peers frontend was not initialized by a
3779 stick-table used in the configuration, set its bind_proc
3780 by default to the first process. */
3781 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003782 if (curpeers->peers_fe) {
3783 if (curpeers->peers_fe->bind_proc == 0)
3784 curpeers->peers_fe->bind_proc = 1;
3785 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003786 curpeers = curpeers->next;
3787 }
3788
3789 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003790 /* Remove all peers sections which don't have a valid listener,
3791 * which are not used by any table, or which are bound to more
3792 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003793 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003794 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003795 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003796 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003797 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003798
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003799 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003800 /* the "disabled" keyword was present */
3801 if (curpeers->peers_fe)
3802 stop_proxy(curpeers->peers_fe);
3803 curpeers->peers_fe = NULL;
3804 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003805 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003806 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3807 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003808 if (curpeers->peers_fe)
3809 stop_proxy(curpeers->peers_fe);
3810 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003811 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003812 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003813 /* either it's totally stopped or too much used */
3814 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003815 ha_alert("Peers section '%s': peers referenced by sections "
3816 "running in different processes (%d different ones). "
3817 "Check global.nbproc and all tables' bind-process "
3818 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003819 cfgerr++;
3820 }
3821 stop_proxy(curpeers->peers_fe);
3822 curpeers->peers_fe = NULL;
3823 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003824 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003825 /* Initializes the transport layer of the server part of all the peers belonging to
3826 * <curpeers> section if required.
3827 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3828 * of an old process.
3829 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003830 p = curpeers->remote;
3831 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003832 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003833 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 +01003834 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3835 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003836 p = p->next;
3837 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003838 /* Configure the SSL bindings of the local peer if required. */
3839 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3840 struct list *l;
3841 struct bind_conf *bind_conf;
3842
3843 l = &curpeers->peers_fe->conf.bind;
3844 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3845 if (bind_conf->xprt->prepare_bind_conf &&
3846 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3847 cfgerr++;
3848 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003849 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02003850 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3851 curpeers->id);
3852 cfgerr++;
3853 break;
3854 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003855 last = &curpeers->next;
3856 continue;
3857 }
3858
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003859 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003860 p = curpeers->remote;
3861 while (p) {
3862 pb = p->next;
3863 free(p->id);
3864 free(p);
3865 p = pb;
3866 }
3867
3868 /* Destroy and unlink this curpeers section.
3869 * Note: curpeers is backed up into *last.
3870 */
3871 free(curpeers->id);
3872 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003873 /* Reset any refereance to this peers section in the list of stick-tables */
3874 for (t = stktables_list; t; t = t->next) {
3875 if (t->peers.p && t->peers.p == *last)
3876 t->peers.p = NULL;
3877 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003878 free(*last);
3879 *last = curpeers;
3880 }
3881 }
3882
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003883 for (t = stktables_list; t; t = t->next) {
3884 if (t->proxy)
3885 continue;
3886 if (!stktable_init(t)) {
3887 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
3888 cfgerr++;
3889 }
3890 }
3891
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003892 /* initialize stick-tables on backend capable proxies. This must not
3893 * be done earlier because the data size may be discovered while parsing
3894 * other proxies.
3895 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003896 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauc3914d42020-09-24 08:39:22 +02003897 if (curproxy->disabled || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003898 continue;
3899
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003900 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003901 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003902 cfgerr++;
3903 }
3904 }
3905
Simon Horman0d16a402015-01-30 11:22:58 +09003906 if (mailers) {
3907 struct mailers *curmailers = mailers, **last;
3908 struct mailer *m, *mb;
3909
3910 /* Remove all mailers sections which don't have a valid listener.
3911 * This can happen when a mailers section is never referenced.
3912 */
3913 last = &mailers;
3914 while (*last) {
3915 curmailers = *last;
3916 if (curmailers->users) {
3917 last = &curmailers->next;
3918 continue;
3919 }
3920
Christopher Faulet767a84b2017-11-24 16:50:31 +01003921 ha_warning("Removing incomplete section 'mailers %s'.\n",
3922 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09003923
3924 m = curmailers->mailer_list;
3925 while (m) {
3926 mb = m->next;
3927 free(m->id);
3928 free(m);
3929 m = mb;
3930 }
3931
3932 /* Destroy and unlink this curmailers section.
3933 * Note: curmailers is backed up into *last.
3934 */
3935 free(curmailers->id);
3936 curmailers = curmailers->next;
3937 free(*last);
3938 *last = curmailers;
3939 }
3940 }
3941
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003942 /* Update server_state_file_name to backend name if backend is supposed to use
3943 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003944 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003945 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
3946 curproxy->server_state_file_name == NULL)
3947 curproxy->server_state_file_name = strdup(curproxy->id);
3948 }
3949
Ben Draut054fbee2018-04-13 15:43:04 -06003950 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
3951 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
3952 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
3953 curr_resolvers->id, curr_resolvers->conf.file,
3954 curr_resolvers->conf.line);
3955 err_code |= ERR_WARN;
3956 }
3957 }
3958
William Lallemand48b4bb42017-10-23 14:36:34 +02003959 list_for_each_entry(postparser, &postparsers, list) {
3960 if (postparser->func)
3961 cfgerr += postparser->func();
3962 }
3963
Willy Tarreaubb925012009-07-23 13:36:36 +02003964 if (cfgerr > 0)
3965 err_code |= ERR_ALERT | ERR_FATAL;
3966 out:
3967 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003968}
3969
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003970/*
3971 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
3972 * parsing sessions.
3973 */
3974void cfg_register_keywords(struct cfg_kw_list *kwl)
3975{
3976 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
3977}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003978
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003979/*
3980 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
3981 */
3982void cfg_unregister_keywords(struct cfg_kw_list *kwl)
3983{
3984 LIST_DEL(&kwl->list);
3985 LIST_INIT(&kwl->list);
3986}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003987
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003988/* this function register new section in the haproxy configuration file.
3989 * <section_name> is the name of this new section and <section_parser>
3990 * is the called parser. If two section declaration have the same name,
3991 * only the first declared is used.
3992 */
3993int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02003994 int (*section_parser)(const char *, int, char **, int),
3995 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003996{
3997 struct cfg_section *cs;
3998
Willy Tarreau5e4261b2016-05-17 16:16:09 +02003999 list_for_each_entry(cs, &sections, list) {
4000 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004001 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004002 return 0;
4003 }
4004 }
4005
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004006 cs = calloc(1, sizeof(*cs));
4007 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004008 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004009 return 0;
4010 }
4011
4012 cs->section_name = section_name;
4013 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004014 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004015
4016 LIST_ADDQ(&sections, &cs->list);
4017
4018 return 1;
4019}
4020
William Lallemand48b4bb42017-10-23 14:36:34 +02004021/* this function register a new function which will be called once the haproxy
4022 * configuration file has been parsed. It's useful to check dependencies
4023 * between sections or to resolve items once everything is parsed.
4024 */
4025int cfg_register_postparser(char *name, int (*func)())
4026{
4027 struct cfg_postparser *cp;
4028
4029 cp = calloc(1, sizeof(*cp));
4030 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004031 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004032 return 0;
4033 }
4034 cp->name = name;
4035 cp->func = func;
4036
4037 LIST_ADDQ(&postparsers, &cp->list);
4038
4039 return 1;
4040}
4041
Willy Tarreaubaaee002006-06-26 02:48:02 +02004042/*
David Carlier845efb52015-09-25 11:49:18 +01004043 * free all config section entries
4044 */
4045void cfg_unregister_sections(void)
4046{
4047 struct cfg_section *cs, *ics;
4048
4049 list_for_each_entry_safe(cs, ics, &sections, list) {
4050 LIST_DEL(&cs->list);
4051 free(cs);
4052 }
4053}
4054
Christopher Faulet7110b402016-10-26 11:09:44 +02004055void cfg_backup_sections(struct list *backup_sections)
4056{
4057 struct cfg_section *cs, *ics;
4058
4059 list_for_each_entry_safe(cs, ics, &sections, list) {
4060 LIST_DEL(&cs->list);
4061 LIST_ADDQ(backup_sections, &cs->list);
4062 }
4063}
4064
4065void cfg_restore_sections(struct list *backup_sections)
4066{
4067 struct cfg_section *cs, *ics;
4068
4069 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4070 LIST_DEL(&cs->list);
4071 LIST_ADDQ(&sections, &cs->list);
4072 }
4073}
4074
Willy Tarreaue6552512018-11-26 11:33:13 +01004075/* these are the config sections handled by default */
4076REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4077REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4078REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4079REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4080REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4081REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4082REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4083REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4084REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4085REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004086
David Carlier845efb52015-09-25 11:49:18 +01004087/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004088 * Local variables:
4089 * c-indent-level: 8
4090 * c-basic-offset: 8
4091 * End:
4092 */