blob: 191698e2b649648def47d3bccecbaf7087561707 [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
Tim Duesterhus70f58992020-06-22 22:57:44 +02001919 if (*(end-1) == '\n') {
1920 /* 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 Tarreau9e1758e2020-06-16 16:32:59 +02001941 arg = MAX_LINE_ARGS;
1942 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) {
1948 ha_alert("parsing [%s:%d]: unmatched quote below:\n"
1949 " %s\n %*s\n", file, linenum, line, (int)(errptr-line+1), "^");
1950 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001951 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001952 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001953 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001954
1955 if (err & PARSE_ERR_BRACE) {
1956 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name below:\n"
1957 " %s\n %*s\n", file, linenum, line, (int)(errptr-line+1), "^");
1958 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001959 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001960 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001961 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001962
1963 if (err & PARSE_ERR_VARNAME) {
1964 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name below:\n"
1965 " %s\n %*s\n", file, linenum, line, (int)(errptr-line+1), "^");
1966 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001967 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001968 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001969 }
William Lallemandb2f07452015-05-12 14:27:13 +02001970
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001971 if (err & PARSE_ERR_HEX) {
1972 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence below:\n"
1973 " %s\n %*s\n", file, linenum, line, (int)(errptr-line+1), "^");
1974 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001975 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001976 goto next_line;
1977 }
William Lallemandb2f07452015-05-12 14:27:13 +02001978
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001979 if (err & PARSE_ERR_TOOMANY) {
1980 ha_alert("parsing [%s:%d]: too many words, truncating at word %d, position %ld: <%s>.\n",
Tim Duesterhusc17a5fa2020-06-23 18:56:10 +02001981 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001982 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +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 Tarreau9e1758e2020-06-16 16:32:59 +02002000 /* everything's OK */
2001 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02002002 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002003
2004 /* empty line */
2005 if (!**args)
2006 continue;
2007
Willy Tarreau3842f002009-06-14 11:39:52 +02002008 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002009 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02002010 char *tmp;
2011
Willy Tarreau3842f002009-06-14 11:39:52 +02002012 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002013 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002014 for (arg=0; *args[arg+1]; arg++)
2015 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002016 *tmp = '\0'; // fix the next arg to \0
2017 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002018 }
Willy Tarreau3842f002009-06-14 11:39:52 +02002019 else if (!strcmp(args[0], "default")) {
2020 kwm = KWM_DEF;
2021 for (arg=0; *args[arg+1]; arg++)
2022 args[arg] = args[arg+1]; // shift args after inversion
2023 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002024
William Dauchyec730982019-10-27 20:08:10 +01002025 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2026 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002027 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
2028 strcmp(args[0], "insecure-fork-wanted") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002029 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002030 "supported only for options, log, busy-polling, "
Willy Tarreaud96f1122019-12-03 07:07:36 +01002031 "set-dumpable, strict-limits, and insecure-fork-wanted.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002032 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002033 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002034 }
2035
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002036 /* detect section start */
2037 list_for_each_entry(ics, &sections, list) {
2038 if (strcmp(args[0], ics->section_name) == 0) {
2039 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002040 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002041 cs = ics;
2042 break;
2043 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002044 }
2045
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002046 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002047 int status;
2048
2049 status = pcs->post_section_parser();
2050 err_code |= status;
2051 if (status & ERR_FATAL)
2052 fatal++;
2053
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002054 if (err_code & ERR_ABORT)
2055 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002056 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002057 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002058
William Lallemandd2ff56d2017-10-16 11:06:50 +02002059 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002060 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002061 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002062 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002063 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002064 int status;
2065
2066 status = cs->section_parser(file, linenum, args, kwm);
2067 err_code |= status;
2068 if (status & ERR_FATAL)
2069 fatal++;
2070
William Lallemandd2ff56d2017-10-16 11:06:50 +02002071 if (err_code & ERR_ABORT)
2072 goto err;
2073 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002074 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002075
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002076 if (missing_lf != -1) {
2077 ha_warning("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d. "
2078 "This will become a hard error in HAProxy 2.3.\n",
2079 file, linenum, (missing_lf + 1));
2080 err_code |= ERR_WARN;
2081 }
2082
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002083 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002084 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002085
2086err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002087 free(cfg_scope);
2088 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002089 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002090 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002091 free(outline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002092 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002093 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002094}
2095
Willy Tarreau64ab6072014-09-16 12:17:36 +02002096/* This function propagates processes from frontend <from> to backend <to> so
2097 * that it is always guaranteed that a backend pointed to by a frontend is
2098 * bound to all of its processes. After that, if the target is a "listen"
2099 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002100 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002101 * checked first to ensure that <to> is already bound to all processes of
2102 * <from>, there is no risk of looping and we ensure to follow the shortest
2103 * path to the destination.
2104 *
2105 * It is possible to set <to> to NULL for the first call so that the function
2106 * takes care of visiting the initial frontend in <from>.
2107 *
2108 * It is important to note that the function relies on the fact that all names
2109 * have already been resolved.
2110 */
2111void propagate_processes(struct proxy *from, struct proxy *to)
2112{
2113 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002114
2115 if (to) {
2116 /* check whether we need to go down */
2117 if (from->bind_proc &&
2118 (from->bind_proc & to->bind_proc) == from->bind_proc)
2119 return;
2120
2121 if (!from->bind_proc && !to->bind_proc)
2122 return;
2123
2124 to->bind_proc = from->bind_proc ?
2125 (to->bind_proc | from->bind_proc) : 0;
2126
2127 /* now propagate down */
2128 from = to;
2129 }
2130
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002131 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002132 return;
2133
Willy Tarreauf6b70012014-12-18 14:00:43 +01002134 if (from->state == PR_STSTOPPED)
2135 return;
2136
Willy Tarreau64ab6072014-09-16 12:17:36 +02002137 /* default_backend */
2138 if (from->defbe.be)
2139 propagate_processes(from, from->defbe.be);
2140
2141 /* use_backend */
2142 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002143 if (rule->dynamic)
2144 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002145 to = rule->be.backend;
2146 propagate_processes(from, to);
2147 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002148}
2149
Willy Tarreaubb925012009-07-23 13:36:36 +02002150/*
2151 * Returns the error code, 0 if OK, or any combination of :
2152 * - ERR_ABORT: must abort ASAP
2153 * - ERR_FATAL: we can continue parsing but not start the service
2154 * - ERR_WARN: a warning has been emitted
2155 * - ERR_ALERT: an alert has been emitted
2156 * Only the two first ones can stop processing, the two others are just
2157 * indicators.
2158 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002159int check_config_validity()
2160{
2161 int cfgerr = 0;
2162 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002163 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002164 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002165 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002166 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002167 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002168 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002169 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002170 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002171
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002172 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002173 /*
2174 * Now, check for the integrity of all that we have collected.
2175 */
2176
2177 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002178 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002179
Willy Tarreau193b8c62012-11-22 00:17:38 +01002180 if (!global.tune.max_http_hdr)
2181 global.tune.max_http_hdr = MAX_HTTP_HDR;
2182
2183 if (!global.tune.cookie_len)
2184 global.tune.cookie_len = CAPTURE_LEN;
2185
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002186 if (!global.tune.requri_len)
2187 global.tune.requri_len = REQURI_LEN;
2188
Willy Tarreau149ab772019-01-26 14:27:06 +01002189 if (!global.nbthread) {
2190 /* nbthread not set, thus automatic. In this case, and only if
2191 * running on a single process, we enable the same number of
2192 * threads as the number of CPUs the process is bound to. This
2193 * allows to easily control the number of threads using taskset.
2194 */
2195 global.nbthread = 1;
2196#if defined(USE_THREAD)
2197 if (global.nbproc == 1)
2198 global.nbthread = thread_cpus_enabled_at_boot;
2199 all_threads_mask = nbits(global.nbthread);
2200#endif
2201 }
2202
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002203 if (global.nbproc > 1 && global.nbthread > 1) {
2204 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2205 err_code |= ERR_ALERT | ERR_FATAL;
2206 goto out;
2207 }
2208
Willy Tarreaubafbe012017-11-24 17:34:44 +01002209 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002210
Willy Tarreaubafbe012017-11-24 17:34:44 +01002211 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002212
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002213 /* Post initialisation of the users and groups lists. */
2214 err_code = userlist_postinit();
2215 if (err_code != ERR_NONE)
2216 goto out;
2217
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002218 /* first, we will invert the proxy list order */
2219 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002220 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002221 struct proxy *next;
2222
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002223 next = proxies_list->next;
2224 proxies_list->next = curproxy;
2225 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002226 if (!next)
2227 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002228 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002229 }
2230
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002231 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002232 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002233 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002234 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002235 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002236 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002237 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002238 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002239
Willy Tarreau050536d2012-10-04 08:47:34 +02002240 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002241 /* proxy ID not set, use automatic numbering with first
2242 * spare entry starting with next_pxid.
2243 */
2244 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2245 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2246 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002247 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002248 next_pxid++;
2249
Willy Tarreau55ea7572007-06-17 19:56:27 +02002250
Willy Tarreaubaaee002006-06-26 02:48:02 +02002251 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002252 /* ensure we don't keep listeners uselessly bound */
2253 stop_proxy(curproxy);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002254 if (curproxy->table) {
2255 free((void *)curproxy->table->peers.name);
2256 curproxy->table->peers.p = NULL;
2257 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002258 continue;
2259 }
2260
Willy Tarreau102df612014-05-07 23:56:38 +02002261 /* Check multi-process mode compatibility for the current proxy */
2262
2263 if (curproxy->bind_proc) {
2264 /* an explicit bind-process was specified, let's check how many
2265 * processes remain.
2266 */
David Carliere6c39412015-07-02 07:00:17 +00002267 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002268
Willy Tarreaua38a7172019-02-02 17:11:28 +01002269 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002270 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002271 ha_warning("Proxy '%s': the process specified on the 'bind-process' directive refers to a process number that is higher than global.nbproc. The proxy has been forced to run on process 1 only.\n", curproxy->id);
Willy Tarreau102df612014-05-07 23:56:38 +02002272 curproxy->bind_proc = 1;
2273 }
2274 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002275 ha_warning("Proxy '%s': all processes specified on the 'bind-process' directive refer to numbers that are all higher than global.nbproc. The directive was ignored and the proxy will run on all processes.\n", curproxy->id);
Willy Tarreau102df612014-05-07 23:56:38 +02002276 curproxy->bind_proc = 0;
2277 }
2278 }
2279
Willy Tarreau3d209582014-05-09 17:06:11 +02002280 /* check and reduce the bind-proc of each listener */
2281 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2282 unsigned long mask;
2283
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002284 /* HTTP frontends with "h2" as ALPN/NPN will work in
2285 * HTTP/2 and absolutely require buffers 16kB or larger.
2286 */
2287#ifdef USE_OPENSSL
2288 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2289#ifdef OPENSSL_NPN_NEGOTIATED
2290 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002291 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002292 ha_alert("config : HTTP frontend '%s' enables HTTP/2 via NPN at [%s:%d], so global.tune.bufsize must be at least 16384 bytes (%d now).\n",
2293 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002294 cfgerr++;
2295 }
2296#endif
2297#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2298 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002299 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002300 ha_alert("config : HTTP frontend '%s' enables HTTP/2 via ALPN at [%s:%d], so global.tune.bufsize must be at least 16384 bytes (%d now).\n",
2301 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002302 cfgerr++;
2303 }
2304#endif
2305 } /* HTTP && bufsize < 16384 */
2306#endif
2307
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002308 /* detect and address thread affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002309 mask = thread_mask(bind_conf->bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002310 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002311 unsigned long new_mask = 0;
2312
2313 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002314 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002315 mask >>= global.nbthread;
2316 }
2317
Willy Tarreaua36b3242019-02-02 13:14:34 +01002318 bind_conf->bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002319 ha_warning("Proxy '%s': the thread range specified on the 'process' directive of 'bind %s' at [%s:%d] only refers to thread numbers out of the range defined by the global 'nbthread' directive. The thread numbers were remapped to existing threads instead (mask 0x%lx).\n",
2320 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2321 }
2322
2323 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002324 mask = proc_mask(bind_conf->bind_proc) & proc_mask(curproxy->bind_proc);
2325 if (!(mask & all_proc_mask)) {
2326 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
2327 nbproc = my_popcountl(bind_conf->bind_proc);
2328 bind_conf->bind_proc = proc_mask(bind_conf->bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002329
Willy Tarreaua36b3242019-02-02 13:14:34 +01002330 if (!bind_conf->bind_proc && nbproc == 1) {
2331 ha_warning("Proxy '%s': the process number specified on the 'process' directive of 'bind %s' at [%s:%d] refers to a process not covered by the proxy. This has been fixed by forcing it to run on the proxy's first process only.\n",
2332 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2333 bind_conf->bind_proc = mask & ~(mask - 1);
2334 }
2335 else if (!bind_conf->bind_proc && nbproc > 1) {
2336 ha_warning("Proxy '%s': the process range specified on the 'process' directive of 'bind %s' at [%s:%d] only refers to processes not covered by the proxy. The directive was ignored so that all of the proxy's processes are used.\n",
2337 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2338 bind_conf->bind_proc = 0;
2339 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002340 }
2341 }
2342
Willy Tarreauff01a212009-03-15 13:46:16 +01002343 switch (curproxy->mode) {
2344 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002345 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002346 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002347 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2348 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002349 cfgerr++;
2350 }
2351
2352 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002353 ha_warning("config : servers will be ignored for %s '%s'.\n",
2354 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002355 break;
2356
2357 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002358 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002359 break;
2360
2361 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002362 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002363 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002364
2365 case PR_MODE_CLI:
2366 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2367 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002368 }
2369
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002370 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002371 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2372 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002373 err_code |= ERR_WARN;
2374 }
2375
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002376 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002377 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002378 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002379 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2380 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002381 cfgerr++;
2382 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002383#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002384 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002385 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2386 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002387 cfgerr++;
2388 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002389#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002390 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002391 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2392 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002393 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002394 }
2395 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002396 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002397 /* If no LB algo is set in a backend, and we're not in
2398 * transparent mode, dispatch mode nor proxy mode, we
2399 * want to use balance roundrobin by default.
2400 */
2401 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2402 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002403 }
2404 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002405
Willy Tarreau1620ec32011-08-06 17:05:02 +02002406 if (curproxy->options & PR_O_DISPATCH)
2407 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2408 else if (curproxy->options & PR_O_HTTP_PROXY)
2409 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2410 else if (curproxy->options & PR_O_TRANSP)
2411 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002412
Christopher Faulete5870d82020-04-15 11:32:03 +02002413 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2414 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2415 proxy_type_str(curproxy), curproxy->id);
2416 err_code |= ERR_WARN;
2417 }
2418
2419 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002420 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002421 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002422 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2423 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002424 err_code |= ERR_WARN;
2425 curproxy->options &= ~PR_O_DISABLE404;
2426 }
2427 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002428 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2429 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002430 err_code |= ERR_WARN;
2431 curproxy->options &= ~PR_O2_CHK_SNDST;
2432 }
Willy Tarreauef781042010-01-27 11:53:01 +01002433 }
2434
Simon Horman98637e52014-06-20 12:30:16 +09002435 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2436 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002437 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2438 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002439 cfgerr++;
2440 }
2441 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002442 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2443 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002444 cfgerr++;
2445 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002446 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2447 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2448 curproxy->id, "option external-check");
2449 err_code |= ERR_WARN;
2450 }
Simon Horman98637e52014-06-20 12:30:16 +09002451 }
2452
Simon Horman64e34162015-02-06 11:11:57 +09002453 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002454 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002455 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2456 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2457 "'email-alert myhostname', or 'email-alert to' "
2458 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2459 "to be present).\n",
2460 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002461 err_code |= ERR_WARN;
2462 free_email_alert(curproxy);
2463 }
2464 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002465 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002466 }
2467
Simon Horman98637e52014-06-20 12:30:16 +09002468 if (curproxy->check_command) {
2469 int clear = 0;
2470 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002471 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2472 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002473 err_code |= ERR_WARN;
2474 clear = 1;
2475 }
2476 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002477 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2478 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002479 cfgerr++;
2480 }
2481 if (clear) {
2482 free(curproxy->check_command);
2483 curproxy->check_command = NULL;
2484 }
2485 }
2486
2487 if (curproxy->check_path) {
2488 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002489 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2490 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002491 err_code |= ERR_WARN;
2492 free(curproxy->check_path);
2493 curproxy->check_path = NULL;
2494 }
2495 }
2496
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002497 /* if a default backend was specified, let's find it */
2498 if (curproxy->defbe.name) {
2499 struct proxy *target;
2500
Willy Tarreauafb39922015-05-26 12:04:09 +02002501 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002502 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002503 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2504 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002505 cfgerr++;
2506 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002507 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2508 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002509 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002510 } else if (target->mode != curproxy->mode &&
2511 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2512
Christopher Faulet767a84b2017-11-24 16:50:31 +01002513 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2514 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2515 curproxy->conf.file, curproxy->conf.line,
2516 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2517 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002518 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002519 } else {
2520 free(curproxy->defbe.name);
2521 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002522 /* Emit a warning if this proxy also has some servers */
2523 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002524 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2525 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002526 err_code |= ERR_WARN;
2527 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002528 }
2529 }
2530
Willy Tarreau55ea7572007-06-17 19:56:27 +02002531 /* find the target proxy for 'use_backend' rules */
2532 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002533 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002534 struct logformat_node *node;
2535 char *pxname;
2536
2537 /* Try to parse the string as a log format expression. If the result
2538 * of the parsing is only one entry containing a simple string, then
2539 * it's a standard string corresponding to a static rule, thus the
2540 * parsing is cancelled and be.name is restored to be resolved.
2541 */
2542 pxname = rule->be.name;
2543 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002544 curproxy->conf.args.ctx = ARGC_UBK;
2545 curproxy->conf.args.file = rule->file;
2546 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002547 err = NULL;
2548 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002549 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2550 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002551 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002552 cfgerr++;
2553 continue;
2554 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002555 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2556
2557 if (!LIST_ISEMPTY(&rule->be.expr)) {
2558 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2559 rule->dynamic = 1;
2560 free(pxname);
2561 continue;
2562 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002563 /* Only one element in the list, a simple string: free the expression and
2564 * fall back to static rule
2565 */
2566 LIST_DEL(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002567 free(node->arg);
2568 free(node);
2569 }
2570
2571 rule->dynamic = 0;
2572 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002573
Willy Tarreauafb39922015-05-26 12:04:09 +02002574 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002575 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002576 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2577 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002578 cfgerr++;
2579 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002580 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2581 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002582 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002583 } else if (target->mode != curproxy->mode &&
2584 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2585
Christopher Faulet767a84b2017-11-24 16:50:31 +01002586 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2587 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2588 curproxy->conf.file, curproxy->conf.line,
2589 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2590 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002591 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002592 } else {
2593 free((void *)rule->be.name);
2594 rule->be.backend = target;
2595 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002596 }
2597
Willy Tarreau64ab6072014-09-16 12:17:36 +02002598 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002599 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002600 struct server *target;
2601 struct logformat_node *node;
2602 char *server_name;
2603
2604 /* We try to parse the string as a log format expression. If the result of the parsing
2605 * is only one entry containing a single string, then it's a standard string corresponding
2606 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2607 */
2608 server_name = srule->srv.name;
2609 LIST_INIT(&srule->expr);
2610 curproxy->conf.args.ctx = ARGC_USRV;
2611 err = NULL;
2612 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2613 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2614 srule->file, srule->line, server_name, err);
2615 free(err);
2616 cfgerr++;
2617 continue;
2618 }
2619 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2620
2621 if (!LIST_ISEMPTY(&srule->expr)) {
2622 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2623 srule->dynamic = 1;
2624 free(server_name);
2625 continue;
2626 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002627 /* Only one element in the list, a simple string: free the expression and
2628 * fall back to static rule
2629 */
2630 LIST_DEL(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002631 free(node->arg);
2632 free(node);
2633 }
2634
2635 srule->dynamic = 0;
2636 srule->srv.name = server_name;
2637 target = findserver(curproxy, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002638
2639 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002640 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2641 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002642 cfgerr++;
2643 continue;
2644 }
2645 free((void *)srule->srv.name);
2646 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002647 }
2648
Emeric Brunb982a3d2010-01-04 15:45:53 +01002649 /* find the target table for 'stick' rules */
2650 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002651 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002652
Emeric Brun1d33b292010-01-04 15:47:17 +01002653 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2654 if (mrule->flags & STK_IS_STORE)
2655 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2656
Emeric Brunb982a3d2010-01-04 15:45:53 +01002657 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002658 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002659 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002660 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002661
2662 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002663 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002664 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002665 cfgerr++;
2666 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002667 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002668 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2669 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002670 cfgerr++;
2671 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002672 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002673 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2674 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002675 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002676 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002677 else {
2678 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002679 mrule->table.t = target;
2680 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002681 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002682 if (!in_proxies_list(target->proxies_list, curproxy)) {
2683 curproxy->next_stkt_ref = target->proxies_list;
2684 target->proxies_list = curproxy;
2685 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002686 }
2687 }
2688
2689 /* find the target table for 'store response' rules */
2690 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002691 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002692
Emeric Brun1d33b292010-01-04 15:47:17 +01002693 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2694
Emeric Brunb982a3d2010-01-04 15:45:53 +01002695 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002696 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002697 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002698 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002699
2700 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002701 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002702 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002703 cfgerr++;
2704 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002705 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002706 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2707 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002708 cfgerr++;
2709 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002710 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002711 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2712 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002713 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002714 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002715 else {
2716 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002717 mrule->table.t = target;
2718 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002719 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002720 if (!in_proxies_list(target->proxies_list, curproxy)) {
2721 curproxy->next_stkt_ref = target->proxies_list;
2722 target->proxies_list = curproxy;
2723 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002724 }
2725 }
2726
Christopher Faulete4e830d2017-09-18 14:51:41 +02002727 /* check validity for 'tcp-request' layer 4 rules */
2728 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2729 err = NULL;
2730 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002731 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002732 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002733 cfgerr++;
2734 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002735 }
2736
Christopher Faulete4e830d2017-09-18 14:51:41 +02002737 /* check validity for 'tcp-request' layer 5 rules */
2738 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2739 err = NULL;
2740 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002741 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002742 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002743 cfgerr++;
2744 }
2745 }
2746
Christopher Faulete4e830d2017-09-18 14:51:41 +02002747 /* check validity for 'tcp-request' layer 6 rules */
2748 list_for_each_entry(arule, &curproxy->tcp_req.inspect_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 'http-request' layer 7 rules */
2758 list_for_each_entry(arule, &curproxy->http_req_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);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002763 cfgerr++;
2764 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002765 }
2766
Christopher Faulete4e830d2017-09-18 14:51:41 +02002767 /* check validity for 'http-response' layer 7 rules */
2768 list_for_each_entry(arule, &curproxy->http_res_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);
Willy Tarreau09448f72014-06-25 18:12:15 +02002773 cfgerr++;
2774 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002775 }
2776
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002777 /* check validity for 'http-after-response' layer 7 rules */
2778 list_for_each_entry(arule, &curproxy->http_after_res_rules, list) {
2779 err = NULL;
2780 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
2781 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
2782 free(err);
2783 cfgerr++;
2784 }
2785 }
2786
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002787 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002788 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002789
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002790 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002791 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
2792 free((void *)curproxy->table->peers.name);
2793 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002794 break;
2795 }
2796 }
2797
2798 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002799 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002800 curproxy->id, curproxy->table->peers.name);
2801 free((void *)curproxy->table->peers.name);
2802 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002803 cfgerr++;
2804 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002805 else if (curpeers->state == PR_STSTOPPED) {
2806 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002807 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002808 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002809 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002810 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2811 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002812 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002813 cfgerr++;
2814 }
2815 }
2816
Simon Horman9dc49962015-01-30 11:22:59 +09002817
2818 if (curproxy->email_alert.mailers.name) {
2819 struct mailers *curmailers = mailers;
2820
2821 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002822 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002823 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002824 }
Simon Horman9dc49962015-01-30 11:22:59 +09002825 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002826 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2827 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002828 free_email_alert(curproxy);
2829 cfgerr++;
2830 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002831 else {
2832 err = NULL;
2833 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002834 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002835 free(err);
2836 cfgerr++;
2837 }
2838 }
Simon Horman9dc49962015-01-30 11:22:59 +09002839 }
2840
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002841 if (curproxy->uri_auth && curproxy->uri_auth != defproxy.uri_auth &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002842 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002843 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002844 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2845 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002846 cfgerr++;
2847 goto out_uri_auth_compat;
2848 }
2849
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002850 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
2851 (curproxy->uri_auth != defproxy.uri_auth ||
2852 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002853 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002854 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002855 int i = 0;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002856 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2857 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002858
2859 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002860 uri_auth_compat_req[i++] = "realm";
2861 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2862 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002863
Willy Tarreau95fa4692010-02-01 13:05:50 +01002864 uri_auth_compat_req[i++] = "unless";
2865 uri_auth_compat_req[i++] = "{";
2866 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2867 uri_auth_compat_req[i++] = "}";
2868 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002869
Willy Tarreauff011f22011-01-06 17:51:27 +01002870 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2871 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002872 cfgerr++;
2873 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002874 }
2875
Willy Tarreauff011f22011-01-06 17:51:27 +01002876 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002877
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002878 if (curproxy->uri_auth->auth_realm) {
2879 free(curproxy->uri_auth->auth_realm);
2880 curproxy->uri_auth->auth_realm = NULL;
2881 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002882 }
2883out_uri_auth_compat:
2884
Dragan Dosen43885c72015-10-01 13:18:13 +02002885 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002886 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002887 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2888 if (!curproxy->conf.logformat_sd_string) {
2889 /* set the default logformat_sd_string */
2890 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2891 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002892 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002893 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002894 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002895
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002896 /* compile the log format */
2897 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002898 if (curproxy->conf.logformat_string != default_http_log_format &&
2899 curproxy->conf.logformat_string != default_tcp_log_format &&
2900 curproxy->conf.logformat_string != clf_http_log_format)
2901 free(curproxy->conf.logformat_string);
2902 curproxy->conf.logformat_string = NULL;
2903 free(curproxy->conf.lfs_file);
2904 curproxy->conf.lfs_file = NULL;
2905 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002906
2907 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2908 free(curproxy->conf.logformat_sd_string);
2909 curproxy->conf.logformat_sd_string = NULL;
2910 free(curproxy->conf.lfsd_file);
2911 curproxy->conf.lfsd_file = NULL;
2912 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002913 }
2914
Willy Tarreau62a61232013-04-12 18:13:46 +02002915 if (curproxy->conf.logformat_string) {
2916 curproxy->conf.args.ctx = ARGC_LOG;
2917 curproxy->conf.args.file = curproxy->conf.lfs_file;
2918 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002919 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002920 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002921 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002922 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
2923 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002924 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002925 cfgerr++;
2926 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002927 curproxy->conf.args.file = NULL;
2928 curproxy->conf.args.line = 0;
2929 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002930
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002931 if (curproxy->conf.logformat_sd_string) {
2932 curproxy->conf.args.ctx = ARGC_LOGSD;
2933 curproxy->conf.args.file = curproxy->conf.lfsd_file;
2934 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002935 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002936 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 +01002937 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002938 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2939 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002940 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002941 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002942 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002943 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2944 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002945 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002946 cfgerr++;
2947 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002948 curproxy->conf.args.file = NULL;
2949 curproxy->conf.args.line = 0;
2950 }
2951
Willy Tarreau62a61232013-04-12 18:13:46 +02002952 if (curproxy->conf.uniqueid_format_string) {
2953 curproxy->conf.args.ctx = ARGC_UIF;
2954 curproxy->conf.args.file = curproxy->conf.uif_file;
2955 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002956 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002957 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 +01002958 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002959 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
2960 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002961 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002962 cfgerr++;
2963 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002964 curproxy->conf.args.file = NULL;
2965 curproxy->conf.args.line = 0;
2966 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002967
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002968 /* only now we can check if some args remain unresolved.
2969 * This must be done after the users and groups resolution.
2970 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002971 cfgerr += smp_resolve_args(curproxy);
2972 if (!cfgerr)
2973 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002974
Willy Tarreau2738a142006-07-08 17:28:09 +02002975 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002976 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02002977 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02002978 (!curproxy->timeout.connect ||
2979 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002980 ha_warning("config : missing timeouts for %s '%s'.\n"
2981 " | While not properly invalid, you will certainly encounter various problems\n"
2982 " | with such a configuration. To fix this, please ensure that all following\n"
2983 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
2984 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002985 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02002986 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02002987
Willy Tarreau1fa31262007-12-03 00:36:16 +01002988 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
2989 * We must still support older configurations, so let's find out whether those
2990 * parameters have been set or must be copied from contimeouts.
2991 */
2992 if (curproxy != &defproxy) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002993 if (!curproxy->timeout.tarpit ||
2994 curproxy->timeout.tarpit == defproxy.timeout.tarpit) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01002995 /* tarpit timeout not set. We search in the following order:
2996 * default.tarpit, curr.connect, default.connect.
2997 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002998 if (defproxy.timeout.tarpit)
Willy Tarreau1fa31262007-12-03 00:36:16 +01002999 curproxy->timeout.tarpit = defproxy.timeout.tarpit;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003000 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003001 curproxy->timeout.tarpit = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003002 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003003 curproxy->timeout.tarpit = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003004 }
3005 if ((curproxy->cap & PR_CAP_BE) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003006 (!curproxy->timeout.queue ||
3007 curproxy->timeout.queue == defproxy.timeout.queue)) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003008 /* queue timeout not set. We search in the following order:
3009 * default.queue, curr.connect, default.connect.
3010 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003011 if (defproxy.timeout.queue)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003012 curproxy->timeout.queue = defproxy.timeout.queue;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003013 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003014 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003015 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003016 curproxy->timeout.queue = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003017 }
3018 }
3019
Christopher Faulete5870d82020-04-15 11:32:03 +02003020 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003021 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
3022 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003023 err_code |= ERR_WARN;
3024 }
3025
Willy Tarreau193b8c62012-11-22 00:17:38 +01003026 /* ensure that cookie capture length is not too large */
3027 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003028 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3029 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003030 err_code |= ERR_WARN;
3031 curproxy->capture_len = global.tune.cookie_len - 1;
3032 }
3033
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003034 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003035 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003036 curproxy->req_cap_pool = create_pool("ptrcap",
3037 curproxy->nb_req_cap * sizeof(char *),
3038 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003039 }
3040
3041 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003042 curproxy->rsp_cap_pool = create_pool("ptrcap",
3043 curproxy->nb_rsp_cap * sizeof(char *),
3044 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003045 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003046
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003047 switch (curproxy->load_server_state_from_file) {
3048 case PR_SRV_STATE_FILE_UNSPEC:
3049 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3050 break;
3051 case PR_SRV_STATE_FILE_GLOBAL:
3052 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003053 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",
3054 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003055 err_code |= ERR_WARN;
3056 }
3057 break;
3058 }
3059
Willy Tarreaubaaee002006-06-26 02:48:02 +02003060 /* first, we will invert the servers list order */
3061 newsrv = NULL;
3062 while (curproxy->srv) {
3063 struct server *next;
3064
3065 next = curproxy->srv->next;
3066 curproxy->srv->next = newsrv;
3067 newsrv = curproxy->srv;
3068 if (!next)
3069 break;
3070 curproxy->srv = next;
3071 }
3072
Willy Tarreau17edc812014-01-03 12:14:34 +01003073 /* Check that no server name conflicts. This causes trouble in the stats.
3074 * We only emit a warning for the first conflict affecting each server,
3075 * in order to avoid combinatory explosion if all servers have the same
3076 * name. We do that only for servers which do not have an explicit ID,
3077 * because these IDs were made also for distinguishing them and we don't
3078 * want to annoy people who correctly manage them.
3079 */
3080 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3081 struct server *other_srv;
3082
3083 if (newsrv->puid)
3084 continue;
3085
3086 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3087 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003088 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 +01003089 newsrv->conf.file, newsrv->conf.line,
3090 proxy_type_str(curproxy), curproxy->id,
3091 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003092 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003093 break;
3094 }
3095 }
3096 }
3097
Willy Tarreaudd701652010-05-25 23:03:02 +02003098 /* assign automatic UIDs to servers which don't have one yet */
3099 next_id = 1;
3100 newsrv = curproxy->srv;
3101 while (newsrv != NULL) {
3102 if (!newsrv->puid) {
3103 /* server ID not set, use automatic numbering with first
3104 * spare entry starting with next_svid.
3105 */
3106 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3107 newsrv->conf.id.key = newsrv->puid = next_id;
3108 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003109 newsrv->conf.name.key = newsrv->id;
3110 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003111 }
3112 next_id++;
3113 newsrv = newsrv->next;
3114 }
3115
Willy Tarreau20697042007-11-15 23:26:18 +01003116 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003117 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003118
Willy Tarreau62c3be22012-01-20 13:12:32 +01003119 /*
3120 * If this server supports a maxconn parameter, it needs a dedicated
3121 * tasks to fill the emptied slots when a connection leaves.
3122 * Also, resolve deferred tracking dependency if needed.
3123 */
3124 newsrv = curproxy->srv;
3125 while (newsrv != NULL) {
3126 if (newsrv->minconn > newsrv->maxconn) {
3127 /* Only 'minconn' was specified, or it was higher than or equal
3128 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3129 * this will avoid further useless expensive computations.
3130 */
3131 newsrv->maxconn = newsrv->minconn;
3132 } else if (newsrv->maxconn && !newsrv->minconn) {
3133 /* minconn was not specified, so we set it to maxconn */
3134 newsrv->minconn = newsrv->maxconn;
3135 }
3136
Willy Tarreau17d45382016-12-22 21:16:08 +01003137 /* this will also properly set the transport layer for prod and checks */
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003138 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 || (newsrv->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003139 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3140 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3141 }
Emeric Brun94324a42012-10-11 14:00:19 +02003142
Willy Tarreau034c88c2017-01-23 23:36:45 +01003143 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3144 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3145 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3146 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",
3147 newsrv->conf.file, newsrv->conf.line,
3148 proxy_type_str(curproxy), curproxy->id,
3149 newsrv->id);
3150
Willy Tarreau62c3be22012-01-20 13:12:32 +01003151 if (newsrv->trackit) {
3152 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003153 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003154 char *pname, *sname;
3155
3156 pname = newsrv->trackit;
3157 sname = strrchr(pname, '/');
3158
3159 if (sname)
3160 *sname++ = '\0';
3161 else {
3162 sname = pname;
3163 pname = NULL;
3164 }
3165
3166 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003167 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003168 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003169 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3170 proxy_type_str(curproxy), curproxy->id,
3171 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003172 cfgerr++;
3173 goto next_srv;
3174 }
3175 } else
3176 px = curproxy;
3177
3178 srv = findserver(px, sname);
3179 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003180 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3181 proxy_type_str(curproxy), curproxy->id,
3182 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003183 cfgerr++;
3184 goto next_srv;
3185 }
3186
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003187 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003188 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3189 "tracking as it does not have any check nor agent enabled.\n",
3190 proxy_type_str(curproxy), curproxy->id,
3191 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003192 cfgerr++;
3193 goto next_srv;
3194 }
3195
3196 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3197
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003198 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003199 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3200 "belongs to a tracking chain looping back to %s/%s.\n",
3201 proxy_type_str(curproxy), curproxy->id,
3202 newsrv->id, px->id, srv->id, px->id,
3203 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003204 cfgerr++;
3205 goto next_srv;
3206 }
3207
3208 if (curproxy != px &&
3209 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003210 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3211 "tracking: disable-on-404 option inconsistency.\n",
3212 proxy_type_str(curproxy), curproxy->id,
3213 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003214 cfgerr++;
3215 goto next_srv;
3216 }
3217
Willy Tarreau62c3be22012-01-20 13:12:32 +01003218 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003219 newsrv->tracknext = srv->trackers;
3220 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003221
3222 free(newsrv->trackit);
3223 newsrv->trackit = NULL;
3224 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003225
Willy Tarreau62c3be22012-01-20 13:12:32 +01003226 next_srv:
3227 newsrv = newsrv->next;
3228 }
3229
Olivier Houchard4e694042017-03-14 20:01:29 +01003230 /*
3231 * Try to generate dynamic cookies for servers now.
3232 * It couldn't be done earlier, since at the time we parsed
3233 * the server line, we may not have known yet that we
3234 * should use dynamic cookies, or the secret key may not
3235 * have been provided yet.
3236 */
3237 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3238 newsrv = curproxy->srv;
3239 while (newsrv != NULL) {
3240 srv_set_dyncookie(newsrv);
3241 newsrv = newsrv->next;
3242 }
3243
3244 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003245 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003246 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003247 */
3248
3249 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3250 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3251 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003252 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3253 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3254 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003255 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3256 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3257 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003258 } else {
3259 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3260 fwrr_init_server_groups(curproxy);
3261 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003262 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003263
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003264 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003265 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3266 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3267 fwlc_init_server_tree(curproxy);
3268 } else {
3269 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3270 fas_init_server_tree(curproxy);
3271 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003272 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003273
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003274 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003275 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3276 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3277 chash_init_server_tree(curproxy);
3278 } else {
3279 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3280 init_server_map(curproxy);
3281 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003282 break;
3283 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003284 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003285
3286 if (curproxy->options & PR_O_LOGASAP)
3287 curproxy->to_log &= ~LW_BYTES;
3288
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003289 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003290 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3291 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003292 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3293 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003294 err_code |= ERR_WARN;
3295 }
3296
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003297 if (curproxy->mode != PR_MODE_HTTP) {
3298 int optnum;
3299
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003300 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003301 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3302 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003303 err_code |= ERR_WARN;
3304 curproxy->uri_auth = NULL;
3305 }
3306
Willy Tarreaude7dc882017-03-10 11:49:21 +01003307 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003308 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3309 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003310 err_code |= ERR_WARN;
3311 }
3312
3313 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003314 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3315 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003316 err_code |= ERR_WARN;
3317 }
3318
3319 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003320 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3321 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003322 err_code |= ERR_WARN;
3323 }
3324
Willy Tarreaude7dc882017-03-10 11:49:21 +01003325 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003326 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3327 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003328 err_code |= ERR_WARN;
3329 }
3330
Willy Tarreau87cf5142011-08-19 22:57:24 +02003331 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003332 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3333 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003334 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003335 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003336 }
3337
3338 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003339 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3340 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003341 err_code |= ERR_WARN;
3342 curproxy->options &= ~PR_O_ORGTO;
3343 }
3344
3345 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3346 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3347 (curproxy->cap & cfg_opts[optnum].cap) &&
3348 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003349 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3350 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003351 err_code |= ERR_WARN;
3352 curproxy->options &= ~cfg_opts[optnum].val;
3353 }
3354 }
3355
3356 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3357 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3358 (curproxy->cap & cfg_opts2[optnum].cap) &&
3359 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003360 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3361 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003362 err_code |= ERR_WARN;
3363 curproxy->options2 &= ~cfg_opts2[optnum].val;
3364 }
3365 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003366
Willy Tarreau29fbe512015-08-20 19:35:14 +02003367#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003368 if (curproxy->conn_src.bind_hdr_occ) {
3369 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003370 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3371 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003372 err_code |= ERR_WARN;
3373 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003374#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003375 }
3376
Willy Tarreaubaaee002006-06-26 02:48:02 +02003377 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003378 * ensure that we're not cross-dressing a TCP server into HTTP.
3379 */
3380 newsrv = curproxy->srv;
3381 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003382 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003383 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3384 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003385 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003386 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003387
Willy Tarreau0cec3312011-10-31 13:49:26 +01003388 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003389 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3390 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003391 err_code |= ERR_WARN;
3392 }
3393
Willy Tarreauc93cd162014-05-13 15:54:22 +02003394 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003395 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3396 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003397 err_code |= ERR_WARN;
3398 }
3399
Willy Tarreau29fbe512015-08-20 19:35:14 +02003400#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003401 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3402 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003403 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3404 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003405 err_code |= ERR_WARN;
3406 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003407#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003408
Willy Tarreau46deab62018-04-28 07:18:15 +02003409 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3410 curproxy->options &= ~PR_O_REUSE_MASK;
3411
Willy Tarreau21d2af32008-02-14 20:25:24 +01003412 newsrv = newsrv->next;
3413 }
3414
Christopher Fauletd7c91962015-04-30 11:48:27 +02003415 /* Check filter configuration, if any */
3416 cfgerr += flt_check(curproxy);
3417
Willy Tarreauc1a21672009-08-16 22:37:44 +02003418 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003419 if (!curproxy->accept)
3420 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003421
Willy Tarreauc1a21672009-08-16 22:37:44 +02003422 if (curproxy->tcp_req.inspect_delay ||
3423 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003424 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003425
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003426 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003427 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003428 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003429 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003430
William Lallemandcf62f7e2018-10-26 14:47:40 +02003431 if (curproxy->mode == PR_MODE_CLI) {
3432 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3433 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3434 }
3435
Willy Tarreauc1a21672009-08-16 22:37:44 +02003436 /* both TCP and HTTP must check switching rules */
3437 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003438
3439 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003440 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003441 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3442 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 +01003443 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003444 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3445 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003446 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003447 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003448 }
3449
3450 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003451 if (curproxy->tcp_req.inspect_delay ||
3452 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3453 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3454
Emeric Brun97679e72010-09-23 17:56:44 +02003455 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3456 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3457
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003458 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003459 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003460 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003461 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003462
3463 /* If the backend does requires RDP cookie persistence, we have to
3464 * enable the corresponding analyser.
3465 */
3466 if (curproxy->options2 & PR_O2_RDPC_PRST)
3467 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003468
3469 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003470 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003471 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3472 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 +01003473 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003474 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3475 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003476 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003477 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003478 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003479
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003480 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003481 * attached to the current proxy */
3482 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3483 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003484 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003485
3486 if (!bind_conf->mux_proto)
3487 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003488
3489 /* it is possible that an incorrect mux was referenced
3490 * due to the proxy's mode not being taken into account
3491 * on first pass. Let's adjust it now.
3492 */
3493 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3494
3495 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003496 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3497 proxy_type_str(curproxy), curproxy->id,
3498 (int)bind_conf->mux_proto->token.len,
3499 bind_conf->mux_proto->token.ptr,
3500 bind_conf->arg, bind_conf->file, bind_conf->line);
3501 cfgerr++;
3502 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003503
3504 /* update the mux */
3505 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003506 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003507 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3508 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003509 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003510
3511 if (!newsrv->mux_proto)
3512 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003513
3514 /* it is possible that an incorrect mux was referenced
3515 * due to the proxy's mode not being taken into account
3516 * on first pass. Let's adjust it now.
3517 */
3518 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3519
3520 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003521 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3522 proxy_type_str(curproxy), curproxy->id,
3523 (int)newsrv->mux_proto->token.len,
3524 newsrv->mux_proto->token.ptr,
3525 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3526 cfgerr++;
3527 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003528
3529 /* update the mux */
3530 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003531 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003532
3533 /* initialize idle conns lists */
3534 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3535 int i;
3536
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003537 newsrv->available_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->available_conns));
Willy Tarreau835daa12019-02-07 14:46:29 +01003538
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003539 if (!newsrv->available_conns) {
Willy Tarreau835daa12019-02-07 14:46:29 +01003540 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003541 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau835daa12019-02-07 14:46:29 +01003542 cfgerr++;
3543 continue;
3544 }
3545
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003546 for (i = 0; i < global.nbthread; i++)
3547 LIST_INIT(&newsrv->available_conns[i]);
Willy Tarreau980855b2019-02-07 14:59:29 +01003548
3549 if (newsrv->max_idle_conns != 0) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003550 if (idle_conn_task == NULL) {
3551 idle_conn_task = task_new(MAX_THREADS_MASK);
3552 if (!idle_conn_task)
3553 goto err;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003554
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003555 idle_conn_task->process = srv_cleanup_idle_connections;
3556 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003557
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003558 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubbb5f1d2019-10-18 08:50:49 +02003559 idle_conn_cleanup[i] = task_new(1UL << i);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003560 if (!idle_conn_cleanup[i])
3561 goto err;
3562 idle_conn_cleanup[i]->process = srv_cleanup_toremove_connections;
3563 idle_conn_cleanup[i]->context = NULL;
Olivier Houchard859dc802019-08-08 15:47:21 +02003564 MT_LIST_INIT(&toremove_connections[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003565 }
3566 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003567
3568 newsrv->idle_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->idle_conns));
3569 if (!newsrv->idle_conns) {
3570 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3571 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3572 cfgerr++;
3573 continue;
3574 }
3575
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003576 for (i = 0; i < global.nbthread; i++)
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003577 MT_LIST_INIT(&newsrv->idle_conns[i]);
3578
3579 newsrv->safe_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->safe_conns));
3580 if (!newsrv->safe_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
3587 for (i = 0; i < global.nbthread; i++)
3588 MT_LIST_INIT(&newsrv->safe_conns[i]);
3589
3590 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(int));
Olivier Houchardf1314812019-02-18 16:41:17 +01003591 if (!newsrv->curr_idle_thr)
3592 goto err;
Willy Tarreau980855b2019-02-07 14:59:29 +01003593 continue;
3594 err:
3595 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3596 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3597 cfgerr++;
3598 continue;
3599 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003600 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003601 }
3602
3603 /***********************************************************/
3604 /* At this point, target names have already been resolved. */
3605 /***********************************************************/
3606
3607 /* Check multi-process mode compatibility */
3608
3609 if (global.nbproc > 1 && global.stats_fe) {
3610 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3611 unsigned long mask;
3612
Willy Tarreau6daac192019-02-02 17:39:53 +01003613 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
3614 mask &= proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003615
3616 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003617 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003618 break;
3619 }
3620 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003621 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 +02003622 }
3623 }
3624
3625 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003626 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003627 if (curproxy->bind_proc)
3628 continue;
3629
3630 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3631 unsigned long mask;
3632
Willy Tarreau6daac192019-02-02 17:39:53 +01003633 mask = proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003634 curproxy->bind_proc |= mask;
3635 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003636 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003637 }
3638
3639 if (global.stats_fe) {
3640 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3641 unsigned long mask;
3642
Cyril Bonté06181952016-02-24 00:14:54 +01003643 mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003644 global.stats_fe->bind_proc |= mask;
3645 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003646 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003647 }
3648
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003649 /* propagate bindings from frontends to backends. Don't do it if there
3650 * are any fatal errors as we must not call it with unresolved proxies.
3651 */
3652 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003653 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003654 if (curproxy->cap & PR_CAP_FE)
3655 propagate_processes(curproxy, NULL);
3656 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003657 }
3658
3659 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003660 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3661 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003662
3663 /*******************************************************/
3664 /* At this step, all proxies have a non-null bind_proc */
3665 /*******************************************************/
3666
3667 /* perform the final checks before creating tasks */
3668
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003669 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003670 struct listener *listener;
3671 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003672
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003673 /* Configure SSL for each bind line.
3674 * Note: if configuration fails at some point, the ->ctx member
3675 * remains NULL so that listeners can later detach.
3676 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003677 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003678 if (bind_conf->xprt->prepare_bind_conf &&
3679 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003680 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003681 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003682
Willy Tarreaue6b98942007-10-29 01:09:36 +01003683 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003684 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003685 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003686 int nbproc;
3687
3688 nbproc = my_popcountl(curproxy->bind_proc &
Cyril Bonté4920d702016-04-15 07:58:43 +02003689 (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003690 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003691
3692 if (!nbproc) /* no intersection between listener and frontend */
3693 nbproc = 1;
3694
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003695 if (!listener->luid) {
3696 /* listener ID not set, use automatic numbering with first
3697 * spare entry starting with next_luid.
3698 */
3699 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3700 listener->conf.id.key = listener->luid = next_id;
3701 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003702 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003703 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003704
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003705 /* enable separate counters */
3706 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003707 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003708 if (!listener->name)
3709 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003710 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003711
Willy Tarreaue6b98942007-10-29 01:09:36 +01003712 if (curproxy->options & PR_O_TCP_NOLING)
3713 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003714 if (!listener->maxaccept)
3715 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3716
3717 /* we want to have an optimal behaviour on single process mode to
3718 * maximize the work at once, but in multi-process we want to keep
3719 * some fairness between processes, so we target half of the max
3720 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003721 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003722 * used to disable the limit.
3723 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003724 if (listener->maxaccept > 0 && nbproc > 1) {
3725 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003726 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3727 }
3728
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003729 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003730 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003731 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003732
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003733 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003734 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003735
Willy Tarreau620408f2016-10-21 16:37:51 +02003736 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3737 listener->options |= LI_O_TCP_L5_RULES;
3738
Willy Tarreaude3041d2010-05-31 10:56:17 +02003739 if (curproxy->mon_mask.s_addr)
3740 listener->options |= LI_O_CHK_MONNET;
3741
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003742 /* smart accept mode is automatic in HTTP mode */
3743 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003744 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003745 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3746 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003747 }
3748
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003749 /* Release unused SSL configs */
3750 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003751 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3752 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003753 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003754
Willy Tarreaua38a7172019-02-02 17:11:28 +01003755 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003756 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003757 int count, maxproc = 0;
3758
3759 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
David Carliere6c39412015-07-02 07:00:17 +00003760 count = my_popcountl(bind_conf->bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003761 if (count > maxproc)
3762 maxproc = count;
3763 }
3764 /* backends have 0, frontends have 1 or more */
3765 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003766 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3767 " limited to process assigned to the current request.\n",
3768 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003769
Willy Tarreau102df612014-05-07 23:56:38 +02003770 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003771 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3772 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003773 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003774 }
Willy Tarreau102df612014-05-07 23:56:38 +02003775 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003776 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3777 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003778 }
3779 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003780
3781 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003782 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003783 if (curproxy->task) {
3784 curproxy->task->context = curproxy;
3785 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003786 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003787 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3788 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003789 cfgerr++;
3790 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003791 }
3792
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003793 /*
3794 * Recount currently required checks.
3795 */
3796
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003797 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003798 int optnum;
3799
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003800 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3801 if (curproxy->options & cfg_opts[optnum].val)
3802 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003803
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003804 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3805 if (curproxy->options2 & cfg_opts2[optnum].val)
3806 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003807 }
3808
Willy Tarreau0fca4832015-05-01 19:12:05 +02003809 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003810 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003811 if (curproxy->table && curproxy->table->peers.p)
3812 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003813
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003814 /* compute the required process bindings for the peers from <stktables_list>
3815 * for all the stick-tables, the ones coming with "peers" sections included.
3816 */
3817 for (t = stktables_list; t; t = t->next) {
3818 struct proxy *p;
3819
3820 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3821 if (t->peers.p && t->peers.p->peers_fe) {
3822 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3823 }
3824 }
3825 }
3826
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003827 if (cfg_peers) {
3828 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003829 struct peer *p, *pb;
3830
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003831 /* In the case the peers frontend was not initialized by a
3832 stick-table used in the configuration, set its bind_proc
3833 by default to the first process. */
3834 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003835 if (curpeers->peers_fe) {
3836 if (curpeers->peers_fe->bind_proc == 0)
3837 curpeers->peers_fe->bind_proc = 1;
3838 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003839 curpeers = curpeers->next;
3840 }
3841
3842 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003843 /* Remove all peers sections which don't have a valid listener,
3844 * which are not used by any table, or which are bound to more
3845 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003846 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003847 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003848 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003849 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003850 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003851
3852 if (curpeers->state == PR_STSTOPPED) {
3853 /* the "disabled" keyword was present */
3854 if (curpeers->peers_fe)
3855 stop_proxy(curpeers->peers_fe);
3856 curpeers->peers_fe = NULL;
3857 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003858 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003859 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3860 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003861 if (curpeers->peers_fe)
3862 stop_proxy(curpeers->peers_fe);
3863 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003864 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003865 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003866 /* either it's totally stopped or too much used */
3867 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003868 ha_alert("Peers section '%s': peers referenced by sections "
3869 "running in different processes (%d different ones). "
3870 "Check global.nbproc and all tables' bind-process "
3871 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003872 cfgerr++;
3873 }
3874 stop_proxy(curpeers->peers_fe);
3875 curpeers->peers_fe = NULL;
3876 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003877 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003878 /* Initializes the transport layer of the server part of all the peers belonging to
3879 * <curpeers> section if required.
3880 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3881 * of an old process.
3882 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003883 p = curpeers->remote;
3884 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003885 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003886 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 +01003887 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3888 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003889 p = p->next;
3890 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003891 /* Configure the SSL bindings of the local peer if required. */
3892 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3893 struct list *l;
3894 struct bind_conf *bind_conf;
3895
3896 l = &curpeers->peers_fe->conf.bind;
3897 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3898 if (bind_conf->xprt->prepare_bind_conf &&
3899 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3900 cfgerr++;
3901 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003902 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02003903 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3904 curpeers->id);
3905 cfgerr++;
3906 break;
3907 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003908 last = &curpeers->next;
3909 continue;
3910 }
3911
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003912 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003913 p = curpeers->remote;
3914 while (p) {
3915 pb = p->next;
3916 free(p->id);
3917 free(p);
3918 p = pb;
3919 }
3920
3921 /* Destroy and unlink this curpeers section.
3922 * Note: curpeers is backed up into *last.
3923 */
3924 free(curpeers->id);
3925 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003926 /* Reset any refereance to this peers section in the list of stick-tables */
3927 for (t = stktables_list; t; t = t->next) {
3928 if (t->peers.p && t->peers.p == *last)
3929 t->peers.p = NULL;
3930 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003931 free(*last);
3932 *last = curpeers;
3933 }
3934 }
3935
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003936 for (t = stktables_list; t; t = t->next) {
3937 if (t->proxy)
3938 continue;
3939 if (!stktable_init(t)) {
3940 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
3941 cfgerr++;
3942 }
3943 }
3944
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003945 /* initialize stick-tables on backend capable proxies. This must not
3946 * be done earlier because the data size may be discovered while parsing
3947 * other proxies.
3948 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003949 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003950 if (curproxy->state == PR_STSTOPPED || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003951 continue;
3952
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003953 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003954 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003955 cfgerr++;
3956 }
3957 }
3958
Simon Horman0d16a402015-01-30 11:22:58 +09003959 if (mailers) {
3960 struct mailers *curmailers = mailers, **last;
3961 struct mailer *m, *mb;
3962
3963 /* Remove all mailers sections which don't have a valid listener.
3964 * This can happen when a mailers section is never referenced.
3965 */
3966 last = &mailers;
3967 while (*last) {
3968 curmailers = *last;
3969 if (curmailers->users) {
3970 last = &curmailers->next;
3971 continue;
3972 }
3973
Christopher Faulet767a84b2017-11-24 16:50:31 +01003974 ha_warning("Removing incomplete section 'mailers %s'.\n",
3975 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09003976
3977 m = curmailers->mailer_list;
3978 while (m) {
3979 mb = m->next;
3980 free(m->id);
3981 free(m);
3982 m = mb;
3983 }
3984
3985 /* Destroy and unlink this curmailers section.
3986 * Note: curmailers is backed up into *last.
3987 */
3988 free(curmailers->id);
3989 curmailers = curmailers->next;
3990 free(*last);
3991 *last = curmailers;
3992 }
3993 }
3994
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003995 /* Update server_state_file_name to backend name if backend is supposed to use
3996 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003997 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003998 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
3999 curproxy->server_state_file_name == NULL)
4000 curproxy->server_state_file_name = strdup(curproxy->id);
4001 }
4002
Ben Draut054fbee2018-04-13 15:43:04 -06004003 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
4004 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
4005 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
4006 curr_resolvers->id, curr_resolvers->conf.file,
4007 curr_resolvers->conf.line);
4008 err_code |= ERR_WARN;
4009 }
4010 }
4011
William Lallemand48b4bb42017-10-23 14:36:34 +02004012 list_for_each_entry(postparser, &postparsers, list) {
4013 if (postparser->func)
4014 cfgerr += postparser->func();
4015 }
4016
Willy Tarreaubb925012009-07-23 13:36:36 +02004017 if (cfgerr > 0)
4018 err_code |= ERR_ALERT | ERR_FATAL;
4019 out:
4020 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004021}
4022
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004023/*
4024 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4025 * parsing sessions.
4026 */
4027void cfg_register_keywords(struct cfg_kw_list *kwl)
4028{
4029 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
4030}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004031
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004032/*
4033 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4034 */
4035void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4036{
4037 LIST_DEL(&kwl->list);
4038 LIST_INIT(&kwl->list);
4039}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004040
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004041/* this function register new section in the haproxy configuration file.
4042 * <section_name> is the name of this new section and <section_parser>
4043 * is the called parser. If two section declaration have the same name,
4044 * only the first declared is used.
4045 */
4046int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004047 int (*section_parser)(const char *, int, char **, int),
4048 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004049{
4050 struct cfg_section *cs;
4051
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004052 list_for_each_entry(cs, &sections, list) {
4053 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004054 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004055 return 0;
4056 }
4057 }
4058
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004059 cs = calloc(1, sizeof(*cs));
4060 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004061 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004062 return 0;
4063 }
4064
4065 cs->section_name = section_name;
4066 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004067 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004068
4069 LIST_ADDQ(&sections, &cs->list);
4070
4071 return 1;
4072}
4073
William Lallemand48b4bb42017-10-23 14:36:34 +02004074/* this function register a new function which will be called once the haproxy
4075 * configuration file has been parsed. It's useful to check dependencies
4076 * between sections or to resolve items once everything is parsed.
4077 */
4078int cfg_register_postparser(char *name, int (*func)())
4079{
4080 struct cfg_postparser *cp;
4081
4082 cp = calloc(1, sizeof(*cp));
4083 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004084 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004085 return 0;
4086 }
4087 cp->name = name;
4088 cp->func = func;
4089
4090 LIST_ADDQ(&postparsers, &cp->list);
4091
4092 return 1;
4093}
4094
Willy Tarreaubaaee002006-06-26 02:48:02 +02004095/*
David Carlier845efb52015-09-25 11:49:18 +01004096 * free all config section entries
4097 */
4098void cfg_unregister_sections(void)
4099{
4100 struct cfg_section *cs, *ics;
4101
4102 list_for_each_entry_safe(cs, ics, &sections, list) {
4103 LIST_DEL(&cs->list);
4104 free(cs);
4105 }
4106}
4107
Christopher Faulet7110b402016-10-26 11:09:44 +02004108void cfg_backup_sections(struct list *backup_sections)
4109{
4110 struct cfg_section *cs, *ics;
4111
4112 list_for_each_entry_safe(cs, ics, &sections, list) {
4113 LIST_DEL(&cs->list);
4114 LIST_ADDQ(backup_sections, &cs->list);
4115 }
4116}
4117
4118void cfg_restore_sections(struct list *backup_sections)
4119{
4120 struct cfg_section *cs, *ics;
4121
4122 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4123 LIST_DEL(&cs->list);
4124 LIST_ADDQ(&sections, &cs->list);
4125 }
4126}
4127
Willy Tarreaue6552512018-11-26 11:33:13 +01004128/* these are the config sections handled by default */
4129REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4130REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4131REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4132REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4133REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4134REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4135REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4136REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4137REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4138REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004139
David Carlier845efb52015-09-25 11:49:18 +01004140/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004141 * Local variables:
4142 * c-indent-level: 8
4143 * c-basic-offset: 8
4144 * End:
4145 */