blob: 64af041b8a35d81fa5248241c46a69e6797fa4cc [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>
Willy Tarreaubaaee002006-06-26 02:48:02 +020081
82
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010083/* Used to chain configuration sections definitions. This list
84 * stores struct cfg_section
85 */
86struct list sections = LIST_HEAD_INIT(sections);
87
William Lallemand48b4bb42017-10-23 14:36:34 +020088struct list postparsers = LIST_HEAD_INIT(postparsers);
89
Eric Salama2af5bc42021-03-16 15:12:17 +010090extern struct proxy *mworker_proxy;
91
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010092char *cursection = NULL;
93struct proxy defproxy = { }; /* fake proxy used to assign default values on all instances */
Willy Tarreauc8d5b952019-02-27 17:25:52 +010094int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +010095int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +010096char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +020097
Willy Tarreau5b2c3362008-07-09 19:39:06 +020098/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +010099struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200100 .list = LIST_HEAD_INIT(cfg_keywords.list)
101};
102
Willy Tarreaubaaee002006-06-26 02:48:02 +0200103/*
104 * converts <str> to a list of listeners which are dynamically allocated.
105 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
106 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
107 * - <port> is a numerical port from 1 to 65535 ;
108 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
109 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200110 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
111 * not NULL, it must be a valid pointer to either NULL or a freeable area that
112 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200113 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200114int 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 +0200115{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200116 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100117 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200118 int port, end;
119
120 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200121
Willy Tarreaubaaee002006-06-26 02:48:02 +0200122 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200123 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100124 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200125
126 str = next;
127 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100128 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200129 *next++ = 0;
130 }
131
Willy Tarreau5fc93282020-09-16 18:25:03 +0200132 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Eric Salama2af5bc42021-03-16 15:12:17 +0100133 (curproxy == global.stats_fe || curproxy == mworker_proxy) ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200134 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200135 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100136 if (!ss2)
137 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200138
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100139 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200140 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200141 memprintf(err, "%s for address '%s'.\n", *err, str);
142 goto fail;
143 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200144 } /* end while(next) */
145 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200146 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200147 fail:
148 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200149 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200150}
151
William Lallemand6e62fb62015-04-28 16:55:23 +0200152/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200153 * converts <str> to a list of datagram-oriented listeners which are dynamically
154 * allocated.
155 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
156 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
157 * - <port> is a numerical port from 1 to 65535 ;
158 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
159 * This can be repeated as many times as necessary, separated by a coma.
160 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
161 * not NULL, it must be a valid pointer to either NULL or a freeable area that
162 * will be replaced with an error message.
163 */
164int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
165{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200166 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200167 char *next, *dupstr;
168 int port, end;
169
170 next = dupstr = strdup(str);
171
172 while (next && *next) {
173 struct sockaddr_storage *ss2;
174 int fd = -1;
175
176 str = next;
177 /* 1) look for the end of the first address */
178 if ((next = strchr(str, ',')) != NULL) {
179 *next++ = 0;
180 }
181
Willy Tarreau5fc93282020-09-16 18:25:03 +0200182 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreauaa333122020-09-16 15:13:04 +0200183 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
184 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
185 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
186 if (!ss2)
187 goto fail;
188
189 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200190 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200191 memprintf(err, "%s for address '%s'.\n", *err, str);
192 goto fail;
193 }
194 } /* end while(next) */
195 free(dupstr);
196 return 1;
197 fail:
198 free(dupstr);
199 return 0;
200}
201
202/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100203 * Report an error in <msg> when there are too many arguments. This version is
204 * intended to be used by keyword parsers so that the message will be included
205 * into the general error message. The index is the current keyword in args.
206 * Return 0 if the number of argument is correct, otherwise build a message and
207 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
208 * message may also be null, it will simply not be produced (useful to check only).
209 * <msg> and <err_code> are only affected on error.
210 */
211int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
212{
213 int i;
214
215 if (!*args[index + maxarg + 1])
216 return 0;
217
218 if (msg) {
219 *msg = NULL;
220 memprintf(msg, "%s", args[0]);
221 for (i = 1; i <= index; i++)
222 memprintf(msg, "%s %s", *msg, args[i]);
223
224 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
225 }
226 if (err_code)
227 *err_code |= ERR_ALERT | ERR_FATAL;
228
229 return 1;
230}
231
232/*
233 * same as too_many_args_idx with a 0 index
234 */
235int too_many_args(int maxarg, char **args, char **msg, int *err_code)
236{
237 return too_many_args_idx(maxarg, 0, args, msg, err_code);
238}
239
240/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200241 * Report a fatal Alert when there is too much arguments
242 * The index is the current keyword in args
243 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
244 * Fill err_code with an ERR_ALERT and an ERR_FATAL
245 */
246int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
247{
248 char *kw = NULL;
249 int i;
250
251 if (!*args[index + maxarg + 1])
252 return 0;
253
254 memprintf(&kw, "%s", args[0]);
255 for (i = 1; i <= index; i++) {
256 memprintf(&kw, "%s %s", kw, args[i]);
257 }
258
Christopher Faulet767a84b2017-11-24 16:50:31 +0100259 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 +0200260 free(kw);
261 *err_code |= ERR_ALERT | ERR_FATAL;
262 return 1;
263}
264
265/*
266 * same as alertif_too_many_args_idx with a 0 index
267 */
268int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
269{
270 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
271}
272
Willy Tarreau61d18892009-03-31 10:49:21 +0200273
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100274/* Report it if a request ACL condition uses some keywords that are incompatible
275 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
276 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
277 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100278 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100279int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100280{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100281 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200282 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100283
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100284 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100285 return 0;
286
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100287 acl = acl_cond_conflicts(cond, where);
288 if (acl) {
289 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100290 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
291 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100292 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100293 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
294 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100295 return ERR_WARN;
296 }
297 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100298 return 0;
299
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100300 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100301 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
302 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100303 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100304 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
305 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100306 return ERR_WARN;
307}
308
Christopher Faulet62519022017-10-16 15:49:32 +0200309/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100310 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100311 * two such numbers delimited by a dash ('-'). On success, it returns
312 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200313 *
314 * Note: this function can also be used to parse a thread number or a set of
315 * threads.
316 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100317int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200318{
Christopher Faulet26028f62017-11-22 15:01:51 +0100319 if (autoinc) {
320 *autoinc = 0;
321 if (strncmp(arg, "auto:", 5) == 0) {
322 arg += 5;
323 *autoinc = 1;
324 }
325 }
326
Christopher Faulet62519022017-10-16 15:49:32 +0200327 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100328 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200329 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100330 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200331 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100332 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200333 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100334 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100335 unsigned int low, high;
336
Christopher Faulet18cca782019-02-07 16:29:41 +0100337 for (p = arg; *p; p++) {
338 if (*p == '-' && !dash)
339 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100340 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100341 memprintf(err, "'%s' is not a valid number/range.", arg);
342 return -1;
343 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100344 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100345
346 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100347 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100348 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100349
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100350 if (high < low) {
351 unsigned int swap = low;
352 low = high;
353 high = swap;
354 }
355
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100356 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100357 memprintf(err, "'%s' is not a valid number/range."
358 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100359 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100360 return 1;
361 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100362
363 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100364 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200365 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100366 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100367
Christopher Faulet5ab51772017-11-22 11:21:58 +0100368 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200369}
370
David Carlier7e351ee2017-12-01 09:14:02 +0000371#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200372/* Parse cpu sets. Each CPU set is either a unique number between 0 and
373 * <LONGBITS> or a range with two such numbers delimited by a dash
374 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
375 * returns 0. otherwise it returns 1 with an error message in <err>.
376 */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100377unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200378{
379 int cur_arg = 0;
380
381 *cpu_set = 0;
382 while (*args[cur_arg]) {
383 char *dash;
384 unsigned int low, high;
385
Willy Tarreau90807112020-02-25 08:16:33 +0100386 if (!isdigit((unsigned char)*args[cur_arg])) {
Christopher Faulet62519022017-10-16 15:49:32 +0200387 memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
388 return -1;
389 }
390
391 low = high = str2uic(args[cur_arg]);
392 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100393 high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
Christopher Faulet62519022017-10-16 15:49:32 +0200394
395 if (high < low) {
396 unsigned int swap = low;
397 low = high;
398 high = swap;
399 }
400
401 if (high >= LONGBITS) {
402 memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
403 return 1;
404 }
405
406 while (low <= high)
407 *cpu_set |= 1UL << low++;
408
409 cur_arg++;
410 }
411 return 0;
412}
David Carlier7e351ee2017-12-01 09:14:02 +0000413#endif
414
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200415void init_default_instance()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200416{
Willy Tarreau97cb7802010-01-03 20:23:58 +0100417 init_new_proxy(&defproxy);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200418 defproxy.mode = PR_MODE_TCP;
Willy Tarreauc3914d42020-09-24 08:39:22 +0200419 defproxy.disabled = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200420 defproxy.maxconn = cfg_maxpconn;
421 defproxy.conn_retries = CONN_RETRIES;
Joseph Lynch726ab712015-05-11 23:25:34 -0700422 defproxy.redispatch_after = 0;
Olivier Houchard86006a52018-12-14 19:37:49 +0100423 defproxy.options = PR_O_REUSE_SAFE;
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +0100424 defproxy.max_out_conns = MAX_SRV_LIST;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100425
Simon Horman66183002013-02-23 10:16:43 +0900426 defproxy.defsrv.check.inter = DEF_CHKINTR;
427 defproxy.defsrv.check.fastinter = 0;
428 defproxy.defsrv.check.downinter = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900429 defproxy.defsrv.agent.inter = DEF_CHKINTR;
430 defproxy.defsrv.agent.fastinter = 0;
431 defproxy.defsrv.agent.downinter = 0;
Simon Horman58c32972013-11-25 10:46:38 +0900432 defproxy.defsrv.check.rise = DEF_RISETIME;
433 defproxy.defsrv.check.fall = DEF_FALLTIME;
434 defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME;
435 defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME;
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200436 defproxy.defsrv.check.port = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900437 defproxy.defsrv.agent.port = 0;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100438 defproxy.defsrv.maxqueue = 0;
439 defproxy.defsrv.minconn = 0;
440 defproxy.defsrv.maxconn = 0;
Willy Tarreau9c538e02019-01-23 10:21:49 +0100441 defproxy.defsrv.max_reuse = -1;
Olivier Houchard006e3102018-12-10 18:30:32 +0100442 defproxy.defsrv.max_idle_conns = -1;
Willy Tarreau975b1552019-06-06 16:25:55 +0200443 defproxy.defsrv.pool_purge_delay = 5000;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100444 defproxy.defsrv.slowstart = 0;
445 defproxy.defsrv.onerror = DEF_HANA_ONERR;
446 defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT;
447 defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1;
Simon Horman64e34162015-02-06 11:11:57 +0900448
449 defproxy.email_alert.level = LOG_ALERT;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +0200450 defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200451}
452
Frédéric Lécaille18251032019-01-11 11:07:15 +0100453/* Allocate and initialize the frontend of a "peers" section found in
454 * file <file> at line <linenum> with <id> as ID.
455 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200456 * Note that this function may be called from "default-server"
457 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100458 */
459static int init_peers_frontend(const char *file, int linenum,
460 const char *id, struct peers *peers)
461{
462 struct proxy *p;
463
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200464 if (peers->peers_fe) {
465 p = peers->peers_fe;
466 goto out;
467 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100468
Frédéric Lécaille18251032019-01-11 11:07:15 +0100469 p = calloc(1, sizeof *p);
470 if (!p) {
471 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
472 return -1;
473 }
474
475 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200476 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100477 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200478 /* Finally store this frontend. */
479 peers->peers_fe = p;
480
481 out:
482 if (id && !p->id)
483 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200484 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100485 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100486 if (linenum != -1)
487 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100488
489 return 0;
490}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100491
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100492/* Only change ->file, ->line and ->arg struct bind_conf member values
493 * if already present.
494 */
495static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
496 const char *file, int line,
497 const char *arg, struct xprt_ops *xprt)
498{
499 struct bind_conf *bind_conf;
500
501 if (!LIST_ISEMPTY(&p->conf.bind)) {
502 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
503 free(bind_conf->file);
504 bind_conf->file = strdup(file);
505 bind_conf->line = line;
506 if (arg) {
507 free(bind_conf->arg);
508 bind_conf->arg = strdup(arg);
509 }
510 }
511 else {
512 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
513 }
514
515 return bind_conf;
516}
517
518/*
519 * Allocate a new struct peer parsed at line <linenum> in file <file>
520 * to be added to <peers>.
521 * Returns the new allocated structure if succeeded, NULL if not.
522 */
523static struct peer *cfg_peers_add_peer(struct peers *peers,
524 const char *file, int linenum,
525 const char *id, int local)
526{
527 struct peer *p;
528
529 p = calloc(1, sizeof *p);
530 if (!p) {
531 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
532 return NULL;
533 }
534
535 /* the peers are linked backwards first */
536 peers->count++;
537 p->next = peers->remote;
538 peers->remote = p;
539 p->conf.file = strdup(file);
540 p->conf.line = linenum;
541 p->last_change = now.tv_sec;
542 p->xprt = xprt_get(XPRT_RAW);
543 p->sock_init_arg = NULL;
544 HA_SPIN_INIT(&p->lock);
545 if (id)
546 p->id = strdup(id);
547 if (local) {
548 p->local = 1;
549 peers->local = p;
550 }
551
552 return p;
553}
554
Willy Tarreaubaaee002006-06-26 02:48:02 +0200555/*
William Lallemand51097192015-04-14 16:35:22 +0200556 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200557 * Returns the error code, 0 if OK, or any combination of :
558 * - ERR_ABORT: must abort ASAP
559 * - ERR_FATAL: we can continue parsing but not start the service
560 * - ERR_WARN: a warning has been emitted
561 * - ERR_ALERT: an alert has been emitted
562 * Only the two first ones can stop processing, the two others are just
563 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200564 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200565int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
566{
567 static struct peers *curpeers = NULL;
568 struct peer *newpeer = NULL;
569 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200570 struct bind_conf *bind_conf;
571 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200572 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100573 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100574 static int bind_line, peer_line;
575
576 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
577 int cur_arg;
578 static int kws_dumped;
579 struct bind_conf *bind_conf;
580 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200581
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100582 cur_arg = 1;
583
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200584 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
585 err_code |= ERR_ALERT | ERR_ABORT;
586 goto out;
587 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100588
589 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
590 NULL, xprt_get(XPRT_RAW));
591 if (*args[0] == 'b') {
592 struct listener *l;
593
594 if (peer_line) {
595 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
596 err_code |= ERR_ALERT | ERR_FATAL;
597 goto out;
598 }
599
600 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
601 if (errmsg && *errmsg) {
602 indent_msg(&errmsg, 2);
603 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
604 }
605 else
606 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
607 file, linenum, args[0], args[1], args[2]);
608 err_code |= ERR_FATAL;
609 goto out;
610 }
611 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
612 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100613 l->accept = session_accept_fd;
614 l->analysers |= curpeers->peers_fe->fe_req_ana;
615 l->default_target = curpeers->peers_fe->default_target;
616 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100617 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100618
619 bind_line = 1;
620 if (cfg_peers->local) {
621 newpeer = cfg_peers->local;
622 }
623 else {
624 /* This peer is local.
625 * Note that we do not set the peer ID. This latter is initialized
626 * when parsing "peer" or "server" line.
627 */
628 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
629 if (!newpeer) {
630 err_code |= ERR_ALERT | ERR_ABORT;
631 goto out;
632 }
633 }
Willy Tarreau37159062020-08-27 07:48:42 +0200634 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200635 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100636 cur_arg++;
637 }
638
639 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
640 int ret;
641
642 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
643 err_code |= ret;
644 if (ret) {
645 if (errmsg && *errmsg) {
646 indent_msg(&errmsg, 2);
647 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
648 }
649 else
650 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
651 file, linenum, args[cur_arg]);
652 if (ret & ERR_FATAL)
653 goto out;
654 }
655 cur_arg += 1 + kw->skip;
656 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100657 if (*args[cur_arg] != 0) {
Tim Duesterhus04bcaa12019-05-12 22:54:50 +0200658 char *kws = NULL;
659
660 if (!kws_dumped) {
661 kws_dumped = 1;
662 bind_dump_kws(&kws);
663 indent_msg(&kws, 4);
664 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100665 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.%s%s\n",
666 file, linenum, args[cur_arg], cursection,
667 kws ? " Registered keywords :" : "", kws ? kws: "");
668 free(kws);
669 err_code |= ERR_ALERT | ERR_FATAL;
670 goto out;
671 }
672 }
673 else if (strcmp(args[0], "default-server") == 0) {
674 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
675 err_code |= ERR_ALERT | ERR_ABORT;
676 goto out;
677 }
Emeric Brund3db3842020-07-21 16:54:36 +0200678 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, 0, 1, 1);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200679 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100680 else if (strcmp(args[0], "log") == 0) {
681 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
682 err_code |= ERR_ALERT | ERR_ABORT;
683 goto out;
684 }
685 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), &errmsg)) {
686 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
687 err_code |= ERR_ALERT | ERR_FATAL;
688 goto out;
689 }
690 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200691 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100692 /* Initialize these static variables when entering a new "peers" section*/
693 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100694 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100695 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100696 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100697 goto out;
698 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200699
William Lallemand6e62fb62015-04-28 16:55:23 +0200700 if (alertif_too_many_args(1, file, linenum, args, &err_code))
701 goto out;
702
Emeric Brun32da3c42010-09-23 18:39:19 +0200703 err = invalid_char(args[1]);
704 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100705 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
706 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100707 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100708 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200709 }
710
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200711 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200712 /*
713 * If there are two proxies with the same name only following
714 * combinations are allowed:
715 */
716 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100717 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
718 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200719 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200720 }
721 }
722
Vincent Bernat02779b62016-04-03 13:48:43 +0200723 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100724 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200725 err_code |= ERR_ALERT | ERR_ABORT;
726 goto out;
727 }
728
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200729 curpeers->next = cfg_peers;
730 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200731 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200732 curpeers->conf.line = linenum;
733 curpeers->last_change = now.tv_sec;
734 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200735 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200736 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200737 else if (strcmp(args[0], "peer") == 0 ||
738 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100739 int local_peer, peer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200740
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100741 peer = *args[0] == 'p';
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100742 local_peer = !strcmp(args[1], localpeer);
743 /* The local peer may have already partially been parsed on a "bind" line. */
744 if (*args[0] == 'p') {
745 if (bind_line) {
746 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
747 err_code |= ERR_ALERT | ERR_FATAL;
748 goto out;
749 }
750 peer_line = 1;
751 }
752 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
753 /* The local peer has already been initialized on a "bind" line.
754 * Let's use it and store its ID.
755 */
756 newpeer = cfg_peers->local;
757 newpeer->id = strdup(localpeer);
758 }
759 else {
760 if (local_peer && cfg_peers->local) {
761 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
762 file, linenum, args[0], args[1],
763 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
764 err_code |= ERR_FATAL;
765 goto out;
766 }
767 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
768 if (!newpeer) {
769 err_code |= ERR_ALERT | ERR_ABORT;
770 goto out;
771 }
772 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200773
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100774 /* Line number and peer ID are updated only if this peer is the local one. */
775 if (init_peers_frontend(file,
776 newpeer->local ? linenum: -1,
777 newpeer->local ? newpeer->id : NULL,
778 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200779 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100780 goto out;
781 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100782
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100783 /* This initializes curpeer->peers->peers_fe->srv.
784 * The server address is parsed only if we are parsing a "peer" line,
785 * or if we are parsing a "server" line and the current peer is not the local one.
786 */
Emeric Brund3db3842020-07-21 16:54:36 +0200787 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 +0200788 if (!curpeers->peers_fe->srv) {
789 /* Remove the newly allocated peer. */
790 if (newpeer != curpeers->local) {
791 struct peer *p;
792
793 p = curpeers->remote;
794 curpeers->remote = curpeers->remote->next;
795 free(p->id);
796 free(p);
797 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200798 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200799 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200800
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100801 /* If the peer address has just been parsed, let's copy it to <newpeer>
802 * and initializes ->proto.
803 */
804 if (peer || !local_peer) {
805 newpeer->addr = curpeers->peers_fe->srv->addr;
806 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
807 }
808
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100809 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200810 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100811 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200812
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100813 newpeer->srv = curpeers->peers_fe->srv;
814 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200815 goto out;
816
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100817 /* The lines above are reserved to "peer" lines. */
818 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200819 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200820
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100821 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 +0100822
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100823 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
824 if (errmsg && *errmsg) {
825 indent_msg(&errmsg, 2);
826 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 +0100827 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100828 else
829 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
830 file, linenum, args[0], args[1], args[2]);
831 err_code |= ERR_FATAL;
832 goto out;
833 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100834
835 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
836 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100837 l->accept = session_accept_fd;
838 l->analysers |= curpeers->peers_fe->fe_req_ana;
839 l->default_target = curpeers->peers_fe->default_target;
840 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100841 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100842 }
843 else if (!strcmp(args[0], "table")) {
844 struct stktable *t, *other;
845 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100846 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100847
848 /* Line number and peer ID are updated only if this peer is the local one. */
849 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
850 err_code |= ERR_ALERT | ERR_ABORT;
851 goto out;
852 }
853
854 other = stktable_find_by_name(args[1]);
855 if (other) {
856 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
857 file, linenum, args[1],
858 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
859 other->proxy ? other->id : other->peers.p->id,
860 other->conf.file, other->conf.line);
861 err_code |= ERR_ALERT | ERR_FATAL;
862 goto out;
863 }
864
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100865 /* Build the stick-table name, concatenating the "peers" section name
866 * followed by a '/' character and the table name argument.
867 */
868 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100869 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100870 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
871 file, linenum, args[0], args[1]);
872 err_code |= ERR_ALERT | ERR_FATAL;
873 goto out;
874 }
875
876 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100877 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100878 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
879 file, linenum, args[0], args[1]);
880 err_code |= ERR_ALERT | ERR_FATAL;
881 goto out;
882 }
883
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100884 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100885 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100886 if (!t || !id) {
887 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
888 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +0200889 free(t);
890 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100891 err_code |= ERR_ALERT | ERR_FATAL;
892 goto out;
893 }
894
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100895 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +0200896 if (err_code & ERR_FATAL) {
897 free(t);
898 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100899 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +0200900 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100901
902 stktable_store_name(t);
903 t->next = stktables_list;
904 stktables_list = t;
905 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200906 else if (!strcmp(args[0], "disabled")) { /* disables this peers section */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200907 curpeers->disabled = 1;
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200908 }
909 else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200910 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200911 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200912 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100913 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200914 err_code |= ERR_ALERT | ERR_FATAL;
915 goto out;
916 }
917
918out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100919 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200920 return err_code;
921}
922
Baptiste Assmann325137d2015-04-13 23:40:55 +0200923/*
924 * Parse a <resolvers> section.
925 * Returns the error code, 0 if OK, or any combination of :
926 * - ERR_ABORT: must abort ASAP
927 * - ERR_FATAL: we can continue parsing but not start the service
928 * - ERR_WARN: a warning has been emitted
929 * - ERR_ALERT: an alert has been emitted
930 * Only the two first ones can stop processing, the two others are just
931 * indicators.
932 */
933int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
934{
935 static struct dns_resolvers *curr_resolvers = NULL;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200936 const char *err;
937 int err_code = 0;
938 char *errmsg = NULL;
939
940 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
941 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100942 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200943 err_code |= ERR_ALERT | ERR_ABORT;
944 goto out;
945 }
946
947 err = invalid_char(args[1]);
948 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100949 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
950 file, linenum, *err, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200951 err_code |= ERR_ALERT | ERR_ABORT;
952 goto out;
953 }
954
955 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
956 /* Error if two resolvers owns the same name */
957 if (strcmp(curr_resolvers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100958 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
959 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200960 err_code |= ERR_ALERT | ERR_ABORT;
961 }
962 }
963
Vincent Bernat02779b62016-04-03 13:48:43 +0200964 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100965 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200966 err_code |= ERR_ALERT | ERR_ABORT;
967 goto out;
968 }
969
970 /* default values */
971 LIST_ADDQ(&dns_resolvers, &curr_resolvers->list);
972 curr_resolvers->conf.file = strdup(file);
973 curr_resolvers->conf.line = linenum;
974 curr_resolvers->id = strdup(args[1]);
975 curr_resolvers->query_ids = EB_ROOT;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200976 /* default maximum response size */
977 curr_resolvers->accepted_payload_size = 512;
Baptiste Assmann987e16d2016-11-02 22:23:31 +0100978 /* default hold period for nx, other, refuse and timeout is 30s */
979 curr_resolvers->hold.nx = 30000;
980 curr_resolvers->hold.other = 30000;
981 curr_resolvers->hold.refused = 30000;
982 curr_resolvers->hold.timeout = 30000;
Baptiste Assmann686408b2017-08-18 10:15:42 +0200983 curr_resolvers->hold.obsolete = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200984 /* default hold period for valid is 10s */
Baptiste Assmann4c5490a2015-07-14 21:42:49 +0200985 curr_resolvers->hold.valid = 10000;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200986 curr_resolvers->timeout.resolve = 1000;
987 curr_resolvers->timeout.retry = 1000;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200988 curr_resolvers->resolve_retries = 3;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200989 curr_resolvers->nb_nameservers = 0;
990 LIST_INIT(&curr_resolvers->nameservers);
991 LIST_INIT(&curr_resolvers->resolutions.curr);
992 LIST_INIT(&curr_resolvers->resolutions.wait);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100993 HA_SPIN_INIT(&curr_resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200994 }
995 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
Eric Salama60570162020-11-13 15:56:36 +0100996 struct dns_nameserver *newnameserver = NULL;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200997 struct sockaddr_storage *sk;
998 int port1, port2;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200999
1000 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001001 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1002 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001003 err_code |= ERR_ALERT | ERR_FATAL;
1004 goto out;
1005 }
1006
1007 err = invalid_char(args[1]);
1008 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001009 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1010 file, linenum, *err, args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001011 err_code |= ERR_ALERT | ERR_FATAL;
1012 goto out;
1013 }
1014
Christopher Faulet67957bd2017-09-27 11:00:59 +02001015 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
Baptiste Assmanna315c552015-11-02 22:55:49 +01001016 /* Error if two resolvers owns the same name */
1017 if (strcmp(newnameserver->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001018 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 -06001019 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
Baptiste Assmanna315c552015-11-02 22:55:49 +01001020 err_code |= ERR_ALERT | ERR_FATAL;
1021 }
1022 }
1023
Vincent Bernat02779b62016-04-03 13:48:43 +02001024 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001025 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001026 err_code |= ERR_ALERT | ERR_ABORT;
1027 goto out;
1028 }
1029
1030 /* the nameservers are linked backward first */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001031 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001032 newnameserver->resolvers = curr_resolvers;
1033 newnameserver->conf.file = strdup(file);
1034 newnameserver->conf.line = linenum;
1035 newnameserver->id = strdup(args[1]);
1036
Willy Tarreau5fc93282020-09-16 18:25:03 +02001037 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, NULL,
1038 &errmsg, NULL, NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_DGRAM);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001039 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001040 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001041 err_code |= ERR_ALERT | ERR_FATAL;
1042 goto out;
1043 }
1044
Baptiste Assmann325137d2015-04-13 23:40:55 +02001045 newnameserver->addr = *sk;
1046 }
Ben Draut44e609b2018-05-29 15:40:08 -06001047 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
Eric Salama60570162020-11-13 15:56:36 +01001048 struct dns_nameserver *newnameserver = NULL;
Ben Draut44e609b2018-05-29 15:40:08 -06001049 const char *whitespace = "\r\n\t ";
1050 char *resolv_line = NULL;
1051 int resolv_linenum = 0;
1052 FILE *f = NULL;
1053 char *address = NULL;
1054 struct sockaddr_storage *sk = NULL;
1055 struct protocol *proto;
1056 int duplicate_name = 0;
1057
1058 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
1059 ha_alert("parsing [%s:%d] : out of memory.\n",
1060 file, linenum);
1061 err_code |= ERR_ALERT | ERR_FATAL;
1062 goto resolv_out;
1063 }
1064
1065 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
1066 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
1067 file, linenum);
1068 err_code |= ERR_ALERT | ERR_FATAL;
1069 goto resolv_out;
1070 }
1071
1072 sk = calloc(1, sizeof(*sk));
1073 if (sk == NULL) {
1074 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
1075 resolv_linenum);
1076 err_code |= ERR_ALERT | ERR_FATAL;
1077 goto resolv_out;
1078 }
1079
1080 while (fgets(resolv_line, LINESIZE, f) != NULL) {
1081 resolv_linenum++;
1082 if (strncmp(resolv_line, "nameserver", 10) != 0)
1083 continue;
1084
1085 address = strtok(resolv_line + 10, whitespace);
1086 if (address == resolv_line + 10)
1087 continue;
1088
1089 if (address == NULL) {
1090 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
1091 resolv_linenum);
1092 err_code |= ERR_WARN;
1093 continue;
1094 }
1095
1096 duplicate_name = 0;
1097 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
1098 if (strcmp(newnameserver->id, address) == 0) {
1099 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",
1100 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
1101 err_code |= ERR_WARN;
1102 duplicate_name = 1;
1103 }
1104 }
1105
1106 if (duplicate_name)
1107 continue;
1108
1109 memset(sk, 0, sizeof(*sk));
Willy Tarreau78675252020-05-28 18:07:10 +02001110 if (!str2ip2(address, sk, 1)) {
1111 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 -06001112 resolv_linenum, address);
1113 err_code |= ERR_WARN;
1114 continue;
1115 }
1116
1117 set_host_port(sk, 53);
1118
1119 proto = protocol_by_family(sk->ss_family);
1120 if (!proto || !proto->connect) {
1121 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
1122 resolv_linenum, address);
1123 err_code |= ERR_WARN;
1124 continue;
1125 }
1126
1127 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
1128 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1129 err_code |= ERR_ALERT | ERR_FATAL;
1130 goto resolv_out;
1131 }
1132
1133 newnameserver->conf.file = strdup("/etc/resolv.conf");
1134 if (newnameserver->conf.file == NULL) {
1135 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1136 err_code |= ERR_ALERT | ERR_FATAL;
Eric Salama60570162020-11-13 15:56:36 +01001137 free(newnameserver);
Ben Draut44e609b2018-05-29 15:40:08 -06001138 goto resolv_out;
1139 }
1140
1141 newnameserver->id = strdup(address);
1142 if (newnameserver->id == NULL) {
1143 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1144 err_code |= ERR_ALERT | ERR_FATAL;
Eric Salama60570162020-11-13 15:56:36 +01001145 free((char *)newnameserver->conf.file);
1146 free(newnameserver);
Ben Draut44e609b2018-05-29 15:40:08 -06001147 goto resolv_out;
1148 }
1149
1150 newnameserver->resolvers = curr_resolvers;
1151 newnameserver->conf.line = resolv_linenum;
1152 newnameserver->addr = *sk;
1153
1154 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
1155 }
1156
1157resolv_out:
1158 free(sk);
1159 free(resolv_line);
1160 if (f != NULL)
1161 fclose(f);
1162 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001163 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
1164 const char *res;
1165 unsigned int time;
1166
1167 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001168 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
1169 file, linenum, args[0]);
1170 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
Baptiste Assmann325137d2015-04-13 23:40:55 +02001171 err_code |= ERR_ALERT | ERR_FATAL;
1172 goto out;
1173 }
1174 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001175 if (res == PARSE_TIME_OVER) {
1176 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s>, maximum value is 2147483647 ms (~24.8 days).\n",
1177 file, linenum, args[1], args[0]);
1178 err_code |= ERR_ALERT | ERR_FATAL;
1179 goto out;
1180 }
1181 else if (res == PARSE_TIME_UNDER) {
1182 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s>, minimum non-null value is 1 ms.\n",
1183 file, linenum, args[1], args[0]);
1184 err_code |= ERR_ALERT | ERR_FATAL;
1185 goto out;
1186 }
1187 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001188 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1189 file, linenum, *res, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001190 err_code |= ERR_ALERT | ERR_FATAL;
1191 goto out;
1192 }
Baptiste Assmann987e16d2016-11-02 22:23:31 +01001193 if (strcmp(args[1], "nx") == 0)
1194 curr_resolvers->hold.nx = time;
1195 else if (strcmp(args[1], "other") == 0)
1196 curr_resolvers->hold.other = time;
1197 else if (strcmp(args[1], "refused") == 0)
1198 curr_resolvers->hold.refused = time;
1199 else if (strcmp(args[1], "timeout") == 0)
1200 curr_resolvers->hold.timeout = time;
1201 else if (strcmp(args[1], "valid") == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001202 curr_resolvers->hold.valid = time;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001203 else if (strcmp(args[1], "obsolete") == 0)
1204 curr_resolvers->hold.obsolete = time;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001205 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001206 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
1207 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001208 err_code |= ERR_ALERT | ERR_FATAL;
1209 goto out;
1210 }
1211
1212 }
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001213 else if (strcmp(args[0], "accepted_payload_size") == 0) {
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001214 int i = 0;
1215
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001216 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001217 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1218 file, linenum, args[0]);
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001219 err_code |= ERR_ALERT | ERR_FATAL;
1220 goto out;
1221 }
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001222
1223 i = atoi(args[1]);
Willy Tarreau0c219be2017-08-22 12:01:26 +02001224 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001225 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
1226 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001227 err_code |= ERR_ALERT | ERR_FATAL;
1228 goto out;
1229 }
1230
1231 curr_resolvers->accepted_payload_size = i;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001232 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001233 else if (strcmp(args[0], "resolution_pool_size") == 0) {
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001234 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 +01001235 file, linenum, args[0]);
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001236 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001237 goto out;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001238 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001239 else if (strcmp(args[0], "resolve_retries") == 0) {
1240 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001241 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1242 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001243 err_code |= ERR_ALERT | ERR_FATAL;
1244 goto out;
1245 }
1246 curr_resolvers->resolve_retries = atoi(args[1]);
1247 }
1248 else if (strcmp(args[0], "timeout") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001249 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001250 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
1251 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001252 err_code |= ERR_ALERT | ERR_FATAL;
1253 goto out;
1254 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001255 else if (strcmp(args[1], "retry") == 0 ||
1256 strcmp(args[1], "resolve") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001257 const char *res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001258 unsigned int tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001259
1260 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001261 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1262 file, linenum, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001263 err_code |= ERR_ALERT | ERR_FATAL;
1264 goto out;
1265 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001266 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001267 if (res == PARSE_TIME_OVER) {
1268 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1269 file, linenum, args[2], args[0], args[1]);
1270 err_code |= ERR_ALERT | ERR_FATAL;
1271 goto out;
1272 }
1273 else if (res == PARSE_TIME_UNDER) {
1274 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1275 file, linenum, args[2], args[0], args[1]);
1276 err_code |= ERR_ALERT | ERR_FATAL;
1277 goto out;
1278 }
1279 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001280 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1281 file, linenum, *res, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001282 err_code |= ERR_ALERT | ERR_FATAL;
1283 goto out;
1284 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001285 if (args[1][2] == 't')
1286 curr_resolvers->timeout.retry = tout;
1287 else
1288 curr_resolvers->timeout.resolve = tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001289 }
1290 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001291 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
1292 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001293 err_code |= ERR_ALERT | ERR_FATAL;
1294 goto out;
1295 }
Eric Salama60570162020-11-13 15:56:36 +01001296 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001297 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001298 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001299 err_code |= ERR_ALERT | ERR_FATAL;
1300 goto out;
1301 }
1302
1303 out:
1304 free(errmsg);
1305 return err_code;
1306}
Simon Horman0d16a402015-01-30 11:22:58 +09001307
1308/*
William Lallemand51097192015-04-14 16:35:22 +02001309 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001310 * Returns the error code, 0 if OK, or any combination of :
1311 * - ERR_ABORT: must abort ASAP
1312 * - ERR_FATAL: we can continue parsing but not start the service
1313 * - ERR_WARN: a warning has been emitted
1314 * - ERR_ALERT: an alert has been emitted
1315 * Only the two first ones can stop processing, the two others are just
1316 * indicators.
1317 */
1318int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1319{
1320 static struct mailers *curmailers = NULL;
1321 struct mailer *newmailer = NULL;
1322 const char *err;
1323 int err_code = 0;
1324 char *errmsg = NULL;
1325
1326 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1327 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001328 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001329 err_code |= ERR_ALERT | ERR_ABORT;
1330 goto out;
1331 }
1332
1333 err = invalid_char(args[1]);
1334 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001335 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1336 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001337 err_code |= ERR_ALERT | ERR_ABORT;
1338 goto out;
1339 }
1340
1341 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1342 /*
1343 * If there are two proxies with the same name only following
1344 * combinations are allowed:
1345 */
1346 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001347 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1348 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001349 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001350 }
1351 }
1352
Vincent Bernat02779b62016-04-03 13:48:43 +02001353 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001354 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001355 err_code |= ERR_ALERT | ERR_ABORT;
1356 goto out;
1357 }
1358
1359 curmailers->next = mailers;
1360 mailers = curmailers;
1361 curmailers->conf.file = strdup(file);
1362 curmailers->conf.line = linenum;
1363 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001364 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1365 * But need enough time so that timeouts don't occur
1366 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001367 }
1368 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1369 struct sockaddr_storage *sk;
1370 int port1, port2;
1371 struct protocol *proto;
1372
1373 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001374 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1375 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001376 err_code |= ERR_ALERT | ERR_FATAL;
1377 goto out;
1378 }
1379
1380 err = invalid_char(args[1]);
1381 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001382 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1383 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001384 err_code |= ERR_ALERT | ERR_FATAL;
1385 goto out;
1386 }
1387
Vincent Bernat02779b62016-04-03 13:48:43 +02001388 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001389 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001390 err_code |= ERR_ALERT | ERR_ABORT;
1391 goto out;
1392 }
1393
1394 /* the mailers are linked backwards first */
1395 curmailers->count++;
1396 newmailer->next = curmailers->mailer_list;
1397 curmailers->mailer_list = newmailer;
1398 newmailer->mailers = curmailers;
1399 newmailer->conf.file = strdup(file);
1400 newmailer->conf.line = linenum;
1401
1402 newmailer->id = strdup(args[1]);
1403
Willy Tarreau5fc93282020-09-16 18:25:03 +02001404 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001405 &errmsg, NULL, NULL,
1406 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 +09001407 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001408 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001409 err_code |= ERR_ALERT | ERR_FATAL;
1410 goto out;
1411 }
1412
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001413 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001414 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1415 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001416 err_code |= ERR_ALERT | ERR_FATAL;
1417 goto out;
1418 }
1419
Simon Horman0d16a402015-01-30 11:22:58 +09001420 newmailer->addr = *sk;
1421 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001422 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001423 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001424 }
1425 else if (strcmp(args[0], "timeout") == 0) {
1426 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001427 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1428 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001429 err_code |= ERR_ALERT | ERR_FATAL;
1430 goto out;
1431 }
1432 else if (strcmp(args[1], "mail") == 0) {
1433 const char *res;
1434 unsigned int timeout_mail;
1435 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001436 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1437 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001438 err_code |= ERR_ALERT | ERR_FATAL;
1439 goto out;
1440 }
1441 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001442 if (res == PARSE_TIME_OVER) {
1443 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1444 file, linenum, args[2], args[0], args[1]);
1445 err_code |= ERR_ALERT | ERR_FATAL;
1446 goto out;
1447 }
1448 else if (res == PARSE_TIME_UNDER) {
1449 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1450 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001451 err_code |= ERR_ALERT | ERR_FATAL;
1452 goto out;
1453 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001454 else if (res) {
1455 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1456 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001457 err_code |= ERR_ALERT | ERR_FATAL;
1458 goto out;
1459 }
1460 curmailers->timeout.mail = timeout_mail;
1461 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001462 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001463 file, linenum, args[0], args[1]);
1464 err_code |= ERR_ALERT | ERR_FATAL;
1465 goto out;
1466 }
1467 }
Simon Horman0d16a402015-01-30 11:22:58 +09001468 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001469 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001470 err_code |= ERR_ALERT | ERR_FATAL;
1471 goto out;
1472 }
1473
1474out:
1475 free(errmsg);
1476 return err_code;
1477}
1478
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001479void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001480{
1481 free(p->email_alert.mailers.name);
1482 p->email_alert.mailers.name = NULL;
1483 free(p->email_alert.from);
1484 p->email_alert.from = NULL;
1485 free(p->email_alert.to);
1486 p->email_alert.to = NULL;
1487 free(p->email_alert.myhostname);
1488 p->email_alert.myhostname = NULL;
1489}
1490
Willy Tarreaubaaee002006-06-26 02:48:02 +02001491
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001492int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001493cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1494{
Willy Tarreaue5733232019-05-22 19:24:06 +02001495#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001496 const char *err;
1497 const char *item = args[0];
1498
1499 if (!strcmp(item, "namespace_list")) {
1500 return 0;
1501 }
1502 else if (!strcmp(item, "namespace")) {
1503 size_t idx = 1;
1504 const char *current;
1505 while (*(current = args[idx++])) {
1506 err = invalid_char(current);
1507 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001508 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1509 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001510 return ERR_ALERT | ERR_FATAL;
1511 }
1512
1513 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001514 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1515 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001516 return ERR_ALERT | ERR_FATAL;
1517 }
1518 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001519 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1520 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001521 return ERR_ALERT | ERR_FATAL;
1522 }
1523 }
1524 }
1525
1526 return 0;
1527#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001528 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1529 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001530 return ERR_ALERT | ERR_FATAL;
1531#endif
1532}
1533
1534int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001535cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1536{
1537
1538 int err_code = 0;
1539 const char *err;
1540
1541 if (!strcmp(args[0], "userlist")) { /* new userlist */
1542 struct userlist *newul;
1543
1544 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001545 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1546 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001547 err_code |= ERR_ALERT | ERR_FATAL;
1548 goto out;
1549 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001550 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1551 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001552
1553 err = invalid_char(args[1]);
1554 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001555 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1556 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001557 err_code |= ERR_ALERT | ERR_FATAL;
1558 goto out;
1559 }
1560
1561 for (newul = userlist; newul; newul = newul->next)
1562 if (!strcmp(newul->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001563 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1564 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001565 err_code |= ERR_WARN;
1566 goto out;
1567 }
1568
Vincent Bernat02779b62016-04-03 13:48:43 +02001569 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001570 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001571 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001572 err_code |= ERR_ALERT | ERR_ABORT;
1573 goto out;
1574 }
1575
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001576 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001577 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001578 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001579 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001580 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001581 goto out;
1582 }
1583
1584 newul->next = userlist;
1585 userlist = newul;
1586
1587 } else if (!strcmp(args[0], "group")) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001588 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001589 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001590 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001591
1592 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001593 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1594 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001595 err_code |= ERR_ALERT | ERR_FATAL;
1596 goto out;
1597 }
1598
1599 err = invalid_char(args[1]);
1600 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001601 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1602 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001603 err_code |= ERR_ALERT | ERR_FATAL;
1604 goto out;
1605 }
1606
William Lallemand4ac9f542015-05-28 18:03:51 +02001607 if (!userlist)
1608 goto out;
1609
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001610 for (ag = userlist->groups; ag; ag = ag->next)
1611 if (!strcmp(ag->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001612 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1613 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001614 err_code |= ERR_ALERT;
1615 goto out;
1616 }
1617
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001618 ag = calloc(1, sizeof(*ag));
1619 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001620 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001621 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001622 goto out;
1623 }
1624
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001625 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001626 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001627 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001628 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001629 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001630 goto out;
1631 }
1632
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001633 cur_arg = 2;
1634
1635 while (*args[cur_arg]) {
1636 if (!strcmp(args[cur_arg], "users")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001637 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001638 cur_arg += 2;
1639 continue;
1640 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001641 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1642 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001643 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001644 free(ag->groupusers);
1645 free(ag->name);
1646 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001647 goto out;
1648 }
1649 }
1650
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001651 ag->next = userlist->groups;
1652 userlist->groups = ag;
1653
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001654 } else if (!strcmp(args[0], "user")) { /* new user */
1655 struct auth_users *newuser;
1656 int cur_arg;
1657
1658 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001659 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1660 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001661 err_code |= ERR_ALERT | ERR_FATAL;
1662 goto out;
1663 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001664 if (!userlist)
1665 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001666
1667 for (newuser = userlist->users; newuser; newuser = newuser->next)
1668 if (!strcmp(newuser->user, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001669 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1670 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001671 err_code |= ERR_ALERT;
1672 goto out;
1673 }
1674
Vincent Bernat02779b62016-04-03 13:48:43 +02001675 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001676 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001677 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001678 err_code |= ERR_ALERT | ERR_ABORT;
1679 goto out;
1680 }
1681
1682 newuser->user = strdup(args[1]);
1683
1684 newuser->next = userlist->users;
1685 userlist->users = newuser;
1686
1687 cur_arg = 2;
1688
1689 while (*args[cur_arg]) {
1690 if (!strcmp(args[cur_arg], "password")) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001691#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001692 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001693 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1694 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001695 err_code |= ERR_ALERT | ERR_FATAL;
1696 goto out;
1697 }
1698#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001699 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1700 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001701 err_code |= ERR_ALERT;
1702#endif
1703 newuser->pass = strdup(args[cur_arg + 1]);
1704 cur_arg += 2;
1705 continue;
1706 } else if (!strcmp(args[cur_arg], "insecure-password")) {
1707 newuser->pass = strdup(args[cur_arg + 1]);
1708 newuser->flags |= AU_O_INSECURE;
1709 cur_arg += 2;
1710 continue;
1711 } else if (!strcmp(args[cur_arg], "groups")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001712 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001713 cur_arg += 2;
1714 continue;
1715 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001716 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1717 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001718 err_code |= ERR_ALERT | ERR_FATAL;
1719 goto out;
1720 }
1721 }
1722 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001723 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 +01001724 err_code |= ERR_ALERT | ERR_FATAL;
1725 }
1726
1727out:
1728 return err_code;
1729}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001730
Christopher Faulet79bdef32016-11-04 22:36:15 +01001731int
1732cfg_parse_scope(const char *file, int linenum, char *line)
1733{
1734 char *beg, *end, *scope = NULL;
1735 int err_code = 0;
1736 const char *err;
1737
1738 beg = line + 1;
1739 end = strchr(beg, ']');
1740
1741 /* Detect end of scope declaration */
1742 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001743 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1744 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001745 err_code |= ERR_ALERT | ERR_FATAL;
1746 goto out;
1747 }
1748
1749 /* Get scope name and check its validity */
1750 scope = my_strndup(beg, end-beg);
1751 err = invalid_char(scope);
1752 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001753 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1754 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001755 err_code |= ERR_ALERT | ERR_ABORT;
1756 goto out;
1757 }
1758
1759 /* Be sure to have a scope declaration alone on its line */
1760 line = end+1;
1761 while (isspace((unsigned char)*line))
1762 line++;
1763 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001764 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1765 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001766 err_code |= ERR_ALERT | ERR_ABORT;
1767 goto out;
1768 }
1769
1770 /* We have a valid scope declaration, save it */
1771 free(cfg_scope);
1772 cfg_scope = scope;
1773 scope = NULL;
1774
1775 out:
1776 free(scope);
1777 return err_code;
1778}
1779
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001780int
1781cfg_parse_track_sc_num(unsigned int *track_sc_num,
1782 const char *arg, const char *end, char **errmsg)
1783{
1784 const char *p;
1785 unsigned int num;
1786
1787 p = arg;
1788 num = read_uint64(&arg, end);
1789
1790 if (arg != end) {
1791 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1792 return -1;
1793 }
1794
1795 if (num >= MAX_SESS_STKCTR) {
1796 memprintf(errmsg, "%u track-sc number exceeding "
1797 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1798 return -1;
1799 }
1800
1801 *track_sc_num = num;
1802 return 0;
1803}
1804
Willy Tarreaubaaee002006-06-26 02:48:02 +02001805/*
1806 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001807 * Returns the error code, 0 if OK, or any combination of :
1808 * - ERR_ABORT: must abort ASAP
1809 * - ERR_FATAL: we can continue parsing but not start the service
1810 * - ERR_WARN: a warning has been emitted
1811 * - ERR_ALERT: an alert has been emitted
1812 * Only the two first ones can stop processing, the two others are just
1813 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001814 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001815int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001816{
William Lallemand64e84512015-05-12 14:25:37 +02001817 char *thisline;
1818 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001819 FILE *f;
1820 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001821 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001822 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001823 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001824 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001825 char *outline = NULL;
1826 size_t outlen = 0;
1827 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001828 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001829 int missing_lf = -1;
William Lallemand64e84512015-05-12 14:25:37 +02001830
1831 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001832 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001833 return -1;
1834 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001835
David Carlier97880bb2016-04-08 10:35:26 +01001836 if ((f=fopen(file,"r")) == NULL) {
1837 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001838 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001839 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001840
William Lallemandb2f07452015-05-12 14:27:13 +02001841next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001842 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001843 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001844 char *end;
1845 char *args[MAX_LINE_ARGS + 1];
1846 char *line = thisline;
1847
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001848 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001849 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1850 file, linenum, (missing_lf + 1));
1851 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001852 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001853 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001854 }
1855
Willy Tarreaubaaee002006-06-26 02:48:02 +02001856 linenum++;
1857
Willy Tarreau32234e72020-06-16 17:14:33 +02001858 if (fatal >= 50) {
1859 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1860 break;
1861 }
1862
Willy Tarreaubaaee002006-06-26 02:48:02 +02001863 end = line + strlen(line);
1864
William Lallemand64e84512015-05-12 14:25:37 +02001865 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001866 /* Check if we reached the limit and the last char is not \n.
1867 * Watch out for the last line without the terminating '\n'!
1868 */
William Lallemand64e84512015-05-12 14:25:37 +02001869 char *newline;
1870 int newlinesize = linesize * 2;
1871
1872 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1873 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001874 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1875 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001876 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001877 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001878 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001879 continue;
1880 }
1881
1882 readbytes = linesize - 1;
1883 linesize = newlinesize;
1884 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001885 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001886 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001887 }
1888
William Lallemand64e84512015-05-12 14:25:37 +02001889 readbytes = 0;
1890
Willy Tarreau08488f62020-06-26 17:24:54 +02001891 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001892 /* kill trailing LF */
1893 *(end - 1) = 0;
1894 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001895 else {
1896 /* mark this line as truncated */
1897 missing_lf = end - line;
1898 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001899
Willy Tarreaubaaee002006-06-26 02:48:02 +02001900 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001901 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001902 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001903
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001904 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001905 err_code |= cfg_parse_scope(file, linenum, line);
1906 goto next_line;
1907 }
1908
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001909 while (1) {
1910 uint32_t err;
1911 char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001912
Willy Tarreau61dd44b2020-06-25 07:35:42 +02001913 arg = MAX_LINE_ARGS + 1;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001914 outlen = outlinesize;
1915 err = parse_line(line, outline, &outlen, args, &arg,
1916 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001917 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1918 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001919
1920 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001921 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1922
1923 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1924 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001925 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001926 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001927 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001928 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001929
1930 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001931 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1932
1933 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1934 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001935 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001936 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001937 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001938 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001939
1940 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001941 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1942
1943 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1944 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001945 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001946 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001947 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001948 }
William Lallemandb2f07452015-05-12 14:27:13 +02001949
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001950 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001951 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1952
1953 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1954 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001955 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001956 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001957 goto next_line;
1958 }
William Lallemandb2f07452015-05-12 14:27:13 +02001959
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001960 if (err & PARSE_ERR_WRONG_EXPAND) {
1961 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1962
1963 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1964 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1965 err_code |= ERR_ALERT | ERR_FATAL;
1966 fatal++;
1967 goto next_line;
1968 }
1969
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001970 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1971 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin11a45032021-01-07 22:45:13 +05001972 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001973 if (outline == NULL) {
1974 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1975 file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001976 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001977 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001978 goto next_line;
William Lallemandb2f07452015-05-12 14:27:13 +02001979 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001980 /* try again */
1981 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001982 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001983
1984 if (err & PARSE_ERR_TOOMANY) {
1985 /* only check this *after* being sure the output is allocated */
1986 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1987 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1988 err_code |= ERR_ALERT | ERR_FATAL;
1989 fatal++;
1990 goto next_line;
1991 }
1992
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001993 /* everything's OK */
1994 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001995 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001996
1997 /* empty line */
1998 if (!**args)
1999 continue;
2000
Willy Tarreau3842f002009-06-14 11:39:52 +02002001 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002002 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02002003 char *tmp;
2004
Willy Tarreau3842f002009-06-14 11:39:52 +02002005 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002006 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002007 for (arg=0; *args[arg+1]; arg++)
2008 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002009 *tmp = '\0'; // fix the next arg to \0
2010 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002011 }
Willy Tarreau3842f002009-06-14 11:39:52 +02002012 else if (!strcmp(args[0], "default")) {
2013 kwm = KWM_DEF;
2014 for (arg=0; *args[arg+1]; arg++)
2015 args[arg] = args[arg+1]; // shift args after inversion
2016 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002017
William Dauchyec730982019-10-27 20:08:10 +01002018 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2019 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002020 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
2021 strcmp(args[0], "insecure-fork-wanted") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002022 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002023 "supported only for options, log, busy-polling, "
Willy Tarreaud96f1122019-12-03 07:07:36 +01002024 "set-dumpable, strict-limits, and insecure-fork-wanted.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002025 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002026 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002027 }
2028
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002029 /* detect section start */
2030 list_for_each_entry(ics, &sections, list) {
2031 if (strcmp(args[0], ics->section_name) == 0) {
2032 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002033 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002034 cs = ics;
2035 break;
2036 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002037 }
2038
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002039 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002040 int status;
2041
2042 status = pcs->post_section_parser();
2043 err_code |= status;
2044 if (status & ERR_FATAL)
2045 fatal++;
2046
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002047 if (err_code & ERR_ABORT)
2048 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002049 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002050 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002051
William Lallemandd2ff56d2017-10-16 11:06:50 +02002052 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002053 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002054 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002055 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002056 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002057 int status;
2058
2059 status = cs->section_parser(file, linenum, args, kwm);
2060 err_code |= status;
2061 if (status & ERR_FATAL)
2062 fatal++;
2063
William Lallemandd2ff56d2017-10-16 11:06:50 +02002064 if (err_code & ERR_ABORT)
2065 goto err;
2066 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002067 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002068
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002069 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002070 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2071 file, linenum, (missing_lf + 1));
2072 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002073 }
2074
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002075 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002076 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002077
2078err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002079 free(cfg_scope);
2080 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002081 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002082 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002083 free(outline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002084 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002085 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002086}
2087
Willy Tarreau64ab6072014-09-16 12:17:36 +02002088/* This function propagates processes from frontend <from> to backend <to> so
2089 * that it is always guaranteed that a backend pointed to by a frontend is
2090 * bound to all of its processes. After that, if the target is a "listen"
2091 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002092 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002093 * checked first to ensure that <to> is already bound to all processes of
2094 * <from>, there is no risk of looping and we ensure to follow the shortest
2095 * path to the destination.
2096 *
2097 * It is possible to set <to> to NULL for the first call so that the function
2098 * takes care of visiting the initial frontend in <from>.
2099 *
2100 * It is important to note that the function relies on the fact that all names
2101 * have already been resolved.
2102 */
2103void propagate_processes(struct proxy *from, struct proxy *to)
2104{
2105 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002106
2107 if (to) {
2108 /* check whether we need to go down */
2109 if (from->bind_proc &&
2110 (from->bind_proc & to->bind_proc) == from->bind_proc)
2111 return;
2112
2113 if (!from->bind_proc && !to->bind_proc)
2114 return;
2115
2116 to->bind_proc = from->bind_proc ?
2117 (to->bind_proc | from->bind_proc) : 0;
2118
2119 /* now propagate down */
2120 from = to;
2121 }
2122
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002123 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002124 return;
2125
Willy Tarreauc3914d42020-09-24 08:39:22 +02002126 if (from->disabled)
Willy Tarreauf6b70012014-12-18 14:00:43 +01002127 return;
2128
Willy Tarreau64ab6072014-09-16 12:17:36 +02002129 /* default_backend */
2130 if (from->defbe.be)
2131 propagate_processes(from, from->defbe.be);
2132
2133 /* use_backend */
2134 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002135 if (rule->dynamic)
2136 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002137 to = rule->be.backend;
2138 propagate_processes(from, to);
2139 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002140}
2141
Willy Tarreaubb925012009-07-23 13:36:36 +02002142/*
2143 * Returns the error code, 0 if OK, or any combination of :
2144 * - ERR_ABORT: must abort ASAP
2145 * - ERR_FATAL: we can continue parsing but not start the service
2146 * - ERR_WARN: a warning has been emitted
2147 * - ERR_ALERT: an alert has been emitted
2148 * Only the two first ones can stop processing, the two others are just
2149 * indicators.
2150 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002151int check_config_validity()
2152{
2153 int cfgerr = 0;
2154 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002155 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002156 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002157 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002158 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002159 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002160 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002161 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002162 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002163
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002164 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002165 /*
2166 * Now, check for the integrity of all that we have collected.
2167 */
2168
2169 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002170 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002171
Willy Tarreau193b8c62012-11-22 00:17:38 +01002172 if (!global.tune.max_http_hdr)
2173 global.tune.max_http_hdr = MAX_HTTP_HDR;
2174
2175 if (!global.tune.cookie_len)
2176 global.tune.cookie_len = CAPTURE_LEN;
2177
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002178 if (!global.tune.requri_len)
2179 global.tune.requri_len = REQURI_LEN;
2180
Willy Tarreau149ab772019-01-26 14:27:06 +01002181 if (!global.nbthread) {
2182 /* nbthread not set, thus automatic. In this case, and only if
2183 * running on a single process, we enable the same number of
2184 * threads as the number of CPUs the process is bound to. This
2185 * allows to easily control the number of threads using taskset.
2186 */
2187 global.nbthread = 1;
2188#if defined(USE_THREAD)
2189 if (global.nbproc == 1)
2190 global.nbthread = thread_cpus_enabled_at_boot;
2191 all_threads_mask = nbits(global.nbthread);
2192#endif
2193 }
2194
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002195 if (global.nbproc > 1 && global.nbthread > 1) {
2196 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2197 err_code |= ERR_ALERT | ERR_FATAL;
2198 goto out;
2199 }
2200
Willy Tarreaubafbe012017-11-24 17:34:44 +01002201 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002202
Willy Tarreaubafbe012017-11-24 17:34:44 +01002203 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002204
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002205 /* Post initialisation of the users and groups lists. */
2206 err_code = userlist_postinit();
2207 if (err_code != ERR_NONE)
2208 goto out;
2209
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002210 /* first, we will invert the proxy list order */
2211 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002212 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002213 struct proxy *next;
2214
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002215 next = proxies_list->next;
2216 proxies_list->next = curproxy;
2217 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002218 if (!next)
2219 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002220 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002221 }
2222
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002223 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002224 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002225 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002226 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002227 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002228 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002229 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002230 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002231
Willy Tarreau050536d2012-10-04 08:47:34 +02002232 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002233 /* proxy ID not set, use automatic numbering with first
2234 * spare entry starting with next_pxid.
2235 */
2236 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2237 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2238 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002239 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002240 next_pxid++;
2241
Willy Tarreau55ea7572007-06-17 19:56:27 +02002242
Willy Tarreauc3914d42020-09-24 08:39:22 +02002243 if (curproxy->disabled) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002244 /* ensure we don't keep listeners uselessly bound. We
2245 * can't disable their listeners yet (fdtab not
2246 * allocated yet) but let's skip them.
2247 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002248 if (curproxy->table) {
2249 free((void *)curproxy->table->peers.name);
Willy Tarreau02b092f2020-10-07 18:36:54 +02002250 curproxy->table->peers.name = NULL;
Dragan Dosen7d61a332019-05-07 14:16:18 +02002251 curproxy->table->peers.p = NULL;
2252 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002253 continue;
2254 }
2255
Willy Tarreau102df612014-05-07 23:56:38 +02002256 /* Check multi-process mode compatibility for the current proxy */
2257
2258 if (curproxy->bind_proc) {
2259 /* an explicit bind-process was specified, let's check how many
2260 * processes remain.
2261 */
David Carliere6c39412015-07-02 07:00:17 +00002262 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002263
Willy Tarreaua38a7172019-02-02 17:11:28 +01002264 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002265 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002266 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 +02002267 curproxy->bind_proc = 1;
2268 }
2269 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002270 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 +02002271 curproxy->bind_proc = 0;
2272 }
2273 }
2274
Willy Tarreau3d209582014-05-09 17:06:11 +02002275 /* check and reduce the bind-proc of each listener */
2276 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2277 unsigned long mask;
2278
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002279 /* HTTP frontends with "h2" as ALPN/NPN will work in
2280 * HTTP/2 and absolutely require buffers 16kB or larger.
2281 */
2282#ifdef USE_OPENSSL
2283 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2284#ifdef OPENSSL_NPN_NEGOTIATED
2285 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002286 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002287 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",
2288 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002289 cfgerr++;
2290 }
2291#endif
2292#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2293 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002294 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002295 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",
2296 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002297 cfgerr++;
2298 }
2299#endif
2300 } /* HTTP && bufsize < 16384 */
2301#endif
2302
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002303 /* detect and address thread affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002304 mask = thread_mask(bind_conf->settings.bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002305 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002306 unsigned long new_mask = 0;
2307
2308 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002309 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002310 mask >>= global.nbthread;
2311 }
2312
Willy Tarreaue26993c2020-09-03 07:18:55 +02002313 bind_conf->settings.bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002314 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",
2315 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2316 }
2317
2318 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002319 mask = proc_mask(bind_conf->settings.bind_proc) & proc_mask(curproxy->bind_proc);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002320 if (!(mask & all_proc_mask)) {
2321 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02002322 nbproc = my_popcountl(bind_conf->settings.bind_proc);
2323 bind_conf->settings.bind_proc = proc_mask(bind_conf->settings.bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002324
Willy Tarreaue26993c2020-09-03 07:18:55 +02002325 if (!bind_conf->settings.bind_proc && nbproc == 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002326 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",
2327 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002328 bind_conf->settings.bind_proc = mask & ~(mask - 1);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002329 }
Willy Tarreaue26993c2020-09-03 07:18:55 +02002330 else if (!bind_conf->settings.bind_proc && nbproc > 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002331 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",
2332 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002333 bind_conf->settings.bind_proc = 0;
Willy Tarreaua36b3242019-02-02 13:14:34 +01002334 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002335 }
2336 }
2337
Willy Tarreauff01a212009-03-15 13:46:16 +01002338 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01002339 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002340 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002341 break;
2342
2343 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002344 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002345 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002346
2347 case PR_MODE_CLI:
2348 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2349 break;
Emeric Brun54932b42020-07-07 09:43:24 +02002350 case PR_MODE_SYSLOG:
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002351 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02002352 case PR_MODES:
2353 /* should not happen, bug gcc warn missing switch statement */
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002354 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 +02002355 proxy_type_str(curproxy), curproxy->id);
2356 cfgerr++;
2357 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002358 }
2359
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002360 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002361 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2362 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002363 err_code |= ERR_WARN;
2364 }
2365
Willy Tarreau77e0dae2020-10-14 15:44:27 +02002366 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002367 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002368 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002369 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2370 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002371 cfgerr++;
2372 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002373#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002374 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002375 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2376 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002377 cfgerr++;
2378 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002379#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002380 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002381 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2382 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002383 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002384 }
2385 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002386 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002387 /* If no LB algo is set in a backend, and we're not in
2388 * transparent mode, dispatch mode nor proxy mode, we
2389 * want to use balance roundrobin by default.
2390 */
2391 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2392 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002393 }
2394 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002395
Willy Tarreau1620ec32011-08-06 17:05:02 +02002396 if (curproxy->options & PR_O_DISPATCH)
2397 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2398 else if (curproxy->options & PR_O_HTTP_PROXY)
2399 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2400 else if (curproxy->options & PR_O_TRANSP)
2401 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002402
Christopher Faulete5870d82020-04-15 11:32:03 +02002403 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2404 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2405 proxy_type_str(curproxy), curproxy->id);
2406 err_code |= ERR_WARN;
2407 }
2408
2409 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002410 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002411 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002412 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2413 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002414 err_code |= ERR_WARN;
2415 curproxy->options &= ~PR_O_DISABLE404;
2416 }
2417 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002418 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2419 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002420 err_code |= ERR_WARN;
2421 curproxy->options &= ~PR_O2_CHK_SNDST;
2422 }
Willy Tarreauef781042010-01-27 11:53:01 +01002423 }
2424
Simon Horman98637e52014-06-20 12:30:16 +09002425 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2426 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002427 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2428 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002429 cfgerr++;
2430 }
2431 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002432 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2433 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002434 cfgerr++;
2435 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002436 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2437 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2438 curproxy->id, "option external-check");
2439 err_code |= ERR_WARN;
2440 }
Simon Horman98637e52014-06-20 12:30:16 +09002441 }
2442
Simon Horman64e34162015-02-06 11:11:57 +09002443 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002444 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002445 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2446 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2447 "'email-alert myhostname', or 'email-alert to' "
2448 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2449 "to be present).\n",
2450 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002451 err_code |= ERR_WARN;
2452 free_email_alert(curproxy);
2453 }
2454 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002455 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002456 }
2457
Simon Horman98637e52014-06-20 12:30:16 +09002458 if (curproxy->check_command) {
2459 int clear = 0;
2460 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002461 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2462 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002463 err_code |= ERR_WARN;
2464 clear = 1;
2465 }
2466 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002467 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2468 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002469 cfgerr++;
2470 }
2471 if (clear) {
2472 free(curproxy->check_command);
2473 curproxy->check_command = NULL;
2474 }
2475 }
2476
2477 if (curproxy->check_path) {
2478 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002479 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2480 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002481 err_code |= ERR_WARN;
2482 free(curproxy->check_path);
2483 curproxy->check_path = NULL;
2484 }
2485 }
2486
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002487 /* if a default backend was specified, let's find it */
2488 if (curproxy->defbe.name) {
2489 struct proxy *target;
2490
Willy Tarreauafb39922015-05-26 12:04:09 +02002491 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002492 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002493 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2494 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002495 cfgerr++;
2496 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002497 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2498 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002499 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002500 } else if (target->mode != curproxy->mode &&
2501 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2502
Christopher Faulet767a84b2017-11-24 16:50:31 +01002503 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2504 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2505 curproxy->conf.file, curproxy->conf.line,
2506 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2507 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002508 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002509 } else {
2510 free(curproxy->defbe.name);
2511 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002512 /* Emit a warning if this proxy also has some servers */
2513 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002514 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2515 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002516 err_code |= ERR_WARN;
2517 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002518 }
2519 }
2520
Willy Tarreau55ea7572007-06-17 19:56:27 +02002521 /* find the target proxy for 'use_backend' rules */
2522 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002523 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002524 struct logformat_node *node;
2525 char *pxname;
2526
2527 /* Try to parse the string as a log format expression. If the result
2528 * of the parsing is only one entry containing a simple string, then
2529 * it's a standard string corresponding to a static rule, thus the
2530 * parsing is cancelled and be.name is restored to be resolved.
2531 */
2532 pxname = rule->be.name;
2533 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002534 curproxy->conf.args.ctx = ARGC_UBK;
2535 curproxy->conf.args.file = rule->file;
2536 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002537 err = NULL;
2538 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002539 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2540 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002541 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002542 cfgerr++;
2543 continue;
2544 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002545 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2546
2547 if (!LIST_ISEMPTY(&rule->be.expr)) {
2548 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2549 rule->dynamic = 1;
2550 free(pxname);
2551 continue;
2552 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002553 /* Only one element in the list, a simple string: free the expression and
2554 * fall back to static rule
2555 */
2556 LIST_DEL(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002557 free(node->arg);
2558 free(node);
2559 }
2560
2561 rule->dynamic = 0;
2562 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002563
Willy Tarreauafb39922015-05-26 12:04:09 +02002564 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002565 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002566 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2567 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002568 cfgerr++;
2569 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002570 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2571 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002572 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002573 } else if (target->mode != curproxy->mode &&
2574 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2575
Christopher Faulet767a84b2017-11-24 16:50:31 +01002576 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2577 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2578 curproxy->conf.file, curproxy->conf.line,
2579 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2580 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002581 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002582 } else {
2583 free((void *)rule->be.name);
2584 rule->be.backend = target;
2585 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002586 }
2587
Willy Tarreau64ab6072014-09-16 12:17:36 +02002588 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002589 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002590 struct server *target;
2591 struct logformat_node *node;
2592 char *server_name;
2593
2594 /* We try to parse the string as a log format expression. If the result of the parsing
2595 * is only one entry containing a single string, then it's a standard string corresponding
2596 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2597 */
2598 server_name = srule->srv.name;
2599 LIST_INIT(&srule->expr);
2600 curproxy->conf.args.ctx = ARGC_USRV;
2601 err = NULL;
2602 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2603 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2604 srule->file, srule->line, server_name, err);
2605 free(err);
2606 cfgerr++;
2607 continue;
2608 }
2609 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2610
2611 if (!LIST_ISEMPTY(&srule->expr)) {
2612 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2613 srule->dynamic = 1;
2614 free(server_name);
2615 continue;
2616 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002617 /* Only one element in the list, a simple string: free the expression and
2618 * fall back to static rule
2619 */
2620 LIST_DEL(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002621 free(node->arg);
2622 free(node);
2623 }
2624
2625 srule->dynamic = 0;
2626 srule->srv.name = server_name;
2627 target = findserver(curproxy, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002628
2629 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002630 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2631 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002632 cfgerr++;
2633 continue;
2634 }
2635 free((void *)srule->srv.name);
2636 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002637 }
2638
Emeric Brunb982a3d2010-01-04 15:45:53 +01002639 /* find the target table for 'stick' rules */
2640 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002641 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002642
Emeric Brun1d33b292010-01-04 15:47:17 +01002643 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2644 if (mrule->flags & STK_IS_STORE)
2645 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2646
Emeric Brunb982a3d2010-01-04 15:45:53 +01002647 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002648 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002649 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002650 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002651
2652 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002653 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002654 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002655 cfgerr++;
2656 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002657 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002658 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2659 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002660 cfgerr++;
2661 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002662 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002663 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2664 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002665 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002666 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002667 else {
2668 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002669 mrule->table.t = target;
2670 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002671 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002672 if (!in_proxies_list(target->proxies_list, curproxy)) {
2673 curproxy->next_stkt_ref = target->proxies_list;
2674 target->proxies_list = curproxy;
2675 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002676 }
2677 }
2678
2679 /* find the target table for 'store response' rules */
2680 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002681 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002682
Emeric Brun1d33b292010-01-04 15:47:17 +01002683 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2684
Emeric Brunb982a3d2010-01-04 15:45:53 +01002685 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002686 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002687 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002688 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002689
2690 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002691 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002692 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002693 cfgerr++;
2694 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002695 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002696 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2697 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002698 cfgerr++;
2699 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002700 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002701 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2702 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002703 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002704 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002705 else {
2706 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002707 mrule->table.t = target;
2708 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002709 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002710 if (!in_proxies_list(target->proxies_list, curproxy)) {
2711 curproxy->next_stkt_ref = target->proxies_list;
2712 target->proxies_list = curproxy;
2713 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002714 }
2715 }
2716
Christopher Faulete4e830d2017-09-18 14:51:41 +02002717 /* check validity for 'tcp-request' layer 4 rules */
2718 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2719 err = NULL;
2720 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002721 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002722 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002723 cfgerr++;
2724 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002725 }
2726
Christopher Faulete4e830d2017-09-18 14:51:41 +02002727 /* check validity for 'tcp-request' layer 5 rules */
2728 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2729 err = NULL;
2730 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002731 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002732 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002733 cfgerr++;
2734 }
2735 }
2736
Christopher Faulete4e830d2017-09-18 14:51:41 +02002737 /* check validity for 'tcp-request' layer 6 rules */
2738 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2739 err = NULL;
2740 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002741 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002742 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002743 cfgerr++;
2744 }
2745 }
2746
Christopher Faulete4e830d2017-09-18 14:51:41 +02002747 /* check validity for 'http-request' layer 7 rules */
2748 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2749 err = NULL;
2750 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002751 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002752 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002753 cfgerr++;
2754 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002755 }
2756
Christopher Faulete4e830d2017-09-18 14:51:41 +02002757 /* check validity for 'http-response' layer 7 rules */
2758 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2759 err = NULL;
2760 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002761 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002762 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002763 cfgerr++;
2764 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002765 }
2766
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002767 /* check validity for 'http-after-response' layer 7 rules */
2768 list_for_each_entry(arule, &curproxy->http_after_res_rules, list) {
2769 err = NULL;
2770 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
2771 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
2772 free(err);
2773 cfgerr++;
2774 }
2775 }
2776
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002777 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002778 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002779
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002780 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002781 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
2782 free((void *)curproxy->table->peers.name);
2783 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002784 break;
2785 }
2786 }
2787
2788 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002789 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002790 curproxy->id, curproxy->table->peers.name);
2791 free((void *)curproxy->table->peers.name);
2792 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002793 cfgerr++;
2794 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02002795 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002796 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002797 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002798 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002799 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002800 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2801 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002802 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002803 cfgerr++;
2804 }
2805 }
2806
Simon Horman9dc49962015-01-30 11:22:59 +09002807
2808 if (curproxy->email_alert.mailers.name) {
2809 struct mailers *curmailers = mailers;
2810
2811 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002812 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002813 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002814 }
Simon Horman9dc49962015-01-30 11:22:59 +09002815 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002816 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2817 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002818 free_email_alert(curproxy);
2819 cfgerr++;
2820 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002821 else {
2822 err = NULL;
2823 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002824 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002825 free(err);
2826 cfgerr++;
2827 }
2828 }
Simon Horman9dc49962015-01-30 11:22:59 +09002829 }
2830
Willy Tarreau6199db22021-02-12 11:49:25 +01002831 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002832 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002833 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002834 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2835 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002836 cfgerr++;
2837 goto out_uri_auth_compat;
2838 }
2839
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002840 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau6199db22021-02-12 11:49:25 +01002841 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002842 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002843 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002844 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002845 int i = 0;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002846 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2847 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002848
2849 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002850 uri_auth_compat_req[i++] = "realm";
2851 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2852 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002853
Willy Tarreau95fa4692010-02-01 13:05:50 +01002854 uri_auth_compat_req[i++] = "unless";
2855 uri_auth_compat_req[i++] = "{";
2856 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2857 uri_auth_compat_req[i++] = "}";
2858 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002859
Willy Tarreauff011f22011-01-06 17:51:27 +01002860 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2861 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002862 cfgerr++;
2863 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002864 }
2865
Willy Tarreauff011f22011-01-06 17:51:27 +01002866 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002867
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002868 if (curproxy->uri_auth->auth_realm) {
2869 free(curproxy->uri_auth->auth_realm);
2870 curproxy->uri_auth->auth_realm = NULL;
2871 }
Willy Tarreau6199db22021-02-12 11:49:25 +01002872 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002873 }
2874out_uri_auth_compat:
2875
Dragan Dosen43885c72015-10-01 13:18:13 +02002876 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002877 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002878 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2879 if (!curproxy->conf.logformat_sd_string) {
2880 /* set the default logformat_sd_string */
2881 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2882 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002883 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002884 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002885 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002886
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002887 /* compile the log format */
2888 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002889 if (curproxy->conf.logformat_string != default_http_log_format &&
2890 curproxy->conf.logformat_string != default_tcp_log_format &&
2891 curproxy->conf.logformat_string != clf_http_log_format)
2892 free(curproxy->conf.logformat_string);
2893 curproxy->conf.logformat_string = NULL;
2894 free(curproxy->conf.lfs_file);
2895 curproxy->conf.lfs_file = NULL;
2896 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002897
2898 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2899 free(curproxy->conf.logformat_sd_string);
2900 curproxy->conf.logformat_sd_string = NULL;
2901 free(curproxy->conf.lfsd_file);
2902 curproxy->conf.lfsd_file = NULL;
2903 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002904 }
2905
Willy Tarreau62a61232013-04-12 18:13:46 +02002906 if (curproxy->conf.logformat_string) {
2907 curproxy->conf.args.ctx = ARGC_LOG;
2908 curproxy->conf.args.file = curproxy->conf.lfs_file;
2909 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002910 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002911 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
2912 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002913 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002914 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
2915 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002916 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002917 cfgerr++;
2918 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002919 curproxy->conf.args.file = NULL;
2920 curproxy->conf.args.line = 0;
2921 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002922
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002923 if (curproxy->conf.logformat_sd_string) {
2924 curproxy->conf.args.ctx = ARGC_LOGSD;
2925 curproxy->conf.args.file = curproxy->conf.lfsd_file;
2926 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002927 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002928 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
2929 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002930 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002931 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2932 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002933 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002934 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002935 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002936 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2937 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002938 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002939 cfgerr++;
2940 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002941 curproxy->conf.args.file = NULL;
2942 curproxy->conf.args.line = 0;
2943 }
2944
Willy Tarreau62a61232013-04-12 18:13:46 +02002945 if (curproxy->conf.uniqueid_format_string) {
2946 curproxy->conf.args.ctx = ARGC_UIF;
2947 curproxy->conf.args.file = curproxy->conf.uif_file;
2948 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002949 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002950 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
2951 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES,
2952 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR
2953 : SMP_VAL_BE_HRQ_HDR,
2954 &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002955 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
2956 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002957 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002958 cfgerr++;
2959 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002960 curproxy->conf.args.file = NULL;
2961 curproxy->conf.args.line = 0;
2962 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002963
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002964 /* only now we can check if some args remain unresolved.
2965 * This must be done after the users and groups resolution.
2966 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002967 cfgerr += smp_resolve_args(curproxy);
2968 if (!cfgerr)
2969 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002970
Willy Tarreau2738a142006-07-08 17:28:09 +02002971 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002972 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02002973 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02002974 (!curproxy->timeout.connect ||
2975 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002976 ha_warning("config : missing timeouts for %s '%s'.\n"
2977 " | While not properly invalid, you will certainly encounter various problems\n"
2978 " | with such a configuration. To fix this, please ensure that all following\n"
2979 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
2980 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002981 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02002982 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02002983
Willy Tarreau1fa31262007-12-03 00:36:16 +01002984 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
2985 * We must still support older configurations, so let's find out whether those
2986 * parameters have been set or must be copied from contimeouts.
2987 */
Willy Tarreau759b7a52021-02-12 11:14:35 +01002988 if (!curproxy->timeout.tarpit)
2989 curproxy->timeout.tarpit = curproxy->timeout.connect;
2990 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
2991 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002992
Christopher Faulete5870d82020-04-15 11:32:03 +02002993 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002994 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
2995 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02002996 err_code |= ERR_WARN;
2997 }
2998
Willy Tarreau193b8c62012-11-22 00:17:38 +01002999 /* ensure that cookie capture length is not too large */
3000 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003001 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3002 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003003 err_code |= ERR_WARN;
3004 curproxy->capture_len = global.tune.cookie_len - 1;
3005 }
3006
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003007 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003008 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003009 curproxy->req_cap_pool = create_pool("ptrcap",
3010 curproxy->nb_req_cap * sizeof(char *),
3011 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003012 }
3013
3014 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003015 curproxy->rsp_cap_pool = create_pool("ptrcap",
3016 curproxy->nb_rsp_cap * sizeof(char *),
3017 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003018 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003019
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003020 switch (curproxy->load_server_state_from_file) {
3021 case PR_SRV_STATE_FILE_UNSPEC:
3022 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3023 break;
3024 case PR_SRV_STATE_FILE_GLOBAL:
3025 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003026 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",
3027 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003028 err_code |= ERR_WARN;
3029 }
3030 break;
3031 }
3032
Willy Tarreaubaaee002006-06-26 02:48:02 +02003033 /* first, we will invert the servers list order */
3034 newsrv = NULL;
3035 while (curproxy->srv) {
3036 struct server *next;
3037
3038 next = curproxy->srv->next;
3039 curproxy->srv->next = newsrv;
3040 newsrv = curproxy->srv;
3041 if (!next)
3042 break;
3043 curproxy->srv = next;
3044 }
3045
Willy Tarreau17edc812014-01-03 12:14:34 +01003046 /* Check that no server name conflicts. This causes trouble in the stats.
3047 * We only emit a warning for the first conflict affecting each server,
3048 * in order to avoid combinatory explosion if all servers have the same
3049 * name. We do that only for servers which do not have an explicit ID,
3050 * because these IDs were made also for distinguishing them and we don't
3051 * want to annoy people who correctly manage them.
3052 */
3053 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3054 struct server *other_srv;
3055
3056 if (newsrv->puid)
3057 continue;
3058
3059 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3060 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003061 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 +01003062 newsrv->conf.file, newsrv->conf.line,
3063 proxy_type_str(curproxy), curproxy->id,
3064 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003065 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003066 break;
3067 }
3068 }
3069 }
3070
Willy Tarreaudd701652010-05-25 23:03:02 +02003071 /* assign automatic UIDs to servers which don't have one yet */
3072 next_id = 1;
3073 newsrv = curproxy->srv;
3074 while (newsrv != NULL) {
3075 if (!newsrv->puid) {
3076 /* server ID not set, use automatic numbering with first
3077 * spare entry starting with next_svid.
3078 */
3079 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3080 newsrv->conf.id.key = newsrv->puid = next_id;
3081 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003082 newsrv->conf.name.key = newsrv->id;
3083 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003084 }
3085 next_id++;
3086 newsrv = newsrv->next;
3087 }
3088
Willy Tarreau20697042007-11-15 23:26:18 +01003089 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003090 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003091
Willy Tarreau62c3be22012-01-20 13:12:32 +01003092 /*
3093 * If this server supports a maxconn parameter, it needs a dedicated
3094 * tasks to fill the emptied slots when a connection leaves.
3095 * Also, resolve deferred tracking dependency if needed.
3096 */
3097 newsrv = curproxy->srv;
3098 while (newsrv != NULL) {
3099 if (newsrv->minconn > newsrv->maxconn) {
3100 /* Only 'minconn' was specified, or it was higher than or equal
3101 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3102 * this will avoid further useless expensive computations.
3103 */
3104 newsrv->maxconn = newsrv->minconn;
3105 } else if (newsrv->maxconn && !newsrv->minconn) {
3106 /* minconn was not specified, so we set it to maxconn */
3107 newsrv->minconn = newsrv->maxconn;
3108 }
3109
Willy Tarreau17d45382016-12-22 21:16:08 +01003110 /* this will also properly set the transport layer for prod and checks */
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003111 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 || (newsrv->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003112 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3113 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3114 }
Emeric Brun94324a42012-10-11 14:00:19 +02003115
Willy Tarreau034c88c2017-01-23 23:36:45 +01003116 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3117 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3118 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3119 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",
3120 newsrv->conf.file, newsrv->conf.line,
3121 proxy_type_str(curproxy), curproxy->id,
3122 newsrv->id);
3123
Willy Tarreau62c3be22012-01-20 13:12:32 +01003124 if (newsrv->trackit) {
3125 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003126 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003127 char *pname, *sname;
3128
3129 pname = newsrv->trackit;
3130 sname = strrchr(pname, '/');
3131
3132 if (sname)
3133 *sname++ = '\0';
3134 else {
3135 sname = pname;
3136 pname = NULL;
3137 }
3138
3139 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003140 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003141 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003142 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3143 proxy_type_str(curproxy), curproxy->id,
3144 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003145 cfgerr++;
3146 goto next_srv;
3147 }
3148 } else
3149 px = curproxy;
3150
3151 srv = findserver(px, sname);
3152 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003153 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3154 proxy_type_str(curproxy), curproxy->id,
3155 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003156 cfgerr++;
3157 goto next_srv;
3158 }
3159
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003160 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003161 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3162 "tracking as it does not have any check nor agent enabled.\n",
3163 proxy_type_str(curproxy), curproxy->id,
3164 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003165 cfgerr++;
3166 goto next_srv;
3167 }
3168
3169 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3170
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003171 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003172 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3173 "belongs to a tracking chain looping back to %s/%s.\n",
3174 proxy_type_str(curproxy), curproxy->id,
3175 newsrv->id, px->id, srv->id, px->id,
3176 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003177 cfgerr++;
3178 goto next_srv;
3179 }
3180
3181 if (curproxy != px &&
3182 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003183 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3184 "tracking: disable-on-404 option inconsistency.\n",
3185 proxy_type_str(curproxy), curproxy->id,
3186 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003187 cfgerr++;
3188 goto next_srv;
3189 }
3190
Willy Tarreau62c3be22012-01-20 13:12:32 +01003191 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003192 newsrv->tracknext = srv->trackers;
3193 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003194
3195 free(newsrv->trackit);
3196 newsrv->trackit = NULL;
3197 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003198
Willy Tarreau62c3be22012-01-20 13:12:32 +01003199 next_srv:
3200 newsrv = newsrv->next;
3201 }
3202
Olivier Houchard4e694042017-03-14 20:01:29 +01003203 /*
3204 * Try to generate dynamic cookies for servers now.
3205 * It couldn't be done earlier, since at the time we parsed
3206 * the server line, we may not have known yet that we
3207 * should use dynamic cookies, or the secret key may not
3208 * have been provided yet.
3209 */
3210 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3211 newsrv = curproxy->srv;
3212 while (newsrv != NULL) {
3213 srv_set_dyncookie(newsrv);
3214 newsrv = newsrv->next;
3215 }
3216
3217 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003218 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003219 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003220 */
3221
3222 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3223 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3224 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003225 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3226 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3227 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003228 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3229 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3230 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003231 } else {
3232 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3233 fwrr_init_server_groups(curproxy);
3234 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003235 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003236
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003237 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003238 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3239 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3240 fwlc_init_server_tree(curproxy);
3241 } else {
3242 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3243 fas_init_server_tree(curproxy);
3244 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003245 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003246
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003247 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003248 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3249 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3250 chash_init_server_tree(curproxy);
3251 } else {
3252 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3253 init_server_map(curproxy);
3254 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003255 break;
3256 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003257 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003258
3259 if (curproxy->options & PR_O_LOGASAP)
3260 curproxy->to_log &= ~LW_BYTES;
3261
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003262 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003263 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3264 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003265 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3266 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003267 err_code |= ERR_WARN;
3268 }
3269
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003270 if (curproxy->mode != PR_MODE_HTTP) {
3271 int optnum;
3272
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003273 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003274 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3275 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003276 err_code |= ERR_WARN;
3277 curproxy->uri_auth = NULL;
3278 }
3279
Willy Tarreaude7dc882017-03-10 11:49:21 +01003280 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003281 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3282 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003283 err_code |= ERR_WARN;
3284 }
3285
3286 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003287 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3288 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003289 err_code |= ERR_WARN;
3290 }
3291
3292 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003293 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3294 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003295 err_code |= ERR_WARN;
3296 }
3297
Willy Tarreaude7dc882017-03-10 11:49:21 +01003298 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003299 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3300 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003301 err_code |= ERR_WARN;
3302 }
3303
Willy Tarreau87cf5142011-08-19 22:57:24 +02003304 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003305 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3306 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003307 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003308 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003309 }
3310
3311 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003312 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3313 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003314 err_code |= ERR_WARN;
3315 curproxy->options &= ~PR_O_ORGTO;
3316 }
3317
3318 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3319 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3320 (curproxy->cap & cfg_opts[optnum].cap) &&
3321 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003322 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3323 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003324 err_code |= ERR_WARN;
3325 curproxy->options &= ~cfg_opts[optnum].val;
3326 }
3327 }
3328
3329 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3330 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3331 (curproxy->cap & cfg_opts2[optnum].cap) &&
3332 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003333 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3334 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003335 err_code |= ERR_WARN;
3336 curproxy->options2 &= ~cfg_opts2[optnum].val;
3337 }
3338 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003339
Willy Tarreau29fbe512015-08-20 19:35:14 +02003340#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003341 if (curproxy->conn_src.bind_hdr_occ) {
3342 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003343 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3344 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003345 err_code |= ERR_WARN;
3346 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003347#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003348 }
3349
Willy Tarreaubaaee002006-06-26 02:48:02 +02003350 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003351 * ensure that we're not cross-dressing a TCP server into HTTP.
3352 */
3353 newsrv = curproxy->srv;
3354 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003355 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003356 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3357 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003358 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003359 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003360
Willy Tarreau0cec3312011-10-31 13:49:26 +01003361 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003362 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3363 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003364 err_code |= ERR_WARN;
3365 }
3366
Willy Tarreauc93cd162014-05-13 15:54:22 +02003367 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003368 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3369 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003370 err_code |= ERR_WARN;
3371 }
3372
Willy Tarreau29fbe512015-08-20 19:35:14 +02003373#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003374 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3375 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003376 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3377 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003378 err_code |= ERR_WARN;
3379 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003380#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003381
Willy Tarreau46deab62018-04-28 07:18:15 +02003382 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3383 curproxy->options &= ~PR_O_REUSE_MASK;
3384
Willy Tarreau21d2af32008-02-14 20:25:24 +01003385 newsrv = newsrv->next;
3386 }
3387
Christopher Fauletd7c91962015-04-30 11:48:27 +02003388 /* Check filter configuration, if any */
3389 cfgerr += flt_check(curproxy);
3390
Willy Tarreauc1a21672009-08-16 22:37:44 +02003391 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003392 if (!curproxy->accept)
3393 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003394
Willy Tarreauc1a21672009-08-16 22:37:44 +02003395 if (curproxy->tcp_req.inspect_delay ||
3396 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003397 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003398
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003399 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003400 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003401 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003402 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003403
William Lallemandcf62f7e2018-10-26 14:47:40 +02003404 if (curproxy->mode == PR_MODE_CLI) {
3405 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3406 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3407 }
3408
Willy Tarreauc1a21672009-08-16 22:37:44 +02003409 /* both TCP and HTTP must check switching rules */
3410 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003411
3412 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003413 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003414 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3415 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 +01003416 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003417 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3418 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003419 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003420 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003421 }
3422
3423 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003424 if (curproxy->tcp_req.inspect_delay ||
3425 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3426 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3427
Emeric Brun97679e72010-09-23 17:56:44 +02003428 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3429 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3430
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003431 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003432 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003433 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003434 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003435
3436 /* If the backend does requires RDP cookie persistence, we have to
3437 * enable the corresponding analyser.
3438 */
3439 if (curproxy->options2 & PR_O2_RDPC_PRST)
3440 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003441
3442 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003443 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003444 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3445 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 +01003446 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003447 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3448 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003449 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003450 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003451 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003452
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003453 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003454 * attached to the current proxy */
3455 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3456 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003457 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003458
3459 if (!bind_conf->mux_proto)
3460 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003461
3462 /* it is possible that an incorrect mux was referenced
3463 * due to the proxy's mode not being taken into account
3464 * on first pass. Let's adjust it now.
3465 */
3466 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3467
3468 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003469 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3470 proxy_type_str(curproxy), curproxy->id,
3471 (int)bind_conf->mux_proto->token.len,
3472 bind_conf->mux_proto->token.ptr,
3473 bind_conf->arg, bind_conf->file, bind_conf->line);
3474 cfgerr++;
3475 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003476
3477 /* update the mux */
3478 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003479 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003480 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3481 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003482 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003483
3484 if (!newsrv->mux_proto)
3485 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003486
3487 /* it is possible that an incorrect mux was referenced
3488 * due to the proxy's mode not being taken into account
3489 * on first pass. Let's adjust it now.
3490 */
3491 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3492
3493 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003494 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3495 proxy_type_str(curproxy), curproxy->id,
3496 (int)newsrv->mux_proto->token.len,
3497 newsrv->mux_proto->token.ptr,
3498 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3499 cfgerr++;
3500 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003501
3502 /* update the mux */
3503 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003504 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003505
3506 /* initialize idle conns lists */
3507 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3508 int i;
3509
Willy Tarreauad37c7a2020-07-17 14:18:36 +02003510 newsrv->available_conns = calloc(global.nbthread, sizeof(*newsrv->available_conns));
Willy Tarreau835daa12019-02-07 14:46:29 +01003511
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003512 if (!newsrv->available_conns) {
Willy Tarreau835daa12019-02-07 14:46:29 +01003513 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003514 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau835daa12019-02-07 14:46:29 +01003515 cfgerr++;
3516 continue;
3517 }
3518
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003519 for (i = 0; i < global.nbthread; i++)
3520 LIST_INIT(&newsrv->available_conns[i]);
Willy Tarreau980855b2019-02-07 14:59:29 +01003521
3522 if (newsrv->max_idle_conns != 0) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003523 if (idle_conn_task == NULL) {
3524 idle_conn_task = task_new(MAX_THREADS_MASK);
3525 if (!idle_conn_task)
3526 goto err;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003527
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003528 idle_conn_task->process = srv_cleanup_idle_connections;
3529 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003530
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003531 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003532 idle_conns[i].cleanup_task = task_new(1UL << i);
3533 if (!idle_conns[i].cleanup_task)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003534 goto err;
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003535 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_connections;
3536 idle_conns[i].cleanup_task->context = NULL;
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003537 HA_SPIN_INIT(&idle_conns[i].takeover_lock);
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003538 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003539 }
3540 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003541
Willy Tarreau9b9c1742020-07-17 15:04:53 +02003542 newsrv->idle_conns = calloc((unsigned short)global.nbthread, sizeof(*newsrv->idle_conns));
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003543 if (!newsrv->idle_conns) {
3544 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3545 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3546 cfgerr++;
3547 continue;
3548 }
3549
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003550 for (i = 0; i < global.nbthread; i++)
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003551 MT_LIST_INIT(&newsrv->idle_conns[i]);
3552
Willy Tarreauad37c7a2020-07-17 14:18:36 +02003553 newsrv->safe_conns = calloc(global.nbthread, sizeof(*newsrv->safe_conns));
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003554 if (!newsrv->safe_conns) {
3555 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3556 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3557 cfgerr++;
3558 continue;
3559 }
3560
3561 for (i = 0; i < global.nbthread; i++)
3562 MT_LIST_INIT(&newsrv->safe_conns[i]);
3563
Tim Duesterhusb53dd032020-09-12 20:26:42 +02003564 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
Olivier Houchardf1314812019-02-18 16:41:17 +01003565 if (!newsrv->curr_idle_thr)
3566 goto err;
Willy Tarreau980855b2019-02-07 14:59:29 +01003567 continue;
3568 err:
3569 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3570 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3571 cfgerr++;
3572 continue;
3573 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003574 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003575 }
3576
3577 /***********************************************************/
3578 /* At this point, target names have already been resolved. */
3579 /***********************************************************/
3580
3581 /* Check multi-process mode compatibility */
3582
3583 if (global.nbproc > 1 && global.stats_fe) {
3584 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3585 unsigned long mask;
3586
Willy Tarreau6daac192019-02-02 17:39:53 +01003587 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02003588 mask &= proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003589
3590 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003591 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003592 break;
3593 }
3594 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003595 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 +02003596 }
3597 }
3598
3599 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003600 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003601 if (curproxy->bind_proc)
3602 continue;
3603
3604 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3605 unsigned long mask;
3606
Willy Tarreaue26993c2020-09-03 07:18:55 +02003607 mask = proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003608 curproxy->bind_proc |= mask;
3609 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003610 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003611 }
3612
3613 if (global.stats_fe) {
3614 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3615 unsigned long mask;
3616
Willy Tarreaue26993c2020-09-03 07:18:55 +02003617 mask = bind_conf->settings.bind_proc ? bind_conf->settings.bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003618 global.stats_fe->bind_proc |= mask;
3619 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003620 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003621 }
3622
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003623 /* propagate bindings from frontends to backends. Don't do it if there
3624 * are any fatal errors as we must not call it with unresolved proxies.
3625 */
3626 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003627 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003628 if (curproxy->cap & PR_CAP_FE)
3629 propagate_processes(curproxy, NULL);
3630 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003631 }
3632
3633 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003634 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3635 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003636
3637 /*******************************************************/
3638 /* At this step, all proxies have a non-null bind_proc */
3639 /*******************************************************/
3640
3641 /* perform the final checks before creating tasks */
3642
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003643 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003644 struct listener *listener;
3645 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003646
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003647 /* Configure SSL for each bind line.
3648 * Note: if configuration fails at some point, the ->ctx member
3649 * remains NULL so that listeners can later detach.
3650 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003651 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003652 if (bind_conf->xprt->prepare_bind_conf &&
3653 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003654 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003655 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003656
Willy Tarreaue6b98942007-10-29 01:09:36 +01003657 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003658 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003659 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003660 int nbproc;
3661
3662 nbproc = my_popcountl(curproxy->bind_proc &
Willy Tarreaue26993c2020-09-03 07:18:55 +02003663 (listener->bind_conf->settings.bind_proc ? listener->bind_conf->settings.bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003664 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003665
3666 if (!nbproc) /* no intersection between listener and frontend */
3667 nbproc = 1;
3668
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003669 if (!listener->luid) {
3670 /* listener ID not set, use automatic numbering with first
3671 * spare entry starting with next_luid.
3672 */
3673 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3674 listener->conf.id.key = listener->luid = next_id;
3675 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003676 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003677 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003678
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003679 /* enable separate counters */
3680 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003681 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003682 if (!listener->name)
3683 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003684 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003685
Willy Tarreaue6b98942007-10-29 01:09:36 +01003686 if (curproxy->options & PR_O_TCP_NOLING)
3687 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003688 if (!listener->maxaccept)
Willy Tarreau8fa7f222021-02-19 15:50:27 +01003689 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau16a21472012-11-19 12:39:59 +01003690
3691 /* we want to have an optimal behaviour on single process mode to
3692 * maximize the work at once, but in multi-process we want to keep
3693 * some fairness between processes, so we target half of the max
3694 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003695 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003696 * used to disable the limit.
3697 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003698 if (listener->maxaccept > 0 && nbproc > 1) {
3699 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003700 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3701 }
3702
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003703 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003704 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003705 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003706
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003707 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003708 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003709
Willy Tarreau620408f2016-10-21 16:37:51 +02003710 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3711 listener->options |= LI_O_TCP_L5_RULES;
3712
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003713 /* smart accept mode is automatic in HTTP mode */
3714 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003715 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003716 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3717 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003718 }
3719
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003720 /* Release unused SSL configs */
3721 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003722 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3723 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003724 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003725
Willy Tarreaua38a7172019-02-02 17:11:28 +01003726 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003727 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003728 int count, maxproc = 0;
3729
3730 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreaue26993c2020-09-03 07:18:55 +02003731 count = my_popcountl(bind_conf->settings.bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003732 if (count > maxproc)
3733 maxproc = count;
3734 }
3735 /* backends have 0, frontends have 1 or more */
3736 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003737 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3738 " limited to process assigned to the current request.\n",
3739 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003740
Willy Tarreau102df612014-05-07 23:56:38 +02003741 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003742 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3743 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003744 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003745 }
Willy Tarreau102df612014-05-07 23:56:38 +02003746 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003747 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3748 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003749 }
3750 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003751
3752 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003753 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003754 if (curproxy->task) {
3755 curproxy->task->context = curproxy;
3756 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003757 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003758 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3759 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003760 cfgerr++;
3761 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003762 }
3763
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003764 /*
3765 * Recount currently required checks.
3766 */
3767
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003768 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003769 int optnum;
3770
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003771 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3772 if (curproxy->options & cfg_opts[optnum].val)
3773 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003774
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003775 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3776 if (curproxy->options2 & cfg_opts2[optnum].val)
3777 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003778 }
3779
Willy Tarreau0fca4832015-05-01 19:12:05 +02003780 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003781 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003782 if (curproxy->table && curproxy->table->peers.p)
3783 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003784
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003785 /* compute the required process bindings for the peers from <stktables_list>
3786 * for all the stick-tables, the ones coming with "peers" sections included.
3787 */
3788 for (t = stktables_list; t; t = t->next) {
3789 struct proxy *p;
3790
3791 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3792 if (t->peers.p && t->peers.p->peers_fe) {
3793 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3794 }
3795 }
3796 }
3797
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003798 if (cfg_peers) {
3799 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003800 struct peer *p, *pb;
3801
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003802 /* In the case the peers frontend was not initialized by a
3803 stick-table used in the configuration, set its bind_proc
3804 by default to the first process. */
3805 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003806 if (curpeers->peers_fe) {
3807 if (curpeers->peers_fe->bind_proc == 0)
3808 curpeers->peers_fe->bind_proc = 1;
3809 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003810 curpeers = curpeers->next;
3811 }
3812
3813 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003814 /* Remove all peers sections which don't have a valid listener,
3815 * which are not used by any table, or which are bound to more
3816 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003817 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003818 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003819 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003820 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003821 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003822
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003823 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003824 /* the "disabled" keyword was present */
3825 if (curpeers->peers_fe)
3826 stop_proxy(curpeers->peers_fe);
3827 curpeers->peers_fe = NULL;
3828 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003829 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003830 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3831 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003832 if (curpeers->peers_fe)
3833 stop_proxy(curpeers->peers_fe);
3834 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003835 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003836 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003837 /* either it's totally stopped or too much used */
3838 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003839 ha_alert("Peers section '%s': peers referenced by sections "
3840 "running in different processes (%d different ones). "
3841 "Check global.nbproc and all tables' bind-process "
3842 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003843 cfgerr++;
3844 }
3845 stop_proxy(curpeers->peers_fe);
3846 curpeers->peers_fe = NULL;
3847 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003848 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003849 /* Initializes the transport layer of the server part of all the peers belonging to
3850 * <curpeers> section if required.
3851 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3852 * of an old process.
3853 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003854 p = curpeers->remote;
3855 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003856 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003857 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 +01003858 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3859 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003860 p = p->next;
3861 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003862 /* Configure the SSL bindings of the local peer if required. */
3863 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3864 struct list *l;
3865 struct bind_conf *bind_conf;
3866
3867 l = &curpeers->peers_fe->conf.bind;
3868 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3869 if (bind_conf->xprt->prepare_bind_conf &&
3870 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3871 cfgerr++;
3872 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003873 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02003874 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3875 curpeers->id);
3876 cfgerr++;
3877 break;
3878 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003879 last = &curpeers->next;
3880 continue;
3881 }
3882
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003883 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003884 p = curpeers->remote;
3885 while (p) {
3886 pb = p->next;
3887 free(p->id);
3888 free(p);
3889 p = pb;
3890 }
3891
3892 /* Destroy and unlink this curpeers section.
3893 * Note: curpeers is backed up into *last.
3894 */
3895 free(curpeers->id);
3896 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003897 /* Reset any refereance to this peers section in the list of stick-tables */
3898 for (t = stktables_list; t; t = t->next) {
3899 if (t->peers.p && t->peers.p == *last)
3900 t->peers.p = NULL;
3901 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003902 free(*last);
3903 *last = curpeers;
3904 }
3905 }
3906
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003907 for (t = stktables_list; t; t = t->next) {
3908 if (t->proxy)
3909 continue;
3910 if (!stktable_init(t)) {
3911 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
3912 cfgerr++;
3913 }
3914 }
3915
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003916 /* initialize stick-tables on backend capable proxies. This must not
3917 * be done earlier because the data size may be discovered while parsing
3918 * other proxies.
3919 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003920 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauc3914d42020-09-24 08:39:22 +02003921 if (curproxy->disabled || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003922 continue;
3923
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003924 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003925 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003926 cfgerr++;
3927 }
3928 }
3929
Simon Horman0d16a402015-01-30 11:22:58 +09003930 if (mailers) {
3931 struct mailers *curmailers = mailers, **last;
3932 struct mailer *m, *mb;
3933
3934 /* Remove all mailers sections which don't have a valid listener.
3935 * This can happen when a mailers section is never referenced.
3936 */
3937 last = &mailers;
3938 while (*last) {
3939 curmailers = *last;
3940 if (curmailers->users) {
3941 last = &curmailers->next;
3942 continue;
3943 }
3944
Christopher Faulet767a84b2017-11-24 16:50:31 +01003945 ha_warning("Removing incomplete section 'mailers %s'.\n",
3946 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09003947
3948 m = curmailers->mailer_list;
3949 while (m) {
3950 mb = m->next;
3951 free(m->id);
3952 free(m);
3953 m = mb;
3954 }
3955
3956 /* Destroy and unlink this curmailers section.
3957 * Note: curmailers is backed up into *last.
3958 */
3959 free(curmailers->id);
3960 curmailers = curmailers->next;
3961 free(*last);
3962 *last = curmailers;
3963 }
3964 }
3965
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003966 /* Update server_state_file_name to backend name if backend is supposed to use
3967 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003968 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003969 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
3970 curproxy->server_state_file_name == NULL)
3971 curproxy->server_state_file_name = strdup(curproxy->id);
3972 }
3973
Ben Draut054fbee2018-04-13 15:43:04 -06003974 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
3975 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
3976 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
3977 curr_resolvers->id, curr_resolvers->conf.file,
3978 curr_resolvers->conf.line);
3979 err_code |= ERR_WARN;
3980 }
3981 }
3982
William Lallemand48b4bb42017-10-23 14:36:34 +02003983 list_for_each_entry(postparser, &postparsers, list) {
3984 if (postparser->func)
3985 cfgerr += postparser->func();
3986 }
3987
Willy Tarreaubb925012009-07-23 13:36:36 +02003988 if (cfgerr > 0)
3989 err_code |= ERR_ALERT | ERR_FATAL;
3990 out:
3991 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003992}
3993
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003994/*
3995 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
3996 * parsing sessions.
3997 */
3998void cfg_register_keywords(struct cfg_kw_list *kwl)
3999{
4000 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
4001}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004002
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004003/*
4004 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4005 */
4006void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4007{
4008 LIST_DEL(&kwl->list);
4009 LIST_INIT(&kwl->list);
4010}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004011
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004012/* this function register new section in the haproxy configuration file.
4013 * <section_name> is the name of this new section and <section_parser>
4014 * is the called parser. If two section declaration have the same name,
4015 * only the first declared is used.
4016 */
4017int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004018 int (*section_parser)(const char *, int, char **, int),
4019 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004020{
4021 struct cfg_section *cs;
4022
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004023 list_for_each_entry(cs, &sections, list) {
4024 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004025 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004026 return 0;
4027 }
4028 }
4029
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004030 cs = calloc(1, sizeof(*cs));
4031 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004032 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004033 return 0;
4034 }
4035
4036 cs->section_name = section_name;
4037 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004038 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004039
4040 LIST_ADDQ(&sections, &cs->list);
4041
4042 return 1;
4043}
4044
William Lallemand48b4bb42017-10-23 14:36:34 +02004045/* this function register a new function which will be called once the haproxy
4046 * configuration file has been parsed. It's useful to check dependencies
4047 * between sections or to resolve items once everything is parsed.
4048 */
4049int cfg_register_postparser(char *name, int (*func)())
4050{
4051 struct cfg_postparser *cp;
4052
4053 cp = calloc(1, sizeof(*cp));
4054 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004055 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004056 return 0;
4057 }
4058 cp->name = name;
4059 cp->func = func;
4060
4061 LIST_ADDQ(&postparsers, &cp->list);
4062
4063 return 1;
4064}
4065
Willy Tarreaubaaee002006-06-26 02:48:02 +02004066/*
David Carlier845efb52015-09-25 11:49:18 +01004067 * free all config section entries
4068 */
4069void cfg_unregister_sections(void)
4070{
4071 struct cfg_section *cs, *ics;
4072
4073 list_for_each_entry_safe(cs, ics, &sections, list) {
4074 LIST_DEL(&cs->list);
4075 free(cs);
4076 }
4077}
4078
Christopher Faulet7110b402016-10-26 11:09:44 +02004079void cfg_backup_sections(struct list *backup_sections)
4080{
4081 struct cfg_section *cs, *ics;
4082
4083 list_for_each_entry_safe(cs, ics, &sections, list) {
4084 LIST_DEL(&cs->list);
4085 LIST_ADDQ(backup_sections, &cs->list);
4086 }
4087}
4088
4089void cfg_restore_sections(struct list *backup_sections)
4090{
4091 struct cfg_section *cs, *ics;
4092
4093 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4094 LIST_DEL(&cs->list);
4095 LIST_ADDQ(&sections, &cs->list);
4096 }
4097}
4098
Willy Tarreaue6552512018-11-26 11:33:13 +01004099/* these are the config sections handled by default */
4100REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4101REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4102REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4103REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4104REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4105REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4106REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4107REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4108REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4109REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004110
David Carlier845efb52015-09-25 11:49:18 +01004111/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004112 * Local variables:
4113 * c-indent-level: 8
4114 * c-basic-offset: 8
4115 * End:
4116 */