blob: 9f44c7566bf7f4a2d50aad1dea51297838e1b623 [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;
William Lallemand64e84512015-05-12 14:25:37 +02001857
1858 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001859 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001860 return -1;
1861 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001862
David Carlier97880bb2016-04-08 10:35:26 +01001863 if ((f=fopen(file,"r")) == NULL) {
1864 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001865 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001866 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001867
William Lallemandb2f07452015-05-12 14:27:13 +02001868next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001869 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001870 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001871 char *end;
1872 char *args[MAX_LINE_ARGS + 1];
1873 char *line = thisline;
1874
Willy Tarreaubaaee002006-06-26 02:48:02 +02001875 linenum++;
1876
Willy Tarreau32234e72020-06-16 17:14:33 +02001877 if (fatal >= 50) {
1878 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1879 break;
1880 }
1881
Willy Tarreaubaaee002006-06-26 02:48:02 +02001882 end = line + strlen(line);
1883
William Lallemand64e84512015-05-12 14:25:37 +02001884 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001885 /* Check if we reached the limit and the last char is not \n.
1886 * Watch out for the last line without the terminating '\n'!
1887 */
William Lallemand64e84512015-05-12 14:25:37 +02001888 char *newline;
1889 int newlinesize = linesize * 2;
1890
1891 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1892 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001893 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1894 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001895 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001896 fatal++;
William Lallemand64e84512015-05-12 14:25:37 +02001897 continue;
1898 }
1899
1900 readbytes = linesize - 1;
1901 linesize = newlinesize;
1902 thisline = newline;
1903 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001904 }
1905
William Lallemand64e84512015-05-12 14:25:37 +02001906 readbytes = 0;
1907
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001908 /* kill trailing LF */
1909 *(end - 1) = 0;
1910
Willy Tarreaubaaee002006-06-26 02:48:02 +02001911 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001912 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001913 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001914
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001915 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001916 err_code |= cfg_parse_scope(file, linenum, line);
1917 goto next_line;
1918 }
1919
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001920 while (1) {
1921 uint32_t err;
1922 char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001923
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001924 arg = MAX_LINE_ARGS;
1925 outlen = outlinesize;
1926 err = parse_line(line, outline, &outlen, args, &arg,
1927 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
1928 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP, &errptr);
1929
1930 if (err & PARSE_ERR_QUOTE) {
1931 ha_alert("parsing [%s:%d]: unmatched quote below:\n"
1932 " %s\n %*s\n", file, linenum, line, (int)(errptr-line+1), "^");
1933 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001934 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001935 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001936 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001937
1938 if (err & PARSE_ERR_BRACE) {
1939 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name below:\n"
1940 " %s\n %*s\n", file, linenum, line, (int)(errptr-line+1), "^");
1941 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001942 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001943 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001944 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001945
1946 if (err & PARSE_ERR_VARNAME) {
1947 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name below:\n"
1948 " %s\n %*s\n", file, linenum, line, (int)(errptr-line+1), "^");
1949 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001950 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001951 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001952 }
William Lallemandb2f07452015-05-12 14:27:13 +02001953
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001954 if (err & PARSE_ERR_HEX) {
1955 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence below:\n"
1956 " %s\n %*s\n", file, linenum, line, (int)(errptr-line+1), "^");
1957 err_code |= ERR_ALERT | ERR_FATAL;
1958 goto next_line;
1959 }
William Lallemandb2f07452015-05-12 14:27:13 +02001960
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001961 if (err & PARSE_ERR_TOOMANY) {
1962 ha_alert("parsing [%s:%d]: too many words, truncating at word %d, position %ld: <%s>.\n",
1963 file, linenum, arg, (long)(args[arg-1] - thisline + 1), args[arg-1]);
1964 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001965 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001966 goto next_line;
1967 }
William Lallemandb2f07452015-05-12 14:27:13 +02001968
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001969 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1970 outlinesize = (outlen + 1023) & -1024;
1971 outline = realloc(outline, outlinesize);
1972 if (outline == NULL) {
1973 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1974 file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001975 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001976 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001977 goto next_line;
William Lallemandb2f07452015-05-12 14:27:13 +02001978 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001979 /* try again */
1980 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001981 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001982 /* everything's OK */
1983 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001984 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001985
1986 /* empty line */
1987 if (!**args)
1988 continue;
1989
Willy Tarreau3842f002009-06-14 11:39:52 +02001990 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001991 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02001992 char *tmp;
1993
Willy Tarreau3842f002009-06-14 11:39:52 +02001994 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02001995 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001996 for (arg=0; *args[arg+1]; arg++)
1997 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02001998 *tmp = '\0'; // fix the next arg to \0
1999 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002000 }
Willy Tarreau3842f002009-06-14 11:39:52 +02002001 else if (!strcmp(args[0], "default")) {
2002 kwm = KWM_DEF;
2003 for (arg=0; *args[arg+1]; arg++)
2004 args[arg] = args[arg+1]; // shift args after inversion
2005 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002006
William Dauchyec730982019-10-27 20:08:10 +01002007 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2008 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002009 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
2010 strcmp(args[0], "insecure-fork-wanted") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002011 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002012 "supported only for options, log, busy-polling, "
Willy Tarreaud96f1122019-12-03 07:07:36 +01002013 "set-dumpable, strict-limits, and insecure-fork-wanted.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002014 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002015 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002016 }
2017
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002018 /* detect section start */
2019 list_for_each_entry(ics, &sections, list) {
2020 if (strcmp(args[0], ics->section_name) == 0) {
2021 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002022 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002023 cs = ics;
2024 break;
2025 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002026 }
2027
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002028 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002029 int status;
2030
2031 status = pcs->post_section_parser();
2032 err_code |= status;
2033 if (status & ERR_FATAL)
2034 fatal++;
2035
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002036 if (err_code & ERR_ABORT)
2037 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002038 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002039 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002040
William Lallemandd2ff56d2017-10-16 11:06:50 +02002041 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002042 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002043 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002044 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002045 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002046 int status;
2047
2048 status = cs->section_parser(file, linenum, args, kwm);
2049 err_code |= status;
2050 if (status & ERR_FATAL)
2051 fatal++;
2052
William Lallemandd2ff56d2017-10-16 11:06:50 +02002053 if (err_code & ERR_ABORT)
2054 goto err;
2055 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002056 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002057
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002058 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002059 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002060
2061err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002062 free(cfg_scope);
2063 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002064 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002065 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002066 free(outline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002067 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002068 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002069}
2070
Willy Tarreau64ab6072014-09-16 12:17:36 +02002071/* This function propagates processes from frontend <from> to backend <to> so
2072 * that it is always guaranteed that a backend pointed to by a frontend is
2073 * bound to all of its processes. After that, if the target is a "listen"
2074 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002075 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002076 * checked first to ensure that <to> is already bound to all processes of
2077 * <from>, there is no risk of looping and we ensure to follow the shortest
2078 * path to the destination.
2079 *
2080 * It is possible to set <to> to NULL for the first call so that the function
2081 * takes care of visiting the initial frontend in <from>.
2082 *
2083 * It is important to note that the function relies on the fact that all names
2084 * have already been resolved.
2085 */
2086void propagate_processes(struct proxy *from, struct proxy *to)
2087{
2088 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002089
2090 if (to) {
2091 /* check whether we need to go down */
2092 if (from->bind_proc &&
2093 (from->bind_proc & to->bind_proc) == from->bind_proc)
2094 return;
2095
2096 if (!from->bind_proc && !to->bind_proc)
2097 return;
2098
2099 to->bind_proc = from->bind_proc ?
2100 (to->bind_proc | from->bind_proc) : 0;
2101
2102 /* now propagate down */
2103 from = to;
2104 }
2105
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002106 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002107 return;
2108
Willy Tarreauf6b70012014-12-18 14:00:43 +01002109 if (from->state == PR_STSTOPPED)
2110 return;
2111
Willy Tarreau64ab6072014-09-16 12:17:36 +02002112 /* default_backend */
2113 if (from->defbe.be)
2114 propagate_processes(from, from->defbe.be);
2115
2116 /* use_backend */
2117 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002118 if (rule->dynamic)
2119 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002120 to = rule->be.backend;
2121 propagate_processes(from, to);
2122 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002123}
2124
Willy Tarreaubb925012009-07-23 13:36:36 +02002125/*
2126 * Returns the error code, 0 if OK, or any combination of :
2127 * - ERR_ABORT: must abort ASAP
2128 * - ERR_FATAL: we can continue parsing but not start the service
2129 * - ERR_WARN: a warning has been emitted
2130 * - ERR_ALERT: an alert has been emitted
2131 * Only the two first ones can stop processing, the two others are just
2132 * indicators.
2133 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002134int check_config_validity()
2135{
2136 int cfgerr = 0;
2137 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002138 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002139 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002140 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002141 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002142 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002143 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002144 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002145 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002146
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002147 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002148 /*
2149 * Now, check for the integrity of all that we have collected.
2150 */
2151
2152 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002153 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002154
Willy Tarreau193b8c62012-11-22 00:17:38 +01002155 if (!global.tune.max_http_hdr)
2156 global.tune.max_http_hdr = MAX_HTTP_HDR;
2157
2158 if (!global.tune.cookie_len)
2159 global.tune.cookie_len = CAPTURE_LEN;
2160
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002161 if (!global.tune.requri_len)
2162 global.tune.requri_len = REQURI_LEN;
2163
Willy Tarreau149ab772019-01-26 14:27:06 +01002164 if (!global.nbthread) {
2165 /* nbthread not set, thus automatic. In this case, and only if
2166 * running on a single process, we enable the same number of
2167 * threads as the number of CPUs the process is bound to. This
2168 * allows to easily control the number of threads using taskset.
2169 */
2170 global.nbthread = 1;
2171#if defined(USE_THREAD)
2172 if (global.nbproc == 1)
2173 global.nbthread = thread_cpus_enabled_at_boot;
2174 all_threads_mask = nbits(global.nbthread);
2175#endif
2176 }
2177
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002178 if (global.nbproc > 1 && global.nbthread > 1) {
2179 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2180 err_code |= ERR_ALERT | ERR_FATAL;
2181 goto out;
2182 }
2183
Willy Tarreaubafbe012017-11-24 17:34:44 +01002184 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002185
Willy Tarreaubafbe012017-11-24 17:34:44 +01002186 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002187
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002188 /* Post initialisation of the users and groups lists. */
2189 err_code = userlist_postinit();
2190 if (err_code != ERR_NONE)
2191 goto out;
2192
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002193 /* first, we will invert the proxy list order */
2194 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002195 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002196 struct proxy *next;
2197
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002198 next = proxies_list->next;
2199 proxies_list->next = curproxy;
2200 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002201 if (!next)
2202 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002203 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002204 }
2205
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002206 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002207 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002208 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002209 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002210 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002211 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002212 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002213 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002214
Willy Tarreau050536d2012-10-04 08:47:34 +02002215 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002216 /* proxy ID not set, use automatic numbering with first
2217 * spare entry starting with next_pxid.
2218 */
2219 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2220 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2221 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002222 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002223 next_pxid++;
2224
Willy Tarreau55ea7572007-06-17 19:56:27 +02002225
Willy Tarreaubaaee002006-06-26 02:48:02 +02002226 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002227 /* ensure we don't keep listeners uselessly bound */
2228 stop_proxy(curproxy);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002229 if (curproxy->table) {
2230 free((void *)curproxy->table->peers.name);
2231 curproxy->table->peers.p = NULL;
2232 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002233 continue;
2234 }
2235
Willy Tarreau102df612014-05-07 23:56:38 +02002236 /* Check multi-process mode compatibility for the current proxy */
2237
2238 if (curproxy->bind_proc) {
2239 /* an explicit bind-process was specified, let's check how many
2240 * processes remain.
2241 */
David Carliere6c39412015-07-02 07:00:17 +00002242 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002243
Willy Tarreaua38a7172019-02-02 17:11:28 +01002244 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002245 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002246 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 +02002247 curproxy->bind_proc = 1;
2248 }
2249 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002250 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 +02002251 curproxy->bind_proc = 0;
2252 }
2253 }
2254
Willy Tarreau3d209582014-05-09 17:06:11 +02002255 /* check and reduce the bind-proc of each listener */
2256 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2257 unsigned long mask;
2258
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002259 /* HTTP frontends with "h2" as ALPN/NPN will work in
2260 * HTTP/2 and absolutely require buffers 16kB or larger.
2261 */
2262#ifdef USE_OPENSSL
2263 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2264#ifdef OPENSSL_NPN_NEGOTIATED
2265 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002266 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002267 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",
2268 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002269 cfgerr++;
2270 }
2271#endif
2272#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2273 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002274 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002275 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",
2276 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002277 cfgerr++;
2278 }
2279#endif
2280 } /* HTTP && bufsize < 16384 */
2281#endif
2282
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002283 /* detect and address thread affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002284 mask = thread_mask(bind_conf->bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002285 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002286 unsigned long new_mask = 0;
2287
2288 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002289 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002290 mask >>= global.nbthread;
2291 }
2292
Willy Tarreaua36b3242019-02-02 13:14:34 +01002293 bind_conf->bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002294 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",
2295 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2296 }
2297
2298 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002299 mask = proc_mask(bind_conf->bind_proc) & proc_mask(curproxy->bind_proc);
2300 if (!(mask & all_proc_mask)) {
2301 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
2302 nbproc = my_popcountl(bind_conf->bind_proc);
2303 bind_conf->bind_proc = proc_mask(bind_conf->bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002304
Willy Tarreaua36b3242019-02-02 13:14:34 +01002305 if (!bind_conf->bind_proc && nbproc == 1) {
2306 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",
2307 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2308 bind_conf->bind_proc = mask & ~(mask - 1);
2309 }
2310 else if (!bind_conf->bind_proc && nbproc > 1) {
2311 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",
2312 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2313 bind_conf->bind_proc = 0;
2314 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002315 }
2316 }
2317
Willy Tarreauff01a212009-03-15 13:46:16 +01002318 switch (curproxy->mode) {
2319 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002320 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002321 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002322 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2323 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002324 cfgerr++;
2325 }
2326
2327 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002328 ha_warning("config : servers will be ignored for %s '%s'.\n",
2329 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002330 break;
2331
2332 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002333 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002334 break;
2335
2336 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002337 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002338 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002339
2340 case PR_MODE_CLI:
2341 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2342 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002343 }
2344
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002345 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002346 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2347 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002348 err_code |= ERR_WARN;
2349 }
2350
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002351 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002352 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002353 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002354 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2355 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002356 cfgerr++;
2357 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002358#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002359 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002360 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2361 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002362 cfgerr++;
2363 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002364#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002365 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002366 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2367 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002368 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002369 }
2370 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002371 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002372 /* If no LB algo is set in a backend, and we're not in
2373 * transparent mode, dispatch mode nor proxy mode, we
2374 * want to use balance roundrobin by default.
2375 */
2376 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2377 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002378 }
2379 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002380
Willy Tarreau1620ec32011-08-06 17:05:02 +02002381 if (curproxy->options & PR_O_DISPATCH)
2382 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2383 else if (curproxy->options & PR_O_HTTP_PROXY)
2384 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2385 else if (curproxy->options & PR_O_TRANSP)
2386 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002387
Christopher Faulete5870d82020-04-15 11:32:03 +02002388 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2389 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2390 proxy_type_str(curproxy), curproxy->id);
2391 err_code |= ERR_WARN;
2392 }
2393
2394 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002395 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002396 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002397 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2398 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002399 err_code |= ERR_WARN;
2400 curproxy->options &= ~PR_O_DISABLE404;
2401 }
2402 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002403 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2404 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002405 err_code |= ERR_WARN;
2406 curproxy->options &= ~PR_O2_CHK_SNDST;
2407 }
Willy Tarreauef781042010-01-27 11:53:01 +01002408 }
2409
Simon Horman98637e52014-06-20 12:30:16 +09002410 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2411 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002412 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2413 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002414 cfgerr++;
2415 }
2416 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002417 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2418 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002419 cfgerr++;
2420 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002421 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2422 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2423 curproxy->id, "option external-check");
2424 err_code |= ERR_WARN;
2425 }
Simon Horman98637e52014-06-20 12:30:16 +09002426 }
2427
Simon Horman64e34162015-02-06 11:11:57 +09002428 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002429 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002430 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2431 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2432 "'email-alert myhostname', or 'email-alert to' "
2433 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2434 "to be present).\n",
2435 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002436 err_code |= ERR_WARN;
2437 free_email_alert(curproxy);
2438 }
2439 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002440 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002441 }
2442
Simon Horman98637e52014-06-20 12:30:16 +09002443 if (curproxy->check_command) {
2444 int clear = 0;
2445 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002446 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2447 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002448 err_code |= ERR_WARN;
2449 clear = 1;
2450 }
2451 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002452 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2453 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002454 cfgerr++;
2455 }
2456 if (clear) {
2457 free(curproxy->check_command);
2458 curproxy->check_command = NULL;
2459 }
2460 }
2461
2462 if (curproxy->check_path) {
2463 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002464 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2465 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002466 err_code |= ERR_WARN;
2467 free(curproxy->check_path);
2468 curproxy->check_path = NULL;
2469 }
2470 }
2471
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002472 /* if a default backend was specified, let's find it */
2473 if (curproxy->defbe.name) {
2474 struct proxy *target;
2475
Willy Tarreauafb39922015-05-26 12:04:09 +02002476 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002477 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002478 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2479 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002480 cfgerr++;
2481 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002482 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2483 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002484 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002485 } else if (target->mode != curproxy->mode &&
2486 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2487
Christopher Faulet767a84b2017-11-24 16:50:31 +01002488 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2489 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2490 curproxy->conf.file, curproxy->conf.line,
2491 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2492 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002493 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002494 } else {
2495 free(curproxy->defbe.name);
2496 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002497 /* Emit a warning if this proxy also has some servers */
2498 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002499 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2500 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002501 err_code |= ERR_WARN;
2502 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002503 }
2504 }
2505
Willy Tarreau55ea7572007-06-17 19:56:27 +02002506 /* find the target proxy for 'use_backend' rules */
2507 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002508 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002509 struct logformat_node *node;
2510 char *pxname;
2511
2512 /* Try to parse the string as a log format expression. If the result
2513 * of the parsing is only one entry containing a simple string, then
2514 * it's a standard string corresponding to a static rule, thus the
2515 * parsing is cancelled and be.name is restored to be resolved.
2516 */
2517 pxname = rule->be.name;
2518 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002519 curproxy->conf.args.ctx = ARGC_UBK;
2520 curproxy->conf.args.file = rule->file;
2521 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002522 err = NULL;
2523 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002524 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2525 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002526 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002527 cfgerr++;
2528 continue;
2529 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002530 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2531
2532 if (!LIST_ISEMPTY(&rule->be.expr)) {
2533 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2534 rule->dynamic = 1;
2535 free(pxname);
2536 continue;
2537 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002538 /* Only one element in the list, a simple string: free the expression and
2539 * fall back to static rule
2540 */
2541 LIST_DEL(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002542 free(node->arg);
2543 free(node);
2544 }
2545
2546 rule->dynamic = 0;
2547 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002548
Willy Tarreauafb39922015-05-26 12:04:09 +02002549 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002550 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002551 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2552 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002553 cfgerr++;
2554 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002555 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2556 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002557 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002558 } else if (target->mode != curproxy->mode &&
2559 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2560
Christopher Faulet767a84b2017-11-24 16:50:31 +01002561 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2562 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2563 curproxy->conf.file, curproxy->conf.line,
2564 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2565 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002566 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002567 } else {
2568 free((void *)rule->be.name);
2569 rule->be.backend = target;
2570 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002571 }
2572
Willy Tarreau64ab6072014-09-16 12:17:36 +02002573 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002574 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002575 struct server *target;
2576 struct logformat_node *node;
2577 char *server_name;
2578
2579 /* We try to parse the string as a log format expression. If the result of the parsing
2580 * is only one entry containing a single string, then it's a standard string corresponding
2581 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2582 */
2583 server_name = srule->srv.name;
2584 LIST_INIT(&srule->expr);
2585 curproxy->conf.args.ctx = ARGC_USRV;
2586 err = NULL;
2587 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2588 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2589 srule->file, srule->line, server_name, err);
2590 free(err);
2591 cfgerr++;
2592 continue;
2593 }
2594 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2595
2596 if (!LIST_ISEMPTY(&srule->expr)) {
2597 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2598 srule->dynamic = 1;
2599 free(server_name);
2600 continue;
2601 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002602 /* Only one element in the list, a simple string: free the expression and
2603 * fall back to static rule
2604 */
2605 LIST_DEL(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002606 free(node->arg);
2607 free(node);
2608 }
2609
2610 srule->dynamic = 0;
2611 srule->srv.name = server_name;
2612 target = findserver(curproxy, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002613
2614 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002615 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2616 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002617 cfgerr++;
2618 continue;
2619 }
2620 free((void *)srule->srv.name);
2621 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002622 }
2623
Emeric Brunb982a3d2010-01-04 15:45:53 +01002624 /* find the target table for 'stick' rules */
2625 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002626 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002627
Emeric Brun1d33b292010-01-04 15:47:17 +01002628 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2629 if (mrule->flags & STK_IS_STORE)
2630 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2631
Emeric Brunb982a3d2010-01-04 15:45:53 +01002632 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002633 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002634 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002635 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002636
2637 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002638 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002639 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002640 cfgerr++;
2641 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002642 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002643 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2644 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002645 cfgerr++;
2646 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002647 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002648 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2649 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002650 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002651 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002652 else {
2653 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002654 mrule->table.t = target;
2655 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002656 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002657 if (!in_proxies_list(target->proxies_list, curproxy)) {
2658 curproxy->next_stkt_ref = target->proxies_list;
2659 target->proxies_list = curproxy;
2660 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002661 }
2662 }
2663
2664 /* find the target table for 'store response' rules */
2665 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002666 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002667
Emeric Brun1d33b292010-01-04 15:47:17 +01002668 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2669
Emeric Brunb982a3d2010-01-04 15:45:53 +01002670 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002671 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002672 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002673 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002674
2675 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002676 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002677 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002678 cfgerr++;
2679 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002680 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002681 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2682 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002683 cfgerr++;
2684 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002685 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002686 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2687 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002688 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002689 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002690 else {
2691 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002692 mrule->table.t = target;
2693 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002694 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002695 if (!in_proxies_list(target->proxies_list, curproxy)) {
2696 curproxy->next_stkt_ref = target->proxies_list;
2697 target->proxies_list = curproxy;
2698 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002699 }
2700 }
2701
Christopher Faulete4e830d2017-09-18 14:51:41 +02002702 /* check validity for 'tcp-request' layer 4 rules */
2703 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2704 err = NULL;
2705 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002706 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002707 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002708 cfgerr++;
2709 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002710 }
2711
Christopher Faulete4e830d2017-09-18 14:51:41 +02002712 /* check validity for 'tcp-request' layer 5 rules */
2713 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2714 err = NULL;
2715 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002716 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002717 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002718 cfgerr++;
2719 }
2720 }
2721
Christopher Faulete4e830d2017-09-18 14:51:41 +02002722 /* check validity for 'tcp-request' layer 6 rules */
2723 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2724 err = NULL;
2725 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002726 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002727 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002728 cfgerr++;
2729 }
2730 }
2731
Christopher Faulete4e830d2017-09-18 14:51:41 +02002732 /* check validity for 'http-request' layer 7 rules */
2733 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2734 err = NULL;
2735 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002736 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002737 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002738 cfgerr++;
2739 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002740 }
2741
Christopher Faulete4e830d2017-09-18 14:51:41 +02002742 /* check validity for 'http-response' layer 7 rules */
2743 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2744 err = NULL;
2745 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002746 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002747 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002748 cfgerr++;
2749 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002750 }
2751
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002752 /* check validity for 'http-after-response' layer 7 rules */
2753 list_for_each_entry(arule, &curproxy->http_after_res_rules, list) {
2754 err = NULL;
2755 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
2756 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
2757 free(err);
2758 cfgerr++;
2759 }
2760 }
2761
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002762 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002763 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002764
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002765 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002766 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
2767 free((void *)curproxy->table->peers.name);
2768 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002769 break;
2770 }
2771 }
2772
2773 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002774 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002775 curproxy->id, curproxy->table->peers.name);
2776 free((void *)curproxy->table->peers.name);
2777 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002778 cfgerr++;
2779 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002780 else if (curpeers->state == PR_STSTOPPED) {
2781 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002782 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002783 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002784 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002785 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2786 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002787 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002788 cfgerr++;
2789 }
2790 }
2791
Simon Horman9dc49962015-01-30 11:22:59 +09002792
2793 if (curproxy->email_alert.mailers.name) {
2794 struct mailers *curmailers = mailers;
2795
2796 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002797 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002798 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002799 }
Simon Horman9dc49962015-01-30 11:22:59 +09002800 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002801 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2802 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002803 free_email_alert(curproxy);
2804 cfgerr++;
2805 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002806 else {
2807 err = NULL;
2808 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002809 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002810 free(err);
2811 cfgerr++;
2812 }
2813 }
Simon Horman9dc49962015-01-30 11:22:59 +09002814 }
2815
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002816 if (curproxy->uri_auth && curproxy->uri_auth != defproxy.uri_auth &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002817 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002818 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002819 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2820 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002821 cfgerr++;
2822 goto out_uri_auth_compat;
2823 }
2824
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002825 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
2826 (curproxy->uri_auth != defproxy.uri_auth ||
2827 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002828 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002829 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002830 int i = 0;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002831 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2832 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002833
2834 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002835 uri_auth_compat_req[i++] = "realm";
2836 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2837 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002838
Willy Tarreau95fa4692010-02-01 13:05:50 +01002839 uri_auth_compat_req[i++] = "unless";
2840 uri_auth_compat_req[i++] = "{";
2841 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2842 uri_auth_compat_req[i++] = "}";
2843 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002844
Willy Tarreauff011f22011-01-06 17:51:27 +01002845 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2846 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002847 cfgerr++;
2848 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002849 }
2850
Willy Tarreauff011f22011-01-06 17:51:27 +01002851 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002852
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002853 if (curproxy->uri_auth->auth_realm) {
2854 free(curproxy->uri_auth->auth_realm);
2855 curproxy->uri_auth->auth_realm = NULL;
2856 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002857 }
2858out_uri_auth_compat:
2859
Dragan Dosen43885c72015-10-01 13:18:13 +02002860 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002861 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002862 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2863 if (!curproxy->conf.logformat_sd_string) {
2864 /* set the default logformat_sd_string */
2865 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2866 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002867 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002868 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002869 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002870
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002871 /* compile the log format */
2872 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002873 if (curproxy->conf.logformat_string != default_http_log_format &&
2874 curproxy->conf.logformat_string != default_tcp_log_format &&
2875 curproxy->conf.logformat_string != clf_http_log_format)
2876 free(curproxy->conf.logformat_string);
2877 curproxy->conf.logformat_string = NULL;
2878 free(curproxy->conf.lfs_file);
2879 curproxy->conf.lfs_file = NULL;
2880 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002881
2882 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2883 free(curproxy->conf.logformat_sd_string);
2884 curproxy->conf.logformat_sd_string = NULL;
2885 free(curproxy->conf.lfsd_file);
2886 curproxy->conf.lfsd_file = NULL;
2887 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002888 }
2889
Willy Tarreau62a61232013-04-12 18:13:46 +02002890 if (curproxy->conf.logformat_string) {
2891 curproxy->conf.args.ctx = ARGC_LOG;
2892 curproxy->conf.args.file = curproxy->conf.lfs_file;
2893 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002894 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002895 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002896 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002897 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
2898 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002899 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002900 cfgerr++;
2901 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002902 curproxy->conf.args.file = NULL;
2903 curproxy->conf.args.line = 0;
2904 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002905
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002906 if (curproxy->conf.logformat_sd_string) {
2907 curproxy->conf.args.ctx = ARGC_LOGSD;
2908 curproxy->conf.args.file = curproxy->conf.lfsd_file;
2909 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002910 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002911 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 +01002912 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002913 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2914 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002915 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002916 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002917 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002918 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2919 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002920 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002921 cfgerr++;
2922 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002923 curproxy->conf.args.file = NULL;
2924 curproxy->conf.args.line = 0;
2925 }
2926
Willy Tarreau62a61232013-04-12 18:13:46 +02002927 if (curproxy->conf.uniqueid_format_string) {
2928 curproxy->conf.args.ctx = ARGC_UIF;
2929 curproxy->conf.args.file = curproxy->conf.uif_file;
2930 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002931 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002932 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 +01002933 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002934 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
2935 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002936 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002937 cfgerr++;
2938 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002939 curproxy->conf.args.file = NULL;
2940 curproxy->conf.args.line = 0;
2941 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002942
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002943 /* only now we can check if some args remain unresolved.
2944 * This must be done after the users and groups resolution.
2945 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002946 cfgerr += smp_resolve_args(curproxy);
2947 if (!cfgerr)
2948 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002949
Willy Tarreau2738a142006-07-08 17:28:09 +02002950 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002951 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02002952 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02002953 (!curproxy->timeout.connect ||
2954 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002955 ha_warning("config : missing timeouts for %s '%s'.\n"
2956 " | While not properly invalid, you will certainly encounter various problems\n"
2957 " | with such a configuration. To fix this, please ensure that all following\n"
2958 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
2959 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002960 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02002961 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02002962
Willy Tarreau1fa31262007-12-03 00:36:16 +01002963 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
2964 * We must still support older configurations, so let's find out whether those
2965 * parameters have been set or must be copied from contimeouts.
2966 */
2967 if (curproxy != &defproxy) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002968 if (!curproxy->timeout.tarpit ||
2969 curproxy->timeout.tarpit == defproxy.timeout.tarpit) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01002970 /* tarpit timeout not set. We search in the following order:
2971 * default.tarpit, curr.connect, default.connect.
2972 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002973 if (defproxy.timeout.tarpit)
Willy Tarreau1fa31262007-12-03 00:36:16 +01002974 curproxy->timeout.tarpit = defproxy.timeout.tarpit;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002975 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002976 curproxy->timeout.tarpit = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002977 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002978 curproxy->timeout.tarpit = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002979 }
2980 if ((curproxy->cap & PR_CAP_BE) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002981 (!curproxy->timeout.queue ||
2982 curproxy->timeout.queue == defproxy.timeout.queue)) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01002983 /* queue timeout not set. We search in the following order:
2984 * default.queue, curr.connect, default.connect.
2985 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002986 if (defproxy.timeout.queue)
Willy Tarreau1fa31262007-12-03 00:36:16 +01002987 curproxy->timeout.queue = defproxy.timeout.queue;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002988 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002989 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002990 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002991 curproxy->timeout.queue = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002992 }
2993 }
2994
Christopher Faulete5870d82020-04-15 11:32:03 +02002995 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002996 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
2997 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02002998 err_code |= ERR_WARN;
2999 }
3000
Willy Tarreau193b8c62012-11-22 00:17:38 +01003001 /* ensure that cookie capture length is not too large */
3002 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003003 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3004 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003005 err_code |= ERR_WARN;
3006 curproxy->capture_len = global.tune.cookie_len - 1;
3007 }
3008
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003009 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003010 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003011 curproxy->req_cap_pool = create_pool("ptrcap",
3012 curproxy->nb_req_cap * sizeof(char *),
3013 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003014 }
3015
3016 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003017 curproxy->rsp_cap_pool = create_pool("ptrcap",
3018 curproxy->nb_rsp_cap * sizeof(char *),
3019 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003020 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003021
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003022 switch (curproxy->load_server_state_from_file) {
3023 case PR_SRV_STATE_FILE_UNSPEC:
3024 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3025 break;
3026 case PR_SRV_STATE_FILE_GLOBAL:
3027 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003028 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",
3029 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003030 err_code |= ERR_WARN;
3031 }
3032 break;
3033 }
3034
Willy Tarreaubaaee002006-06-26 02:48:02 +02003035 /* first, we will invert the servers list order */
3036 newsrv = NULL;
3037 while (curproxy->srv) {
3038 struct server *next;
3039
3040 next = curproxy->srv->next;
3041 curproxy->srv->next = newsrv;
3042 newsrv = curproxy->srv;
3043 if (!next)
3044 break;
3045 curproxy->srv = next;
3046 }
3047
Willy Tarreau17edc812014-01-03 12:14:34 +01003048 /* Check that no server name conflicts. This causes trouble in the stats.
3049 * We only emit a warning for the first conflict affecting each server,
3050 * in order to avoid combinatory explosion if all servers have the same
3051 * name. We do that only for servers which do not have an explicit ID,
3052 * because these IDs were made also for distinguishing them and we don't
3053 * want to annoy people who correctly manage them.
3054 */
3055 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3056 struct server *other_srv;
3057
3058 if (newsrv->puid)
3059 continue;
3060
3061 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3062 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003063 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 +01003064 newsrv->conf.file, newsrv->conf.line,
3065 proxy_type_str(curproxy), curproxy->id,
3066 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003067 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003068 break;
3069 }
3070 }
3071 }
3072
Willy Tarreaudd701652010-05-25 23:03:02 +02003073 /* assign automatic UIDs to servers which don't have one yet */
3074 next_id = 1;
3075 newsrv = curproxy->srv;
3076 while (newsrv != NULL) {
3077 if (!newsrv->puid) {
3078 /* server ID not set, use automatic numbering with first
3079 * spare entry starting with next_svid.
3080 */
3081 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3082 newsrv->conf.id.key = newsrv->puid = next_id;
3083 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003084 newsrv->conf.name.key = newsrv->id;
3085 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003086 }
3087 next_id++;
3088 newsrv = newsrv->next;
3089 }
3090
Willy Tarreau20697042007-11-15 23:26:18 +01003091 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003092 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003093
Willy Tarreau62c3be22012-01-20 13:12:32 +01003094 /*
3095 * If this server supports a maxconn parameter, it needs a dedicated
3096 * tasks to fill the emptied slots when a connection leaves.
3097 * Also, resolve deferred tracking dependency if needed.
3098 */
3099 newsrv = curproxy->srv;
3100 while (newsrv != NULL) {
3101 if (newsrv->minconn > newsrv->maxconn) {
3102 /* Only 'minconn' was specified, or it was higher than or equal
3103 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3104 * this will avoid further useless expensive computations.
3105 */
3106 newsrv->maxconn = newsrv->minconn;
3107 } else if (newsrv->maxconn && !newsrv->minconn) {
3108 /* minconn was not specified, so we set it to maxconn */
3109 newsrv->minconn = newsrv->maxconn;
3110 }
3111
Willy Tarreau17d45382016-12-22 21:16:08 +01003112 /* this will also properly set the transport layer for prod and checks */
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003113 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 || (newsrv->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003114 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3115 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3116 }
Emeric Brun94324a42012-10-11 14:00:19 +02003117
Willy Tarreau034c88c2017-01-23 23:36:45 +01003118 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3119 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3120 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3121 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",
3122 newsrv->conf.file, newsrv->conf.line,
3123 proxy_type_str(curproxy), curproxy->id,
3124 newsrv->id);
3125
Willy Tarreau62c3be22012-01-20 13:12:32 +01003126 if (newsrv->trackit) {
3127 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003128 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003129 char *pname, *sname;
3130
3131 pname = newsrv->trackit;
3132 sname = strrchr(pname, '/');
3133
3134 if (sname)
3135 *sname++ = '\0';
3136 else {
3137 sname = pname;
3138 pname = NULL;
3139 }
3140
3141 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003142 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003143 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003144 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3145 proxy_type_str(curproxy), curproxy->id,
3146 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003147 cfgerr++;
3148 goto next_srv;
3149 }
3150 } else
3151 px = curproxy;
3152
3153 srv = findserver(px, sname);
3154 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003155 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3156 proxy_type_str(curproxy), curproxy->id,
3157 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003158 cfgerr++;
3159 goto next_srv;
3160 }
3161
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003162 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003163 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3164 "tracking as it does not have any check nor agent enabled.\n",
3165 proxy_type_str(curproxy), curproxy->id,
3166 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003167 cfgerr++;
3168 goto next_srv;
3169 }
3170
3171 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3172
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003173 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003174 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3175 "belongs to a tracking chain looping back to %s/%s.\n",
3176 proxy_type_str(curproxy), curproxy->id,
3177 newsrv->id, px->id, srv->id, px->id,
3178 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003179 cfgerr++;
3180 goto next_srv;
3181 }
3182
3183 if (curproxy != px &&
3184 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003185 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3186 "tracking: disable-on-404 option inconsistency.\n",
3187 proxy_type_str(curproxy), curproxy->id,
3188 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003189 cfgerr++;
3190 goto next_srv;
3191 }
3192
Willy Tarreau62c3be22012-01-20 13:12:32 +01003193 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003194 newsrv->tracknext = srv->trackers;
3195 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003196
3197 free(newsrv->trackit);
3198 newsrv->trackit = NULL;
3199 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003200
Willy Tarreau62c3be22012-01-20 13:12:32 +01003201 next_srv:
3202 newsrv = newsrv->next;
3203 }
3204
Olivier Houchard4e694042017-03-14 20:01:29 +01003205 /*
3206 * Try to generate dynamic cookies for servers now.
3207 * It couldn't be done earlier, since at the time we parsed
3208 * the server line, we may not have known yet that we
3209 * should use dynamic cookies, or the secret key may not
3210 * have been provided yet.
3211 */
3212 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3213 newsrv = curproxy->srv;
3214 while (newsrv != NULL) {
3215 srv_set_dyncookie(newsrv);
3216 newsrv = newsrv->next;
3217 }
3218
3219 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003220 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003221 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003222 */
3223
3224 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3225 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3226 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003227 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3228 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3229 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003230 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3231 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3232 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003233 } else {
3234 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3235 fwrr_init_server_groups(curproxy);
3236 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003237 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003238
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003239 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003240 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3241 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3242 fwlc_init_server_tree(curproxy);
3243 } else {
3244 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3245 fas_init_server_tree(curproxy);
3246 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003247 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003248
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003249 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003250 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3251 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3252 chash_init_server_tree(curproxy);
3253 } else {
3254 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3255 init_server_map(curproxy);
3256 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003257 break;
3258 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003259 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003260
3261 if (curproxy->options & PR_O_LOGASAP)
3262 curproxy->to_log &= ~LW_BYTES;
3263
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003264 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003265 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3266 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003267 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3268 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003269 err_code |= ERR_WARN;
3270 }
3271
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003272 if (curproxy->mode != PR_MODE_HTTP) {
3273 int optnum;
3274
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003275 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003276 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3277 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003278 err_code |= ERR_WARN;
3279 curproxy->uri_auth = NULL;
3280 }
3281
Willy Tarreaude7dc882017-03-10 11:49:21 +01003282 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003283 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3284 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003285 err_code |= ERR_WARN;
3286 }
3287
3288 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003289 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3290 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003291 err_code |= ERR_WARN;
3292 }
3293
3294 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003295 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3296 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003297 err_code |= ERR_WARN;
3298 }
3299
Willy Tarreaude7dc882017-03-10 11:49:21 +01003300 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003301 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3302 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003303 err_code |= ERR_WARN;
3304 }
3305
Willy Tarreau87cf5142011-08-19 22:57:24 +02003306 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003307 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3308 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003309 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003310 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003311 }
3312
3313 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003314 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3315 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003316 err_code |= ERR_WARN;
3317 curproxy->options &= ~PR_O_ORGTO;
3318 }
3319
3320 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3321 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3322 (curproxy->cap & cfg_opts[optnum].cap) &&
3323 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003324 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3325 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003326 err_code |= ERR_WARN;
3327 curproxy->options &= ~cfg_opts[optnum].val;
3328 }
3329 }
3330
3331 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3332 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3333 (curproxy->cap & cfg_opts2[optnum].cap) &&
3334 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003335 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3336 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003337 err_code |= ERR_WARN;
3338 curproxy->options2 &= ~cfg_opts2[optnum].val;
3339 }
3340 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003341
Willy Tarreau29fbe512015-08-20 19:35:14 +02003342#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003343 if (curproxy->conn_src.bind_hdr_occ) {
3344 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003345 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3346 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003347 err_code |= ERR_WARN;
3348 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003349#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003350 }
3351
Willy Tarreaubaaee002006-06-26 02:48:02 +02003352 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003353 * ensure that we're not cross-dressing a TCP server into HTTP.
3354 */
3355 newsrv = curproxy->srv;
3356 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003357 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003358 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3359 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003360 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003361 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003362
Willy Tarreau0cec3312011-10-31 13:49:26 +01003363 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003364 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3365 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003366 err_code |= ERR_WARN;
3367 }
3368
Willy Tarreauc93cd162014-05-13 15:54:22 +02003369 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003370 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3371 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003372 err_code |= ERR_WARN;
3373 }
3374
Willy Tarreau29fbe512015-08-20 19:35:14 +02003375#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003376 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3377 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003378 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3379 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003380 err_code |= ERR_WARN;
3381 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003382#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003383
Willy Tarreau46deab62018-04-28 07:18:15 +02003384 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3385 curproxy->options &= ~PR_O_REUSE_MASK;
3386
Willy Tarreau21d2af32008-02-14 20:25:24 +01003387 newsrv = newsrv->next;
3388 }
3389
Christopher Fauletd7c91962015-04-30 11:48:27 +02003390 /* Check filter configuration, if any */
3391 cfgerr += flt_check(curproxy);
3392
Willy Tarreauc1a21672009-08-16 22:37:44 +02003393 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003394 if (!curproxy->accept)
3395 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003396
Willy Tarreauc1a21672009-08-16 22:37:44 +02003397 if (curproxy->tcp_req.inspect_delay ||
3398 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003399 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003400
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003401 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003402 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003403 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003404 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003405
William Lallemandcf62f7e2018-10-26 14:47:40 +02003406 if (curproxy->mode == PR_MODE_CLI) {
3407 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3408 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3409 }
3410
Willy Tarreauc1a21672009-08-16 22:37:44 +02003411 /* both TCP and HTTP must check switching rules */
3412 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003413
3414 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003415 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003416 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3417 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 +01003418 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003419 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3420 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003421 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003422 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003423 }
3424
3425 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003426 if (curproxy->tcp_req.inspect_delay ||
3427 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3428 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3429
Emeric Brun97679e72010-09-23 17:56:44 +02003430 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3431 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3432
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003433 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003434 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003435 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003436 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003437
3438 /* If the backend does requires RDP cookie persistence, we have to
3439 * enable the corresponding analyser.
3440 */
3441 if (curproxy->options2 & PR_O2_RDPC_PRST)
3442 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003443
3444 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003445 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003446 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3447 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 +01003448 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003449 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3450 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003451 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003452 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003453 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003454
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003455 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003456 * attached to the current proxy */
3457 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3458 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003459 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003460
3461 if (!bind_conf->mux_proto)
3462 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003463
3464 /* it is possible that an incorrect mux was referenced
3465 * due to the proxy's mode not being taken into account
3466 * on first pass. Let's adjust it now.
3467 */
3468 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3469
3470 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003471 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3472 proxy_type_str(curproxy), curproxy->id,
3473 (int)bind_conf->mux_proto->token.len,
3474 bind_conf->mux_proto->token.ptr,
3475 bind_conf->arg, bind_conf->file, bind_conf->line);
3476 cfgerr++;
3477 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003478
3479 /* update the mux */
3480 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003481 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003482 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
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 Faulet8ed0a3e2018-04-10 14:45:45 +02003485
3486 if (!newsrv->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(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3494
3495 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003496 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3497 proxy_type_str(curproxy), curproxy->id,
3498 (int)newsrv->mux_proto->token.len,
3499 newsrv->mux_proto->token.ptr,
3500 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3501 cfgerr++;
3502 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003503
3504 /* update the mux */
3505 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003506 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003507
3508 /* initialize idle conns lists */
3509 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3510 int i;
3511
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003512 newsrv->available_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->available_conns));
Willy Tarreau835daa12019-02-07 14:46:29 +01003513
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003514 if (!newsrv->available_conns) {
Willy Tarreau835daa12019-02-07 14:46:29 +01003515 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003516 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau835daa12019-02-07 14:46:29 +01003517 cfgerr++;
3518 continue;
3519 }
3520
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003521 for (i = 0; i < global.nbthread; i++)
3522 LIST_INIT(&newsrv->available_conns[i]);
Willy Tarreau980855b2019-02-07 14:59:29 +01003523
3524 if (newsrv->max_idle_conns != 0) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003525 if (idle_conn_task == NULL) {
3526 idle_conn_task = task_new(MAX_THREADS_MASK);
3527 if (!idle_conn_task)
3528 goto err;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003529
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003530 idle_conn_task->process = srv_cleanup_idle_connections;
3531 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003532
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003533 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubbb5f1d2019-10-18 08:50:49 +02003534 idle_conn_cleanup[i] = task_new(1UL << i);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003535 if (!idle_conn_cleanup[i])
3536 goto err;
3537 idle_conn_cleanup[i]->process = srv_cleanup_toremove_connections;
3538 idle_conn_cleanup[i]->context = NULL;
Olivier Houchard859dc802019-08-08 15:47:21 +02003539 MT_LIST_INIT(&toremove_connections[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003540 }
3541 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003542
3543 newsrv->idle_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->idle_conns));
3544 if (!newsrv->idle_conns) {
3545 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3546 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3547 cfgerr++;
3548 continue;
3549 }
3550
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003551 for (i = 0; i < global.nbthread; i++)
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003552 MT_LIST_INIT(&newsrv->idle_conns[i]);
3553
3554 newsrv->safe_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->safe_conns));
3555 if (!newsrv->safe_conns) {
3556 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3557 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3558 cfgerr++;
3559 continue;
3560 }
3561
3562 for (i = 0; i < global.nbthread; i++)
3563 MT_LIST_INIT(&newsrv->safe_conns[i]);
3564
3565 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(int));
Olivier Houchardf1314812019-02-18 16:41:17 +01003566 if (!newsrv->curr_idle_thr)
3567 goto err;
Willy Tarreau980855b2019-02-07 14:59:29 +01003568 continue;
3569 err:
3570 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3571 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3572 cfgerr++;
3573 continue;
3574 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003575 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003576 }
3577
3578 /***********************************************************/
3579 /* At this point, target names have already been resolved. */
3580 /***********************************************************/
3581
3582 /* Check multi-process mode compatibility */
3583
3584 if (global.nbproc > 1 && global.stats_fe) {
3585 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3586 unsigned long mask;
3587
Willy Tarreau6daac192019-02-02 17:39:53 +01003588 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
3589 mask &= proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003590
3591 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003592 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003593 break;
3594 }
3595 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003596 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 +02003597 }
3598 }
3599
3600 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003601 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003602 if (curproxy->bind_proc)
3603 continue;
3604
3605 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3606 unsigned long mask;
3607
Willy Tarreau6daac192019-02-02 17:39:53 +01003608 mask = proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003609 curproxy->bind_proc |= mask;
3610 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003611 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003612 }
3613
3614 if (global.stats_fe) {
3615 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3616 unsigned long mask;
3617
Cyril Bonté06181952016-02-24 00:14:54 +01003618 mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003619 global.stats_fe->bind_proc |= mask;
3620 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003621 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003622 }
3623
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003624 /* propagate bindings from frontends to backends. Don't do it if there
3625 * are any fatal errors as we must not call it with unresolved proxies.
3626 */
3627 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003628 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003629 if (curproxy->cap & PR_CAP_FE)
3630 propagate_processes(curproxy, NULL);
3631 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003632 }
3633
3634 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003635 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3636 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003637
3638 /*******************************************************/
3639 /* At this step, all proxies have a non-null bind_proc */
3640 /*******************************************************/
3641
3642 /* perform the final checks before creating tasks */
3643
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003644 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003645 struct listener *listener;
3646 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003647
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003648 /* Configure SSL for each bind line.
3649 * Note: if configuration fails at some point, the ->ctx member
3650 * remains NULL so that listeners can later detach.
3651 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003652 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003653 if (bind_conf->xprt->prepare_bind_conf &&
3654 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003655 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003656 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003657
Willy Tarreaue6b98942007-10-29 01:09:36 +01003658 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003659 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003660 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003661 int nbproc;
3662
3663 nbproc = my_popcountl(curproxy->bind_proc &
Cyril Bonté4920d702016-04-15 07:58:43 +02003664 (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003665 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003666
3667 if (!nbproc) /* no intersection between listener and frontend */
3668 nbproc = 1;
3669
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003670 if (!listener->luid) {
3671 /* listener ID not set, use automatic numbering with first
3672 * spare entry starting with next_luid.
3673 */
3674 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3675 listener->conf.id.key = listener->luid = next_id;
3676 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003677 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003678 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003679
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003680 /* enable separate counters */
3681 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003682 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003683 if (!listener->name)
3684 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003685 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003686
Willy Tarreaue6b98942007-10-29 01:09:36 +01003687 if (curproxy->options & PR_O_TCP_NOLING)
3688 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003689 if (!listener->maxaccept)
3690 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3691
3692 /* we want to have an optimal behaviour on single process mode to
3693 * maximize the work at once, but in multi-process we want to keep
3694 * some fairness between processes, so we target half of the max
3695 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003696 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003697 * used to disable the limit.
3698 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003699 if (listener->maxaccept > 0 && nbproc > 1) {
3700 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003701 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3702 }
3703
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003704 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003705 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003706 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003707
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003708 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003709 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003710
Willy Tarreau620408f2016-10-21 16:37:51 +02003711 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3712 listener->options |= LI_O_TCP_L5_RULES;
3713
Willy Tarreaude3041d2010-05-31 10:56:17 +02003714 if (curproxy->mon_mask.s_addr)
3715 listener->options |= LI_O_CHK_MONNET;
3716
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003717 /* smart accept mode is automatic in HTTP mode */
3718 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003719 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003720 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3721 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003722 }
3723
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003724 /* Release unused SSL configs */
3725 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003726 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3727 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003728 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003729
Willy Tarreaua38a7172019-02-02 17:11:28 +01003730 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003731 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003732 int count, maxproc = 0;
3733
3734 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
David Carliere6c39412015-07-02 07:00:17 +00003735 count = my_popcountl(bind_conf->bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003736 if (count > maxproc)
3737 maxproc = count;
3738 }
3739 /* backends have 0, frontends have 1 or more */
3740 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003741 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3742 " limited to process assigned to the current request.\n",
3743 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003744
Willy Tarreau102df612014-05-07 23:56:38 +02003745 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003746 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3747 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003748 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003749 }
Willy Tarreau102df612014-05-07 23:56:38 +02003750 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003751 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3752 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003753 }
3754 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003755
3756 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003757 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003758 if (curproxy->task) {
3759 curproxy->task->context = curproxy;
3760 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003761 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003762 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3763 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003764 cfgerr++;
3765 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003766 }
3767
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003768 /*
3769 * Recount currently required checks.
3770 */
3771
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003772 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003773 int optnum;
3774
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003775 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3776 if (curproxy->options & cfg_opts[optnum].val)
3777 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003778
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003779 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3780 if (curproxy->options2 & cfg_opts2[optnum].val)
3781 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003782 }
3783
Willy Tarreau0fca4832015-05-01 19:12:05 +02003784 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003785 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003786 if (curproxy->table && curproxy->table->peers.p)
3787 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003788
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003789 /* compute the required process bindings for the peers from <stktables_list>
3790 * for all the stick-tables, the ones coming with "peers" sections included.
3791 */
3792 for (t = stktables_list; t; t = t->next) {
3793 struct proxy *p;
3794
3795 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3796 if (t->peers.p && t->peers.p->peers_fe) {
3797 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3798 }
3799 }
3800 }
3801
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003802 if (cfg_peers) {
3803 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003804 struct peer *p, *pb;
3805
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003806 /* In the case the peers frontend was not initialized by a
3807 stick-table used in the configuration, set its bind_proc
3808 by default to the first process. */
3809 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003810 if (curpeers->peers_fe) {
3811 if (curpeers->peers_fe->bind_proc == 0)
3812 curpeers->peers_fe->bind_proc = 1;
3813 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003814 curpeers = curpeers->next;
3815 }
3816
3817 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003818 /* Remove all peers sections which don't have a valid listener,
3819 * which are not used by any table, or which are bound to more
3820 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003821 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003822 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003823 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003824 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003825 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003826
3827 if (curpeers->state == PR_STSTOPPED) {
3828 /* the "disabled" keyword was present */
3829 if (curpeers->peers_fe)
3830 stop_proxy(curpeers->peers_fe);
3831 curpeers->peers_fe = NULL;
3832 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003833 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003834 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3835 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003836 if (curpeers->peers_fe)
3837 stop_proxy(curpeers->peers_fe);
3838 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003839 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003840 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003841 /* either it's totally stopped or too much used */
3842 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003843 ha_alert("Peers section '%s': peers referenced by sections "
3844 "running in different processes (%d different ones). "
3845 "Check global.nbproc and all tables' bind-process "
3846 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003847 cfgerr++;
3848 }
3849 stop_proxy(curpeers->peers_fe);
3850 curpeers->peers_fe = NULL;
3851 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003852 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003853 /* Initializes the transport layer of the server part of all the peers belonging to
3854 * <curpeers> section if required.
3855 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3856 * of an old process.
3857 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003858 p = curpeers->remote;
3859 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003860 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003861 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 +01003862 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3863 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003864 p = p->next;
3865 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003866 /* Configure the SSL bindings of the local peer if required. */
3867 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3868 struct list *l;
3869 struct bind_conf *bind_conf;
3870
3871 l = &curpeers->peers_fe->conf.bind;
3872 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3873 if (bind_conf->xprt->prepare_bind_conf &&
3874 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3875 cfgerr++;
3876 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003877 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02003878 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3879 curpeers->id);
3880 cfgerr++;
3881 break;
3882 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003883 last = &curpeers->next;
3884 continue;
3885 }
3886
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003887 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003888 p = curpeers->remote;
3889 while (p) {
3890 pb = p->next;
3891 free(p->id);
3892 free(p);
3893 p = pb;
3894 }
3895
3896 /* Destroy and unlink this curpeers section.
3897 * Note: curpeers is backed up into *last.
3898 */
3899 free(curpeers->id);
3900 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003901 /* Reset any refereance to this peers section in the list of stick-tables */
3902 for (t = stktables_list; t; t = t->next) {
3903 if (t->peers.p && t->peers.p == *last)
3904 t->peers.p = NULL;
3905 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003906 free(*last);
3907 *last = curpeers;
3908 }
3909 }
3910
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003911 for (t = stktables_list; t; t = t->next) {
3912 if (t->proxy)
3913 continue;
3914 if (!stktable_init(t)) {
3915 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
3916 cfgerr++;
3917 }
3918 }
3919
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003920 /* initialize stick-tables on backend capable proxies. This must not
3921 * be done earlier because the data size may be discovered while parsing
3922 * other proxies.
3923 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003924 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003925 if (curproxy->state == PR_STSTOPPED || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003926 continue;
3927
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003928 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003929 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003930 cfgerr++;
3931 }
3932 }
3933
Simon Horman0d16a402015-01-30 11:22:58 +09003934 if (mailers) {
3935 struct mailers *curmailers = mailers, **last;
3936 struct mailer *m, *mb;
3937
3938 /* Remove all mailers sections which don't have a valid listener.
3939 * This can happen when a mailers section is never referenced.
3940 */
3941 last = &mailers;
3942 while (*last) {
3943 curmailers = *last;
3944 if (curmailers->users) {
3945 last = &curmailers->next;
3946 continue;
3947 }
3948
Christopher Faulet767a84b2017-11-24 16:50:31 +01003949 ha_warning("Removing incomplete section 'mailers %s'.\n",
3950 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09003951
3952 m = curmailers->mailer_list;
3953 while (m) {
3954 mb = m->next;
3955 free(m->id);
3956 free(m);
3957 m = mb;
3958 }
3959
3960 /* Destroy and unlink this curmailers section.
3961 * Note: curmailers is backed up into *last.
3962 */
3963 free(curmailers->id);
3964 curmailers = curmailers->next;
3965 free(*last);
3966 *last = curmailers;
3967 }
3968 }
3969
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003970 /* Update server_state_file_name to backend name if backend is supposed to use
3971 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003972 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003973 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
3974 curproxy->server_state_file_name == NULL)
3975 curproxy->server_state_file_name = strdup(curproxy->id);
3976 }
3977
Ben Draut054fbee2018-04-13 15:43:04 -06003978 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
3979 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
3980 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
3981 curr_resolvers->id, curr_resolvers->conf.file,
3982 curr_resolvers->conf.line);
3983 err_code |= ERR_WARN;
3984 }
3985 }
3986
William Lallemand48b4bb42017-10-23 14:36:34 +02003987 list_for_each_entry(postparser, &postparsers, list) {
3988 if (postparser->func)
3989 cfgerr += postparser->func();
3990 }
3991
Willy Tarreaubb925012009-07-23 13:36:36 +02003992 if (cfgerr > 0)
3993 err_code |= ERR_ALERT | ERR_FATAL;
3994 out:
3995 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003996}
3997
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003998/*
3999 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4000 * parsing sessions.
4001 */
4002void cfg_register_keywords(struct cfg_kw_list *kwl)
4003{
4004 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
4005}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004006
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004007/*
4008 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4009 */
4010void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4011{
4012 LIST_DEL(&kwl->list);
4013 LIST_INIT(&kwl->list);
4014}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004015
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004016/* this function register new section in the haproxy configuration file.
4017 * <section_name> is the name of this new section and <section_parser>
4018 * is the called parser. If two section declaration have the same name,
4019 * only the first declared is used.
4020 */
4021int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004022 int (*section_parser)(const char *, int, char **, int),
4023 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004024{
4025 struct cfg_section *cs;
4026
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004027 list_for_each_entry(cs, &sections, list) {
4028 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004029 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004030 return 0;
4031 }
4032 }
4033
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004034 cs = calloc(1, sizeof(*cs));
4035 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004036 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004037 return 0;
4038 }
4039
4040 cs->section_name = section_name;
4041 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004042 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004043
4044 LIST_ADDQ(&sections, &cs->list);
4045
4046 return 1;
4047}
4048
William Lallemand48b4bb42017-10-23 14:36:34 +02004049/* this function register a new function which will be called once the haproxy
4050 * configuration file has been parsed. It's useful to check dependencies
4051 * between sections or to resolve items once everything is parsed.
4052 */
4053int cfg_register_postparser(char *name, int (*func)())
4054{
4055 struct cfg_postparser *cp;
4056
4057 cp = calloc(1, sizeof(*cp));
4058 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004059 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004060 return 0;
4061 }
4062 cp->name = name;
4063 cp->func = func;
4064
4065 LIST_ADDQ(&postparsers, &cp->list);
4066
4067 return 1;
4068}
4069
Willy Tarreaubaaee002006-06-26 02:48:02 +02004070/*
David Carlier845efb52015-09-25 11:49:18 +01004071 * free all config section entries
4072 */
4073void cfg_unregister_sections(void)
4074{
4075 struct cfg_section *cs, *ics;
4076
4077 list_for_each_entry_safe(cs, ics, &sections, list) {
4078 LIST_DEL(&cs->list);
4079 free(cs);
4080 }
4081}
4082
Christopher Faulet7110b402016-10-26 11:09:44 +02004083void cfg_backup_sections(struct list *backup_sections)
4084{
4085 struct cfg_section *cs, *ics;
4086
4087 list_for_each_entry_safe(cs, ics, &sections, list) {
4088 LIST_DEL(&cs->list);
4089 LIST_ADDQ(backup_sections, &cs->list);
4090 }
4091}
4092
4093void cfg_restore_sections(struct list *backup_sections)
4094{
4095 struct cfg_section *cs, *ics;
4096
4097 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4098 LIST_DEL(&cs->list);
4099 LIST_ADDQ(&sections, &cs->list);
4100 }
4101}
4102
Willy Tarreaue6552512018-11-26 11:33:13 +01004103/* these are the config sections handled by default */
4104REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4105REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4106REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4107REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4108REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4109REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4110REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4111REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4112REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4113REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004114
David Carlier845efb52015-09-25 11:49:18 +01004115/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004116 * Local variables:
4117 * c-indent-level: 8
4118 * c-basic-offset: 8
4119 * End:
4120 */