blob: 443c40674d560a3cb071feeac3858d2e2931cf38 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Configuration parser
3 *
Willy Tarreauff011f22011-01-06 17:51:27 +01004 * Copyright 2000-2011 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreaue5733232019-05-22 19:24:06 +020013#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +020014/* This is to have crypt() defined on Linux */
15#define _GNU_SOURCE
16
Willy Tarreaue5733232019-05-22 19:24:06 +020017#ifdef USE_CRYPT_H
Cyril Bonté1a0191d2014-08-29 20:20:02 +020018/* some platforms such as Solaris need this */
19#include <crypt.h>
20#endif
Willy Tarreaue5733232019-05-22 19:24:06 +020021#endif /* USE_LIBCRYPT */
Cyril Bonté1a0191d2014-08-29 20:20:02 +020022
Willy Tarreaubaaee002006-06-26 02:48:02 +020023#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <netdb.h>
27#include <ctype.h>
Willy Tarreau95c20ac2007-03-25 15:39:23 +020028#include <pwd.h>
29#include <grp.h>
Willy Tarreau0b4ed902007-03-26 00:18:40 +020030#include <errno.h>
Willy Tarreau3f49b302007-06-11 00:29:26 +020031#include <sys/types.h>
32#include <sys/stat.h>
33#include <fcntl.h>
34#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035
Willy Tarreaudcc048a2020-06-04 19:11:43 +020036#include <haproxy/acl.h>
Willy Tarreau122eba92020-06-04 10:15:32 +020037#include <haproxy/action-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020038#include <haproxy/api.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020039#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020040#include <haproxy/backend.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020041#include <haproxy/capture.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020042#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020043#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020044#include <haproxy/check.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020045#include <haproxy/chunk.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020046#include <haproxy/connection.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020047#include <haproxy/dns.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020048#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020049#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020050#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020051#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020052#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020053#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020054#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020055#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020056#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020057#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020058#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020059#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020060#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020061#include <haproxy/mailers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020062#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020063#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020064#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020065#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020066#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020067#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020068#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020069#include <haproxy/sample.h>
70#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020071#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020072#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020073#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020074#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020075#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020076#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020077#include <haproxy/thread.h>
78#include <haproxy/time.h>
79#include <haproxy/tools.h>
80#include <haproxy/uri_auth-t.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020081
82
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010083/* Used to chain configuration sections definitions. This list
84 * stores struct cfg_section
85 */
86struct list sections = LIST_HEAD_INIT(sections);
87
William Lallemand48b4bb42017-10-23 14:36:34 +020088struct list postparsers = LIST_HEAD_INIT(postparsers);
89
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010090char *cursection = NULL;
91struct proxy defproxy = { }; /* fake proxy used to assign default values on all instances */
Willy Tarreauc8d5b952019-02-27 17:25:52 +010092int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +010093int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +010094char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +020095
Willy Tarreau5b2c3362008-07-09 19:39:06 +020096/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +010097struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +020098 .list = LIST_HEAD_INIT(cfg_keywords.list)
99};
100
Willy Tarreaubaaee002006-06-26 02:48:02 +0200101/*
102 * converts <str> to a list of listeners which are dynamically allocated.
103 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
104 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
105 * - <port> is a numerical port from 1 to 65535 ;
106 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
107 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200108 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
109 * not NULL, it must be a valid pointer to either NULL or a freeable area that
110 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200111 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200112int str2listener(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200113{
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100114 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200115 int port, end;
116
117 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200118
Willy Tarreaubaaee002006-06-26 02:48:02 +0200119 while (next && *next) {
William Lallemand75ea0a02017-11-15 19:02:58 +0100120 int inherited = 0;
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200121 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100122 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200123
124 str = next;
125 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100126 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200127 *next++ = 0;
128 }
129
Willy Tarreau48ef4c92017-01-06 18:32:38 +0100130 ss2 = str2sa_range(str, NULL, &port, &end, err,
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200131 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +0200132 NULL, 1);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100133 if (!ss2)
134 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200135
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100136 if (ss2->ss_family == AF_INET || ss2->ss_family == AF_INET6) {
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100137 if (!port && !end) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200138 memprintf(err, "missing port number: '%s'\n", str);
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100139 goto fail;
Emeric Bruned760922010-10-22 17:59:25 +0200140 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200141
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100142 if (!port || !end) {
143 memprintf(err, "port offsets are not allowed in 'bind': '%s'\n", str);
144 goto fail;
145 }
146
Emeric Bruned760922010-10-22 17:59:25 +0200147 if (port < 1 || port > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200148 memprintf(err, "invalid port '%d' specified for address '%s'.\n", port, str);
Emeric Bruned760922010-10-22 17:59:25 +0200149 goto fail;
150 }
151
152 if (end < 1 || end > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200153 memprintf(err, "invalid port '%d' specified for address '%s'.\n", end, str);
Emeric Bruned760922010-10-22 17:59:25 +0200154 goto fail;
155 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200156 }
Willy Tarreau40aa0702013-03-10 23:51:38 +0100157 else if (ss2->ss_family == AF_UNSPEC) {
158 socklen_t addr_len;
William Lallemand75ea0a02017-11-15 19:02:58 +0100159 inherited = 1;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100160
161 /* We want to attach to an already bound fd whose number
162 * is in the addr part of ss2 when cast to sockaddr_in.
163 * Note that by definition there is a single listener.
164 * We still have to determine the address family to
165 * register the correct protocol.
166 */
167 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
168 addr_len = sizeof(*ss2);
169 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
170 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
171 goto fail;
172 }
173
174 port = end = get_host_port(ss2);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200175
176 } else if (ss2->ss_family == AF_CUST_SOCKPAIR) {
177 socklen_t addr_len;
178 inherited = 1;
179
180 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
181 addr_len = sizeof(*ss2);
182 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
183 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
184 goto fail;
185 }
186
187 ss2->ss_family = AF_CUST_SOCKPAIR; /* reassign AF_CUST_SOCKPAIR because of getsockname */
188 port = end = 0;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100189 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200190
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100191 /* OK the address looks correct */
William Lallemand75ea0a02017-11-15 19:02:58 +0100192 if (!create_listeners(bind_conf, ss2, port, end, fd, inherited, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200193 memprintf(err, "%s for address '%s'.\n", *err, str);
194 goto fail;
195 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200196 } /* end while(next) */
197 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200198 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200199 fail:
200 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200201 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200202}
203
William Lallemand6e62fb62015-04-28 16:55:23 +0200204/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100205 * Report an error in <msg> when there are too many arguments. This version is
206 * intended to be used by keyword parsers so that the message will be included
207 * into the general error message. The index is the current keyword in args.
208 * Return 0 if the number of argument is correct, otherwise build a message and
209 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
210 * message may also be null, it will simply not be produced (useful to check only).
211 * <msg> and <err_code> are only affected on error.
212 */
213int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
214{
215 int i;
216
217 if (!*args[index + maxarg + 1])
218 return 0;
219
220 if (msg) {
221 *msg = NULL;
222 memprintf(msg, "%s", args[0]);
223 for (i = 1; i <= index; i++)
224 memprintf(msg, "%s %s", *msg, args[i]);
225
226 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
227 }
228 if (err_code)
229 *err_code |= ERR_ALERT | ERR_FATAL;
230
231 return 1;
232}
233
234/*
235 * same as too_many_args_idx with a 0 index
236 */
237int too_many_args(int maxarg, char **args, char **msg, int *err_code)
238{
239 return too_many_args_idx(maxarg, 0, args, msg, err_code);
240}
241
242/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200243 * Report a fatal Alert when there is too much arguments
244 * The index is the current keyword in args
245 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
246 * Fill err_code with an ERR_ALERT and an ERR_FATAL
247 */
248int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
249{
250 char *kw = NULL;
251 int i;
252
253 if (!*args[index + maxarg + 1])
254 return 0;
255
256 memprintf(&kw, "%s", args[0]);
257 for (i = 1; i <= index; i++) {
258 memprintf(&kw, "%s %s", kw, args[i]);
259 }
260
Christopher Faulet767a84b2017-11-24 16:50:31 +0100261 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 +0200262 free(kw);
263 *err_code |= ERR_ALERT | ERR_FATAL;
264 return 1;
265}
266
267/*
268 * same as alertif_too_many_args_idx with a 0 index
269 */
270int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
271{
272 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
273}
274
Willy Tarreau61d18892009-03-31 10:49:21 +0200275
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100276/* Report it if a request ACL condition uses some keywords that are incompatible
277 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
278 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
279 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100280 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100281int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100282{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100283 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200284 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100285
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100286 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100287 return 0;
288
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100289 acl = acl_cond_conflicts(cond, where);
290 if (acl) {
291 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100292 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
293 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100294 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100295 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
296 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100297 return ERR_WARN;
298 }
299 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100300 return 0;
301
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100302 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100303 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
304 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100305 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100306 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
307 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100308 return ERR_WARN;
309}
310
Christopher Faulet62519022017-10-16 15:49:32 +0200311/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100312 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100313 * two such numbers delimited by a dash ('-'). On success, it returns
314 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200315 *
316 * Note: this function can also be used to parse a thread number or a set of
317 * threads.
318 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100319int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200320{
Christopher Faulet26028f62017-11-22 15:01:51 +0100321 if (autoinc) {
322 *autoinc = 0;
323 if (strncmp(arg, "auto:", 5) == 0) {
324 arg += 5;
325 *autoinc = 1;
326 }
327 }
328
Christopher Faulet62519022017-10-16 15:49:32 +0200329 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100330 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200331 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100332 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200333 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100334 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200335 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100336 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100337 unsigned int low, high;
338
Christopher Faulet18cca782019-02-07 16:29:41 +0100339 for (p = arg; *p; p++) {
340 if (*p == '-' && !dash)
341 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100342 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100343 memprintf(err, "'%s' is not a valid number/range.", arg);
344 return -1;
345 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100346 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100347
348 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100349 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100350 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100351
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100352 if (high < low) {
353 unsigned int swap = low;
354 low = high;
355 high = swap;
356 }
357
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100358 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100359 memprintf(err, "'%s' is not a valid number/range."
360 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100361 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100362 return 1;
363 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100364
365 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100366 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200367 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100368 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100369
Christopher Faulet5ab51772017-11-22 11:21:58 +0100370 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200371}
372
David Carlier7e351ee2017-12-01 09:14:02 +0000373#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200374/* Parse cpu sets. Each CPU set is either a unique number between 0 and
375 * <LONGBITS> or a range with two such numbers delimited by a dash
376 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
377 * returns 0. otherwise it returns 1 with an error message in <err>.
378 */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100379unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200380{
381 int cur_arg = 0;
382
383 *cpu_set = 0;
384 while (*args[cur_arg]) {
385 char *dash;
386 unsigned int low, high;
387
Willy Tarreau90807112020-02-25 08:16:33 +0100388 if (!isdigit((unsigned char)*args[cur_arg])) {
Christopher Faulet62519022017-10-16 15:49:32 +0200389 memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
390 return -1;
391 }
392
393 low = high = str2uic(args[cur_arg]);
394 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100395 high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
Christopher Faulet62519022017-10-16 15:49:32 +0200396
397 if (high < low) {
398 unsigned int swap = low;
399 low = high;
400 high = swap;
401 }
402
403 if (high >= LONGBITS) {
404 memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
405 return 1;
406 }
407
408 while (low <= high)
409 *cpu_set |= 1UL << low++;
410
411 cur_arg++;
412 }
413 return 0;
414}
David Carlier7e351ee2017-12-01 09:14:02 +0000415#endif
416
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200417void init_default_instance()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200418{
Willy Tarreau97cb7802010-01-03 20:23:58 +0100419 init_new_proxy(&defproxy);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200420 defproxy.mode = PR_MODE_TCP;
421 defproxy.state = PR_STNEW;
422 defproxy.maxconn = cfg_maxpconn;
423 defproxy.conn_retries = CONN_RETRIES;
Joseph Lynch726ab712015-05-11 23:25:34 -0700424 defproxy.redispatch_after = 0;
Olivier Houchard86006a52018-12-14 19:37:49 +0100425 defproxy.options = PR_O_REUSE_SAFE;
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +0100426 defproxy.max_out_conns = MAX_SRV_LIST;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100427
Simon Horman66183002013-02-23 10:16:43 +0900428 defproxy.defsrv.check.inter = DEF_CHKINTR;
429 defproxy.defsrv.check.fastinter = 0;
430 defproxy.defsrv.check.downinter = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900431 defproxy.defsrv.agent.inter = DEF_CHKINTR;
432 defproxy.defsrv.agent.fastinter = 0;
433 defproxy.defsrv.agent.downinter = 0;
Simon Horman58c32972013-11-25 10:46:38 +0900434 defproxy.defsrv.check.rise = DEF_RISETIME;
435 defproxy.defsrv.check.fall = DEF_FALLTIME;
436 defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME;
437 defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME;
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200438 defproxy.defsrv.check.port = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900439 defproxy.defsrv.agent.port = 0;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100440 defproxy.defsrv.maxqueue = 0;
441 defproxy.defsrv.minconn = 0;
442 defproxy.defsrv.maxconn = 0;
Willy Tarreau9c538e02019-01-23 10:21:49 +0100443 defproxy.defsrv.max_reuse = -1;
Olivier Houchard006e3102018-12-10 18:30:32 +0100444 defproxy.defsrv.max_idle_conns = -1;
Willy Tarreau975b1552019-06-06 16:25:55 +0200445 defproxy.defsrv.pool_purge_delay = 5000;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100446 defproxy.defsrv.slowstart = 0;
447 defproxy.defsrv.onerror = DEF_HANA_ONERR;
448 defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT;
449 defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1;
Simon Horman64e34162015-02-06 11:11:57 +0900450
451 defproxy.email_alert.level = LOG_ALERT;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +0200452 defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200453}
454
Frédéric Lécaille18251032019-01-11 11:07:15 +0100455/* Allocate and initialize the frontend of a "peers" section found in
456 * file <file> at line <linenum> with <id> as ID.
457 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200458 * Note that this function may be called from "default-server"
459 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100460 */
461static int init_peers_frontend(const char *file, int linenum,
462 const char *id, struct peers *peers)
463{
464 struct proxy *p;
465
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200466 if (peers->peers_fe) {
467 p = peers->peers_fe;
468 goto out;
469 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100470
Frédéric Lécaille18251032019-01-11 11:07:15 +0100471 p = calloc(1, sizeof *p);
472 if (!p) {
473 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
474 return -1;
475 }
476
477 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200478 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100479 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200480 /* Finally store this frontend. */
481 peers->peers_fe = p;
482
483 out:
484 if (id && !p->id)
485 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200486 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100487 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100488 if (linenum != -1)
489 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100490
491 return 0;
492}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100493
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100494/* Only change ->file, ->line and ->arg struct bind_conf member values
495 * if already present.
496 */
497static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
498 const char *file, int line,
499 const char *arg, struct xprt_ops *xprt)
500{
501 struct bind_conf *bind_conf;
502
503 if (!LIST_ISEMPTY(&p->conf.bind)) {
504 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
505 free(bind_conf->file);
506 bind_conf->file = strdup(file);
507 bind_conf->line = line;
508 if (arg) {
509 free(bind_conf->arg);
510 bind_conf->arg = strdup(arg);
511 }
512 }
513 else {
514 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
515 }
516
517 return bind_conf;
518}
519
520/*
521 * Allocate a new struct peer parsed at line <linenum> in file <file>
522 * to be added to <peers>.
523 * Returns the new allocated structure if succeeded, NULL if not.
524 */
525static struct peer *cfg_peers_add_peer(struct peers *peers,
526 const char *file, int linenum,
527 const char *id, int local)
528{
529 struct peer *p;
530
531 p = calloc(1, sizeof *p);
532 if (!p) {
533 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
534 return NULL;
535 }
536
537 /* the peers are linked backwards first */
538 peers->count++;
539 p->next = peers->remote;
540 peers->remote = p;
541 p->conf.file = strdup(file);
542 p->conf.line = linenum;
543 p->last_change = now.tv_sec;
544 p->xprt = xprt_get(XPRT_RAW);
545 p->sock_init_arg = NULL;
546 HA_SPIN_INIT(&p->lock);
547 if (id)
548 p->id = strdup(id);
549 if (local) {
550 p->local = 1;
551 peers->local = p;
552 }
553
554 return p;
555}
556
Willy Tarreaubaaee002006-06-26 02:48:02 +0200557/*
William Lallemand51097192015-04-14 16:35:22 +0200558 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200559 * Returns the error code, 0 if OK, or any combination of :
560 * - ERR_ABORT: must abort ASAP
561 * - ERR_FATAL: we can continue parsing but not start the service
562 * - ERR_WARN: a warning has been emitted
563 * - ERR_ALERT: an alert has been emitted
564 * Only the two first ones can stop processing, the two others are just
565 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200566 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200567int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
568{
569 static struct peers *curpeers = NULL;
570 struct peer *newpeer = NULL;
571 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200572 struct bind_conf *bind_conf;
573 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200574 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100575 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100576 static int bind_line, peer_line;
577
578 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
579 int cur_arg;
580 static int kws_dumped;
581 struct bind_conf *bind_conf;
582 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200583
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100584 cur_arg = 1;
585
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200586 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
587 err_code |= ERR_ALERT | ERR_ABORT;
588 goto out;
589 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100590
591 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
592 NULL, xprt_get(XPRT_RAW));
593 if (*args[0] == 'b') {
594 struct listener *l;
595
596 if (peer_line) {
597 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
598 err_code |= ERR_ALERT | ERR_FATAL;
599 goto out;
600 }
601
602 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
603 if (errmsg && *errmsg) {
604 indent_msg(&errmsg, 2);
605 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
606 }
607 else
608 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
609 file, linenum, args[0], args[1], args[2]);
610 err_code |= ERR_FATAL;
611 goto out;
612 }
613 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
614 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100615 l->accept = session_accept_fd;
616 l->analysers |= curpeers->peers_fe->fe_req_ana;
617 l->default_target = curpeers->peers_fe->default_target;
618 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100619 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100620
621 bind_line = 1;
622 if (cfg_peers->local) {
623 newpeer = cfg_peers->local;
624 }
625 else {
626 /* This peer is local.
627 * Note that we do not set the peer ID. This latter is initialized
628 * when parsing "peer" or "server" line.
629 */
630 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
631 if (!newpeer) {
632 err_code |= ERR_ALERT | ERR_ABORT;
633 goto out;
634 }
635 }
636 newpeer->addr = l->addr;
637 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
638 cur_arg++;
639 }
640
641 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
642 int ret;
643
644 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
645 err_code |= ret;
646 if (ret) {
647 if (errmsg && *errmsg) {
648 indent_msg(&errmsg, 2);
649 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
650 }
651 else
652 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
653 file, linenum, args[cur_arg]);
654 if (ret & ERR_FATAL)
655 goto out;
656 }
657 cur_arg += 1 + kw->skip;
658 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100659 if (*args[cur_arg] != 0) {
Tim Duesterhus04bcaa12019-05-12 22:54:50 +0200660 char *kws = NULL;
661
662 if (!kws_dumped) {
663 kws_dumped = 1;
664 bind_dump_kws(&kws);
665 indent_msg(&kws, 4);
666 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100667 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.%s%s\n",
668 file, linenum, args[cur_arg], cursection,
669 kws ? " Registered keywords :" : "", kws ? kws: "");
670 free(kws);
671 err_code |= ERR_ALERT | ERR_FATAL;
672 goto out;
673 }
674 }
675 else if (strcmp(args[0], "default-server") == 0) {
676 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
677 err_code |= ERR_ALERT | ERR_ABORT;
678 goto out;
679 }
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200680 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, 0, 1);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200681 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100682 else if (strcmp(args[0], "log") == 0) {
683 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
684 err_code |= ERR_ALERT | ERR_ABORT;
685 goto out;
686 }
687 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), &errmsg)) {
688 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
689 err_code |= ERR_ALERT | ERR_FATAL;
690 goto out;
691 }
692 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200693 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100694 /* Initialize these static variables when entering a new "peers" section*/
695 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100696 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100697 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100698 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100699 goto out;
700 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200701
William Lallemand6e62fb62015-04-28 16:55:23 +0200702 if (alertif_too_many_args(1, file, linenum, args, &err_code))
703 goto out;
704
Emeric Brun32da3c42010-09-23 18:39:19 +0200705 err = invalid_char(args[1]);
706 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100707 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
708 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100709 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100710 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200711 }
712
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200713 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200714 /*
715 * If there are two proxies with the same name only following
716 * combinations are allowed:
717 */
718 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100719 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
720 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200721 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200722 }
723 }
724
Vincent Bernat02779b62016-04-03 13:48:43 +0200725 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100726 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200727 err_code |= ERR_ALERT | ERR_ABORT;
728 goto out;
729 }
730
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200731 curpeers->next = cfg_peers;
732 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200733 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200734 curpeers->conf.line = linenum;
735 curpeers->last_change = now.tv_sec;
736 curpeers->id = strdup(args[1]);
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200737 curpeers->state = PR_STNEW;
Emeric Brun32da3c42010-09-23 18:39:19 +0200738 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200739 else if (strcmp(args[0], "peer") == 0 ||
740 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100741 int local_peer, peer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200742
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100743 peer = *args[0] == 'p';
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100744 local_peer = !strcmp(args[1], localpeer);
745 /* The local peer may have already partially been parsed on a "bind" line. */
746 if (*args[0] == 'p') {
747 if (bind_line) {
748 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
749 err_code |= ERR_ALERT | ERR_FATAL;
750 goto out;
751 }
752 peer_line = 1;
753 }
754 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
755 /* The local peer has already been initialized on a "bind" line.
756 * Let's use it and store its ID.
757 */
758 newpeer = cfg_peers->local;
759 newpeer->id = strdup(localpeer);
760 }
761 else {
762 if (local_peer && cfg_peers->local) {
763 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
764 file, linenum, args[0], args[1],
765 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
766 err_code |= ERR_FATAL;
767 goto out;
768 }
769 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
770 if (!newpeer) {
771 err_code |= ERR_ALERT | ERR_ABORT;
772 goto out;
773 }
774 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200775
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100776 /* Line number and peer ID are updated only if this peer is the local one. */
777 if (init_peers_frontend(file,
778 newpeer->local ? linenum: -1,
779 newpeer->local ? newpeer->id : NULL,
780 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200781 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100782 goto out;
783 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100784
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100785 /* This initializes curpeer->peers->peers_fe->srv.
786 * The server address is parsed only if we are parsing a "peer" line,
787 * or if we are parsing a "server" line and the current peer is not the local one.
788 */
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200789 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, peer || !local_peer, 1);
790 if (!curpeers->peers_fe->srv) {
791 /* Remove the newly allocated peer. */
792 if (newpeer != curpeers->local) {
793 struct peer *p;
794
795 p = curpeers->remote;
796 curpeers->remote = curpeers->remote->next;
797 free(p->id);
798 free(p);
799 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200800 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200801 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200802
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100803 /* If the peer address has just been parsed, let's copy it to <newpeer>
804 * and initializes ->proto.
805 */
806 if (peer || !local_peer) {
807 newpeer->addr = curpeers->peers_fe->srv->addr;
808 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
809 }
810
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100811 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200812 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100813 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200814
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100815 newpeer->srv = curpeers->peers_fe->srv;
816 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200817 goto out;
818
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100819 /* The lines above are reserved to "peer" lines. */
820 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200821 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200822
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100823 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 +0100824
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100825 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
826 if (errmsg && *errmsg) {
827 indent_msg(&errmsg, 2);
828 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 +0100829 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100830 else
831 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
832 file, linenum, args[0], args[1], args[2]);
833 err_code |= ERR_FATAL;
834 goto out;
835 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100836
837 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
838 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100839 l->accept = session_accept_fd;
840 l->analysers |= curpeers->peers_fe->fe_req_ana;
841 l->default_target = curpeers->peers_fe->default_target;
842 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100843 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100844 }
845 else if (!strcmp(args[0], "table")) {
846 struct stktable *t, *other;
847 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100848 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100849
850 /* Line number and peer ID are updated only if this peer is the local one. */
851 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
852 err_code |= ERR_ALERT | ERR_ABORT;
853 goto out;
854 }
855
856 other = stktable_find_by_name(args[1]);
857 if (other) {
858 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
859 file, linenum, args[1],
860 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
861 other->proxy ? other->id : other->peers.p->id,
862 other->conf.file, other->conf.line);
863 err_code |= ERR_ALERT | ERR_FATAL;
864 goto out;
865 }
866
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100867 /* Build the stick-table name, concatenating the "peers" section name
868 * followed by a '/' character and the table name argument.
869 */
870 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100871 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100872 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
873 file, linenum, args[0], args[1]);
874 err_code |= ERR_ALERT | ERR_FATAL;
875 goto out;
876 }
877
878 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100879 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100880 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
881 file, linenum, args[0], args[1]);
882 err_code |= ERR_ALERT | ERR_FATAL;
883 goto out;
884 }
885
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100886 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100887 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100888 if (!t || !id) {
889 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
890 file, linenum, args[0], args[1]);
891 err_code |= ERR_ALERT | ERR_FATAL;
892 goto out;
893 }
894
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100895 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100896 if (err_code & ERR_FATAL)
897 goto out;
898
899 stktable_store_name(t);
900 t->next = stktables_list;
901 stktables_list = t;
902 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200903 else if (!strcmp(args[0], "disabled")) { /* disables this peers section */
904 curpeers->state = PR_STSTOPPED;
905 }
906 else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */
907 curpeers->state = PR_STNEW;
908 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200909 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100910 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200911 err_code |= ERR_ALERT | ERR_FATAL;
912 goto out;
913 }
914
915out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100916 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200917 return err_code;
918}
919
Baptiste Assmann325137d2015-04-13 23:40:55 +0200920/*
921 * Parse a <resolvers> section.
922 * Returns the error code, 0 if OK, or any combination of :
923 * - ERR_ABORT: must abort ASAP
924 * - ERR_FATAL: we can continue parsing but not start the service
925 * - ERR_WARN: a warning has been emitted
926 * - ERR_ALERT: an alert has been emitted
927 * Only the two first ones can stop processing, the two others are just
928 * indicators.
929 */
930int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
931{
932 static struct dns_resolvers *curr_resolvers = NULL;
933 struct dns_nameserver *newnameserver = NULL;
934 const char *err;
935 int err_code = 0;
936 char *errmsg = NULL;
937
938 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
939 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100940 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200941 err_code |= ERR_ALERT | ERR_ABORT;
942 goto out;
943 }
944
945 err = invalid_char(args[1]);
946 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100947 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
948 file, linenum, *err, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200949 err_code |= ERR_ALERT | ERR_ABORT;
950 goto out;
951 }
952
953 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
954 /* Error if two resolvers owns the same name */
955 if (strcmp(curr_resolvers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100956 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
957 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200958 err_code |= ERR_ALERT | ERR_ABORT;
959 }
960 }
961
Vincent Bernat02779b62016-04-03 13:48:43 +0200962 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100963 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200964 err_code |= ERR_ALERT | ERR_ABORT;
965 goto out;
966 }
967
968 /* default values */
969 LIST_ADDQ(&dns_resolvers, &curr_resolvers->list);
970 curr_resolvers->conf.file = strdup(file);
971 curr_resolvers->conf.line = linenum;
972 curr_resolvers->id = strdup(args[1]);
973 curr_resolvers->query_ids = EB_ROOT;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200974 /* default maximum response size */
975 curr_resolvers->accepted_payload_size = 512;
Baptiste Assmann987e16d2016-11-02 22:23:31 +0100976 /* default hold period for nx, other, refuse and timeout is 30s */
977 curr_resolvers->hold.nx = 30000;
978 curr_resolvers->hold.other = 30000;
979 curr_resolvers->hold.refused = 30000;
980 curr_resolvers->hold.timeout = 30000;
Baptiste Assmann686408b2017-08-18 10:15:42 +0200981 curr_resolvers->hold.obsolete = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200982 /* default hold period for valid is 10s */
Baptiste Assmann4c5490a2015-07-14 21:42:49 +0200983 curr_resolvers->hold.valid = 10000;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200984 curr_resolvers->timeout.resolve = 1000;
985 curr_resolvers->timeout.retry = 1000;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200986 curr_resolvers->resolve_retries = 3;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200987 curr_resolvers->nb_nameservers = 0;
988 LIST_INIT(&curr_resolvers->nameservers);
989 LIST_INIT(&curr_resolvers->resolutions.curr);
990 LIST_INIT(&curr_resolvers->resolutions.wait);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100991 HA_SPIN_INIT(&curr_resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200992 }
993 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
994 struct sockaddr_storage *sk;
995 int port1, port2;
996 struct protocol *proto;
997
998 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100999 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1000 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001001 err_code |= ERR_ALERT | ERR_FATAL;
1002 goto out;
1003 }
1004
1005 err = invalid_char(args[1]);
1006 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001007 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1008 file, linenum, *err, args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001009 err_code |= ERR_ALERT | ERR_FATAL;
1010 goto out;
1011 }
1012
Christopher Faulet67957bd2017-09-27 11:00:59 +02001013 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
Baptiste Assmanna315c552015-11-02 22:55:49 +01001014 /* Error if two resolvers owns the same name */
1015 if (strcmp(newnameserver->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001016 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 -06001017 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
Baptiste Assmanna315c552015-11-02 22:55:49 +01001018 err_code |= ERR_ALERT | ERR_FATAL;
1019 }
1020 }
1021
Vincent Bernat02779b62016-04-03 13:48:43 +02001022 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001023 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001024 err_code |= ERR_ALERT | ERR_ABORT;
1025 goto out;
1026 }
1027
1028 /* the nameservers are linked backward first */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001029 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001030 newnameserver->resolvers = curr_resolvers;
1031 newnameserver->conf.file = strdup(file);
1032 newnameserver->conf.line = linenum;
1033 newnameserver->id = strdup(args[1]);
1034
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001035 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001036 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001037 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001038 err_code |= ERR_ALERT | ERR_FATAL;
1039 goto out;
1040 }
1041
1042 proto = protocol_by_family(sk->ss_family);
1043 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001044 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Baptiste Assmann325137d2015-04-13 23:40:55 +02001045 file, linenum, args[0], args[1]);
1046 err_code |= ERR_ALERT | ERR_FATAL;
1047 goto out;
1048 }
1049
1050 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001051 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1052 file, linenum, args[0], args[1], args[2]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001053 err_code |= ERR_ALERT | ERR_FATAL;
1054 goto out;
1055 }
1056
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001057 if (!port1 && !port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001058 ha_alert("parsing [%s:%d] : '%s %s' : no UDP port specified\n",
1059 file, linenum, args[0], args[1]);
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001060 err_code |= ERR_ALERT | ERR_FATAL;
1061 goto out;
1062 }
1063
Baptiste Assmann325137d2015-04-13 23:40:55 +02001064 newnameserver->addr = *sk;
1065 }
Ben Draut44e609b2018-05-29 15:40:08 -06001066 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
1067 const char *whitespace = "\r\n\t ";
1068 char *resolv_line = NULL;
1069 int resolv_linenum = 0;
1070 FILE *f = NULL;
1071 char *address = NULL;
1072 struct sockaddr_storage *sk = NULL;
1073 struct protocol *proto;
1074 int duplicate_name = 0;
1075
1076 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
1077 ha_alert("parsing [%s:%d] : out of memory.\n",
1078 file, linenum);
1079 err_code |= ERR_ALERT | ERR_FATAL;
1080 goto resolv_out;
1081 }
1082
1083 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
1084 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
1085 file, linenum);
1086 err_code |= ERR_ALERT | ERR_FATAL;
1087 goto resolv_out;
1088 }
1089
1090 sk = calloc(1, sizeof(*sk));
1091 if (sk == NULL) {
1092 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
1093 resolv_linenum);
1094 err_code |= ERR_ALERT | ERR_FATAL;
1095 goto resolv_out;
1096 }
1097
1098 while (fgets(resolv_line, LINESIZE, f) != NULL) {
1099 resolv_linenum++;
1100 if (strncmp(resolv_line, "nameserver", 10) != 0)
1101 continue;
1102
1103 address = strtok(resolv_line + 10, whitespace);
1104 if (address == resolv_line + 10)
1105 continue;
1106
1107 if (address == NULL) {
1108 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
1109 resolv_linenum);
1110 err_code |= ERR_WARN;
1111 continue;
1112 }
1113
1114 duplicate_name = 0;
1115 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
1116 if (strcmp(newnameserver->id, address) == 0) {
1117 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",
1118 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
1119 err_code |= ERR_WARN;
1120 duplicate_name = 1;
1121 }
1122 }
1123
1124 if (duplicate_name)
1125 continue;
1126
1127 memset(sk, 0, sizeof(*sk));
Willy Tarreau78675252020-05-28 18:07:10 +02001128 if (!str2ip2(address, sk, 1)) {
1129 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 -06001130 resolv_linenum, address);
1131 err_code |= ERR_WARN;
1132 continue;
1133 }
1134
1135 set_host_port(sk, 53);
1136
1137 proto = protocol_by_family(sk->ss_family);
1138 if (!proto || !proto->connect) {
1139 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
1140 resolv_linenum, address);
1141 err_code |= ERR_WARN;
1142 continue;
1143 }
1144
1145 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
1146 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1147 err_code |= ERR_ALERT | ERR_FATAL;
1148 goto resolv_out;
1149 }
1150
1151 newnameserver->conf.file = strdup("/etc/resolv.conf");
1152 if (newnameserver->conf.file == NULL) {
1153 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1154 err_code |= ERR_ALERT | ERR_FATAL;
1155 goto resolv_out;
1156 }
1157
1158 newnameserver->id = strdup(address);
1159 if (newnameserver->id == NULL) {
1160 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1161 err_code |= ERR_ALERT | ERR_FATAL;
1162 goto resolv_out;
1163 }
1164
1165 newnameserver->resolvers = curr_resolvers;
1166 newnameserver->conf.line = resolv_linenum;
1167 newnameserver->addr = *sk;
1168
1169 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
1170 }
1171
1172resolv_out:
1173 free(sk);
1174 free(resolv_line);
1175 if (f != NULL)
1176 fclose(f);
1177 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001178 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
1179 const char *res;
1180 unsigned int time;
1181
1182 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001183 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
1184 file, linenum, args[0]);
1185 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
Baptiste Assmann325137d2015-04-13 23:40:55 +02001186 err_code |= ERR_ALERT | ERR_FATAL;
1187 goto out;
1188 }
1189 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001190 if (res == PARSE_TIME_OVER) {
1191 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s>, maximum value is 2147483647 ms (~24.8 days).\n",
1192 file, linenum, args[1], args[0]);
1193 err_code |= ERR_ALERT | ERR_FATAL;
1194 goto out;
1195 }
1196 else if (res == PARSE_TIME_UNDER) {
1197 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s>, minimum non-null value is 1 ms.\n",
1198 file, linenum, args[1], args[0]);
1199 err_code |= ERR_ALERT | ERR_FATAL;
1200 goto out;
1201 }
1202 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001203 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1204 file, linenum, *res, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001205 err_code |= ERR_ALERT | ERR_FATAL;
1206 goto out;
1207 }
Baptiste Assmann987e16d2016-11-02 22:23:31 +01001208 if (strcmp(args[1], "nx") == 0)
1209 curr_resolvers->hold.nx = time;
1210 else if (strcmp(args[1], "other") == 0)
1211 curr_resolvers->hold.other = time;
1212 else if (strcmp(args[1], "refused") == 0)
1213 curr_resolvers->hold.refused = time;
1214 else if (strcmp(args[1], "timeout") == 0)
1215 curr_resolvers->hold.timeout = time;
1216 else if (strcmp(args[1], "valid") == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001217 curr_resolvers->hold.valid = time;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001218 else if (strcmp(args[1], "obsolete") == 0)
1219 curr_resolvers->hold.obsolete = time;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001220 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001221 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
1222 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001223 err_code |= ERR_ALERT | ERR_FATAL;
1224 goto out;
1225 }
1226
1227 }
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001228 else if (strcmp(args[0], "accepted_payload_size") == 0) {
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001229 int i = 0;
1230
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001231 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001232 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1233 file, linenum, args[0]);
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001234 err_code |= ERR_ALERT | ERR_FATAL;
1235 goto out;
1236 }
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001237
1238 i = atoi(args[1]);
Willy Tarreau0c219be2017-08-22 12:01:26 +02001239 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001240 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
1241 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001242 err_code |= ERR_ALERT | ERR_FATAL;
1243 goto out;
1244 }
1245
1246 curr_resolvers->accepted_payload_size = i;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001247 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001248 else if (strcmp(args[0], "resolution_pool_size") == 0) {
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001249 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 +01001250 file, linenum, args[0]);
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001251 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001252 goto out;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001253 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001254 else if (strcmp(args[0], "resolve_retries") == 0) {
1255 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001256 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1257 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001258 err_code |= ERR_ALERT | ERR_FATAL;
1259 goto out;
1260 }
1261 curr_resolvers->resolve_retries = atoi(args[1]);
1262 }
1263 else if (strcmp(args[0], "timeout") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001264 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001265 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
1266 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001267 err_code |= ERR_ALERT | ERR_FATAL;
1268 goto out;
1269 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001270 else if (strcmp(args[1], "retry") == 0 ||
1271 strcmp(args[1], "resolve") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001272 const char *res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001273 unsigned int tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001274
1275 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001276 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1277 file, linenum, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001278 err_code |= ERR_ALERT | ERR_FATAL;
1279 goto out;
1280 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001281 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001282 if (res == PARSE_TIME_OVER) {
1283 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1284 file, linenum, args[2], args[0], args[1]);
1285 err_code |= ERR_ALERT | ERR_FATAL;
1286 goto out;
1287 }
1288 else if (res == PARSE_TIME_UNDER) {
1289 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1290 file, linenum, args[2], args[0], args[1]);
1291 err_code |= ERR_ALERT | ERR_FATAL;
1292 goto out;
1293 }
1294 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001295 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1296 file, linenum, *res, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001297 err_code |= ERR_ALERT | ERR_FATAL;
1298 goto out;
1299 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001300 if (args[1][2] == 't')
1301 curr_resolvers->timeout.retry = tout;
1302 else
1303 curr_resolvers->timeout.resolve = tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001304 }
1305 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001306 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
1307 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001308 err_code |= ERR_ALERT | ERR_FATAL;
1309 goto out;
1310 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001311 } /* neither "nameserver" nor "resolvers" */
1312 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001313 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001314 err_code |= ERR_ALERT | ERR_FATAL;
1315 goto out;
1316 }
1317
1318 out:
1319 free(errmsg);
1320 return err_code;
1321}
Simon Horman0d16a402015-01-30 11:22:58 +09001322
1323/*
William Lallemand51097192015-04-14 16:35:22 +02001324 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001325 * Returns the error code, 0 if OK, or any combination of :
1326 * - ERR_ABORT: must abort ASAP
1327 * - ERR_FATAL: we can continue parsing but not start the service
1328 * - ERR_WARN: a warning has been emitted
1329 * - ERR_ALERT: an alert has been emitted
1330 * Only the two first ones can stop processing, the two others are just
1331 * indicators.
1332 */
1333int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1334{
1335 static struct mailers *curmailers = NULL;
1336 struct mailer *newmailer = NULL;
1337 const char *err;
1338 int err_code = 0;
1339 char *errmsg = NULL;
1340
1341 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1342 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001343 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001344 err_code |= ERR_ALERT | ERR_ABORT;
1345 goto out;
1346 }
1347
1348 err = invalid_char(args[1]);
1349 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001350 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1351 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001352 err_code |= ERR_ALERT | ERR_ABORT;
1353 goto out;
1354 }
1355
1356 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1357 /*
1358 * If there are two proxies with the same name only following
1359 * combinations are allowed:
1360 */
1361 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001362 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1363 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001364 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001365 }
1366 }
1367
Vincent Bernat02779b62016-04-03 13:48:43 +02001368 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001369 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001370 err_code |= ERR_ALERT | ERR_ABORT;
1371 goto out;
1372 }
1373
1374 curmailers->next = mailers;
1375 mailers = curmailers;
1376 curmailers->conf.file = strdup(file);
1377 curmailers->conf.line = linenum;
1378 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001379 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1380 * But need enough time so that timeouts don't occur
1381 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001382 }
1383 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1384 struct sockaddr_storage *sk;
1385 int port1, port2;
1386 struct protocol *proto;
1387
1388 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001389 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1390 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001391 err_code |= ERR_ALERT | ERR_FATAL;
1392 goto out;
1393 }
1394
1395 err = invalid_char(args[1]);
1396 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001397 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1398 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001399 err_code |= ERR_ALERT | ERR_FATAL;
1400 goto out;
1401 }
1402
Vincent Bernat02779b62016-04-03 13:48:43 +02001403 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001404 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001405 err_code |= ERR_ALERT | ERR_ABORT;
1406 goto out;
1407 }
1408
1409 /* the mailers are linked backwards first */
1410 curmailers->count++;
1411 newmailer->next = curmailers->mailer_list;
1412 curmailers->mailer_list = newmailer;
1413 newmailer->mailers = curmailers;
1414 newmailer->conf.file = strdup(file);
1415 newmailer->conf.line = linenum;
1416
1417 newmailer->id = strdup(args[1]);
1418
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001419 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Simon Horman0d16a402015-01-30 11:22:58 +09001420 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001421 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001422 err_code |= ERR_ALERT | ERR_FATAL;
1423 goto out;
1424 }
1425
1426 proto = protocol_by_family(sk->ss_family);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09001427 if (!proto || !proto->connect || proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001428 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1429 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001430 err_code |= ERR_ALERT | ERR_FATAL;
1431 goto out;
1432 }
1433
1434 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001435 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1436 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001437 err_code |= ERR_ALERT | ERR_FATAL;
1438 goto out;
1439 }
1440
1441 if (!port1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001442 ha_alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n",
1443 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001444 err_code |= ERR_ALERT | ERR_FATAL;
1445 goto out;
1446 }
1447
1448 newmailer->addr = *sk;
1449 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001450 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001451 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001452 }
1453 else if (strcmp(args[0], "timeout") == 0) {
1454 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001455 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1456 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001457 err_code |= ERR_ALERT | ERR_FATAL;
1458 goto out;
1459 }
1460 else if (strcmp(args[1], "mail") == 0) {
1461 const char *res;
1462 unsigned int timeout_mail;
1463 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001464 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1465 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001466 err_code |= ERR_ALERT | ERR_FATAL;
1467 goto out;
1468 }
1469 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001470 if (res == PARSE_TIME_OVER) {
1471 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1472 file, linenum, args[2], args[0], args[1]);
1473 err_code |= ERR_ALERT | ERR_FATAL;
1474 goto out;
1475 }
1476 else if (res == PARSE_TIME_UNDER) {
1477 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1478 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001479 err_code |= ERR_ALERT | ERR_FATAL;
1480 goto out;
1481 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001482 else if (res) {
1483 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1484 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001485 err_code |= ERR_ALERT | ERR_FATAL;
1486 goto out;
1487 }
1488 curmailers->timeout.mail = timeout_mail;
1489 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001490 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001491 file, linenum, args[0], args[1]);
1492 err_code |= ERR_ALERT | ERR_FATAL;
1493 goto out;
1494 }
1495 }
Simon Horman0d16a402015-01-30 11:22:58 +09001496 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001497 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001498 err_code |= ERR_ALERT | ERR_FATAL;
1499 goto out;
1500 }
1501
1502out:
1503 free(errmsg);
1504 return err_code;
1505}
1506
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001507void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001508{
1509 free(p->email_alert.mailers.name);
1510 p->email_alert.mailers.name = NULL;
1511 free(p->email_alert.from);
1512 p->email_alert.from = NULL;
1513 free(p->email_alert.to);
1514 p->email_alert.to = NULL;
1515 free(p->email_alert.myhostname);
1516 p->email_alert.myhostname = NULL;
1517}
1518
Willy Tarreaubaaee002006-06-26 02:48:02 +02001519
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001520int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001521cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1522{
Willy Tarreaue5733232019-05-22 19:24:06 +02001523#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001524 const char *err;
1525 const char *item = args[0];
1526
1527 if (!strcmp(item, "namespace_list")) {
1528 return 0;
1529 }
1530 else if (!strcmp(item, "namespace")) {
1531 size_t idx = 1;
1532 const char *current;
1533 while (*(current = args[idx++])) {
1534 err = invalid_char(current);
1535 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001536 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1537 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001538 return ERR_ALERT | ERR_FATAL;
1539 }
1540
1541 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001542 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1543 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001544 return ERR_ALERT | ERR_FATAL;
1545 }
1546 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001547 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1548 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001549 return ERR_ALERT | ERR_FATAL;
1550 }
1551 }
1552 }
1553
1554 return 0;
1555#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001556 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1557 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001558 return ERR_ALERT | ERR_FATAL;
1559#endif
1560}
1561
1562int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001563cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1564{
1565
1566 int err_code = 0;
1567 const char *err;
1568
1569 if (!strcmp(args[0], "userlist")) { /* new userlist */
1570 struct userlist *newul;
1571
1572 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001573 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1574 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001575 err_code |= ERR_ALERT | ERR_FATAL;
1576 goto out;
1577 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001578 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1579 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001580
1581 err = invalid_char(args[1]);
1582 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001583 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1584 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001585 err_code |= ERR_ALERT | ERR_FATAL;
1586 goto out;
1587 }
1588
1589 for (newul = userlist; newul; newul = newul->next)
1590 if (!strcmp(newul->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001591 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1592 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001593 err_code |= ERR_WARN;
1594 goto out;
1595 }
1596
Vincent Bernat02779b62016-04-03 13:48:43 +02001597 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001598 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001599 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001600 err_code |= ERR_ALERT | ERR_ABORT;
1601 goto out;
1602 }
1603
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001604 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001605 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001606 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001607 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001608 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001609 goto out;
1610 }
1611
1612 newul->next = userlist;
1613 userlist = newul;
1614
1615 } else if (!strcmp(args[0], "group")) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001616 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001617 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001618 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001619
1620 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001621 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1622 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001623 err_code |= ERR_ALERT | ERR_FATAL;
1624 goto out;
1625 }
1626
1627 err = invalid_char(args[1]);
1628 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001629 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1630 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001631 err_code |= ERR_ALERT | ERR_FATAL;
1632 goto out;
1633 }
1634
William Lallemand4ac9f542015-05-28 18:03:51 +02001635 if (!userlist)
1636 goto out;
1637
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001638 for (ag = userlist->groups; ag; ag = ag->next)
1639 if (!strcmp(ag->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001640 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1641 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001642 err_code |= ERR_ALERT;
1643 goto out;
1644 }
1645
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001646 ag = calloc(1, sizeof(*ag));
1647 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001648 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001649 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001650 goto out;
1651 }
1652
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001653 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001654 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001655 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001656 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001657 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001658 goto out;
1659 }
1660
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001661 cur_arg = 2;
1662
1663 while (*args[cur_arg]) {
1664 if (!strcmp(args[cur_arg], "users")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001665 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001666 cur_arg += 2;
1667 continue;
1668 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001669 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1670 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001671 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001672 free(ag->groupusers);
1673 free(ag->name);
1674 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001675 goto out;
1676 }
1677 }
1678
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001679 ag->next = userlist->groups;
1680 userlist->groups = ag;
1681
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001682 } else if (!strcmp(args[0], "user")) { /* new user */
1683 struct auth_users *newuser;
1684 int cur_arg;
1685
1686 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001687 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1688 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001689 err_code |= ERR_ALERT | ERR_FATAL;
1690 goto out;
1691 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001692 if (!userlist)
1693 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001694
1695 for (newuser = userlist->users; newuser; newuser = newuser->next)
1696 if (!strcmp(newuser->user, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001697 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1698 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001699 err_code |= ERR_ALERT;
1700 goto out;
1701 }
1702
Vincent Bernat02779b62016-04-03 13:48:43 +02001703 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001704 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001705 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001706 err_code |= ERR_ALERT | ERR_ABORT;
1707 goto out;
1708 }
1709
1710 newuser->user = strdup(args[1]);
1711
1712 newuser->next = userlist->users;
1713 userlist->users = newuser;
1714
1715 cur_arg = 2;
1716
1717 while (*args[cur_arg]) {
1718 if (!strcmp(args[cur_arg], "password")) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001719#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001720 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001721 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1722 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001723 err_code |= ERR_ALERT | ERR_FATAL;
1724 goto out;
1725 }
1726#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001727 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1728 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001729 err_code |= ERR_ALERT;
1730#endif
1731 newuser->pass = strdup(args[cur_arg + 1]);
1732 cur_arg += 2;
1733 continue;
1734 } else if (!strcmp(args[cur_arg], "insecure-password")) {
1735 newuser->pass = strdup(args[cur_arg + 1]);
1736 newuser->flags |= AU_O_INSECURE;
1737 cur_arg += 2;
1738 continue;
1739 } else if (!strcmp(args[cur_arg], "groups")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001740 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001741 cur_arg += 2;
1742 continue;
1743 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001744 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1745 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001746 err_code |= ERR_ALERT | ERR_FATAL;
1747 goto out;
1748 }
1749 }
1750 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001751 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 +01001752 err_code |= ERR_ALERT | ERR_FATAL;
1753 }
1754
1755out:
1756 return err_code;
1757}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001758
Christopher Faulet79bdef32016-11-04 22:36:15 +01001759int
1760cfg_parse_scope(const char *file, int linenum, char *line)
1761{
1762 char *beg, *end, *scope = NULL;
1763 int err_code = 0;
1764 const char *err;
1765
1766 beg = line + 1;
1767 end = strchr(beg, ']');
1768
1769 /* Detect end of scope declaration */
1770 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001771 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1772 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001773 err_code |= ERR_ALERT | ERR_FATAL;
1774 goto out;
1775 }
1776
1777 /* Get scope name and check its validity */
1778 scope = my_strndup(beg, end-beg);
1779 err = invalid_char(scope);
1780 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001781 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1782 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001783 err_code |= ERR_ALERT | ERR_ABORT;
1784 goto out;
1785 }
1786
1787 /* Be sure to have a scope declaration alone on its line */
1788 line = end+1;
1789 while (isspace((unsigned char)*line))
1790 line++;
1791 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001792 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1793 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001794 err_code |= ERR_ALERT | ERR_ABORT;
1795 goto out;
1796 }
1797
1798 /* We have a valid scope declaration, save it */
1799 free(cfg_scope);
1800 cfg_scope = scope;
1801 scope = NULL;
1802
1803 out:
1804 free(scope);
1805 return err_code;
1806}
1807
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001808int
1809cfg_parse_track_sc_num(unsigned int *track_sc_num,
1810 const char *arg, const char *end, char **errmsg)
1811{
1812 const char *p;
1813 unsigned int num;
1814
1815 p = arg;
1816 num = read_uint64(&arg, end);
1817
1818 if (arg != end) {
1819 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1820 return -1;
1821 }
1822
1823 if (num >= MAX_SESS_STKCTR) {
1824 memprintf(errmsg, "%u track-sc number exceeding "
1825 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1826 return -1;
1827 }
1828
1829 *track_sc_num = num;
1830 return 0;
1831}
1832
Willy Tarreaubaaee002006-06-26 02:48:02 +02001833/*
1834 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001835 * Returns the error code, 0 if OK, or any combination of :
1836 * - ERR_ABORT: must abort ASAP
1837 * - ERR_FATAL: we can continue parsing but not start the service
1838 * - ERR_WARN: a warning has been emitted
1839 * - ERR_ALERT: an alert has been emitted
1840 * Only the two first ones can stop processing, the two others are just
1841 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001842 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001843int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001844{
William Lallemand64e84512015-05-12 14:25:37 +02001845 char *thisline;
1846 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001847 FILE *f;
1848 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001849 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001850 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001851 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001852 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001853 char *outline = NULL;
1854 size_t outlen = 0;
1855 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001856 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001857 int missing_lf = -1;
William Lallemand64e84512015-05-12 14:25:37 +02001858
1859 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001860 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001861 return -1;
1862 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001863
David Carlier97880bb2016-04-08 10:35:26 +01001864 if ((f=fopen(file,"r")) == NULL) {
1865 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001866 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001867 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001868
William Lallemandb2f07452015-05-12 14:27:13 +02001869next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001870 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001871 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001872 char *end;
1873 char *args[MAX_LINE_ARGS + 1];
1874 char *line = thisline;
1875
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001876 if (missing_lf != -1) {
1877 ha_warning("parsing [%s:%d]: Stray NUL character at position %d. "
1878 "This will become a hard error in HAProxy 2.3.\n",
1879 file, linenum, (missing_lf + 1));
1880 err_code |= ERR_WARN;
1881 missing_lf = -1;
1882 }
1883
Willy Tarreaubaaee002006-06-26 02:48:02 +02001884 linenum++;
1885
Willy Tarreau32234e72020-06-16 17:14:33 +02001886 if (fatal >= 50) {
1887 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1888 break;
1889 }
1890
Willy Tarreaubaaee002006-06-26 02:48:02 +02001891 end = line + strlen(line);
1892
William Lallemand64e84512015-05-12 14:25:37 +02001893 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001894 /* Check if we reached the limit and the last char is not \n.
1895 * Watch out for the last line without the terminating '\n'!
1896 */
William Lallemand64e84512015-05-12 14:25:37 +02001897 char *newline;
1898 int newlinesize = linesize * 2;
1899
1900 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1901 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001902 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1903 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001904 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001905 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001906 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001907 continue;
1908 }
1909
1910 readbytes = linesize - 1;
1911 linesize = newlinesize;
1912 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001913 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001914 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001915 }
1916
William Lallemand64e84512015-05-12 14:25:37 +02001917 readbytes = 0;
1918
Willy Tarreau08488f62020-06-26 17:24:54 +02001919 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001920 /* kill trailing LF */
1921 *(end - 1) = 0;
1922 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001923 else {
1924 /* mark this line as truncated */
1925 missing_lf = end - line;
1926 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001927
Willy Tarreaubaaee002006-06-26 02:48:02 +02001928 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001929 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001930 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001931
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001932 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001933 err_code |= cfg_parse_scope(file, linenum, line);
1934 goto next_line;
1935 }
1936
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001937 while (1) {
1938 uint32_t err;
1939 char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001940
Willy Tarreau61dd44b2020-06-25 07:35:42 +02001941 arg = MAX_LINE_ARGS + 1;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001942 outlen = outlinesize;
1943 err = parse_line(line, outline, &outlen, args, &arg,
1944 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
1945 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP, &errptr);
1946
1947 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001948 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1949
1950 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1951 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001952 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001953 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001954 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001955 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001956
1957 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001958 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1959
1960 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1961 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001962 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001963 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001964 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001965 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001966
1967 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001968 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1969
1970 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1971 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001972 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001973 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001974 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001975 }
William Lallemandb2f07452015-05-12 14:27:13 +02001976
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001977 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001978 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1979
1980 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1981 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001982 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001983 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001984 goto next_line;
1985 }
William Lallemandb2f07452015-05-12 14:27:13 +02001986
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001987 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1988 outlinesize = (outlen + 1023) & -1024;
1989 outline = realloc(outline, outlinesize);
1990 if (outline == NULL) {
1991 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1992 file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001993 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001994 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001995 goto next_line;
William Lallemandb2f07452015-05-12 14:27:13 +02001996 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001997 /* try again */
1998 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001999 }
Willy Tarreau07d47062020-06-25 07:41:22 +02002000
2001 if (err & PARSE_ERR_TOOMANY) {
2002 /* only check this *after* being sure the output is allocated */
2003 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
2004 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
2005 err_code |= ERR_ALERT | ERR_FATAL;
2006 fatal++;
2007 goto next_line;
2008 }
2009
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002010 /* everything's OK */
2011 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02002012 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002013
2014 /* empty line */
2015 if (!**args)
2016 continue;
2017
Willy Tarreau3842f002009-06-14 11:39:52 +02002018 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002019 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02002020 char *tmp;
2021
Willy Tarreau3842f002009-06-14 11:39:52 +02002022 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002023 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002024 for (arg=0; *args[arg+1]; arg++)
2025 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002026 *tmp = '\0'; // fix the next arg to \0
2027 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002028 }
Willy Tarreau3842f002009-06-14 11:39:52 +02002029 else if (!strcmp(args[0], "default")) {
2030 kwm = KWM_DEF;
2031 for (arg=0; *args[arg+1]; arg++)
2032 args[arg] = args[arg+1]; // shift args after inversion
2033 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002034
William Dauchyec730982019-10-27 20:08:10 +01002035 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2036 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002037 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
2038 strcmp(args[0], "insecure-fork-wanted") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002039 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002040 "supported only for options, log, busy-polling, "
Willy Tarreaud96f1122019-12-03 07:07:36 +01002041 "set-dumpable, strict-limits, and insecure-fork-wanted.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002042 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002043 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002044 }
2045
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002046 /* detect section start */
2047 list_for_each_entry(ics, &sections, list) {
2048 if (strcmp(args[0], ics->section_name) == 0) {
2049 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002050 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002051 cs = ics;
2052 break;
2053 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002054 }
2055
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002056 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002057 int status;
2058
2059 status = pcs->post_section_parser();
2060 err_code |= status;
2061 if (status & ERR_FATAL)
2062 fatal++;
2063
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002064 if (err_code & ERR_ABORT)
2065 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002066 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002067 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002068
William Lallemandd2ff56d2017-10-16 11:06:50 +02002069 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002070 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002071 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002072 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002073 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002074 int status;
2075
2076 status = cs->section_parser(file, linenum, args, kwm);
2077 err_code |= status;
2078 if (status & ERR_FATAL)
2079 fatal++;
2080
William Lallemandd2ff56d2017-10-16 11:06:50 +02002081 if (err_code & ERR_ABORT)
2082 goto err;
2083 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002084 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002085
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002086 if (missing_lf != -1) {
2087 ha_warning("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d. "
2088 "This will become a hard error in HAProxy 2.3.\n",
2089 file, linenum, (missing_lf + 1));
2090 err_code |= ERR_WARN;
2091 }
2092
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002093 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002094 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002095
2096err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002097 free(cfg_scope);
2098 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002099 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002100 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002101 free(outline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002102 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002103 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002104}
2105
Willy Tarreau64ab6072014-09-16 12:17:36 +02002106/* This function propagates processes from frontend <from> to backend <to> so
2107 * that it is always guaranteed that a backend pointed to by a frontend is
2108 * bound to all of its processes. After that, if the target is a "listen"
2109 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002110 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002111 * checked first to ensure that <to> is already bound to all processes of
2112 * <from>, there is no risk of looping and we ensure to follow the shortest
2113 * path to the destination.
2114 *
2115 * It is possible to set <to> to NULL for the first call so that the function
2116 * takes care of visiting the initial frontend in <from>.
2117 *
2118 * It is important to note that the function relies on the fact that all names
2119 * have already been resolved.
2120 */
2121void propagate_processes(struct proxy *from, struct proxy *to)
2122{
2123 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002124
2125 if (to) {
2126 /* check whether we need to go down */
2127 if (from->bind_proc &&
2128 (from->bind_proc & to->bind_proc) == from->bind_proc)
2129 return;
2130
2131 if (!from->bind_proc && !to->bind_proc)
2132 return;
2133
2134 to->bind_proc = from->bind_proc ?
2135 (to->bind_proc | from->bind_proc) : 0;
2136
2137 /* now propagate down */
2138 from = to;
2139 }
2140
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002141 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002142 return;
2143
Willy Tarreauf6b70012014-12-18 14:00:43 +01002144 if (from->state == PR_STSTOPPED)
2145 return;
2146
Willy Tarreau64ab6072014-09-16 12:17:36 +02002147 /* default_backend */
2148 if (from->defbe.be)
2149 propagate_processes(from, from->defbe.be);
2150
2151 /* use_backend */
2152 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002153 if (rule->dynamic)
2154 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002155 to = rule->be.backend;
2156 propagate_processes(from, to);
2157 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002158}
2159
Willy Tarreaubb925012009-07-23 13:36:36 +02002160/*
2161 * Returns the error code, 0 if OK, or any combination of :
2162 * - ERR_ABORT: must abort ASAP
2163 * - ERR_FATAL: we can continue parsing but not start the service
2164 * - ERR_WARN: a warning has been emitted
2165 * - ERR_ALERT: an alert has been emitted
2166 * Only the two first ones can stop processing, the two others are just
2167 * indicators.
2168 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002169int check_config_validity()
2170{
2171 int cfgerr = 0;
2172 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002173 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002174 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002175 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002176 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002177 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002178 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002179 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002180 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002181
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002182 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002183 /*
2184 * Now, check for the integrity of all that we have collected.
2185 */
2186
2187 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002188 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002189
Willy Tarreau193b8c62012-11-22 00:17:38 +01002190 if (!global.tune.max_http_hdr)
2191 global.tune.max_http_hdr = MAX_HTTP_HDR;
2192
2193 if (!global.tune.cookie_len)
2194 global.tune.cookie_len = CAPTURE_LEN;
2195
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002196 if (!global.tune.requri_len)
2197 global.tune.requri_len = REQURI_LEN;
2198
Willy Tarreau149ab772019-01-26 14:27:06 +01002199 if (!global.nbthread) {
2200 /* nbthread not set, thus automatic. In this case, and only if
2201 * running on a single process, we enable the same number of
2202 * threads as the number of CPUs the process is bound to. This
2203 * allows to easily control the number of threads using taskset.
2204 */
2205 global.nbthread = 1;
2206#if defined(USE_THREAD)
2207 if (global.nbproc == 1)
2208 global.nbthread = thread_cpus_enabled_at_boot;
2209 all_threads_mask = nbits(global.nbthread);
2210#endif
2211 }
2212
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002213 if (global.nbproc > 1 && global.nbthread > 1) {
2214 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2215 err_code |= ERR_ALERT | ERR_FATAL;
2216 goto out;
2217 }
2218
Willy Tarreaubafbe012017-11-24 17:34:44 +01002219 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002220
Willy Tarreaubafbe012017-11-24 17:34:44 +01002221 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002222
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002223 /* Post initialisation of the users and groups lists. */
2224 err_code = userlist_postinit();
2225 if (err_code != ERR_NONE)
2226 goto out;
2227
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002228 /* first, we will invert the proxy list order */
2229 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002230 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002231 struct proxy *next;
2232
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002233 next = proxies_list->next;
2234 proxies_list->next = curproxy;
2235 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002236 if (!next)
2237 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002238 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002239 }
2240
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002241 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002242 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002243 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002244 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002245 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002246 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002247 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002248 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002249
Willy Tarreau050536d2012-10-04 08:47:34 +02002250 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002251 /* proxy ID not set, use automatic numbering with first
2252 * spare entry starting with next_pxid.
2253 */
2254 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2255 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2256 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002257 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002258 next_pxid++;
2259
Willy Tarreau55ea7572007-06-17 19:56:27 +02002260
Willy Tarreaubaaee002006-06-26 02:48:02 +02002261 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002262 /* ensure we don't keep listeners uselessly bound */
2263 stop_proxy(curproxy);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002264 if (curproxy->table) {
2265 free((void *)curproxy->table->peers.name);
2266 curproxy->table->peers.p = NULL;
2267 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002268 continue;
2269 }
2270
Willy Tarreau102df612014-05-07 23:56:38 +02002271 /* Check multi-process mode compatibility for the current proxy */
2272
2273 if (curproxy->bind_proc) {
2274 /* an explicit bind-process was specified, let's check how many
2275 * processes remain.
2276 */
David Carliere6c39412015-07-02 07:00:17 +00002277 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002278
Willy Tarreaua38a7172019-02-02 17:11:28 +01002279 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002280 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002281 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 +02002282 curproxy->bind_proc = 1;
2283 }
2284 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002285 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 +02002286 curproxy->bind_proc = 0;
2287 }
2288 }
2289
Willy Tarreau3d209582014-05-09 17:06:11 +02002290 /* check and reduce the bind-proc of each listener */
2291 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2292 unsigned long mask;
2293
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002294 /* HTTP frontends with "h2" as ALPN/NPN will work in
2295 * HTTP/2 and absolutely require buffers 16kB or larger.
2296 */
2297#ifdef USE_OPENSSL
2298 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2299#ifdef OPENSSL_NPN_NEGOTIATED
2300 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002301 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002302 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",
2303 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002304 cfgerr++;
2305 }
2306#endif
2307#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2308 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002309 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002310 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",
2311 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002312 cfgerr++;
2313 }
2314#endif
2315 } /* HTTP && bufsize < 16384 */
2316#endif
2317
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002318 /* detect and address thread affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002319 mask = thread_mask(bind_conf->bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002320 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002321 unsigned long new_mask = 0;
2322
2323 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002324 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002325 mask >>= global.nbthread;
2326 }
2327
Willy Tarreaua36b3242019-02-02 13:14:34 +01002328 bind_conf->bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002329 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",
2330 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2331 }
2332
2333 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002334 mask = proc_mask(bind_conf->bind_proc) & proc_mask(curproxy->bind_proc);
2335 if (!(mask & all_proc_mask)) {
2336 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
2337 nbproc = my_popcountl(bind_conf->bind_proc);
2338 bind_conf->bind_proc = proc_mask(bind_conf->bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002339
Willy Tarreaua36b3242019-02-02 13:14:34 +01002340 if (!bind_conf->bind_proc && nbproc == 1) {
2341 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",
2342 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2343 bind_conf->bind_proc = mask & ~(mask - 1);
2344 }
2345 else if (!bind_conf->bind_proc && nbproc > 1) {
2346 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",
2347 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2348 bind_conf->bind_proc = 0;
2349 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002350 }
2351 }
2352
Willy Tarreauff01a212009-03-15 13:46:16 +01002353 switch (curproxy->mode) {
2354 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002355 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002356 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002357 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2358 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002359 cfgerr++;
2360 }
2361
2362 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002363 ha_warning("config : servers will be ignored for %s '%s'.\n",
2364 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002365 break;
2366
2367 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002368 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002369 break;
2370
2371 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002372 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002373 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002374
2375 case PR_MODE_CLI:
2376 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2377 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002378 }
2379
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002380 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002381 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2382 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002383 err_code |= ERR_WARN;
2384 }
2385
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002386 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002387 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002388 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002389 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2390 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002391 cfgerr++;
2392 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002393#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002394 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002395 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2396 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002397 cfgerr++;
2398 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002399#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002400 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002401 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2402 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002403 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002404 }
2405 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002406 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002407 /* If no LB algo is set in a backend, and we're not in
2408 * transparent mode, dispatch mode nor proxy mode, we
2409 * want to use balance roundrobin by default.
2410 */
2411 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2412 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002413 }
2414 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002415
Willy Tarreau1620ec32011-08-06 17:05:02 +02002416 if (curproxy->options & PR_O_DISPATCH)
2417 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2418 else if (curproxy->options & PR_O_HTTP_PROXY)
2419 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2420 else if (curproxy->options & PR_O_TRANSP)
2421 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002422
Christopher Faulete5870d82020-04-15 11:32:03 +02002423 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2424 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2425 proxy_type_str(curproxy), curproxy->id);
2426 err_code |= ERR_WARN;
2427 }
2428
2429 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002430 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002431 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002432 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2433 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002434 err_code |= ERR_WARN;
2435 curproxy->options &= ~PR_O_DISABLE404;
2436 }
2437 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002438 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2439 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002440 err_code |= ERR_WARN;
2441 curproxy->options &= ~PR_O2_CHK_SNDST;
2442 }
Willy Tarreauef781042010-01-27 11:53:01 +01002443 }
2444
Simon Horman98637e52014-06-20 12:30:16 +09002445 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2446 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002447 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2448 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002449 cfgerr++;
2450 }
2451 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002452 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2453 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002454 cfgerr++;
2455 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002456 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2457 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2458 curproxy->id, "option external-check");
2459 err_code |= ERR_WARN;
2460 }
Simon Horman98637e52014-06-20 12:30:16 +09002461 }
2462
Simon Horman64e34162015-02-06 11:11:57 +09002463 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002464 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002465 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2466 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2467 "'email-alert myhostname', or 'email-alert to' "
2468 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2469 "to be present).\n",
2470 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002471 err_code |= ERR_WARN;
2472 free_email_alert(curproxy);
2473 }
2474 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002475 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002476 }
2477
Simon Horman98637e52014-06-20 12:30:16 +09002478 if (curproxy->check_command) {
2479 int clear = 0;
2480 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002481 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2482 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002483 err_code |= ERR_WARN;
2484 clear = 1;
2485 }
2486 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002487 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2488 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002489 cfgerr++;
2490 }
2491 if (clear) {
2492 free(curproxy->check_command);
2493 curproxy->check_command = NULL;
2494 }
2495 }
2496
2497 if (curproxy->check_path) {
2498 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002499 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2500 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002501 err_code |= ERR_WARN;
2502 free(curproxy->check_path);
2503 curproxy->check_path = NULL;
2504 }
2505 }
2506
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002507 /* if a default backend was specified, let's find it */
2508 if (curproxy->defbe.name) {
2509 struct proxy *target;
2510
Willy Tarreauafb39922015-05-26 12:04:09 +02002511 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002512 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002513 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2514 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002515 cfgerr++;
2516 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002517 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2518 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002519 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002520 } else if (target->mode != curproxy->mode &&
2521 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2522
Christopher Faulet767a84b2017-11-24 16:50:31 +01002523 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2524 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2525 curproxy->conf.file, curproxy->conf.line,
2526 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2527 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002528 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002529 } else {
2530 free(curproxy->defbe.name);
2531 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002532 /* Emit a warning if this proxy also has some servers */
2533 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002534 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2535 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002536 err_code |= ERR_WARN;
2537 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002538 }
2539 }
2540
Willy Tarreau55ea7572007-06-17 19:56:27 +02002541 /* find the target proxy for 'use_backend' rules */
2542 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002543 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002544 struct logformat_node *node;
2545 char *pxname;
2546
2547 /* Try to parse the string as a log format expression. If the result
2548 * of the parsing is only one entry containing a simple string, then
2549 * it's a standard string corresponding to a static rule, thus the
2550 * parsing is cancelled and be.name is restored to be resolved.
2551 */
2552 pxname = rule->be.name;
2553 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002554 curproxy->conf.args.ctx = ARGC_UBK;
2555 curproxy->conf.args.file = rule->file;
2556 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002557 err = NULL;
2558 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002559 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2560 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002561 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002562 cfgerr++;
2563 continue;
2564 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002565 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2566
2567 if (!LIST_ISEMPTY(&rule->be.expr)) {
2568 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2569 rule->dynamic = 1;
2570 free(pxname);
2571 continue;
2572 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002573 /* Only one element in the list, a simple string: free the expression and
2574 * fall back to static rule
2575 */
2576 LIST_DEL(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002577 free(node->arg);
2578 free(node);
2579 }
2580
2581 rule->dynamic = 0;
2582 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002583
Willy Tarreauafb39922015-05-26 12:04:09 +02002584 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002585 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002586 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2587 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002588 cfgerr++;
2589 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002590 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2591 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002592 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002593 } else if (target->mode != curproxy->mode &&
2594 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2595
Christopher Faulet767a84b2017-11-24 16:50:31 +01002596 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2597 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2598 curproxy->conf.file, curproxy->conf.line,
2599 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2600 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002601 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002602 } else {
2603 free((void *)rule->be.name);
2604 rule->be.backend = target;
2605 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002606 }
2607
Willy Tarreau64ab6072014-09-16 12:17:36 +02002608 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002609 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002610 struct server *target;
2611 struct logformat_node *node;
2612 char *server_name;
2613
2614 /* We try to parse the string as a log format expression. If the result of the parsing
2615 * is only one entry containing a single string, then it's a standard string corresponding
2616 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2617 */
2618 server_name = srule->srv.name;
2619 LIST_INIT(&srule->expr);
2620 curproxy->conf.args.ctx = ARGC_USRV;
2621 err = NULL;
2622 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2623 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2624 srule->file, srule->line, server_name, err);
2625 free(err);
2626 cfgerr++;
2627 continue;
2628 }
2629 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2630
2631 if (!LIST_ISEMPTY(&srule->expr)) {
2632 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2633 srule->dynamic = 1;
2634 free(server_name);
2635 continue;
2636 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002637 /* Only one element in the list, a simple string: free the expression and
2638 * fall back to static rule
2639 */
2640 LIST_DEL(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002641 free(node->arg);
2642 free(node);
2643 }
2644
2645 srule->dynamic = 0;
2646 srule->srv.name = server_name;
2647 target = findserver(curproxy, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002648
2649 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002650 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2651 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002652 cfgerr++;
2653 continue;
2654 }
2655 free((void *)srule->srv.name);
2656 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002657 }
2658
Emeric Brunb982a3d2010-01-04 15:45:53 +01002659 /* find the target table for 'stick' rules */
2660 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002661 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002662
Emeric Brun1d33b292010-01-04 15:47:17 +01002663 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2664 if (mrule->flags & STK_IS_STORE)
2665 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2666
Emeric Brunb982a3d2010-01-04 15:45:53 +01002667 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002668 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002669 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002670 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002671
2672 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002673 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002674 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002675 cfgerr++;
2676 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002677 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002678 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2679 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002680 cfgerr++;
2681 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002682 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002683 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2684 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002685 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002686 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002687 else {
2688 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002689 mrule->table.t = target;
2690 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002691 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002692 if (!in_proxies_list(target->proxies_list, curproxy)) {
2693 curproxy->next_stkt_ref = target->proxies_list;
2694 target->proxies_list = curproxy;
2695 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002696 }
2697 }
2698
2699 /* find the target table for 'store response' rules */
2700 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002701 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002702
Emeric Brun1d33b292010-01-04 15:47:17 +01002703 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2704
Emeric Brunb982a3d2010-01-04 15:45:53 +01002705 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002706 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002707 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002708 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002709
2710 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002711 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002712 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002713 cfgerr++;
2714 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002715 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002716 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2717 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002718 cfgerr++;
2719 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002720 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002721 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2722 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002723 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002724 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002725 else {
2726 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002727 mrule->table.t = target;
2728 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002729 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002730 if (!in_proxies_list(target->proxies_list, curproxy)) {
2731 curproxy->next_stkt_ref = target->proxies_list;
2732 target->proxies_list = curproxy;
2733 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002734 }
2735 }
2736
Christopher Faulete4e830d2017-09-18 14:51:41 +02002737 /* check validity for 'tcp-request' layer 4 rules */
2738 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2739 err = NULL;
2740 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002741 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002742 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002743 cfgerr++;
2744 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002745 }
2746
Christopher Faulete4e830d2017-09-18 14:51:41 +02002747 /* check validity for 'tcp-request' layer 5 rules */
2748 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2749 err = NULL;
2750 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002751 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002752 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002753 cfgerr++;
2754 }
2755 }
2756
Christopher Faulete4e830d2017-09-18 14:51:41 +02002757 /* check validity for 'tcp-request' layer 6 rules */
2758 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2759 err = NULL;
2760 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002761 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002762 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002763 cfgerr++;
2764 }
2765 }
2766
Christopher Faulete4e830d2017-09-18 14:51:41 +02002767 /* check validity for 'http-request' layer 7 rules */
2768 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2769 err = NULL;
2770 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002771 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002772 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002773 cfgerr++;
2774 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002775 }
2776
Christopher Faulete4e830d2017-09-18 14:51:41 +02002777 /* check validity for 'http-response' layer 7 rules */
2778 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2779 err = NULL;
2780 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002781 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002782 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002783 cfgerr++;
2784 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002785 }
2786
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002787 /* check validity for 'http-after-response' layer 7 rules */
2788 list_for_each_entry(arule, &curproxy->http_after_res_rules, list) {
2789 err = NULL;
2790 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
2791 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
2792 free(err);
2793 cfgerr++;
2794 }
2795 }
2796
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002797 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002798 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002799
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002800 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002801 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
2802 free((void *)curproxy->table->peers.name);
2803 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002804 break;
2805 }
2806 }
2807
2808 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002809 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002810 curproxy->id, curproxy->table->peers.name);
2811 free((void *)curproxy->table->peers.name);
2812 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002813 cfgerr++;
2814 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002815 else if (curpeers->state == PR_STSTOPPED) {
2816 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002817 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002818 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002819 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002820 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2821 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002822 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002823 cfgerr++;
2824 }
2825 }
2826
Simon Horman9dc49962015-01-30 11:22:59 +09002827
2828 if (curproxy->email_alert.mailers.name) {
2829 struct mailers *curmailers = mailers;
2830
2831 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002832 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002833 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002834 }
Simon Horman9dc49962015-01-30 11:22:59 +09002835 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002836 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2837 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002838 free_email_alert(curproxy);
2839 cfgerr++;
2840 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002841 else {
2842 err = NULL;
2843 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002844 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002845 free(err);
2846 cfgerr++;
2847 }
2848 }
Simon Horman9dc49962015-01-30 11:22:59 +09002849 }
2850
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002851 if (curproxy->uri_auth && curproxy->uri_auth != defproxy.uri_auth &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002852 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002853 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002854 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2855 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002856 cfgerr++;
2857 goto out_uri_auth_compat;
2858 }
2859
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002860 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
2861 (curproxy->uri_auth != defproxy.uri_auth ||
2862 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002863 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002864 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002865 int i = 0;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002866 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2867 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002868
2869 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002870 uri_auth_compat_req[i++] = "realm";
2871 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2872 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002873
Willy Tarreau95fa4692010-02-01 13:05:50 +01002874 uri_auth_compat_req[i++] = "unless";
2875 uri_auth_compat_req[i++] = "{";
2876 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2877 uri_auth_compat_req[i++] = "}";
2878 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002879
Willy Tarreauff011f22011-01-06 17:51:27 +01002880 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2881 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002882 cfgerr++;
2883 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002884 }
2885
Willy Tarreauff011f22011-01-06 17:51:27 +01002886 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002887
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002888 if (curproxy->uri_auth->auth_realm) {
2889 free(curproxy->uri_auth->auth_realm);
2890 curproxy->uri_auth->auth_realm = NULL;
2891 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002892 }
2893out_uri_auth_compat:
2894
Dragan Dosen43885c72015-10-01 13:18:13 +02002895 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002896 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002897 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2898 if (!curproxy->conf.logformat_sd_string) {
2899 /* set the default logformat_sd_string */
2900 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2901 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002902 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002903 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002904 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002905
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002906 /* compile the log format */
2907 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002908 if (curproxy->conf.logformat_string != default_http_log_format &&
2909 curproxy->conf.logformat_string != default_tcp_log_format &&
2910 curproxy->conf.logformat_string != clf_http_log_format)
2911 free(curproxy->conf.logformat_string);
2912 curproxy->conf.logformat_string = NULL;
2913 free(curproxy->conf.lfs_file);
2914 curproxy->conf.lfs_file = NULL;
2915 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002916
2917 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2918 free(curproxy->conf.logformat_sd_string);
2919 curproxy->conf.logformat_sd_string = NULL;
2920 free(curproxy->conf.lfsd_file);
2921 curproxy->conf.lfsd_file = NULL;
2922 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002923 }
2924
Willy Tarreau62a61232013-04-12 18:13:46 +02002925 if (curproxy->conf.logformat_string) {
2926 curproxy->conf.args.ctx = ARGC_LOG;
2927 curproxy->conf.args.file = curproxy->conf.lfs_file;
2928 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002929 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002930 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002931 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002932 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
2933 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002934 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002935 cfgerr++;
2936 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002937 curproxy->conf.args.file = NULL;
2938 curproxy->conf.args.line = 0;
2939 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002940
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002941 if (curproxy->conf.logformat_sd_string) {
2942 curproxy->conf.args.ctx = ARGC_LOGSD;
2943 curproxy->conf.args.file = curproxy->conf.lfsd_file;
2944 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002945 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002946 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 +01002947 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002948 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2949 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002950 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002951 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002952 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002953 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2954 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002955 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002956 cfgerr++;
2957 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002958 curproxy->conf.args.file = NULL;
2959 curproxy->conf.args.line = 0;
2960 }
2961
Willy Tarreau62a61232013-04-12 18:13:46 +02002962 if (curproxy->conf.uniqueid_format_string) {
2963 curproxy->conf.args.ctx = ARGC_UIF;
2964 curproxy->conf.args.file = curproxy->conf.uif_file;
2965 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002966 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002967 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 +01002968 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002969 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
2970 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002971 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002972 cfgerr++;
2973 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002974 curproxy->conf.args.file = NULL;
2975 curproxy->conf.args.line = 0;
2976 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002977
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002978 /* only now we can check if some args remain unresolved.
2979 * This must be done after the users and groups resolution.
2980 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002981 cfgerr += smp_resolve_args(curproxy);
2982 if (!cfgerr)
2983 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002984
Willy Tarreau2738a142006-07-08 17:28:09 +02002985 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002986 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02002987 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02002988 (!curproxy->timeout.connect ||
2989 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002990 ha_warning("config : missing timeouts for %s '%s'.\n"
2991 " | While not properly invalid, you will certainly encounter various problems\n"
2992 " | with such a configuration. To fix this, please ensure that all following\n"
2993 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
2994 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002995 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02002996 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02002997
Willy Tarreau1fa31262007-12-03 00:36:16 +01002998 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
2999 * We must still support older configurations, so let's find out whether those
3000 * parameters have been set or must be copied from contimeouts.
3001 */
3002 if (curproxy != &defproxy) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003003 if (!curproxy->timeout.tarpit ||
3004 curproxy->timeout.tarpit == defproxy.timeout.tarpit) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003005 /* tarpit timeout not set. We search in the following order:
3006 * default.tarpit, curr.connect, default.connect.
3007 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003008 if (defproxy.timeout.tarpit)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003009 curproxy->timeout.tarpit = defproxy.timeout.tarpit;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003010 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003011 curproxy->timeout.tarpit = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003012 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003013 curproxy->timeout.tarpit = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003014 }
3015 if ((curproxy->cap & PR_CAP_BE) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003016 (!curproxy->timeout.queue ||
3017 curproxy->timeout.queue == defproxy.timeout.queue)) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003018 /* queue timeout not set. We search in the following order:
3019 * default.queue, curr.connect, default.connect.
3020 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003021 if (defproxy.timeout.queue)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003022 curproxy->timeout.queue = defproxy.timeout.queue;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003023 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003024 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003025 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003026 curproxy->timeout.queue = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003027 }
3028 }
3029
Christopher Faulete5870d82020-04-15 11:32:03 +02003030 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003031 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
3032 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003033 err_code |= ERR_WARN;
3034 }
3035
Willy Tarreau193b8c62012-11-22 00:17:38 +01003036 /* ensure that cookie capture length is not too large */
3037 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003038 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3039 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003040 err_code |= ERR_WARN;
3041 curproxy->capture_len = global.tune.cookie_len - 1;
3042 }
3043
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003044 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003045 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003046 curproxy->req_cap_pool = create_pool("ptrcap",
3047 curproxy->nb_req_cap * sizeof(char *),
3048 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003049 }
3050
3051 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003052 curproxy->rsp_cap_pool = create_pool("ptrcap",
3053 curproxy->nb_rsp_cap * sizeof(char *),
3054 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003055 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003056
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003057 switch (curproxy->load_server_state_from_file) {
3058 case PR_SRV_STATE_FILE_UNSPEC:
3059 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3060 break;
3061 case PR_SRV_STATE_FILE_GLOBAL:
3062 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003063 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",
3064 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003065 err_code |= ERR_WARN;
3066 }
3067 break;
3068 }
3069
Willy Tarreaubaaee002006-06-26 02:48:02 +02003070 /* first, we will invert the servers list order */
3071 newsrv = NULL;
3072 while (curproxy->srv) {
3073 struct server *next;
3074
3075 next = curproxy->srv->next;
3076 curproxy->srv->next = newsrv;
3077 newsrv = curproxy->srv;
3078 if (!next)
3079 break;
3080 curproxy->srv = next;
3081 }
3082
Willy Tarreau17edc812014-01-03 12:14:34 +01003083 /* Check that no server name conflicts. This causes trouble in the stats.
3084 * We only emit a warning for the first conflict affecting each server,
3085 * in order to avoid combinatory explosion if all servers have the same
3086 * name. We do that only for servers which do not have an explicit ID,
3087 * because these IDs were made also for distinguishing them and we don't
3088 * want to annoy people who correctly manage them.
3089 */
3090 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3091 struct server *other_srv;
3092
3093 if (newsrv->puid)
3094 continue;
3095
3096 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3097 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003098 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 +01003099 newsrv->conf.file, newsrv->conf.line,
3100 proxy_type_str(curproxy), curproxy->id,
3101 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003102 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003103 break;
3104 }
3105 }
3106 }
3107
Willy Tarreaudd701652010-05-25 23:03:02 +02003108 /* assign automatic UIDs to servers which don't have one yet */
3109 next_id = 1;
3110 newsrv = curproxy->srv;
3111 while (newsrv != NULL) {
3112 if (!newsrv->puid) {
3113 /* server ID not set, use automatic numbering with first
3114 * spare entry starting with next_svid.
3115 */
3116 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3117 newsrv->conf.id.key = newsrv->puid = next_id;
3118 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003119 newsrv->conf.name.key = newsrv->id;
3120 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003121 }
3122 next_id++;
3123 newsrv = newsrv->next;
3124 }
3125
Willy Tarreau20697042007-11-15 23:26:18 +01003126 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003127 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003128
Willy Tarreau62c3be22012-01-20 13:12:32 +01003129 /*
3130 * If this server supports a maxconn parameter, it needs a dedicated
3131 * tasks to fill the emptied slots when a connection leaves.
3132 * Also, resolve deferred tracking dependency if needed.
3133 */
3134 newsrv = curproxy->srv;
3135 while (newsrv != NULL) {
3136 if (newsrv->minconn > newsrv->maxconn) {
3137 /* Only 'minconn' was specified, or it was higher than or equal
3138 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3139 * this will avoid further useless expensive computations.
3140 */
3141 newsrv->maxconn = newsrv->minconn;
3142 } else if (newsrv->maxconn && !newsrv->minconn) {
3143 /* minconn was not specified, so we set it to maxconn */
3144 newsrv->minconn = newsrv->maxconn;
3145 }
3146
Willy Tarreau17d45382016-12-22 21:16:08 +01003147 /* this will also properly set the transport layer for prod and checks */
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003148 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 || (newsrv->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003149 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3150 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3151 }
Emeric Brun94324a42012-10-11 14:00:19 +02003152
Willy Tarreau034c88c2017-01-23 23:36:45 +01003153 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3154 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3155 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3156 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",
3157 newsrv->conf.file, newsrv->conf.line,
3158 proxy_type_str(curproxy), curproxy->id,
3159 newsrv->id);
3160
Willy Tarreau62c3be22012-01-20 13:12:32 +01003161 if (newsrv->trackit) {
3162 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003163 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003164 char *pname, *sname;
3165
3166 pname = newsrv->trackit;
3167 sname = strrchr(pname, '/');
3168
3169 if (sname)
3170 *sname++ = '\0';
3171 else {
3172 sname = pname;
3173 pname = NULL;
3174 }
3175
3176 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003177 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003178 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003179 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3180 proxy_type_str(curproxy), curproxy->id,
3181 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003182 cfgerr++;
3183 goto next_srv;
3184 }
3185 } else
3186 px = curproxy;
3187
3188 srv = findserver(px, sname);
3189 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003190 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3191 proxy_type_str(curproxy), curproxy->id,
3192 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003193 cfgerr++;
3194 goto next_srv;
3195 }
3196
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003197 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003198 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3199 "tracking as it does not have any check nor agent enabled.\n",
3200 proxy_type_str(curproxy), curproxy->id,
3201 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003202 cfgerr++;
3203 goto next_srv;
3204 }
3205
3206 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3207
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003208 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003209 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3210 "belongs to a tracking chain looping back to %s/%s.\n",
3211 proxy_type_str(curproxy), curproxy->id,
3212 newsrv->id, px->id, srv->id, px->id,
3213 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003214 cfgerr++;
3215 goto next_srv;
3216 }
3217
3218 if (curproxy != px &&
3219 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003220 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3221 "tracking: disable-on-404 option inconsistency.\n",
3222 proxy_type_str(curproxy), curproxy->id,
3223 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003224 cfgerr++;
3225 goto next_srv;
3226 }
3227
Willy Tarreau62c3be22012-01-20 13:12:32 +01003228 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003229 newsrv->tracknext = srv->trackers;
3230 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003231
3232 free(newsrv->trackit);
3233 newsrv->trackit = NULL;
3234 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003235
Willy Tarreau62c3be22012-01-20 13:12:32 +01003236 next_srv:
3237 newsrv = newsrv->next;
3238 }
3239
Olivier Houchard4e694042017-03-14 20:01:29 +01003240 /*
3241 * Try to generate dynamic cookies for servers now.
3242 * It couldn't be done earlier, since at the time we parsed
3243 * the server line, we may not have known yet that we
3244 * should use dynamic cookies, or the secret key may not
3245 * have been provided yet.
3246 */
3247 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3248 newsrv = curproxy->srv;
3249 while (newsrv != NULL) {
3250 srv_set_dyncookie(newsrv);
3251 newsrv = newsrv->next;
3252 }
3253
3254 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003255 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003256 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003257 */
3258
3259 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3260 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3261 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003262 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3263 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3264 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003265 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3266 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3267 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003268 } else {
3269 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3270 fwrr_init_server_groups(curproxy);
3271 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003272 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003273
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003274 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003275 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3276 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3277 fwlc_init_server_tree(curproxy);
3278 } else {
3279 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3280 fas_init_server_tree(curproxy);
3281 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003282 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003283
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003284 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003285 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3286 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3287 chash_init_server_tree(curproxy);
3288 } else {
3289 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3290 init_server_map(curproxy);
3291 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003292 break;
3293 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003294 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003295
3296 if (curproxy->options & PR_O_LOGASAP)
3297 curproxy->to_log &= ~LW_BYTES;
3298
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003299 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003300 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3301 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003302 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3303 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003304 err_code |= ERR_WARN;
3305 }
3306
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003307 if (curproxy->mode != PR_MODE_HTTP) {
3308 int optnum;
3309
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003310 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003311 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3312 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003313 err_code |= ERR_WARN;
3314 curproxy->uri_auth = NULL;
3315 }
3316
Willy Tarreaude7dc882017-03-10 11:49:21 +01003317 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003318 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3319 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003320 err_code |= ERR_WARN;
3321 }
3322
3323 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003324 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3325 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003326 err_code |= ERR_WARN;
3327 }
3328
3329 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003330 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3331 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003332 err_code |= ERR_WARN;
3333 }
3334
Willy Tarreaude7dc882017-03-10 11:49:21 +01003335 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003336 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3337 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003338 err_code |= ERR_WARN;
3339 }
3340
Willy Tarreau87cf5142011-08-19 22:57:24 +02003341 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003342 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3343 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003344 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003345 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003346 }
3347
3348 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003349 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3350 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003351 err_code |= ERR_WARN;
3352 curproxy->options &= ~PR_O_ORGTO;
3353 }
3354
3355 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3356 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3357 (curproxy->cap & cfg_opts[optnum].cap) &&
3358 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003359 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3360 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003361 err_code |= ERR_WARN;
3362 curproxy->options &= ~cfg_opts[optnum].val;
3363 }
3364 }
3365
3366 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3367 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3368 (curproxy->cap & cfg_opts2[optnum].cap) &&
3369 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003370 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3371 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003372 err_code |= ERR_WARN;
3373 curproxy->options2 &= ~cfg_opts2[optnum].val;
3374 }
3375 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003376
Willy Tarreau29fbe512015-08-20 19:35:14 +02003377#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003378 if (curproxy->conn_src.bind_hdr_occ) {
3379 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003380 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3381 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003382 err_code |= ERR_WARN;
3383 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003384#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003385 }
3386
Willy Tarreaubaaee002006-06-26 02:48:02 +02003387 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003388 * ensure that we're not cross-dressing a TCP server into HTTP.
3389 */
3390 newsrv = curproxy->srv;
3391 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003392 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003393 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3394 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003395 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003396 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003397
Willy Tarreau0cec3312011-10-31 13:49:26 +01003398 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003399 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3400 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003401 err_code |= ERR_WARN;
3402 }
3403
Willy Tarreauc93cd162014-05-13 15:54:22 +02003404 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003405 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3406 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003407 err_code |= ERR_WARN;
3408 }
3409
Willy Tarreau29fbe512015-08-20 19:35:14 +02003410#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003411 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3412 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003413 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3414 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003415 err_code |= ERR_WARN;
3416 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003417#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003418
Willy Tarreau46deab62018-04-28 07:18:15 +02003419 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3420 curproxy->options &= ~PR_O_REUSE_MASK;
3421
Willy Tarreau21d2af32008-02-14 20:25:24 +01003422 newsrv = newsrv->next;
3423 }
3424
Christopher Fauletd7c91962015-04-30 11:48:27 +02003425 /* Check filter configuration, if any */
3426 cfgerr += flt_check(curproxy);
3427
Willy Tarreauc1a21672009-08-16 22:37:44 +02003428 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003429 if (!curproxy->accept)
3430 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003431
Willy Tarreauc1a21672009-08-16 22:37:44 +02003432 if (curproxy->tcp_req.inspect_delay ||
3433 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003434 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003435
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003436 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003437 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003438 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003439 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003440
William Lallemandcf62f7e2018-10-26 14:47:40 +02003441 if (curproxy->mode == PR_MODE_CLI) {
3442 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3443 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3444 }
3445
Willy Tarreauc1a21672009-08-16 22:37:44 +02003446 /* both TCP and HTTP must check switching rules */
3447 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003448
3449 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003450 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003451 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3452 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 +01003453 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003454 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3455 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003456 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003457 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003458 }
3459
3460 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003461 if (curproxy->tcp_req.inspect_delay ||
3462 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3463 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3464
Emeric Brun97679e72010-09-23 17:56:44 +02003465 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3466 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3467
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003468 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003469 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003470 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003471 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003472
3473 /* If the backend does requires RDP cookie persistence, we have to
3474 * enable the corresponding analyser.
3475 */
3476 if (curproxy->options2 & PR_O2_RDPC_PRST)
3477 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003478
3479 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003480 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003481 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3482 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 +01003483 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003484 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3485 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003486 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003487 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003488 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003489
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003490 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003491 * attached to the current proxy */
3492 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3493 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003494 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003495
3496 if (!bind_conf->mux_proto)
3497 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003498
3499 /* it is possible that an incorrect mux was referenced
3500 * due to the proxy's mode not being taken into account
3501 * on first pass. Let's adjust it now.
3502 */
3503 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3504
3505 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003506 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3507 proxy_type_str(curproxy), curproxy->id,
3508 (int)bind_conf->mux_proto->token.len,
3509 bind_conf->mux_proto->token.ptr,
3510 bind_conf->arg, bind_conf->file, bind_conf->line);
3511 cfgerr++;
3512 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003513
3514 /* update the mux */
3515 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003516 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003517 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3518 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003519 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003520
3521 if (!newsrv->mux_proto)
3522 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003523
3524 /* it is possible that an incorrect mux was referenced
3525 * due to the proxy's mode not being taken into account
3526 * on first pass. Let's adjust it now.
3527 */
3528 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3529
3530 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003531 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3532 proxy_type_str(curproxy), curproxy->id,
3533 (int)newsrv->mux_proto->token.len,
3534 newsrv->mux_proto->token.ptr,
3535 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3536 cfgerr++;
3537 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003538
3539 /* update the mux */
3540 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003541 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003542
3543 /* initialize idle conns lists */
3544 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3545 int i;
3546
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003547 newsrv->available_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->available_conns));
Willy Tarreau835daa12019-02-07 14:46:29 +01003548
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003549 if (!newsrv->available_conns) {
Willy Tarreau835daa12019-02-07 14:46:29 +01003550 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003551 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau835daa12019-02-07 14:46:29 +01003552 cfgerr++;
3553 continue;
3554 }
3555
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003556 for (i = 0; i < global.nbthread; i++)
3557 LIST_INIT(&newsrv->available_conns[i]);
Willy Tarreau980855b2019-02-07 14:59:29 +01003558
3559 if (newsrv->max_idle_conns != 0) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003560 if (idle_conn_task == NULL) {
3561 idle_conn_task = task_new(MAX_THREADS_MASK);
3562 if (!idle_conn_task)
3563 goto err;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003564
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003565 idle_conn_task->process = srv_cleanup_idle_connections;
3566 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003567
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003568 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003569 idle_conns[i].cleanup_task = task_new(1UL << i);
3570 if (!idle_conns[i].cleanup_task)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003571 goto err;
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003572 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_connections;
3573 idle_conns[i].cleanup_task->context = NULL;
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003574 HA_SPIN_INIT(&idle_conns[i].takeover_lock);
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003575 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003576 }
3577 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003578
3579 newsrv->idle_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->idle_conns));
3580 if (!newsrv->idle_conns) {
3581 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3582 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3583 cfgerr++;
3584 continue;
3585 }
3586
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003587 for (i = 0; i < global.nbthread; i++)
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003588 MT_LIST_INIT(&newsrv->idle_conns[i]);
3589
3590 newsrv->safe_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->safe_conns));
3591 if (!newsrv->safe_conns) {
3592 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3593 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3594 cfgerr++;
3595 continue;
3596 }
3597
3598 for (i = 0; i < global.nbthread; i++)
3599 MT_LIST_INIT(&newsrv->safe_conns[i]);
3600
3601 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(int));
Olivier Houchardf1314812019-02-18 16:41:17 +01003602 if (!newsrv->curr_idle_thr)
3603 goto err;
Willy Tarreau980855b2019-02-07 14:59:29 +01003604 continue;
3605 err:
3606 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3607 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3608 cfgerr++;
3609 continue;
3610 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003611 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003612 }
3613
3614 /***********************************************************/
3615 /* At this point, target names have already been resolved. */
3616 /***********************************************************/
3617
3618 /* Check multi-process mode compatibility */
3619
3620 if (global.nbproc > 1 && global.stats_fe) {
3621 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3622 unsigned long mask;
3623
Willy Tarreau6daac192019-02-02 17:39:53 +01003624 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
3625 mask &= proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003626
3627 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003628 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003629 break;
3630 }
3631 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003632 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 +02003633 }
3634 }
3635
3636 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003637 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003638 if (curproxy->bind_proc)
3639 continue;
3640
3641 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3642 unsigned long mask;
3643
Willy Tarreau6daac192019-02-02 17:39:53 +01003644 mask = proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003645 curproxy->bind_proc |= mask;
3646 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003647 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003648 }
3649
3650 if (global.stats_fe) {
3651 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3652 unsigned long mask;
3653
Cyril Bonté06181952016-02-24 00:14:54 +01003654 mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003655 global.stats_fe->bind_proc |= mask;
3656 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003657 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003658 }
3659
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003660 /* propagate bindings from frontends to backends. Don't do it if there
3661 * are any fatal errors as we must not call it with unresolved proxies.
3662 */
3663 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003664 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003665 if (curproxy->cap & PR_CAP_FE)
3666 propagate_processes(curproxy, NULL);
3667 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003668 }
3669
3670 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003671 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3672 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003673
3674 /*******************************************************/
3675 /* At this step, all proxies have a non-null bind_proc */
3676 /*******************************************************/
3677
3678 /* perform the final checks before creating tasks */
3679
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003680 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003681 struct listener *listener;
3682 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003683
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003684 /* Configure SSL for each bind line.
3685 * Note: if configuration fails at some point, the ->ctx member
3686 * remains NULL so that listeners can later detach.
3687 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003688 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003689 if (bind_conf->xprt->prepare_bind_conf &&
3690 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003691 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003692 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003693
Willy Tarreaue6b98942007-10-29 01:09:36 +01003694 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003695 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003696 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003697 int nbproc;
3698
3699 nbproc = my_popcountl(curproxy->bind_proc &
Cyril Bonté4920d702016-04-15 07:58:43 +02003700 (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003701 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003702
3703 if (!nbproc) /* no intersection between listener and frontend */
3704 nbproc = 1;
3705
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003706 if (!listener->luid) {
3707 /* listener ID not set, use automatic numbering with first
3708 * spare entry starting with next_luid.
3709 */
3710 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3711 listener->conf.id.key = listener->luid = next_id;
3712 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003713 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003714 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003715
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003716 /* enable separate counters */
3717 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003718 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003719 if (!listener->name)
3720 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003721 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003722
Willy Tarreaue6b98942007-10-29 01:09:36 +01003723 if (curproxy->options & PR_O_TCP_NOLING)
3724 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003725 if (!listener->maxaccept)
3726 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3727
3728 /* we want to have an optimal behaviour on single process mode to
3729 * maximize the work at once, but in multi-process we want to keep
3730 * some fairness between processes, so we target half of the max
3731 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003732 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003733 * used to disable the limit.
3734 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003735 if (listener->maxaccept > 0 && nbproc > 1) {
3736 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003737 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3738 }
3739
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003740 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003741 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003742 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003743
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003744 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003745 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003746
Willy Tarreau620408f2016-10-21 16:37:51 +02003747 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3748 listener->options |= LI_O_TCP_L5_RULES;
3749
Willy Tarreaude3041d2010-05-31 10:56:17 +02003750 if (curproxy->mon_mask.s_addr)
3751 listener->options |= LI_O_CHK_MONNET;
3752
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003753 /* smart accept mode is automatic in HTTP mode */
3754 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003755 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003756 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3757 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003758 }
3759
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003760 /* Release unused SSL configs */
3761 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003762 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3763 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003764 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003765
Willy Tarreaua38a7172019-02-02 17:11:28 +01003766 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003767 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003768 int count, maxproc = 0;
3769
3770 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
David Carliere6c39412015-07-02 07:00:17 +00003771 count = my_popcountl(bind_conf->bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003772 if (count > maxproc)
3773 maxproc = count;
3774 }
3775 /* backends have 0, frontends have 1 or more */
3776 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003777 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3778 " limited to process assigned to the current request.\n",
3779 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003780
Willy Tarreau102df612014-05-07 23:56:38 +02003781 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003782 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3783 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003784 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003785 }
Willy Tarreau102df612014-05-07 23:56:38 +02003786 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003787 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3788 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003789 }
3790 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003791
3792 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003793 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003794 if (curproxy->task) {
3795 curproxy->task->context = curproxy;
3796 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003797 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003798 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3799 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003800 cfgerr++;
3801 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003802 }
3803
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003804 /*
3805 * Recount currently required checks.
3806 */
3807
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003808 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003809 int optnum;
3810
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003811 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3812 if (curproxy->options & cfg_opts[optnum].val)
3813 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003814
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003815 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3816 if (curproxy->options2 & cfg_opts2[optnum].val)
3817 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003818 }
3819
Willy Tarreau0fca4832015-05-01 19:12:05 +02003820 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003821 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003822 if (curproxy->table && curproxy->table->peers.p)
3823 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003824
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003825 /* compute the required process bindings for the peers from <stktables_list>
3826 * for all the stick-tables, the ones coming with "peers" sections included.
3827 */
3828 for (t = stktables_list; t; t = t->next) {
3829 struct proxy *p;
3830
3831 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3832 if (t->peers.p && t->peers.p->peers_fe) {
3833 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3834 }
3835 }
3836 }
3837
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003838 if (cfg_peers) {
3839 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003840 struct peer *p, *pb;
3841
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003842 /* In the case the peers frontend was not initialized by a
3843 stick-table used in the configuration, set its bind_proc
3844 by default to the first process. */
3845 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003846 if (curpeers->peers_fe) {
3847 if (curpeers->peers_fe->bind_proc == 0)
3848 curpeers->peers_fe->bind_proc = 1;
3849 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003850 curpeers = curpeers->next;
3851 }
3852
3853 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003854 /* Remove all peers sections which don't have a valid listener,
3855 * which are not used by any table, or which are bound to more
3856 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003857 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003858 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003859 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003860 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003861 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003862
3863 if (curpeers->state == PR_STSTOPPED) {
3864 /* the "disabled" keyword was present */
3865 if (curpeers->peers_fe)
3866 stop_proxy(curpeers->peers_fe);
3867 curpeers->peers_fe = NULL;
3868 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003869 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003870 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3871 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003872 if (curpeers->peers_fe)
3873 stop_proxy(curpeers->peers_fe);
3874 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003875 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003876 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003877 /* either it's totally stopped or too much used */
3878 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003879 ha_alert("Peers section '%s': peers referenced by sections "
3880 "running in different processes (%d different ones). "
3881 "Check global.nbproc and all tables' bind-process "
3882 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003883 cfgerr++;
3884 }
3885 stop_proxy(curpeers->peers_fe);
3886 curpeers->peers_fe = NULL;
3887 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003888 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003889 /* Initializes the transport layer of the server part of all the peers belonging to
3890 * <curpeers> section if required.
3891 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3892 * of an old process.
3893 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003894 p = curpeers->remote;
3895 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003896 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003897 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 +01003898 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3899 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003900 p = p->next;
3901 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003902 /* Configure the SSL bindings of the local peer if required. */
3903 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3904 struct list *l;
3905 struct bind_conf *bind_conf;
3906
3907 l = &curpeers->peers_fe->conf.bind;
3908 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3909 if (bind_conf->xprt->prepare_bind_conf &&
3910 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3911 cfgerr++;
3912 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003913 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02003914 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3915 curpeers->id);
3916 cfgerr++;
3917 break;
3918 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003919 last = &curpeers->next;
3920 continue;
3921 }
3922
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003923 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003924 p = curpeers->remote;
3925 while (p) {
3926 pb = p->next;
3927 free(p->id);
3928 free(p);
3929 p = pb;
3930 }
3931
3932 /* Destroy and unlink this curpeers section.
3933 * Note: curpeers is backed up into *last.
3934 */
3935 free(curpeers->id);
3936 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003937 /* Reset any refereance to this peers section in the list of stick-tables */
3938 for (t = stktables_list; t; t = t->next) {
3939 if (t->peers.p && t->peers.p == *last)
3940 t->peers.p = NULL;
3941 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003942 free(*last);
3943 *last = curpeers;
3944 }
3945 }
3946
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003947 for (t = stktables_list; t; t = t->next) {
3948 if (t->proxy)
3949 continue;
3950 if (!stktable_init(t)) {
3951 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
3952 cfgerr++;
3953 }
3954 }
3955
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003956 /* initialize stick-tables on backend capable proxies. This must not
3957 * be done earlier because the data size may be discovered while parsing
3958 * other proxies.
3959 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003960 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003961 if (curproxy->state == PR_STSTOPPED || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003962 continue;
3963
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003964 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003965 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003966 cfgerr++;
3967 }
3968 }
3969
Simon Horman0d16a402015-01-30 11:22:58 +09003970 if (mailers) {
3971 struct mailers *curmailers = mailers, **last;
3972 struct mailer *m, *mb;
3973
3974 /* Remove all mailers sections which don't have a valid listener.
3975 * This can happen when a mailers section is never referenced.
3976 */
3977 last = &mailers;
3978 while (*last) {
3979 curmailers = *last;
3980 if (curmailers->users) {
3981 last = &curmailers->next;
3982 continue;
3983 }
3984
Christopher Faulet767a84b2017-11-24 16:50:31 +01003985 ha_warning("Removing incomplete section 'mailers %s'.\n",
3986 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09003987
3988 m = curmailers->mailer_list;
3989 while (m) {
3990 mb = m->next;
3991 free(m->id);
3992 free(m);
3993 m = mb;
3994 }
3995
3996 /* Destroy and unlink this curmailers section.
3997 * Note: curmailers is backed up into *last.
3998 */
3999 free(curmailers->id);
4000 curmailers = curmailers->next;
4001 free(*last);
4002 *last = curmailers;
4003 }
4004 }
4005
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004006 /* Update server_state_file_name to backend name if backend is supposed to use
4007 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004008 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004009 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4010 curproxy->server_state_file_name == NULL)
4011 curproxy->server_state_file_name = strdup(curproxy->id);
4012 }
4013
Ben Draut054fbee2018-04-13 15:43:04 -06004014 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
4015 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
4016 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
4017 curr_resolvers->id, curr_resolvers->conf.file,
4018 curr_resolvers->conf.line);
4019 err_code |= ERR_WARN;
4020 }
4021 }
4022
William Lallemand48b4bb42017-10-23 14:36:34 +02004023 list_for_each_entry(postparser, &postparsers, list) {
4024 if (postparser->func)
4025 cfgerr += postparser->func();
4026 }
4027
Willy Tarreaubb925012009-07-23 13:36:36 +02004028 if (cfgerr > 0)
4029 err_code |= ERR_ALERT | ERR_FATAL;
4030 out:
4031 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004032}
4033
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004034/*
4035 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4036 * parsing sessions.
4037 */
4038void cfg_register_keywords(struct cfg_kw_list *kwl)
4039{
4040 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
4041}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004042
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004043/*
4044 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4045 */
4046void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4047{
4048 LIST_DEL(&kwl->list);
4049 LIST_INIT(&kwl->list);
4050}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004051
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004052/* this function register new section in the haproxy configuration file.
4053 * <section_name> is the name of this new section and <section_parser>
4054 * is the called parser. If two section declaration have the same name,
4055 * only the first declared is used.
4056 */
4057int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004058 int (*section_parser)(const char *, int, char **, int),
4059 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004060{
4061 struct cfg_section *cs;
4062
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004063 list_for_each_entry(cs, &sections, list) {
4064 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004065 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004066 return 0;
4067 }
4068 }
4069
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004070 cs = calloc(1, sizeof(*cs));
4071 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004072 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004073 return 0;
4074 }
4075
4076 cs->section_name = section_name;
4077 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004078 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004079
4080 LIST_ADDQ(&sections, &cs->list);
4081
4082 return 1;
4083}
4084
William Lallemand48b4bb42017-10-23 14:36:34 +02004085/* this function register a new function which will be called once the haproxy
4086 * configuration file has been parsed. It's useful to check dependencies
4087 * between sections or to resolve items once everything is parsed.
4088 */
4089int cfg_register_postparser(char *name, int (*func)())
4090{
4091 struct cfg_postparser *cp;
4092
4093 cp = calloc(1, sizeof(*cp));
4094 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004095 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004096 return 0;
4097 }
4098 cp->name = name;
4099 cp->func = func;
4100
4101 LIST_ADDQ(&postparsers, &cp->list);
4102
4103 return 1;
4104}
4105
Willy Tarreaubaaee002006-06-26 02:48:02 +02004106/*
David Carlier845efb52015-09-25 11:49:18 +01004107 * free all config section entries
4108 */
4109void cfg_unregister_sections(void)
4110{
4111 struct cfg_section *cs, *ics;
4112
4113 list_for_each_entry_safe(cs, ics, &sections, list) {
4114 LIST_DEL(&cs->list);
4115 free(cs);
4116 }
4117}
4118
Christopher Faulet7110b402016-10-26 11:09:44 +02004119void cfg_backup_sections(struct list *backup_sections)
4120{
4121 struct cfg_section *cs, *ics;
4122
4123 list_for_each_entry_safe(cs, ics, &sections, list) {
4124 LIST_DEL(&cs->list);
4125 LIST_ADDQ(backup_sections, &cs->list);
4126 }
4127}
4128
4129void cfg_restore_sections(struct list *backup_sections)
4130{
4131 struct cfg_section *cs, *ics;
4132
4133 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4134 LIST_DEL(&cs->list);
4135 LIST_ADDQ(&sections, &cs->list);
4136 }
4137}
4138
Willy Tarreaue6552512018-11-26 11:33:13 +01004139/* these are the config sections handled by default */
4140REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4141REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4142REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4143REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4144REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4145REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4146REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4147REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4148REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4149REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004150
David Carlier845efb52015-09-25 11:49:18 +01004151/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004152 * Local variables:
4153 * c-indent-level: 8
4154 * c-basic-offset: 8
4155 * End:
4156 */