blob: b47bf2d57c8fa817323aa28e32d5c9aa03e14f10 [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 Tarreau2dd0d472006-06-29 17:53:05 +020036#include <common/cfgparse.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020037#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020038#include <common/config.h>
Willy Tarreau058e9072009-07-20 09:30:05 +020039#include <common/errors.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020040#include <common/memory.h>
41#include <common/standard.h>
42#include <common/time.h>
43#include <common/uri_auth.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010044#include <common/namespace.h>
Emeric Brunc60def82017-09-27 14:59:38 +020045#include <common/hathreads.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020046
47#include <types/capture.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020048#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020049#include <types/global.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010050#include <types/obj_type.h>
Emeric Brun32da3c42010-09-23 18:39:19 +020051#include <types/peers.h>
Simon Horman0d16a402015-01-30 11:22:58 +090052#include <types/mailers.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +020053#include <types/dns.h>
William Lallemand9ed62032016-11-21 17:49:11 +010054#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020055
Willy Tarreaueb0c6142007-05-07 00:53:22 +020056#include <proto/acl.h>
Christopher Faulet4fce0d82017-09-18 11:57:31 +020057#include <proto/action.h>
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +010058#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020059#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020060#include <proto/channel.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020061#include <proto/checks.h>
Baptiste Assmann201c07f2017-05-22 15:17:15 +020062#include <proto/dns.h>
William Lallemand9ed62032016-11-21 17:49:11 +010063#include <proto/stats.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020064#include <proto/filters.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020065#include <proto/frontend.h>
Willy Tarreau34eb6712011-10-24 18:15:04 +020066#include <proto/hdr_idx.h>
Willy Tarreau61c112a2018-10-02 16:43:32 +020067#include <proto/http_rules.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020068#include <proto/lb_chash.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010069#include <proto/lb_fas.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020070#include <proto/lb_fwlc.h>
71#include <proto/lb_fwrr.h>
72#include <proto/lb_map.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020073#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020074#include <proto/log.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020075#include <proto/protocol.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010076#include <proto/proto_http.h>
Willy Tarreau2b5652f2006-12-31 17:46:05 +010077#include <proto/proxy.h>
Emeric Brun32da3c42010-09-23 18:39:19 +020078#include <proto/peers.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020079#include <proto/sample.h>
Willy Tarreau9903f0e2015-04-04 18:50:31 +020080#include <proto/session.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020081#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020082#include <proto/stream.h>
Emeric Brunb982a3d2010-01-04 15:45:53 +010083#include <proto/stick_table.h>
Willy Tarreau39713102016-11-25 15:49:32 +010084#include <proto/task.h>
85#include <proto/tcp_rules.h>
Olivier Houchard673867c2018-05-25 16:58:52 +020086#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020087
88
Willy Tarreauf3c69202006-07-09 16:42:34 +020089/* This is the SSLv3 CLIENT HELLO packet used in conjunction with the
90 * ssl-hello-chk option to ensure that the remote server speaks SSL.
91 *
92 * Check RFC 2246 (TLSv1.0) sections A.3 and A.4 for details.
93 */
94const char sslv3_client_hello_pkt[] = {
95 "\x16" /* ContentType : 0x16 = Hanshake */
96 "\x03\x00" /* ProtocolVersion : 0x0300 = SSLv3 */
97 "\x00\x79" /* ContentLength : 0x79 bytes after this one */
98 "\x01" /* HanshakeType : 0x01 = CLIENT HELLO */
99 "\x00\x00\x75" /* HandshakeLength : 0x75 bytes after this one */
100 "\x03\x00" /* Hello Version : 0x0300 = v3 */
101 "\x00\x00\x00\x00" /* Unix GMT Time (s) : filled with <now> (@0x0B) */
102 "HAPROXYSSLCHK\nHAPROXYSSLCHK\n" /* Random : must be exactly 28 bytes */
103 "\x00" /* Session ID length : empty (no session ID) */
104 "\x00\x4E" /* Cipher Suite Length : 78 bytes after this one */
105 "\x00\x01" "\x00\x02" "\x00\x03" "\x00\x04" /* 39 most common ciphers : */
106 "\x00\x05" "\x00\x06" "\x00\x07" "\x00\x08" /* 0x01...0x1B, 0x2F...0x3A */
107 "\x00\x09" "\x00\x0A" "\x00\x0B" "\x00\x0C" /* This covers RSA/DH, */
108 "\x00\x0D" "\x00\x0E" "\x00\x0F" "\x00\x10" /* various bit lengths, */
109 "\x00\x11" "\x00\x12" "\x00\x13" "\x00\x14" /* SHA1/MD5, DES/3DES/AES... */
110 "\x00\x15" "\x00\x16" "\x00\x17" "\x00\x18"
111 "\x00\x19" "\x00\x1A" "\x00\x1B" "\x00\x2F"
112 "\x00\x30" "\x00\x31" "\x00\x32" "\x00\x33"
113 "\x00\x34" "\x00\x35" "\x00\x36" "\x00\x37"
114 "\x00\x38" "\x00\x39" "\x00\x3A"
115 "\x01" /* Compression Length : 0x01 = 1 byte for types */
116 "\x00" /* Compression Type : 0x00 = NULL compression */
117};
118
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +0100119/* Used to chain configuration sections definitions. This list
120 * stores struct cfg_section
121 */
122struct list sections = LIST_HEAD_INIT(sections);
123
William Lallemand48b4bb42017-10-23 14:36:34 +0200124struct list postparsers = LIST_HEAD_INIT(postparsers);
125
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100126char *cursection = NULL;
127struct proxy defproxy = { }; /* fake proxy used to assign default values on all instances */
Willy Tarreauc8d5b952019-02-27 17:25:52 +0100128int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +0100129int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +0100130char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200131
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200132/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100133struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200134 .list = LIST_HEAD_INIT(cfg_keywords.list)
135};
136
Willy Tarreaubaaee002006-06-26 02:48:02 +0200137/*
138 * converts <str> to a list of listeners which are dynamically allocated.
139 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
140 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
141 * - <port> is a numerical port from 1 to 65535 ;
142 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
143 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200144 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
145 * not NULL, it must be a valid pointer to either NULL or a freeable area that
146 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200147 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200148int 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 +0200149{
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100150 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200151 int port, end;
152
153 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200154
Willy Tarreaubaaee002006-06-26 02:48:02 +0200155 while (next && *next) {
William Lallemand75ea0a02017-11-15 19:02:58 +0100156 int inherited = 0;
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200157 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100158 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200159
160 str = next;
161 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100162 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200163 *next++ = 0;
164 }
165
Willy Tarreau48ef4c92017-01-06 18:32:38 +0100166 ss2 = str2sa_range(str, NULL, &port, &end, err,
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200167 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +0200168 NULL, 1);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100169 if (!ss2)
170 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200171
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100172 if (ss2->ss_family == AF_INET || ss2->ss_family == AF_INET6) {
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100173 if (!port && !end) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200174 memprintf(err, "missing port number: '%s'\n", str);
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100175 goto fail;
Emeric Bruned760922010-10-22 17:59:25 +0200176 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200177
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100178 if (!port || !end) {
179 memprintf(err, "port offsets are not allowed in 'bind': '%s'\n", str);
180 goto fail;
181 }
182
Emeric Bruned760922010-10-22 17:59:25 +0200183 if (port < 1 || port > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200184 memprintf(err, "invalid port '%d' specified for address '%s'.\n", port, str);
Emeric Bruned760922010-10-22 17:59:25 +0200185 goto fail;
186 }
187
188 if (end < 1 || end > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200189 memprintf(err, "invalid port '%d' specified for address '%s'.\n", end, str);
Emeric Bruned760922010-10-22 17:59:25 +0200190 goto fail;
191 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200192 }
Willy Tarreau40aa0702013-03-10 23:51:38 +0100193 else if (ss2->ss_family == AF_UNSPEC) {
194 socklen_t addr_len;
William Lallemand75ea0a02017-11-15 19:02:58 +0100195 inherited = 1;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100196
197 /* We want to attach to an already bound fd whose number
198 * is in the addr part of ss2 when cast to sockaddr_in.
199 * Note that by definition there is a single listener.
200 * We still have to determine the address family to
201 * register the correct protocol.
202 */
203 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
204 addr_len = sizeof(*ss2);
205 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
206 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
207 goto fail;
208 }
209
210 port = end = get_host_port(ss2);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200211
212 } else if (ss2->ss_family == AF_CUST_SOCKPAIR) {
213 socklen_t addr_len;
214 inherited = 1;
215
216 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
217 addr_len = sizeof(*ss2);
218 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
219 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
220 goto fail;
221 }
222
223 ss2->ss_family = AF_CUST_SOCKPAIR; /* reassign AF_CUST_SOCKPAIR because of getsockname */
224 port = end = 0;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100225 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200226
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100227 /* OK the address looks correct */
William Lallemand75ea0a02017-11-15 19:02:58 +0100228 if (!create_listeners(bind_conf, ss2, port, end, fd, inherited, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200229 memprintf(err, "%s for address '%s'.\n", *err, str);
230 goto fail;
231 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200232 } /* end while(next) */
233 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200234 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200235 fail:
236 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200237 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200238}
239
William Lallemand6e62fb62015-04-28 16:55:23 +0200240/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100241 * Report an error in <msg> when there are too many arguments. This version is
242 * intended to be used by keyword parsers so that the message will be included
243 * into the general error message. The index is the current keyword in args.
244 * Return 0 if the number of argument is correct, otherwise build a message and
245 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
246 * message may also be null, it will simply not be produced (useful to check only).
247 * <msg> and <err_code> are only affected on error.
248 */
249int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
250{
251 int i;
252
253 if (!*args[index + maxarg + 1])
254 return 0;
255
256 if (msg) {
257 *msg = NULL;
258 memprintf(msg, "%s", args[0]);
259 for (i = 1; i <= index; i++)
260 memprintf(msg, "%s %s", *msg, args[i]);
261
262 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
263 }
264 if (err_code)
265 *err_code |= ERR_ALERT | ERR_FATAL;
266
267 return 1;
268}
269
270/*
271 * same as too_many_args_idx with a 0 index
272 */
273int too_many_args(int maxarg, char **args, char **msg, int *err_code)
274{
275 return too_many_args_idx(maxarg, 0, args, msg, err_code);
276}
277
278/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200279 * Report a fatal Alert when there is too much arguments
280 * The index is the current keyword in args
281 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
282 * Fill err_code with an ERR_ALERT and an ERR_FATAL
283 */
284int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
285{
286 char *kw = NULL;
287 int i;
288
289 if (!*args[index + maxarg + 1])
290 return 0;
291
292 memprintf(&kw, "%s", args[0]);
293 for (i = 1; i <= index; i++) {
294 memprintf(&kw, "%s %s", kw, args[i]);
295 }
296
Christopher Faulet767a84b2017-11-24 16:50:31 +0100297 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 +0200298 free(kw);
299 *err_code |= ERR_ALERT | ERR_FATAL;
300 return 1;
301}
302
303/*
304 * same as alertif_too_many_args_idx with a 0 index
305 */
306int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
307{
308 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
309}
310
Willy Tarreau61d18892009-03-31 10:49:21 +0200311
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100312/* Report it if a request ACL condition uses some keywords that are incompatible
313 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
314 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
315 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100316 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100317int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100318{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100319 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200320 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100321
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100322 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100323 return 0;
324
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100325 acl = acl_cond_conflicts(cond, where);
326 if (acl) {
327 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100328 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
329 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100330 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100331 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
332 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100333 return ERR_WARN;
334 }
335 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100336 return 0;
337
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100338 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100339 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
340 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100341 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100342 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
343 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100344 return ERR_WARN;
345}
346
Christopher Faulet62519022017-10-16 15:49:32 +0200347/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100348 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100349 * two such numbers delimited by a dash ('-'). On success, it returns
350 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200351 *
352 * Note: this function can also be used to parse a thread number or a set of
353 * threads.
354 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100355int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200356{
Christopher Faulet26028f62017-11-22 15:01:51 +0100357 if (autoinc) {
358 *autoinc = 0;
359 if (strncmp(arg, "auto:", 5) == 0) {
360 arg += 5;
361 *autoinc = 1;
362 }
363 }
364
Christopher Faulet62519022017-10-16 15:49:32 +0200365 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100366 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200367 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100368 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200369 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100370 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200371 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100372 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100373 unsigned int low, high;
374
Christopher Faulet18cca782019-02-07 16:29:41 +0100375 for (p = arg; *p; p++) {
376 if (*p == '-' && !dash)
377 dash = p;
378 else if (!isdigit((int)*p)) {
379 memprintf(err, "'%s' is not a valid number/range.", arg);
380 return -1;
381 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100382 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100383
384 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100385 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100386 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100387
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100388 if (high < low) {
389 unsigned int swap = low;
390 low = high;
391 high = swap;
392 }
393
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100394 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100395 memprintf(err, "'%s' is not a valid number/range."
396 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100397 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100398 return 1;
399 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100400
401 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100402 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200403 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100404 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100405
Christopher Faulet5ab51772017-11-22 11:21:58 +0100406 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200407}
408
David Carlier7e351ee2017-12-01 09:14:02 +0000409#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200410/* Parse cpu sets. Each CPU set is either a unique number between 0 and
411 * <LONGBITS> or a range with two such numbers delimited by a dash
412 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
413 * returns 0. otherwise it returns 1 with an error message in <err>.
414 */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100415unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200416{
417 int cur_arg = 0;
418
419 *cpu_set = 0;
420 while (*args[cur_arg]) {
421 char *dash;
422 unsigned int low, high;
423
424 if (!isdigit((int)*args[cur_arg])) {
425 memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
426 return -1;
427 }
428
429 low = high = str2uic(args[cur_arg]);
430 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100431 high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
Christopher Faulet62519022017-10-16 15:49:32 +0200432
433 if (high < low) {
434 unsigned int swap = low;
435 low = high;
436 high = swap;
437 }
438
439 if (high >= LONGBITS) {
440 memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
441 return 1;
442 }
443
444 while (low <= high)
445 *cpu_set |= 1UL << low++;
446
447 cur_arg++;
448 }
449 return 0;
450}
David Carlier7e351ee2017-12-01 09:14:02 +0000451#endif
452
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200453void init_default_instance()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200454{
Willy Tarreau97cb7802010-01-03 20:23:58 +0100455 init_new_proxy(&defproxy);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200456 defproxy.mode = PR_MODE_TCP;
457 defproxy.state = PR_STNEW;
458 defproxy.maxconn = cfg_maxpconn;
459 defproxy.conn_retries = CONN_RETRIES;
Joseph Lynch726ab712015-05-11 23:25:34 -0700460 defproxy.redispatch_after = 0;
Olivier Houchard86006a52018-12-14 19:37:49 +0100461 defproxy.options = PR_O_REUSE_SAFE;
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +0100462 defproxy.max_out_conns = MAX_SRV_LIST;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100463
Simon Horman66183002013-02-23 10:16:43 +0900464 defproxy.defsrv.check.inter = DEF_CHKINTR;
465 defproxy.defsrv.check.fastinter = 0;
466 defproxy.defsrv.check.downinter = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900467 defproxy.defsrv.agent.inter = DEF_CHKINTR;
468 defproxy.defsrv.agent.fastinter = 0;
469 defproxy.defsrv.agent.downinter = 0;
Simon Horman58c32972013-11-25 10:46:38 +0900470 defproxy.defsrv.check.rise = DEF_RISETIME;
471 defproxy.defsrv.check.fall = DEF_FALLTIME;
472 defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME;
473 defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME;
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200474 defproxy.defsrv.check.port = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900475 defproxy.defsrv.agent.port = 0;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100476 defproxy.defsrv.maxqueue = 0;
477 defproxy.defsrv.minconn = 0;
478 defproxy.defsrv.maxconn = 0;
Willy Tarreau9c538e02019-01-23 10:21:49 +0100479 defproxy.defsrv.max_reuse = -1;
Olivier Houchard006e3102018-12-10 18:30:32 +0100480 defproxy.defsrv.max_idle_conns = -1;
Willy Tarreau975b1552019-06-06 16:25:55 +0200481 defproxy.defsrv.pool_purge_delay = 5000;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100482 defproxy.defsrv.slowstart = 0;
483 defproxy.defsrv.onerror = DEF_HANA_ONERR;
484 defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT;
485 defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1;
Simon Horman64e34162015-02-06 11:11:57 +0900486
487 defproxy.email_alert.level = LOG_ALERT;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +0200488 defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200489}
490
Frédéric Lécaille18251032019-01-11 11:07:15 +0100491/* Allocate and initialize the frontend of a "peers" section found in
492 * file <file> at line <linenum> with <id> as ID.
493 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200494 * Note that this function may be called from "default-server"
495 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100496 */
497static int init_peers_frontend(const char *file, int linenum,
498 const char *id, struct peers *peers)
499{
500 struct proxy *p;
501
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200502 if (peers->peers_fe) {
503 p = peers->peers_fe;
504 goto out;
505 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100506
Frédéric Lécaille18251032019-01-11 11:07:15 +0100507 p = calloc(1, sizeof *p);
508 if (!p) {
509 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
510 return -1;
511 }
512
513 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200514 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100515 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200516 /* Finally store this frontend. */
517 peers->peers_fe = p;
518
519 out:
520 if (id && !p->id)
521 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200522 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100523 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100524 if (linenum != -1)
525 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100526
527 return 0;
528}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100529
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100530/* Only change ->file, ->line and ->arg struct bind_conf member values
531 * if already present.
532 */
533static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
534 const char *file, int line,
535 const char *arg, struct xprt_ops *xprt)
536{
537 struct bind_conf *bind_conf;
538
539 if (!LIST_ISEMPTY(&p->conf.bind)) {
540 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
541 free(bind_conf->file);
542 bind_conf->file = strdup(file);
543 bind_conf->line = line;
544 if (arg) {
545 free(bind_conf->arg);
546 bind_conf->arg = strdup(arg);
547 }
548 }
549 else {
550 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
551 }
552
553 return bind_conf;
554}
555
556/*
557 * Allocate a new struct peer parsed at line <linenum> in file <file>
558 * to be added to <peers>.
559 * Returns the new allocated structure if succeeded, NULL if not.
560 */
561static struct peer *cfg_peers_add_peer(struct peers *peers,
562 const char *file, int linenum,
563 const char *id, int local)
564{
565 struct peer *p;
566
567 p = calloc(1, sizeof *p);
568 if (!p) {
569 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
570 return NULL;
571 }
572
573 /* the peers are linked backwards first */
574 peers->count++;
575 p->next = peers->remote;
576 peers->remote = p;
577 p->conf.file = strdup(file);
578 p->conf.line = linenum;
579 p->last_change = now.tv_sec;
580 p->xprt = xprt_get(XPRT_RAW);
581 p->sock_init_arg = NULL;
582 HA_SPIN_INIT(&p->lock);
583 if (id)
584 p->id = strdup(id);
585 if (local) {
586 p->local = 1;
587 peers->local = p;
588 }
589
590 return p;
591}
592
Willy Tarreaubaaee002006-06-26 02:48:02 +0200593/*
William Lallemand51097192015-04-14 16:35:22 +0200594 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200595 * Returns the error code, 0 if OK, or any combination of :
596 * - ERR_ABORT: must abort ASAP
597 * - ERR_FATAL: we can continue parsing but not start the service
598 * - ERR_WARN: a warning has been emitted
599 * - ERR_ALERT: an alert has been emitted
600 * Only the two first ones can stop processing, the two others are just
601 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200602 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200603int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
604{
605 static struct peers *curpeers = NULL;
606 struct peer *newpeer = NULL;
607 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200608 struct bind_conf *bind_conf;
609 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200610 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100611 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100612 static int bind_line, peer_line;
613
614 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
615 int cur_arg;
616 static int kws_dumped;
617 struct bind_conf *bind_conf;
618 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200619
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100620 cur_arg = 1;
621
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200622 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
623 err_code |= ERR_ALERT | ERR_ABORT;
624 goto out;
625 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100626
627 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
628 NULL, xprt_get(XPRT_RAW));
629 if (*args[0] == 'b') {
630 struct listener *l;
631
632 if (peer_line) {
633 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
634 err_code |= ERR_ALERT | ERR_FATAL;
635 goto out;
636 }
637
638 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
639 if (errmsg && *errmsg) {
640 indent_msg(&errmsg, 2);
641 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
642 }
643 else
644 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
645 file, linenum, args[0], args[1], args[2]);
646 err_code |= ERR_FATAL;
647 goto out;
648 }
649 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
650 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100651 l->accept = session_accept_fd;
652 l->analysers |= curpeers->peers_fe->fe_req_ana;
653 l->default_target = curpeers->peers_fe->default_target;
654 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100655 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100656
657 bind_line = 1;
658 if (cfg_peers->local) {
659 newpeer = cfg_peers->local;
660 }
661 else {
662 /* This peer is local.
663 * Note that we do not set the peer ID. This latter is initialized
664 * when parsing "peer" or "server" line.
665 */
666 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
667 if (!newpeer) {
668 err_code |= ERR_ALERT | ERR_ABORT;
669 goto out;
670 }
671 }
672 newpeer->addr = l->addr;
673 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
674 cur_arg++;
675 }
676
677 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
678 int ret;
679
680 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
681 err_code |= ret;
682 if (ret) {
683 if (errmsg && *errmsg) {
684 indent_msg(&errmsg, 2);
685 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
686 }
687 else
688 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
689 file, linenum, args[cur_arg]);
690 if (ret & ERR_FATAL)
691 goto out;
692 }
693 cur_arg += 1 + kw->skip;
694 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100695 if (*args[cur_arg] != 0) {
Tim Duesterhus04bcaa12019-05-12 22:54:50 +0200696 char *kws = NULL;
697
698 if (!kws_dumped) {
699 kws_dumped = 1;
700 bind_dump_kws(&kws);
701 indent_msg(&kws, 4);
702 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100703 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.%s%s\n",
704 file, linenum, args[cur_arg], cursection,
705 kws ? " Registered keywords :" : "", kws ? kws: "");
706 free(kws);
707 err_code |= ERR_ALERT | ERR_FATAL;
708 goto out;
709 }
710 }
711 else if (strcmp(args[0], "default-server") == 0) {
712 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
713 err_code |= ERR_ALERT | ERR_ABORT;
714 goto out;
715 }
Emeric Brun33f0a732020-07-21 16:54:36 +0200716 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, 0, 1, 1);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200717 }
718 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100719 /* Initialize these static variables when entering a new "peers" section*/
720 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100721 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100722 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100723 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100724 goto out;
725 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200726
William Lallemand6e62fb62015-04-28 16:55:23 +0200727 if (alertif_too_many_args(1, file, linenum, args, &err_code))
728 goto out;
729
Emeric Brun32da3c42010-09-23 18:39:19 +0200730 err = invalid_char(args[1]);
731 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100732 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
733 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100734 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100735 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200736 }
737
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200738 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200739 /*
740 * If there are two proxies with the same name only following
741 * combinations are allowed:
742 */
743 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100744 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
745 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200746 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200747 }
748 }
749
Vincent Bernat02779b62016-04-03 13:48:43 +0200750 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100751 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200752 err_code |= ERR_ALERT | ERR_ABORT;
753 goto out;
754 }
755
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200756 curpeers->next = cfg_peers;
757 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200758 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200759 curpeers->conf.line = linenum;
760 curpeers->last_change = now.tv_sec;
761 curpeers->id = strdup(args[1]);
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200762 curpeers->state = PR_STNEW;
Emeric Brun32da3c42010-09-23 18:39:19 +0200763 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200764 else if (strcmp(args[0], "peer") == 0 ||
765 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100766 int local_peer, peer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200767
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100768 peer = *args[0] == 'p';
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100769 local_peer = !strcmp(args[1], localpeer);
770 /* The local peer may have already partially been parsed on a "bind" line. */
771 if (*args[0] == 'p') {
772 if (bind_line) {
773 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
774 err_code |= ERR_ALERT | ERR_FATAL;
775 goto out;
776 }
777 peer_line = 1;
778 }
779 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
780 /* The local peer has already been initialized on a "bind" line.
781 * Let's use it and store its ID.
782 */
783 newpeer = cfg_peers->local;
784 newpeer->id = strdup(localpeer);
785 }
786 else {
787 if (local_peer && cfg_peers->local) {
788 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
789 file, linenum, args[0], args[1],
790 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
791 err_code |= ERR_FATAL;
792 goto out;
793 }
794 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
795 if (!newpeer) {
796 err_code |= ERR_ALERT | ERR_ABORT;
797 goto out;
798 }
799 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200800
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100801 /* Line number and peer ID are updated only if this peer is the local one. */
802 if (init_peers_frontend(file,
803 newpeer->local ? linenum: -1,
804 newpeer->local ? newpeer->id : NULL,
805 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200806 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100807 goto out;
808 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100809
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100810 /* This initializes curpeer->peers->peers_fe->srv.
811 * The server address is parsed only if we are parsing a "peer" line,
812 * or if we are parsing a "server" line and the current peer is not the local one.
813 */
Emeric Brun33f0a732020-07-21 16:54:36 +0200814 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, peer || !local_peer, 1, 1);
Frédéric Lécaille9b0d59d2020-04-03 09:43:47 +0200815 if (!curpeers->peers_fe->srv) {
816 /* Remove the newly allocated peer. */
817 if (newpeer != curpeers->local) {
818 struct peer *p;
819
820 p = curpeers->remote;
821 curpeers->remote = curpeers->remote->next;
822 free(p->id);
823 free(p);
824 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200825 goto out;
Frédéric Lécaille9b0d59d2020-04-03 09:43:47 +0200826 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200827
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100828 /* If the peer address has just been parsed, let's copy it to <newpeer>
829 * and initializes ->proto.
830 */
831 if (peer || !local_peer) {
832 newpeer->addr = curpeers->peers_fe->srv->addr;
833 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
834 }
835
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100836 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200837 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100838 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200839
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100840 newpeer->srv = curpeers->peers_fe->srv;
841 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200842 goto out;
843
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100844 /* The lines above are reserved to "peer" lines. */
845 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200846 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200847
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100848 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 +0100849
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100850 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
851 if (errmsg && *errmsg) {
852 indent_msg(&errmsg, 2);
853 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 +0100854 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100855 else
856 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
857 file, linenum, args[0], args[1], args[2]);
858 err_code |= ERR_FATAL;
859 goto out;
860 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100861
862 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
863 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100864 l->accept = session_accept_fd;
865 l->analysers |= curpeers->peers_fe->fe_req_ana;
866 l->default_target = curpeers->peers_fe->default_target;
867 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100868 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100869 }
870 else if (!strcmp(args[0], "table")) {
871 struct stktable *t, *other;
872 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100873 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100874
875 /* Line number and peer ID are updated only if this peer is the local one. */
876 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
877 err_code |= ERR_ALERT | ERR_ABORT;
878 goto out;
879 }
880
881 other = stktable_find_by_name(args[1]);
882 if (other) {
883 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
884 file, linenum, args[1],
885 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
886 other->proxy ? other->id : other->peers.p->id,
887 other->conf.file, other->conf.line);
888 err_code |= ERR_ALERT | ERR_FATAL;
889 goto out;
890 }
891
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100892 /* Build the stick-table name, concatenating the "peers" section name
893 * followed by a '/' character and the table name argument.
894 */
895 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100896 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100897 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
898 file, linenum, args[0], args[1]);
899 err_code |= ERR_ALERT | ERR_FATAL;
900 goto out;
901 }
902
903 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100904 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100905 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
906 file, linenum, args[0], args[1]);
907 err_code |= ERR_ALERT | ERR_FATAL;
908 goto out;
909 }
910
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100911 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100912 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100913 if (!t || !id) {
914 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
915 file, linenum, args[0], args[1]);
Eric Salama879924c2020-09-18 11:55:17 +0200916 free(t);
917 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100918 err_code |= ERR_ALERT | ERR_FATAL;
919 goto out;
920 }
921
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100922 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama879924c2020-09-18 11:55:17 +0200923 if (err_code & ERR_FATAL) {
924 free(t);
925 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100926 goto out;
Eric Salama879924c2020-09-18 11:55:17 +0200927 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100928
929 stktable_store_name(t);
930 t->next = stktables_list;
931 stktables_list = t;
932 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200933 else if (!strcmp(args[0], "disabled")) { /* disables this peers section */
934 curpeers->state = PR_STSTOPPED;
935 }
936 else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */
937 curpeers->state = PR_STNEW;
938 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200939 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100940 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200941 err_code |= ERR_ALERT | ERR_FATAL;
942 goto out;
943 }
944
945out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100946 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200947 return err_code;
948}
949
Baptiste Assmann325137d2015-04-13 23:40:55 +0200950/*
951 * Parse a <resolvers> section.
952 * Returns the error code, 0 if OK, or any combination of :
953 * - ERR_ABORT: must abort ASAP
954 * - ERR_FATAL: we can continue parsing but not start the service
955 * - ERR_WARN: a warning has been emitted
956 * - ERR_ALERT: an alert has been emitted
957 * Only the two first ones can stop processing, the two others are just
958 * indicators.
959 */
960int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
961{
962 static struct dns_resolvers *curr_resolvers = NULL;
963 struct dns_nameserver *newnameserver = NULL;
964 const char *err;
965 int err_code = 0;
966 char *errmsg = NULL;
967
968 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
969 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100970 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200971 err_code |= ERR_ALERT | ERR_ABORT;
972 goto out;
973 }
974
975 err = invalid_char(args[1]);
976 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100977 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
978 file, linenum, *err, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200979 err_code |= ERR_ALERT | ERR_ABORT;
980 goto out;
981 }
982
983 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
984 /* Error if two resolvers owns the same name */
985 if (strcmp(curr_resolvers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100986 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
987 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200988 err_code |= ERR_ALERT | ERR_ABORT;
989 }
990 }
991
Vincent Bernat02779b62016-04-03 13:48:43 +0200992 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100993 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200994 err_code |= ERR_ALERT | ERR_ABORT;
995 goto out;
996 }
997
998 /* default values */
999 LIST_ADDQ(&dns_resolvers, &curr_resolvers->list);
1000 curr_resolvers->conf.file = strdup(file);
1001 curr_resolvers->conf.line = linenum;
1002 curr_resolvers->id = strdup(args[1]);
1003 curr_resolvers->query_ids = EB_ROOT;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001004 /* default maximum response size */
1005 curr_resolvers->accepted_payload_size = 512;
Baptiste Assmann987e16d2016-11-02 22:23:31 +01001006 /* default hold period for nx, other, refuse and timeout is 30s */
1007 curr_resolvers->hold.nx = 30000;
1008 curr_resolvers->hold.other = 30000;
1009 curr_resolvers->hold.refused = 30000;
1010 curr_resolvers->hold.timeout = 30000;
Baptiste Assmann686408b2017-08-18 10:15:42 +02001011 curr_resolvers->hold.obsolete = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001012 /* default hold period for valid is 10s */
Baptiste Assmann4c5490a2015-07-14 21:42:49 +02001013 curr_resolvers->hold.valid = 10000;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001014 curr_resolvers->timeout.resolve = 1000;
1015 curr_resolvers->timeout.retry = 1000;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001016 curr_resolvers->resolve_retries = 3;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001017 curr_resolvers->nb_nameservers = 0;
1018 LIST_INIT(&curr_resolvers->nameservers);
1019 LIST_INIT(&curr_resolvers->resolutions.curr);
1020 LIST_INIT(&curr_resolvers->resolutions.wait);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001021 HA_SPIN_INIT(&curr_resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001022 }
1023 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
1024 struct sockaddr_storage *sk;
1025 int port1, port2;
1026 struct protocol *proto;
1027
1028 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001029 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1030 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001031 err_code |= ERR_ALERT | ERR_FATAL;
1032 goto out;
1033 }
1034
1035 err = invalid_char(args[1]);
1036 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001037 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1038 file, linenum, *err, args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001039 err_code |= ERR_ALERT | ERR_FATAL;
1040 goto out;
1041 }
1042
Christopher Faulet67957bd2017-09-27 11:00:59 +02001043 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
Baptiste Assmanna315c552015-11-02 22:55:49 +01001044 /* Error if two resolvers owns the same name */
1045 if (strcmp(newnameserver->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001046 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 -06001047 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
Baptiste Assmanna315c552015-11-02 22:55:49 +01001048 err_code |= ERR_ALERT | ERR_FATAL;
1049 }
1050 }
1051
Vincent Bernat02779b62016-04-03 13:48:43 +02001052 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001053 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001054 err_code |= ERR_ALERT | ERR_ABORT;
1055 goto out;
1056 }
1057
1058 /* the nameservers are linked backward first */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001059 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001060 newnameserver->resolvers = curr_resolvers;
1061 newnameserver->conf.file = strdup(file);
1062 newnameserver->conf.line = linenum;
1063 newnameserver->id = strdup(args[1]);
1064
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001065 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001066 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001067 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001068 err_code |= ERR_ALERT | ERR_FATAL;
1069 goto out;
1070 }
1071
1072 proto = protocol_by_family(sk->ss_family);
1073 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001074 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Baptiste Assmann325137d2015-04-13 23:40:55 +02001075 file, linenum, args[0], args[1]);
1076 err_code |= ERR_ALERT | ERR_FATAL;
1077 goto out;
1078 }
1079
1080 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001081 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1082 file, linenum, args[0], args[1], args[2]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001083 err_code |= ERR_ALERT | ERR_FATAL;
1084 goto out;
1085 }
1086
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001087 if (!port1 && !port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001088 ha_alert("parsing [%s:%d] : '%s %s' : no UDP port specified\n",
1089 file, linenum, args[0], args[1]);
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001090 err_code |= ERR_ALERT | ERR_FATAL;
1091 goto out;
1092 }
1093
Baptiste Assmann325137d2015-04-13 23:40:55 +02001094 newnameserver->addr = *sk;
1095 }
Ben Draut44e609b2018-05-29 15:40:08 -06001096 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
1097 const char *whitespace = "\r\n\t ";
1098 char *resolv_line = NULL;
1099 int resolv_linenum = 0;
1100 FILE *f = NULL;
1101 char *address = NULL;
1102 struct sockaddr_storage *sk = NULL;
1103 struct protocol *proto;
1104 int duplicate_name = 0;
1105
1106 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
1107 ha_alert("parsing [%s:%d] : out of memory.\n",
1108 file, linenum);
1109 err_code |= ERR_ALERT | ERR_FATAL;
1110 goto resolv_out;
1111 }
1112
1113 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
1114 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
1115 file, linenum);
1116 err_code |= ERR_ALERT | ERR_FATAL;
1117 goto resolv_out;
1118 }
1119
1120 sk = calloc(1, sizeof(*sk));
1121 if (sk == NULL) {
1122 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
1123 resolv_linenum);
1124 err_code |= ERR_ALERT | ERR_FATAL;
1125 goto resolv_out;
1126 }
1127
1128 while (fgets(resolv_line, LINESIZE, f) != NULL) {
1129 resolv_linenum++;
1130 if (strncmp(resolv_line, "nameserver", 10) != 0)
1131 continue;
1132
1133 address = strtok(resolv_line + 10, whitespace);
1134 if (address == resolv_line + 10)
1135 continue;
1136
1137 if (address == NULL) {
1138 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
1139 resolv_linenum);
1140 err_code |= ERR_WARN;
1141 continue;
1142 }
1143
1144 duplicate_name = 0;
1145 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
1146 if (strcmp(newnameserver->id, address) == 0) {
1147 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",
1148 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
1149 err_code |= ERR_WARN;
1150 duplicate_name = 1;
1151 }
1152 }
1153
1154 if (duplicate_name)
1155 continue;
1156
1157 memset(sk, 0, sizeof(*sk));
Willy Tarreau98fbb972020-05-28 18:07:10 +02001158 if (!str2ip2(address, sk, 1)) {
1159 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 -06001160 resolv_linenum, address);
1161 err_code |= ERR_WARN;
1162 continue;
1163 }
1164
1165 set_host_port(sk, 53);
1166
1167 proto = protocol_by_family(sk->ss_family);
1168 if (!proto || !proto->connect) {
1169 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
1170 resolv_linenum, address);
1171 err_code |= ERR_WARN;
1172 continue;
1173 }
1174
1175 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
1176 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1177 err_code |= ERR_ALERT | ERR_FATAL;
1178 goto resolv_out;
1179 }
1180
1181 newnameserver->conf.file = strdup("/etc/resolv.conf");
1182 if (newnameserver->conf.file == NULL) {
1183 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1184 err_code |= ERR_ALERT | ERR_FATAL;
1185 goto resolv_out;
1186 }
1187
1188 newnameserver->id = strdup(address);
1189 if (newnameserver->id == NULL) {
1190 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1191 err_code |= ERR_ALERT | ERR_FATAL;
1192 goto resolv_out;
1193 }
1194
1195 newnameserver->resolvers = curr_resolvers;
1196 newnameserver->conf.line = resolv_linenum;
1197 newnameserver->addr = *sk;
1198
1199 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
1200 }
1201
1202resolv_out:
1203 free(sk);
1204 free(resolv_line);
1205 if (f != NULL)
1206 fclose(f);
1207 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001208 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
1209 const char *res;
1210 unsigned int time;
1211
1212 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001213 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
1214 file, linenum, args[0]);
1215 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
Baptiste Assmann325137d2015-04-13 23:40:55 +02001216 err_code |= ERR_ALERT | ERR_FATAL;
1217 goto out;
1218 }
1219 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001220 if (res == PARSE_TIME_OVER) {
1221 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s>, maximum value is 2147483647 ms (~24.8 days).\n",
1222 file, linenum, args[1], args[0]);
1223 err_code |= ERR_ALERT | ERR_FATAL;
1224 goto out;
1225 }
1226 else if (res == PARSE_TIME_UNDER) {
1227 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s>, minimum non-null value is 1 ms.\n",
1228 file, linenum, args[1], args[0]);
1229 err_code |= ERR_ALERT | ERR_FATAL;
1230 goto out;
1231 }
1232 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001233 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1234 file, linenum, *res, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001235 err_code |= ERR_ALERT | ERR_FATAL;
1236 goto out;
1237 }
Baptiste Assmann987e16d2016-11-02 22:23:31 +01001238 if (strcmp(args[1], "nx") == 0)
1239 curr_resolvers->hold.nx = time;
1240 else if (strcmp(args[1], "other") == 0)
1241 curr_resolvers->hold.other = time;
1242 else if (strcmp(args[1], "refused") == 0)
1243 curr_resolvers->hold.refused = time;
1244 else if (strcmp(args[1], "timeout") == 0)
1245 curr_resolvers->hold.timeout = time;
1246 else if (strcmp(args[1], "valid") == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001247 curr_resolvers->hold.valid = time;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001248 else if (strcmp(args[1], "obsolete") == 0)
1249 curr_resolvers->hold.obsolete = time;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001250 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001251 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
1252 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001253 err_code |= ERR_ALERT | ERR_FATAL;
1254 goto out;
1255 }
1256
1257 }
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001258 else if (strcmp(args[0], "accepted_payload_size") == 0) {
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001259 int i = 0;
1260
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001261 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001262 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1263 file, linenum, args[0]);
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001264 err_code |= ERR_ALERT | ERR_FATAL;
1265 goto out;
1266 }
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001267
1268 i = atoi(args[1]);
Willy Tarreau0c219be2017-08-22 12:01:26 +02001269 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001270 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
1271 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001272 err_code |= ERR_ALERT | ERR_FATAL;
1273 goto out;
1274 }
1275
1276 curr_resolvers->accepted_payload_size = i;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001277 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001278 else if (strcmp(args[0], "resolution_pool_size") == 0) {
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001279 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 +01001280 file, linenum, args[0]);
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001281 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001282 goto out;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001283 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001284 else if (strcmp(args[0], "resolve_retries") == 0) {
1285 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001286 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1287 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001288 err_code |= ERR_ALERT | ERR_FATAL;
1289 goto out;
1290 }
1291 curr_resolvers->resolve_retries = atoi(args[1]);
1292 }
1293 else if (strcmp(args[0], "timeout") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001294 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001295 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
1296 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001297 err_code |= ERR_ALERT | ERR_FATAL;
1298 goto out;
1299 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001300 else if (strcmp(args[1], "retry") == 0 ||
1301 strcmp(args[1], "resolve") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001302 const char *res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001303 unsigned int tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001304
1305 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001306 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1307 file, linenum, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001308 err_code |= ERR_ALERT | ERR_FATAL;
1309 goto out;
1310 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001311 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001312 if (res == PARSE_TIME_OVER) {
1313 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1314 file, linenum, args[2], args[0], args[1]);
1315 err_code |= ERR_ALERT | ERR_FATAL;
1316 goto out;
1317 }
1318 else if (res == PARSE_TIME_UNDER) {
1319 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1320 file, linenum, args[2], args[0], args[1]);
1321 err_code |= ERR_ALERT | ERR_FATAL;
1322 goto out;
1323 }
1324 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001325 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1326 file, linenum, *res, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001327 err_code |= ERR_ALERT | ERR_FATAL;
1328 goto out;
1329 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001330 if (args[1][2] == 't')
1331 curr_resolvers->timeout.retry = tout;
1332 else
1333 curr_resolvers->timeout.resolve = tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001334 }
1335 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001336 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
1337 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001338 err_code |= ERR_ALERT | ERR_FATAL;
1339 goto out;
1340 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001341 } /* neither "nameserver" nor "resolvers" */
1342 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001343 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001344 err_code |= ERR_ALERT | ERR_FATAL;
1345 goto out;
1346 }
1347
1348 out:
1349 free(errmsg);
1350 return err_code;
1351}
Simon Horman0d16a402015-01-30 11:22:58 +09001352
1353/*
William Lallemand51097192015-04-14 16:35:22 +02001354 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001355 * Returns the error code, 0 if OK, or any combination of :
1356 * - ERR_ABORT: must abort ASAP
1357 * - ERR_FATAL: we can continue parsing but not start the service
1358 * - ERR_WARN: a warning has been emitted
1359 * - ERR_ALERT: an alert has been emitted
1360 * Only the two first ones can stop processing, the two others are just
1361 * indicators.
1362 */
1363int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1364{
1365 static struct mailers *curmailers = NULL;
1366 struct mailer *newmailer = NULL;
1367 const char *err;
1368 int err_code = 0;
1369 char *errmsg = NULL;
1370
1371 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1372 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001373 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001374 err_code |= ERR_ALERT | ERR_ABORT;
1375 goto out;
1376 }
1377
1378 err = invalid_char(args[1]);
1379 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001380 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1381 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001382 err_code |= ERR_ALERT | ERR_ABORT;
1383 goto out;
1384 }
1385
1386 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1387 /*
1388 * If there are two proxies with the same name only following
1389 * combinations are allowed:
1390 */
1391 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001392 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1393 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001394 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001395 }
1396 }
1397
Vincent Bernat02779b62016-04-03 13:48:43 +02001398 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001399 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001400 err_code |= ERR_ALERT | ERR_ABORT;
1401 goto out;
1402 }
1403
1404 curmailers->next = mailers;
1405 mailers = curmailers;
1406 curmailers->conf.file = strdup(file);
1407 curmailers->conf.line = linenum;
1408 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001409 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1410 * But need enough time so that timeouts don't occur
1411 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001412 }
1413 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1414 struct sockaddr_storage *sk;
1415 int port1, port2;
1416 struct protocol *proto;
1417
1418 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001419 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1420 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001421 err_code |= ERR_ALERT | ERR_FATAL;
1422 goto out;
1423 }
1424
1425 err = invalid_char(args[1]);
1426 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001427 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1428 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001429 err_code |= ERR_ALERT | ERR_FATAL;
1430 goto out;
1431 }
1432
Vincent Bernat02779b62016-04-03 13:48:43 +02001433 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001434 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001435 err_code |= ERR_ALERT | ERR_ABORT;
1436 goto out;
1437 }
1438
1439 /* the mailers are linked backwards first */
1440 curmailers->count++;
1441 newmailer->next = curmailers->mailer_list;
1442 curmailers->mailer_list = newmailer;
1443 newmailer->mailers = curmailers;
1444 newmailer->conf.file = strdup(file);
1445 newmailer->conf.line = linenum;
1446
1447 newmailer->id = strdup(args[1]);
1448
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001449 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Simon Horman0d16a402015-01-30 11:22:58 +09001450 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001451 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001452 err_code |= ERR_ALERT | ERR_FATAL;
1453 goto out;
1454 }
1455
1456 proto = protocol_by_family(sk->ss_family);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09001457 if (!proto || !proto->connect || proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001458 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1459 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001460 err_code |= ERR_ALERT | ERR_FATAL;
1461 goto out;
1462 }
1463
1464 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001465 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1466 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001467 err_code |= ERR_ALERT | ERR_FATAL;
1468 goto out;
1469 }
1470
1471 if (!port1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001472 ha_alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n",
1473 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001474 err_code |= ERR_ALERT | ERR_FATAL;
1475 goto out;
1476 }
1477
1478 newmailer->addr = *sk;
1479 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001480 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001481 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001482 }
1483 else if (strcmp(args[0], "timeout") == 0) {
1484 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001485 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1486 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001487 err_code |= ERR_ALERT | ERR_FATAL;
1488 goto out;
1489 }
1490 else if (strcmp(args[1], "mail") == 0) {
1491 const char *res;
1492 unsigned int timeout_mail;
1493 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001494 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1495 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001496 err_code |= ERR_ALERT | ERR_FATAL;
1497 goto out;
1498 }
1499 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001500 if (res == PARSE_TIME_OVER) {
1501 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1502 file, linenum, args[2], args[0], args[1]);
1503 err_code |= ERR_ALERT | ERR_FATAL;
1504 goto out;
1505 }
1506 else if (res == PARSE_TIME_UNDER) {
1507 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1508 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001509 err_code |= ERR_ALERT | ERR_FATAL;
1510 goto out;
1511 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001512 else if (res) {
1513 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1514 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001515 err_code |= ERR_ALERT | ERR_FATAL;
1516 goto out;
1517 }
1518 curmailers->timeout.mail = timeout_mail;
1519 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001520 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001521 file, linenum, args[0], args[1]);
1522 err_code |= ERR_ALERT | ERR_FATAL;
1523 goto out;
1524 }
1525 }
Simon Horman0d16a402015-01-30 11:22:58 +09001526 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001527 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001528 err_code |= ERR_ALERT | ERR_FATAL;
1529 goto out;
1530 }
1531
1532out:
1533 free(errmsg);
1534 return err_code;
1535}
1536
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001537void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001538{
1539 free(p->email_alert.mailers.name);
1540 p->email_alert.mailers.name = NULL;
1541 free(p->email_alert.from);
1542 p->email_alert.from = NULL;
1543 free(p->email_alert.to);
1544 p->email_alert.to = NULL;
1545 free(p->email_alert.myhostname);
1546 p->email_alert.myhostname = NULL;
1547}
1548
Willy Tarreaubaaee002006-06-26 02:48:02 +02001549
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001550int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001551cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1552{
Willy Tarreaue5733232019-05-22 19:24:06 +02001553#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001554 const char *err;
1555 const char *item = args[0];
1556
1557 if (!strcmp(item, "namespace_list")) {
1558 return 0;
1559 }
1560 else if (!strcmp(item, "namespace")) {
1561 size_t idx = 1;
1562 const char *current;
1563 while (*(current = args[idx++])) {
1564 err = invalid_char(current);
1565 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001566 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1567 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001568 return ERR_ALERT | ERR_FATAL;
1569 }
1570
1571 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001572 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1573 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001574 return ERR_ALERT | ERR_FATAL;
1575 }
1576 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001577 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1578 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001579 return ERR_ALERT | ERR_FATAL;
1580 }
1581 }
1582 }
1583
1584 return 0;
1585#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001586 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1587 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001588 return ERR_ALERT | ERR_FATAL;
1589#endif
1590}
1591
1592int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001593cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1594{
1595
1596 int err_code = 0;
1597 const char *err;
1598
1599 if (!strcmp(args[0], "userlist")) { /* new userlist */
1600 struct userlist *newul;
1601
1602 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001603 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1604 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001605 err_code |= ERR_ALERT | ERR_FATAL;
1606 goto out;
1607 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001608 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1609 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001610
1611 err = invalid_char(args[1]);
1612 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001613 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1614 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001615 err_code |= ERR_ALERT | ERR_FATAL;
1616 goto out;
1617 }
1618
1619 for (newul = userlist; newul; newul = newul->next)
1620 if (!strcmp(newul->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001621 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1622 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001623 err_code |= ERR_WARN;
1624 goto out;
1625 }
1626
Vincent Bernat02779b62016-04-03 13:48:43 +02001627 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001628 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001629 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001630 err_code |= ERR_ALERT | ERR_ABORT;
1631 goto out;
1632 }
1633
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001634 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001635 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001636 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001637 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001638 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001639 goto out;
1640 }
1641
1642 newul->next = userlist;
1643 userlist = newul;
1644
1645 } else if (!strcmp(args[0], "group")) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001646 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001647 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001648 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001649
1650 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001651 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1652 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001653 err_code |= ERR_ALERT | ERR_FATAL;
1654 goto out;
1655 }
1656
1657 err = invalid_char(args[1]);
1658 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001659 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1660 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001661 err_code |= ERR_ALERT | ERR_FATAL;
1662 goto out;
1663 }
1664
William Lallemand4ac9f542015-05-28 18:03:51 +02001665 if (!userlist)
1666 goto out;
1667
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001668 for (ag = userlist->groups; ag; ag = ag->next)
1669 if (!strcmp(ag->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001670 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1671 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001672 err_code |= ERR_ALERT;
1673 goto out;
1674 }
1675
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001676 ag = calloc(1, sizeof(*ag));
1677 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001678 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001679 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001680 goto out;
1681 }
1682
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001683 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001684 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001685 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001686 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001687 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001688 goto out;
1689 }
1690
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001691 cur_arg = 2;
1692
1693 while (*args[cur_arg]) {
1694 if (!strcmp(args[cur_arg], "users")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001695 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001696 cur_arg += 2;
1697 continue;
1698 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001699 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1700 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001701 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001702 free(ag->groupusers);
1703 free(ag->name);
1704 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001705 goto out;
1706 }
1707 }
1708
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001709 ag->next = userlist->groups;
1710 userlist->groups = ag;
1711
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001712 } else if (!strcmp(args[0], "user")) { /* new user */
1713 struct auth_users *newuser;
1714 int cur_arg;
1715
1716 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001717 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1718 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001719 err_code |= ERR_ALERT | ERR_FATAL;
1720 goto out;
1721 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001722 if (!userlist)
1723 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001724
1725 for (newuser = userlist->users; newuser; newuser = newuser->next)
1726 if (!strcmp(newuser->user, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001727 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1728 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001729 err_code |= ERR_ALERT;
1730 goto out;
1731 }
1732
Vincent Bernat02779b62016-04-03 13:48:43 +02001733 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001734 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001735 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001736 err_code |= ERR_ALERT | ERR_ABORT;
1737 goto out;
1738 }
1739
1740 newuser->user = strdup(args[1]);
1741
1742 newuser->next = userlist->users;
1743 userlist->users = newuser;
1744
1745 cur_arg = 2;
1746
1747 while (*args[cur_arg]) {
1748 if (!strcmp(args[cur_arg], "password")) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001749#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001750 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001751 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1752 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001753 err_code |= ERR_ALERT | ERR_FATAL;
1754 goto out;
1755 }
1756#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001757 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1758 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001759 err_code |= ERR_ALERT;
1760#endif
1761 newuser->pass = strdup(args[cur_arg + 1]);
1762 cur_arg += 2;
1763 continue;
1764 } else if (!strcmp(args[cur_arg], "insecure-password")) {
1765 newuser->pass = strdup(args[cur_arg + 1]);
1766 newuser->flags |= AU_O_INSECURE;
1767 cur_arg += 2;
1768 continue;
1769 } else if (!strcmp(args[cur_arg], "groups")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001770 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001771 cur_arg += 2;
1772 continue;
1773 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001774 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1775 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001776 err_code |= ERR_ALERT | ERR_FATAL;
1777 goto out;
1778 }
1779 }
1780 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001781 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 +01001782 err_code |= ERR_ALERT | ERR_FATAL;
1783 }
1784
1785out:
1786 return err_code;
1787}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001788
Christopher Faulet79bdef32016-11-04 22:36:15 +01001789int
1790cfg_parse_scope(const char *file, int linenum, char *line)
1791{
1792 char *beg, *end, *scope = NULL;
1793 int err_code = 0;
1794 const char *err;
1795
1796 beg = line + 1;
1797 end = strchr(beg, ']');
1798
1799 /* Detect end of scope declaration */
1800 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001801 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1802 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001803 err_code |= ERR_ALERT | ERR_FATAL;
1804 goto out;
1805 }
1806
1807 /* Get scope name and check its validity */
1808 scope = my_strndup(beg, end-beg);
1809 err = invalid_char(scope);
1810 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001811 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1812 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001813 err_code |= ERR_ALERT | ERR_ABORT;
1814 goto out;
1815 }
1816
1817 /* Be sure to have a scope declaration alone on its line */
1818 line = end+1;
1819 while (isspace((unsigned char)*line))
1820 line++;
1821 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001822 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1823 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001824 err_code |= ERR_ALERT | ERR_ABORT;
1825 goto out;
1826 }
1827
1828 /* We have a valid scope declaration, save it */
1829 free(cfg_scope);
1830 cfg_scope = scope;
1831 scope = NULL;
1832
1833 out:
1834 free(scope);
1835 return err_code;
1836}
1837
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001838int
1839cfg_parse_track_sc_num(unsigned int *track_sc_num,
1840 const char *arg, const char *end, char **errmsg)
1841{
1842 const char *p;
1843 unsigned int num;
1844
1845 p = arg;
1846 num = read_uint64(&arg, end);
1847
1848 if (arg != end) {
1849 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1850 return -1;
1851 }
1852
1853 if (num >= MAX_SESS_STKCTR) {
1854 memprintf(errmsg, "%u track-sc number exceeding "
1855 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1856 return -1;
1857 }
1858
1859 *track_sc_num = num;
1860 return 0;
1861}
1862
Willy Tarreaubaaee002006-06-26 02:48:02 +02001863/*
1864 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001865 * Returns the error code, 0 if OK, or any combination of :
1866 * - ERR_ABORT: must abort ASAP
1867 * - ERR_FATAL: we can continue parsing but not start the service
1868 * - ERR_WARN: a warning has been emitted
1869 * - ERR_ALERT: an alert has been emitted
1870 * Only the two first ones can stop processing, the two others are just
1871 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001872 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001873int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001874{
William Lallemand64e84512015-05-12 14:25:37 +02001875 char *thisline;
1876 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001877 FILE *f;
1878 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001879 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001880 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001881 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001882 int readbytes = 0;
1883
1884 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001885 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001886 return -1;
1887 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001888
David Carlier97880bb2016-04-08 10:35:26 +01001889 if ((f=fopen(file,"r")) == NULL) {
1890 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001891 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001892 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001893
William Lallemandb2f07452015-05-12 14:27:13 +02001894next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001895 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001896 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001897 char *end;
1898 char *args[MAX_LINE_ARGS + 1];
1899 char *line = thisline;
William Lallemandf9873ba2015-05-05 17:37:14 +02001900 int dquote = 0; /* double quote */
1901 int squote = 0; /* simple quote */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001902
Willy Tarreaubaaee002006-06-26 02:48:02 +02001903 linenum++;
1904
1905 end = line + strlen(line);
1906
William Lallemand64e84512015-05-12 14:25:37 +02001907 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001908 /* Check if we reached the limit and the last char is not \n.
1909 * Watch out for the last line without the terminating '\n'!
1910 */
William Lallemand64e84512015-05-12 14:25:37 +02001911 char *newline;
1912 int newlinesize = linesize * 2;
1913
1914 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1915 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001916 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1917 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001918 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau4d4dda12020-06-25 09:37:54 +02001919 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001920 continue;
1921 }
1922
1923 readbytes = linesize - 1;
1924 linesize = newlinesize;
1925 thisline = newline;
Willy Tarreau4d4dda12020-06-25 09:37:54 +02001926 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001927 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001928 }
1929
William Lallemand64e84512015-05-12 14:25:37 +02001930 readbytes = 0;
1931
Willy Tarreaubaaee002006-06-26 02:48:02 +02001932 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001933 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001934 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001935
Christopher Faulet79bdef32016-11-04 22:36:15 +01001936
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001937 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001938 err_code |= cfg_parse_scope(file, linenum, line);
1939 goto next_line;
1940 }
1941
Willy Tarreaubaaee002006-06-26 02:48:02 +02001942 arg = 0;
1943 args[arg] = line;
1944
1945 while (*line && arg < MAX_LINE_ARGS) {
William Lallemandf9873ba2015-05-05 17:37:14 +02001946 if (*line == '"' && !squote) { /* double quote outside single quotes */
1947 if (dquote)
1948 dquote = 0;
1949 else
1950 dquote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001951 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001952 end--;
1953 }
1954 else if (*line == '\'' && !dquote) { /* single quote outside double quotes */
1955 if (squote)
1956 squote = 0;
1957 else
1958 squote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001959 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001960 end--;
1961 }
1962 else if (*line == '\\' && !squote) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001963 /* first, we'll replace \\, \<space>, \#, \r, \n, \t, \xXX with their
1964 * C equivalent value. Other combinations left unchanged (eg: \1).
1965 */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001966 int skip = 0;
1967 if (line[1] == ' ' || line[1] == '\\' || line[1] == '#') {
1968 *line = line[1];
1969 skip = 1;
1970 }
1971 else if (line[1] == 'r') {
1972 *line = '\r';
1973 skip = 1;
William Lallemandf9873ba2015-05-05 17:37:14 +02001974 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001975 else if (line[1] == 'n') {
1976 *line = '\n';
1977 skip = 1;
1978 }
1979 else if (line[1] == 't') {
1980 *line = '\t';
1981 skip = 1;
1982 }
1983 else if (line[1] == 'x') {
Emeric Brunb982a3d2010-01-04 15:45:53 +01001984 if ((line + 3 < end) && ishex(line[2]) && ishex(line[3])) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001985 unsigned char hex1, hex2;
1986 hex1 = toupper(line[2]) - '0';
1987 hex2 = toupper(line[3]) - '0';
1988 if (hex1 > 9) hex1 -= 'A' - '9' - 1;
1989 if (hex2 > 9) hex2 -= 'A' - '9' - 1;
1990 *line = (hex1<<4) + hex2;
1991 skip = 3;
1992 }
1993 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001994 ha_alert("parsing [%s:%d] : invalid or incomplete '\\x' sequence in '%s'.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02001995 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f244222020-05-07 19:21:31 +02001996 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001997 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001998 } else if (line[1] == '"') {
1999 *line = '"';
2000 skip = 1;
2001 } else if (line[1] == '\'') {
2002 *line = '\'';
2003 skip = 1;
William Lallemandb2f07452015-05-12 14:27:13 +02002004 } else if (line[1] == '$' && dquote) { /* escaping of $ only inside double quotes */
2005 *line = '$';
2006 skip = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002007 }
2008 if (skip) {
Cyril Bontédd1b01d2009-12-06 13:43:42 +01002009 memmove(line + 1, line + 1 + skip, end - (line + skip));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002010 end -= skip;
2011 }
2012 line++;
2013 }
William Lallemandf9873ba2015-05-05 17:37:14 +02002014 else if ((!squote && !dquote && *line == '#') || *line == '\n' || *line == '\r') {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002015 /* end of string, end of loop */
2016 *line = 0;
2017 break;
2018 }
William Lallemandf9873ba2015-05-05 17:37:14 +02002019 else if (!squote && !dquote && isspace((unsigned char)*line)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002020 /* a non-escaped space is an argument separator */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01002021 *line++ = '\0';
Willy Tarreau8f8e6452007-06-17 21:51:38 +02002022 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02002023 line++;
2024 args[++arg] = line;
2025 }
William Lallemandb2f07452015-05-12 14:27:13 +02002026 else if (dquote && *line == '$') {
2027 /* environment variables are evaluated inside double quotes */
2028 char *var_beg;
2029 char *var_end;
2030 char save_char;
2031 char *value;
2032 int val_len;
2033 int newlinesize;
2034 int braces = 0;
2035
2036 var_beg = line + 1;
2037 var_end = var_beg;
2038
2039 if (*var_beg == '{') {
2040 var_beg++;
2041 var_end++;
2042 braces = 1;
2043 }
2044
2045 if (!isalpha((int)(unsigned char)*var_beg) && *var_beg != '_') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002046 ha_alert("parsing [%s:%d] : Variable expansion: Unrecognized character '%c' in variable name.\n", file, linenum, *var_beg);
William Lallemandb2f07452015-05-12 14:27:13 +02002047 err_code |= ERR_ALERT | ERR_FATAL;
2048 goto next_line; /* skip current line */
2049 }
2050
2051 while (isalnum((int)(unsigned char)*var_end) || *var_end == '_')
2052 var_end++;
2053
2054 save_char = *var_end;
2055 *var_end = '\0';
2056 value = getenv(var_beg);
2057 *var_end = save_char;
2058 val_len = value ? strlen(value) : 0;
2059
2060 if (braces) {
2061 if (*var_end == '}') {
2062 var_end++;
2063 braces = 0;
2064 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002065 ha_alert("parsing [%s:%d] : Variable expansion: Mismatched braces.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02002066 err_code |= ERR_ALERT | ERR_FATAL;
2067 goto next_line; /* skip current line */
2068 }
2069 }
2070
2071 newlinesize = (end - thisline) - (var_end - line) + val_len + 1;
2072
2073 /* if not enough space in thisline */
2074 if (newlinesize > linesize) {
2075 char *newline;
2076
2077 newline = realloc(thisline, newlinesize * sizeof(*thisline));
2078 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002079 ha_alert("parsing [%s:%d] : Variable expansion: Not enough memory.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02002080 err_code |= ERR_ALERT | ERR_FATAL;
2081 goto next_line; /* slip current line */
2082 }
2083 /* recompute pointers if realloc returns a new pointer */
2084 if (newline != thisline) {
2085 int i;
2086 int diff;
2087
2088 for (i = 0; i <= arg; i++) {
2089 diff = args[i] - thisline;
2090 args[i] = newline + diff;
2091 }
2092
2093 diff = var_end - thisline;
2094 var_end = newline + diff;
2095 diff = end - thisline;
2096 end = newline + diff;
2097 diff = line - thisline;
2098 line = newline + diff;
2099 thisline = newline;
2100 }
2101 linesize = newlinesize;
2102 }
2103
2104 /* insert value inside the line */
2105 memmove(line + val_len, var_end, end - var_end + 1);
2106 memcpy(line, value, val_len);
2107 end += val_len - (var_end - line);
2108 line += val_len;
2109 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002110 else {
2111 line++;
2112 }
2113 }
William Lallemandb2f07452015-05-12 14:27:13 +02002114
William Lallemandf9873ba2015-05-05 17:37:14 +02002115 if (dquote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002116 ha_alert("parsing [%s:%d] : Mismatched double quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002117 err_code |= ERR_ALERT | ERR_FATAL;
2118 }
2119
2120 if (squote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002121 ha_alert("parsing [%s:%d] : Mismatched simple quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002122 err_code |= ERR_ALERT | ERR_FATAL;
2123 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002124
2125 /* empty line */
2126 if (!**args)
2127 continue;
2128
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002129 if (*line) {
2130 /* we had to stop due to too many args.
2131 * Let's terminate the string, print the offending part then cut the
2132 * last arg.
2133 */
2134 while (*line && *line != '#' && *line != '\n' && *line != '\r')
2135 line++;
2136 *line = '\0';
2137
Christopher Faulet767a84b2017-11-24 16:50:31 +01002138 ha_alert("parsing [%s:%d]: line too long, truncating at word %d, position %ld: <%s>.\n",
2139 file, linenum, arg + 1, (long)(args[arg] - thisline + 1), args[arg]);
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002140 err_code |= ERR_ALERT | ERR_FATAL;
2141 args[arg] = line;
2142 }
2143
Willy Tarreau540abe42007-05-02 20:50:16 +02002144 /* zero out remaining args and ensure that at least one entry
2145 * is zeroed out.
2146 */
2147 while (++arg <= MAX_LINE_ARGS) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002148 args[arg] = line;
2149 }
2150
Willy Tarreau3842f002009-06-14 11:39:52 +02002151 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002152 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02002153 char *tmp;
2154
Willy Tarreau3842f002009-06-14 11:39:52 +02002155 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002156 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002157 for (arg=0; *args[arg+1]; arg++)
2158 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002159 *tmp = '\0'; // fix the next arg to \0
2160 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002161 }
Willy Tarreau3842f002009-06-14 11:39:52 +02002162 else if (!strcmp(args[0], "default")) {
2163 kwm = KWM_DEF;
2164 for (arg=0; *args[arg+1]; arg++)
2165 args[arg] = args[arg+1]; // shift args after inversion
2166 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002167
William Lallemand0f99e342011-10-12 17:50:54 +02002168 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 && \
Willy Tarreaubeb859a2018-11-22 18:07:59 +01002169 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling")) {
2170 ha_alert("parsing [%s:%d]: negation/default currently supported only for options, log, and busy-polling.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002171 err_code |= ERR_ALERT | ERR_FATAL;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002172 }
2173
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002174 /* detect section start */
2175 list_for_each_entry(ics, &sections, list) {
2176 if (strcmp(args[0], ics->section_name) == 0) {
2177 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002178 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002179 cs = ics;
2180 break;
2181 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002182 }
2183
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002184 if (pcs && pcs->post_section_parser) {
2185 err_code |= pcs->post_section_parser();
2186 if (err_code & ERR_ABORT)
2187 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002188 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002189 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002190
William Lallemandd2ff56d2017-10-16 11:06:50 +02002191 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002192 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002193 err_code |= ERR_ALERT | ERR_FATAL;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002194 } else {
William Lallemandd2ff56d2017-10-16 11:06:50 +02002195 err_code |= cs->section_parser(file, linenum, args, kwm);
2196 if (err_code & ERR_ABORT)
2197 goto err;
2198 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002199 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002200
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002201 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002202 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002203
2204err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002205 free(cfg_scope);
2206 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002207 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002208 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002209 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002210 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002211}
2212
Willy Tarreau64ab6072014-09-16 12:17:36 +02002213/* This function propagates processes from frontend <from> to backend <to> so
2214 * that it is always guaranteed that a backend pointed to by a frontend is
2215 * bound to all of its processes. After that, if the target is a "listen"
2216 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002217 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002218 * checked first to ensure that <to> is already bound to all processes of
2219 * <from>, there is no risk of looping and we ensure to follow the shortest
2220 * path to the destination.
2221 *
2222 * It is possible to set <to> to NULL for the first call so that the function
2223 * takes care of visiting the initial frontend in <from>.
2224 *
2225 * It is important to note that the function relies on the fact that all names
2226 * have already been resolved.
2227 */
2228void propagate_processes(struct proxy *from, struct proxy *to)
2229{
2230 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002231
2232 if (to) {
2233 /* check whether we need to go down */
2234 if (from->bind_proc &&
2235 (from->bind_proc & to->bind_proc) == from->bind_proc)
2236 return;
2237
2238 if (!from->bind_proc && !to->bind_proc)
2239 return;
2240
2241 to->bind_proc = from->bind_proc ?
2242 (to->bind_proc | from->bind_proc) : 0;
2243
2244 /* now propagate down */
2245 from = to;
2246 }
2247
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002248 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002249 return;
2250
Willy Tarreauf6b70012014-12-18 14:00:43 +01002251 if (from->state == PR_STSTOPPED)
2252 return;
2253
Willy Tarreau64ab6072014-09-16 12:17:36 +02002254 /* default_backend */
2255 if (from->defbe.be)
2256 propagate_processes(from, from->defbe.be);
2257
2258 /* use_backend */
2259 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002260 if (rule->dynamic)
2261 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002262 to = rule->be.backend;
2263 propagate_processes(from, to);
2264 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002265}
2266
Willy Tarreaubb925012009-07-23 13:36:36 +02002267/*
2268 * Returns the error code, 0 if OK, or any combination of :
2269 * - ERR_ABORT: must abort ASAP
2270 * - ERR_FATAL: we can continue parsing but not start the service
2271 * - ERR_WARN: a warning has been emitted
2272 * - ERR_ALERT: an alert has been emitted
2273 * Only the two first ones can stop processing, the two others are just
2274 * indicators.
2275 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002276int check_config_validity()
2277{
2278 int cfgerr = 0;
2279 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002280 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002281 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002282 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002283 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002284 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002285 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002286 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002287 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002288
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002289 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002290 /*
2291 * Now, check for the integrity of all that we have collected.
2292 */
2293
2294 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002295 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002296
Willy Tarreau193b8c62012-11-22 00:17:38 +01002297 if (!global.tune.max_http_hdr)
2298 global.tune.max_http_hdr = MAX_HTTP_HDR;
2299
2300 if (!global.tune.cookie_len)
2301 global.tune.cookie_len = CAPTURE_LEN;
2302
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002303 if (!global.tune.requri_len)
2304 global.tune.requri_len = REQURI_LEN;
2305
Willy Tarreau149ab772019-01-26 14:27:06 +01002306 if (!global.nbthread) {
2307 /* nbthread not set, thus automatic. In this case, and only if
2308 * running on a single process, we enable the same number of
2309 * threads as the number of CPUs the process is bound to. This
2310 * allows to easily control the number of threads using taskset.
2311 */
2312 global.nbthread = 1;
2313#if defined(USE_THREAD)
2314 if (global.nbproc == 1)
2315 global.nbthread = thread_cpus_enabled_at_boot;
2316 all_threads_mask = nbits(global.nbthread);
2317#endif
2318 }
2319
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002320 if (global.nbproc > 1 && global.nbthread > 1) {
2321 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2322 err_code |= ERR_ALERT | ERR_FATAL;
2323 goto out;
2324 }
2325
Willy Tarreaubafbe012017-11-24 17:34:44 +01002326 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002327
Willy Tarreaubafbe012017-11-24 17:34:44 +01002328 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002329
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002330 /* Post initialisation of the users and groups lists. */
2331 err_code = userlist_postinit();
2332 if (err_code != ERR_NONE)
2333 goto out;
2334
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002335 /* first, we will invert the proxy list order */
2336 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002337 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002338 struct proxy *next;
2339
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002340 next = proxies_list->next;
2341 proxies_list->next = curproxy;
2342 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002343 if (!next)
2344 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002345 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002346 }
2347
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002348 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002349 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002350 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002351 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002352 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002353 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002354 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002355 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002356
Willy Tarreau050536d2012-10-04 08:47:34 +02002357 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002358 /* proxy ID not set, use automatic numbering with first
2359 * spare entry starting with next_pxid.
2360 */
2361 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2362 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2363 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002364 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002365 next_pxid++;
2366
Willy Tarreau55ea7572007-06-17 19:56:27 +02002367
Willy Tarreaubaaee002006-06-26 02:48:02 +02002368 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002369 /* ensure we don't keep listeners uselessly bound */
2370 stop_proxy(curproxy);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002371 if (curproxy->table) {
2372 free((void *)curproxy->table->peers.name);
2373 curproxy->table->peers.p = NULL;
2374 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002375 continue;
2376 }
2377
Willy Tarreau102df612014-05-07 23:56:38 +02002378 /* Check multi-process mode compatibility for the current proxy */
2379
2380 if (curproxy->bind_proc) {
2381 /* an explicit bind-process was specified, let's check how many
2382 * processes remain.
2383 */
David Carliere6c39412015-07-02 07:00:17 +00002384 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002385
Willy Tarreaua38a7172019-02-02 17:11:28 +01002386 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002387 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002388 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 +02002389 curproxy->bind_proc = 1;
2390 }
2391 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002392 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 +02002393 curproxy->bind_proc = 0;
2394 }
2395 }
2396
Willy Tarreau3d209582014-05-09 17:06:11 +02002397 /* check and reduce the bind-proc of each listener */
2398 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2399 unsigned long mask;
2400
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002401 /* HTTP frontends with "h2" as ALPN/NPN will work in
2402 * HTTP/2 and absolutely require buffers 16kB or larger.
2403 */
2404#ifdef USE_OPENSSL
2405 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2406#ifdef OPENSSL_NPN_NEGOTIATED
2407 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002408 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002409 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",
2410 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002411 cfgerr++;
2412 }
2413#endif
2414#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2415 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002416 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002417 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",
2418 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002419 cfgerr++;
2420 }
2421#endif
2422 } /* HTTP && bufsize < 16384 */
2423#endif
2424
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002425 /* detect and address thread affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002426 mask = thread_mask(bind_conf->bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002427 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002428 unsigned long new_mask = 0;
2429
2430 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002431 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002432 mask >>= global.nbthread;
2433 }
2434
Willy Tarreaua36b3242019-02-02 13:14:34 +01002435 bind_conf->bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002436 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",
2437 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2438 }
2439
2440 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002441 mask = proc_mask(bind_conf->bind_proc) & proc_mask(curproxy->bind_proc);
2442 if (!(mask & all_proc_mask)) {
2443 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
2444 nbproc = my_popcountl(bind_conf->bind_proc);
2445 bind_conf->bind_proc = proc_mask(bind_conf->bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002446
Willy Tarreaua36b3242019-02-02 13:14:34 +01002447 if (!bind_conf->bind_proc && nbproc == 1) {
2448 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",
2449 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2450 bind_conf->bind_proc = mask & ~(mask - 1);
2451 }
2452 else if (!bind_conf->bind_proc && nbproc > 1) {
2453 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",
2454 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2455 bind_conf->bind_proc = 0;
2456 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002457 }
2458 }
2459
Willy Tarreauff01a212009-03-15 13:46:16 +01002460 switch (curproxy->mode) {
2461 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002462 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002463 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002464 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2465 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002466 cfgerr++;
2467 }
2468
2469 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002470 ha_warning("config : servers will be ignored for %s '%s'.\n",
2471 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002472 break;
2473
2474 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002475 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002476 break;
2477
2478 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002479 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002480 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002481
2482 case PR_MODE_CLI:
2483 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2484 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002485 }
2486
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002487 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002488 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2489 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002490 err_code |= ERR_WARN;
2491 }
2492
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002493 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002494 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002495 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002496 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2497 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002498 cfgerr++;
2499 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002500#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002501 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002502 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2503 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002504 cfgerr++;
2505 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002506#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002507 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002508 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2509 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002510 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002511 }
2512 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002513 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002514 /* If no LB algo is set in a backend, and we're not in
2515 * transparent mode, dispatch mode nor proxy mode, we
2516 * want to use balance roundrobin by default.
2517 */
2518 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2519 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002520 }
2521 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002522
Willy Tarreau1620ec32011-08-06 17:05:02 +02002523 if (curproxy->options & PR_O_DISPATCH)
2524 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2525 else if (curproxy->options & PR_O_HTTP_PROXY)
2526 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2527 else if (curproxy->options & PR_O_TRANSP)
2528 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002529
Willy Tarreau1620ec32011-08-06 17:05:02 +02002530 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_HTTP_CHK) {
2531 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002532 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2533 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002534 err_code |= ERR_WARN;
2535 curproxy->options &= ~PR_O_DISABLE404;
2536 }
2537 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002538 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2539 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002540 err_code |= ERR_WARN;
2541 curproxy->options &= ~PR_O2_CHK_SNDST;
2542 }
Willy Tarreauef781042010-01-27 11:53:01 +01002543 }
2544
Simon Horman98637e52014-06-20 12:30:16 +09002545 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2546 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002547 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2548 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002549 cfgerr++;
2550 }
2551 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002552 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2553 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002554 cfgerr++;
2555 }
2556 }
2557
Olivier Houcharda254a372019-04-05 15:30:12 +02002558 if ((curproxy->retry_type &~ PR_RE_CONN_FAILED) &&
2559 !(curproxy->options2 & PR_O2_USE_HTX)) {
2560 ha_warning("Proxy '%s' : retry-on with any other keywords than 'conn-failure' will be ignored, requires 'option http-use-htx'.\n", curproxy->id);
2561 err_code |= ERR_WARN;
2562 curproxy->retry_type &= PR_RE_CONN_FAILED;
2563 }
Simon Horman64e34162015-02-06 11:11:57 +09002564 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002565 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002566 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2567 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2568 "'email-alert myhostname', or 'email-alert to' "
2569 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2570 "to be present).\n",
2571 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002572 err_code |= ERR_WARN;
2573 free_email_alert(curproxy);
2574 }
2575 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002576 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002577 }
2578
Simon Horman98637e52014-06-20 12:30:16 +09002579 if (curproxy->check_command) {
2580 int clear = 0;
2581 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002582 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2583 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002584 err_code |= ERR_WARN;
2585 clear = 1;
2586 }
2587 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002588 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2589 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002590 cfgerr++;
2591 }
2592 if (clear) {
2593 free(curproxy->check_command);
2594 curproxy->check_command = NULL;
2595 }
2596 }
2597
2598 if (curproxy->check_path) {
2599 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002600 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2601 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002602 err_code |= ERR_WARN;
2603 free(curproxy->check_path);
2604 curproxy->check_path = NULL;
2605 }
2606 }
2607
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002608 /* if a default backend was specified, let's find it */
2609 if (curproxy->defbe.name) {
2610 struct proxy *target;
2611
Willy Tarreauafb39922015-05-26 12:04:09 +02002612 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002613 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002614 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2615 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002616 cfgerr++;
2617 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002618 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2619 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002620 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002621 } else if (target->mode != curproxy->mode &&
2622 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2623
Christopher Faulet767a84b2017-11-24 16:50:31 +01002624 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2625 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2626 curproxy->conf.file, curproxy->conf.line,
2627 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2628 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002629 cfgerr++;
Willy Tarreau68ad3a42018-10-22 11:49:15 +02002630 } else if ((curproxy->options2 ^ target->options2) & PR_O2_USE_HTX) {
2631 ha_alert("%s %s '%s' (%s:%d) tries to use %s %s '%s' (%s:%d) as its default backend, both of which disagree on 'option http-use-htx'.\n",
2632 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2633 curproxy->conf.file, curproxy->conf.line,
2634 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2635 target->conf.file, target->conf.line);
2636 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002637 } else {
2638 free(curproxy->defbe.name);
2639 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002640 /* Emit a warning if this proxy also has some servers */
2641 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002642 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2643 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002644 err_code |= ERR_WARN;
2645 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002646 }
2647 }
2648
Willy Tarreau55ea7572007-06-17 19:56:27 +02002649 /* find the target proxy for 'use_backend' rules */
2650 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002651 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002652 struct logformat_node *node;
2653 char *pxname;
2654
2655 /* Try to parse the string as a log format expression. If the result
2656 * of the parsing is only one entry containing a simple string, then
2657 * it's a standard string corresponding to a static rule, thus the
2658 * parsing is cancelled and be.name is restored to be resolved.
2659 */
2660 pxname = rule->be.name;
2661 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002662 curproxy->conf.args.ctx = ARGC_UBK;
2663 curproxy->conf.args.file = rule->file;
2664 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002665 err = NULL;
2666 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002667 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2668 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002669 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002670 cfgerr++;
2671 continue;
2672 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002673 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2674
2675 if (!LIST_ISEMPTY(&rule->be.expr)) {
2676 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2677 rule->dynamic = 1;
2678 free(pxname);
2679 continue;
2680 }
Christopher Faulet8762fea2020-05-07 15:59:33 +02002681 /* Only one element in the list, a simple string: free the expression and
2682 * fall back to static rule
2683 */
2684 LIST_DEL(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002685 free(node->arg);
2686 free(node);
2687 }
2688
2689 rule->dynamic = 0;
2690 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002691
Willy Tarreauafb39922015-05-26 12:04:09 +02002692 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002693 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002694 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2695 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002696 cfgerr++;
2697 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002698 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2699 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002700 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002701 } else if (target->mode != curproxy->mode &&
2702 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2703
Christopher Faulet767a84b2017-11-24 16:50:31 +01002704 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2705 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2706 curproxy->conf.file, curproxy->conf.line,
2707 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2708 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002709 cfgerr++;
Willy Tarreau68ad3a42018-10-22 11:49:15 +02002710 } else if ((curproxy->options2 ^ target->options2) & PR_O2_USE_HTX) {
2711 ha_alert("%s %s '%s' (%s:%d) tries to use %s %s '%s' (%s:%d) in a 'use_backend' rule, both of which disagree on 'option http-use-htx'.\n",
2712 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2713 curproxy->conf.file, curproxy->conf.line,
2714 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2715 target->conf.file, target->conf.line);
2716 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002717 } else {
2718 free((void *)rule->be.name);
2719 rule->be.backend = target;
2720 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002721 }
2722
Willy Tarreau64ab6072014-09-16 12:17:36 +02002723 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002724 list_for_each_entry(srule, &curproxy->server_rules, list) {
2725 struct server *target = findserver(curproxy, srule->srv.name);
2726
2727 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002728 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2729 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002730 cfgerr++;
2731 continue;
2732 }
2733 free((void *)srule->srv.name);
2734 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002735 }
2736
Emeric Brunb982a3d2010-01-04 15:45:53 +01002737 /* find the target table for 'stick' rules */
2738 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002739 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002740
Emeric Brun1d33b292010-01-04 15:47:17 +01002741 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2742 if (mrule->flags & STK_IS_STORE)
2743 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2744
Emeric Brunb982a3d2010-01-04 15:45:53 +01002745 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002746 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002747 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002748 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002749
2750 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002751 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreauecb5b892020-01-24 07:19:34 +01002752 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002753 cfgerr++;
2754 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002755 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002756 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2757 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002758 cfgerr++;
2759 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002760 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002761 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2762 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002763 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002764 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002765 else {
2766 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002767 mrule->table.t = target;
2768 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002769 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaillef596b4f2019-09-02 14:02:28 +02002770 if (!in_proxies_list(target->proxies_list, curproxy)) {
2771 curproxy->next_stkt_ref = target->proxies_list;
2772 target->proxies_list = curproxy;
2773 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002774 }
2775 }
2776
2777 /* find the target table for 'store response' rules */
2778 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002779 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002780
Emeric Brun1d33b292010-01-04 15:47:17 +01002781 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2782
Emeric Brunb982a3d2010-01-04 15:45:53 +01002783 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002784 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002785 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002786 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002787
2788 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002789 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreauecb5b892020-01-24 07:19:34 +01002790 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002791 cfgerr++;
2792 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002793 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002794 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2795 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002796 cfgerr++;
2797 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002798 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002799 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2800 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002801 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002802 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002803 else {
2804 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002805 mrule->table.t = target;
2806 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002807 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaillef596b4f2019-09-02 14:02:28 +02002808 if (!in_proxies_list(target->proxies_list, curproxy)) {
2809 curproxy->next_stkt_ref = target->proxies_list;
2810 target->proxies_list = curproxy;
2811 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002812 }
2813 }
2814
Christopher Faulete4e830d2017-09-18 14:51:41 +02002815 /* check validity for 'tcp-request' layer 4 rules */
2816 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2817 err = NULL;
2818 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002819 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002820 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002821 cfgerr++;
2822 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002823 }
2824
Christopher Faulete4e830d2017-09-18 14:51:41 +02002825 /* check validity for 'tcp-request' layer 5 rules */
2826 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2827 err = NULL;
2828 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002829 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002830 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002831 cfgerr++;
2832 }
2833 }
2834
Christopher Faulete4e830d2017-09-18 14:51:41 +02002835 /* check validity for 'tcp-request' layer 6 rules */
2836 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2837 err = NULL;
2838 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002839 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002840 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002841 cfgerr++;
2842 }
2843 }
2844
Christopher Faulete4e830d2017-09-18 14:51:41 +02002845 /* check validity for 'http-request' layer 7 rules */
2846 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2847 err = NULL;
2848 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002849 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002850 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002851 cfgerr++;
2852 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002853 }
2854
Christopher Faulete4e830d2017-09-18 14:51:41 +02002855 /* check validity for 'http-response' layer 7 rules */
2856 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2857 err = NULL;
2858 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002859 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002860 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002861 cfgerr++;
2862 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002863 }
2864
Willy Tarreaub3dc39d2014-04-28 22:06:57 +02002865 /* move any "block" rules at the beginning of the http-request rules */
2866 if (!LIST_ISEMPTY(&curproxy->block_rules)) {
2867 /* insert block_rules into http_req_rules at the beginning */
2868 curproxy->block_rules.p->n = curproxy->http_req_rules.n;
2869 curproxy->http_req_rules.n->p = curproxy->block_rules.p;
2870 curproxy->block_rules.n->p = &curproxy->http_req_rules;
2871 curproxy->http_req_rules.n = curproxy->block_rules.n;
2872 LIST_INIT(&curproxy->block_rules);
2873 }
2874
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002875 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002876 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002877
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002878 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002879 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
2880 free((void *)curproxy->table->peers.name);
2881 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002882 break;
2883 }
2884 }
2885
2886 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002887 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002888 curproxy->id, curproxy->table->peers.name);
2889 free((void *)curproxy->table->peers.name);
2890 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002891 cfgerr++;
2892 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002893 else if (curpeers->state == PR_STSTOPPED) {
2894 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002895 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002896 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002897 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002898 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2899 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002900 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002901 cfgerr++;
2902 }
2903 }
2904
Simon Horman9dc49962015-01-30 11:22:59 +09002905
2906 if (curproxy->email_alert.mailers.name) {
2907 struct mailers *curmailers = mailers;
2908
2909 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002910 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002911 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002912 }
Simon Horman9dc49962015-01-30 11:22:59 +09002913 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002914 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2915 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002916 free_email_alert(curproxy);
2917 cfgerr++;
2918 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002919 else {
2920 err = NULL;
2921 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002922 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002923 free(err);
2924 cfgerr++;
2925 }
2926 }
Simon Horman9dc49962015-01-30 11:22:59 +09002927 }
2928
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002929 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & ST_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002930 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002931 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002932 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2933 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002934 cfgerr++;
2935 goto out_uri_auth_compat;
2936 }
2937
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002938 if (curproxy->uri_auth && curproxy->uri_auth->userlist && !(curproxy->uri_auth->flags & ST_CONVDONE)) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002939 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002940 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002941 int i = 0;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002942
Willy Tarreau95fa4692010-02-01 13:05:50 +01002943 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2944 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002945
2946 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002947 uri_auth_compat_req[i++] = "realm";
2948 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2949 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002950
Willy Tarreau95fa4692010-02-01 13:05:50 +01002951 uri_auth_compat_req[i++] = "unless";
2952 uri_auth_compat_req[i++] = "{";
2953 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2954 uri_auth_compat_req[i++] = "}";
2955 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002956
Willy Tarreauff011f22011-01-06 17:51:27 +01002957 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2958 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002959 cfgerr++;
2960 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002961 }
2962
Willy Tarreauff011f22011-01-06 17:51:27 +01002963 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002964
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002965 if (curproxy->uri_auth->auth_realm) {
2966 free(curproxy->uri_auth->auth_realm);
2967 curproxy->uri_auth->auth_realm = NULL;
2968 }
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002969
2970 curproxy->uri_auth->flags |= ST_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002971 }
2972out_uri_auth_compat:
2973
Dragan Dosen43885c72015-10-01 13:18:13 +02002974 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002975 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002976 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2977 if (!curproxy->conf.logformat_sd_string) {
2978 /* set the default logformat_sd_string */
2979 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2980 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002981 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002982 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002983 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002984
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002985 /* compile the log format */
2986 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002987 if (curproxy->conf.logformat_string != default_http_log_format &&
2988 curproxy->conf.logformat_string != default_tcp_log_format &&
2989 curproxy->conf.logformat_string != clf_http_log_format)
2990 free(curproxy->conf.logformat_string);
2991 curproxy->conf.logformat_string = NULL;
2992 free(curproxy->conf.lfs_file);
2993 curproxy->conf.lfs_file = NULL;
2994 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002995
2996 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2997 free(curproxy->conf.logformat_sd_string);
2998 curproxy->conf.logformat_sd_string = NULL;
2999 free(curproxy->conf.lfsd_file);
3000 curproxy->conf.lfsd_file = NULL;
3001 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003002 }
3003
Willy Tarreau62a61232013-04-12 18:13:46 +02003004 if (curproxy->conf.logformat_string) {
3005 curproxy->conf.args.ctx = ARGC_LOG;
3006 curproxy->conf.args.file = curproxy->conf.lfs_file;
3007 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003008 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003009 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003010 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003011 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3012 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003013 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003014 cfgerr++;
3015 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003016 curproxy->conf.args.file = NULL;
3017 curproxy->conf.args.line = 0;
3018 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003019
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003020 if (curproxy->conf.logformat_sd_string) {
3021 curproxy->conf.args.ctx = ARGC_LOGSD;
3022 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3023 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003024 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003025 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 +01003026 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003027 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3028 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003029 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003030 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003031 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003032 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3033 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003034 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003035 cfgerr++;
3036 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003037 curproxy->conf.args.file = NULL;
3038 curproxy->conf.args.line = 0;
3039 }
3040
Willy Tarreau62a61232013-04-12 18:13:46 +02003041 if (curproxy->conf.uniqueid_format_string) {
3042 curproxy->conf.args.ctx = ARGC_UIF;
3043 curproxy->conf.args.file = curproxy->conf.uif_file;
3044 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003045 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003046 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 +01003047 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003048 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3049 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003050 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003051 cfgerr++;
3052 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003053 curproxy->conf.args.file = NULL;
3054 curproxy->conf.args.line = 0;
3055 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003056
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003057 /* only now we can check if some args remain unresolved.
3058 * This must be done after the users and groups resolution.
3059 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003060 cfgerr += smp_resolve_args(curproxy);
3061 if (!cfgerr)
3062 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003063
Willy Tarreau2738a142006-07-08 17:28:09 +02003064 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003065 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003066 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003067 (!curproxy->timeout.connect ||
3068 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003069 ha_warning("config : missing timeouts for %s '%s'.\n"
3070 " | While not properly invalid, you will certainly encounter various problems\n"
3071 " | with such a configuration. To fix this, please ensure that all following\n"
3072 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3073 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003074 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003075 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003076
Willy Tarreau1fa31262007-12-03 00:36:16 +01003077 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3078 * We must still support older configurations, so let's find out whether those
3079 * parameters have been set or must be copied from contimeouts.
3080 */
3081 if (curproxy != &defproxy) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003082 if (!curproxy->timeout.tarpit ||
3083 curproxy->timeout.tarpit == defproxy.timeout.tarpit) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003084 /* tarpit timeout not set. We search in the following order:
3085 * default.tarpit, curr.connect, default.connect.
3086 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003087 if (defproxy.timeout.tarpit)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003088 curproxy->timeout.tarpit = defproxy.timeout.tarpit;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003089 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003090 curproxy->timeout.tarpit = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003091 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003092 curproxy->timeout.tarpit = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003093 }
3094 if ((curproxy->cap & PR_CAP_BE) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003095 (!curproxy->timeout.queue ||
3096 curproxy->timeout.queue == defproxy.timeout.queue)) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003097 /* queue timeout not set. We search in the following order:
3098 * default.queue, curr.connect, default.connect.
3099 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003100 if (defproxy.timeout.queue)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003101 curproxy->timeout.queue = defproxy.timeout.queue;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003102 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003103 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003104 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003105 curproxy->timeout.queue = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003106 }
3107 }
3108
Willy Tarreau1620ec32011-08-06 17:05:02 +02003109 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_SSL3_CHK) {
Willy Tarreau137325d2010-02-01 16:38:17 +01003110 curproxy->check_len = sizeof(sslv3_client_hello_pkt) - 1;
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003111 curproxy->check_req = malloc(curproxy->check_len);
Willy Tarreau137325d2010-02-01 16:38:17 +01003112 memcpy(curproxy->check_req, sslv3_client_hello_pkt, curproxy->check_len);
Willy Tarreauf3c69202006-07-09 16:42:34 +02003113 }
3114
Willy Tarreau215663d2014-06-13 18:30:23 +02003115 if (!LIST_ISEMPTY(&curproxy->tcpcheck_rules) &&
3116 (curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_TCPCHK_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003117 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
3118 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003119 err_code |= ERR_WARN;
3120 }
3121
Willy Tarreau193b8c62012-11-22 00:17:38 +01003122 /* ensure that cookie capture length is not too large */
3123 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003124 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3125 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003126 err_code |= ERR_WARN;
3127 curproxy->capture_len = global.tune.cookie_len - 1;
3128 }
3129
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003130 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003131 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003132 curproxy->req_cap_pool = create_pool("ptrcap",
3133 curproxy->nb_req_cap * sizeof(char *),
3134 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003135 }
3136
3137 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003138 curproxy->rsp_cap_pool = create_pool("ptrcap",
3139 curproxy->nb_rsp_cap * sizeof(char *),
3140 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003141 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003142
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003143 switch (curproxy->load_server_state_from_file) {
3144 case PR_SRV_STATE_FILE_UNSPEC:
3145 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3146 break;
3147 case PR_SRV_STATE_FILE_GLOBAL:
3148 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003149 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",
3150 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003151 err_code |= ERR_WARN;
3152 }
3153 break;
3154 }
3155
Willy Tarreaubaaee002006-06-26 02:48:02 +02003156 /* first, we will invert the servers list order */
3157 newsrv = NULL;
3158 while (curproxy->srv) {
3159 struct server *next;
3160
3161 next = curproxy->srv->next;
3162 curproxy->srv->next = newsrv;
3163 newsrv = curproxy->srv;
3164 if (!next)
3165 break;
3166 curproxy->srv = next;
3167 }
3168
Willy Tarreau17edc812014-01-03 12:14:34 +01003169 /* Check that no server name conflicts. This causes trouble in the stats.
3170 * We only emit a warning for the first conflict affecting each server,
3171 * in order to avoid combinatory explosion if all servers have the same
3172 * name. We do that only for servers which do not have an explicit ID,
3173 * because these IDs were made also for distinguishing them and we don't
3174 * want to annoy people who correctly manage them.
3175 */
3176 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3177 struct server *other_srv;
3178
3179 if (newsrv->puid)
3180 continue;
3181
3182 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3183 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003184 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 +01003185 newsrv->conf.file, newsrv->conf.line,
3186 proxy_type_str(curproxy), curproxy->id,
3187 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003188 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003189 break;
3190 }
3191 }
3192 }
3193
Willy Tarreaudd701652010-05-25 23:03:02 +02003194 /* assign automatic UIDs to servers which don't have one yet */
3195 next_id = 1;
3196 newsrv = curproxy->srv;
3197 while (newsrv != NULL) {
3198 if (!newsrv->puid) {
3199 /* server ID not set, use automatic numbering with first
3200 * spare entry starting with next_svid.
3201 */
3202 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3203 newsrv->conf.id.key = newsrv->puid = next_id;
3204 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003205 newsrv->conf.name.key = newsrv->id;
3206 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003207 }
3208 next_id++;
3209 newsrv = newsrv->next;
3210 }
3211
Willy Tarreau20697042007-11-15 23:26:18 +01003212 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003213 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003214
Willy Tarreau62c3be22012-01-20 13:12:32 +01003215 /*
3216 * If this server supports a maxconn parameter, it needs a dedicated
3217 * tasks to fill the emptied slots when a connection leaves.
3218 * Also, resolve deferred tracking dependency if needed.
3219 */
3220 newsrv = curproxy->srv;
3221 while (newsrv != NULL) {
3222 if (newsrv->minconn > newsrv->maxconn) {
3223 /* Only 'minconn' was specified, or it was higher than or equal
3224 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3225 * this will avoid further useless expensive computations.
3226 */
3227 newsrv->maxconn = newsrv->minconn;
3228 } else if (newsrv->maxconn && !newsrv->minconn) {
3229 /* minconn was not specified, so we set it to maxconn */
3230 newsrv->minconn = newsrv->maxconn;
3231 }
3232
Willy Tarreau17d45382016-12-22 21:16:08 +01003233 /* this will also properly set the transport layer for prod and checks */
Christopher Faulet68d35ae2020-03-27 18:55:49 +01003234 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 || (newsrv->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003235 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3236 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3237 }
Emeric Brun94324a42012-10-11 14:00:19 +02003238
Willy Tarreau034c88c2017-01-23 23:36:45 +01003239 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3240 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3241 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3242 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",
3243 newsrv->conf.file, newsrv->conf.line,
3244 proxy_type_str(curproxy), curproxy->id,
3245 newsrv->id);
3246
Willy Tarreau62c3be22012-01-20 13:12:32 +01003247 if (newsrv->trackit) {
3248 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003249 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003250 char *pname, *sname;
3251
3252 pname = newsrv->trackit;
3253 sname = strrchr(pname, '/');
3254
3255 if (sname)
3256 *sname++ = '\0';
3257 else {
3258 sname = pname;
3259 pname = NULL;
3260 }
3261
3262 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003263 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003264 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003265 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3266 proxy_type_str(curproxy), curproxy->id,
3267 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003268 cfgerr++;
3269 goto next_srv;
3270 }
3271 } else
3272 px = curproxy;
3273
3274 srv = findserver(px, sname);
3275 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003276 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3277 proxy_type_str(curproxy), curproxy->id,
3278 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003279 cfgerr++;
3280 goto next_srv;
3281 }
3282
Christopher Fauletc6e07702020-03-26 19:48:20 +01003283 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003284 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3285 "tracking as it does not have any check nor agent enabled.\n",
3286 proxy_type_str(curproxy), curproxy->id,
3287 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003288 cfgerr++;
3289 goto next_srv;
3290 }
3291
3292 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3293
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003294 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003295 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3296 "belongs to a tracking chain looping back to %s/%s.\n",
3297 proxy_type_str(curproxy), curproxy->id,
3298 newsrv->id, px->id, srv->id, px->id,
3299 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003300 cfgerr++;
3301 goto next_srv;
3302 }
3303
3304 if (curproxy != px &&
3305 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003306 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3307 "tracking: disable-on-404 option inconsistency.\n",
3308 proxy_type_str(curproxy), curproxy->id,
3309 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003310 cfgerr++;
3311 goto next_srv;
3312 }
3313
Willy Tarreau62c3be22012-01-20 13:12:32 +01003314 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003315 newsrv->tracknext = srv->trackers;
3316 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003317
3318 free(newsrv->trackit);
3319 newsrv->trackit = NULL;
3320 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003321
Willy Tarreau62c3be22012-01-20 13:12:32 +01003322 next_srv:
3323 newsrv = newsrv->next;
3324 }
3325
Olivier Houchard4e694042017-03-14 20:01:29 +01003326 /*
3327 * Try to generate dynamic cookies for servers now.
3328 * It couldn't be done earlier, since at the time we parsed
3329 * the server line, we may not have known yet that we
3330 * should use dynamic cookies, or the secret key may not
3331 * have been provided yet.
3332 */
3333 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3334 newsrv = curproxy->srv;
3335 while (newsrv != NULL) {
3336 srv_set_dyncookie(newsrv);
3337 newsrv = newsrv->next;
3338 }
3339
3340 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003341 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003342 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003343 */
3344
3345 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3346 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3347 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003348 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3349 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3350 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003351 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3352 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3353 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003354 } else {
3355 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3356 fwrr_init_server_groups(curproxy);
3357 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003358 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003359
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003360 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003361 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3362 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3363 fwlc_init_server_tree(curproxy);
3364 } else {
3365 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3366 fas_init_server_tree(curproxy);
3367 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003368 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003369
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003370 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003371 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3372 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3373 chash_init_server_tree(curproxy);
3374 } else {
3375 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3376 init_server_map(curproxy);
3377 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003378 break;
3379 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003380 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003381
3382 if (curproxy->options & PR_O_LOGASAP)
3383 curproxy->to_log &= ~LW_BYTES;
3384
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003385 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003386 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3387 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003388 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3389 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003390 err_code |= ERR_WARN;
3391 }
3392
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003393 if (curproxy->mode != PR_MODE_HTTP) {
3394 int optnum;
3395
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003396 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003397 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3398 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003399 err_code |= ERR_WARN;
3400 curproxy->uri_auth = NULL;
3401 }
3402
Willy Tarreaude7dc882017-03-10 11:49:21 +01003403 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003404 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3405 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003406 err_code |= ERR_WARN;
3407 }
3408
3409 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003410 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3411 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003412 err_code |= ERR_WARN;
3413 }
3414
3415 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003416 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3417 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003418 err_code |= ERR_WARN;
3419 }
3420
3421 if (!LIST_ISEMPTY(&curproxy->block_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003422 ha_warning("config : 'block' rules ignored for %s '%s' as they require HTTP mode.\n",
3423 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003424 err_code |= ERR_WARN;
3425 }
3426
3427 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003428 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3429 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003430 err_code |= ERR_WARN;
3431 }
3432
Willy Tarreau87cf5142011-08-19 22:57:24 +02003433 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003434 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3435 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003436 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003437 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003438 }
3439
3440 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003441 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3442 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003443 err_code |= ERR_WARN;
3444 curproxy->options &= ~PR_O_ORGTO;
3445 }
3446
3447 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3448 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3449 (curproxy->cap & cfg_opts[optnum].cap) &&
3450 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003451 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3452 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003453 err_code |= ERR_WARN;
3454 curproxy->options &= ~cfg_opts[optnum].val;
3455 }
3456 }
3457
3458 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3459 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3460 (curproxy->cap & cfg_opts2[optnum].cap) &&
3461 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003462 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3463 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003464 err_code |= ERR_WARN;
3465 curproxy->options2 &= ~cfg_opts2[optnum].val;
3466 }
3467 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003468
Willy Tarreau29fbe512015-08-20 19:35:14 +02003469#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003470 if (curproxy->conn_src.bind_hdr_occ) {
3471 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003472 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3473 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003474 err_code |= ERR_WARN;
3475 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003476#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003477 }
3478
Willy Tarreaubaaee002006-06-26 02:48:02 +02003479 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003480 * ensure that we're not cross-dressing a TCP server into HTTP.
3481 */
3482 newsrv = curproxy->srv;
3483 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003484 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003485 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3486 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003487 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003488 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003489
Willy Tarreau0cec3312011-10-31 13:49:26 +01003490 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003491 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3492 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003493 err_code |= ERR_WARN;
3494 }
3495
Willy Tarreauc93cd162014-05-13 15:54:22 +02003496 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003497 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3498 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003499 err_code |= ERR_WARN;
3500 }
3501
Willy Tarreau29fbe512015-08-20 19:35:14 +02003502#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003503 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3504 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003505 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3506 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003507 err_code |= ERR_WARN;
3508 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003509#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003510
Willy Tarreau46deab62018-04-28 07:18:15 +02003511 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3512 curproxy->options &= ~PR_O_REUSE_MASK;
3513
Willy Tarreau21d2af32008-02-14 20:25:24 +01003514 newsrv = newsrv->next;
3515 }
3516
Willy Tarreaue42bd962014-09-16 16:21:19 +02003517 /* check if we have a frontend with "tcp-request content" looking at L7
3518 * with no inspect-delay
3519 */
3520 if ((curproxy->cap & PR_CAP_FE) && !curproxy->tcp_req.inspect_delay) {
Christopher Faulete4e830d2017-09-18 14:51:41 +02003521 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
3522 if (arule->action == ACT_TCP_CAPTURE &&
3523 !(arule->arg.cap.expr->fetch->val & SMP_VAL_FE_SES_ACC))
Willy Tarreaue42bd962014-09-16 16:21:19 +02003524 break;
Christopher Faulete4e830d2017-09-18 14:51:41 +02003525 if ((arule->action >= ACT_ACTION_TRK_SC0 && arule->action <= ACT_ACTION_TRK_SCMAX) &&
3526 !(arule->arg.trk_ctr.expr->fetch->val & SMP_VAL_FE_SES_ACC))
Willy Tarreaue42bd962014-09-16 16:21:19 +02003527 break;
3528 }
3529
Christopher Faulete4e830d2017-09-18 14:51:41 +02003530 if (&arule->list != &curproxy->tcp_req.inspect_rules) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003531 ha_warning("config : %s '%s' : some 'tcp-request content' rules explicitly depending on request"
3532 " contents were found in a frontend without any 'tcp-request inspect-delay' setting."
3533 " This means that these rules will randomly find their contents. This can be fixed by"
3534 " setting the tcp-request inspect-delay.\n",
3535 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue42bd962014-09-16 16:21:19 +02003536 err_code |= ERR_WARN;
3537 }
3538 }
3539
Christopher Fauletd7c91962015-04-30 11:48:27 +02003540 /* Check filter configuration, if any */
3541 cfgerr += flt_check(curproxy);
3542
Willy Tarreauc1a21672009-08-16 22:37:44 +02003543 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003544 if (!curproxy->accept)
3545 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003546
Willy Tarreauc1a21672009-08-16 22:37:44 +02003547 if (curproxy->tcp_req.inspect_delay ||
3548 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003549 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003550
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003551 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003552 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003553 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003554 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003555
William Lallemandcf62f7e2018-10-26 14:47:40 +02003556 if (curproxy->mode == PR_MODE_CLI) {
3557 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3558 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3559 }
3560
Willy Tarreauc1a21672009-08-16 22:37:44 +02003561 /* both TCP and HTTP must check switching rules */
3562 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003563
3564 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003565 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003566 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3567 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 +01003568 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003569 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3570 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003571 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003572 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003573 }
3574
3575 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003576 if (curproxy->tcp_req.inspect_delay ||
3577 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3578 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3579
Emeric Brun97679e72010-09-23 17:56:44 +02003580 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3581 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3582
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003583 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003584 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003585 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003586 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003587
3588 /* If the backend does requires RDP cookie persistence, we have to
3589 * enable the corresponding analyser.
3590 */
3591 if (curproxy->options2 & PR_O2_RDPC_PRST)
3592 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003593
3594 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003595 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003596 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3597 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 +01003598 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003599 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3600 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003601 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003602 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003603 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003604
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003605 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003606 * attached to the current proxy */
3607 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3608 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003609 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003610
Christopher Faulet49040582019-04-24 15:25:00 +02003611 /* Special case for HTX because legacy HTTP still exists */
3612 if (mode == PROTO_MODE_HTTP && (curproxy->options2 & PR_O2_USE_HTX))
Christopher Faulet7ff4f142018-11-20 11:23:52 +01003613 mode = PROTO_MODE_HTX;
3614
Christopher Fauleta717b992018-04-10 14:43:00 +02003615 if (!bind_conf->mux_proto)
3616 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003617
3618 /* it is possible that an incorrect mux was referenced
3619 * due to the proxy's mode not being taken into account
3620 * on first pass. Let's adjust it now.
3621 */
3622 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3623
3624 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003625 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3626 proxy_type_str(curproxy), curproxy->id,
3627 (int)bind_conf->mux_proto->token.len,
3628 bind_conf->mux_proto->token.ptr,
3629 bind_conf->arg, bind_conf->file, bind_conf->line);
3630 cfgerr++;
3631 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003632
3633 /* update the mux */
3634 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003635 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003636 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3637 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003638 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003639
Christopher Faulet49040582019-04-24 15:25:00 +02003640 /* Special case for HTX because legacy HTTP still exists */
3641 if (mode == PROTO_MODE_HTTP && (curproxy->options2 & PR_O2_USE_HTX))
Christopher Faulet7ff4f142018-11-20 11:23:52 +01003642 mode = PROTO_MODE_HTX;
3643
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003644 if (!newsrv->mux_proto)
3645 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003646
3647 /* it is possible that an incorrect mux was referenced
3648 * due to the proxy's mode not being taken into account
3649 * on first pass. Let's adjust it now.
3650 */
3651 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3652
3653 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003654 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3655 proxy_type_str(curproxy), curproxy->id,
3656 (int)newsrv->mux_proto->token.len,
3657 newsrv->mux_proto->token.ptr,
3658 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3659 cfgerr++;
3660 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003661
3662 /* update the mux */
3663 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003664 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003665
Christopher Faulet6c9bbb22019-03-26 21:37:23 +01003666 /* the option "http-tunnel" is ignored when HTX is enabled and
3667 * only works with the legacy HTTP. So emit a warning if the
3668 * option is set on a HTX frontend. */
3669 if ((curproxy->cap & PR_CAP_FE) && curproxy->options2 & PR_O2_USE_HTX &&
3670 (curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN) {
3671 ha_warning("config : %s '%s' : the option 'http-tunnel' is ignored for HTX proxies.\n",
3672 proxy_type_str(curproxy), curproxy->id);
3673 curproxy->options &= ~PR_O_HTTP_MODE;
3674 }
3675
Willy Tarreau835daa12019-02-07 14:46:29 +01003676 /* initialize idle conns lists */
3677 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3678 int i;
3679
3680 newsrv->priv_conns = calloc(global.nbthread, sizeof(*newsrv->priv_conns));
3681 newsrv->idle_conns = calloc(global.nbthread, sizeof(*newsrv->idle_conns));
3682 newsrv->safe_conns = calloc(global.nbthread, sizeof(*newsrv->safe_conns));
3683
3684 if (!newsrv->priv_conns || !newsrv->idle_conns || !newsrv->safe_conns) {
Willy Tarreau980855b2019-02-07 14:59:29 +01003685 free(newsrv->safe_conns); newsrv->safe_conns = NULL;
3686 free(newsrv->idle_conns); newsrv->idle_conns = NULL;
3687 free(newsrv->priv_conns); newsrv->priv_conns = NULL;
Willy Tarreau835daa12019-02-07 14:46:29 +01003688 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3689 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3690 cfgerr++;
3691 continue;
3692 }
3693
3694 for (i = 0; i < global.nbthread; i++) {
3695 LIST_INIT(&newsrv->priv_conns[i]);
3696 LIST_INIT(&newsrv->idle_conns[i]);
3697 LIST_INIT(&newsrv->safe_conns[i]);
3698 }
Willy Tarreau980855b2019-02-07 14:59:29 +01003699
3700 if (newsrv->max_idle_conns != 0) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003701 if (idle_conn_task == NULL) {
3702 idle_conn_task = task_new(MAX_THREADS_MASK);
3703 if (!idle_conn_task)
3704 goto err;
3705 idle_conn_task->process = srv_cleanup_idle_connections;
3706 idle_conn_task->context = NULL;
3707 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau5fa7e732019-10-18 08:50:49 +02003708 idle_conn_cleanup[i] = task_new(1UL << i);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003709 if (!idle_conn_cleanup[i])
3710 goto err;
3711 idle_conn_cleanup[i]->process = srv_cleanup_toremove_connections;
3712 idle_conn_cleanup[i]->context = NULL;
Olivier Houchard0db0b042020-06-29 17:48:27 +02003713 HA_SPIN_INIT(&toremove_lock[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003714 LIST_INIT(&toremove_connections[i]);
3715 }
3716 }
Willy Tarreauae7dbbf2020-01-24 11:19:13 +01003717 newsrv->idle_orphan_conns = calloc((unsigned short)global.nbthread, sizeof(*newsrv->idle_orphan_conns));
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003718 if (!newsrv->idle_orphan_conns)
Willy Tarreau980855b2019-02-07 14:59:29 +01003719 goto err;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003720 for (i = 0; i < global.nbthread; i++)
Willy Tarreau980855b2019-02-07 14:59:29 +01003721 LIST_INIT(&newsrv->idle_orphan_conns[i]);
Tim Duesterhusa57ea192020-02-22 16:39:05 +01003722 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
Olivier Houchardf1314812019-02-18 16:41:17 +01003723 if (!newsrv->curr_idle_thr)
3724 goto err;
Willy Tarreau980855b2019-02-07 14:59:29 +01003725 continue;
3726 err:
3727 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3728 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3729 cfgerr++;
3730 continue;
3731 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003732 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003733 }
3734
3735 /***********************************************************/
3736 /* At this point, target names have already been resolved. */
3737 /***********************************************************/
3738
3739 /* Check multi-process mode compatibility */
3740
3741 if (global.nbproc > 1 && global.stats_fe) {
3742 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3743 unsigned long mask;
3744
Willy Tarreau6daac192019-02-02 17:39:53 +01003745 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
3746 mask &= proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003747
3748 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003749 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003750 break;
3751 }
3752 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003753 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 +02003754 }
3755 }
3756
3757 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003758 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003759 if (curproxy->bind_proc)
3760 continue;
3761
3762 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3763 unsigned long mask;
3764
Willy Tarreau6daac192019-02-02 17:39:53 +01003765 mask = proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003766 curproxy->bind_proc |= mask;
3767 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003768 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003769 }
3770
3771 if (global.stats_fe) {
3772 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3773 unsigned long mask;
3774
Cyril Bonté06181952016-02-24 00:14:54 +01003775 mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003776 global.stats_fe->bind_proc |= mask;
3777 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003778 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003779 }
3780
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003781 /* propagate bindings from frontends to backends. Don't do it if there
3782 * are any fatal errors as we must not call it with unresolved proxies.
3783 */
3784 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003785 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003786 if (curproxy->cap & PR_CAP_FE)
3787 propagate_processes(curproxy, NULL);
3788 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003789 }
3790
3791 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003792 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3793 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003794
3795 /*******************************************************/
3796 /* At this step, all proxies have a non-null bind_proc */
3797 /*******************************************************/
3798
3799 /* perform the final checks before creating tasks */
3800
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003801 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003802 struct listener *listener;
3803 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003804
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003805 /* Configure SSL for each bind line.
3806 * Note: if configuration fails at some point, the ->ctx member
3807 * remains NULL so that listeners can later detach.
3808 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003809 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003810 if (bind_conf->xprt->prepare_bind_conf &&
3811 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003812 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003813 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003814
Willy Tarreaue6b98942007-10-29 01:09:36 +01003815 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003816 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003817 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003818 int nbproc;
3819
3820 nbproc = my_popcountl(curproxy->bind_proc &
Cyril Bonté4920d702016-04-15 07:58:43 +02003821 (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003822 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003823
3824 if (!nbproc) /* no intersection between listener and frontend */
3825 nbproc = 1;
3826
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003827 if (!listener->luid) {
3828 /* listener ID not set, use automatic numbering with first
3829 * spare entry starting with next_luid.
3830 */
3831 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3832 listener->conf.id.key = listener->luid = next_id;
3833 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003834 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003835 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003836
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003837 /* enable separate counters */
3838 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003839 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003840 if (!listener->name)
3841 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003842 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003843
Willy Tarreaue6b98942007-10-29 01:09:36 +01003844 if (curproxy->options & PR_O_TCP_NOLING)
3845 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003846 if (!listener->maxaccept)
3847 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3848
3849 /* we want to have an optimal behaviour on single process mode to
3850 * maximize the work at once, but in multi-process we want to keep
3851 * some fairness between processes, so we target half of the max
3852 * number of events to be balanced over all the processes the proxy
3853 * is bound to. Rememeber that maxaccept = -1 must be kept as it is
3854 * used to disable the limit.
3855 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003856 if (listener->maxaccept > 0 && nbproc > 1) {
3857 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003858 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3859 }
3860
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003861 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003862 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003863 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003864
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003865 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003866 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003867
Willy Tarreau620408f2016-10-21 16:37:51 +02003868 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3869 listener->options |= LI_O_TCP_L5_RULES;
3870
Willy Tarreaude3041d2010-05-31 10:56:17 +02003871 if (curproxy->mon_mask.s_addr)
3872 listener->options |= LI_O_CHK_MONNET;
3873
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003874 /* smart accept mode is automatic in HTTP mode */
3875 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003876 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003877 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3878 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003879 }
3880
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003881 /* Release unused SSL configs */
3882 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003883 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3884 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003885 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003886
Willy Tarreaua38a7172019-02-02 17:11:28 +01003887 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003888 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003889 int count, maxproc = 0;
3890
3891 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
David Carliere6c39412015-07-02 07:00:17 +00003892 count = my_popcountl(bind_conf->bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003893 if (count > maxproc)
3894 maxproc = count;
3895 }
3896 /* backends have 0, frontends have 1 or more */
3897 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003898 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3899 " limited to process assigned to the current request.\n",
3900 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003901
Willy Tarreau102df612014-05-07 23:56:38 +02003902 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003903 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3904 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003905 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003906 }
Willy Tarreau102df612014-05-07 23:56:38 +02003907 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003908 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3909 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003910 }
3911 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003912
3913 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003914 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003915 if (curproxy->task) {
3916 curproxy->task->context = curproxy;
3917 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003918 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003919 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3920 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003921 cfgerr++;
3922 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003923 }
3924
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003925 /*
3926 * Recount currently required checks.
3927 */
3928
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003929 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003930 int optnum;
3931
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003932 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3933 if (curproxy->options & cfg_opts[optnum].val)
3934 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003935
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003936 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3937 if (curproxy->options2 & cfg_opts2[optnum].val)
3938 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003939 }
3940
Willy Tarreau0fca4832015-05-01 19:12:05 +02003941 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003942 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003943 if (curproxy->table && curproxy->table->peers.p)
3944 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003945
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003946 /* compute the required process bindings for the peers from <stktables_list>
3947 * for all the stick-tables, the ones coming with "peers" sections included.
3948 */
3949 for (t = stktables_list; t; t = t->next) {
3950 struct proxy *p;
3951
3952 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3953 if (t->peers.p && t->peers.p->peers_fe) {
3954 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3955 }
3956 }
3957 }
3958
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003959 if (cfg_peers) {
3960 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003961 struct peer *p, *pb;
3962
William Lallemand98235322020-03-24 16:02:48 +01003963 /* In the case the peers frontend was not initialized by a
3964 stick-table used in the configuration, set its bind_proc
3965 by default to the first process. */
3966 while (curpeers) {
William Lallemand0412f692020-03-24 16:42:15 +01003967 if (curpeers->peers_fe) {
3968 if (curpeers->peers_fe->bind_proc == 0)
3969 curpeers->peers_fe->bind_proc = 1;
3970 }
William Lallemand98235322020-03-24 16:02:48 +01003971 curpeers = curpeers->next;
3972 }
3973
3974 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003975 /* Remove all peers sections which don't have a valid listener,
3976 * which are not used by any table, or which are bound to more
3977 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003978 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003979 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003980 while (*last) {
Frédéric Lécaillea30b1d72020-03-24 20:08:30 +01003981 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003982 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003983
3984 if (curpeers->state == PR_STSTOPPED) {
3985 /* the "disabled" keyword was present */
3986 if (curpeers->peers_fe)
3987 stop_proxy(curpeers->peers_fe);
3988 curpeers->peers_fe = NULL;
3989 }
Frédéric Lécaille854079b2019-10-04 08:30:04 +02003990 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003991 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3992 curpeers->id, localpeer);
Frédéric Lécaillea30b1d72020-03-24 20:08:30 +01003993 if (curpeers->peers_fe)
3994 stop_proxy(curpeers->peers_fe);
3995 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003996 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003997 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003998 /* either it's totally stopped or too much used */
3999 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004000 ha_alert("Peers section '%s': peers referenced by sections "
4001 "running in different processes (%d different ones). "
4002 "Check global.nbproc and all tables' bind-process "
4003 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02004004 cfgerr++;
4005 }
4006 stop_proxy(curpeers->peers_fe);
4007 curpeers->peers_fe = NULL;
4008 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004009 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004010 /* Initializes the transport layer of the server part of all the peers belonging to
4011 * <curpeers> section if required.
4012 * Note that ->srv is used by the local peer of a new process to connect to the local peer
4013 * of an old process.
4014 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004015 p = curpeers->remote;
4016 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004017 if (p->srv) {
Christopher Faulet68d35ae2020-03-27 18:55:49 +01004018 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 +01004019 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
4020 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004021 p = p->next;
4022 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004023 /* Configure the SSL bindings of the local peer if required. */
4024 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
4025 struct list *l;
4026 struct bind_conf *bind_conf;
4027
4028 l = &curpeers->peers_fe->conf.bind;
4029 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
4030 if (bind_conf->xprt->prepare_bind_conf &&
4031 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4032 cfgerr++;
4033 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004034 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004035 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4036 curpeers->id);
4037 cfgerr++;
4038 break;
4039 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004040 last = &curpeers->next;
4041 continue;
4042 }
4043
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004044 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004045 p = curpeers->remote;
4046 while (p) {
4047 pb = p->next;
4048 free(p->id);
4049 free(p);
4050 p = pb;
4051 }
4052
4053 /* Destroy and unlink this curpeers section.
4054 * Note: curpeers is backed up into *last.
4055 */
4056 free(curpeers->id);
4057 curpeers = curpeers->next;
Frédéric Lécaillea30b1d72020-03-24 20:08:30 +01004058 /* Reset any refereance to this peers section in the list of stick-tables */
4059 for (t = stktables_list; t; t = t->next) {
4060 if (t->peers.p && t->peers.p == *last)
4061 t->peers.p = NULL;
4062 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004063 free(*last);
4064 *last = curpeers;
4065 }
4066 }
4067
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004068 for (t = stktables_list; t; t = t->next) {
4069 if (t->proxy)
4070 continue;
4071 if (!stktable_init(t)) {
4072 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4073 cfgerr++;
4074 }
4075 }
4076
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004077 /* initialize stick-tables on backend capable proxies. This must not
4078 * be done earlier because the data size may be discovered while parsing
4079 * other proxies.
4080 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004081 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004082 if (curproxy->state == PR_STSTOPPED || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004083 continue;
4084
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004085 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004086 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004087 cfgerr++;
4088 }
4089 }
4090
Simon Horman0d16a402015-01-30 11:22:58 +09004091 if (mailers) {
4092 struct mailers *curmailers = mailers, **last;
4093 struct mailer *m, *mb;
4094
4095 /* Remove all mailers sections which don't have a valid listener.
4096 * This can happen when a mailers section is never referenced.
4097 */
4098 last = &mailers;
4099 while (*last) {
4100 curmailers = *last;
4101 if (curmailers->users) {
4102 last = &curmailers->next;
4103 continue;
4104 }
4105
Christopher Faulet767a84b2017-11-24 16:50:31 +01004106 ha_warning("Removing incomplete section 'mailers %s'.\n",
4107 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004108
4109 m = curmailers->mailer_list;
4110 while (m) {
4111 mb = m->next;
4112 free(m->id);
4113 free(m);
4114 m = mb;
4115 }
4116
4117 /* Destroy and unlink this curmailers section.
4118 * Note: curmailers is backed up into *last.
4119 */
4120 free(curmailers->id);
4121 curmailers = curmailers->next;
4122 free(*last);
4123 *last = curmailers;
4124 }
4125 }
4126
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004127 /* Update server_state_file_name to backend name if backend is supposed to use
4128 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004129 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004130 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4131 curproxy->server_state_file_name == NULL)
4132 curproxy->server_state_file_name = strdup(curproxy->id);
4133 }
4134
Willy Tarreaubafbe012017-11-24 17:34:44 +01004135 pool_head_hdr_idx = create_pool("hdr_idx",
Willy Tarreauac1932d2011-10-24 19:14:41 +02004136 global.tune.max_http_hdr * sizeof(struct hdr_idx_elem),
Willy Tarreau34eb6712011-10-24 18:15:04 +02004137 MEM_F_SHARED);
4138
Ben Draut054fbee2018-04-13 15:43:04 -06004139 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
4140 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
4141 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
4142 curr_resolvers->id, curr_resolvers->conf.file,
4143 curr_resolvers->conf.line);
4144 err_code |= ERR_WARN;
4145 }
4146 }
4147
William Lallemand48b4bb42017-10-23 14:36:34 +02004148 list_for_each_entry(postparser, &postparsers, list) {
4149 if (postparser->func)
4150 cfgerr += postparser->func();
4151 }
4152
Willy Tarreaubb925012009-07-23 13:36:36 +02004153 if (cfgerr > 0)
4154 err_code |= ERR_ALERT | ERR_FATAL;
4155 out:
4156 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004157}
4158
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004159/*
4160 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4161 * parsing sessions.
4162 */
4163void cfg_register_keywords(struct cfg_kw_list *kwl)
4164{
4165 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
4166}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004167
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004168/*
4169 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4170 */
4171void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4172{
4173 LIST_DEL(&kwl->list);
4174 LIST_INIT(&kwl->list);
4175}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004176
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004177/* this function register new section in the haproxy configuration file.
4178 * <section_name> is the name of this new section and <section_parser>
4179 * is the called parser. If two section declaration have the same name,
4180 * only the first declared is used.
4181 */
4182int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004183 int (*section_parser)(const char *, int, char **, int),
4184 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004185{
4186 struct cfg_section *cs;
4187
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004188 list_for_each_entry(cs, &sections, list) {
4189 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004190 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004191 return 0;
4192 }
4193 }
4194
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004195 cs = calloc(1, sizeof(*cs));
4196 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004197 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004198 return 0;
4199 }
4200
4201 cs->section_name = section_name;
4202 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004203 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004204
4205 LIST_ADDQ(&sections, &cs->list);
4206
4207 return 1;
4208}
4209
William Lallemand48b4bb42017-10-23 14:36:34 +02004210/* this function register a new function which will be called once the haproxy
4211 * configuration file has been parsed. It's useful to check dependencies
4212 * between sections or to resolve items once everything is parsed.
4213 */
4214int cfg_register_postparser(char *name, int (*func)())
4215{
4216 struct cfg_postparser *cp;
4217
4218 cp = calloc(1, sizeof(*cp));
4219 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004220 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004221 return 0;
4222 }
4223 cp->name = name;
4224 cp->func = func;
4225
4226 LIST_ADDQ(&postparsers, &cp->list);
4227
4228 return 1;
4229}
4230
Willy Tarreaubaaee002006-06-26 02:48:02 +02004231/*
David Carlier845efb52015-09-25 11:49:18 +01004232 * free all config section entries
4233 */
4234void cfg_unregister_sections(void)
4235{
4236 struct cfg_section *cs, *ics;
4237
4238 list_for_each_entry_safe(cs, ics, &sections, list) {
4239 LIST_DEL(&cs->list);
4240 free(cs);
4241 }
4242}
4243
Christopher Faulet7110b402016-10-26 11:09:44 +02004244void cfg_backup_sections(struct list *backup_sections)
4245{
4246 struct cfg_section *cs, *ics;
4247
4248 list_for_each_entry_safe(cs, ics, &sections, list) {
4249 LIST_DEL(&cs->list);
4250 LIST_ADDQ(backup_sections, &cs->list);
4251 }
4252}
4253
4254void cfg_restore_sections(struct list *backup_sections)
4255{
4256 struct cfg_section *cs, *ics;
4257
4258 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4259 LIST_DEL(&cs->list);
4260 LIST_ADDQ(&sections, &cs->list);
4261 }
4262}
4263
Willy Tarreaue6552512018-11-26 11:33:13 +01004264/* these are the config sections handled by default */
4265REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4266REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4267REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4268REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4269REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4270REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4271REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4272REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4273REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4274REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004275
David Carlier845efb52015-09-25 11:49:18 +01004276/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004277 * Local variables:
4278 * c-indent-level: 8
4279 * c-basic-offset: 8
4280 * End:
4281 */