blob: 119a5edc676c2a887f2f6044ed66f6dcdeb33c30 [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 Tarreau122eba92020-06-04 10:15:32 +020036#include <haproxy/action-t.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020037#include <haproxy/auth.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020038#include <haproxy/api.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020039#include <haproxy/capture.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020040#include <common/cfgparse.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020041#include <haproxy/chunk.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020042#include <haproxy/dns.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020043#include <haproxy/errors.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020044#include <haproxy/frontend.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020045#include <haproxy/http_rules.h>
Willy Tarreaucc9bbfb2020-06-04 11:09:42 +020046#include <haproxy/mailers-t.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020047#include <haproxy/obj_type-t.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020048#include <haproxy/pool.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020049#include <haproxy/tools.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020050#include <haproxy/time.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020051#include <common/uri_auth.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020052#include <haproxy/namespace.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +020053#include <haproxy/thread.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020054
Christopher Fauletd7c91962015-04-30 11:48:27 +020055#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020056#include <types/global.h>
Emeric Brun32da3c42010-09-23 18:39:19 +020057#include <types/peers.h>
William Lallemand9ed62032016-11-21 17:49:11 +010058#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020059
Willy Tarreaueb0c6142007-05-07 00:53:22 +020060#include <proto/acl.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020061#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020062#include <proto/channel.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020063#include <proto/checks.h>
William Lallemand9ed62032016-11-21 17:49:11 +010064#include <proto/stats.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020065#include <proto/filters.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020066#include <proto/lb_chash.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010067#include <proto/lb_fas.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020068#include <proto/lb_fwlc.h>
69#include <proto/lb_fwrr.h>
70#include <proto/lb_map.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020071#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020072#include <proto/log.h>
Willy Tarreau2dd7c352020-06-03 15:26:55 +020073#include <haproxy/protocol.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020074#include <proto/http_ana.h>
Willy Tarreau2b5652f2006-12-31 17:46:05 +010075#include <proto/proxy.h>
Emeric Brun32da3c42010-09-23 18:39:19 +020076#include <proto/peers.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020077#include <proto/sample.h>
Willy Tarreau9903f0e2015-04-04 18:50:31 +020078#include <proto/session.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020079#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020080#include <proto/stream.h>
Emeric Brunb982a3d2010-01-04 15:45:53 +010081#include <proto/stick_table.h>
Willy Tarreau39713102016-11-25 15:49:32 +010082#include <proto/task.h>
83#include <proto/tcp_rules.h>
Olivier Houchard673867c2018-05-25 16:58:52 +020084#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020085
86
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010087/* Used to chain configuration sections definitions. This list
88 * stores struct cfg_section
89 */
90struct list sections = LIST_HEAD_INIT(sections);
91
William Lallemand48b4bb42017-10-23 14:36:34 +020092struct list postparsers = LIST_HEAD_INIT(postparsers);
93
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010094char *cursection = NULL;
95struct proxy defproxy = { }; /* fake proxy used to assign default values on all instances */
Willy Tarreauc8d5b952019-02-27 17:25:52 +010096int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +010097int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +010098char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +020099
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200100/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100101struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200102 .list = LIST_HEAD_INIT(cfg_keywords.list)
103};
104
Willy Tarreaubaaee002006-06-26 02:48:02 +0200105/*
106 * converts <str> to a list of listeners which are dynamically allocated.
107 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
108 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
109 * - <port> is a numerical port from 1 to 65535 ;
110 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
111 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200112 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
113 * not NULL, it must be a valid pointer to either NULL or a freeable area that
114 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200115 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200116int 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 +0200117{
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100118 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200119 int port, end;
120
121 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200122
Willy Tarreaubaaee002006-06-26 02:48:02 +0200123 while (next && *next) {
William Lallemand75ea0a02017-11-15 19:02:58 +0100124 int inherited = 0;
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200125 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100126 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200127
128 str = next;
129 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100130 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200131 *next++ = 0;
132 }
133
Willy Tarreau48ef4c92017-01-06 18:32:38 +0100134 ss2 = str2sa_range(str, NULL, &port, &end, err,
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200135 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +0200136 NULL, 1);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100137 if (!ss2)
138 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200139
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100140 if (ss2->ss_family == AF_INET || ss2->ss_family == AF_INET6) {
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100141 if (!port && !end) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200142 memprintf(err, "missing port number: '%s'\n", str);
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100143 goto fail;
Emeric Bruned760922010-10-22 17:59:25 +0200144 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200145
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100146 if (!port || !end) {
147 memprintf(err, "port offsets are not allowed in 'bind': '%s'\n", str);
148 goto fail;
149 }
150
Emeric Bruned760922010-10-22 17:59:25 +0200151 if (port < 1 || port > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200152 memprintf(err, "invalid port '%d' specified for address '%s'.\n", port, str);
Emeric Bruned760922010-10-22 17:59:25 +0200153 goto fail;
154 }
155
156 if (end < 1 || end > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200157 memprintf(err, "invalid port '%d' specified for address '%s'.\n", end, str);
Emeric Bruned760922010-10-22 17:59:25 +0200158 goto fail;
159 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200160 }
Willy Tarreau40aa0702013-03-10 23:51:38 +0100161 else if (ss2->ss_family == AF_UNSPEC) {
162 socklen_t addr_len;
William Lallemand75ea0a02017-11-15 19:02:58 +0100163 inherited = 1;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100164
165 /* We want to attach to an already bound fd whose number
166 * is in the addr part of ss2 when cast to sockaddr_in.
167 * Note that by definition there is a single listener.
168 * We still have to determine the address family to
169 * register the correct protocol.
170 */
171 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
172 addr_len = sizeof(*ss2);
173 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
174 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
175 goto fail;
176 }
177
178 port = end = get_host_port(ss2);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200179
180 } else if (ss2->ss_family == AF_CUST_SOCKPAIR) {
181 socklen_t addr_len;
182 inherited = 1;
183
184 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
185 addr_len = sizeof(*ss2);
186 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
187 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
188 goto fail;
189 }
190
191 ss2->ss_family = AF_CUST_SOCKPAIR; /* reassign AF_CUST_SOCKPAIR because of getsockname */
192 port = end = 0;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100193 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200194
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100195 /* OK the address looks correct */
William Lallemand75ea0a02017-11-15 19:02:58 +0100196 if (!create_listeners(bind_conf, ss2, port, end, fd, inherited, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200197 memprintf(err, "%s for address '%s'.\n", *err, str);
198 goto fail;
199 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200200 } /* end while(next) */
201 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200202 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200203 fail:
204 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200205 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200206}
207
William Lallemand6e62fb62015-04-28 16:55:23 +0200208/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100209 * Report an error in <msg> when there are too many arguments. This version is
210 * intended to be used by keyword parsers so that the message will be included
211 * into the general error message. The index is the current keyword in args.
212 * Return 0 if the number of argument is correct, otherwise build a message and
213 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
214 * message may also be null, it will simply not be produced (useful to check only).
215 * <msg> and <err_code> are only affected on error.
216 */
217int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
218{
219 int i;
220
221 if (!*args[index + maxarg + 1])
222 return 0;
223
224 if (msg) {
225 *msg = NULL;
226 memprintf(msg, "%s", args[0]);
227 for (i = 1; i <= index; i++)
228 memprintf(msg, "%s %s", *msg, args[i]);
229
230 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
231 }
232 if (err_code)
233 *err_code |= ERR_ALERT | ERR_FATAL;
234
235 return 1;
236}
237
238/*
239 * same as too_many_args_idx with a 0 index
240 */
241int too_many_args(int maxarg, char **args, char **msg, int *err_code)
242{
243 return too_many_args_idx(maxarg, 0, args, msg, err_code);
244}
245
246/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200247 * Report a fatal Alert when there is too much arguments
248 * The index is the current keyword in args
249 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
250 * Fill err_code with an ERR_ALERT and an ERR_FATAL
251 */
252int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
253{
254 char *kw = NULL;
255 int i;
256
257 if (!*args[index + maxarg + 1])
258 return 0;
259
260 memprintf(&kw, "%s", args[0]);
261 for (i = 1; i <= index; i++) {
262 memprintf(&kw, "%s %s", kw, args[i]);
263 }
264
Christopher Faulet767a84b2017-11-24 16:50:31 +0100265 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 +0200266 free(kw);
267 *err_code |= ERR_ALERT | ERR_FATAL;
268 return 1;
269}
270
271/*
272 * same as alertif_too_many_args_idx with a 0 index
273 */
274int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
275{
276 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
277}
278
Willy Tarreau61d18892009-03-31 10:49:21 +0200279
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100280/* Report it if a request ACL condition uses some keywords that are incompatible
281 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
282 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
283 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100284 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100285int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100286{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100287 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200288 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100289
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100290 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100291 return 0;
292
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100293 acl = acl_cond_conflicts(cond, where);
294 if (acl) {
295 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100296 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
297 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100298 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100299 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
300 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100301 return ERR_WARN;
302 }
303 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100304 return 0;
305
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100306 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100307 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
308 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100309 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100310 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
311 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100312 return ERR_WARN;
313}
314
Christopher Faulet62519022017-10-16 15:49:32 +0200315/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100316 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100317 * two such numbers delimited by a dash ('-'). On success, it returns
318 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200319 *
320 * Note: this function can also be used to parse a thread number or a set of
321 * threads.
322 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100323int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200324{
Christopher Faulet26028f62017-11-22 15:01:51 +0100325 if (autoinc) {
326 *autoinc = 0;
327 if (strncmp(arg, "auto:", 5) == 0) {
328 arg += 5;
329 *autoinc = 1;
330 }
331 }
332
Christopher Faulet62519022017-10-16 15:49:32 +0200333 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100334 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200335 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100336 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200337 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100338 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200339 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100340 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100341 unsigned int low, high;
342
Christopher Faulet18cca782019-02-07 16:29:41 +0100343 for (p = arg; *p; p++) {
344 if (*p == '-' && !dash)
345 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100346 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100347 memprintf(err, "'%s' is not a valid number/range.", arg);
348 return -1;
349 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100350 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100351
352 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100353 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100354 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100355
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100356 if (high < low) {
357 unsigned int swap = low;
358 low = high;
359 high = swap;
360 }
361
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100362 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100363 memprintf(err, "'%s' is not a valid number/range."
364 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100365 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100366 return 1;
367 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100368
369 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100370 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200371 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100372 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100373
Christopher Faulet5ab51772017-11-22 11:21:58 +0100374 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200375}
376
David Carlier7e351ee2017-12-01 09:14:02 +0000377#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200378/* Parse cpu sets. Each CPU set is either a unique number between 0 and
379 * <LONGBITS> or a range with two such numbers delimited by a dash
380 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
381 * returns 0. otherwise it returns 1 with an error message in <err>.
382 */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100383unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200384{
385 int cur_arg = 0;
386
387 *cpu_set = 0;
388 while (*args[cur_arg]) {
389 char *dash;
390 unsigned int low, high;
391
Willy Tarreau90807112020-02-25 08:16:33 +0100392 if (!isdigit((unsigned char)*args[cur_arg])) {
Christopher Faulet62519022017-10-16 15:49:32 +0200393 memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
394 return -1;
395 }
396
397 low = high = str2uic(args[cur_arg]);
398 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100399 high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
Christopher Faulet62519022017-10-16 15:49:32 +0200400
401 if (high < low) {
402 unsigned int swap = low;
403 low = high;
404 high = swap;
405 }
406
407 if (high >= LONGBITS) {
408 memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
409 return 1;
410 }
411
412 while (low <= high)
413 *cpu_set |= 1UL << low++;
414
415 cur_arg++;
416 }
417 return 0;
418}
David Carlier7e351ee2017-12-01 09:14:02 +0000419#endif
420
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200421void init_default_instance()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200422{
Willy Tarreau97cb7802010-01-03 20:23:58 +0100423 init_new_proxy(&defproxy);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200424 defproxy.mode = PR_MODE_TCP;
425 defproxy.state = PR_STNEW;
426 defproxy.maxconn = cfg_maxpconn;
427 defproxy.conn_retries = CONN_RETRIES;
Joseph Lynch726ab712015-05-11 23:25:34 -0700428 defproxy.redispatch_after = 0;
Olivier Houchard86006a52018-12-14 19:37:49 +0100429 defproxy.options = PR_O_REUSE_SAFE;
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +0100430 defproxy.max_out_conns = MAX_SRV_LIST;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100431
Simon Horman66183002013-02-23 10:16:43 +0900432 defproxy.defsrv.check.inter = DEF_CHKINTR;
433 defproxy.defsrv.check.fastinter = 0;
434 defproxy.defsrv.check.downinter = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900435 defproxy.defsrv.agent.inter = DEF_CHKINTR;
436 defproxy.defsrv.agent.fastinter = 0;
437 defproxy.defsrv.agent.downinter = 0;
Simon Horman58c32972013-11-25 10:46:38 +0900438 defproxy.defsrv.check.rise = DEF_RISETIME;
439 defproxy.defsrv.check.fall = DEF_FALLTIME;
440 defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME;
441 defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME;
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200442 defproxy.defsrv.check.port = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900443 defproxy.defsrv.agent.port = 0;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100444 defproxy.defsrv.maxqueue = 0;
445 defproxy.defsrv.minconn = 0;
446 defproxy.defsrv.maxconn = 0;
Willy Tarreau9c538e02019-01-23 10:21:49 +0100447 defproxy.defsrv.max_reuse = -1;
Olivier Houchard006e3102018-12-10 18:30:32 +0100448 defproxy.defsrv.max_idle_conns = -1;
Willy Tarreau975b1552019-06-06 16:25:55 +0200449 defproxy.defsrv.pool_purge_delay = 5000;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100450 defproxy.defsrv.slowstart = 0;
451 defproxy.defsrv.onerror = DEF_HANA_ONERR;
452 defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT;
453 defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1;
Simon Horman64e34162015-02-06 11:11:57 +0900454
455 defproxy.email_alert.level = LOG_ALERT;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +0200456 defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200457}
458
Frédéric Lécaille18251032019-01-11 11:07:15 +0100459/* Allocate and initialize the frontend of a "peers" section found in
460 * file <file> at line <linenum> with <id> as ID.
461 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200462 * Note that this function may be called from "default-server"
463 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100464 */
465static int init_peers_frontend(const char *file, int linenum,
466 const char *id, struct peers *peers)
467{
468 struct proxy *p;
469
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200470 if (peers->peers_fe) {
471 p = peers->peers_fe;
472 goto out;
473 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100474
Frédéric Lécaille18251032019-01-11 11:07:15 +0100475 p = calloc(1, sizeof *p);
476 if (!p) {
477 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
478 return -1;
479 }
480
481 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200482 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100483 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200484 /* Finally store this frontend. */
485 peers->peers_fe = p;
486
487 out:
488 if (id && !p->id)
489 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200490 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100491 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100492 if (linenum != -1)
493 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100494
495 return 0;
496}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100497
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100498/* Only change ->file, ->line and ->arg struct bind_conf member values
499 * if already present.
500 */
501static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
502 const char *file, int line,
503 const char *arg, struct xprt_ops *xprt)
504{
505 struct bind_conf *bind_conf;
506
507 if (!LIST_ISEMPTY(&p->conf.bind)) {
508 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
509 free(bind_conf->file);
510 bind_conf->file = strdup(file);
511 bind_conf->line = line;
512 if (arg) {
513 free(bind_conf->arg);
514 bind_conf->arg = strdup(arg);
515 }
516 }
517 else {
518 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
519 }
520
521 return bind_conf;
522}
523
524/*
525 * Allocate a new struct peer parsed at line <linenum> in file <file>
526 * to be added to <peers>.
527 * Returns the new allocated structure if succeeded, NULL if not.
528 */
529static struct peer *cfg_peers_add_peer(struct peers *peers,
530 const char *file, int linenum,
531 const char *id, int local)
532{
533 struct peer *p;
534
535 p = calloc(1, sizeof *p);
536 if (!p) {
537 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
538 return NULL;
539 }
540
541 /* the peers are linked backwards first */
542 peers->count++;
543 p->next = peers->remote;
544 peers->remote = p;
545 p->conf.file = strdup(file);
546 p->conf.line = linenum;
547 p->last_change = now.tv_sec;
548 p->xprt = xprt_get(XPRT_RAW);
549 p->sock_init_arg = NULL;
550 HA_SPIN_INIT(&p->lock);
551 if (id)
552 p->id = strdup(id);
553 if (local) {
554 p->local = 1;
555 peers->local = p;
556 }
557
558 return p;
559}
560
Willy Tarreaubaaee002006-06-26 02:48:02 +0200561/*
William Lallemand51097192015-04-14 16:35:22 +0200562 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200563 * Returns the error code, 0 if OK, or any combination of :
564 * - ERR_ABORT: must abort ASAP
565 * - ERR_FATAL: we can continue parsing but not start the service
566 * - ERR_WARN: a warning has been emitted
567 * - ERR_ALERT: an alert has been emitted
568 * Only the two first ones can stop processing, the two others are just
569 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200570 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200571int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
572{
573 static struct peers *curpeers = NULL;
574 struct peer *newpeer = NULL;
575 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200576 struct bind_conf *bind_conf;
577 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200578 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100579 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100580 static int bind_line, peer_line;
581
582 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
583 int cur_arg;
584 static int kws_dumped;
585 struct bind_conf *bind_conf;
586 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200587
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100588 cur_arg = 1;
589
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200590 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
591 err_code |= ERR_ALERT | ERR_ABORT;
592 goto out;
593 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100594
595 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
596 NULL, xprt_get(XPRT_RAW));
597 if (*args[0] == 'b') {
598 struct listener *l;
599
600 if (peer_line) {
601 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
602 err_code |= ERR_ALERT | ERR_FATAL;
603 goto out;
604 }
605
606 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
607 if (errmsg && *errmsg) {
608 indent_msg(&errmsg, 2);
609 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
610 }
611 else
612 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
613 file, linenum, args[0], args[1], args[2]);
614 err_code |= ERR_FATAL;
615 goto out;
616 }
617 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
618 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100619 l->accept = session_accept_fd;
620 l->analysers |= curpeers->peers_fe->fe_req_ana;
621 l->default_target = curpeers->peers_fe->default_target;
622 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100623 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100624
625 bind_line = 1;
626 if (cfg_peers->local) {
627 newpeer = cfg_peers->local;
628 }
629 else {
630 /* This peer is local.
631 * Note that we do not set the peer ID. This latter is initialized
632 * when parsing "peer" or "server" line.
633 */
634 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
635 if (!newpeer) {
636 err_code |= ERR_ALERT | ERR_ABORT;
637 goto out;
638 }
639 }
640 newpeer->addr = l->addr;
641 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
642 cur_arg++;
643 }
644
645 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
646 int ret;
647
648 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
649 err_code |= ret;
650 if (ret) {
651 if (errmsg && *errmsg) {
652 indent_msg(&errmsg, 2);
653 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
654 }
655 else
656 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
657 file, linenum, args[cur_arg]);
658 if (ret & ERR_FATAL)
659 goto out;
660 }
661 cur_arg += 1 + kw->skip;
662 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100663 if (*args[cur_arg] != 0) {
Tim Duesterhus04bcaa12019-05-12 22:54:50 +0200664 char *kws = NULL;
665
666 if (!kws_dumped) {
667 kws_dumped = 1;
668 bind_dump_kws(&kws);
669 indent_msg(&kws, 4);
670 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100671 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.%s%s\n",
672 file, linenum, args[cur_arg], cursection,
673 kws ? " Registered keywords :" : "", kws ? kws: "");
674 free(kws);
675 err_code |= ERR_ALERT | ERR_FATAL;
676 goto out;
677 }
678 }
679 else if (strcmp(args[0], "default-server") == 0) {
680 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
681 err_code |= ERR_ALERT | ERR_ABORT;
682 goto out;
683 }
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200684 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, 0, 1);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200685 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100686 else if (strcmp(args[0], "log") == 0) {
687 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
688 err_code |= ERR_ALERT | ERR_ABORT;
689 goto out;
690 }
691 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), &errmsg)) {
692 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
693 err_code |= ERR_ALERT | ERR_FATAL;
694 goto out;
695 }
696 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200697 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100698 /* Initialize these static variables when entering a new "peers" section*/
699 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100700 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100701 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100702 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100703 goto out;
704 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200705
William Lallemand6e62fb62015-04-28 16:55:23 +0200706 if (alertif_too_many_args(1, file, linenum, args, &err_code))
707 goto out;
708
Emeric Brun32da3c42010-09-23 18:39:19 +0200709 err = invalid_char(args[1]);
710 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100711 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
712 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100713 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100714 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200715 }
716
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200717 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200718 /*
719 * If there are two proxies with the same name only following
720 * combinations are allowed:
721 */
722 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100723 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
724 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200725 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200726 }
727 }
728
Vincent Bernat02779b62016-04-03 13:48:43 +0200729 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100730 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200731 err_code |= ERR_ALERT | ERR_ABORT;
732 goto out;
733 }
734
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200735 curpeers->next = cfg_peers;
736 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200737 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200738 curpeers->conf.line = linenum;
739 curpeers->last_change = now.tv_sec;
740 curpeers->id = strdup(args[1]);
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200741 curpeers->state = PR_STNEW;
Emeric Brun32da3c42010-09-23 18:39:19 +0200742 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200743 else if (strcmp(args[0], "peer") == 0 ||
744 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100745 int local_peer, peer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200746
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100747 peer = *args[0] == 'p';
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100748 local_peer = !strcmp(args[1], localpeer);
749 /* The local peer may have already partially been parsed on a "bind" line. */
750 if (*args[0] == 'p') {
751 if (bind_line) {
752 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
753 err_code |= ERR_ALERT | ERR_FATAL;
754 goto out;
755 }
756 peer_line = 1;
757 }
758 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
759 /* The local peer has already been initialized on a "bind" line.
760 * Let's use it and store its ID.
761 */
762 newpeer = cfg_peers->local;
763 newpeer->id = strdup(localpeer);
764 }
765 else {
766 if (local_peer && cfg_peers->local) {
767 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
768 file, linenum, args[0], args[1],
769 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
770 err_code |= ERR_FATAL;
771 goto out;
772 }
773 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
774 if (!newpeer) {
775 err_code |= ERR_ALERT | ERR_ABORT;
776 goto out;
777 }
778 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200779
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100780 /* Line number and peer ID are updated only if this peer is the local one. */
781 if (init_peers_frontend(file,
782 newpeer->local ? linenum: -1,
783 newpeer->local ? newpeer->id : NULL,
784 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200785 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100786 goto out;
787 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100788
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100789 /* This initializes curpeer->peers->peers_fe->srv.
790 * The server address is parsed only if we are parsing a "peer" line,
791 * or if we are parsing a "server" line and the current peer is not the local one.
792 */
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200793 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, peer || !local_peer, 1);
794 if (!curpeers->peers_fe->srv) {
795 /* Remove the newly allocated peer. */
796 if (newpeer != curpeers->local) {
797 struct peer *p;
798
799 p = curpeers->remote;
800 curpeers->remote = curpeers->remote->next;
801 free(p->id);
802 free(p);
803 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200804 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200805 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200806
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100807 /* If the peer address has just been parsed, let's copy it to <newpeer>
808 * and initializes ->proto.
809 */
810 if (peer || !local_peer) {
811 newpeer->addr = curpeers->peers_fe->srv->addr;
812 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
813 }
814
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100815 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200816 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100817 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200818
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100819 newpeer->srv = curpeers->peers_fe->srv;
820 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200821 goto out;
822
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100823 /* The lines above are reserved to "peer" lines. */
824 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200825 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200826
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100827 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 +0100828
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100829 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
830 if (errmsg && *errmsg) {
831 indent_msg(&errmsg, 2);
832 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 +0100833 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100834 else
835 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
836 file, linenum, args[0], args[1], args[2]);
837 err_code |= ERR_FATAL;
838 goto out;
839 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100840
841 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
842 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100843 l->accept = session_accept_fd;
844 l->analysers |= curpeers->peers_fe->fe_req_ana;
845 l->default_target = curpeers->peers_fe->default_target;
846 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100847 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100848 }
849 else if (!strcmp(args[0], "table")) {
850 struct stktable *t, *other;
851 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100852 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100853
854 /* Line number and peer ID are updated only if this peer is the local one. */
855 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
856 err_code |= ERR_ALERT | ERR_ABORT;
857 goto out;
858 }
859
860 other = stktable_find_by_name(args[1]);
861 if (other) {
862 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
863 file, linenum, args[1],
864 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
865 other->proxy ? other->id : other->peers.p->id,
866 other->conf.file, other->conf.line);
867 err_code |= ERR_ALERT | ERR_FATAL;
868 goto out;
869 }
870
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100871 /* Build the stick-table name, concatenating the "peers" section name
872 * followed by a '/' character and the table name argument.
873 */
874 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100875 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100876 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
877 file, linenum, args[0], args[1]);
878 err_code |= ERR_ALERT | ERR_FATAL;
879 goto out;
880 }
881
882 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100883 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100884 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
885 file, linenum, args[0], args[1]);
886 err_code |= ERR_ALERT | ERR_FATAL;
887 goto out;
888 }
889
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100890 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100891 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100892 if (!t || !id) {
893 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
894 file, linenum, args[0], args[1]);
895 err_code |= ERR_ALERT | ERR_FATAL;
896 goto out;
897 }
898
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100899 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100900 if (err_code & ERR_FATAL)
901 goto out;
902
903 stktable_store_name(t);
904 t->next = stktables_list;
905 stktables_list = t;
906 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200907 else if (!strcmp(args[0], "disabled")) { /* disables this peers section */
908 curpeers->state = PR_STSTOPPED;
909 }
910 else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */
911 curpeers->state = PR_STNEW;
912 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200913 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100914 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200915 err_code |= ERR_ALERT | ERR_FATAL;
916 goto out;
917 }
918
919out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100920 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200921 return err_code;
922}
923
Baptiste Assmann325137d2015-04-13 23:40:55 +0200924/*
925 * Parse a <resolvers> section.
926 * Returns the error code, 0 if OK, or any combination of :
927 * - ERR_ABORT: must abort ASAP
928 * - ERR_FATAL: we can continue parsing but not start the service
929 * - ERR_WARN: a warning has been emitted
930 * - ERR_ALERT: an alert has been emitted
931 * Only the two first ones can stop processing, the two others are just
932 * indicators.
933 */
934int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
935{
936 static struct dns_resolvers *curr_resolvers = NULL;
937 struct dns_nameserver *newnameserver = NULL;
938 const char *err;
939 int err_code = 0;
940 char *errmsg = NULL;
941
942 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
943 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100944 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200945 err_code |= ERR_ALERT | ERR_ABORT;
946 goto out;
947 }
948
949 err = invalid_char(args[1]);
950 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100951 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
952 file, linenum, *err, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200953 err_code |= ERR_ALERT | ERR_ABORT;
954 goto out;
955 }
956
957 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
958 /* Error if two resolvers owns the same name */
959 if (strcmp(curr_resolvers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100960 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
961 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200962 err_code |= ERR_ALERT | ERR_ABORT;
963 }
964 }
965
Vincent Bernat02779b62016-04-03 13:48:43 +0200966 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100967 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200968 err_code |= ERR_ALERT | ERR_ABORT;
969 goto out;
970 }
971
972 /* default values */
973 LIST_ADDQ(&dns_resolvers, &curr_resolvers->list);
974 curr_resolvers->conf.file = strdup(file);
975 curr_resolvers->conf.line = linenum;
976 curr_resolvers->id = strdup(args[1]);
977 curr_resolvers->query_ids = EB_ROOT;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200978 /* default maximum response size */
979 curr_resolvers->accepted_payload_size = 512;
Baptiste Assmann987e16d2016-11-02 22:23:31 +0100980 /* default hold period for nx, other, refuse and timeout is 30s */
981 curr_resolvers->hold.nx = 30000;
982 curr_resolvers->hold.other = 30000;
983 curr_resolvers->hold.refused = 30000;
984 curr_resolvers->hold.timeout = 30000;
Baptiste Assmann686408b2017-08-18 10:15:42 +0200985 curr_resolvers->hold.obsolete = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200986 /* default hold period for valid is 10s */
Baptiste Assmann4c5490a2015-07-14 21:42:49 +0200987 curr_resolvers->hold.valid = 10000;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200988 curr_resolvers->timeout.resolve = 1000;
989 curr_resolvers->timeout.retry = 1000;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200990 curr_resolvers->resolve_retries = 3;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200991 curr_resolvers->nb_nameservers = 0;
992 LIST_INIT(&curr_resolvers->nameservers);
993 LIST_INIT(&curr_resolvers->resolutions.curr);
994 LIST_INIT(&curr_resolvers->resolutions.wait);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100995 HA_SPIN_INIT(&curr_resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200996 }
997 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
998 struct sockaddr_storage *sk;
999 int port1, port2;
1000 struct protocol *proto;
1001
1002 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001003 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1004 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001005 err_code |= ERR_ALERT | ERR_FATAL;
1006 goto out;
1007 }
1008
1009 err = invalid_char(args[1]);
1010 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001011 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1012 file, linenum, *err, args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001013 err_code |= ERR_ALERT | ERR_FATAL;
1014 goto out;
1015 }
1016
Christopher Faulet67957bd2017-09-27 11:00:59 +02001017 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
Baptiste Assmanna315c552015-11-02 22:55:49 +01001018 /* Error if two resolvers owns the same name */
1019 if (strcmp(newnameserver->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001020 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 -06001021 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
Baptiste Assmanna315c552015-11-02 22:55:49 +01001022 err_code |= ERR_ALERT | ERR_FATAL;
1023 }
1024 }
1025
Vincent Bernat02779b62016-04-03 13:48:43 +02001026 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001027 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001028 err_code |= ERR_ALERT | ERR_ABORT;
1029 goto out;
1030 }
1031
1032 /* the nameservers are linked backward first */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001033 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001034 newnameserver->resolvers = curr_resolvers;
1035 newnameserver->conf.file = strdup(file);
1036 newnameserver->conf.line = linenum;
1037 newnameserver->id = strdup(args[1]);
1038
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001039 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001040 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001041 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001042 err_code |= ERR_ALERT | ERR_FATAL;
1043 goto out;
1044 }
1045
1046 proto = protocol_by_family(sk->ss_family);
1047 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001048 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Baptiste Assmann325137d2015-04-13 23:40:55 +02001049 file, linenum, args[0], args[1]);
1050 err_code |= ERR_ALERT | ERR_FATAL;
1051 goto out;
1052 }
1053
1054 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001055 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1056 file, linenum, args[0], args[1], args[2]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001057 err_code |= ERR_ALERT | ERR_FATAL;
1058 goto out;
1059 }
1060
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001061 if (!port1 && !port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001062 ha_alert("parsing [%s:%d] : '%s %s' : no UDP port specified\n",
1063 file, linenum, args[0], args[1]);
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001064 err_code |= ERR_ALERT | ERR_FATAL;
1065 goto out;
1066 }
1067
Baptiste Assmann325137d2015-04-13 23:40:55 +02001068 newnameserver->addr = *sk;
1069 }
Ben Draut44e609b2018-05-29 15:40:08 -06001070 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
1071 const char *whitespace = "\r\n\t ";
1072 char *resolv_line = NULL;
1073 int resolv_linenum = 0;
1074 FILE *f = NULL;
1075 char *address = NULL;
1076 struct sockaddr_storage *sk = NULL;
1077 struct protocol *proto;
1078 int duplicate_name = 0;
1079
1080 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
1081 ha_alert("parsing [%s:%d] : out of memory.\n",
1082 file, linenum);
1083 err_code |= ERR_ALERT | ERR_FATAL;
1084 goto resolv_out;
1085 }
1086
1087 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
1088 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
1089 file, linenum);
1090 err_code |= ERR_ALERT | ERR_FATAL;
1091 goto resolv_out;
1092 }
1093
1094 sk = calloc(1, sizeof(*sk));
1095 if (sk == NULL) {
1096 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
1097 resolv_linenum);
1098 err_code |= ERR_ALERT | ERR_FATAL;
1099 goto resolv_out;
1100 }
1101
1102 while (fgets(resolv_line, LINESIZE, f) != NULL) {
1103 resolv_linenum++;
1104 if (strncmp(resolv_line, "nameserver", 10) != 0)
1105 continue;
1106
1107 address = strtok(resolv_line + 10, whitespace);
1108 if (address == resolv_line + 10)
1109 continue;
1110
1111 if (address == NULL) {
1112 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
1113 resolv_linenum);
1114 err_code |= ERR_WARN;
1115 continue;
1116 }
1117
1118 duplicate_name = 0;
1119 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
1120 if (strcmp(newnameserver->id, address) == 0) {
1121 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",
1122 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
1123 err_code |= ERR_WARN;
1124 duplicate_name = 1;
1125 }
1126 }
1127
1128 if (duplicate_name)
1129 continue;
1130
1131 memset(sk, 0, sizeof(*sk));
Willy Tarreau78675252020-05-28 18:07:10 +02001132 if (!str2ip2(address, sk, 1)) {
1133 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 -06001134 resolv_linenum, address);
1135 err_code |= ERR_WARN;
1136 continue;
1137 }
1138
1139 set_host_port(sk, 53);
1140
1141 proto = protocol_by_family(sk->ss_family);
1142 if (!proto || !proto->connect) {
1143 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
1144 resolv_linenum, address);
1145 err_code |= ERR_WARN;
1146 continue;
1147 }
1148
1149 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
1150 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1151 err_code |= ERR_ALERT | ERR_FATAL;
1152 goto resolv_out;
1153 }
1154
1155 newnameserver->conf.file = strdup("/etc/resolv.conf");
1156 if (newnameserver->conf.file == NULL) {
1157 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1158 err_code |= ERR_ALERT | ERR_FATAL;
1159 goto resolv_out;
1160 }
1161
1162 newnameserver->id = strdup(address);
1163 if (newnameserver->id == NULL) {
1164 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1165 err_code |= ERR_ALERT | ERR_FATAL;
1166 goto resolv_out;
1167 }
1168
1169 newnameserver->resolvers = curr_resolvers;
1170 newnameserver->conf.line = resolv_linenum;
1171 newnameserver->addr = *sk;
1172
1173 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
1174 }
1175
1176resolv_out:
1177 free(sk);
1178 free(resolv_line);
1179 if (f != NULL)
1180 fclose(f);
1181 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001182 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
1183 const char *res;
1184 unsigned int time;
1185
1186 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001187 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
1188 file, linenum, args[0]);
1189 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
Baptiste Assmann325137d2015-04-13 23:40:55 +02001190 err_code |= ERR_ALERT | ERR_FATAL;
1191 goto out;
1192 }
1193 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001194 if (res == PARSE_TIME_OVER) {
1195 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s>, maximum value is 2147483647 ms (~24.8 days).\n",
1196 file, linenum, args[1], args[0]);
1197 err_code |= ERR_ALERT | ERR_FATAL;
1198 goto out;
1199 }
1200 else if (res == PARSE_TIME_UNDER) {
1201 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s>, minimum non-null value is 1 ms.\n",
1202 file, linenum, args[1], args[0]);
1203 err_code |= ERR_ALERT | ERR_FATAL;
1204 goto out;
1205 }
1206 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001207 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1208 file, linenum, *res, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001209 err_code |= ERR_ALERT | ERR_FATAL;
1210 goto out;
1211 }
Baptiste Assmann987e16d2016-11-02 22:23:31 +01001212 if (strcmp(args[1], "nx") == 0)
1213 curr_resolvers->hold.nx = time;
1214 else if (strcmp(args[1], "other") == 0)
1215 curr_resolvers->hold.other = time;
1216 else if (strcmp(args[1], "refused") == 0)
1217 curr_resolvers->hold.refused = time;
1218 else if (strcmp(args[1], "timeout") == 0)
1219 curr_resolvers->hold.timeout = time;
1220 else if (strcmp(args[1], "valid") == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001221 curr_resolvers->hold.valid = time;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001222 else if (strcmp(args[1], "obsolete") == 0)
1223 curr_resolvers->hold.obsolete = time;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001224 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001225 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
1226 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001227 err_code |= ERR_ALERT | ERR_FATAL;
1228 goto out;
1229 }
1230
1231 }
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001232 else if (strcmp(args[0], "accepted_payload_size") == 0) {
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001233 int i = 0;
1234
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001235 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001236 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1237 file, linenum, args[0]);
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001238 err_code |= ERR_ALERT | ERR_FATAL;
1239 goto out;
1240 }
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001241
1242 i = atoi(args[1]);
Willy Tarreau0c219be2017-08-22 12:01:26 +02001243 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001244 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
1245 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001246 err_code |= ERR_ALERT | ERR_FATAL;
1247 goto out;
1248 }
1249
1250 curr_resolvers->accepted_payload_size = i;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001251 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001252 else if (strcmp(args[0], "resolution_pool_size") == 0) {
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001253 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 +01001254 file, linenum, args[0]);
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001255 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001256 goto out;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001257 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001258 else if (strcmp(args[0], "resolve_retries") == 0) {
1259 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001260 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1261 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001262 err_code |= ERR_ALERT | ERR_FATAL;
1263 goto out;
1264 }
1265 curr_resolvers->resolve_retries = atoi(args[1]);
1266 }
1267 else if (strcmp(args[0], "timeout") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001268 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001269 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
1270 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001271 err_code |= ERR_ALERT | ERR_FATAL;
1272 goto out;
1273 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001274 else if (strcmp(args[1], "retry") == 0 ||
1275 strcmp(args[1], "resolve") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001276 const char *res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001277 unsigned int tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001278
1279 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001280 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1281 file, linenum, 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 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001286 if (res == PARSE_TIME_OVER) {
1287 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1288 file, linenum, args[2], args[0], args[1]);
1289 err_code |= ERR_ALERT | ERR_FATAL;
1290 goto out;
1291 }
1292 else if (res == PARSE_TIME_UNDER) {
1293 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1294 file, linenum, args[2], args[0], args[1]);
1295 err_code |= ERR_ALERT | ERR_FATAL;
1296 goto out;
1297 }
1298 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001299 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1300 file, linenum, *res, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001301 err_code |= ERR_ALERT | ERR_FATAL;
1302 goto out;
1303 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001304 if (args[1][2] == 't')
1305 curr_resolvers->timeout.retry = tout;
1306 else
1307 curr_resolvers->timeout.resolve = tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001308 }
1309 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001310 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
1311 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001312 err_code |= ERR_ALERT | ERR_FATAL;
1313 goto out;
1314 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001315 } /* neither "nameserver" nor "resolvers" */
1316 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001317 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001318 err_code |= ERR_ALERT | ERR_FATAL;
1319 goto out;
1320 }
1321
1322 out:
1323 free(errmsg);
1324 return err_code;
1325}
Simon Horman0d16a402015-01-30 11:22:58 +09001326
1327/*
William Lallemand51097192015-04-14 16:35:22 +02001328 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001329 * Returns the error code, 0 if OK, or any combination of :
1330 * - ERR_ABORT: must abort ASAP
1331 * - ERR_FATAL: we can continue parsing but not start the service
1332 * - ERR_WARN: a warning has been emitted
1333 * - ERR_ALERT: an alert has been emitted
1334 * Only the two first ones can stop processing, the two others are just
1335 * indicators.
1336 */
1337int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1338{
1339 static struct mailers *curmailers = NULL;
1340 struct mailer *newmailer = NULL;
1341 const char *err;
1342 int err_code = 0;
1343 char *errmsg = NULL;
1344
1345 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1346 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001347 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001348 err_code |= ERR_ALERT | ERR_ABORT;
1349 goto out;
1350 }
1351
1352 err = invalid_char(args[1]);
1353 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001354 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1355 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001356 err_code |= ERR_ALERT | ERR_ABORT;
1357 goto out;
1358 }
1359
1360 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1361 /*
1362 * If there are two proxies with the same name only following
1363 * combinations are allowed:
1364 */
1365 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001366 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1367 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001368 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001369 }
1370 }
1371
Vincent Bernat02779b62016-04-03 13:48:43 +02001372 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001373 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001374 err_code |= ERR_ALERT | ERR_ABORT;
1375 goto out;
1376 }
1377
1378 curmailers->next = mailers;
1379 mailers = curmailers;
1380 curmailers->conf.file = strdup(file);
1381 curmailers->conf.line = linenum;
1382 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001383 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1384 * But need enough time so that timeouts don't occur
1385 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001386 }
1387 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1388 struct sockaddr_storage *sk;
1389 int port1, port2;
1390 struct protocol *proto;
1391
1392 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001393 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1394 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001395 err_code |= ERR_ALERT | ERR_FATAL;
1396 goto out;
1397 }
1398
1399 err = invalid_char(args[1]);
1400 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001401 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1402 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001403 err_code |= ERR_ALERT | ERR_FATAL;
1404 goto out;
1405 }
1406
Vincent Bernat02779b62016-04-03 13:48:43 +02001407 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001408 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001409 err_code |= ERR_ALERT | ERR_ABORT;
1410 goto out;
1411 }
1412
1413 /* the mailers are linked backwards first */
1414 curmailers->count++;
1415 newmailer->next = curmailers->mailer_list;
1416 curmailers->mailer_list = newmailer;
1417 newmailer->mailers = curmailers;
1418 newmailer->conf.file = strdup(file);
1419 newmailer->conf.line = linenum;
1420
1421 newmailer->id = strdup(args[1]);
1422
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001423 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Simon Horman0d16a402015-01-30 11:22:58 +09001424 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001425 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001426 err_code |= ERR_ALERT | ERR_FATAL;
1427 goto out;
1428 }
1429
1430 proto = protocol_by_family(sk->ss_family);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09001431 if (!proto || !proto->connect || proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001432 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1433 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001434 err_code |= ERR_ALERT | ERR_FATAL;
1435 goto out;
1436 }
1437
1438 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001439 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1440 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001441 err_code |= ERR_ALERT | ERR_FATAL;
1442 goto out;
1443 }
1444
1445 if (!port1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001446 ha_alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n",
1447 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001448 err_code |= ERR_ALERT | ERR_FATAL;
1449 goto out;
1450 }
1451
1452 newmailer->addr = *sk;
1453 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001454 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001455 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001456 }
1457 else if (strcmp(args[0], "timeout") == 0) {
1458 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001459 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1460 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001461 err_code |= ERR_ALERT | ERR_FATAL;
1462 goto out;
1463 }
1464 else if (strcmp(args[1], "mail") == 0) {
1465 const char *res;
1466 unsigned int timeout_mail;
1467 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001468 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1469 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001470 err_code |= ERR_ALERT | ERR_FATAL;
1471 goto out;
1472 }
1473 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001474 if (res == PARSE_TIME_OVER) {
1475 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1476 file, linenum, args[2], args[0], args[1]);
1477 err_code |= ERR_ALERT | ERR_FATAL;
1478 goto out;
1479 }
1480 else if (res == PARSE_TIME_UNDER) {
1481 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1482 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001483 err_code |= ERR_ALERT | ERR_FATAL;
1484 goto out;
1485 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001486 else if (res) {
1487 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1488 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001489 err_code |= ERR_ALERT | ERR_FATAL;
1490 goto out;
1491 }
1492 curmailers->timeout.mail = timeout_mail;
1493 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001494 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001495 file, linenum, args[0], args[1]);
1496 err_code |= ERR_ALERT | ERR_FATAL;
1497 goto out;
1498 }
1499 }
Simon Horman0d16a402015-01-30 11:22:58 +09001500 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001501 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001502 err_code |= ERR_ALERT | ERR_FATAL;
1503 goto out;
1504 }
1505
1506out:
1507 free(errmsg);
1508 return err_code;
1509}
1510
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001511void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001512{
1513 free(p->email_alert.mailers.name);
1514 p->email_alert.mailers.name = NULL;
1515 free(p->email_alert.from);
1516 p->email_alert.from = NULL;
1517 free(p->email_alert.to);
1518 p->email_alert.to = NULL;
1519 free(p->email_alert.myhostname);
1520 p->email_alert.myhostname = NULL;
1521}
1522
Willy Tarreaubaaee002006-06-26 02:48:02 +02001523
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001524int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001525cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1526{
Willy Tarreaue5733232019-05-22 19:24:06 +02001527#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001528 const char *err;
1529 const char *item = args[0];
1530
1531 if (!strcmp(item, "namespace_list")) {
1532 return 0;
1533 }
1534 else if (!strcmp(item, "namespace")) {
1535 size_t idx = 1;
1536 const char *current;
1537 while (*(current = args[idx++])) {
1538 err = invalid_char(current);
1539 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001540 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1541 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001542 return ERR_ALERT | ERR_FATAL;
1543 }
1544
1545 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001546 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1547 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001548 return ERR_ALERT | ERR_FATAL;
1549 }
1550 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001551 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1552 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001553 return ERR_ALERT | ERR_FATAL;
1554 }
1555 }
1556 }
1557
1558 return 0;
1559#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001560 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1561 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001562 return ERR_ALERT | ERR_FATAL;
1563#endif
1564}
1565
1566int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001567cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1568{
1569
1570 int err_code = 0;
1571 const char *err;
1572
1573 if (!strcmp(args[0], "userlist")) { /* new userlist */
1574 struct userlist *newul;
1575
1576 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001577 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1578 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001579 err_code |= ERR_ALERT | ERR_FATAL;
1580 goto out;
1581 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001582 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1583 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001584
1585 err = invalid_char(args[1]);
1586 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001587 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1588 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001589 err_code |= ERR_ALERT | ERR_FATAL;
1590 goto out;
1591 }
1592
1593 for (newul = userlist; newul; newul = newul->next)
1594 if (!strcmp(newul->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001595 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1596 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001597 err_code |= ERR_WARN;
1598 goto out;
1599 }
1600
Vincent Bernat02779b62016-04-03 13:48:43 +02001601 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001602 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001603 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001604 err_code |= ERR_ALERT | ERR_ABORT;
1605 goto out;
1606 }
1607
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001608 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001609 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001610 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001611 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001612 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001613 goto out;
1614 }
1615
1616 newul->next = userlist;
1617 userlist = newul;
1618
1619 } else if (!strcmp(args[0], "group")) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001620 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001621 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001622 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001623
1624 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001625 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1626 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001627 err_code |= ERR_ALERT | ERR_FATAL;
1628 goto out;
1629 }
1630
1631 err = invalid_char(args[1]);
1632 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001633 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1634 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001635 err_code |= ERR_ALERT | ERR_FATAL;
1636 goto out;
1637 }
1638
William Lallemand4ac9f542015-05-28 18:03:51 +02001639 if (!userlist)
1640 goto out;
1641
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001642 for (ag = userlist->groups; ag; ag = ag->next)
1643 if (!strcmp(ag->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001644 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1645 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001646 err_code |= ERR_ALERT;
1647 goto out;
1648 }
1649
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001650 ag = calloc(1, sizeof(*ag));
1651 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001652 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001653 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001654 goto out;
1655 }
1656
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001657 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001658 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001659 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001660 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001661 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001662 goto out;
1663 }
1664
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001665 cur_arg = 2;
1666
1667 while (*args[cur_arg]) {
1668 if (!strcmp(args[cur_arg], "users")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001669 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001670 cur_arg += 2;
1671 continue;
1672 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001673 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1674 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001675 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001676 free(ag->groupusers);
1677 free(ag->name);
1678 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001679 goto out;
1680 }
1681 }
1682
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001683 ag->next = userlist->groups;
1684 userlist->groups = ag;
1685
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001686 } else if (!strcmp(args[0], "user")) { /* new user */
1687 struct auth_users *newuser;
1688 int cur_arg;
1689
1690 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001691 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1692 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001693 err_code |= ERR_ALERT | ERR_FATAL;
1694 goto out;
1695 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001696 if (!userlist)
1697 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001698
1699 for (newuser = userlist->users; newuser; newuser = newuser->next)
1700 if (!strcmp(newuser->user, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001701 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1702 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001703 err_code |= ERR_ALERT;
1704 goto out;
1705 }
1706
Vincent Bernat02779b62016-04-03 13:48:43 +02001707 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001708 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001709 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001710 err_code |= ERR_ALERT | ERR_ABORT;
1711 goto out;
1712 }
1713
1714 newuser->user = strdup(args[1]);
1715
1716 newuser->next = userlist->users;
1717 userlist->users = newuser;
1718
1719 cur_arg = 2;
1720
1721 while (*args[cur_arg]) {
1722 if (!strcmp(args[cur_arg], "password")) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001723#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001724 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001725 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1726 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001727 err_code |= ERR_ALERT | ERR_FATAL;
1728 goto out;
1729 }
1730#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001731 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1732 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001733 err_code |= ERR_ALERT;
1734#endif
1735 newuser->pass = strdup(args[cur_arg + 1]);
1736 cur_arg += 2;
1737 continue;
1738 } else if (!strcmp(args[cur_arg], "insecure-password")) {
1739 newuser->pass = strdup(args[cur_arg + 1]);
1740 newuser->flags |= AU_O_INSECURE;
1741 cur_arg += 2;
1742 continue;
1743 } else if (!strcmp(args[cur_arg], "groups")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001744 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001745 cur_arg += 2;
1746 continue;
1747 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001748 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1749 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001750 err_code |= ERR_ALERT | ERR_FATAL;
1751 goto out;
1752 }
1753 }
1754 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001755 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 +01001756 err_code |= ERR_ALERT | ERR_FATAL;
1757 }
1758
1759out:
1760 return err_code;
1761}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001762
Christopher Faulet79bdef32016-11-04 22:36:15 +01001763int
1764cfg_parse_scope(const char *file, int linenum, char *line)
1765{
1766 char *beg, *end, *scope = NULL;
1767 int err_code = 0;
1768 const char *err;
1769
1770 beg = line + 1;
1771 end = strchr(beg, ']');
1772
1773 /* Detect end of scope declaration */
1774 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001775 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1776 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001777 err_code |= ERR_ALERT | ERR_FATAL;
1778 goto out;
1779 }
1780
1781 /* Get scope name and check its validity */
1782 scope = my_strndup(beg, end-beg);
1783 err = invalid_char(scope);
1784 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001785 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1786 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001787 err_code |= ERR_ALERT | ERR_ABORT;
1788 goto out;
1789 }
1790
1791 /* Be sure to have a scope declaration alone on its line */
1792 line = end+1;
1793 while (isspace((unsigned char)*line))
1794 line++;
1795 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001796 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1797 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001798 err_code |= ERR_ALERT | ERR_ABORT;
1799 goto out;
1800 }
1801
1802 /* We have a valid scope declaration, save it */
1803 free(cfg_scope);
1804 cfg_scope = scope;
1805 scope = NULL;
1806
1807 out:
1808 free(scope);
1809 return err_code;
1810}
1811
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001812int
1813cfg_parse_track_sc_num(unsigned int *track_sc_num,
1814 const char *arg, const char *end, char **errmsg)
1815{
1816 const char *p;
1817 unsigned int num;
1818
1819 p = arg;
1820 num = read_uint64(&arg, end);
1821
1822 if (arg != end) {
1823 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1824 return -1;
1825 }
1826
1827 if (num >= MAX_SESS_STKCTR) {
1828 memprintf(errmsg, "%u track-sc number exceeding "
1829 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1830 return -1;
1831 }
1832
1833 *track_sc_num = num;
1834 return 0;
1835}
1836
Willy Tarreaubaaee002006-06-26 02:48:02 +02001837/*
1838 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001839 * Returns the error code, 0 if OK, or any combination of :
1840 * - ERR_ABORT: must abort ASAP
1841 * - ERR_FATAL: we can continue parsing but not start the service
1842 * - ERR_WARN: a warning has been emitted
1843 * - ERR_ALERT: an alert has been emitted
1844 * Only the two first ones can stop processing, the two others are just
1845 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001846 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001847int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001848{
William Lallemand64e84512015-05-12 14:25:37 +02001849 char *thisline;
1850 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001851 FILE *f;
1852 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001853 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001854 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001855 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001856 int readbytes = 0;
1857
1858 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001859 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001860 return -1;
1861 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001862
David Carlier97880bb2016-04-08 10:35:26 +01001863 if ((f=fopen(file,"r")) == NULL) {
1864 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001865 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001866 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001867
William Lallemandb2f07452015-05-12 14:27:13 +02001868next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001869 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001870 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001871 char *end;
1872 char *args[MAX_LINE_ARGS + 1];
1873 char *line = thisline;
William Lallemandf9873ba2015-05-05 17:37:14 +02001874 int dquote = 0; /* double quote */
1875 int squote = 0; /* simple quote */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001876
Willy Tarreaubaaee002006-06-26 02:48:02 +02001877 linenum++;
1878
1879 end = line + strlen(line);
1880
William Lallemand64e84512015-05-12 14:25:37 +02001881 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001882 /* Check if we reached the limit and the last char is not \n.
1883 * Watch out for the last line without the terminating '\n'!
1884 */
William Lallemand64e84512015-05-12 14:25:37 +02001885 char *newline;
1886 int newlinesize = linesize * 2;
1887
1888 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1889 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001890 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1891 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001892 err_code |= ERR_ALERT | ERR_FATAL;
1893 continue;
1894 }
1895
1896 readbytes = linesize - 1;
1897 linesize = newlinesize;
1898 thisline = newline;
1899 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001900 }
1901
William Lallemand64e84512015-05-12 14:25:37 +02001902 readbytes = 0;
1903
Willy Tarreaubaaee002006-06-26 02:48:02 +02001904 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001905 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001906 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001907
Christopher Faulet79bdef32016-11-04 22:36:15 +01001908
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001909 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001910 err_code |= cfg_parse_scope(file, linenum, line);
1911 goto next_line;
1912 }
1913
Willy Tarreaubaaee002006-06-26 02:48:02 +02001914 arg = 0;
1915 args[arg] = line;
1916
1917 while (*line && arg < MAX_LINE_ARGS) {
William Lallemandf9873ba2015-05-05 17:37:14 +02001918 if (*line == '"' && !squote) { /* double quote outside single quotes */
1919 if (dquote)
1920 dquote = 0;
1921 else
1922 dquote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001923 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001924 end--;
1925 }
1926 else if (*line == '\'' && !dquote) { /* single quote outside double quotes */
1927 if (squote)
1928 squote = 0;
1929 else
1930 squote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001931 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001932 end--;
1933 }
1934 else if (*line == '\\' && !squote) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001935 /* first, we'll replace \\, \<space>, \#, \r, \n, \t, \xXX with their
1936 * C equivalent value. Other combinations left unchanged (eg: \1).
1937 */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001938 int skip = 0;
1939 if (line[1] == ' ' || line[1] == '\\' || line[1] == '#') {
1940 *line = line[1];
1941 skip = 1;
1942 }
1943 else if (line[1] == 'r') {
1944 *line = '\r';
1945 skip = 1;
William Lallemandf9873ba2015-05-05 17:37:14 +02001946 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001947 else if (line[1] == 'n') {
1948 *line = '\n';
1949 skip = 1;
1950 }
1951 else if (line[1] == 't') {
1952 *line = '\t';
1953 skip = 1;
1954 }
1955 else if (line[1] == 'x') {
Emeric Brunb982a3d2010-01-04 15:45:53 +01001956 if ((line + 3 < end) && ishex(line[2]) && ishex(line[3])) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001957 unsigned char hex1, hex2;
1958 hex1 = toupper(line[2]) - '0';
1959 hex2 = toupper(line[3]) - '0';
1960 if (hex1 > 9) hex1 -= 'A' - '9' - 1;
1961 if (hex2 > 9) hex2 -= 'A' - '9' - 1;
1962 *line = (hex1<<4) + hex2;
1963 skip = 3;
1964 }
1965 else {
Tim Duesterhusac4930e2020-05-07 19:24:20 +02001966 ha_alert("parsing [%s:%d] : invalid or incomplete '\\x' sequence '%.*s' in '%s'.\n", file, linenum, 4, line, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02001967 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhuse6291952020-05-07 19:21:31 +02001968 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001969 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001970 } else if (line[1] == '"') {
1971 *line = '"';
1972 skip = 1;
1973 } else if (line[1] == '\'') {
1974 *line = '\'';
1975 skip = 1;
William Lallemandb2f07452015-05-12 14:27:13 +02001976 } else if (line[1] == '$' && dquote) { /* escaping of $ only inside double quotes */
1977 *line = '$';
1978 skip = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001979 }
1980 if (skip) {
Cyril Bontédd1b01d2009-12-06 13:43:42 +01001981 memmove(line + 1, line + 1 + skip, end - (line + skip));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001982 end -= skip;
1983 }
1984 line++;
1985 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001986 else if ((!squote && !dquote && *line == '#') || *line == '\n' || *line == '\r') {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001987 /* end of string, end of loop */
1988 *line = 0;
1989 break;
1990 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001991 else if (!squote && !dquote && isspace((unsigned char)*line)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001992 /* a non-escaped space is an argument separator */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001993 *line++ = '\0';
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001994 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001995 line++;
1996 args[++arg] = line;
1997 }
William Lallemandb2f07452015-05-12 14:27:13 +02001998 else if (dquote && *line == '$') {
1999 /* environment variables are evaluated inside double quotes */
2000 char *var_beg;
2001 char *var_end;
2002 char save_char;
2003 char *value;
2004 int val_len;
2005 int newlinesize;
2006 int braces = 0;
2007
2008 var_beg = line + 1;
2009 var_end = var_beg;
2010
2011 if (*var_beg == '{') {
2012 var_beg++;
2013 var_end++;
2014 braces = 1;
2015 }
2016
Willy Tarreau90807112020-02-25 08:16:33 +01002017 if (!isalpha((unsigned char)*var_beg) && *var_beg != '_') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002018 ha_alert("parsing [%s:%d] : Variable expansion: Unrecognized character '%c' in variable name.\n", file, linenum, *var_beg);
William Lallemandb2f07452015-05-12 14:27:13 +02002019 err_code |= ERR_ALERT | ERR_FATAL;
2020 goto next_line; /* skip current line */
2021 }
2022
Willy Tarreau90807112020-02-25 08:16:33 +01002023 while (isalnum((unsigned char)*var_end) || *var_end == '_')
William Lallemandb2f07452015-05-12 14:27:13 +02002024 var_end++;
2025
2026 save_char = *var_end;
2027 *var_end = '\0';
2028 value = getenv(var_beg);
2029 *var_end = save_char;
2030 val_len = value ? strlen(value) : 0;
2031
2032 if (braces) {
2033 if (*var_end == '}') {
2034 var_end++;
2035 braces = 0;
2036 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002037 ha_alert("parsing [%s:%d] : Variable expansion: Mismatched braces.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02002038 err_code |= ERR_ALERT | ERR_FATAL;
2039 goto next_line; /* skip current line */
2040 }
2041 }
2042
2043 newlinesize = (end - thisline) - (var_end - line) + val_len + 1;
2044
2045 /* if not enough space in thisline */
2046 if (newlinesize > linesize) {
2047 char *newline;
2048
2049 newline = realloc(thisline, newlinesize * sizeof(*thisline));
2050 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002051 ha_alert("parsing [%s:%d] : Variable expansion: Not enough memory.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02002052 err_code |= ERR_ALERT | ERR_FATAL;
2053 goto next_line; /* slip current line */
2054 }
2055 /* recompute pointers if realloc returns a new pointer */
2056 if (newline != thisline) {
2057 int i;
2058 int diff;
2059
2060 for (i = 0; i <= arg; i++) {
2061 diff = args[i] - thisline;
2062 args[i] = newline + diff;
2063 }
2064
2065 diff = var_end - thisline;
2066 var_end = newline + diff;
2067 diff = end - thisline;
2068 end = newline + diff;
2069 diff = line - thisline;
2070 line = newline + diff;
2071 thisline = newline;
2072 }
2073 linesize = newlinesize;
2074 }
2075
2076 /* insert value inside the line */
2077 memmove(line + val_len, var_end, end - var_end + 1);
2078 memcpy(line, value, val_len);
2079 end += val_len - (var_end - line);
2080 line += val_len;
2081 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002082 else {
2083 line++;
2084 }
2085 }
William Lallemandb2f07452015-05-12 14:27:13 +02002086
William Lallemandf9873ba2015-05-05 17:37:14 +02002087 if (dquote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002088 ha_alert("parsing [%s:%d] : Mismatched double quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002089 err_code |= ERR_ALERT | ERR_FATAL;
2090 }
2091
2092 if (squote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002093 ha_alert("parsing [%s:%d] : Mismatched simple quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002094 err_code |= ERR_ALERT | ERR_FATAL;
2095 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002096
2097 /* empty line */
2098 if (!**args)
2099 continue;
2100
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002101 if (*line) {
2102 /* we had to stop due to too many args.
2103 * Let's terminate the string, print the offending part then cut the
2104 * last arg.
2105 */
2106 while (*line && *line != '#' && *line != '\n' && *line != '\r')
2107 line++;
2108 *line = '\0';
2109
Christopher Faulet767a84b2017-11-24 16:50:31 +01002110 ha_alert("parsing [%s:%d]: line too long, truncating at word %d, position %ld: <%s>.\n",
2111 file, linenum, arg + 1, (long)(args[arg] - thisline + 1), args[arg]);
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002112 err_code |= ERR_ALERT | ERR_FATAL;
2113 args[arg] = line;
2114 }
2115
Willy Tarreau540abe42007-05-02 20:50:16 +02002116 /* zero out remaining args and ensure that at least one entry
2117 * is zeroed out.
2118 */
2119 while (++arg <= MAX_LINE_ARGS) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002120 args[arg] = line;
2121 }
2122
Willy Tarreau3842f002009-06-14 11:39:52 +02002123 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002124 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02002125 char *tmp;
2126
Willy Tarreau3842f002009-06-14 11:39:52 +02002127 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002128 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002129 for (arg=0; *args[arg+1]; arg++)
2130 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002131 *tmp = '\0'; // fix the next arg to \0
2132 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002133 }
Willy Tarreau3842f002009-06-14 11:39:52 +02002134 else if (!strcmp(args[0], "default")) {
2135 kwm = KWM_DEF;
2136 for (arg=0; *args[arg+1]; arg++)
2137 args[arg] = args[arg+1]; // shift args after inversion
2138 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002139
William Dauchyec730982019-10-27 20:08:10 +01002140 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2141 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002142 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
2143 strcmp(args[0], "insecure-fork-wanted") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002144 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002145 "supported only for options, log, busy-polling, "
Willy Tarreaud96f1122019-12-03 07:07:36 +01002146 "set-dumpable, strict-limits, and insecure-fork-wanted.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002147 err_code |= ERR_ALERT | ERR_FATAL;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002148 }
2149
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002150 /* detect section start */
2151 list_for_each_entry(ics, &sections, list) {
2152 if (strcmp(args[0], ics->section_name) == 0) {
2153 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002154 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002155 cs = ics;
2156 break;
2157 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002158 }
2159
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002160 if (pcs && pcs->post_section_parser) {
2161 err_code |= pcs->post_section_parser();
2162 if (err_code & ERR_ABORT)
2163 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002164 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002165 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002166
William Lallemandd2ff56d2017-10-16 11:06:50 +02002167 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002168 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002169 err_code |= ERR_ALERT | ERR_FATAL;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002170 } else {
William Lallemandd2ff56d2017-10-16 11:06:50 +02002171 err_code |= cs->section_parser(file, linenum, args, kwm);
2172 if (err_code & ERR_ABORT)
2173 goto err;
2174 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002175 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002176
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002177 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002178 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002179
2180err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002181 free(cfg_scope);
2182 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002183 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002184 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002185 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002186 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002187}
2188
Willy Tarreau64ab6072014-09-16 12:17:36 +02002189/* This function propagates processes from frontend <from> to backend <to> so
2190 * that it is always guaranteed that a backend pointed to by a frontend is
2191 * bound to all of its processes. After that, if the target is a "listen"
2192 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002193 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002194 * checked first to ensure that <to> is already bound to all processes of
2195 * <from>, there is no risk of looping and we ensure to follow the shortest
2196 * path to the destination.
2197 *
2198 * It is possible to set <to> to NULL for the first call so that the function
2199 * takes care of visiting the initial frontend in <from>.
2200 *
2201 * It is important to note that the function relies on the fact that all names
2202 * have already been resolved.
2203 */
2204void propagate_processes(struct proxy *from, struct proxy *to)
2205{
2206 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002207
2208 if (to) {
2209 /* check whether we need to go down */
2210 if (from->bind_proc &&
2211 (from->bind_proc & to->bind_proc) == from->bind_proc)
2212 return;
2213
2214 if (!from->bind_proc && !to->bind_proc)
2215 return;
2216
2217 to->bind_proc = from->bind_proc ?
2218 (to->bind_proc | from->bind_proc) : 0;
2219
2220 /* now propagate down */
2221 from = to;
2222 }
2223
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002224 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002225 return;
2226
Willy Tarreauf6b70012014-12-18 14:00:43 +01002227 if (from->state == PR_STSTOPPED)
2228 return;
2229
Willy Tarreau64ab6072014-09-16 12:17:36 +02002230 /* default_backend */
2231 if (from->defbe.be)
2232 propagate_processes(from, from->defbe.be);
2233
2234 /* use_backend */
2235 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002236 if (rule->dynamic)
2237 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002238 to = rule->be.backend;
2239 propagate_processes(from, to);
2240 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002241}
2242
Willy Tarreaubb925012009-07-23 13:36:36 +02002243/*
2244 * Returns the error code, 0 if OK, or any combination of :
2245 * - ERR_ABORT: must abort ASAP
2246 * - ERR_FATAL: we can continue parsing but not start the service
2247 * - ERR_WARN: a warning has been emitted
2248 * - ERR_ALERT: an alert has been emitted
2249 * Only the two first ones can stop processing, the two others are just
2250 * indicators.
2251 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002252int check_config_validity()
2253{
2254 int cfgerr = 0;
2255 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002256 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002257 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002258 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002259 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002260 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002261 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002262 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002263 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002264
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002265 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002266 /*
2267 * Now, check for the integrity of all that we have collected.
2268 */
2269
2270 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002271 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002272
Willy Tarreau193b8c62012-11-22 00:17:38 +01002273 if (!global.tune.max_http_hdr)
2274 global.tune.max_http_hdr = MAX_HTTP_HDR;
2275
2276 if (!global.tune.cookie_len)
2277 global.tune.cookie_len = CAPTURE_LEN;
2278
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002279 if (!global.tune.requri_len)
2280 global.tune.requri_len = REQURI_LEN;
2281
Willy Tarreau149ab772019-01-26 14:27:06 +01002282 if (!global.nbthread) {
2283 /* nbthread not set, thus automatic. In this case, and only if
2284 * running on a single process, we enable the same number of
2285 * threads as the number of CPUs the process is bound to. This
2286 * allows to easily control the number of threads using taskset.
2287 */
2288 global.nbthread = 1;
2289#if defined(USE_THREAD)
2290 if (global.nbproc == 1)
2291 global.nbthread = thread_cpus_enabled_at_boot;
2292 all_threads_mask = nbits(global.nbthread);
2293#endif
2294 }
2295
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002296 if (global.nbproc > 1 && global.nbthread > 1) {
2297 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2298 err_code |= ERR_ALERT | ERR_FATAL;
2299 goto out;
2300 }
2301
Willy Tarreaubafbe012017-11-24 17:34:44 +01002302 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002303
Willy Tarreaubafbe012017-11-24 17:34:44 +01002304 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002305
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002306 /* Post initialisation of the users and groups lists. */
2307 err_code = userlist_postinit();
2308 if (err_code != ERR_NONE)
2309 goto out;
2310
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002311 /* first, we will invert the proxy list order */
2312 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002313 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002314 struct proxy *next;
2315
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002316 next = proxies_list->next;
2317 proxies_list->next = curproxy;
2318 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002319 if (!next)
2320 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002321 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002322 }
2323
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002324 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002325 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002326 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002327 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002328 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002329 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002330 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002331 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002332
Willy Tarreau050536d2012-10-04 08:47:34 +02002333 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002334 /* proxy ID not set, use automatic numbering with first
2335 * spare entry starting with next_pxid.
2336 */
2337 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2338 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2339 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002340 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002341 next_pxid++;
2342
Willy Tarreau55ea7572007-06-17 19:56:27 +02002343
Willy Tarreaubaaee002006-06-26 02:48:02 +02002344 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002345 /* ensure we don't keep listeners uselessly bound */
2346 stop_proxy(curproxy);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002347 if (curproxy->table) {
2348 free((void *)curproxy->table->peers.name);
2349 curproxy->table->peers.p = NULL;
2350 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002351 continue;
2352 }
2353
Willy Tarreau102df612014-05-07 23:56:38 +02002354 /* Check multi-process mode compatibility for the current proxy */
2355
2356 if (curproxy->bind_proc) {
2357 /* an explicit bind-process was specified, let's check how many
2358 * processes remain.
2359 */
David Carliere6c39412015-07-02 07:00:17 +00002360 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002361
Willy Tarreaua38a7172019-02-02 17:11:28 +01002362 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002363 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002364 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 +02002365 curproxy->bind_proc = 1;
2366 }
2367 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002368 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 +02002369 curproxy->bind_proc = 0;
2370 }
2371 }
2372
Willy Tarreau3d209582014-05-09 17:06:11 +02002373 /* check and reduce the bind-proc of each listener */
2374 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2375 unsigned long mask;
2376
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002377 /* HTTP frontends with "h2" as ALPN/NPN will work in
2378 * HTTP/2 and absolutely require buffers 16kB or larger.
2379 */
2380#ifdef USE_OPENSSL
2381 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2382#ifdef OPENSSL_NPN_NEGOTIATED
2383 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002384 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002385 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",
2386 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002387 cfgerr++;
2388 }
2389#endif
2390#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2391 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002392 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002393 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",
2394 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002395 cfgerr++;
2396 }
2397#endif
2398 } /* HTTP && bufsize < 16384 */
2399#endif
2400
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002401 /* detect and address thread affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002402 mask = thread_mask(bind_conf->bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002403 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002404 unsigned long new_mask = 0;
2405
2406 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002407 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002408 mask >>= global.nbthread;
2409 }
2410
Willy Tarreaua36b3242019-02-02 13:14:34 +01002411 bind_conf->bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002412 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",
2413 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2414 }
2415
2416 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002417 mask = proc_mask(bind_conf->bind_proc) & proc_mask(curproxy->bind_proc);
2418 if (!(mask & all_proc_mask)) {
2419 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
2420 nbproc = my_popcountl(bind_conf->bind_proc);
2421 bind_conf->bind_proc = proc_mask(bind_conf->bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002422
Willy Tarreaua36b3242019-02-02 13:14:34 +01002423 if (!bind_conf->bind_proc && nbproc == 1) {
2424 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",
2425 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2426 bind_conf->bind_proc = mask & ~(mask - 1);
2427 }
2428 else if (!bind_conf->bind_proc && nbproc > 1) {
2429 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",
2430 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2431 bind_conf->bind_proc = 0;
2432 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002433 }
2434 }
2435
Willy Tarreauff01a212009-03-15 13:46:16 +01002436 switch (curproxy->mode) {
2437 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002438 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002439 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002440 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2441 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002442 cfgerr++;
2443 }
2444
2445 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002446 ha_warning("config : servers will be ignored for %s '%s'.\n",
2447 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002448 break;
2449
2450 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002451 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002452 break;
2453
2454 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002455 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002456 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002457
2458 case PR_MODE_CLI:
2459 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2460 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002461 }
2462
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002463 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002464 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2465 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002466 err_code |= ERR_WARN;
2467 }
2468
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002469 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002470 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002471 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002472 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2473 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002474 cfgerr++;
2475 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002476#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002477 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002478 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2479 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002480 cfgerr++;
2481 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002482#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002483 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002484 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2485 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002486 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002487 }
2488 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002489 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002490 /* If no LB algo is set in a backend, and we're not in
2491 * transparent mode, dispatch mode nor proxy mode, we
2492 * want to use balance roundrobin by default.
2493 */
2494 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2495 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002496 }
2497 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002498
Willy Tarreau1620ec32011-08-06 17:05:02 +02002499 if (curproxy->options & PR_O_DISPATCH)
2500 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2501 else if (curproxy->options & PR_O_HTTP_PROXY)
2502 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2503 else if (curproxy->options & PR_O_TRANSP)
2504 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002505
Christopher Faulete5870d82020-04-15 11:32:03 +02002506 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2507 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2508 proxy_type_str(curproxy), curproxy->id);
2509 err_code |= ERR_WARN;
2510 }
2511
2512 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002513 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002514 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002515 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2516 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002517 err_code |= ERR_WARN;
2518 curproxy->options &= ~PR_O_DISABLE404;
2519 }
2520 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002521 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2522 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002523 err_code |= ERR_WARN;
2524 curproxy->options &= ~PR_O2_CHK_SNDST;
2525 }
Willy Tarreauef781042010-01-27 11:53:01 +01002526 }
2527
Simon Horman98637e52014-06-20 12:30:16 +09002528 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2529 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002530 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2531 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002532 cfgerr++;
2533 }
2534 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002535 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2536 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002537 cfgerr++;
2538 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002539 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2540 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2541 curproxy->id, "option external-check");
2542 err_code |= ERR_WARN;
2543 }
Simon Horman98637e52014-06-20 12:30:16 +09002544 }
2545
Simon Horman64e34162015-02-06 11:11:57 +09002546 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002547 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002548 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2549 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2550 "'email-alert myhostname', or 'email-alert to' "
2551 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2552 "to be present).\n",
2553 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002554 err_code |= ERR_WARN;
2555 free_email_alert(curproxy);
2556 }
2557 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002558 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002559 }
2560
Simon Horman98637e52014-06-20 12:30:16 +09002561 if (curproxy->check_command) {
2562 int clear = 0;
2563 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002564 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2565 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002566 err_code |= ERR_WARN;
2567 clear = 1;
2568 }
2569 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002570 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2571 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002572 cfgerr++;
2573 }
2574 if (clear) {
2575 free(curproxy->check_command);
2576 curproxy->check_command = NULL;
2577 }
2578 }
2579
2580 if (curproxy->check_path) {
2581 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002582 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2583 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002584 err_code |= ERR_WARN;
2585 free(curproxy->check_path);
2586 curproxy->check_path = NULL;
2587 }
2588 }
2589
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002590 /* if a default backend was specified, let's find it */
2591 if (curproxy->defbe.name) {
2592 struct proxy *target;
2593
Willy Tarreauafb39922015-05-26 12:04:09 +02002594 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002595 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002596 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2597 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002598 cfgerr++;
2599 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002600 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2601 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002602 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002603 } else if (target->mode != curproxy->mode &&
2604 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2605
Christopher Faulet767a84b2017-11-24 16:50:31 +01002606 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2607 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2608 curproxy->conf.file, curproxy->conf.line,
2609 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2610 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002611 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002612 } else {
2613 free(curproxy->defbe.name);
2614 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002615 /* Emit a warning if this proxy also has some servers */
2616 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002617 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2618 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002619 err_code |= ERR_WARN;
2620 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002621 }
2622 }
2623
Willy Tarreau55ea7572007-06-17 19:56:27 +02002624 /* find the target proxy for 'use_backend' rules */
2625 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002626 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002627 struct logformat_node *node;
2628 char *pxname;
2629
2630 /* Try to parse the string as a log format expression. If the result
2631 * of the parsing is only one entry containing a simple string, then
2632 * it's a standard string corresponding to a static rule, thus the
2633 * parsing is cancelled and be.name is restored to be resolved.
2634 */
2635 pxname = rule->be.name;
2636 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002637 curproxy->conf.args.ctx = ARGC_UBK;
2638 curproxy->conf.args.file = rule->file;
2639 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002640 err = NULL;
2641 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002642 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2643 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002644 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002645 cfgerr++;
2646 continue;
2647 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002648 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2649
2650 if (!LIST_ISEMPTY(&rule->be.expr)) {
2651 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2652 rule->dynamic = 1;
2653 free(pxname);
2654 continue;
2655 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002656 /* Only one element in the list, a simple string: free the expression and
2657 * fall back to static rule
2658 */
2659 LIST_DEL(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002660 free(node->arg);
2661 free(node);
2662 }
2663
2664 rule->dynamic = 0;
2665 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002666
Willy Tarreauafb39922015-05-26 12:04:09 +02002667 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002668 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002669 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2670 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002671 cfgerr++;
2672 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002673 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2674 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002675 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002676 } else if (target->mode != curproxy->mode &&
2677 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2678
Christopher Faulet767a84b2017-11-24 16:50:31 +01002679 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2680 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2681 curproxy->conf.file, curproxy->conf.line,
2682 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2683 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002684 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002685 } else {
2686 free((void *)rule->be.name);
2687 rule->be.backend = target;
2688 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002689 }
2690
Willy Tarreau64ab6072014-09-16 12:17:36 +02002691 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002692 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002693 struct server *target;
2694 struct logformat_node *node;
2695 char *server_name;
2696
2697 /* We try to parse the string as a log format expression. If the result of the parsing
2698 * is only one entry containing a single string, then it's a standard string corresponding
2699 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2700 */
2701 server_name = srule->srv.name;
2702 LIST_INIT(&srule->expr);
2703 curproxy->conf.args.ctx = ARGC_USRV;
2704 err = NULL;
2705 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2706 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2707 srule->file, srule->line, server_name, err);
2708 free(err);
2709 cfgerr++;
2710 continue;
2711 }
2712 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2713
2714 if (!LIST_ISEMPTY(&srule->expr)) {
2715 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2716 srule->dynamic = 1;
2717 free(server_name);
2718 continue;
2719 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002720 /* Only one element in the list, a simple string: free the expression and
2721 * fall back to static rule
2722 */
2723 LIST_DEL(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002724 free(node->arg);
2725 free(node);
2726 }
2727
2728 srule->dynamic = 0;
2729 srule->srv.name = server_name;
2730 target = findserver(curproxy, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002731
2732 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002733 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2734 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002735 cfgerr++;
2736 continue;
2737 }
2738 free((void *)srule->srv.name);
2739 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002740 }
2741
Emeric Brunb982a3d2010-01-04 15:45:53 +01002742 /* find the target table for 'stick' rules */
2743 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002744 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002745
Emeric Brun1d33b292010-01-04 15:47:17 +01002746 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2747 if (mrule->flags & STK_IS_STORE)
2748 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2749
Emeric Brunb982a3d2010-01-04 15:45:53 +01002750 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002751 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002752 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002753 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002754
2755 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002756 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002757 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002758 cfgerr++;
2759 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002760 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002761 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2762 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002763 cfgerr++;
2764 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002765 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002766 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2767 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002768 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002769 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002770 else {
2771 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002772 mrule->table.t = target;
2773 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002774 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002775 if (!in_proxies_list(target->proxies_list, curproxy)) {
2776 curproxy->next_stkt_ref = target->proxies_list;
2777 target->proxies_list = curproxy;
2778 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002779 }
2780 }
2781
2782 /* find the target table for 'store response' rules */
2783 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002784 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002785
Emeric Brun1d33b292010-01-04 15:47:17 +01002786 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2787
Emeric Brunb982a3d2010-01-04 15:45:53 +01002788 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002789 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002790 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002791 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002792
2793 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002794 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002795 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002796 cfgerr++;
2797 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002798 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002799 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2800 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002801 cfgerr++;
2802 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002803 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002804 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2805 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002806 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002807 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002808 else {
2809 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002810 mrule->table.t = target;
2811 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002812 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002813 if (!in_proxies_list(target->proxies_list, curproxy)) {
2814 curproxy->next_stkt_ref = target->proxies_list;
2815 target->proxies_list = curproxy;
2816 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002817 }
2818 }
2819
Christopher Faulete4e830d2017-09-18 14:51:41 +02002820 /* check validity for 'tcp-request' layer 4 rules */
2821 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2822 err = NULL;
2823 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002824 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002825 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002826 cfgerr++;
2827 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002828 }
2829
Christopher Faulete4e830d2017-09-18 14:51:41 +02002830 /* check validity for 'tcp-request' layer 5 rules */
2831 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2832 err = NULL;
2833 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002834 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002835 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002836 cfgerr++;
2837 }
2838 }
2839
Christopher Faulete4e830d2017-09-18 14:51:41 +02002840 /* check validity for 'tcp-request' layer 6 rules */
2841 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2842 err = NULL;
2843 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002844 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002845 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002846 cfgerr++;
2847 }
2848 }
2849
Christopher Faulete4e830d2017-09-18 14:51:41 +02002850 /* check validity for 'http-request' layer 7 rules */
2851 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2852 err = NULL;
2853 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002854 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002855 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002856 cfgerr++;
2857 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002858 }
2859
Christopher Faulete4e830d2017-09-18 14:51:41 +02002860 /* check validity for 'http-response' layer 7 rules */
2861 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2862 err = NULL;
2863 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002864 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002865 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002866 cfgerr++;
2867 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002868 }
2869
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002870 /* check validity for 'http-after-response' layer 7 rules */
2871 list_for_each_entry(arule, &curproxy->http_after_res_rules, list) {
2872 err = NULL;
2873 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
2874 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
2875 free(err);
2876 cfgerr++;
2877 }
2878 }
2879
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002880 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002881 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002882
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002883 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002884 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
2885 free((void *)curproxy->table->peers.name);
2886 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002887 break;
2888 }
2889 }
2890
2891 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002892 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002893 curproxy->id, curproxy->table->peers.name);
2894 free((void *)curproxy->table->peers.name);
2895 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002896 cfgerr++;
2897 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002898 else if (curpeers->state == PR_STSTOPPED) {
2899 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002900 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002901 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002902 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002903 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2904 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002905 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002906 cfgerr++;
2907 }
2908 }
2909
Simon Horman9dc49962015-01-30 11:22:59 +09002910
2911 if (curproxy->email_alert.mailers.name) {
2912 struct mailers *curmailers = mailers;
2913
2914 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002915 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002916 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002917 }
Simon Horman9dc49962015-01-30 11:22:59 +09002918 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002919 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2920 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002921 free_email_alert(curproxy);
2922 cfgerr++;
2923 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002924 else {
2925 err = NULL;
2926 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002927 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002928 free(err);
2929 cfgerr++;
2930 }
2931 }
Simon Horman9dc49962015-01-30 11:22:59 +09002932 }
2933
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002934 if (curproxy->uri_auth && curproxy->uri_auth != defproxy.uri_auth &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002935 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002936 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002937 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2938 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002939 cfgerr++;
2940 goto out_uri_auth_compat;
2941 }
2942
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002943 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
2944 (curproxy->uri_auth != defproxy.uri_auth ||
2945 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002946 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002947 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002948 int i = 0;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002949 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2950 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002951
2952 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002953 uri_auth_compat_req[i++] = "realm";
2954 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2955 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002956
Willy Tarreau95fa4692010-02-01 13:05:50 +01002957 uri_auth_compat_req[i++] = "unless";
2958 uri_auth_compat_req[i++] = "{";
2959 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2960 uri_auth_compat_req[i++] = "}";
2961 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002962
Willy Tarreauff011f22011-01-06 17:51:27 +01002963 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2964 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002965 cfgerr++;
2966 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002967 }
2968
Willy Tarreauff011f22011-01-06 17:51:27 +01002969 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002970
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002971 if (curproxy->uri_auth->auth_realm) {
2972 free(curproxy->uri_auth->auth_realm);
2973 curproxy->uri_auth->auth_realm = NULL;
2974 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002975 }
2976out_uri_auth_compat:
2977
Dragan Dosen43885c72015-10-01 13:18:13 +02002978 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002979 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002980 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2981 if (!curproxy->conf.logformat_sd_string) {
2982 /* set the default logformat_sd_string */
2983 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2984 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002985 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002986 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002987 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002988
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002989 /* compile the log format */
2990 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002991 if (curproxy->conf.logformat_string != default_http_log_format &&
2992 curproxy->conf.logformat_string != default_tcp_log_format &&
2993 curproxy->conf.logformat_string != clf_http_log_format)
2994 free(curproxy->conf.logformat_string);
2995 curproxy->conf.logformat_string = NULL;
2996 free(curproxy->conf.lfs_file);
2997 curproxy->conf.lfs_file = NULL;
2998 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002999
3000 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3001 free(curproxy->conf.logformat_sd_string);
3002 curproxy->conf.logformat_sd_string = NULL;
3003 free(curproxy->conf.lfsd_file);
3004 curproxy->conf.lfsd_file = NULL;
3005 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003006 }
3007
Willy Tarreau62a61232013-04-12 18:13:46 +02003008 if (curproxy->conf.logformat_string) {
3009 curproxy->conf.args.ctx = ARGC_LOG;
3010 curproxy->conf.args.file = curproxy->conf.lfs_file;
3011 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003012 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003013 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003014 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003015 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3016 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003017 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003018 cfgerr++;
3019 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003020 curproxy->conf.args.file = NULL;
3021 curproxy->conf.args.line = 0;
3022 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003023
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003024 if (curproxy->conf.logformat_sd_string) {
3025 curproxy->conf.args.ctx = ARGC_LOGSD;
3026 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3027 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003028 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003029 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003030 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003031 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3032 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003033 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003034 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003035 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003036 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3037 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003038 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003039 cfgerr++;
3040 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003041 curproxy->conf.args.file = NULL;
3042 curproxy->conf.args.line = 0;
3043 }
3044
Willy Tarreau62a61232013-04-12 18:13:46 +02003045 if (curproxy->conf.uniqueid_format_string) {
3046 curproxy->conf.args.ctx = ARGC_UIF;
3047 curproxy->conf.args.file = curproxy->conf.uif_file;
3048 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003049 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003050 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003051 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003052 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3053 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003054 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003055 cfgerr++;
3056 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003057 curproxy->conf.args.file = NULL;
3058 curproxy->conf.args.line = 0;
3059 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003060
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003061 /* only now we can check if some args remain unresolved.
3062 * This must be done after the users and groups resolution.
3063 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003064 cfgerr += smp_resolve_args(curproxy);
3065 if (!cfgerr)
3066 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003067
Willy Tarreau2738a142006-07-08 17:28:09 +02003068 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003069 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003070 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003071 (!curproxy->timeout.connect ||
3072 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003073 ha_warning("config : missing timeouts for %s '%s'.\n"
3074 " | While not properly invalid, you will certainly encounter various problems\n"
3075 " | with such a configuration. To fix this, please ensure that all following\n"
3076 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3077 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003078 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003079 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003080
Willy Tarreau1fa31262007-12-03 00:36:16 +01003081 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3082 * We must still support older configurations, so let's find out whether those
3083 * parameters have been set or must be copied from contimeouts.
3084 */
3085 if (curproxy != &defproxy) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003086 if (!curproxy->timeout.tarpit ||
3087 curproxy->timeout.tarpit == defproxy.timeout.tarpit) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003088 /* tarpit timeout not set. We search in the following order:
3089 * default.tarpit, curr.connect, default.connect.
3090 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003091 if (defproxy.timeout.tarpit)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003092 curproxy->timeout.tarpit = defproxy.timeout.tarpit;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003093 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003094 curproxy->timeout.tarpit = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003095 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003096 curproxy->timeout.tarpit = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003097 }
3098 if ((curproxy->cap & PR_CAP_BE) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003099 (!curproxy->timeout.queue ||
3100 curproxy->timeout.queue == defproxy.timeout.queue)) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003101 /* queue timeout not set. We search in the following order:
3102 * default.queue, curr.connect, default.connect.
3103 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003104 if (defproxy.timeout.queue)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003105 curproxy->timeout.queue = defproxy.timeout.queue;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003106 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003107 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003108 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003109 curproxy->timeout.queue = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003110 }
3111 }
3112
Christopher Faulete5870d82020-04-15 11:32:03 +02003113 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003114 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
3115 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003116 err_code |= ERR_WARN;
3117 }
3118
Willy Tarreau193b8c62012-11-22 00:17:38 +01003119 /* ensure that cookie capture length is not too large */
3120 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003121 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3122 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003123 err_code |= ERR_WARN;
3124 curproxy->capture_len = global.tune.cookie_len - 1;
3125 }
3126
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003127 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003128 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003129 curproxy->req_cap_pool = create_pool("ptrcap",
3130 curproxy->nb_req_cap * sizeof(char *),
3131 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003132 }
3133
3134 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003135 curproxy->rsp_cap_pool = create_pool("ptrcap",
3136 curproxy->nb_rsp_cap * sizeof(char *),
3137 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003138 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003139
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003140 switch (curproxy->load_server_state_from_file) {
3141 case PR_SRV_STATE_FILE_UNSPEC:
3142 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3143 break;
3144 case PR_SRV_STATE_FILE_GLOBAL:
3145 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003146 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",
3147 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003148 err_code |= ERR_WARN;
3149 }
3150 break;
3151 }
3152
Willy Tarreaubaaee002006-06-26 02:48:02 +02003153 /* first, we will invert the servers list order */
3154 newsrv = NULL;
3155 while (curproxy->srv) {
3156 struct server *next;
3157
3158 next = curproxy->srv->next;
3159 curproxy->srv->next = newsrv;
3160 newsrv = curproxy->srv;
3161 if (!next)
3162 break;
3163 curproxy->srv = next;
3164 }
3165
Willy Tarreau17edc812014-01-03 12:14:34 +01003166 /* Check that no server name conflicts. This causes trouble in the stats.
3167 * We only emit a warning for the first conflict affecting each server,
3168 * in order to avoid combinatory explosion if all servers have the same
3169 * name. We do that only for servers which do not have an explicit ID,
3170 * because these IDs were made also for distinguishing them and we don't
3171 * want to annoy people who correctly manage them.
3172 */
3173 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3174 struct server *other_srv;
3175
3176 if (newsrv->puid)
3177 continue;
3178
3179 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3180 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003181 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 +01003182 newsrv->conf.file, newsrv->conf.line,
3183 proxy_type_str(curproxy), curproxy->id,
3184 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003185 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003186 break;
3187 }
3188 }
3189 }
3190
Willy Tarreaudd701652010-05-25 23:03:02 +02003191 /* assign automatic UIDs to servers which don't have one yet */
3192 next_id = 1;
3193 newsrv = curproxy->srv;
3194 while (newsrv != NULL) {
3195 if (!newsrv->puid) {
3196 /* server ID not set, use automatic numbering with first
3197 * spare entry starting with next_svid.
3198 */
3199 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3200 newsrv->conf.id.key = newsrv->puid = next_id;
3201 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003202 newsrv->conf.name.key = newsrv->id;
3203 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003204 }
3205 next_id++;
3206 newsrv = newsrv->next;
3207 }
3208
Willy Tarreau20697042007-11-15 23:26:18 +01003209 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003210 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003211
Willy Tarreau62c3be22012-01-20 13:12:32 +01003212 /*
3213 * If this server supports a maxconn parameter, it needs a dedicated
3214 * tasks to fill the emptied slots when a connection leaves.
3215 * Also, resolve deferred tracking dependency if needed.
3216 */
3217 newsrv = curproxy->srv;
3218 while (newsrv != NULL) {
3219 if (newsrv->minconn > newsrv->maxconn) {
3220 /* Only 'minconn' was specified, or it was higher than or equal
3221 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3222 * this will avoid further useless expensive computations.
3223 */
3224 newsrv->maxconn = newsrv->minconn;
3225 } else if (newsrv->maxconn && !newsrv->minconn) {
3226 /* minconn was not specified, so we set it to maxconn */
3227 newsrv->minconn = newsrv->maxconn;
3228 }
3229
Willy Tarreau17d45382016-12-22 21:16:08 +01003230 /* this will also properly set the transport layer for prod and checks */
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003231 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 || (newsrv->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003232 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3233 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3234 }
Emeric Brun94324a42012-10-11 14:00:19 +02003235
Willy Tarreau034c88c2017-01-23 23:36:45 +01003236 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3237 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3238 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3239 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",
3240 newsrv->conf.file, newsrv->conf.line,
3241 proxy_type_str(curproxy), curproxy->id,
3242 newsrv->id);
3243
Willy Tarreau62c3be22012-01-20 13:12:32 +01003244 if (newsrv->trackit) {
3245 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003246 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003247 char *pname, *sname;
3248
3249 pname = newsrv->trackit;
3250 sname = strrchr(pname, '/');
3251
3252 if (sname)
3253 *sname++ = '\0';
3254 else {
3255 sname = pname;
3256 pname = NULL;
3257 }
3258
3259 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003260 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003261 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003262 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3263 proxy_type_str(curproxy), curproxy->id,
3264 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003265 cfgerr++;
3266 goto next_srv;
3267 }
3268 } else
3269 px = curproxy;
3270
3271 srv = findserver(px, sname);
3272 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003273 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3274 proxy_type_str(curproxy), curproxy->id,
3275 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003276 cfgerr++;
3277 goto next_srv;
3278 }
3279
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003280 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003281 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3282 "tracking as it does not have any check nor agent enabled.\n",
3283 proxy_type_str(curproxy), curproxy->id,
3284 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003285 cfgerr++;
3286 goto next_srv;
3287 }
3288
3289 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3290
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003291 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003292 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3293 "belongs to a tracking chain looping back to %s/%s.\n",
3294 proxy_type_str(curproxy), curproxy->id,
3295 newsrv->id, px->id, srv->id, px->id,
3296 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003297 cfgerr++;
3298 goto next_srv;
3299 }
3300
3301 if (curproxy != px &&
3302 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003303 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3304 "tracking: disable-on-404 option inconsistency.\n",
3305 proxy_type_str(curproxy), curproxy->id,
3306 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003307 cfgerr++;
3308 goto next_srv;
3309 }
3310
Willy Tarreau62c3be22012-01-20 13:12:32 +01003311 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003312 newsrv->tracknext = srv->trackers;
3313 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003314
3315 free(newsrv->trackit);
3316 newsrv->trackit = NULL;
3317 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003318
Willy Tarreau62c3be22012-01-20 13:12:32 +01003319 next_srv:
3320 newsrv = newsrv->next;
3321 }
3322
Olivier Houchard4e694042017-03-14 20:01:29 +01003323 /*
3324 * Try to generate dynamic cookies for servers now.
3325 * It couldn't be done earlier, since at the time we parsed
3326 * the server line, we may not have known yet that we
3327 * should use dynamic cookies, or the secret key may not
3328 * have been provided yet.
3329 */
3330 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3331 newsrv = curproxy->srv;
3332 while (newsrv != NULL) {
3333 srv_set_dyncookie(newsrv);
3334 newsrv = newsrv->next;
3335 }
3336
3337 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003338 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003339 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003340 */
3341
3342 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3343 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3344 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003345 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3346 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3347 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003348 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3349 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3350 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003351 } else {
3352 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3353 fwrr_init_server_groups(curproxy);
3354 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003355 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003356
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003357 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003358 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3359 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3360 fwlc_init_server_tree(curproxy);
3361 } else {
3362 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3363 fas_init_server_tree(curproxy);
3364 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003365 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003366
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003367 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003368 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3369 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3370 chash_init_server_tree(curproxy);
3371 } else {
3372 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3373 init_server_map(curproxy);
3374 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003375 break;
3376 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003377 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003378
3379 if (curproxy->options & PR_O_LOGASAP)
3380 curproxy->to_log &= ~LW_BYTES;
3381
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003382 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003383 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3384 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003385 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3386 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003387 err_code |= ERR_WARN;
3388 }
3389
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003390 if (curproxy->mode != PR_MODE_HTTP) {
3391 int optnum;
3392
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003393 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003394 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3395 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003396 err_code |= ERR_WARN;
3397 curproxy->uri_auth = NULL;
3398 }
3399
Willy Tarreaude7dc882017-03-10 11:49:21 +01003400 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003401 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3402 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003403 err_code |= ERR_WARN;
3404 }
3405
3406 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003407 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3408 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003409 err_code |= ERR_WARN;
3410 }
3411
3412 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003413 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3414 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003415 err_code |= ERR_WARN;
3416 }
3417
Willy Tarreaude7dc882017-03-10 11:49:21 +01003418 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003419 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3420 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003421 err_code |= ERR_WARN;
3422 }
3423
Willy Tarreau87cf5142011-08-19 22:57:24 +02003424 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003425 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3426 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003427 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003428 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003429 }
3430
3431 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003432 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3433 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003434 err_code |= ERR_WARN;
3435 curproxy->options &= ~PR_O_ORGTO;
3436 }
3437
3438 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3439 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3440 (curproxy->cap & cfg_opts[optnum].cap) &&
3441 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003442 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3443 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003444 err_code |= ERR_WARN;
3445 curproxy->options &= ~cfg_opts[optnum].val;
3446 }
3447 }
3448
3449 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3450 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3451 (curproxy->cap & cfg_opts2[optnum].cap) &&
3452 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003453 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3454 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003455 err_code |= ERR_WARN;
3456 curproxy->options2 &= ~cfg_opts2[optnum].val;
3457 }
3458 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003459
Willy Tarreau29fbe512015-08-20 19:35:14 +02003460#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003461 if (curproxy->conn_src.bind_hdr_occ) {
3462 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003463 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3464 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003465 err_code |= ERR_WARN;
3466 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003467#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003468 }
3469
Willy Tarreaubaaee002006-06-26 02:48:02 +02003470 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003471 * ensure that we're not cross-dressing a TCP server into HTTP.
3472 */
3473 newsrv = curproxy->srv;
3474 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003475 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003476 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3477 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003478 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003479 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003480
Willy Tarreau0cec3312011-10-31 13:49:26 +01003481 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003482 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3483 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003484 err_code |= ERR_WARN;
3485 }
3486
Willy Tarreauc93cd162014-05-13 15:54:22 +02003487 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003488 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3489 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003490 err_code |= ERR_WARN;
3491 }
3492
Willy Tarreau29fbe512015-08-20 19:35:14 +02003493#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003494 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3495 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003496 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3497 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003498 err_code |= ERR_WARN;
3499 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003500#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003501
Willy Tarreau46deab62018-04-28 07:18:15 +02003502 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3503 curproxy->options &= ~PR_O_REUSE_MASK;
3504
Willy Tarreau21d2af32008-02-14 20:25:24 +01003505 newsrv = newsrv->next;
3506 }
3507
Christopher Fauletd7c91962015-04-30 11:48:27 +02003508 /* Check filter configuration, if any */
3509 cfgerr += flt_check(curproxy);
3510
Willy Tarreauc1a21672009-08-16 22:37:44 +02003511 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003512 if (!curproxy->accept)
3513 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003514
Willy Tarreauc1a21672009-08-16 22:37:44 +02003515 if (curproxy->tcp_req.inspect_delay ||
3516 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003517 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003518
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003519 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003520 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003521 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003522 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003523
William Lallemandcf62f7e2018-10-26 14:47:40 +02003524 if (curproxy->mode == PR_MODE_CLI) {
3525 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3526 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3527 }
3528
Willy Tarreauc1a21672009-08-16 22:37:44 +02003529 /* both TCP and HTTP must check switching rules */
3530 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003531
3532 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003533 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003534 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3535 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 +01003536 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003537 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3538 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003539 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003540 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003541 }
3542
3543 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003544 if (curproxy->tcp_req.inspect_delay ||
3545 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3546 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3547
Emeric Brun97679e72010-09-23 17:56:44 +02003548 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3549 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3550
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003551 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003552 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003553 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003554 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003555
3556 /* If the backend does requires RDP cookie persistence, we have to
3557 * enable the corresponding analyser.
3558 */
3559 if (curproxy->options2 & PR_O2_RDPC_PRST)
3560 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003561
3562 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003563 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003564 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3565 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 +01003566 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003567 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3568 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003569 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003570 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003571 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003572
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003573 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003574 * attached to the current proxy */
3575 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3576 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003577 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003578
3579 if (!bind_conf->mux_proto)
3580 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003581
3582 /* it is possible that an incorrect mux was referenced
3583 * due to the proxy's mode not being taken into account
3584 * on first pass. Let's adjust it now.
3585 */
3586 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3587
3588 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003589 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3590 proxy_type_str(curproxy), curproxy->id,
3591 (int)bind_conf->mux_proto->token.len,
3592 bind_conf->mux_proto->token.ptr,
3593 bind_conf->arg, bind_conf->file, bind_conf->line);
3594 cfgerr++;
3595 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003596
3597 /* update the mux */
3598 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003599 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003600 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3601 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003602 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003603
3604 if (!newsrv->mux_proto)
3605 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003606
3607 /* it is possible that an incorrect mux was referenced
3608 * due to the proxy's mode not being taken into account
3609 * on first pass. Let's adjust it now.
3610 */
3611 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3612
3613 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003614 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3615 proxy_type_str(curproxy), curproxy->id,
3616 (int)newsrv->mux_proto->token.len,
3617 newsrv->mux_proto->token.ptr,
3618 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3619 cfgerr++;
3620 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003621
3622 /* update the mux */
3623 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003624 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003625
3626 /* initialize idle conns lists */
3627 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3628 int i;
3629
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003630 newsrv->available_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->available_conns));
Willy Tarreau835daa12019-02-07 14:46:29 +01003631
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003632 if (!newsrv->available_conns) {
Willy Tarreau835daa12019-02-07 14:46:29 +01003633 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003634 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau835daa12019-02-07 14:46:29 +01003635 cfgerr++;
3636 continue;
3637 }
3638
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003639 for (i = 0; i < global.nbthread; i++)
3640 LIST_INIT(&newsrv->available_conns[i]);
Willy Tarreau980855b2019-02-07 14:59:29 +01003641
3642 if (newsrv->max_idle_conns != 0) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003643 if (idle_conn_task == NULL) {
3644 idle_conn_task = task_new(MAX_THREADS_MASK);
3645 if (!idle_conn_task)
3646 goto err;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003647
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003648 idle_conn_task->process = srv_cleanup_idle_connections;
3649 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003650
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003651 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubbb5f1d2019-10-18 08:50:49 +02003652 idle_conn_cleanup[i] = task_new(1UL << i);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003653 if (!idle_conn_cleanup[i])
3654 goto err;
3655 idle_conn_cleanup[i]->process = srv_cleanup_toremove_connections;
3656 idle_conn_cleanup[i]->context = NULL;
Olivier Houchard859dc802019-08-08 15:47:21 +02003657 MT_LIST_INIT(&toremove_connections[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003658 }
3659 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003660
3661 newsrv->idle_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->idle_conns));
3662 if (!newsrv->idle_conns) {
3663 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3664 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3665 cfgerr++;
3666 continue;
3667 }
3668
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003669 for (i = 0; i < global.nbthread; i++)
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003670 MT_LIST_INIT(&newsrv->idle_conns[i]);
3671
3672 newsrv->safe_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->safe_conns));
3673 if (!newsrv->safe_conns) {
3674 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3675 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3676 cfgerr++;
3677 continue;
3678 }
3679
3680 for (i = 0; i < global.nbthread; i++)
3681 MT_LIST_INIT(&newsrv->safe_conns[i]);
3682
3683 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(int));
Olivier Houchardf1314812019-02-18 16:41:17 +01003684 if (!newsrv->curr_idle_thr)
3685 goto err;
Willy Tarreau980855b2019-02-07 14:59:29 +01003686 continue;
3687 err:
3688 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3689 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3690 cfgerr++;
3691 continue;
3692 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003693 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003694 }
3695
3696 /***********************************************************/
3697 /* At this point, target names have already been resolved. */
3698 /***********************************************************/
3699
3700 /* Check multi-process mode compatibility */
3701
3702 if (global.nbproc > 1 && global.stats_fe) {
3703 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3704 unsigned long mask;
3705
Willy Tarreau6daac192019-02-02 17:39:53 +01003706 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
3707 mask &= proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003708
3709 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003710 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003711 break;
3712 }
3713 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003714 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 +02003715 }
3716 }
3717
3718 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003719 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003720 if (curproxy->bind_proc)
3721 continue;
3722
3723 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3724 unsigned long mask;
3725
Willy Tarreau6daac192019-02-02 17:39:53 +01003726 mask = proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003727 curproxy->bind_proc |= mask;
3728 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003729 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003730 }
3731
3732 if (global.stats_fe) {
3733 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3734 unsigned long mask;
3735
Cyril Bonté06181952016-02-24 00:14:54 +01003736 mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003737 global.stats_fe->bind_proc |= mask;
3738 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003739 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003740 }
3741
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003742 /* propagate bindings from frontends to backends. Don't do it if there
3743 * are any fatal errors as we must not call it with unresolved proxies.
3744 */
3745 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003746 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003747 if (curproxy->cap & PR_CAP_FE)
3748 propagate_processes(curproxy, NULL);
3749 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003750 }
3751
3752 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003753 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3754 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003755
3756 /*******************************************************/
3757 /* At this step, all proxies have a non-null bind_proc */
3758 /*******************************************************/
3759
3760 /* perform the final checks before creating tasks */
3761
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003762 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003763 struct listener *listener;
3764 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003765
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003766 /* Configure SSL for each bind line.
3767 * Note: if configuration fails at some point, the ->ctx member
3768 * remains NULL so that listeners can later detach.
3769 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003770 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003771 if (bind_conf->xprt->prepare_bind_conf &&
3772 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003773 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003774 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003775
Willy Tarreaue6b98942007-10-29 01:09:36 +01003776 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003777 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003778 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003779 int nbproc;
3780
3781 nbproc = my_popcountl(curproxy->bind_proc &
Cyril Bonté4920d702016-04-15 07:58:43 +02003782 (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003783 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003784
3785 if (!nbproc) /* no intersection between listener and frontend */
3786 nbproc = 1;
3787
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003788 if (!listener->luid) {
3789 /* listener ID not set, use automatic numbering with first
3790 * spare entry starting with next_luid.
3791 */
3792 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3793 listener->conf.id.key = listener->luid = next_id;
3794 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003795 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003796 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003797
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003798 /* enable separate counters */
3799 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003800 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003801 if (!listener->name)
3802 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003803 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003804
Willy Tarreaue6b98942007-10-29 01:09:36 +01003805 if (curproxy->options & PR_O_TCP_NOLING)
3806 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003807 if (!listener->maxaccept)
3808 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3809
3810 /* we want to have an optimal behaviour on single process mode to
3811 * maximize the work at once, but in multi-process we want to keep
3812 * some fairness between processes, so we target half of the max
3813 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003814 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003815 * used to disable the limit.
3816 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003817 if (listener->maxaccept > 0 && nbproc > 1) {
3818 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003819 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3820 }
3821
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003822 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003823 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003824 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003825
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003826 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003827 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003828
Willy Tarreau620408f2016-10-21 16:37:51 +02003829 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3830 listener->options |= LI_O_TCP_L5_RULES;
3831
Willy Tarreaude3041d2010-05-31 10:56:17 +02003832 if (curproxy->mon_mask.s_addr)
3833 listener->options |= LI_O_CHK_MONNET;
3834
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003835 /* smart accept mode is automatic in HTTP mode */
3836 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003837 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003838 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3839 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003840 }
3841
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003842 /* Release unused SSL configs */
3843 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003844 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3845 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003846 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003847
Willy Tarreaua38a7172019-02-02 17:11:28 +01003848 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003849 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003850 int count, maxproc = 0;
3851
3852 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
David Carliere6c39412015-07-02 07:00:17 +00003853 count = my_popcountl(bind_conf->bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003854 if (count > maxproc)
3855 maxproc = count;
3856 }
3857 /* backends have 0, frontends have 1 or more */
3858 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003859 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3860 " limited to process assigned to the current request.\n",
3861 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003862
Willy Tarreau102df612014-05-07 23:56:38 +02003863 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003864 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3865 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003866 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003867 }
Willy Tarreau102df612014-05-07 23:56:38 +02003868 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003869 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3870 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003871 }
3872 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003873
3874 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003875 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003876 if (curproxy->task) {
3877 curproxy->task->context = curproxy;
3878 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003879 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003880 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3881 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003882 cfgerr++;
3883 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003884 }
3885
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003886 /*
3887 * Recount currently required checks.
3888 */
3889
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003890 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003891 int optnum;
3892
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003893 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3894 if (curproxy->options & cfg_opts[optnum].val)
3895 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003896
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003897 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3898 if (curproxy->options2 & cfg_opts2[optnum].val)
3899 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003900 }
3901
Willy Tarreau0fca4832015-05-01 19:12:05 +02003902 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003903 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003904 if (curproxy->table && curproxy->table->peers.p)
3905 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003906
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003907 /* compute the required process bindings for the peers from <stktables_list>
3908 * for all the stick-tables, the ones coming with "peers" sections included.
3909 */
3910 for (t = stktables_list; t; t = t->next) {
3911 struct proxy *p;
3912
3913 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3914 if (t->peers.p && t->peers.p->peers_fe) {
3915 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3916 }
3917 }
3918 }
3919
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003920 if (cfg_peers) {
3921 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003922 struct peer *p, *pb;
3923
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003924 /* In the case the peers frontend was not initialized by a
3925 stick-table used in the configuration, set its bind_proc
3926 by default to the first process. */
3927 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003928 if (curpeers->peers_fe) {
3929 if (curpeers->peers_fe->bind_proc == 0)
3930 curpeers->peers_fe->bind_proc = 1;
3931 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003932 curpeers = curpeers->next;
3933 }
3934
3935 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003936 /* Remove all peers sections which don't have a valid listener,
3937 * which are not used by any table, or which are bound to more
3938 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003939 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003940 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003941 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003942 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003943 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003944
3945 if (curpeers->state == PR_STSTOPPED) {
3946 /* the "disabled" keyword was present */
3947 if (curpeers->peers_fe)
3948 stop_proxy(curpeers->peers_fe);
3949 curpeers->peers_fe = NULL;
3950 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003951 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003952 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3953 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003954 if (curpeers->peers_fe)
3955 stop_proxy(curpeers->peers_fe);
3956 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003957 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003958 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003959 /* either it's totally stopped or too much used */
3960 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003961 ha_alert("Peers section '%s': peers referenced by sections "
3962 "running in different processes (%d different ones). "
3963 "Check global.nbproc and all tables' bind-process "
3964 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003965 cfgerr++;
3966 }
3967 stop_proxy(curpeers->peers_fe);
3968 curpeers->peers_fe = NULL;
3969 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003970 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003971 /* Initializes the transport layer of the server part of all the peers belonging to
3972 * <curpeers> section if required.
3973 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3974 * of an old process.
3975 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003976 p = curpeers->remote;
3977 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003978 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003979 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 +01003980 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3981 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003982 p = p->next;
3983 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003984 /* Configure the SSL bindings of the local peer if required. */
3985 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3986 struct list *l;
3987 struct bind_conf *bind_conf;
3988
3989 l = &curpeers->peers_fe->conf.bind;
3990 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3991 if (bind_conf->xprt->prepare_bind_conf &&
3992 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3993 cfgerr++;
3994 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003995 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02003996 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3997 curpeers->id);
3998 cfgerr++;
3999 break;
4000 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004001 last = &curpeers->next;
4002 continue;
4003 }
4004
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004005 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004006 p = curpeers->remote;
4007 while (p) {
4008 pb = p->next;
4009 free(p->id);
4010 free(p);
4011 p = pb;
4012 }
4013
4014 /* Destroy and unlink this curpeers section.
4015 * Note: curpeers is backed up into *last.
4016 */
4017 free(curpeers->id);
4018 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004019 /* Reset any refereance to this peers section in the list of stick-tables */
4020 for (t = stktables_list; t; t = t->next) {
4021 if (t->peers.p && t->peers.p == *last)
4022 t->peers.p = NULL;
4023 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004024 free(*last);
4025 *last = curpeers;
4026 }
4027 }
4028
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004029 for (t = stktables_list; t; t = t->next) {
4030 if (t->proxy)
4031 continue;
4032 if (!stktable_init(t)) {
4033 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4034 cfgerr++;
4035 }
4036 }
4037
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004038 /* initialize stick-tables on backend capable proxies. This must not
4039 * be done earlier because the data size may be discovered while parsing
4040 * other proxies.
4041 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004042 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004043 if (curproxy->state == PR_STSTOPPED || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004044 continue;
4045
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004046 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004047 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004048 cfgerr++;
4049 }
4050 }
4051
Simon Horman0d16a402015-01-30 11:22:58 +09004052 if (mailers) {
4053 struct mailers *curmailers = mailers, **last;
4054 struct mailer *m, *mb;
4055
4056 /* Remove all mailers sections which don't have a valid listener.
4057 * This can happen when a mailers section is never referenced.
4058 */
4059 last = &mailers;
4060 while (*last) {
4061 curmailers = *last;
4062 if (curmailers->users) {
4063 last = &curmailers->next;
4064 continue;
4065 }
4066
Christopher Faulet767a84b2017-11-24 16:50:31 +01004067 ha_warning("Removing incomplete section 'mailers %s'.\n",
4068 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004069
4070 m = curmailers->mailer_list;
4071 while (m) {
4072 mb = m->next;
4073 free(m->id);
4074 free(m);
4075 m = mb;
4076 }
4077
4078 /* Destroy and unlink this curmailers section.
4079 * Note: curmailers is backed up into *last.
4080 */
4081 free(curmailers->id);
4082 curmailers = curmailers->next;
4083 free(*last);
4084 *last = curmailers;
4085 }
4086 }
4087
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004088 /* Update server_state_file_name to backend name if backend is supposed to use
4089 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004090 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004091 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4092 curproxy->server_state_file_name == NULL)
4093 curproxy->server_state_file_name = strdup(curproxy->id);
4094 }
4095
Ben Draut054fbee2018-04-13 15:43:04 -06004096 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
4097 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
4098 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
4099 curr_resolvers->id, curr_resolvers->conf.file,
4100 curr_resolvers->conf.line);
4101 err_code |= ERR_WARN;
4102 }
4103 }
4104
William Lallemand48b4bb42017-10-23 14:36:34 +02004105 list_for_each_entry(postparser, &postparsers, list) {
4106 if (postparser->func)
4107 cfgerr += postparser->func();
4108 }
4109
Willy Tarreaubb925012009-07-23 13:36:36 +02004110 if (cfgerr > 0)
4111 err_code |= ERR_ALERT | ERR_FATAL;
4112 out:
4113 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004114}
4115
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004116/*
4117 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4118 * parsing sessions.
4119 */
4120void cfg_register_keywords(struct cfg_kw_list *kwl)
4121{
4122 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
4123}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004124
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004125/*
4126 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4127 */
4128void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4129{
4130 LIST_DEL(&kwl->list);
4131 LIST_INIT(&kwl->list);
4132}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004133
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004134/* this function register new section in the haproxy configuration file.
4135 * <section_name> is the name of this new section and <section_parser>
4136 * is the called parser. If two section declaration have the same name,
4137 * only the first declared is used.
4138 */
4139int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004140 int (*section_parser)(const char *, int, char **, int),
4141 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004142{
4143 struct cfg_section *cs;
4144
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004145 list_for_each_entry(cs, &sections, list) {
4146 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004147 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004148 return 0;
4149 }
4150 }
4151
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004152 cs = calloc(1, sizeof(*cs));
4153 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004154 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004155 return 0;
4156 }
4157
4158 cs->section_name = section_name;
4159 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004160 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004161
4162 LIST_ADDQ(&sections, &cs->list);
4163
4164 return 1;
4165}
4166
William Lallemand48b4bb42017-10-23 14:36:34 +02004167/* this function register a new function which will be called once the haproxy
4168 * configuration file has been parsed. It's useful to check dependencies
4169 * between sections or to resolve items once everything is parsed.
4170 */
4171int cfg_register_postparser(char *name, int (*func)())
4172{
4173 struct cfg_postparser *cp;
4174
4175 cp = calloc(1, sizeof(*cp));
4176 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004177 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004178 return 0;
4179 }
4180 cp->name = name;
4181 cp->func = func;
4182
4183 LIST_ADDQ(&postparsers, &cp->list);
4184
4185 return 1;
4186}
4187
Willy Tarreaubaaee002006-06-26 02:48:02 +02004188/*
David Carlier845efb52015-09-25 11:49:18 +01004189 * free all config section entries
4190 */
4191void cfg_unregister_sections(void)
4192{
4193 struct cfg_section *cs, *ics;
4194
4195 list_for_each_entry_safe(cs, ics, &sections, list) {
4196 LIST_DEL(&cs->list);
4197 free(cs);
4198 }
4199}
4200
Christopher Faulet7110b402016-10-26 11:09:44 +02004201void cfg_backup_sections(struct list *backup_sections)
4202{
4203 struct cfg_section *cs, *ics;
4204
4205 list_for_each_entry_safe(cs, ics, &sections, list) {
4206 LIST_DEL(&cs->list);
4207 LIST_ADDQ(backup_sections, &cs->list);
4208 }
4209}
4210
4211void cfg_restore_sections(struct list *backup_sections)
4212{
4213 struct cfg_section *cs, *ics;
4214
4215 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4216 LIST_DEL(&cs->list);
4217 LIST_ADDQ(&sections, &cs->list);
4218 }
4219}
4220
Willy Tarreaue6552512018-11-26 11:33:13 +01004221/* these are the config sections handled by default */
4222REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4223REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4224REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4225REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4226REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4227REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4228REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4229REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4230REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4231REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004232
David Carlier845efb52015-09-25 11:49:18 +01004233/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004234 * Local variables:
4235 * c-indent-level: 8
4236 * c-basic-offset: 8
4237 * End:
4238 */