blob: 7c316df05c17483a4031ab0f24e5465646063ca1 [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
Cyril Bonté1a0191d2014-08-29 20:20:02 +020013#ifdef CONFIG_HAP_CRYPT
14/* This is to have crypt() defined on Linux */
15#define _GNU_SOURCE
16
17#ifdef NEED_CRYPT_H
18/* some platforms such as Solaris need this */
19#include <crypt.h>
20#endif
21#endif /* CONFIG_HAP_CRYPT */
22
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 Tarreaubaaee002006-06-26 02:48:02 +0200128int cfg_maxpconn = DEFAULT_MAXCONN; /* # 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
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100348 * be "all", "odd", "even", a number between 1 and <LONGBITS> 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 */
Christopher Faulet26028f62017-11-22 15:01:51 +0100355int parse_process_number(const char *arg, unsigned long *proc, 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 Faulet1dcb9cb2017-11-22 10:24:40 +0100372 char *dash;
373 unsigned int low, high;
374
Christopher Faulet5ab51772017-11-22 11:21:58 +0100375 if (!isdigit((int)*arg)) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100376 memprintf(err, "'%s' is not a valid number.\n", arg);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100377 return -1;
378 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100379
380 low = high = str2uic(arg);
381 if ((dash = strchr(arg, '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100382 high = ((!*(dash+1)) ? LONGBITS : str2uic(dash + 1));
383
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100384 if (high < low) {
385 unsigned int swap = low;
386 low = high;
387 high = swap;
388 }
389
Christopher Faulet5ab51772017-11-22 11:21:58 +0100390 if (low < 1 || low > LONGBITS || high > LONGBITS) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100391 memprintf(err, "'%s' is not a valid number/range."
392 " It supports numbers from 1 to %d.\n",
Christopher Faulet5ab51772017-11-22 11:21:58 +0100393 arg, LONGBITS);
394 return 1;
395 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100396
397 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100398 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200399 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100400
Christopher Faulet5ab51772017-11-22 11:21:58 +0100401 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200402}
403
David Carlier7e351ee2017-12-01 09:14:02 +0000404#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200405/* Parse cpu sets. Each CPU set is either a unique number between 0 and
406 * <LONGBITS> or a range with two such numbers delimited by a dash
407 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
408 * returns 0. otherwise it returns 1 with an error message in <err>.
409 */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100410unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200411{
412 int cur_arg = 0;
413
414 *cpu_set = 0;
415 while (*args[cur_arg]) {
416 char *dash;
417 unsigned int low, high;
418
419 if (!isdigit((int)*args[cur_arg])) {
420 memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
421 return -1;
422 }
423
424 low = high = str2uic(args[cur_arg]);
425 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100426 high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
Christopher Faulet62519022017-10-16 15:49:32 +0200427
428 if (high < low) {
429 unsigned int swap = low;
430 low = high;
431 high = swap;
432 }
433
434 if (high >= LONGBITS) {
435 memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
436 return 1;
437 }
438
439 while (low <= high)
440 *cpu_set |= 1UL << low++;
441
442 cur_arg++;
443 }
444 return 0;
445}
David Carlier7e351ee2017-12-01 09:14:02 +0000446#endif
447
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200448void init_default_instance()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200449{
Willy Tarreau97cb7802010-01-03 20:23:58 +0100450 init_new_proxy(&defproxy);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200451 defproxy.mode = PR_MODE_TCP;
452 defproxy.state = PR_STNEW;
453 defproxy.maxconn = cfg_maxpconn;
454 defproxy.conn_retries = CONN_RETRIES;
Joseph Lynch726ab712015-05-11 23:25:34 -0700455 defproxy.redispatch_after = 0;
Andrew Rodlandb1f48e32016-10-25 12:49:05 -0400456 defproxy.lbprm.chash.balance_factor = 0;
Olivier Houchard86006a52018-12-14 19:37:49 +0100457 defproxy.options = PR_O_REUSE_SAFE;
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +0100458 defproxy.max_out_conns = MAX_SRV_LIST;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100459
Simon Horman66183002013-02-23 10:16:43 +0900460 defproxy.defsrv.check.inter = DEF_CHKINTR;
461 defproxy.defsrv.check.fastinter = 0;
462 defproxy.defsrv.check.downinter = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900463 defproxy.defsrv.agent.inter = DEF_CHKINTR;
464 defproxy.defsrv.agent.fastinter = 0;
465 defproxy.defsrv.agent.downinter = 0;
Simon Horman58c32972013-11-25 10:46:38 +0900466 defproxy.defsrv.check.rise = DEF_RISETIME;
467 defproxy.defsrv.check.fall = DEF_FALLTIME;
468 defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME;
469 defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME;
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200470 defproxy.defsrv.check.port = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900471 defproxy.defsrv.agent.port = 0;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100472 defproxy.defsrv.maxqueue = 0;
473 defproxy.defsrv.minconn = 0;
474 defproxy.defsrv.maxconn = 0;
Olivier Houchard006e3102018-12-10 18:30:32 +0100475 defproxy.defsrv.max_idle_conns = -1;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100476 defproxy.defsrv.pool_purge_delay = 1000;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100477 defproxy.defsrv.slowstart = 0;
478 defproxy.defsrv.onerror = DEF_HANA_ONERR;
479 defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT;
480 defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1;
Simon Horman64e34162015-02-06 11:11:57 +0900481
482 defproxy.email_alert.level = LOG_ALERT;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +0200483 defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200484}
485
Willy Tarreauade5ec42010-01-28 19:33:49 +0100486
Willy Tarreaubaaee002006-06-26 02:48:02 +0200487/*
William Lallemand51097192015-04-14 16:35:22 +0200488 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200489 * Returns the error code, 0 if OK, or any combination of :
490 * - ERR_ABORT: must abort ASAP
491 * - ERR_FATAL: we can continue parsing but not start the service
492 * - ERR_WARN: a warning has been emitted
493 * - ERR_ALERT: an alert has been emitted
494 * Only the two first ones can stop processing, the two others are just
495 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200496 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200497int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
498{
499 static struct peers *curpeers = NULL;
500 struct peer *newpeer = NULL;
501 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200502 struct bind_conf *bind_conf;
503 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200504 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100505 char *errmsg = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200506
507 if (strcmp(args[0], "peers") == 0) { /* new peers section */
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100508 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100509 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100510 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100511 goto out;
512 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200513
William Lallemand6e62fb62015-04-28 16:55:23 +0200514 if (alertif_too_many_args(1, file, linenum, args, &err_code))
515 goto out;
516
Emeric Brun32da3c42010-09-23 18:39:19 +0200517 err = invalid_char(args[1]);
518 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100519 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
520 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100521 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100522 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200523 }
524
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200525 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200526 /*
527 * If there are two proxies with the same name only following
528 * combinations are allowed:
529 */
530 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100531 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
532 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200533 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200534 }
535 }
536
Vincent Bernat02779b62016-04-03 13:48:43 +0200537 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100538 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200539 err_code |= ERR_ALERT | ERR_ABORT;
540 goto out;
541 }
542
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200543 curpeers->next = cfg_peers;
544 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200545 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200546 curpeers->conf.line = linenum;
547 curpeers->last_change = now.tv_sec;
548 curpeers->id = strdup(args[1]);
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200549 curpeers->state = PR_STNEW;
Emeric Brun32da3c42010-09-23 18:39:19 +0200550 }
551 else if (strcmp(args[0], "peer") == 0) { /* peer definition */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100552 struct sockaddr_storage *sk;
Willy Tarreau2aa38802013-02-20 19:20:59 +0100553 int port1, port2;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100554 struct protocol *proto;
Emeric Brun32da3c42010-09-23 18:39:19 +0200555
556 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100557 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
558 file, linenum, args[0]);
Emeric Brun32da3c42010-09-23 18:39:19 +0200559 err_code |= ERR_ALERT | ERR_FATAL;
560 goto out;
561 }
562
563 err = invalid_char(args[1]);
564 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100565 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
566 file, linenum, *err, args[1]);
Emeric Brun32da3c42010-09-23 18:39:19 +0200567 err_code |= ERR_ALERT | ERR_FATAL;
568 goto out;
569 }
570
Vincent Bernat02779b62016-04-03 13:48:43 +0200571 if ((newpeer = calloc(1, sizeof(*newpeer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100572 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200573 err_code |= ERR_ALERT | ERR_ABORT;
574 goto out;
575 }
576
577 /* the peers are linked backwards first */
578 curpeers->count++;
579 newpeer->next = curpeers->remote;
580 curpeers->remote = newpeer;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200581 newpeer->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200582 newpeer->conf.line = linenum;
583
584 newpeer->last_change = now.tv_sec;
585 newpeer->id = strdup(args[1]);
586
Willy Tarreau48ef4c92017-01-06 18:32:38 +0100587 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Willy Tarreau2aa38802013-02-20 19:20:59 +0100588 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100589 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau2aa38802013-02-20 19:20:59 +0100590 err_code |= ERR_ALERT | ERR_FATAL;
591 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200592 }
Willy Tarreaub36487e2013-03-10 18:37:42 +0100593
594 proto = protocol_by_family(sk->ss_family);
595 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100596 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
597 file, linenum, args[0], args[1]);
Willy Tarreaub36487e2013-03-10 18:37:42 +0100598 err_code |= ERR_ALERT | ERR_FATAL;
599 goto out;
600 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100601
602 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100603 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
604 file, linenum, args[0], args[1], args[2]);
Emeric Brun32da3c42010-09-23 18:39:19 +0200605 err_code |= ERR_ALERT | ERR_FATAL;
606 goto out;
607 }
608
Willy Tarreau2aa38802013-02-20 19:20:59 +0100609 if (!port1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100610 ha_alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n",
611 file, linenum, args[0], args[1], args[2]);
Emeric Brun32da3c42010-09-23 18:39:19 +0200612 err_code |= ERR_ALERT | ERR_FATAL;
613 goto out;
614 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100615
Emeric Brun32da3c42010-09-23 18:39:19 +0200616 newpeer->addr = *sk;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100617 newpeer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100618 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200619 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100620 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200621
Emeric Brun32da3c42010-09-23 18:39:19 +0200622 if (strcmp(newpeer->id, localpeer) == 0) {
623 /* Current is local peer, it define a frontend */
624 newpeer->local = 1;
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200625 cfg_peers->local = newpeer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200626
627 if (!curpeers->peers_fe) {
628 if ((curpeers->peers_fe = calloc(1, sizeof(struct proxy))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100629 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200630 err_code |= ERR_ALERT | ERR_ABORT;
631 goto out;
632 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200633
Willy Tarreau237250c2011-07-29 01:49:03 +0200634 init_new_proxy(curpeers->peers_fe);
635 curpeers->peers_fe->parent = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +0200636 curpeers->peers_fe->id = strdup(args[1]);
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200637 curpeers->peers_fe->conf.args.file = curpeers->peers_fe->conf.file = strdup(file);
638 curpeers->peers_fe->conf.args.line = curpeers->peers_fe->conf.line = linenum;
Willy Tarreau91d96282015-03-13 15:47:26 +0100639 peers_setup_frontend(curpeers->peers_fe);
Willy Tarreau4348fad2012-09-20 16:48:07 +0200640
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100641 bind_conf = bind_conf_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW));
Willy Tarreau4348fad2012-09-20 16:48:07 +0200642
Willy Tarreau902636f2013-03-10 19:44:48 +0100643 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
644 if (errmsg && *errmsg) {
645 indent_msg(&errmsg, 2);
Christopher Faulet767a84b2017-11-24 16:50:31 +0100646 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200647 }
648 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100649 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
650 file, linenum, args[0], args[1], args[2]);
Emeric Brun32da3c42010-09-23 18:39:19 +0200651 err_code |= ERR_FATAL;
652 goto out;
653 }
Willy Tarreau4348fad2012-09-20 16:48:07 +0200654
655 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
Willy Tarreauacf3bf92013-01-18 10:51:07 +0100656 l->maxaccept = 1;
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200657 l->maxconn = curpeers->peers_fe->maxconn;
658 l->backlog = curpeers->peers_fe->backlog;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200659 l->accept = session_accept_fd;
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200660 l->analysers |= curpeers->peers_fe->fe_req_ana;
661 l->default_target = curpeers->peers_fe->default_target;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200662 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
663 global.maxsock += l->maxconn;
664 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200665 }
Willy Tarreau8b8fd562013-01-18 11:12:27 +0100666 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100667 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d.\n",
668 file, linenum, args[0], args[1],
669 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line);
Willy Tarreau8b8fd562013-01-18 11:12:27 +0100670 err_code |= ERR_FATAL;
671 goto out;
672 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200673 }
674 } /* neither "peer" nor "peers" */
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200675 else if (!strcmp(args[0], "disabled")) { /* disables this peers section */
676 curpeers->state = PR_STSTOPPED;
677 }
678 else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */
679 curpeers->state = PR_STNEW;
680 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200681 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100682 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200683 err_code |= ERR_ALERT | ERR_FATAL;
684 goto out;
685 }
686
687out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100688 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200689 return err_code;
690}
691
Baptiste Assmann325137d2015-04-13 23:40:55 +0200692/*
693 * Parse a <resolvers> section.
694 * Returns the error code, 0 if OK, or any combination of :
695 * - ERR_ABORT: must abort ASAP
696 * - ERR_FATAL: we can continue parsing but not start the service
697 * - ERR_WARN: a warning has been emitted
698 * - ERR_ALERT: an alert has been emitted
699 * Only the two first ones can stop processing, the two others are just
700 * indicators.
701 */
702int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
703{
704 static struct dns_resolvers *curr_resolvers = NULL;
705 struct dns_nameserver *newnameserver = NULL;
706 const char *err;
707 int err_code = 0;
708 char *errmsg = NULL;
709
710 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
711 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100712 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200713 err_code |= ERR_ALERT | ERR_ABORT;
714 goto out;
715 }
716
717 err = invalid_char(args[1]);
718 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100719 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
720 file, linenum, *err, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200721 err_code |= ERR_ALERT | ERR_ABORT;
722 goto out;
723 }
724
725 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
726 /* Error if two resolvers owns the same name */
727 if (strcmp(curr_resolvers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100728 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
729 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200730 err_code |= ERR_ALERT | ERR_ABORT;
731 }
732 }
733
Vincent Bernat02779b62016-04-03 13:48:43 +0200734 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100735 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200736 err_code |= ERR_ALERT | ERR_ABORT;
737 goto out;
738 }
739
740 /* default values */
741 LIST_ADDQ(&dns_resolvers, &curr_resolvers->list);
742 curr_resolvers->conf.file = strdup(file);
743 curr_resolvers->conf.line = linenum;
744 curr_resolvers->id = strdup(args[1]);
745 curr_resolvers->query_ids = EB_ROOT;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200746 /* default maximum response size */
747 curr_resolvers->accepted_payload_size = 512;
Baptiste Assmann987e16d2016-11-02 22:23:31 +0100748 /* default hold period for nx, other, refuse and timeout is 30s */
749 curr_resolvers->hold.nx = 30000;
750 curr_resolvers->hold.other = 30000;
751 curr_resolvers->hold.refused = 30000;
752 curr_resolvers->hold.timeout = 30000;
Baptiste Assmann686408b2017-08-18 10:15:42 +0200753 curr_resolvers->hold.obsolete = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200754 /* default hold period for valid is 10s */
Baptiste Assmann4c5490a2015-07-14 21:42:49 +0200755 curr_resolvers->hold.valid = 10000;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200756 curr_resolvers->timeout.resolve = 1000;
757 curr_resolvers->timeout.retry = 1000;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200758 curr_resolvers->resolve_retries = 3;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200759 curr_resolvers->nb_nameservers = 0;
760 LIST_INIT(&curr_resolvers->nameservers);
761 LIST_INIT(&curr_resolvers->resolutions.curr);
762 LIST_INIT(&curr_resolvers->resolutions.wait);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100763 HA_SPIN_INIT(&curr_resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200764 }
765 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
766 struct sockaddr_storage *sk;
767 int port1, port2;
768 struct protocol *proto;
769
770 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100771 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
772 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200773 err_code |= ERR_ALERT | ERR_FATAL;
774 goto out;
775 }
776
777 err = invalid_char(args[1]);
778 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100779 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
780 file, linenum, *err, args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200781 err_code |= ERR_ALERT | ERR_FATAL;
782 goto out;
783 }
784
Christopher Faulet67957bd2017-09-27 11:00:59 +0200785 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
Baptiste Assmanna315c552015-11-02 22:55:49 +0100786 /* Error if two resolvers owns the same name */
787 if (strcmp(newnameserver->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100788 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 -0600789 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
Baptiste Assmanna315c552015-11-02 22:55:49 +0100790 err_code |= ERR_ALERT | ERR_FATAL;
791 }
792 }
793
Vincent Bernat02779b62016-04-03 13:48:43 +0200794 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100795 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200796 err_code |= ERR_ALERT | ERR_ABORT;
797 goto out;
798 }
799
800 /* the nameservers are linked backward first */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200801 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200802 newnameserver->resolvers = curr_resolvers;
803 newnameserver->conf.file = strdup(file);
804 newnameserver->conf.line = linenum;
805 newnameserver->id = strdup(args[1]);
806
Willy Tarreau48ef4c92017-01-06 18:32:38 +0100807 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200808 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100809 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200810 err_code |= ERR_ALERT | ERR_FATAL;
811 goto out;
812 }
813
814 proto = protocol_by_family(sk->ss_family);
815 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100816 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Baptiste Assmann325137d2015-04-13 23:40:55 +0200817 file, linenum, args[0], args[1]);
818 err_code |= ERR_ALERT | ERR_FATAL;
819 goto out;
820 }
821
822 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100823 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
824 file, linenum, args[0], args[1], args[2]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200825 err_code |= ERR_ALERT | ERR_FATAL;
826 goto out;
827 }
828
Baptiste Assmann7f43fa92016-01-21 00:59:46 +0100829 if (!port1 && !port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100830 ha_alert("parsing [%s:%d] : '%s %s' : no UDP port specified\n",
831 file, linenum, args[0], args[1]);
Baptiste Assmann7f43fa92016-01-21 00:59:46 +0100832 err_code |= ERR_ALERT | ERR_FATAL;
833 goto out;
834 }
835
Baptiste Assmann325137d2015-04-13 23:40:55 +0200836 newnameserver->addr = *sk;
837 }
Ben Draut44e609b2018-05-29 15:40:08 -0600838 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
839 const char *whitespace = "\r\n\t ";
840 char *resolv_line = NULL;
841 int resolv_linenum = 0;
842 FILE *f = NULL;
843 char *address = NULL;
844 struct sockaddr_storage *sk = NULL;
845 struct protocol *proto;
846 int duplicate_name = 0;
847
848 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
849 ha_alert("parsing [%s:%d] : out of memory.\n",
850 file, linenum);
851 err_code |= ERR_ALERT | ERR_FATAL;
852 goto resolv_out;
853 }
854
855 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
856 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
857 file, linenum);
858 err_code |= ERR_ALERT | ERR_FATAL;
859 goto resolv_out;
860 }
861
862 sk = calloc(1, sizeof(*sk));
863 if (sk == NULL) {
864 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
865 resolv_linenum);
866 err_code |= ERR_ALERT | ERR_FATAL;
867 goto resolv_out;
868 }
869
870 while (fgets(resolv_line, LINESIZE, f) != NULL) {
871 resolv_linenum++;
872 if (strncmp(resolv_line, "nameserver", 10) != 0)
873 continue;
874
875 address = strtok(resolv_line + 10, whitespace);
876 if (address == resolv_line + 10)
877 continue;
878
879 if (address == NULL) {
880 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
881 resolv_linenum);
882 err_code |= ERR_WARN;
883 continue;
884 }
885
886 duplicate_name = 0;
887 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
888 if (strcmp(newnameserver->id, address) == 0) {
889 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",
890 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
891 err_code |= ERR_WARN;
892 duplicate_name = 1;
893 }
894 }
895
896 if (duplicate_name)
897 continue;
898
899 memset(sk, 0, sizeof(*sk));
900 sk = str2ip2(address, sk, 1);
901 if (!sk) {
902 ha_warning("parsing [/etc/resolv.conf:%d] : address '%s' could not be recognized, namerserver will be excluded.\n",
903 resolv_linenum, address);
904 err_code |= ERR_WARN;
905 continue;
906 }
907
908 set_host_port(sk, 53);
909
910 proto = protocol_by_family(sk->ss_family);
911 if (!proto || !proto->connect) {
912 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
913 resolv_linenum, address);
914 err_code |= ERR_WARN;
915 continue;
916 }
917
918 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
919 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
920 err_code |= ERR_ALERT | ERR_FATAL;
921 goto resolv_out;
922 }
923
924 newnameserver->conf.file = strdup("/etc/resolv.conf");
925 if (newnameserver->conf.file == NULL) {
926 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
927 err_code |= ERR_ALERT | ERR_FATAL;
928 goto resolv_out;
929 }
930
931 newnameserver->id = strdup(address);
932 if (newnameserver->id == NULL) {
933 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
934 err_code |= ERR_ALERT | ERR_FATAL;
935 goto resolv_out;
936 }
937
938 newnameserver->resolvers = curr_resolvers;
939 newnameserver->conf.line = resolv_linenum;
940 newnameserver->addr = *sk;
941
942 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
943 }
944
945resolv_out:
946 free(sk);
947 free(resolv_line);
948 if (f != NULL)
949 fclose(f);
950 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200951 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
952 const char *res;
953 unsigned int time;
954
955 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100956 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
957 file, linenum, args[0]);
958 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
Baptiste Assmann325137d2015-04-13 23:40:55 +0200959 err_code |= ERR_ALERT | ERR_FATAL;
960 goto out;
961 }
962 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
963 if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100964 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
965 file, linenum, *res, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200966 err_code |= ERR_ALERT | ERR_FATAL;
967 goto out;
968 }
Baptiste Assmann987e16d2016-11-02 22:23:31 +0100969 if (strcmp(args[1], "nx") == 0)
970 curr_resolvers->hold.nx = time;
971 else if (strcmp(args[1], "other") == 0)
972 curr_resolvers->hold.other = time;
973 else if (strcmp(args[1], "refused") == 0)
974 curr_resolvers->hold.refused = time;
975 else if (strcmp(args[1], "timeout") == 0)
976 curr_resolvers->hold.timeout = time;
977 else if (strcmp(args[1], "valid") == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200978 curr_resolvers->hold.valid = time;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200979 else if (strcmp(args[1], "obsolete") == 0)
980 curr_resolvers->hold.obsolete = time;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200981 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100982 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
983 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200984 err_code |= ERR_ALERT | ERR_FATAL;
985 goto out;
986 }
987
988 }
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200989 else if (strcmp(args[0], "accepted_payload_size") == 0) {
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +0200990 int i = 0;
991
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200992 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100993 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
994 file, linenum, args[0]);
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200995 err_code |= ERR_ALERT | ERR_FATAL;
996 goto out;
997 }
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +0200998
999 i = atoi(args[1]);
Willy Tarreau0c219be2017-08-22 12:01:26 +02001000 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001001 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
1002 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001003 err_code |= ERR_ALERT | ERR_FATAL;
1004 goto out;
1005 }
1006
1007 curr_resolvers->accepted_payload_size = i;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001008 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001009 else if (strcmp(args[0], "resolution_pool_size") == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001010 ha_warning("parsing [%s:%d] : '%s' directive is now deprecated and ignored.\n",
1011 file, linenum, args[0]);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001012 err_code |= ERR_WARN;
1013 goto out;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001014 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001015 else if (strcmp(args[0], "resolve_retries") == 0) {
1016 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001017 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1018 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001019 err_code |= ERR_ALERT | ERR_FATAL;
1020 goto out;
1021 }
1022 curr_resolvers->resolve_retries = atoi(args[1]);
1023 }
1024 else if (strcmp(args[0], "timeout") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001025 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001026 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
1027 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001028 err_code |= ERR_ALERT | ERR_FATAL;
1029 goto out;
1030 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001031 else if (strcmp(args[1], "retry") == 0 ||
1032 strcmp(args[1], "resolve") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001033 const char *res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001034 unsigned int tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001035
1036 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001037 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1038 file, linenum, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001039 err_code |= ERR_ALERT | ERR_FATAL;
1040 goto out;
1041 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001042 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001043 if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001044 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1045 file, linenum, *res, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001046 err_code |= ERR_ALERT | ERR_FATAL;
1047 goto out;
1048 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001049 if (args[1][2] == 't')
1050 curr_resolvers->timeout.retry = tout;
1051 else
1052 curr_resolvers->timeout.resolve = tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001053 }
1054 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001055 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
1056 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001057 err_code |= ERR_ALERT | ERR_FATAL;
1058 goto out;
1059 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001060 } /* neither "nameserver" nor "resolvers" */
1061 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001062 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001063 err_code |= ERR_ALERT | ERR_FATAL;
1064 goto out;
1065 }
1066
1067 out:
1068 free(errmsg);
1069 return err_code;
1070}
Simon Horman0d16a402015-01-30 11:22:58 +09001071
1072/*
William Lallemand51097192015-04-14 16:35:22 +02001073 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001074 * Returns the error code, 0 if OK, or any combination of :
1075 * - ERR_ABORT: must abort ASAP
1076 * - ERR_FATAL: we can continue parsing but not start the service
1077 * - ERR_WARN: a warning has been emitted
1078 * - ERR_ALERT: an alert has been emitted
1079 * Only the two first ones can stop processing, the two others are just
1080 * indicators.
1081 */
1082int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1083{
1084 static struct mailers *curmailers = NULL;
1085 struct mailer *newmailer = NULL;
1086 const char *err;
1087 int err_code = 0;
1088 char *errmsg = NULL;
1089
1090 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1091 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001092 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001093 err_code |= ERR_ALERT | ERR_ABORT;
1094 goto out;
1095 }
1096
1097 err = invalid_char(args[1]);
1098 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001099 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1100 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001101 err_code |= ERR_ALERT | ERR_ABORT;
1102 goto out;
1103 }
1104
1105 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1106 /*
1107 * If there are two proxies with the same name only following
1108 * combinations are allowed:
1109 */
1110 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001111 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1112 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001113 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001114 }
1115 }
1116
Vincent Bernat02779b62016-04-03 13:48:43 +02001117 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001118 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001119 err_code |= ERR_ALERT | ERR_ABORT;
1120 goto out;
1121 }
1122
1123 curmailers->next = mailers;
1124 mailers = curmailers;
1125 curmailers->conf.file = strdup(file);
1126 curmailers->conf.line = linenum;
1127 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001128 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1129 * But need enough time so that timeouts don't occur
1130 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001131 }
1132 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1133 struct sockaddr_storage *sk;
1134 int port1, port2;
1135 struct protocol *proto;
1136
1137 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001138 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1139 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001140 err_code |= ERR_ALERT | ERR_FATAL;
1141 goto out;
1142 }
1143
1144 err = invalid_char(args[1]);
1145 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001146 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1147 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001148 err_code |= ERR_ALERT | ERR_FATAL;
1149 goto out;
1150 }
1151
Vincent Bernat02779b62016-04-03 13:48:43 +02001152 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001153 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001154 err_code |= ERR_ALERT | ERR_ABORT;
1155 goto out;
1156 }
1157
1158 /* the mailers are linked backwards first */
1159 curmailers->count++;
1160 newmailer->next = curmailers->mailer_list;
1161 curmailers->mailer_list = newmailer;
1162 newmailer->mailers = curmailers;
1163 newmailer->conf.file = strdup(file);
1164 newmailer->conf.line = linenum;
1165
1166 newmailer->id = strdup(args[1]);
1167
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001168 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Simon Horman0d16a402015-01-30 11:22:58 +09001169 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001170 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001171 err_code |= ERR_ALERT | ERR_FATAL;
1172 goto out;
1173 }
1174
1175 proto = protocol_by_family(sk->ss_family);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09001176 if (!proto || !proto->connect || proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001177 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1178 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001179 err_code |= ERR_ALERT | ERR_FATAL;
1180 goto out;
1181 }
1182
1183 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001184 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1185 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001186 err_code |= ERR_ALERT | ERR_FATAL;
1187 goto out;
1188 }
1189
1190 if (!port1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001191 ha_alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n",
1192 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001193 err_code |= ERR_ALERT | ERR_FATAL;
1194 goto out;
1195 }
1196
1197 newmailer->addr = *sk;
1198 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001199 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001200 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001201 }
1202 else if (strcmp(args[0], "timeout") == 0) {
1203 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001204 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1205 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001206 err_code |= ERR_ALERT | ERR_FATAL;
1207 goto out;
1208 }
1209 else if (strcmp(args[1], "mail") == 0) {
1210 const char *res;
1211 unsigned int timeout_mail;
1212 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001213 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1214 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001215 err_code |= ERR_ALERT | ERR_FATAL;
1216 goto out;
1217 }
1218 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
1219 if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001220 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1221 file, linenum, *res, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001222 err_code |= ERR_ALERT | ERR_FATAL;
1223 goto out;
1224 }
1225 if (timeout_mail <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001226 ha_alert("parsing [%s:%d] : '%s %s' expects a positive <time> argument.\n", file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001227 err_code |= ERR_ALERT | ERR_FATAL;
1228 goto out;
1229 }
1230 curmailers->timeout.mail = timeout_mail;
1231 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001232 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001233 file, linenum, args[0], args[1]);
1234 err_code |= ERR_ALERT | ERR_FATAL;
1235 goto out;
1236 }
1237 }
Simon Horman0d16a402015-01-30 11:22:58 +09001238 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001239 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001240 err_code |= ERR_ALERT | ERR_FATAL;
1241 goto out;
1242 }
1243
1244out:
1245 free(errmsg);
1246 return err_code;
1247}
1248
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001249void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001250{
1251 free(p->email_alert.mailers.name);
1252 p->email_alert.mailers.name = NULL;
1253 free(p->email_alert.from);
1254 p->email_alert.from = NULL;
1255 free(p->email_alert.to);
1256 p->email_alert.to = NULL;
1257 free(p->email_alert.myhostname);
1258 p->email_alert.myhostname = NULL;
1259}
1260
Willy Tarreaubaaee002006-06-26 02:48:02 +02001261
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001262int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001263cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1264{
1265#ifdef CONFIG_HAP_NS
1266 const char *err;
1267 const char *item = args[0];
1268
1269 if (!strcmp(item, "namespace_list")) {
1270 return 0;
1271 }
1272 else if (!strcmp(item, "namespace")) {
1273 size_t idx = 1;
1274 const char *current;
1275 while (*(current = args[idx++])) {
1276 err = invalid_char(current);
1277 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001278 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1279 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001280 return ERR_ALERT | ERR_FATAL;
1281 }
1282
1283 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001284 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1285 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001286 return ERR_ALERT | ERR_FATAL;
1287 }
1288 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001289 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1290 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001291 return ERR_ALERT | ERR_FATAL;
1292 }
1293 }
1294 }
1295
1296 return 0;
1297#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001298 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1299 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001300 return ERR_ALERT | ERR_FATAL;
1301#endif
1302}
1303
1304int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001305cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1306{
1307
1308 int err_code = 0;
1309 const char *err;
1310
1311 if (!strcmp(args[0], "userlist")) { /* new userlist */
1312 struct userlist *newul;
1313
1314 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001315 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1316 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001317 err_code |= ERR_ALERT | ERR_FATAL;
1318 goto out;
1319 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001320 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1321 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001322
1323 err = invalid_char(args[1]);
1324 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001325 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1326 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001327 err_code |= ERR_ALERT | ERR_FATAL;
1328 goto out;
1329 }
1330
1331 for (newul = userlist; newul; newul = newul->next)
1332 if (!strcmp(newul->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001333 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1334 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001335 err_code |= ERR_WARN;
1336 goto out;
1337 }
1338
Vincent Bernat02779b62016-04-03 13:48:43 +02001339 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001340 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001341 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001342 err_code |= ERR_ALERT | ERR_ABORT;
1343 goto out;
1344 }
1345
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001346 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001347 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001348 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001349 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001350 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001351 goto out;
1352 }
1353
1354 newul->next = userlist;
1355 userlist = newul;
1356
1357 } else if (!strcmp(args[0], "group")) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001358 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001359 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001360 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001361
1362 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001363 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1364 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001365 err_code |= ERR_ALERT | ERR_FATAL;
1366 goto out;
1367 }
1368
1369 err = invalid_char(args[1]);
1370 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001371 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1372 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001373 err_code |= ERR_ALERT | ERR_FATAL;
1374 goto out;
1375 }
1376
William Lallemand4ac9f542015-05-28 18:03:51 +02001377 if (!userlist)
1378 goto out;
1379
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001380 for (ag = userlist->groups; ag; ag = ag->next)
1381 if (!strcmp(ag->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001382 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1383 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001384 err_code |= ERR_ALERT;
1385 goto out;
1386 }
1387
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001388 ag = calloc(1, sizeof(*ag));
1389 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001390 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001391 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001392 goto out;
1393 }
1394
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001395 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001396 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001397 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001398 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001399 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001400 goto out;
1401 }
1402
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001403 cur_arg = 2;
1404
1405 while (*args[cur_arg]) {
1406 if (!strcmp(args[cur_arg], "users")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001407 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001408 cur_arg += 2;
1409 continue;
1410 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001411 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1412 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001413 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001414 free(ag->groupusers);
1415 free(ag->name);
1416 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001417 goto out;
1418 }
1419 }
1420
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001421 ag->next = userlist->groups;
1422 userlist->groups = ag;
1423
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001424 } else if (!strcmp(args[0], "user")) { /* new user */
1425 struct auth_users *newuser;
1426 int cur_arg;
1427
1428 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001429 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1430 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001431 err_code |= ERR_ALERT | ERR_FATAL;
1432 goto out;
1433 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001434 if (!userlist)
1435 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001436
1437 for (newuser = userlist->users; newuser; newuser = newuser->next)
1438 if (!strcmp(newuser->user, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001439 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1440 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001441 err_code |= ERR_ALERT;
1442 goto out;
1443 }
1444
Vincent Bernat02779b62016-04-03 13:48:43 +02001445 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001446 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001447 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001448 err_code |= ERR_ALERT | ERR_ABORT;
1449 goto out;
1450 }
1451
1452 newuser->user = strdup(args[1]);
1453
1454 newuser->next = userlist->users;
1455 userlist->users = newuser;
1456
1457 cur_arg = 2;
1458
1459 while (*args[cur_arg]) {
1460 if (!strcmp(args[cur_arg], "password")) {
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001461#ifdef CONFIG_HAP_CRYPT
1462 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001463 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1464 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001465 err_code |= ERR_ALERT | ERR_FATAL;
1466 goto out;
1467 }
1468#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001469 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1470 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001471 err_code |= ERR_ALERT;
1472#endif
1473 newuser->pass = strdup(args[cur_arg + 1]);
1474 cur_arg += 2;
1475 continue;
1476 } else if (!strcmp(args[cur_arg], "insecure-password")) {
1477 newuser->pass = strdup(args[cur_arg + 1]);
1478 newuser->flags |= AU_O_INSECURE;
1479 cur_arg += 2;
1480 continue;
1481 } else if (!strcmp(args[cur_arg], "groups")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001482 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001483 cur_arg += 2;
1484 continue;
1485 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001486 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1487 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001488 err_code |= ERR_ALERT | ERR_FATAL;
1489 goto out;
1490 }
1491 }
1492 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001493 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 +01001494 err_code |= ERR_ALERT | ERR_FATAL;
1495 }
1496
1497out:
1498 return err_code;
1499}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001500
Christopher Faulet79bdef32016-11-04 22:36:15 +01001501int
1502cfg_parse_scope(const char *file, int linenum, char *line)
1503{
1504 char *beg, *end, *scope = NULL;
1505 int err_code = 0;
1506 const char *err;
1507
1508 beg = line + 1;
1509 end = strchr(beg, ']');
1510
1511 /* Detect end of scope declaration */
1512 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001513 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1514 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001515 err_code |= ERR_ALERT | ERR_FATAL;
1516 goto out;
1517 }
1518
1519 /* Get scope name and check its validity */
1520 scope = my_strndup(beg, end-beg);
1521 err = invalid_char(scope);
1522 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001523 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1524 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001525 err_code |= ERR_ALERT | ERR_ABORT;
1526 goto out;
1527 }
1528
1529 /* Be sure to have a scope declaration alone on its line */
1530 line = end+1;
1531 while (isspace((unsigned char)*line))
1532 line++;
1533 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001534 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1535 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001536 err_code |= ERR_ALERT | ERR_ABORT;
1537 goto out;
1538 }
1539
1540 /* We have a valid scope declaration, save it */
1541 free(cfg_scope);
1542 cfg_scope = scope;
1543 scope = NULL;
1544
1545 out:
1546 free(scope);
1547 return err_code;
1548}
1549
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001550int
1551cfg_parse_track_sc_num(unsigned int *track_sc_num,
1552 const char *arg, const char *end, char **errmsg)
1553{
1554 const char *p;
1555 unsigned int num;
1556
1557 p = arg;
1558 num = read_uint64(&arg, end);
1559
1560 if (arg != end) {
1561 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1562 return -1;
1563 }
1564
1565 if (num >= MAX_SESS_STKCTR) {
1566 memprintf(errmsg, "%u track-sc number exceeding "
1567 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1568 return -1;
1569 }
1570
1571 *track_sc_num = num;
1572 return 0;
1573}
1574
Willy Tarreaubaaee002006-06-26 02:48:02 +02001575/*
1576 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001577 * Returns the error code, 0 if OK, or any combination of :
1578 * - ERR_ABORT: must abort ASAP
1579 * - ERR_FATAL: we can continue parsing but not start the service
1580 * - ERR_WARN: a warning has been emitted
1581 * - ERR_ALERT: an alert has been emitted
1582 * Only the two first ones can stop processing, the two others are just
1583 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001584 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001585int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001586{
William Lallemand64e84512015-05-12 14:25:37 +02001587 char *thisline;
1588 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001589 FILE *f;
1590 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001591 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001592 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001593 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001594 int readbytes = 0;
1595
1596 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001597 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001598 return -1;
1599 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001600
David Carlier97880bb2016-04-08 10:35:26 +01001601 if ((f=fopen(file,"r")) == NULL) {
1602 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001603 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001604 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001605
William Lallemandb2f07452015-05-12 14:27:13 +02001606next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001607 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001608 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001609 char *end;
1610 char *args[MAX_LINE_ARGS + 1];
1611 char *line = thisline;
William Lallemandf9873ba2015-05-05 17:37:14 +02001612 int dquote = 0; /* double quote */
1613 int squote = 0; /* simple quote */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001614
Willy Tarreaubaaee002006-06-26 02:48:02 +02001615 linenum++;
1616
1617 end = line + strlen(line);
1618
William Lallemand64e84512015-05-12 14:25:37 +02001619 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001620 /* Check if we reached the limit and the last char is not \n.
1621 * Watch out for the last line without the terminating '\n'!
1622 */
William Lallemand64e84512015-05-12 14:25:37 +02001623 char *newline;
1624 int newlinesize = linesize * 2;
1625
1626 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1627 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001628 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1629 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001630 err_code |= ERR_ALERT | ERR_FATAL;
1631 continue;
1632 }
1633
1634 readbytes = linesize - 1;
1635 linesize = newlinesize;
1636 thisline = newline;
1637 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001638 }
1639
William Lallemand64e84512015-05-12 14:25:37 +02001640 readbytes = 0;
1641
Willy Tarreaubaaee002006-06-26 02:48:02 +02001642 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001643 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001644 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001645
Christopher Faulet79bdef32016-11-04 22:36:15 +01001646
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001647 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001648 err_code |= cfg_parse_scope(file, linenum, line);
1649 goto next_line;
1650 }
1651
Willy Tarreaubaaee002006-06-26 02:48:02 +02001652 arg = 0;
1653 args[arg] = line;
1654
1655 while (*line && arg < MAX_LINE_ARGS) {
William Lallemandf9873ba2015-05-05 17:37:14 +02001656 if (*line == '"' && !squote) { /* double quote outside single quotes */
1657 if (dquote)
1658 dquote = 0;
1659 else
1660 dquote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001661 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001662 end--;
1663 }
1664 else if (*line == '\'' && !dquote) { /* single quote outside double quotes */
1665 if (squote)
1666 squote = 0;
1667 else
1668 squote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001669 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001670 end--;
1671 }
1672 else if (*line == '\\' && !squote) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001673 /* first, we'll replace \\, \<space>, \#, \r, \n, \t, \xXX with their
1674 * C equivalent value. Other combinations left unchanged (eg: \1).
1675 */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001676 int skip = 0;
1677 if (line[1] == ' ' || line[1] == '\\' || line[1] == '#') {
1678 *line = line[1];
1679 skip = 1;
1680 }
1681 else if (line[1] == 'r') {
1682 *line = '\r';
1683 skip = 1;
William Lallemandf9873ba2015-05-05 17:37:14 +02001684 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001685 else if (line[1] == 'n') {
1686 *line = '\n';
1687 skip = 1;
1688 }
1689 else if (line[1] == 't') {
1690 *line = '\t';
1691 skip = 1;
1692 }
1693 else if (line[1] == 'x') {
Emeric Brunb982a3d2010-01-04 15:45:53 +01001694 if ((line + 3 < end) && ishex(line[2]) && ishex(line[3])) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001695 unsigned char hex1, hex2;
1696 hex1 = toupper(line[2]) - '0';
1697 hex2 = toupper(line[3]) - '0';
1698 if (hex1 > 9) hex1 -= 'A' - '9' - 1;
1699 if (hex2 > 9) hex2 -= 'A' - '9' - 1;
1700 *line = (hex1<<4) + hex2;
1701 skip = 3;
1702 }
1703 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001704 ha_alert("parsing [%s:%d] : invalid or incomplete '\\x' sequence in '%s'.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02001705 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001706 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001707 } else if (line[1] == '"') {
1708 *line = '"';
1709 skip = 1;
1710 } else if (line[1] == '\'') {
1711 *line = '\'';
1712 skip = 1;
William Lallemandb2f07452015-05-12 14:27:13 +02001713 } else if (line[1] == '$' && dquote) { /* escaping of $ only inside double quotes */
1714 *line = '$';
1715 skip = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001716 }
1717 if (skip) {
Cyril Bontédd1b01d2009-12-06 13:43:42 +01001718 memmove(line + 1, line + 1 + skip, end - (line + skip));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001719 end -= skip;
1720 }
1721 line++;
1722 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001723 else if ((!squote && !dquote && *line == '#') || *line == '\n' || *line == '\r') {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001724 /* end of string, end of loop */
1725 *line = 0;
1726 break;
1727 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001728 else if (!squote && !dquote && isspace((unsigned char)*line)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001729 /* a non-escaped space is an argument separator */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001730 *line++ = '\0';
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001731 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001732 line++;
1733 args[++arg] = line;
1734 }
William Lallemandb2f07452015-05-12 14:27:13 +02001735 else if (dquote && *line == '$') {
1736 /* environment variables are evaluated inside double quotes */
1737 char *var_beg;
1738 char *var_end;
1739 char save_char;
1740 char *value;
1741 int val_len;
1742 int newlinesize;
1743 int braces = 0;
1744
1745 var_beg = line + 1;
1746 var_end = var_beg;
1747
1748 if (*var_beg == '{') {
1749 var_beg++;
1750 var_end++;
1751 braces = 1;
1752 }
1753
1754 if (!isalpha((int)(unsigned char)*var_beg) && *var_beg != '_') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001755 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 +02001756 err_code |= ERR_ALERT | ERR_FATAL;
1757 goto next_line; /* skip current line */
1758 }
1759
1760 while (isalnum((int)(unsigned char)*var_end) || *var_end == '_')
1761 var_end++;
1762
1763 save_char = *var_end;
1764 *var_end = '\0';
1765 value = getenv(var_beg);
1766 *var_end = save_char;
1767 val_len = value ? strlen(value) : 0;
1768
1769 if (braces) {
1770 if (*var_end == '}') {
1771 var_end++;
1772 braces = 0;
1773 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001774 ha_alert("parsing [%s:%d] : Variable expansion: Mismatched braces.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001775 err_code |= ERR_ALERT | ERR_FATAL;
1776 goto next_line; /* skip current line */
1777 }
1778 }
1779
1780 newlinesize = (end - thisline) - (var_end - line) + val_len + 1;
1781
1782 /* if not enough space in thisline */
1783 if (newlinesize > linesize) {
1784 char *newline;
1785
1786 newline = realloc(thisline, newlinesize * sizeof(*thisline));
1787 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001788 ha_alert("parsing [%s:%d] : Variable expansion: Not enough memory.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001789 err_code |= ERR_ALERT | ERR_FATAL;
1790 goto next_line; /* slip current line */
1791 }
1792 /* recompute pointers if realloc returns a new pointer */
1793 if (newline != thisline) {
1794 int i;
1795 int diff;
1796
1797 for (i = 0; i <= arg; i++) {
1798 diff = args[i] - thisline;
1799 args[i] = newline + diff;
1800 }
1801
1802 diff = var_end - thisline;
1803 var_end = newline + diff;
1804 diff = end - thisline;
1805 end = newline + diff;
1806 diff = line - thisline;
1807 line = newline + diff;
1808 thisline = newline;
1809 }
1810 linesize = newlinesize;
1811 }
1812
1813 /* insert value inside the line */
1814 memmove(line + val_len, var_end, end - var_end + 1);
1815 memcpy(line, value, val_len);
1816 end += val_len - (var_end - line);
1817 line += val_len;
1818 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001819 else {
1820 line++;
1821 }
1822 }
William Lallemandb2f07452015-05-12 14:27:13 +02001823
William Lallemandf9873ba2015-05-05 17:37:14 +02001824 if (dquote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001825 ha_alert("parsing [%s:%d] : Mismatched double quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02001826 err_code |= ERR_ALERT | ERR_FATAL;
1827 }
1828
1829 if (squote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001830 ha_alert("parsing [%s:%d] : Mismatched simple quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02001831 err_code |= ERR_ALERT | ERR_FATAL;
1832 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001833
1834 /* empty line */
1835 if (!**args)
1836 continue;
1837
Willy Tarreau7bb651e2009-11-09 21:16:53 +01001838 if (*line) {
1839 /* we had to stop due to too many args.
1840 * Let's terminate the string, print the offending part then cut the
1841 * last arg.
1842 */
1843 while (*line && *line != '#' && *line != '\n' && *line != '\r')
1844 line++;
1845 *line = '\0';
1846
Christopher Faulet767a84b2017-11-24 16:50:31 +01001847 ha_alert("parsing [%s:%d]: line too long, truncating at word %d, position %ld: <%s>.\n",
1848 file, linenum, arg + 1, (long)(args[arg] - thisline + 1), args[arg]);
Willy Tarreau7bb651e2009-11-09 21:16:53 +01001849 err_code |= ERR_ALERT | ERR_FATAL;
1850 args[arg] = line;
1851 }
1852
Willy Tarreau540abe42007-05-02 20:50:16 +02001853 /* zero out remaining args and ensure that at least one entry
1854 * is zeroed out.
1855 */
1856 while (++arg <= MAX_LINE_ARGS) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001857 args[arg] = line;
1858 }
1859
Willy Tarreau3842f002009-06-14 11:39:52 +02001860 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001861 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02001862 char *tmp;
1863
Willy Tarreau3842f002009-06-14 11:39:52 +02001864 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02001865 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001866 for (arg=0; *args[arg+1]; arg++)
1867 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02001868 *tmp = '\0'; // fix the next arg to \0
1869 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001870 }
Willy Tarreau3842f002009-06-14 11:39:52 +02001871 else if (!strcmp(args[0], "default")) {
1872 kwm = KWM_DEF;
1873 for (arg=0; *args[arg+1]; arg++)
1874 args[arg] = args[arg+1]; // shift args after inversion
1875 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001876
William Lallemand0f99e342011-10-12 17:50:54 +02001877 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 && \
Willy Tarreaubeb859a2018-11-22 18:07:59 +01001878 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling")) {
1879 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 +02001880 err_code |= ERR_ALERT | ERR_FATAL;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001881 }
1882
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001883 /* detect section start */
1884 list_for_each_entry(ics, &sections, list) {
1885 if (strcmp(args[0], ics->section_name) == 0) {
1886 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001887 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001888 cs = ics;
1889 break;
1890 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001891 }
1892
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001893 if (pcs && pcs->post_section_parser) {
1894 err_code |= pcs->post_section_parser();
1895 if (err_code & ERR_ABORT)
1896 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001897 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01001898 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001899
William Lallemandd2ff56d2017-10-16 11:06:50 +02001900 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001901 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02001902 err_code |= ERR_ALERT | ERR_FATAL;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001903 } else {
William Lallemandd2ff56d2017-10-16 11:06:50 +02001904 err_code |= cs->section_parser(file, linenum, args, kwm);
1905 if (err_code & ERR_ABORT)
1906 goto err;
1907 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001908 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02001909
Christopher Fauletbf7a9592018-12-02 09:37:38 +01001910 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001911 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02001912
1913err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01001914 free(cfg_scope);
1915 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01001916 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001917 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001918 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02001919 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001920}
1921
Willy Tarreau64ab6072014-09-16 12:17:36 +02001922/* This function propagates processes from frontend <from> to backend <to> so
1923 * that it is always guaranteed that a backend pointed to by a frontend is
1924 * bound to all of its processes. After that, if the target is a "listen"
1925 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02001926 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02001927 * checked first to ensure that <to> is already bound to all processes of
1928 * <from>, there is no risk of looping and we ensure to follow the shortest
1929 * path to the destination.
1930 *
1931 * It is possible to set <to> to NULL for the first call so that the function
1932 * takes care of visiting the initial frontend in <from>.
1933 *
1934 * It is important to note that the function relies on the fact that all names
1935 * have already been resolved.
1936 */
1937void propagate_processes(struct proxy *from, struct proxy *to)
1938{
1939 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02001940
1941 if (to) {
1942 /* check whether we need to go down */
1943 if (from->bind_proc &&
1944 (from->bind_proc & to->bind_proc) == from->bind_proc)
1945 return;
1946
1947 if (!from->bind_proc && !to->bind_proc)
1948 return;
1949
1950 to->bind_proc = from->bind_proc ?
1951 (to->bind_proc | from->bind_proc) : 0;
1952
1953 /* now propagate down */
1954 from = to;
1955 }
1956
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01001957 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02001958 return;
1959
Willy Tarreauf6b70012014-12-18 14:00:43 +01001960 if (from->state == PR_STSTOPPED)
1961 return;
1962
Willy Tarreau64ab6072014-09-16 12:17:36 +02001963 /* default_backend */
1964 if (from->defbe.be)
1965 propagate_processes(from, from->defbe.be);
1966
1967 /* use_backend */
1968 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02001969 if (rule->dynamic)
1970 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02001971 to = rule->be.backend;
1972 propagate_processes(from, to);
1973 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02001974}
1975
Willy Tarreaubb925012009-07-23 13:36:36 +02001976/*
1977 * Returns the error code, 0 if OK, or any combination of :
1978 * - ERR_ABORT: must abort ASAP
1979 * - ERR_FATAL: we can continue parsing but not start the service
1980 * - ERR_WARN: a warning has been emitted
1981 * - ERR_ALERT: an alert has been emitted
1982 * Only the two first ones can stop processing, the two others are just
1983 * indicators.
1984 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001985int check_config_validity()
1986{
1987 int cfgerr = 0;
1988 struct proxy *curproxy = NULL;
1989 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02001990 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02001991 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001992 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01001993 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02001994 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06001995 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001996
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001997 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001998 /*
1999 * Now, check for the integrity of all that we have collected.
2000 */
2001
2002 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002003 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002004
Willy Tarreau193b8c62012-11-22 00:17:38 +01002005 if (!global.tune.max_http_hdr)
2006 global.tune.max_http_hdr = MAX_HTTP_HDR;
2007
2008 if (!global.tune.cookie_len)
2009 global.tune.cookie_len = CAPTURE_LEN;
2010
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002011 if (!global.tune.requri_len)
2012 global.tune.requri_len = REQURI_LEN;
2013
Willy Tarreaubafbe012017-11-24 17:34:44 +01002014 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002015
Willy Tarreaubafbe012017-11-24 17:34:44 +01002016 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002017
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002018 /* Post initialisation of the users and groups lists. */
2019 err_code = userlist_postinit();
2020 if (err_code != ERR_NONE)
2021 goto out;
2022
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002023 /* first, we will invert the proxy list order */
2024 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002025 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002026 struct proxy *next;
2027
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002028 next = proxies_list->next;
2029 proxies_list->next = curproxy;
2030 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002031 if (!next)
2032 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002033 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002034 }
2035
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002036 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002037 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002038 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002039 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002040 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002041 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002042 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002043 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002044
Willy Tarreau050536d2012-10-04 08:47:34 +02002045 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002046 /* proxy ID not set, use automatic numbering with first
2047 * spare entry starting with next_pxid.
2048 */
2049 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2050 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2051 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002052 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002053 next_pxid++;
2054
Willy Tarreau55ea7572007-06-17 19:56:27 +02002055
Willy Tarreaubaaee002006-06-26 02:48:02 +02002056 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002057 /* ensure we don't keep listeners uselessly bound */
2058 stop_proxy(curproxy);
Willy Tarreau02df7742015-05-01 19:59:56 +02002059 free((void *)curproxy->table.peers.name);
2060 curproxy->table.peers.p = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002061 continue;
2062 }
2063
Willy Tarreau102df612014-05-07 23:56:38 +02002064 /* Check multi-process mode compatibility for the current proxy */
2065
2066 if (curproxy->bind_proc) {
2067 /* an explicit bind-process was specified, let's check how many
2068 * processes remain.
2069 */
David Carliere6c39412015-07-02 07:00:17 +00002070 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002071
2072 curproxy->bind_proc &= nbits(global.nbproc);
2073 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002074 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 +02002075 curproxy->bind_proc = 1;
2076 }
2077 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002078 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 +02002079 curproxy->bind_proc = 0;
2080 }
2081 }
2082
Willy Tarreau3d209582014-05-09 17:06:11 +02002083 /* check and reduce the bind-proc of each listener */
2084 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2085 unsigned long mask;
2086
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002087 /* HTTP frontends with "h2" as ALPN/NPN will work in
2088 * HTTP/2 and absolutely require buffers 16kB or larger.
2089 */
2090#ifdef USE_OPENSSL
2091 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2092#ifdef OPENSSL_NPN_NEGOTIATED
2093 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002094 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002095 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",
2096 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002097 cfgerr++;
2098 }
2099#endif
2100#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2101 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002102 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002103 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",
2104 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002105 cfgerr++;
2106 }
2107#endif
2108 } /* HTTP && bufsize < 16384 */
2109#endif
2110
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002111 /* detect and address thread affinity inconsistencies */
2112 nbproc = 0;
2113 if (bind_conf->bind_proc)
2114 nbproc = my_ffsl(bind_conf->bind_proc);
2115
2116 mask = bind_conf->bind_thread[nbproc - 1];
Willy Tarreau0c026f42018-08-01 19:12:20 +02002117 if (mask && !(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002118 unsigned long new_mask = 0;
2119
2120 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002121 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002122 mask >>= global.nbthread;
2123 }
2124
2125 for (nbproc = 0; nbproc < LONGBITS; nbproc++) {
2126 if (!bind_conf->bind_proc || (bind_conf->bind_proc & (1UL << nbproc)))
2127 bind_conf->bind_thread[nbproc] = new_mask;
2128 }
2129 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",
2130 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2131 }
2132
2133 /* detect process and nbproc affinity inconsistencies */
Willy Tarreau3d209582014-05-09 17:06:11 +02002134 if (!bind_conf->bind_proc)
2135 continue;
2136
2137 mask = nbits(global.nbproc);
2138 if (curproxy->bind_proc)
2139 mask &= curproxy->bind_proc;
2140 /* mask cannot be null here thanks to the previous checks */
2141
David Carliere6c39412015-07-02 07:00:17 +00002142 nbproc = my_popcountl(bind_conf->bind_proc);
Willy Tarreau3d209582014-05-09 17:06:11 +02002143 bind_conf->bind_proc &= mask;
2144
2145 if (!bind_conf->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002146 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",
2147 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau3d209582014-05-09 17:06:11 +02002148 bind_conf->bind_proc = mask & ~(mask - 1);
2149 }
2150 else if (!bind_conf->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002151 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",
2152 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau3d209582014-05-09 17:06:11 +02002153 bind_conf->bind_proc = 0;
2154 }
2155 }
2156
Willy Tarreauff01a212009-03-15 13:46:16 +01002157 switch (curproxy->mode) {
2158 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002159 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002160 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002161 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2162 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002163 cfgerr++;
2164 }
2165
2166 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002167 ha_warning("config : servers will be ignored for %s '%s'.\n",
2168 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002169 break;
2170
2171 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002172 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002173 break;
2174
2175 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002176 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002177 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002178
2179 case PR_MODE_CLI:
2180 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2181 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002182 }
2183
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002184 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002185 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2186 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002187 err_code |= ERR_WARN;
2188 }
2189
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002190 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002191 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002192 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002193 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2194 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002195 cfgerr++;
2196 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002197#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002198 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002199 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2200 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002201 cfgerr++;
2202 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002203#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002204 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002205 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2206 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002207 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002208 }
2209 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002210 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002211 /* If no LB algo is set in a backend, and we're not in
2212 * transparent mode, dispatch mode nor proxy mode, we
2213 * want to use balance roundrobin by default.
2214 */
2215 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2216 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002217 }
2218 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002219
Willy Tarreau1620ec32011-08-06 17:05:02 +02002220 if (curproxy->options & PR_O_DISPATCH)
2221 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2222 else if (curproxy->options & PR_O_HTTP_PROXY)
2223 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2224 else if (curproxy->options & PR_O_TRANSP)
2225 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002226
Willy Tarreau1620ec32011-08-06 17:05:02 +02002227 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_HTTP_CHK) {
2228 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002229 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2230 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002231 err_code |= ERR_WARN;
2232 curproxy->options &= ~PR_O_DISABLE404;
2233 }
2234 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002235 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2236 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002237 err_code |= ERR_WARN;
2238 curproxy->options &= ~PR_O2_CHK_SNDST;
2239 }
Willy Tarreauef781042010-01-27 11:53:01 +01002240 }
2241
Simon Horman98637e52014-06-20 12:30:16 +09002242 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2243 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002244 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2245 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002246 cfgerr++;
2247 }
2248 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002249 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2250 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002251 cfgerr++;
2252 }
2253 }
2254
Simon Horman64e34162015-02-06 11:11:57 +09002255 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002256 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002257 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2258 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2259 "'email-alert myhostname', or 'email-alert to' "
2260 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2261 "to be present).\n",
2262 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002263 err_code |= ERR_WARN;
2264 free_email_alert(curproxy);
2265 }
2266 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002267 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002268 }
2269
Simon Horman98637e52014-06-20 12:30:16 +09002270 if (curproxy->check_command) {
2271 int clear = 0;
2272 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002273 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2274 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002275 err_code |= ERR_WARN;
2276 clear = 1;
2277 }
2278 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002279 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2280 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002281 cfgerr++;
2282 }
2283 if (clear) {
2284 free(curproxy->check_command);
2285 curproxy->check_command = NULL;
2286 }
2287 }
2288
2289 if (curproxy->check_path) {
2290 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002291 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2292 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002293 err_code |= ERR_WARN;
2294 free(curproxy->check_path);
2295 curproxy->check_path = NULL;
2296 }
2297 }
2298
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002299 /* if a default backend was specified, let's find it */
2300 if (curproxy->defbe.name) {
2301 struct proxy *target;
2302
Willy Tarreauafb39922015-05-26 12:04:09 +02002303 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002304 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002305 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2306 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002307 cfgerr++;
2308 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002309 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2310 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002311 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002312 } else if (target->mode != curproxy->mode &&
2313 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2314
Christopher Faulet767a84b2017-11-24 16:50:31 +01002315 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2316 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2317 curproxy->conf.file, curproxy->conf.line,
2318 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2319 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002320 cfgerr++;
Willy Tarreau68ad3a42018-10-22 11:49:15 +02002321 } else if ((curproxy->options2 ^ target->options2) & PR_O2_USE_HTX) {
2322 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",
2323 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2324 curproxy->conf.file, curproxy->conf.line,
2325 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2326 target->conf.file, target->conf.line);
2327 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002328 } else {
2329 free(curproxy->defbe.name);
2330 curproxy->defbe.be = target;
Emeric Brun3f783572017-01-12 11:21:28 +01002331 /* Update tot_fe_maxconn for a further fullconn's computation */
2332 target->tot_fe_maxconn += curproxy->maxconn;
Willy Tarreauff678132012-02-13 14:32:34 +01002333 /* Emit a warning if this proxy also has some servers */
2334 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002335 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2336 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002337 err_code |= ERR_WARN;
2338 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002339 }
2340 }
2341
Emeric Brun3f783572017-01-12 11:21:28 +01002342 if (!curproxy->defbe.be && (curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN) {
2343 /* Case of listen without default backend
2344 * The curproxy will be its own default backend
2345 * so we update tot_fe_maxconn for a further
2346 * fullconn's computation */
2347 curproxy->tot_fe_maxconn += curproxy->maxconn;
2348 }
2349
Willy Tarreau55ea7572007-06-17 19:56:27 +02002350 /* find the target proxy for 'use_backend' rules */
2351 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002352 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002353 struct logformat_node *node;
2354 char *pxname;
2355
2356 /* Try to parse the string as a log format expression. If the result
2357 * of the parsing is only one entry containing a simple string, then
2358 * it's a standard string corresponding to a static rule, thus the
2359 * parsing is cancelled and be.name is restored to be resolved.
2360 */
2361 pxname = rule->be.name;
2362 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002363 curproxy->conf.args.ctx = ARGC_UBK;
2364 curproxy->conf.args.file = rule->file;
2365 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002366 err = NULL;
2367 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002368 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2369 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002370 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002371 cfgerr++;
2372 continue;
2373 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002374 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2375
2376 if (!LIST_ISEMPTY(&rule->be.expr)) {
2377 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2378 rule->dynamic = 1;
2379 free(pxname);
2380 continue;
2381 }
2382 /* simple string: free the expression and fall back to static rule */
2383 free(node->arg);
2384 free(node);
2385 }
2386
2387 rule->dynamic = 0;
2388 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002389
Willy Tarreauafb39922015-05-26 12:04:09 +02002390 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002391 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002392 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2393 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002394 cfgerr++;
2395 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002396 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2397 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002398 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002399 } else if (target->mode != curproxy->mode &&
2400 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2401
Christopher Faulet767a84b2017-11-24 16:50:31 +01002402 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2403 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2404 curproxy->conf.file, curproxy->conf.line,
2405 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2406 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002407 cfgerr++;
Willy Tarreau68ad3a42018-10-22 11:49:15 +02002408 } else if ((curproxy->options2 ^ target->options2) & PR_O2_USE_HTX) {
2409 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",
2410 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2411 curproxy->conf.file, curproxy->conf.line,
2412 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2413 target->conf.file, target->conf.line);
2414 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002415 } else {
2416 free((void *)rule->be.name);
2417 rule->be.backend = target;
Emeric Brun3f783572017-01-12 11:21:28 +01002418 /* For each target of switching rules, we update
2419 * their tot_fe_maxconn, except if a previous rule point
2420 * on the same backend or on the default backend */
2421 if (rule->be.backend != curproxy->defbe.be) {
2422 struct switching_rule *swrule;
2423
2424 list_for_each_entry(swrule, &curproxy->switching_rules, list) {
2425 if (rule == swrule) {
2426 target->tot_fe_maxconn += curproxy->maxconn;
2427 break;
2428 }
2429 else if (!swrule->dynamic && swrule->be.backend == rule->be.backend) {
2430 /* there is multiple ref of this backend */
2431 break;
2432 }
2433 }
2434 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02002435 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002436 }
2437
Willy Tarreau64ab6072014-09-16 12:17:36 +02002438 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002439 list_for_each_entry(srule, &curproxy->server_rules, list) {
2440 struct server *target = findserver(curproxy, srule->srv.name);
2441
2442 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002443 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2444 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002445 cfgerr++;
2446 continue;
2447 }
2448 free((void *)srule->srv.name);
2449 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002450 }
2451
Emeric Brunb982a3d2010-01-04 15:45:53 +01002452 /* find the target table for 'stick' rules */
2453 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
2454 struct proxy *target;
2455
Emeric Brun1d33b292010-01-04 15:47:17 +01002456 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2457 if (mrule->flags & STK_IS_STORE)
2458 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2459
Emeric Brunb982a3d2010-01-04 15:45:53 +01002460 if (mrule->table.name)
Willy Tarreau9e0bb102015-05-26 11:24:42 +02002461 target = proxy_tbl_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002462 else
2463 target = curproxy;
2464
2465 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002466 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
2467 curproxy->id, mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002468 cfgerr++;
2469 }
2470 else if (target->table.size == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002471 ha_alert("Proxy '%s': stick-table '%s' used but not configured.\n",
2472 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002473 cfgerr++;
2474 }
Willy Tarreau12785782012-04-27 21:37:17 +02002475 else if (!stktable_compatible_sample(mrule->expr, target->table.type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002476 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2477 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002478 cfgerr++;
2479 }
2480 else {
2481 free((void *)mrule->table.name);
2482 mrule->table.t = &(target->table);
Willy Tarreau888617d2010-06-20 09:11:39 +02002483 stktable_alloc_data_type(&target->table, STKTABLE_DT_SERVER_ID, NULL);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002484 }
2485 }
2486
2487 /* find the target table for 'store response' rules */
2488 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
2489 struct proxy *target;
2490
Emeric Brun1d33b292010-01-04 15:47:17 +01002491 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2492
Emeric Brunb982a3d2010-01-04 15:45:53 +01002493 if (mrule->table.name)
Willy Tarreau9e0bb102015-05-26 11:24:42 +02002494 target = proxy_tbl_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002495 else
2496 target = curproxy;
2497
2498 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002499 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
2500 curproxy->id, mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002501 cfgerr++;
2502 }
2503 else if (target->table.size == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002504 ha_alert("Proxy '%s': stick-table '%s' used but not configured.\n",
2505 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002506 cfgerr++;
2507 }
Willy Tarreau12785782012-04-27 21:37:17 +02002508 else if (!stktable_compatible_sample(mrule->expr, target->table.type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002509 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2510 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002511 cfgerr++;
2512 }
2513 else {
2514 free((void *)mrule->table.name);
2515 mrule->table.t = &(target->table);
Willy Tarreau888617d2010-06-20 09:11:39 +02002516 stktable_alloc_data_type(&target->table, STKTABLE_DT_SERVER_ID, NULL);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002517 }
2518 }
2519
Christopher Faulete4e830d2017-09-18 14:51:41 +02002520 /* check validity for 'tcp-request' layer 4 rules */
2521 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2522 err = NULL;
2523 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002524 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002525 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002526 cfgerr++;
2527 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002528 }
2529
Christopher Faulete4e830d2017-09-18 14:51:41 +02002530 /* check validity for 'tcp-request' layer 5 rules */
2531 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2532 err = NULL;
2533 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002534 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002535 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002536 cfgerr++;
2537 }
2538 }
2539
Christopher Faulete4e830d2017-09-18 14:51:41 +02002540 /* check validity for 'tcp-request' layer 6 rules */
2541 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2542 err = NULL;
2543 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002544 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002545 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002546 cfgerr++;
2547 }
2548 }
2549
Christopher Faulete4e830d2017-09-18 14:51:41 +02002550 /* check validity for 'http-request' layer 7 rules */
2551 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2552 err = NULL;
2553 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002554 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002555 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002556 cfgerr++;
2557 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002558 }
2559
Christopher Faulete4e830d2017-09-18 14:51:41 +02002560 /* check validity for 'http-response' layer 7 rules */
2561 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2562 err = NULL;
2563 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002564 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002565 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002566 cfgerr++;
2567 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002568 }
2569
Willy Tarreaub3dc39d2014-04-28 22:06:57 +02002570 /* move any "block" rules at the beginning of the http-request rules */
2571 if (!LIST_ISEMPTY(&curproxy->block_rules)) {
2572 /* insert block_rules into http_req_rules at the beginning */
2573 curproxy->block_rules.p->n = curproxy->http_req_rules.n;
2574 curproxy->http_req_rules.n->p = curproxy->block_rules.p;
2575 curproxy->block_rules.n->p = &curproxy->http_req_rules;
2576 curproxy->http_req_rules.n = curproxy->block_rules.n;
2577 LIST_INIT(&curproxy->block_rules);
2578 }
2579
Emeric Brun32da3c42010-09-23 18:39:19 +02002580 if (curproxy->table.peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002581 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002582
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002583 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +02002584 if (strcmp(curpeers->id, curproxy->table.peers.name) == 0) {
2585 free((void *)curproxy->table.peers.name);
Willy Tarreau973ca492013-01-17 21:34:52 +01002586 curproxy->table.peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002587 break;
2588 }
2589 }
2590
2591 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002592 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
2593 curproxy->id, curproxy->table.peers.name);
Willy Tarreaud66bf962011-10-28 14:16:49 +02002594 free((void *)curproxy->table.peers.name);
2595 curproxy->table.peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002596 cfgerr++;
2597 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002598 else if (curpeers->state == PR_STSTOPPED) {
2599 /* silently disable this peers section */
2600 curproxy->table.peers.p = NULL;
2601 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002602 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002603 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2604 curproxy->id, localpeer, curpeers->id);
Willy Tarreaud66bf962011-10-28 14:16:49 +02002605 curproxy->table.peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002606 cfgerr++;
2607 }
2608 }
2609
Simon Horman9dc49962015-01-30 11:22:59 +09002610
2611 if (curproxy->email_alert.mailers.name) {
2612 struct mailers *curmailers = mailers;
2613
2614 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002615 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002616 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002617 }
Simon Horman9dc49962015-01-30 11:22:59 +09002618 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002619 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2620 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002621 free_email_alert(curproxy);
2622 cfgerr++;
2623 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002624 else {
2625 err = NULL;
2626 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002627 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002628 free(err);
2629 cfgerr++;
2630 }
2631 }
Simon Horman9dc49962015-01-30 11:22:59 +09002632 }
2633
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002634 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & ST_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002635 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002636 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002637 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2638 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002639 cfgerr++;
2640 goto out_uri_auth_compat;
2641 }
2642
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002643 if (curproxy->uri_auth && curproxy->uri_auth->userlist && !(curproxy->uri_auth->flags & ST_CONVDONE)) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002644 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002645 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002646 int i = 0;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002647
Willy Tarreau95fa4692010-02-01 13:05:50 +01002648 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2649 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002650
2651 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002652 uri_auth_compat_req[i++] = "realm";
2653 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2654 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002655
Willy Tarreau95fa4692010-02-01 13:05:50 +01002656 uri_auth_compat_req[i++] = "unless";
2657 uri_auth_compat_req[i++] = "{";
2658 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2659 uri_auth_compat_req[i++] = "}";
2660 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002661
Willy Tarreauff011f22011-01-06 17:51:27 +01002662 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2663 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002664 cfgerr++;
2665 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002666 }
2667
Willy Tarreauff011f22011-01-06 17:51:27 +01002668 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002669
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002670 if (curproxy->uri_auth->auth_realm) {
2671 free(curproxy->uri_auth->auth_realm);
2672 curproxy->uri_auth->auth_realm = NULL;
2673 }
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002674
2675 curproxy->uri_auth->flags |= ST_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002676 }
2677out_uri_auth_compat:
2678
Dragan Dosen43885c72015-10-01 13:18:13 +02002679 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002680 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002681 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2682 if (!curproxy->conf.logformat_sd_string) {
2683 /* set the default logformat_sd_string */
2684 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2685 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002686 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002687 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002688 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002689
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002690 /* compile the log format */
2691 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002692 if (curproxy->conf.logformat_string != default_http_log_format &&
2693 curproxy->conf.logformat_string != default_tcp_log_format &&
2694 curproxy->conf.logformat_string != clf_http_log_format)
2695 free(curproxy->conf.logformat_string);
2696 curproxy->conf.logformat_string = NULL;
2697 free(curproxy->conf.lfs_file);
2698 curproxy->conf.lfs_file = NULL;
2699 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002700
2701 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2702 free(curproxy->conf.logformat_sd_string);
2703 curproxy->conf.logformat_sd_string = NULL;
2704 free(curproxy->conf.lfsd_file);
2705 curproxy->conf.lfsd_file = NULL;
2706 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002707 }
2708
Willy Tarreau62a61232013-04-12 18:13:46 +02002709 if (curproxy->conf.logformat_string) {
2710 curproxy->conf.args.ctx = ARGC_LOG;
2711 curproxy->conf.args.file = curproxy->conf.lfs_file;
2712 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002713 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002714 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002715 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002716 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
2717 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002718 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002719 cfgerr++;
2720 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002721 curproxy->conf.args.file = NULL;
2722 curproxy->conf.args.line = 0;
2723 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002724
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002725 if (curproxy->conf.logformat_sd_string) {
2726 curproxy->conf.args.ctx = ARGC_LOGSD;
2727 curproxy->conf.args.file = curproxy->conf.lfsd_file;
2728 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002729 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002730 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 +01002731 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002732 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2733 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002734 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002735 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002736 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002737 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2738 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002739 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002740 cfgerr++;
2741 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002742 curproxy->conf.args.file = NULL;
2743 curproxy->conf.args.line = 0;
2744 }
2745
Willy Tarreau62a61232013-04-12 18:13:46 +02002746 if (curproxy->conf.uniqueid_format_string) {
2747 curproxy->conf.args.ctx = ARGC_UIF;
2748 curproxy->conf.args.file = curproxy->conf.uif_file;
2749 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002750 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002751 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 +01002752 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002753 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
2754 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002755 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002756 cfgerr++;
2757 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002758 curproxy->conf.args.file = NULL;
2759 curproxy->conf.args.line = 0;
2760 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002761
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002762 /* only now we can check if some args remain unresolved.
2763 * This must be done after the users and groups resolution.
2764 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002765 cfgerr += smp_resolve_args(curproxy);
2766 if (!cfgerr)
2767 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002768
Willy Tarreau2738a142006-07-08 17:28:09 +02002769 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002770 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02002771 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02002772 (!curproxy->timeout.connect ||
2773 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002774 ha_warning("config : missing timeouts for %s '%s'.\n"
2775 " | While not properly invalid, you will certainly encounter various problems\n"
2776 " | with such a configuration. To fix this, please ensure that all following\n"
2777 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
2778 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002779 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02002780 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02002781
Willy Tarreau1fa31262007-12-03 00:36:16 +01002782 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
2783 * We must still support older configurations, so let's find out whether those
2784 * parameters have been set or must be copied from contimeouts.
2785 */
2786 if (curproxy != &defproxy) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002787 if (!curproxy->timeout.tarpit ||
2788 curproxy->timeout.tarpit == defproxy.timeout.tarpit) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01002789 /* tarpit timeout not set. We search in the following order:
2790 * default.tarpit, curr.connect, default.connect.
2791 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002792 if (defproxy.timeout.tarpit)
Willy Tarreau1fa31262007-12-03 00:36:16 +01002793 curproxy->timeout.tarpit = defproxy.timeout.tarpit;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002794 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002795 curproxy->timeout.tarpit = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002796 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002797 curproxy->timeout.tarpit = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002798 }
2799 if ((curproxy->cap & PR_CAP_BE) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002800 (!curproxy->timeout.queue ||
2801 curproxy->timeout.queue == defproxy.timeout.queue)) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01002802 /* queue timeout not set. We search in the following order:
2803 * default.queue, curr.connect, default.connect.
2804 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002805 if (defproxy.timeout.queue)
Willy Tarreau1fa31262007-12-03 00:36:16 +01002806 curproxy->timeout.queue = defproxy.timeout.queue;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002807 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002808 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002809 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002810 curproxy->timeout.queue = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002811 }
2812 }
2813
Willy Tarreau1620ec32011-08-06 17:05:02 +02002814 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_SSL3_CHK) {
Willy Tarreau137325d2010-02-01 16:38:17 +01002815 curproxy->check_len = sizeof(sslv3_client_hello_pkt) - 1;
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002816 curproxy->check_req = malloc(curproxy->check_len);
Willy Tarreau137325d2010-02-01 16:38:17 +01002817 memcpy(curproxy->check_req, sslv3_client_hello_pkt, curproxy->check_len);
Willy Tarreauf3c69202006-07-09 16:42:34 +02002818 }
2819
Willy Tarreau215663d2014-06-13 18:30:23 +02002820 if (!LIST_ISEMPTY(&curproxy->tcpcheck_rules) &&
2821 (curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_TCPCHK_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002822 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
2823 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02002824 err_code |= ERR_WARN;
2825 }
2826
Willy Tarreau193b8c62012-11-22 00:17:38 +01002827 /* ensure that cookie capture length is not too large */
2828 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002829 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
2830 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002831 err_code |= ERR_WARN;
2832 curproxy->capture_len = global.tune.cookie_len - 1;
2833 }
2834
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002835 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01002836 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02002837 curproxy->req_cap_pool = create_pool("ptrcap",
2838 curproxy->nb_req_cap * sizeof(char *),
2839 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01002840 }
2841
2842 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02002843 curproxy->rsp_cap_pool = create_pool("ptrcap",
2844 curproxy->nb_rsp_cap * sizeof(char *),
2845 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01002846 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002847
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002848 switch (curproxy->load_server_state_from_file) {
2849 case PR_SRV_STATE_FILE_UNSPEC:
2850 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
2851 break;
2852 case PR_SRV_STATE_FILE_GLOBAL:
2853 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002854 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",
2855 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002856 err_code |= ERR_WARN;
2857 }
2858 break;
2859 }
2860
Willy Tarreaubaaee002006-06-26 02:48:02 +02002861 /* first, we will invert the servers list order */
2862 newsrv = NULL;
2863 while (curproxy->srv) {
2864 struct server *next;
2865
2866 next = curproxy->srv->next;
2867 curproxy->srv->next = newsrv;
2868 newsrv = curproxy->srv;
2869 if (!next)
2870 break;
2871 curproxy->srv = next;
2872 }
2873
Willy Tarreau17edc812014-01-03 12:14:34 +01002874 /* Check that no server name conflicts. This causes trouble in the stats.
2875 * We only emit a warning for the first conflict affecting each server,
2876 * in order to avoid combinatory explosion if all servers have the same
2877 * name. We do that only for servers which do not have an explicit ID,
2878 * because these IDs were made also for distinguishing them and we don't
2879 * want to annoy people who correctly manage them.
2880 */
2881 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
2882 struct server *other_srv;
2883
2884 if (newsrv->puid)
2885 continue;
2886
2887 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
2888 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002889 ha_warning("parsing [%s:%d] : %s '%s', another server named '%s' was defined without an explicit ID at line %d, this is not recommended.\n",
2890 newsrv->conf.file, newsrv->conf.line,
2891 proxy_type_str(curproxy), curproxy->id,
2892 newsrv->id, other_srv->conf.line);
Willy Tarreau17edc812014-01-03 12:14:34 +01002893 break;
2894 }
2895 }
2896 }
2897
Willy Tarreaudd701652010-05-25 23:03:02 +02002898 /* assign automatic UIDs to servers which don't have one yet */
2899 next_id = 1;
2900 newsrv = curproxy->srv;
2901 while (newsrv != NULL) {
2902 if (!newsrv->puid) {
2903 /* server ID not set, use automatic numbering with first
2904 * spare entry starting with next_svid.
2905 */
2906 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
2907 newsrv->conf.id.key = newsrv->puid = next_id;
2908 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
2909 }
2910 next_id++;
2911 newsrv = newsrv->next;
2912 }
2913
Willy Tarreau20697042007-11-15 23:26:18 +01002914 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01002915 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002916
Willy Tarreau62c3be22012-01-20 13:12:32 +01002917 /*
2918 * If this server supports a maxconn parameter, it needs a dedicated
2919 * tasks to fill the emptied slots when a connection leaves.
2920 * Also, resolve deferred tracking dependency if needed.
2921 */
2922 newsrv = curproxy->srv;
2923 while (newsrv != NULL) {
2924 if (newsrv->minconn > newsrv->maxconn) {
2925 /* Only 'minconn' was specified, or it was higher than or equal
2926 * to 'maxconn'. Let's turn this into maxconn and clean it, as
2927 * this will avoid further useless expensive computations.
2928 */
2929 newsrv->maxconn = newsrv->minconn;
2930 } else if (newsrv->maxconn && !newsrv->minconn) {
2931 /* minconn was not specified, so we set it to maxconn */
2932 newsrv->minconn = newsrv->maxconn;
2933 }
2934
Willy Tarreau17d45382016-12-22 21:16:08 +01002935 /* this will also properly set the transport layer for prod and checks */
2936 if (newsrv->use_ssl || newsrv->check.use_ssl) {
2937 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
2938 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
2939 }
Emeric Brun94324a42012-10-11 14:00:19 +02002940
Willy Tarreau2f075e92013-12-03 11:11:34 +01002941 /* set the check type on the server */
2942 newsrv->check.type = curproxy->options2 & PR_O2_CHK_ANY;
2943
Willy Tarreau62c3be22012-01-20 13:12:32 +01002944 if (newsrv->trackit) {
2945 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02002946 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01002947 char *pname, *sname;
2948
2949 pname = newsrv->trackit;
2950 sname = strrchr(pname, '/');
2951
2952 if (sname)
2953 *sname++ = '\0';
2954 else {
2955 sname = pname;
2956 pname = NULL;
2957 }
2958
2959 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02002960 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002961 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002962 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
2963 proxy_type_str(curproxy), curproxy->id,
2964 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002965 cfgerr++;
2966 goto next_srv;
2967 }
2968 } else
2969 px = curproxy;
2970
2971 srv = findserver(px, sname);
2972 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002973 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
2974 proxy_type_str(curproxy), curproxy->id,
2975 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002976 cfgerr++;
2977 goto next_srv;
2978 }
2979
Willy Tarreau32091232014-05-16 13:52:00 +02002980 if (!(srv->check.state & CHK_ST_CONFIGURED) &&
2981 !(srv->agent.state & CHK_ST_CONFIGURED) &&
2982 !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002983 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
2984 "tracking as it does not have any check nor agent enabled.\n",
2985 proxy_type_str(curproxy), curproxy->id,
2986 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02002987 cfgerr++;
2988 goto next_srv;
2989 }
2990
2991 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
2992
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01002993 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002994 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
2995 "belongs to a tracking chain looping back to %s/%s.\n",
2996 proxy_type_str(curproxy), curproxy->id,
2997 newsrv->id, px->id, srv->id, px->id,
2998 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002999 cfgerr++;
3000 goto next_srv;
3001 }
3002
3003 if (curproxy != px &&
3004 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003005 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3006 "tracking: disable-on-404 option inconsistency.\n",
3007 proxy_type_str(curproxy), curproxy->id,
3008 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003009 cfgerr++;
3010 goto next_srv;
3011 }
3012
Willy Tarreau62c3be22012-01-20 13:12:32 +01003013 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003014 newsrv->tracknext = srv->trackers;
3015 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003016
3017 free(newsrv->trackit);
3018 newsrv->trackit = NULL;
3019 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003020
Willy Tarreau62c3be22012-01-20 13:12:32 +01003021 next_srv:
3022 newsrv = newsrv->next;
3023 }
3024
Olivier Houchard4e694042017-03-14 20:01:29 +01003025 /*
3026 * Try to generate dynamic cookies for servers now.
3027 * It couldn't be done earlier, since at the time we parsed
3028 * the server line, we may not have known yet that we
3029 * should use dynamic cookies, or the secret key may not
3030 * have been provided yet.
3031 */
3032 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3033 newsrv = curproxy->srv;
3034 while (newsrv != NULL) {
3035 srv_set_dyncookie(newsrv);
3036 newsrv = newsrv->next;
3037 }
3038
3039 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003040 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003041 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003042 */
3043
3044 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3045 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3046 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003047 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3048 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3049 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003050 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3051 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3052 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003053 } else {
3054 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3055 fwrr_init_server_groups(curproxy);
3056 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003057 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003058
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003059 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003060 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3061 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3062 fwlc_init_server_tree(curproxy);
3063 } else {
3064 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3065 fas_init_server_tree(curproxy);
3066 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003067 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003068
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003069 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003070 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3071 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3072 chash_init_server_tree(curproxy);
3073 } else {
3074 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3075 init_server_map(curproxy);
3076 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003077 break;
3078 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003079 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003080
3081 if (curproxy->options & PR_O_LOGASAP)
3082 curproxy->to_log &= ~LW_BYTES;
3083
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003084 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003085 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3086 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003087 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3088 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003089 err_code |= ERR_WARN;
3090 }
3091
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003092 if (curproxy->mode != PR_MODE_HTTP) {
3093 int optnum;
3094
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003095 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003096 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3097 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003098 err_code |= ERR_WARN;
3099 curproxy->uri_auth = NULL;
3100 }
3101
Willy Tarreaude7dc882017-03-10 11:49:21 +01003102 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003103 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3104 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003105 err_code |= ERR_WARN;
3106 }
3107
3108 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003109 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3110 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003111 err_code |= ERR_WARN;
3112 }
3113
3114 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003115 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3116 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003117 err_code |= ERR_WARN;
3118 }
3119
3120 if (!LIST_ISEMPTY(&curproxy->block_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003121 ha_warning("config : 'block' rules ignored for %s '%s' as they require HTTP mode.\n",
3122 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003123 err_code |= ERR_WARN;
3124 }
3125
3126 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003127 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3128 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003129 err_code |= ERR_WARN;
3130 }
3131
Willy Tarreau87cf5142011-08-19 22:57:24 +02003132 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003133 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3134 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003135 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003136 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003137 }
3138
3139 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003140 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3141 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003142 err_code |= ERR_WARN;
3143 curproxy->options &= ~PR_O_ORGTO;
3144 }
3145
3146 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3147 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3148 (curproxy->cap & cfg_opts[optnum].cap) &&
3149 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003150 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3151 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003152 err_code |= ERR_WARN;
3153 curproxy->options &= ~cfg_opts[optnum].val;
3154 }
3155 }
3156
3157 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3158 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3159 (curproxy->cap & cfg_opts2[optnum].cap) &&
3160 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003161 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3162 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003163 err_code |= ERR_WARN;
3164 curproxy->options2 &= ~cfg_opts2[optnum].val;
3165 }
3166 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003167
Willy Tarreau29fbe512015-08-20 19:35:14 +02003168#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003169 if (curproxy->conn_src.bind_hdr_occ) {
3170 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003171 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3172 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003173 err_code |= ERR_WARN;
3174 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003175#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003176 }
3177
Willy Tarreaubaaee002006-06-26 02:48:02 +02003178 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003179 * ensure that we're not cross-dressing a TCP server into HTTP.
3180 */
3181 newsrv = curproxy->srv;
3182 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003183 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003184 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3185 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003186 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003187 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003188
Willy Tarreau0cec3312011-10-31 13:49:26 +01003189 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003190 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3191 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003192 err_code |= ERR_WARN;
3193 }
3194
Willy Tarreauc93cd162014-05-13 15:54:22 +02003195 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003196 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3197 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003198 err_code |= ERR_WARN;
3199 }
3200
Willy Tarreau29fbe512015-08-20 19:35:14 +02003201#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003202 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3203 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003204 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3205 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003206 err_code |= ERR_WARN;
3207 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003208#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003209
Willy Tarreau46deab62018-04-28 07:18:15 +02003210 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3211 curproxy->options &= ~PR_O_REUSE_MASK;
3212
Willy Tarreau21d2af32008-02-14 20:25:24 +01003213 newsrv = newsrv->next;
3214 }
3215
Willy Tarreaue42bd962014-09-16 16:21:19 +02003216 /* check if we have a frontend with "tcp-request content" looking at L7
3217 * with no inspect-delay
3218 */
3219 if ((curproxy->cap & PR_CAP_FE) && !curproxy->tcp_req.inspect_delay) {
Christopher Faulete4e830d2017-09-18 14:51:41 +02003220 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
3221 if (arule->action == ACT_TCP_CAPTURE &&
3222 !(arule->arg.cap.expr->fetch->val & SMP_VAL_FE_SES_ACC))
Willy Tarreaue42bd962014-09-16 16:21:19 +02003223 break;
Christopher Faulete4e830d2017-09-18 14:51:41 +02003224 if ((arule->action >= ACT_ACTION_TRK_SC0 && arule->action <= ACT_ACTION_TRK_SCMAX) &&
3225 !(arule->arg.trk_ctr.expr->fetch->val & SMP_VAL_FE_SES_ACC))
Willy Tarreaue42bd962014-09-16 16:21:19 +02003226 break;
3227 }
3228
Christopher Faulete4e830d2017-09-18 14:51:41 +02003229 if (&arule->list != &curproxy->tcp_req.inspect_rules) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003230 ha_warning("config : %s '%s' : some 'tcp-request content' rules explicitly depending on request"
3231 " contents were found in a frontend without any 'tcp-request inspect-delay' setting."
3232 " This means that these rules will randomly find their contents. This can be fixed by"
3233 " setting the tcp-request inspect-delay.\n",
3234 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue42bd962014-09-16 16:21:19 +02003235 err_code |= ERR_WARN;
3236 }
3237 }
3238
Christopher Fauletd7c91962015-04-30 11:48:27 +02003239 /* Check filter configuration, if any */
3240 cfgerr += flt_check(curproxy);
3241
Willy Tarreauc1a21672009-08-16 22:37:44 +02003242 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003243 if (!curproxy->accept)
3244 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003245
Willy Tarreauc1a21672009-08-16 22:37:44 +02003246 if (curproxy->tcp_req.inspect_delay ||
3247 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003248 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003249
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003250 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003251 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003252 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003253 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003254
William Lallemandcf62f7e2018-10-26 14:47:40 +02003255 if (curproxy->mode == PR_MODE_CLI) {
3256 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3257 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3258 }
3259
Willy Tarreauc1a21672009-08-16 22:37:44 +02003260 /* both TCP and HTTP must check switching rules */
3261 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003262
3263 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003264 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003265 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3266 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 +01003267 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003268 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3269 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003270 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003271 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003272 }
3273
3274 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003275 if (curproxy->tcp_req.inspect_delay ||
3276 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3277 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3278
Emeric Brun97679e72010-09-23 17:56:44 +02003279 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3280 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3281
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003282 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003283 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003284 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003285 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003286
3287 /* If the backend does requires RDP cookie persistence, we have to
3288 * enable the corresponding analyser.
3289 */
3290 if (curproxy->options2 & PR_O2_RDPC_PRST)
3291 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003292
3293 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003294 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003295 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3296 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 +01003297 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003298 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3299 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003300 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003301 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003302 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003303
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003304 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003305 * attached to the current proxy */
3306 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3307 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003308 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003309
Christopher Faulet7ff4f142018-11-20 11:23:52 +01003310 /* Special case for HTX because it is still experimental */
3311 if (curproxy->options2 & PR_O2_USE_HTX)
3312 mode = PROTO_MODE_HTX;
3313
Christopher Fauleta717b992018-04-10 14:43:00 +02003314 if (!bind_conf->mux_proto)
3315 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003316
3317 /* it is possible that an incorrect mux was referenced
3318 * due to the proxy's mode not being taken into account
3319 * on first pass. Let's adjust it now.
3320 */
3321 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3322
3323 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003324 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3325 proxy_type_str(curproxy), curproxy->id,
3326 (int)bind_conf->mux_proto->token.len,
3327 bind_conf->mux_proto->token.ptr,
3328 bind_conf->arg, bind_conf->file, bind_conf->line);
3329 cfgerr++;
3330 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003331
3332 /* update the mux */
3333 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003334 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003335 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3336 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003337 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003338
Christopher Faulet7ff4f142018-11-20 11:23:52 +01003339 /* Special case for HTX because it is still experimental */
3340 if (curproxy->options2 & PR_O2_USE_HTX)
3341 mode = PROTO_MODE_HTX;
3342
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003343 if (!newsrv->mux_proto)
3344 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003345
3346 /* it is possible that an incorrect mux was referenced
3347 * due to the proxy's mode not being taken into account
3348 * on first pass. Let's adjust it now.
3349 */
3350 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3351
3352 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003353 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3354 proxy_type_str(curproxy), curproxy->id,
3355 (int)newsrv->mux_proto->token.len,
3356 newsrv->mux_proto->token.ptr,
3357 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3358 cfgerr++;
3359 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003360
3361 /* update the mux */
3362 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003363 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003364 }
3365
3366 /***********************************************************/
3367 /* At this point, target names have already been resolved. */
3368 /***********************************************************/
3369
3370 /* Check multi-process mode compatibility */
3371
3372 if (global.nbproc > 1 && global.stats_fe) {
3373 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3374 unsigned long mask;
3375
3376 mask = nbits(global.nbproc);
3377 if (global.stats_fe->bind_proc)
3378 mask &= global.stats_fe->bind_proc;
3379
3380 if (bind_conf->bind_proc)
3381 mask &= bind_conf->bind_proc;
3382
3383 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003384 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003385 break;
3386 }
3387 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003388 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 +02003389 }
3390 }
3391
3392 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003393 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003394 if (curproxy->bind_proc)
3395 continue;
3396
3397 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3398 unsigned long mask;
3399
Willy Tarreaue428b082015-05-04 21:57:58 +02003400 mask = bind_conf->bind_proc ? bind_conf->bind_proc : nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003401 curproxy->bind_proc |= mask;
3402 }
3403
3404 if (!curproxy->bind_proc)
Willy Tarreaue428b082015-05-04 21:57:58 +02003405 curproxy->bind_proc = nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003406 }
3407
3408 if (global.stats_fe) {
3409 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3410 unsigned long mask;
3411
Cyril Bonté06181952016-02-24 00:14:54 +01003412 mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003413 global.stats_fe->bind_proc |= mask;
3414 }
3415 if (!global.stats_fe->bind_proc)
Willy Tarreaue428b082015-05-04 21:57:58 +02003416 global.stats_fe->bind_proc = nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003417 }
3418
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003419 /* propagate bindings from frontends to backends. Don't do it if there
3420 * are any fatal errors as we must not call it with unresolved proxies.
3421 */
3422 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003423 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003424 if (curproxy->cap & PR_CAP_FE)
3425 propagate_processes(curproxy, NULL);
3426 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003427 }
3428
3429 /* Bind each unbound backend to all processes when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003430 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003431 if (curproxy->bind_proc)
3432 continue;
Willy Tarreaue428b082015-05-04 21:57:58 +02003433 curproxy->bind_proc = nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003434 }
3435
3436 /*******************************************************/
3437 /* At this step, all proxies have a non-null bind_proc */
3438 /*******************************************************/
3439
3440 /* perform the final checks before creating tasks */
3441
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003442 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003443 struct listener *listener;
3444 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003445
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003446 /* Configure SSL for each bind line.
3447 * Note: if configuration fails at some point, the ->ctx member
3448 * remains NULL so that listeners can later detach.
3449 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003450 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003451 if (bind_conf->xprt->prepare_bind_conf &&
3452 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003453 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003454 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003455
Willy Tarreaue6b98942007-10-29 01:09:36 +01003456 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003457 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003458 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003459 int nbproc;
3460
3461 nbproc = my_popcountl(curproxy->bind_proc &
Cyril Bonté4920d702016-04-15 07:58:43 +02003462 (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) &
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003463 nbits(global.nbproc));
3464
3465 if (!nbproc) /* no intersection between listener and frontend */
3466 nbproc = 1;
3467
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003468 if (!listener->luid) {
3469 /* listener ID not set, use automatic numbering with first
3470 * spare entry starting with next_luid.
3471 */
3472 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3473 listener->conf.id.key = listener->luid = next_id;
3474 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003475 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003476 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003477
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003478 /* enable separate counters */
3479 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003480 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003481 if (!listener->name)
3482 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003483 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003484
Willy Tarreaue6b98942007-10-29 01:09:36 +01003485 if (curproxy->options & PR_O_TCP_NOLING)
3486 listener->options |= LI_O_NOLINGER;
Willy Tarreau32368ce2012-09-06 11:10:55 +02003487 if (!listener->maxconn)
3488 listener->maxconn = curproxy->maxconn;
3489 if (!listener->backlog)
3490 listener->backlog = curproxy->backlog;
Willy Tarreau16a21472012-11-19 12:39:59 +01003491 if (!listener->maxaccept)
3492 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3493
3494 /* we want to have an optimal behaviour on single process mode to
3495 * maximize the work at once, but in multi-process we want to keep
3496 * some fairness between processes, so we target half of the max
3497 * number of events to be balanced over all the processes the proxy
3498 * is bound to. Rememeber that maxaccept = -1 must be kept as it is
3499 * used to disable the limit.
3500 */
3501 if (listener->maxaccept > 0) {
3502 if (nbproc > 1)
3503 listener->maxaccept = (listener->maxaccept + 1) / 2;
3504 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3505 }
3506
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003507 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003508 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003509 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003510
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003511 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003512 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003513
Willy Tarreau620408f2016-10-21 16:37:51 +02003514 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3515 listener->options |= LI_O_TCP_L5_RULES;
3516
Willy Tarreaude3041d2010-05-31 10:56:17 +02003517 if (curproxy->mon_mask.s_addr)
3518 listener->options |= LI_O_CHK_MONNET;
3519
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003520 /* smart accept mode is automatic in HTTP mode */
3521 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003522 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003523 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3524 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003525 }
3526
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003527 /* Release unused SSL configs */
3528 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003529 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3530 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003531 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003532
Willy Tarreau9504dd62018-10-15 09:37:03 +02003533 if (atleast2(curproxy->bind_proc & nbits(global.nbproc))) {
Willy Tarreau102df612014-05-07 23:56:38 +02003534 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003535 int count, maxproc = 0;
3536
3537 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
David Carliere6c39412015-07-02 07:00:17 +00003538 count = my_popcountl(bind_conf->bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003539 if (count > maxproc)
3540 maxproc = count;
3541 }
3542 /* backends have 0, frontends have 1 or more */
3543 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003544 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3545 " limited to process assigned to the current request.\n",
3546 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003547
Willy Tarreau102df612014-05-07 23:56:38 +02003548 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003549 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3550 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003551 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003552 }
Willy Tarreau102df612014-05-07 23:56:38 +02003553 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003554 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3555 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003556 }
3557 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003558
3559 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003560 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003561 if (curproxy->task) {
3562 curproxy->task->context = curproxy;
3563 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003564 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003565 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3566 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003567 cfgerr++;
3568 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003569 }
3570
Willy Tarreaufbb78422011-06-05 15:38:35 +02003571 /* automatically compute fullconn if not set. We must not do it in the
3572 * loop above because cross-references are not yet fully resolved.
3573 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003574 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreaufbb78422011-06-05 15:38:35 +02003575 /* If <fullconn> is not set, let's set it to 10% of the sum of
3576 * the possible incoming frontend's maxconns.
3577 */
3578 if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) {
Willy Tarreaufbb78422011-06-05 15:38:35 +02003579 /* we have the sum of the maxconns in <total>. We only
3580 * keep 10% of that sum to set the default fullconn, with
3581 * a hard minimum of 1 (to avoid a divide by zero).
3582 */
Emeric Brun3f783572017-01-12 11:21:28 +01003583 curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10;
Willy Tarreaufbb78422011-06-05 15:38:35 +02003584 if (!curproxy->fullconn)
3585 curproxy->fullconn = 1;
3586 }
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01003587 }
3588
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003589 /*
3590 * Recount currently required checks.
3591 */
3592
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003593 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003594 int optnum;
3595
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003596 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3597 if (curproxy->options & cfg_opts[optnum].val)
3598 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003599
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003600 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3601 if (curproxy->options2 & cfg_opts2[optnum].val)
3602 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003603 }
3604
Willy Tarreau0fca4832015-05-01 19:12:05 +02003605 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003606 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Willy Tarreau0fca4832015-05-01 19:12:05 +02003607 if (curproxy->table.peers.p)
3608 curproxy->table.peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
3609
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003610 if (cfg_peers) {
3611 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003612 struct peer *p, *pb;
3613
Willy Tarreau1e273012015-05-01 19:15:17 +02003614 /* Remove all peers sections which don't have a valid listener,
3615 * which are not used by any table, or which are bound to more
3616 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003617 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003618 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003619 while (*last) {
3620 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003621
3622 if (curpeers->state == PR_STSTOPPED) {
3623 /* the "disabled" keyword was present */
3624 if (curpeers->peers_fe)
3625 stop_proxy(curpeers->peers_fe);
3626 curpeers->peers_fe = NULL;
3627 }
3628 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003629 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3630 curpeers->id, localpeer);
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003631 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003632 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003633 /* either it's totally stopped or too much used */
3634 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003635 ha_alert("Peers section '%s': peers referenced by sections "
3636 "running in different processes (%d different ones). "
3637 "Check global.nbproc and all tables' bind-process "
3638 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003639 cfgerr++;
3640 }
3641 stop_proxy(curpeers->peers_fe);
3642 curpeers->peers_fe = NULL;
3643 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003644 else {
Willy Tarreaud9443442018-10-15 11:18:03 +02003645 if (!peers_init_sync(curpeers)) {
3646 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3647 curpeers->id);
3648 cfgerr++;
3649 break;
3650 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003651 last = &curpeers->next;
3652 continue;
3653 }
3654
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003655 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003656 p = curpeers->remote;
3657 while (p) {
3658 pb = p->next;
3659 free(p->id);
3660 free(p);
3661 p = pb;
3662 }
3663
3664 /* Destroy and unlink this curpeers section.
3665 * Note: curpeers is backed up into *last.
3666 */
3667 free(curpeers->id);
3668 curpeers = curpeers->next;
3669 free(*last);
3670 *last = curpeers;
3671 }
3672 }
3673
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003674 /* initialize stick-tables on backend capable proxies. This must not
3675 * be done earlier because the data size may be discovered while parsing
3676 * other proxies.
3677 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003678 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003679 if (curproxy->state == PR_STSTOPPED)
3680 continue;
3681
3682 if (!stktable_init(&curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003683 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003684 cfgerr++;
3685 }
3686 }
3687
Simon Horman0d16a402015-01-30 11:22:58 +09003688 if (mailers) {
3689 struct mailers *curmailers = mailers, **last;
3690 struct mailer *m, *mb;
3691
3692 /* Remove all mailers sections which don't have a valid listener.
3693 * This can happen when a mailers section is never referenced.
3694 */
3695 last = &mailers;
3696 while (*last) {
3697 curmailers = *last;
3698 if (curmailers->users) {
3699 last = &curmailers->next;
3700 continue;
3701 }
3702
Christopher Faulet767a84b2017-11-24 16:50:31 +01003703 ha_warning("Removing incomplete section 'mailers %s'.\n",
3704 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09003705
3706 m = curmailers->mailer_list;
3707 while (m) {
3708 mb = m->next;
3709 free(m->id);
3710 free(m);
3711 m = mb;
3712 }
3713
3714 /* Destroy and unlink this curmailers section.
3715 * Note: curmailers is backed up into *last.
3716 */
3717 free(curmailers->id);
3718 curmailers = curmailers->next;
3719 free(*last);
3720 *last = curmailers;
3721 }
3722 }
3723
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003724 /* Update server_state_file_name to backend name if backend is supposed to use
3725 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003726 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003727 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
3728 curproxy->server_state_file_name == NULL)
3729 curproxy->server_state_file_name = strdup(curproxy->id);
3730 }
3731
Willy Tarreaubafbe012017-11-24 17:34:44 +01003732 pool_head_hdr_idx = create_pool("hdr_idx",
Willy Tarreauac1932d2011-10-24 19:14:41 +02003733 global.tune.max_http_hdr * sizeof(struct hdr_idx_elem),
Willy Tarreau34eb6712011-10-24 18:15:04 +02003734 MEM_F_SHARED);
3735
Ben Draut054fbee2018-04-13 15:43:04 -06003736 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
3737 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
3738 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
3739 curr_resolvers->id, curr_resolvers->conf.file,
3740 curr_resolvers->conf.line);
3741 err_code |= ERR_WARN;
3742 }
3743 }
3744
William Lallemand48b4bb42017-10-23 14:36:34 +02003745 list_for_each_entry(postparser, &postparsers, list) {
3746 if (postparser->func)
3747 cfgerr += postparser->func();
3748 }
3749
Willy Tarreaubb925012009-07-23 13:36:36 +02003750 if (cfgerr > 0)
3751 err_code |= ERR_ALERT | ERR_FATAL;
3752 out:
3753 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003754}
3755
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003756/*
3757 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
3758 * parsing sessions.
3759 */
3760void cfg_register_keywords(struct cfg_kw_list *kwl)
3761{
3762 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
3763}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003764
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003765/*
3766 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
3767 */
3768void cfg_unregister_keywords(struct cfg_kw_list *kwl)
3769{
3770 LIST_DEL(&kwl->list);
3771 LIST_INIT(&kwl->list);
3772}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003773
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003774/* this function register new section in the haproxy configuration file.
3775 * <section_name> is the name of this new section and <section_parser>
3776 * is the called parser. If two section declaration have the same name,
3777 * only the first declared is used.
3778 */
3779int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02003780 int (*section_parser)(const char *, int, char **, int),
3781 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003782{
3783 struct cfg_section *cs;
3784
Willy Tarreau5e4261b2016-05-17 16:16:09 +02003785 list_for_each_entry(cs, &sections, list) {
3786 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003787 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02003788 return 0;
3789 }
3790 }
3791
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003792 cs = calloc(1, sizeof(*cs));
3793 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003794 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003795 return 0;
3796 }
3797
3798 cs->section_name = section_name;
3799 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02003800 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003801
3802 LIST_ADDQ(&sections, &cs->list);
3803
3804 return 1;
3805}
3806
William Lallemand48b4bb42017-10-23 14:36:34 +02003807/* this function register a new function which will be called once the haproxy
3808 * configuration file has been parsed. It's useful to check dependencies
3809 * between sections or to resolve items once everything is parsed.
3810 */
3811int cfg_register_postparser(char *name, int (*func)())
3812{
3813 struct cfg_postparser *cp;
3814
3815 cp = calloc(1, sizeof(*cp));
3816 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003817 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02003818 return 0;
3819 }
3820 cp->name = name;
3821 cp->func = func;
3822
3823 LIST_ADDQ(&postparsers, &cp->list);
3824
3825 return 1;
3826}
3827
Willy Tarreaubaaee002006-06-26 02:48:02 +02003828/*
David Carlier845efb52015-09-25 11:49:18 +01003829 * free all config section entries
3830 */
3831void cfg_unregister_sections(void)
3832{
3833 struct cfg_section *cs, *ics;
3834
3835 list_for_each_entry_safe(cs, ics, &sections, list) {
3836 LIST_DEL(&cs->list);
3837 free(cs);
3838 }
3839}
3840
Christopher Faulet7110b402016-10-26 11:09:44 +02003841void cfg_backup_sections(struct list *backup_sections)
3842{
3843 struct cfg_section *cs, *ics;
3844
3845 list_for_each_entry_safe(cs, ics, &sections, list) {
3846 LIST_DEL(&cs->list);
3847 LIST_ADDQ(backup_sections, &cs->list);
3848 }
3849}
3850
3851void cfg_restore_sections(struct list *backup_sections)
3852{
3853 struct cfg_section *cs, *ics;
3854
3855 list_for_each_entry_safe(cs, ics, backup_sections, list) {
3856 LIST_DEL(&cs->list);
3857 LIST_ADDQ(&sections, &cs->list);
3858 }
3859}
3860
Willy Tarreaue6552512018-11-26 11:33:13 +01003861/* these are the config sections handled by default */
3862REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
3863REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
3864REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
3865REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
3866REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
3867REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
3868REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
3869REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
3870REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
3871REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02003872
David Carlier845efb52015-09-25 11:49:18 +01003873/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02003874 * Local variables:
3875 * c-indent-level: 8
3876 * c-basic-offset: 8
3877 * End:
3878 */