blob: a12c4ee29f3c02d7f4c08edb75f5b12c0e186a28 [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;
Olivier Houchard86006a52018-12-14 19:37:49 +0100456 defproxy.options = PR_O_REUSE_SAFE;
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +0100457 defproxy.max_out_conns = MAX_SRV_LIST;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100458
Simon Horman66183002013-02-23 10:16:43 +0900459 defproxy.defsrv.check.inter = DEF_CHKINTR;
460 defproxy.defsrv.check.fastinter = 0;
461 defproxy.defsrv.check.downinter = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900462 defproxy.defsrv.agent.inter = DEF_CHKINTR;
463 defproxy.defsrv.agent.fastinter = 0;
464 defproxy.defsrv.agent.downinter = 0;
Simon Horman58c32972013-11-25 10:46:38 +0900465 defproxy.defsrv.check.rise = DEF_RISETIME;
466 defproxy.defsrv.check.fall = DEF_FALLTIME;
467 defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME;
468 defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME;
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200469 defproxy.defsrv.check.port = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900470 defproxy.defsrv.agent.port = 0;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100471 defproxy.defsrv.maxqueue = 0;
472 defproxy.defsrv.minconn = 0;
473 defproxy.defsrv.maxconn = 0;
Olivier Houchard006e3102018-12-10 18:30:32 +0100474 defproxy.defsrv.max_idle_conns = -1;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100475 defproxy.defsrv.pool_purge_delay = 1000;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100476 defproxy.defsrv.slowstart = 0;
477 defproxy.defsrv.onerror = DEF_HANA_ONERR;
478 defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT;
479 defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1;
Simon Horman64e34162015-02-06 11:11:57 +0900480
481 defproxy.email_alert.level = LOG_ALERT;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +0200482 defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200483}
484
Frédéric Lécaille18251032019-01-11 11:07:15 +0100485/* Allocate and initialize the frontend of a "peers" section found in
486 * file <file> at line <linenum> with <id> as ID.
487 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200488 * Note that this function may be called from "default-server"
489 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100490 */
491static int init_peers_frontend(const char *file, int linenum,
492 const char *id, struct peers *peers)
493{
494 struct proxy *p;
495
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200496 if (peers->peers_fe) {
497 p = peers->peers_fe;
498 goto out;
499 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100500
Frédéric Lécaille18251032019-01-11 11:07:15 +0100501 p = calloc(1, sizeof *p);
502 if (!p) {
503 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
504 return -1;
505 }
506
507 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200508 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100509 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200510 /* Finally store this frontend. */
511 peers->peers_fe = p;
512
513 out:
514 if (id && !p->id)
515 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200516 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100517 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100518 if (linenum != -1)
519 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100520
521 return 0;
522}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100523
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100524/* Only change ->file, ->line and ->arg struct bind_conf member values
525 * if already present.
526 */
527static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
528 const char *file, int line,
529 const char *arg, struct xprt_ops *xprt)
530{
531 struct bind_conf *bind_conf;
532
533 if (!LIST_ISEMPTY(&p->conf.bind)) {
534 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
535 free(bind_conf->file);
536 bind_conf->file = strdup(file);
537 bind_conf->line = line;
538 if (arg) {
539 free(bind_conf->arg);
540 bind_conf->arg = strdup(arg);
541 }
542 }
543 else {
544 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
545 }
546
547 return bind_conf;
548}
549
550/*
551 * Allocate a new struct peer parsed at line <linenum> in file <file>
552 * to be added to <peers>.
553 * Returns the new allocated structure if succeeded, NULL if not.
554 */
555static struct peer *cfg_peers_add_peer(struct peers *peers,
556 const char *file, int linenum,
557 const char *id, int local)
558{
559 struct peer *p;
560
561 p = calloc(1, sizeof *p);
562 if (!p) {
563 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
564 return NULL;
565 }
566
567 /* the peers are linked backwards first */
568 peers->count++;
569 p->next = peers->remote;
570 peers->remote = p;
571 p->conf.file = strdup(file);
572 p->conf.line = linenum;
573 p->last_change = now.tv_sec;
574 p->xprt = xprt_get(XPRT_RAW);
575 p->sock_init_arg = NULL;
576 HA_SPIN_INIT(&p->lock);
577 if (id)
578 p->id = strdup(id);
579 if (local) {
580 p->local = 1;
581 peers->local = p;
582 }
583
584 return p;
585}
586
Willy Tarreaubaaee002006-06-26 02:48:02 +0200587/*
William Lallemand51097192015-04-14 16:35:22 +0200588 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200589 * Returns the error code, 0 if OK, or any combination of :
590 * - ERR_ABORT: must abort ASAP
591 * - ERR_FATAL: we can continue parsing but not start the service
592 * - ERR_WARN: a warning has been emitted
593 * - ERR_ALERT: an alert has been emitted
594 * Only the two first ones can stop processing, the two others are just
595 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200596 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200597int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
598{
599 static struct peers *curpeers = NULL;
600 struct peer *newpeer = NULL;
601 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200602 struct bind_conf *bind_conf;
603 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200604 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100605 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100606 static int bind_line, peer_line;
607
608 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
609 int cur_arg;
610 static int kws_dumped;
611 struct bind_conf *bind_conf;
612 struct bind_kw *kw;
613 char *kws;
Emeric Brun32da3c42010-09-23 18:39:19 +0200614
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100615 cur_arg = 1;
616
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200617 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
618 err_code |= ERR_ALERT | ERR_ABORT;
619 goto out;
620 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100621
622 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
623 NULL, xprt_get(XPRT_RAW));
624 if (*args[0] == 'b') {
625 struct listener *l;
626
627 if (peer_line) {
628 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
629 err_code |= ERR_ALERT | ERR_FATAL;
630 goto out;
631 }
632
633 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
634 if (errmsg && *errmsg) {
635 indent_msg(&errmsg, 2);
636 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
637 }
638 else
639 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
640 file, linenum, args[0], args[1], args[2]);
641 err_code |= ERR_FATAL;
642 goto out;
643 }
644 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
645 l->maxaccept = 1;
646 l->maxconn = curpeers->peers_fe->maxconn;
647 l->backlog = curpeers->peers_fe->backlog;
648 l->accept = session_accept_fd;
649 l->analysers |= curpeers->peers_fe->fe_req_ana;
650 l->default_target = curpeers->peers_fe->default_target;
651 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
652 global.maxsock += l->maxconn;
653
654 bind_line = 1;
655 if (cfg_peers->local) {
656 newpeer = cfg_peers->local;
657 }
658 else {
659 /* This peer is local.
660 * Note that we do not set the peer ID. This latter is initialized
661 * when parsing "peer" or "server" line.
662 */
663 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
664 if (!newpeer) {
665 err_code |= ERR_ALERT | ERR_ABORT;
666 goto out;
667 }
668 }
669 newpeer->addr = l->addr;
670 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
671 cur_arg++;
672 }
673
674 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
675 int ret;
676
677 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
678 err_code |= ret;
679 if (ret) {
680 if (errmsg && *errmsg) {
681 indent_msg(&errmsg, 2);
682 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
683 }
684 else
685 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
686 file, linenum, args[cur_arg]);
687 if (ret & ERR_FATAL)
688 goto out;
689 }
690 cur_arg += 1 + kw->skip;
691 }
692 kws = NULL;
693 if (!kws_dumped) {
694 kws_dumped = 1;
695 bind_dump_kws(&kws);
696 indent_msg(&kws, 4);
697 }
698 if (*args[cur_arg] != 0) {
699 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.%s%s\n",
700 file, linenum, args[cur_arg], cursection,
701 kws ? " Registered keywords :" : "", kws ? kws: "");
702 free(kws);
703 err_code |= ERR_ALERT | ERR_FATAL;
704 goto out;
705 }
706 }
707 else if (strcmp(args[0], "default-server") == 0) {
708 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
709 err_code |= ERR_ALERT | ERR_ABORT;
710 goto out;
711 }
712 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, 0);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200713 }
714 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100715 /* Initialize these static variables when entering a new "peers" section*/
716 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100717 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100718 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100719 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100720 goto out;
721 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200722
William Lallemand6e62fb62015-04-28 16:55:23 +0200723 if (alertif_too_many_args(1, file, linenum, args, &err_code))
724 goto out;
725
Emeric Brun32da3c42010-09-23 18:39:19 +0200726 err = invalid_char(args[1]);
727 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100728 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
729 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100730 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100731 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200732 }
733
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200734 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200735 /*
736 * If there are two proxies with the same name only following
737 * combinations are allowed:
738 */
739 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100740 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
741 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200742 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200743 }
744 }
745
Vincent Bernat02779b62016-04-03 13:48:43 +0200746 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100747 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200748 err_code |= ERR_ALERT | ERR_ABORT;
749 goto out;
750 }
751
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200752 curpeers->next = cfg_peers;
753 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200754 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200755 curpeers->conf.line = linenum;
756 curpeers->last_change = now.tv_sec;
757 curpeers->id = strdup(args[1]);
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200758 curpeers->state = PR_STNEW;
Emeric Brun32da3c42010-09-23 18:39:19 +0200759 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200760 else if (strcmp(args[0], "peer") == 0 ||
761 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100762 int local_peer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200763
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100764 local_peer = !strcmp(args[1], localpeer);
765 /* The local peer may have already partially been parsed on a "bind" line. */
766 if (*args[0] == 'p') {
767 if (bind_line) {
768 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
769 err_code |= ERR_ALERT | ERR_FATAL;
770 goto out;
771 }
772 peer_line = 1;
773 }
774 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
775 /* The local peer has already been initialized on a "bind" line.
776 * Let's use it and store its ID.
777 */
778 newpeer = cfg_peers->local;
779 newpeer->id = strdup(localpeer);
780 }
781 else {
782 if (local_peer && cfg_peers->local) {
783 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
784 file, linenum, args[0], args[1],
785 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
786 err_code |= ERR_FATAL;
787 goto out;
788 }
789 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
790 if (!newpeer) {
791 err_code |= ERR_ALERT | ERR_ABORT;
792 goto out;
793 }
794 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200795
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100796 /* Line number and peer ID are updated only if this peer is the local one. */
797 if (init_peers_frontend(file,
798 newpeer->local ? linenum: -1,
799 newpeer->local ? newpeer->id : NULL,
800 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200801 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100802 goto out;
803 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100804
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100805 /* This initializes curpeer->peers->peers_fe->srv. */
806 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, !local_peer);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200807 if (!curpeers->peers_fe->srv)
Emeric Brun32da3c42010-09-23 18:39:19 +0200808 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200809
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200810 newpeer->addr = curpeers->peers_fe->srv->addr;
811 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100812 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200813 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100814 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200815
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100816 if (!newpeer->local) {
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200817 newpeer->srv = curpeers->peers_fe->srv;
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200818 goto out;
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200819 }
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200820
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100821 /* The lines above are reserved to "peer" lines. */
822 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200823 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200824
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100825 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW));
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100826
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100827 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
828 if (errmsg && *errmsg) {
829 indent_msg(&errmsg, 2);
830 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100831 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100832 else
833 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
834 file, linenum, args[0], args[1], args[2]);
835 err_code |= ERR_FATAL;
836 goto out;
837 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100838
839 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
840 l->maxaccept = 1;
841 l->maxconn = curpeers->peers_fe->maxconn;
842 l->backlog = curpeers->peers_fe->backlog;
843 l->accept = session_accept_fd;
844 l->analysers |= curpeers->peers_fe->fe_req_ana;
845 l->default_target = curpeers->peers_fe->default_target;
846 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
847 global.maxsock += l->maxconn;
Emeric Brun32da3c42010-09-23 18:39:19 +0200848 } /* neither "peer" nor "peers" */
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200849 else if (!strcmp(args[0], "disabled")) { /* disables this peers section */
850 curpeers->state = PR_STSTOPPED;
851 }
852 else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */
853 curpeers->state = PR_STNEW;
854 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200855 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100856 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200857 err_code |= ERR_ALERT | ERR_FATAL;
858 goto out;
859 }
860
861out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100862 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200863 return err_code;
864}
865
Baptiste Assmann325137d2015-04-13 23:40:55 +0200866/*
867 * Parse a <resolvers> section.
868 * Returns the error code, 0 if OK, or any combination of :
869 * - ERR_ABORT: must abort ASAP
870 * - ERR_FATAL: we can continue parsing but not start the service
871 * - ERR_WARN: a warning has been emitted
872 * - ERR_ALERT: an alert has been emitted
873 * Only the two first ones can stop processing, the two others are just
874 * indicators.
875 */
876int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
877{
878 static struct dns_resolvers *curr_resolvers = NULL;
879 struct dns_nameserver *newnameserver = NULL;
880 const char *err;
881 int err_code = 0;
882 char *errmsg = NULL;
883
884 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
885 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100886 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200887 err_code |= ERR_ALERT | ERR_ABORT;
888 goto out;
889 }
890
891 err = invalid_char(args[1]);
892 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100893 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
894 file, linenum, *err, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200895 err_code |= ERR_ALERT | ERR_ABORT;
896 goto out;
897 }
898
899 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
900 /* Error if two resolvers owns the same name */
901 if (strcmp(curr_resolvers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100902 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
903 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200904 err_code |= ERR_ALERT | ERR_ABORT;
905 }
906 }
907
Vincent Bernat02779b62016-04-03 13:48:43 +0200908 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100909 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200910 err_code |= ERR_ALERT | ERR_ABORT;
911 goto out;
912 }
913
914 /* default values */
915 LIST_ADDQ(&dns_resolvers, &curr_resolvers->list);
916 curr_resolvers->conf.file = strdup(file);
917 curr_resolvers->conf.line = linenum;
918 curr_resolvers->id = strdup(args[1]);
919 curr_resolvers->query_ids = EB_ROOT;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200920 /* default maximum response size */
921 curr_resolvers->accepted_payload_size = 512;
Baptiste Assmann987e16d2016-11-02 22:23:31 +0100922 /* default hold period for nx, other, refuse and timeout is 30s */
923 curr_resolvers->hold.nx = 30000;
924 curr_resolvers->hold.other = 30000;
925 curr_resolvers->hold.refused = 30000;
926 curr_resolvers->hold.timeout = 30000;
Baptiste Assmann686408b2017-08-18 10:15:42 +0200927 curr_resolvers->hold.obsolete = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200928 /* default hold period for valid is 10s */
Baptiste Assmann4c5490a2015-07-14 21:42:49 +0200929 curr_resolvers->hold.valid = 10000;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200930 curr_resolvers->timeout.resolve = 1000;
931 curr_resolvers->timeout.retry = 1000;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200932 curr_resolvers->resolve_retries = 3;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200933 curr_resolvers->nb_nameservers = 0;
934 LIST_INIT(&curr_resolvers->nameservers);
935 LIST_INIT(&curr_resolvers->resolutions.curr);
936 LIST_INIT(&curr_resolvers->resolutions.wait);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100937 HA_SPIN_INIT(&curr_resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200938 }
939 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
940 struct sockaddr_storage *sk;
941 int port1, port2;
942 struct protocol *proto;
943
944 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100945 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
946 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200947 err_code |= ERR_ALERT | ERR_FATAL;
948 goto out;
949 }
950
951 err = invalid_char(args[1]);
952 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100953 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
954 file, linenum, *err, args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200955 err_code |= ERR_ALERT | ERR_FATAL;
956 goto out;
957 }
958
Christopher Faulet67957bd2017-09-27 11:00:59 +0200959 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
Baptiste Assmanna315c552015-11-02 22:55:49 +0100960 /* Error if two resolvers owns the same name */
961 if (strcmp(newnameserver->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100962 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 -0600963 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
Baptiste Assmanna315c552015-11-02 22:55:49 +0100964 err_code |= ERR_ALERT | ERR_FATAL;
965 }
966 }
967
Vincent Bernat02779b62016-04-03 13:48:43 +0200968 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100969 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200970 err_code |= ERR_ALERT | ERR_ABORT;
971 goto out;
972 }
973
974 /* the nameservers are linked backward first */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200975 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200976 newnameserver->resolvers = curr_resolvers;
977 newnameserver->conf.file = strdup(file);
978 newnameserver->conf.line = linenum;
979 newnameserver->id = strdup(args[1]);
980
Willy Tarreau48ef4c92017-01-06 18:32:38 +0100981 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200982 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100983 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200984 err_code |= ERR_ALERT | ERR_FATAL;
985 goto out;
986 }
987
988 proto = protocol_by_family(sk->ss_family);
989 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100990 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Baptiste Assmann325137d2015-04-13 23:40:55 +0200991 file, linenum, args[0], args[1]);
992 err_code |= ERR_ALERT | ERR_FATAL;
993 goto out;
994 }
995
996 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100997 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
998 file, linenum, args[0], args[1], args[2]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200999 err_code |= ERR_ALERT | ERR_FATAL;
1000 goto out;
1001 }
1002
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001003 if (!port1 && !port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001004 ha_alert("parsing [%s:%d] : '%s %s' : no UDP port specified\n",
1005 file, linenum, args[0], args[1]);
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001006 err_code |= ERR_ALERT | ERR_FATAL;
1007 goto out;
1008 }
1009
Baptiste Assmann325137d2015-04-13 23:40:55 +02001010 newnameserver->addr = *sk;
1011 }
Ben Draut44e609b2018-05-29 15:40:08 -06001012 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
1013 const char *whitespace = "\r\n\t ";
1014 char *resolv_line = NULL;
1015 int resolv_linenum = 0;
1016 FILE *f = NULL;
1017 char *address = NULL;
1018 struct sockaddr_storage *sk = NULL;
1019 struct protocol *proto;
1020 int duplicate_name = 0;
1021
1022 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
1023 ha_alert("parsing [%s:%d] : out of memory.\n",
1024 file, linenum);
1025 err_code |= ERR_ALERT | ERR_FATAL;
1026 goto resolv_out;
1027 }
1028
1029 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
1030 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
1031 file, linenum);
1032 err_code |= ERR_ALERT | ERR_FATAL;
1033 goto resolv_out;
1034 }
1035
1036 sk = calloc(1, sizeof(*sk));
1037 if (sk == NULL) {
1038 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
1039 resolv_linenum);
1040 err_code |= ERR_ALERT | ERR_FATAL;
1041 goto resolv_out;
1042 }
1043
1044 while (fgets(resolv_line, LINESIZE, f) != NULL) {
1045 resolv_linenum++;
1046 if (strncmp(resolv_line, "nameserver", 10) != 0)
1047 continue;
1048
1049 address = strtok(resolv_line + 10, whitespace);
1050 if (address == resolv_line + 10)
1051 continue;
1052
1053 if (address == NULL) {
1054 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
1055 resolv_linenum);
1056 err_code |= ERR_WARN;
1057 continue;
1058 }
1059
1060 duplicate_name = 0;
1061 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
1062 if (strcmp(newnameserver->id, address) == 0) {
1063 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",
1064 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
1065 err_code |= ERR_WARN;
1066 duplicate_name = 1;
1067 }
1068 }
1069
1070 if (duplicate_name)
1071 continue;
1072
1073 memset(sk, 0, sizeof(*sk));
1074 sk = str2ip2(address, sk, 1);
1075 if (!sk) {
1076 ha_warning("parsing [/etc/resolv.conf:%d] : address '%s' could not be recognized, namerserver will be excluded.\n",
1077 resolv_linenum, address);
1078 err_code |= ERR_WARN;
1079 continue;
1080 }
1081
1082 set_host_port(sk, 53);
1083
1084 proto = protocol_by_family(sk->ss_family);
1085 if (!proto || !proto->connect) {
1086 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
1087 resolv_linenum, address);
1088 err_code |= ERR_WARN;
1089 continue;
1090 }
1091
1092 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
1093 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1094 err_code |= ERR_ALERT | ERR_FATAL;
1095 goto resolv_out;
1096 }
1097
1098 newnameserver->conf.file = strdup("/etc/resolv.conf");
1099 if (newnameserver->conf.file == NULL) {
1100 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1101 err_code |= ERR_ALERT | ERR_FATAL;
1102 goto resolv_out;
1103 }
1104
1105 newnameserver->id = strdup(address);
1106 if (newnameserver->id == NULL) {
1107 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1108 err_code |= ERR_ALERT | ERR_FATAL;
1109 goto resolv_out;
1110 }
1111
1112 newnameserver->resolvers = curr_resolvers;
1113 newnameserver->conf.line = resolv_linenum;
1114 newnameserver->addr = *sk;
1115
1116 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
1117 }
1118
1119resolv_out:
1120 free(sk);
1121 free(resolv_line);
1122 if (f != NULL)
1123 fclose(f);
1124 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001125 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
1126 const char *res;
1127 unsigned int time;
1128
1129 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001130 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
1131 file, linenum, args[0]);
1132 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
Baptiste Assmann325137d2015-04-13 23:40:55 +02001133 err_code |= ERR_ALERT | ERR_FATAL;
1134 goto out;
1135 }
1136 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
1137 if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001138 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1139 file, linenum, *res, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001140 err_code |= ERR_ALERT | ERR_FATAL;
1141 goto out;
1142 }
Baptiste Assmann987e16d2016-11-02 22:23:31 +01001143 if (strcmp(args[1], "nx") == 0)
1144 curr_resolvers->hold.nx = time;
1145 else if (strcmp(args[1], "other") == 0)
1146 curr_resolvers->hold.other = time;
1147 else if (strcmp(args[1], "refused") == 0)
1148 curr_resolvers->hold.refused = time;
1149 else if (strcmp(args[1], "timeout") == 0)
1150 curr_resolvers->hold.timeout = time;
1151 else if (strcmp(args[1], "valid") == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001152 curr_resolvers->hold.valid = time;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001153 else if (strcmp(args[1], "obsolete") == 0)
1154 curr_resolvers->hold.obsolete = time;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001155 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001156 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
1157 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001158 err_code |= ERR_ALERT | ERR_FATAL;
1159 goto out;
1160 }
1161
1162 }
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001163 else if (strcmp(args[0], "accepted_payload_size") == 0) {
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001164 int i = 0;
1165
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001166 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001167 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1168 file, linenum, args[0]);
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001169 err_code |= ERR_ALERT | ERR_FATAL;
1170 goto out;
1171 }
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001172
1173 i = atoi(args[1]);
Willy Tarreau0c219be2017-08-22 12:01:26 +02001174 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001175 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
1176 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001177 err_code |= ERR_ALERT | ERR_FATAL;
1178 goto out;
1179 }
1180
1181 curr_resolvers->accepted_payload_size = i;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001182 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001183 else if (strcmp(args[0], "resolution_pool_size") == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001184 ha_warning("parsing [%s:%d] : '%s' directive is now deprecated and ignored.\n",
1185 file, linenum, args[0]);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001186 err_code |= ERR_WARN;
1187 goto out;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001188 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001189 else if (strcmp(args[0], "resolve_retries") == 0) {
1190 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001191 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1192 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001193 err_code |= ERR_ALERT | ERR_FATAL;
1194 goto out;
1195 }
1196 curr_resolvers->resolve_retries = atoi(args[1]);
1197 }
1198 else if (strcmp(args[0], "timeout") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001199 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001200 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
1201 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001202 err_code |= ERR_ALERT | ERR_FATAL;
1203 goto out;
1204 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001205 else if (strcmp(args[1], "retry") == 0 ||
1206 strcmp(args[1], "resolve") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001207 const char *res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001208 unsigned int tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001209
1210 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001211 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1212 file, linenum, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001213 err_code |= ERR_ALERT | ERR_FATAL;
1214 goto out;
1215 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001216 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001217 if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001218 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1219 file, linenum, *res, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001220 err_code |= ERR_ALERT | ERR_FATAL;
1221 goto out;
1222 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001223 if (args[1][2] == 't')
1224 curr_resolvers->timeout.retry = tout;
1225 else
1226 curr_resolvers->timeout.resolve = tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001227 }
1228 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001229 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
1230 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001231 err_code |= ERR_ALERT | ERR_FATAL;
1232 goto out;
1233 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001234 } /* neither "nameserver" nor "resolvers" */
1235 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001236 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001237 err_code |= ERR_ALERT | ERR_FATAL;
1238 goto out;
1239 }
1240
1241 out:
1242 free(errmsg);
1243 return err_code;
1244}
Simon Horman0d16a402015-01-30 11:22:58 +09001245
1246/*
William Lallemand51097192015-04-14 16:35:22 +02001247 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001248 * Returns the error code, 0 if OK, or any combination of :
1249 * - ERR_ABORT: must abort ASAP
1250 * - ERR_FATAL: we can continue parsing but not start the service
1251 * - ERR_WARN: a warning has been emitted
1252 * - ERR_ALERT: an alert has been emitted
1253 * Only the two first ones can stop processing, the two others are just
1254 * indicators.
1255 */
1256int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1257{
1258 static struct mailers *curmailers = NULL;
1259 struct mailer *newmailer = NULL;
1260 const char *err;
1261 int err_code = 0;
1262 char *errmsg = NULL;
1263
1264 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1265 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001266 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001267 err_code |= ERR_ALERT | ERR_ABORT;
1268 goto out;
1269 }
1270
1271 err = invalid_char(args[1]);
1272 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001273 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1274 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001275 err_code |= ERR_ALERT | ERR_ABORT;
1276 goto out;
1277 }
1278
1279 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1280 /*
1281 * If there are two proxies with the same name only following
1282 * combinations are allowed:
1283 */
1284 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001285 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1286 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001287 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001288 }
1289 }
1290
Vincent Bernat02779b62016-04-03 13:48:43 +02001291 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001292 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001293 err_code |= ERR_ALERT | ERR_ABORT;
1294 goto out;
1295 }
1296
1297 curmailers->next = mailers;
1298 mailers = curmailers;
1299 curmailers->conf.file = strdup(file);
1300 curmailers->conf.line = linenum;
1301 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001302 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1303 * But need enough time so that timeouts don't occur
1304 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001305 }
1306 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1307 struct sockaddr_storage *sk;
1308 int port1, port2;
1309 struct protocol *proto;
1310
1311 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001312 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1313 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001314 err_code |= ERR_ALERT | ERR_FATAL;
1315 goto out;
1316 }
1317
1318 err = invalid_char(args[1]);
1319 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001320 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1321 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001322 err_code |= ERR_ALERT | ERR_FATAL;
1323 goto out;
1324 }
1325
Vincent Bernat02779b62016-04-03 13:48:43 +02001326 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001327 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001328 err_code |= ERR_ALERT | ERR_ABORT;
1329 goto out;
1330 }
1331
1332 /* the mailers are linked backwards first */
1333 curmailers->count++;
1334 newmailer->next = curmailers->mailer_list;
1335 curmailers->mailer_list = newmailer;
1336 newmailer->mailers = curmailers;
1337 newmailer->conf.file = strdup(file);
1338 newmailer->conf.line = linenum;
1339
1340 newmailer->id = strdup(args[1]);
1341
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001342 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Simon Horman0d16a402015-01-30 11:22:58 +09001343 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001344 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001345 err_code |= ERR_ALERT | ERR_FATAL;
1346 goto out;
1347 }
1348
1349 proto = protocol_by_family(sk->ss_family);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09001350 if (!proto || !proto->connect || proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001351 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1352 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001353 err_code |= ERR_ALERT | ERR_FATAL;
1354 goto out;
1355 }
1356
1357 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001358 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1359 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001360 err_code |= ERR_ALERT | ERR_FATAL;
1361 goto out;
1362 }
1363
1364 if (!port1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001365 ha_alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n",
1366 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001367 err_code |= ERR_ALERT | ERR_FATAL;
1368 goto out;
1369 }
1370
1371 newmailer->addr = *sk;
1372 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001373 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001374 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001375 }
1376 else if (strcmp(args[0], "timeout") == 0) {
1377 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001378 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1379 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001380 err_code |= ERR_ALERT | ERR_FATAL;
1381 goto out;
1382 }
1383 else if (strcmp(args[1], "mail") == 0) {
1384 const char *res;
1385 unsigned int timeout_mail;
1386 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001387 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1388 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001389 err_code |= ERR_ALERT | ERR_FATAL;
1390 goto out;
1391 }
1392 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
1393 if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001394 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1395 file, linenum, *res, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001396 err_code |= ERR_ALERT | ERR_FATAL;
1397 goto out;
1398 }
1399 if (timeout_mail <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001400 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 +01001401 err_code |= ERR_ALERT | ERR_FATAL;
1402 goto out;
1403 }
1404 curmailers->timeout.mail = timeout_mail;
1405 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001406 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001407 file, linenum, args[0], args[1]);
1408 err_code |= ERR_ALERT | ERR_FATAL;
1409 goto out;
1410 }
1411 }
Simon Horman0d16a402015-01-30 11:22:58 +09001412 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001413 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001414 err_code |= ERR_ALERT | ERR_FATAL;
1415 goto out;
1416 }
1417
1418out:
1419 free(errmsg);
1420 return err_code;
1421}
1422
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001423void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001424{
1425 free(p->email_alert.mailers.name);
1426 p->email_alert.mailers.name = NULL;
1427 free(p->email_alert.from);
1428 p->email_alert.from = NULL;
1429 free(p->email_alert.to);
1430 p->email_alert.to = NULL;
1431 free(p->email_alert.myhostname);
1432 p->email_alert.myhostname = NULL;
1433}
1434
Willy Tarreaubaaee002006-06-26 02:48:02 +02001435
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001436int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001437cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1438{
1439#ifdef CONFIG_HAP_NS
1440 const char *err;
1441 const char *item = args[0];
1442
1443 if (!strcmp(item, "namespace_list")) {
1444 return 0;
1445 }
1446 else if (!strcmp(item, "namespace")) {
1447 size_t idx = 1;
1448 const char *current;
1449 while (*(current = args[idx++])) {
1450 err = invalid_char(current);
1451 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001452 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1453 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001454 return ERR_ALERT | ERR_FATAL;
1455 }
1456
1457 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001458 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1459 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001460 return ERR_ALERT | ERR_FATAL;
1461 }
1462 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001463 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1464 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001465 return ERR_ALERT | ERR_FATAL;
1466 }
1467 }
1468 }
1469
1470 return 0;
1471#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001472 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1473 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001474 return ERR_ALERT | ERR_FATAL;
1475#endif
1476}
1477
1478int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001479cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1480{
1481
1482 int err_code = 0;
1483 const char *err;
1484
1485 if (!strcmp(args[0], "userlist")) { /* new userlist */
1486 struct userlist *newul;
1487
1488 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001489 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1490 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001491 err_code |= ERR_ALERT | ERR_FATAL;
1492 goto out;
1493 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001494 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1495 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001496
1497 err = invalid_char(args[1]);
1498 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001499 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1500 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001501 err_code |= ERR_ALERT | ERR_FATAL;
1502 goto out;
1503 }
1504
1505 for (newul = userlist; newul; newul = newul->next)
1506 if (!strcmp(newul->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001507 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1508 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001509 err_code |= ERR_WARN;
1510 goto out;
1511 }
1512
Vincent Bernat02779b62016-04-03 13:48:43 +02001513 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001514 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001515 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001516 err_code |= ERR_ALERT | ERR_ABORT;
1517 goto out;
1518 }
1519
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001520 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001521 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001522 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001523 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001524 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001525 goto out;
1526 }
1527
1528 newul->next = userlist;
1529 userlist = newul;
1530
1531 } else if (!strcmp(args[0], "group")) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001532 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001533 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001534 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001535
1536 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001537 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1538 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001539 err_code |= ERR_ALERT | ERR_FATAL;
1540 goto out;
1541 }
1542
1543 err = invalid_char(args[1]);
1544 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001545 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1546 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001547 err_code |= ERR_ALERT | ERR_FATAL;
1548 goto out;
1549 }
1550
William Lallemand4ac9f542015-05-28 18:03:51 +02001551 if (!userlist)
1552 goto out;
1553
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001554 for (ag = userlist->groups; ag; ag = ag->next)
1555 if (!strcmp(ag->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001556 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1557 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001558 err_code |= ERR_ALERT;
1559 goto out;
1560 }
1561
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001562 ag = calloc(1, sizeof(*ag));
1563 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001564 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001565 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001566 goto out;
1567 }
1568
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001569 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001570 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001571 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001572 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001573 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001574 goto out;
1575 }
1576
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001577 cur_arg = 2;
1578
1579 while (*args[cur_arg]) {
1580 if (!strcmp(args[cur_arg], "users")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001581 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001582 cur_arg += 2;
1583 continue;
1584 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001585 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1586 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001587 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001588 free(ag->groupusers);
1589 free(ag->name);
1590 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001591 goto out;
1592 }
1593 }
1594
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001595 ag->next = userlist->groups;
1596 userlist->groups = ag;
1597
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001598 } else if (!strcmp(args[0], "user")) { /* new user */
1599 struct auth_users *newuser;
1600 int cur_arg;
1601
1602 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001603 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1604 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001605 err_code |= ERR_ALERT | ERR_FATAL;
1606 goto out;
1607 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001608 if (!userlist)
1609 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001610
1611 for (newuser = userlist->users; newuser; newuser = newuser->next)
1612 if (!strcmp(newuser->user, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001613 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1614 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001615 err_code |= ERR_ALERT;
1616 goto out;
1617 }
1618
Vincent Bernat02779b62016-04-03 13:48:43 +02001619 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001620 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001621 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001622 err_code |= ERR_ALERT | ERR_ABORT;
1623 goto out;
1624 }
1625
1626 newuser->user = strdup(args[1]);
1627
1628 newuser->next = userlist->users;
1629 userlist->users = newuser;
1630
1631 cur_arg = 2;
1632
1633 while (*args[cur_arg]) {
1634 if (!strcmp(args[cur_arg], "password")) {
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001635#ifdef CONFIG_HAP_CRYPT
1636 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001637 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1638 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001639 err_code |= ERR_ALERT | ERR_FATAL;
1640 goto out;
1641 }
1642#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001643 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1644 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001645 err_code |= ERR_ALERT;
1646#endif
1647 newuser->pass = strdup(args[cur_arg + 1]);
1648 cur_arg += 2;
1649 continue;
1650 } else if (!strcmp(args[cur_arg], "insecure-password")) {
1651 newuser->pass = strdup(args[cur_arg + 1]);
1652 newuser->flags |= AU_O_INSECURE;
1653 cur_arg += 2;
1654 continue;
1655 } else if (!strcmp(args[cur_arg], "groups")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001656 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001657 cur_arg += 2;
1658 continue;
1659 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001660 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1661 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001662 err_code |= ERR_ALERT | ERR_FATAL;
1663 goto out;
1664 }
1665 }
1666 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001667 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 +01001668 err_code |= ERR_ALERT | ERR_FATAL;
1669 }
1670
1671out:
1672 return err_code;
1673}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001674
Christopher Faulet79bdef32016-11-04 22:36:15 +01001675int
1676cfg_parse_scope(const char *file, int linenum, char *line)
1677{
1678 char *beg, *end, *scope = NULL;
1679 int err_code = 0;
1680 const char *err;
1681
1682 beg = line + 1;
1683 end = strchr(beg, ']');
1684
1685 /* Detect end of scope declaration */
1686 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001687 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1688 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001689 err_code |= ERR_ALERT | ERR_FATAL;
1690 goto out;
1691 }
1692
1693 /* Get scope name and check its validity */
1694 scope = my_strndup(beg, end-beg);
1695 err = invalid_char(scope);
1696 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001697 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1698 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001699 err_code |= ERR_ALERT | ERR_ABORT;
1700 goto out;
1701 }
1702
1703 /* Be sure to have a scope declaration alone on its line */
1704 line = end+1;
1705 while (isspace((unsigned char)*line))
1706 line++;
1707 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001708 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1709 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001710 err_code |= ERR_ALERT | ERR_ABORT;
1711 goto out;
1712 }
1713
1714 /* We have a valid scope declaration, save it */
1715 free(cfg_scope);
1716 cfg_scope = scope;
1717 scope = NULL;
1718
1719 out:
1720 free(scope);
1721 return err_code;
1722}
1723
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001724int
1725cfg_parse_track_sc_num(unsigned int *track_sc_num,
1726 const char *arg, const char *end, char **errmsg)
1727{
1728 const char *p;
1729 unsigned int num;
1730
1731 p = arg;
1732 num = read_uint64(&arg, end);
1733
1734 if (arg != end) {
1735 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1736 return -1;
1737 }
1738
1739 if (num >= MAX_SESS_STKCTR) {
1740 memprintf(errmsg, "%u track-sc number exceeding "
1741 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1742 return -1;
1743 }
1744
1745 *track_sc_num = num;
1746 return 0;
1747}
1748
Willy Tarreaubaaee002006-06-26 02:48:02 +02001749/*
1750 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001751 * Returns the error code, 0 if OK, or any combination of :
1752 * - ERR_ABORT: must abort ASAP
1753 * - ERR_FATAL: we can continue parsing but not start the service
1754 * - ERR_WARN: a warning has been emitted
1755 * - ERR_ALERT: an alert has been emitted
1756 * Only the two first ones can stop processing, the two others are just
1757 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001758 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001759int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001760{
William Lallemand64e84512015-05-12 14:25:37 +02001761 char *thisline;
1762 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001763 FILE *f;
1764 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001765 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001766 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001767 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001768 int readbytes = 0;
1769
1770 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001771 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001772 return -1;
1773 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001774
David Carlier97880bb2016-04-08 10:35:26 +01001775 if ((f=fopen(file,"r")) == NULL) {
1776 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001777 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001778 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001779
William Lallemandb2f07452015-05-12 14:27:13 +02001780next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001781 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001782 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001783 char *end;
1784 char *args[MAX_LINE_ARGS + 1];
1785 char *line = thisline;
William Lallemandf9873ba2015-05-05 17:37:14 +02001786 int dquote = 0; /* double quote */
1787 int squote = 0; /* simple quote */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001788
Willy Tarreaubaaee002006-06-26 02:48:02 +02001789 linenum++;
1790
1791 end = line + strlen(line);
1792
William Lallemand64e84512015-05-12 14:25:37 +02001793 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001794 /* Check if we reached the limit and the last char is not \n.
1795 * Watch out for the last line without the terminating '\n'!
1796 */
William Lallemand64e84512015-05-12 14:25:37 +02001797 char *newline;
1798 int newlinesize = linesize * 2;
1799
1800 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1801 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001802 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1803 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001804 err_code |= ERR_ALERT | ERR_FATAL;
1805 continue;
1806 }
1807
1808 readbytes = linesize - 1;
1809 linesize = newlinesize;
1810 thisline = newline;
1811 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001812 }
1813
William Lallemand64e84512015-05-12 14:25:37 +02001814 readbytes = 0;
1815
Willy Tarreaubaaee002006-06-26 02:48:02 +02001816 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001817 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001818 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001819
Christopher Faulet79bdef32016-11-04 22:36:15 +01001820
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001821 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001822 err_code |= cfg_parse_scope(file, linenum, line);
1823 goto next_line;
1824 }
1825
Willy Tarreaubaaee002006-06-26 02:48:02 +02001826 arg = 0;
1827 args[arg] = line;
1828
1829 while (*line && arg < MAX_LINE_ARGS) {
William Lallemandf9873ba2015-05-05 17:37:14 +02001830 if (*line == '"' && !squote) { /* double quote outside single quotes */
1831 if (dquote)
1832 dquote = 0;
1833 else
1834 dquote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001835 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001836 end--;
1837 }
1838 else if (*line == '\'' && !dquote) { /* single quote outside double quotes */
1839 if (squote)
1840 squote = 0;
1841 else
1842 squote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001843 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001844 end--;
1845 }
1846 else if (*line == '\\' && !squote) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001847 /* first, we'll replace \\, \<space>, \#, \r, \n, \t, \xXX with their
1848 * C equivalent value. Other combinations left unchanged (eg: \1).
1849 */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001850 int skip = 0;
1851 if (line[1] == ' ' || line[1] == '\\' || line[1] == '#') {
1852 *line = line[1];
1853 skip = 1;
1854 }
1855 else if (line[1] == 'r') {
1856 *line = '\r';
1857 skip = 1;
William Lallemandf9873ba2015-05-05 17:37:14 +02001858 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001859 else if (line[1] == 'n') {
1860 *line = '\n';
1861 skip = 1;
1862 }
1863 else if (line[1] == 't') {
1864 *line = '\t';
1865 skip = 1;
1866 }
1867 else if (line[1] == 'x') {
Emeric Brunb982a3d2010-01-04 15:45:53 +01001868 if ((line + 3 < end) && ishex(line[2]) && ishex(line[3])) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001869 unsigned char hex1, hex2;
1870 hex1 = toupper(line[2]) - '0';
1871 hex2 = toupper(line[3]) - '0';
1872 if (hex1 > 9) hex1 -= 'A' - '9' - 1;
1873 if (hex2 > 9) hex2 -= 'A' - '9' - 1;
1874 *line = (hex1<<4) + hex2;
1875 skip = 3;
1876 }
1877 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001878 ha_alert("parsing [%s:%d] : invalid or incomplete '\\x' sequence in '%s'.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02001879 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001880 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001881 } else if (line[1] == '"') {
1882 *line = '"';
1883 skip = 1;
1884 } else if (line[1] == '\'') {
1885 *line = '\'';
1886 skip = 1;
William Lallemandb2f07452015-05-12 14:27:13 +02001887 } else if (line[1] == '$' && dquote) { /* escaping of $ only inside double quotes */
1888 *line = '$';
1889 skip = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001890 }
1891 if (skip) {
Cyril Bontédd1b01d2009-12-06 13:43:42 +01001892 memmove(line + 1, line + 1 + skip, end - (line + skip));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001893 end -= skip;
1894 }
1895 line++;
1896 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001897 else if ((!squote && !dquote && *line == '#') || *line == '\n' || *line == '\r') {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001898 /* end of string, end of loop */
1899 *line = 0;
1900 break;
1901 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001902 else if (!squote && !dquote && isspace((unsigned char)*line)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001903 /* a non-escaped space is an argument separator */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001904 *line++ = '\0';
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001905 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001906 line++;
1907 args[++arg] = line;
1908 }
William Lallemandb2f07452015-05-12 14:27:13 +02001909 else if (dquote && *line == '$') {
1910 /* environment variables are evaluated inside double quotes */
1911 char *var_beg;
1912 char *var_end;
1913 char save_char;
1914 char *value;
1915 int val_len;
1916 int newlinesize;
1917 int braces = 0;
1918
1919 var_beg = line + 1;
1920 var_end = var_beg;
1921
1922 if (*var_beg == '{') {
1923 var_beg++;
1924 var_end++;
1925 braces = 1;
1926 }
1927
1928 if (!isalpha((int)(unsigned char)*var_beg) && *var_beg != '_') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001929 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 +02001930 err_code |= ERR_ALERT | ERR_FATAL;
1931 goto next_line; /* skip current line */
1932 }
1933
1934 while (isalnum((int)(unsigned char)*var_end) || *var_end == '_')
1935 var_end++;
1936
1937 save_char = *var_end;
1938 *var_end = '\0';
1939 value = getenv(var_beg);
1940 *var_end = save_char;
1941 val_len = value ? strlen(value) : 0;
1942
1943 if (braces) {
1944 if (*var_end == '}') {
1945 var_end++;
1946 braces = 0;
1947 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001948 ha_alert("parsing [%s:%d] : Variable expansion: Mismatched braces.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001949 err_code |= ERR_ALERT | ERR_FATAL;
1950 goto next_line; /* skip current line */
1951 }
1952 }
1953
1954 newlinesize = (end - thisline) - (var_end - line) + val_len + 1;
1955
1956 /* if not enough space in thisline */
1957 if (newlinesize > linesize) {
1958 char *newline;
1959
1960 newline = realloc(thisline, newlinesize * sizeof(*thisline));
1961 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001962 ha_alert("parsing [%s:%d] : Variable expansion: Not enough memory.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001963 err_code |= ERR_ALERT | ERR_FATAL;
1964 goto next_line; /* slip current line */
1965 }
1966 /* recompute pointers if realloc returns a new pointer */
1967 if (newline != thisline) {
1968 int i;
1969 int diff;
1970
1971 for (i = 0; i <= arg; i++) {
1972 diff = args[i] - thisline;
1973 args[i] = newline + diff;
1974 }
1975
1976 diff = var_end - thisline;
1977 var_end = newline + diff;
1978 diff = end - thisline;
1979 end = newline + diff;
1980 diff = line - thisline;
1981 line = newline + diff;
1982 thisline = newline;
1983 }
1984 linesize = newlinesize;
1985 }
1986
1987 /* insert value inside the line */
1988 memmove(line + val_len, var_end, end - var_end + 1);
1989 memcpy(line, value, val_len);
1990 end += val_len - (var_end - line);
1991 line += val_len;
1992 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001993 else {
1994 line++;
1995 }
1996 }
William Lallemandb2f07452015-05-12 14:27:13 +02001997
William Lallemandf9873ba2015-05-05 17:37:14 +02001998 if (dquote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001999 ha_alert("parsing [%s:%d] : Mismatched double quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002000 err_code |= ERR_ALERT | ERR_FATAL;
2001 }
2002
2003 if (squote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002004 ha_alert("parsing [%s:%d] : Mismatched simple quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002005 err_code |= ERR_ALERT | ERR_FATAL;
2006 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002007
2008 /* empty line */
2009 if (!**args)
2010 continue;
2011
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002012 if (*line) {
2013 /* we had to stop due to too many args.
2014 * Let's terminate the string, print the offending part then cut the
2015 * last arg.
2016 */
2017 while (*line && *line != '#' && *line != '\n' && *line != '\r')
2018 line++;
2019 *line = '\0';
2020
Christopher Faulet767a84b2017-11-24 16:50:31 +01002021 ha_alert("parsing [%s:%d]: line too long, truncating at word %d, position %ld: <%s>.\n",
2022 file, linenum, arg + 1, (long)(args[arg] - thisline + 1), args[arg]);
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002023 err_code |= ERR_ALERT | ERR_FATAL;
2024 args[arg] = line;
2025 }
2026
Willy Tarreau540abe42007-05-02 20:50:16 +02002027 /* zero out remaining args and ensure that at least one entry
2028 * is zeroed out.
2029 */
2030 while (++arg <= MAX_LINE_ARGS) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002031 args[arg] = line;
2032 }
2033
Willy Tarreau3842f002009-06-14 11:39:52 +02002034 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002035 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02002036 char *tmp;
2037
Willy Tarreau3842f002009-06-14 11:39:52 +02002038 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002039 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002040 for (arg=0; *args[arg+1]; arg++)
2041 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002042 *tmp = '\0'; // fix the next arg to \0
2043 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002044 }
Willy Tarreau3842f002009-06-14 11:39:52 +02002045 else if (!strcmp(args[0], "default")) {
2046 kwm = KWM_DEF;
2047 for (arg=0; *args[arg+1]; arg++)
2048 args[arg] = args[arg+1]; // shift args after inversion
2049 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002050
William Lallemand0f99e342011-10-12 17:50:54 +02002051 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 && \
Willy Tarreaubeb859a2018-11-22 18:07:59 +01002052 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling")) {
2053 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 +02002054 err_code |= ERR_ALERT | ERR_FATAL;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002055 }
2056
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002057 /* detect section start */
2058 list_for_each_entry(ics, &sections, list) {
2059 if (strcmp(args[0], ics->section_name) == 0) {
2060 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002061 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002062 cs = ics;
2063 break;
2064 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002065 }
2066
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002067 if (pcs && pcs->post_section_parser) {
2068 err_code |= pcs->post_section_parser();
2069 if (err_code & ERR_ABORT)
2070 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002071 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002072 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002073
William Lallemandd2ff56d2017-10-16 11:06:50 +02002074 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002075 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002076 err_code |= ERR_ALERT | ERR_FATAL;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002077 } else {
William Lallemandd2ff56d2017-10-16 11:06:50 +02002078 err_code |= cs->section_parser(file, linenum, args, kwm);
2079 if (err_code & ERR_ABORT)
2080 goto err;
2081 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002082 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002083
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002084 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002085 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002086
2087err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002088 free(cfg_scope);
2089 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002090 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002091 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002092 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002093 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002094}
2095
Willy Tarreau64ab6072014-09-16 12:17:36 +02002096/* This function propagates processes from frontend <from> to backend <to> so
2097 * that it is always guaranteed that a backend pointed to by a frontend is
2098 * bound to all of its processes. After that, if the target is a "listen"
2099 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002100 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002101 * checked first to ensure that <to> is already bound to all processes of
2102 * <from>, there is no risk of looping and we ensure to follow the shortest
2103 * path to the destination.
2104 *
2105 * It is possible to set <to> to NULL for the first call so that the function
2106 * takes care of visiting the initial frontend in <from>.
2107 *
2108 * It is important to note that the function relies on the fact that all names
2109 * have already been resolved.
2110 */
2111void propagate_processes(struct proxy *from, struct proxy *to)
2112{
2113 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002114
2115 if (to) {
2116 /* check whether we need to go down */
2117 if (from->bind_proc &&
2118 (from->bind_proc & to->bind_proc) == from->bind_proc)
2119 return;
2120
2121 if (!from->bind_proc && !to->bind_proc)
2122 return;
2123
2124 to->bind_proc = from->bind_proc ?
2125 (to->bind_proc | from->bind_proc) : 0;
2126
2127 /* now propagate down */
2128 from = to;
2129 }
2130
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002131 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002132 return;
2133
Willy Tarreauf6b70012014-12-18 14:00:43 +01002134 if (from->state == PR_STSTOPPED)
2135 return;
2136
Willy Tarreau64ab6072014-09-16 12:17:36 +02002137 /* default_backend */
2138 if (from->defbe.be)
2139 propagate_processes(from, from->defbe.be);
2140
2141 /* use_backend */
2142 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002143 if (rule->dynamic)
2144 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002145 to = rule->be.backend;
2146 propagate_processes(from, to);
2147 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002148}
2149
Willy Tarreaubb925012009-07-23 13:36:36 +02002150/*
2151 * Returns the error code, 0 if OK, or any combination of :
2152 * - ERR_ABORT: must abort ASAP
2153 * - ERR_FATAL: we can continue parsing but not start the service
2154 * - ERR_WARN: a warning has been emitted
2155 * - ERR_ALERT: an alert has been emitted
2156 * Only the two first ones can stop processing, the two others are just
2157 * indicators.
2158 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002159int check_config_validity()
2160{
2161 int cfgerr = 0;
2162 struct proxy *curproxy = NULL;
2163 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002164 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002165 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002166 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002167 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002168 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002169 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002170
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002171 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002172 /*
2173 * Now, check for the integrity of all that we have collected.
2174 */
2175
2176 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002177 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002178
Willy Tarreau193b8c62012-11-22 00:17:38 +01002179 if (!global.tune.max_http_hdr)
2180 global.tune.max_http_hdr = MAX_HTTP_HDR;
2181
2182 if (!global.tune.cookie_len)
2183 global.tune.cookie_len = CAPTURE_LEN;
2184
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002185 if (!global.tune.requri_len)
2186 global.tune.requri_len = REQURI_LEN;
2187
Willy Tarreaubafbe012017-11-24 17:34:44 +01002188 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002189
Willy Tarreaubafbe012017-11-24 17:34:44 +01002190 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002191
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002192 /* Post initialisation of the users and groups lists. */
2193 err_code = userlist_postinit();
2194 if (err_code != ERR_NONE)
2195 goto out;
2196
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002197 /* first, we will invert the proxy list order */
2198 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002199 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002200 struct proxy *next;
2201
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002202 next = proxies_list->next;
2203 proxies_list->next = curproxy;
2204 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002205 if (!next)
2206 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002207 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002208 }
2209
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002210 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002211 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002212 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002213 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002214 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002215 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002216 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002217 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002218
Willy Tarreau050536d2012-10-04 08:47:34 +02002219 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002220 /* proxy ID not set, use automatic numbering with first
2221 * spare entry starting with next_pxid.
2222 */
2223 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2224 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2225 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002226 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002227 next_pxid++;
2228
Willy Tarreau55ea7572007-06-17 19:56:27 +02002229
Willy Tarreaubaaee002006-06-26 02:48:02 +02002230 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002231 /* ensure we don't keep listeners uselessly bound */
2232 stop_proxy(curproxy);
Willy Tarreau02df7742015-05-01 19:59:56 +02002233 free((void *)curproxy->table.peers.name);
2234 curproxy->table.peers.p = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002235 continue;
2236 }
2237
Willy Tarreau102df612014-05-07 23:56:38 +02002238 /* Check multi-process mode compatibility for the current proxy */
2239
2240 if (curproxy->bind_proc) {
2241 /* an explicit bind-process was specified, let's check how many
2242 * processes remain.
2243 */
David Carliere6c39412015-07-02 07:00:17 +00002244 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002245
2246 curproxy->bind_proc &= nbits(global.nbproc);
2247 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002248 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 +02002249 curproxy->bind_proc = 1;
2250 }
2251 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002252 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 +02002253 curproxy->bind_proc = 0;
2254 }
2255 }
2256
Willy Tarreau3d209582014-05-09 17:06:11 +02002257 /* check and reduce the bind-proc of each listener */
2258 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2259 unsigned long mask;
2260
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002261 /* HTTP frontends with "h2" as ALPN/NPN will work in
2262 * HTTP/2 and absolutely require buffers 16kB or larger.
2263 */
2264#ifdef USE_OPENSSL
2265 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2266#ifdef OPENSSL_NPN_NEGOTIATED
2267 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002268 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002269 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",
2270 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002271 cfgerr++;
2272 }
2273#endif
2274#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2275 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002276 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002277 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",
2278 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002279 cfgerr++;
2280 }
2281#endif
2282 } /* HTTP && bufsize < 16384 */
2283#endif
2284
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002285 /* detect and address thread affinity inconsistencies */
2286 nbproc = 0;
2287 if (bind_conf->bind_proc)
2288 nbproc = my_ffsl(bind_conf->bind_proc);
2289
2290 mask = bind_conf->bind_thread[nbproc - 1];
Willy Tarreau0c026f42018-08-01 19:12:20 +02002291 if (mask && !(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002292 unsigned long new_mask = 0;
2293
2294 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002295 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002296 mask >>= global.nbthread;
2297 }
2298
2299 for (nbproc = 0; nbproc < LONGBITS; nbproc++) {
2300 if (!bind_conf->bind_proc || (bind_conf->bind_proc & (1UL << nbproc)))
2301 bind_conf->bind_thread[nbproc] = new_mask;
2302 }
2303 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",
2304 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2305 }
2306
2307 /* detect process and nbproc affinity inconsistencies */
Willy Tarreau3d209582014-05-09 17:06:11 +02002308 if (!bind_conf->bind_proc)
2309 continue;
2310
2311 mask = nbits(global.nbproc);
2312 if (curproxy->bind_proc)
2313 mask &= curproxy->bind_proc;
2314 /* mask cannot be null here thanks to the previous checks */
2315
David Carliere6c39412015-07-02 07:00:17 +00002316 nbproc = my_popcountl(bind_conf->bind_proc);
Willy Tarreau3d209582014-05-09 17:06:11 +02002317 bind_conf->bind_proc &= mask;
2318
2319 if (!bind_conf->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002320 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",
2321 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau3d209582014-05-09 17:06:11 +02002322 bind_conf->bind_proc = mask & ~(mask - 1);
2323 }
2324 else if (!bind_conf->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002325 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",
2326 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau3d209582014-05-09 17:06:11 +02002327 bind_conf->bind_proc = 0;
2328 }
2329 }
2330
Willy Tarreauff01a212009-03-15 13:46:16 +01002331 switch (curproxy->mode) {
2332 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002333 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002334 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002335 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2336 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002337 cfgerr++;
2338 }
2339
2340 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002341 ha_warning("config : servers will be ignored for %s '%s'.\n",
2342 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002343 break;
2344
2345 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002346 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002347 break;
2348
2349 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002350 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002351 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002352
2353 case PR_MODE_CLI:
2354 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2355 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002356 }
2357
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002358 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002359 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2360 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002361 err_code |= ERR_WARN;
2362 }
2363
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002364 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002365 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002366 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002367 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2368 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002369 cfgerr++;
2370 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002371#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002372 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002373 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2374 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002375 cfgerr++;
2376 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002377#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002378 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002379 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2380 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002381 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002382 }
2383 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002384 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002385 /* If no LB algo is set in a backend, and we're not in
2386 * transparent mode, dispatch mode nor proxy mode, we
2387 * want to use balance roundrobin by default.
2388 */
2389 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2390 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002391 }
2392 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002393
Willy Tarreau1620ec32011-08-06 17:05:02 +02002394 if (curproxy->options & PR_O_DISPATCH)
2395 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2396 else if (curproxy->options & PR_O_HTTP_PROXY)
2397 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2398 else if (curproxy->options & PR_O_TRANSP)
2399 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002400
Willy Tarreau1620ec32011-08-06 17:05:02 +02002401 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_HTTP_CHK) {
2402 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002403 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2404 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002405 err_code |= ERR_WARN;
2406 curproxy->options &= ~PR_O_DISABLE404;
2407 }
2408 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002409 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2410 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002411 err_code |= ERR_WARN;
2412 curproxy->options &= ~PR_O2_CHK_SNDST;
2413 }
Willy Tarreauef781042010-01-27 11:53:01 +01002414 }
2415
Simon Horman98637e52014-06-20 12:30:16 +09002416 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2417 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002418 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2419 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002420 cfgerr++;
2421 }
2422 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002423 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2424 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002425 cfgerr++;
2426 }
2427 }
2428
Simon Horman64e34162015-02-06 11:11:57 +09002429 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002430 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002431 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2432 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2433 "'email-alert myhostname', or 'email-alert to' "
2434 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2435 "to be present).\n",
2436 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002437 err_code |= ERR_WARN;
2438 free_email_alert(curproxy);
2439 }
2440 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002441 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002442 }
2443
Simon Horman98637e52014-06-20 12:30:16 +09002444 if (curproxy->check_command) {
2445 int clear = 0;
2446 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002447 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2448 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002449 err_code |= ERR_WARN;
2450 clear = 1;
2451 }
2452 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002453 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2454 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002455 cfgerr++;
2456 }
2457 if (clear) {
2458 free(curproxy->check_command);
2459 curproxy->check_command = NULL;
2460 }
2461 }
2462
2463 if (curproxy->check_path) {
2464 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002465 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2466 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002467 err_code |= ERR_WARN;
2468 free(curproxy->check_path);
2469 curproxy->check_path = NULL;
2470 }
2471 }
2472
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002473 /* if a default backend was specified, let's find it */
2474 if (curproxy->defbe.name) {
2475 struct proxy *target;
2476
Willy Tarreauafb39922015-05-26 12:04:09 +02002477 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002478 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002479 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2480 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002481 cfgerr++;
2482 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002483 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2484 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002485 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002486 } else if (target->mode != curproxy->mode &&
2487 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2488
Christopher Faulet767a84b2017-11-24 16:50:31 +01002489 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2490 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2491 curproxy->conf.file, curproxy->conf.line,
2492 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2493 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002494 cfgerr++;
Willy Tarreau68ad3a42018-10-22 11:49:15 +02002495 } else if ((curproxy->options2 ^ target->options2) & PR_O2_USE_HTX) {
2496 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",
2497 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2498 curproxy->conf.file, curproxy->conf.line,
2499 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2500 target->conf.file, target->conf.line);
2501 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002502 } else {
2503 free(curproxy->defbe.name);
2504 curproxy->defbe.be = target;
Emeric Brun3f783572017-01-12 11:21:28 +01002505 /* Update tot_fe_maxconn for a further fullconn's computation */
2506 target->tot_fe_maxconn += curproxy->maxconn;
Willy Tarreauff678132012-02-13 14:32:34 +01002507 /* Emit a warning if this proxy also has some servers */
2508 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002509 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2510 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002511 err_code |= ERR_WARN;
2512 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002513 }
2514 }
2515
Emeric Brun3f783572017-01-12 11:21:28 +01002516 if (!curproxy->defbe.be && (curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN) {
2517 /* Case of listen without default backend
2518 * The curproxy will be its own default backend
2519 * so we update tot_fe_maxconn for a further
2520 * fullconn's computation */
2521 curproxy->tot_fe_maxconn += curproxy->maxconn;
2522 }
2523
Willy Tarreau55ea7572007-06-17 19:56:27 +02002524 /* find the target proxy for 'use_backend' rules */
2525 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002526 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002527 struct logformat_node *node;
2528 char *pxname;
2529
2530 /* Try to parse the string as a log format expression. If the result
2531 * of the parsing is only one entry containing a simple string, then
2532 * it's a standard string corresponding to a static rule, thus the
2533 * parsing is cancelled and be.name is restored to be resolved.
2534 */
2535 pxname = rule->be.name;
2536 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002537 curproxy->conf.args.ctx = ARGC_UBK;
2538 curproxy->conf.args.file = rule->file;
2539 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002540 err = NULL;
2541 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002542 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2543 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002544 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002545 cfgerr++;
2546 continue;
2547 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002548 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2549
2550 if (!LIST_ISEMPTY(&rule->be.expr)) {
2551 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2552 rule->dynamic = 1;
2553 free(pxname);
2554 continue;
2555 }
2556 /* simple string: free the expression and fall back to static rule */
2557 free(node->arg);
2558 free(node);
2559 }
2560
2561 rule->dynamic = 0;
2562 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002563
Willy Tarreauafb39922015-05-26 12:04:09 +02002564 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002565 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002566 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2567 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002568 cfgerr++;
2569 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002570 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2571 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002572 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002573 } else if (target->mode != curproxy->mode &&
2574 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2575
Christopher Faulet767a84b2017-11-24 16:50:31 +01002576 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2577 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2578 curproxy->conf.file, curproxy->conf.line,
2579 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2580 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002581 cfgerr++;
Willy Tarreau68ad3a42018-10-22 11:49:15 +02002582 } else if ((curproxy->options2 ^ target->options2) & PR_O2_USE_HTX) {
2583 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",
2584 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2585 curproxy->conf.file, curproxy->conf.line,
2586 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2587 target->conf.file, target->conf.line);
2588 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002589 } else {
2590 free((void *)rule->be.name);
2591 rule->be.backend = target;
Emeric Brun3f783572017-01-12 11:21:28 +01002592 /* For each target of switching rules, we update
2593 * their tot_fe_maxconn, except if a previous rule point
2594 * on the same backend or on the default backend */
2595 if (rule->be.backend != curproxy->defbe.be) {
2596 struct switching_rule *swrule;
2597
2598 list_for_each_entry(swrule, &curproxy->switching_rules, list) {
2599 if (rule == swrule) {
2600 target->tot_fe_maxconn += curproxy->maxconn;
2601 break;
2602 }
2603 else if (!swrule->dynamic && swrule->be.backend == rule->be.backend) {
2604 /* there is multiple ref of this backend */
2605 break;
2606 }
2607 }
2608 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02002609 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002610 }
2611
Willy Tarreau64ab6072014-09-16 12:17:36 +02002612 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002613 list_for_each_entry(srule, &curproxy->server_rules, list) {
2614 struct server *target = findserver(curproxy, srule->srv.name);
2615
2616 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002617 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2618 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002619 cfgerr++;
2620 continue;
2621 }
2622 free((void *)srule->srv.name);
2623 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002624 }
2625
Emeric Brunb982a3d2010-01-04 15:45:53 +01002626 /* find the target table for 'stick' rules */
2627 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
2628 struct proxy *target;
2629
Emeric Brun1d33b292010-01-04 15:47:17 +01002630 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2631 if (mrule->flags & STK_IS_STORE)
2632 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2633
Emeric Brunb982a3d2010-01-04 15:45:53 +01002634 if (mrule->table.name)
Willy Tarreau9e0bb102015-05-26 11:24:42 +02002635 target = proxy_tbl_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002636 else
2637 target = curproxy;
2638
2639 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002640 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
2641 curproxy->id, mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002642 cfgerr++;
2643 }
2644 else if (target->table.size == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002645 ha_alert("Proxy '%s': stick-table '%s' used but not configured.\n",
2646 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002647 cfgerr++;
2648 }
Willy Tarreau12785782012-04-27 21:37:17 +02002649 else if (!stktable_compatible_sample(mrule->expr, target->table.type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002650 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2651 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002652 cfgerr++;
2653 }
2654 else {
2655 free((void *)mrule->table.name);
2656 mrule->table.t = &(target->table);
Willy Tarreau888617d2010-06-20 09:11:39 +02002657 stktable_alloc_data_type(&target->table, STKTABLE_DT_SERVER_ID, NULL);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002658 }
2659 }
2660
2661 /* find the target table for 'store response' rules */
2662 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
2663 struct proxy *target;
2664
Emeric Brun1d33b292010-01-04 15:47:17 +01002665 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2666
Emeric Brunb982a3d2010-01-04 15:45:53 +01002667 if (mrule->table.name)
Willy Tarreau9e0bb102015-05-26 11:24:42 +02002668 target = proxy_tbl_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002669 else
2670 target = curproxy;
2671
2672 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002673 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
2674 curproxy->id, mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002675 cfgerr++;
2676 }
2677 else if (target->table.size == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002678 ha_alert("Proxy '%s': stick-table '%s' used but not configured.\n",
2679 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002680 cfgerr++;
2681 }
Willy Tarreau12785782012-04-27 21:37:17 +02002682 else if (!stktable_compatible_sample(mrule->expr, target->table.type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002683 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2684 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002685 cfgerr++;
2686 }
2687 else {
2688 free((void *)mrule->table.name);
2689 mrule->table.t = &(target->table);
Willy Tarreau888617d2010-06-20 09:11:39 +02002690 stktable_alloc_data_type(&target->table, STKTABLE_DT_SERVER_ID, NULL);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002691 }
2692 }
2693
Christopher Faulete4e830d2017-09-18 14:51:41 +02002694 /* check validity for 'tcp-request' layer 4 rules */
2695 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2696 err = NULL;
2697 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002698 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002699 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002700 cfgerr++;
2701 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002702 }
2703
Christopher Faulete4e830d2017-09-18 14:51:41 +02002704 /* check validity for 'tcp-request' layer 5 rules */
2705 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2706 err = NULL;
2707 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002708 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002709 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002710 cfgerr++;
2711 }
2712 }
2713
Christopher Faulete4e830d2017-09-18 14:51:41 +02002714 /* check validity for 'tcp-request' layer 6 rules */
2715 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2716 err = NULL;
2717 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002718 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002719 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002720 cfgerr++;
2721 }
2722 }
2723
Christopher Faulete4e830d2017-09-18 14:51:41 +02002724 /* check validity for 'http-request' layer 7 rules */
2725 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2726 err = NULL;
2727 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002728 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002729 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002730 cfgerr++;
2731 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002732 }
2733
Christopher Faulete4e830d2017-09-18 14:51:41 +02002734 /* check validity for 'http-response' layer 7 rules */
2735 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2736 err = NULL;
2737 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002738 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002739 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002740 cfgerr++;
2741 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002742 }
2743
Willy Tarreaub3dc39d2014-04-28 22:06:57 +02002744 /* move any "block" rules at the beginning of the http-request rules */
2745 if (!LIST_ISEMPTY(&curproxy->block_rules)) {
2746 /* insert block_rules into http_req_rules at the beginning */
2747 curproxy->block_rules.p->n = curproxy->http_req_rules.n;
2748 curproxy->http_req_rules.n->p = curproxy->block_rules.p;
2749 curproxy->block_rules.n->p = &curproxy->http_req_rules;
2750 curproxy->http_req_rules.n = curproxy->block_rules.n;
2751 LIST_INIT(&curproxy->block_rules);
2752 }
2753
Emeric Brun32da3c42010-09-23 18:39:19 +02002754 if (curproxy->table.peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002755 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002756
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002757 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +02002758 if (strcmp(curpeers->id, curproxy->table.peers.name) == 0) {
2759 free((void *)curproxy->table.peers.name);
Willy Tarreau973ca492013-01-17 21:34:52 +01002760 curproxy->table.peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002761 break;
2762 }
2763 }
2764
2765 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002766 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
2767 curproxy->id, curproxy->table.peers.name);
Willy Tarreaud66bf962011-10-28 14:16:49 +02002768 free((void *)curproxy->table.peers.name);
2769 curproxy->table.peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002770 cfgerr++;
2771 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002772 else if (curpeers->state == PR_STSTOPPED) {
2773 /* silently disable this peers section */
2774 curproxy->table.peers.p = NULL;
2775 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002776 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002777 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2778 curproxy->id, localpeer, curpeers->id);
Willy Tarreaud66bf962011-10-28 14:16:49 +02002779 curproxy->table.peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002780 cfgerr++;
2781 }
2782 }
2783
Simon Horman9dc49962015-01-30 11:22:59 +09002784
2785 if (curproxy->email_alert.mailers.name) {
2786 struct mailers *curmailers = mailers;
2787
2788 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002789 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002790 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002791 }
Simon Horman9dc49962015-01-30 11:22:59 +09002792 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002793 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2794 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002795 free_email_alert(curproxy);
2796 cfgerr++;
2797 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002798 else {
2799 err = NULL;
2800 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002801 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002802 free(err);
2803 cfgerr++;
2804 }
2805 }
Simon Horman9dc49962015-01-30 11:22:59 +09002806 }
2807
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002808 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & ST_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002809 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002810 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002811 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2812 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002813 cfgerr++;
2814 goto out_uri_auth_compat;
2815 }
2816
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002817 if (curproxy->uri_auth && curproxy->uri_auth->userlist && !(curproxy->uri_auth->flags & ST_CONVDONE)) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002818 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002819 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002820 int i = 0;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002821
Willy Tarreau95fa4692010-02-01 13:05:50 +01002822 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2823 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002824
2825 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002826 uri_auth_compat_req[i++] = "realm";
2827 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2828 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002829
Willy Tarreau95fa4692010-02-01 13:05:50 +01002830 uri_auth_compat_req[i++] = "unless";
2831 uri_auth_compat_req[i++] = "{";
2832 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2833 uri_auth_compat_req[i++] = "}";
2834 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002835
Willy Tarreauff011f22011-01-06 17:51:27 +01002836 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2837 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002838 cfgerr++;
2839 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002840 }
2841
Willy Tarreauff011f22011-01-06 17:51:27 +01002842 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002843
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002844 if (curproxy->uri_auth->auth_realm) {
2845 free(curproxy->uri_auth->auth_realm);
2846 curproxy->uri_auth->auth_realm = NULL;
2847 }
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002848
2849 curproxy->uri_auth->flags |= ST_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002850 }
2851out_uri_auth_compat:
2852
Dragan Dosen43885c72015-10-01 13:18:13 +02002853 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002854 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002855 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2856 if (!curproxy->conf.logformat_sd_string) {
2857 /* set the default logformat_sd_string */
2858 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2859 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002860 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002861 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002862 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002863
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002864 /* compile the log format */
2865 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002866 if (curproxy->conf.logformat_string != default_http_log_format &&
2867 curproxy->conf.logformat_string != default_tcp_log_format &&
2868 curproxy->conf.logformat_string != clf_http_log_format)
2869 free(curproxy->conf.logformat_string);
2870 curproxy->conf.logformat_string = NULL;
2871 free(curproxy->conf.lfs_file);
2872 curproxy->conf.lfs_file = NULL;
2873 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002874
2875 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2876 free(curproxy->conf.logformat_sd_string);
2877 curproxy->conf.logformat_sd_string = NULL;
2878 free(curproxy->conf.lfsd_file);
2879 curproxy->conf.lfsd_file = NULL;
2880 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002881 }
2882
Willy Tarreau62a61232013-04-12 18:13:46 +02002883 if (curproxy->conf.logformat_string) {
2884 curproxy->conf.args.ctx = ARGC_LOG;
2885 curproxy->conf.args.file = curproxy->conf.lfs_file;
2886 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002887 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002888 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002889 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002890 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
2891 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002892 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002893 cfgerr++;
2894 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002895 curproxy->conf.args.file = NULL;
2896 curproxy->conf.args.line = 0;
2897 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002898
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002899 if (curproxy->conf.logformat_sd_string) {
2900 curproxy->conf.args.ctx = ARGC_LOGSD;
2901 curproxy->conf.args.file = curproxy->conf.lfsd_file;
2902 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002903 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002904 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 +01002905 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002906 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2907 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002908 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002909 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002910 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002911 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2912 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002913 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002914 cfgerr++;
2915 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002916 curproxy->conf.args.file = NULL;
2917 curproxy->conf.args.line = 0;
2918 }
2919
Willy Tarreau62a61232013-04-12 18:13:46 +02002920 if (curproxy->conf.uniqueid_format_string) {
2921 curproxy->conf.args.ctx = ARGC_UIF;
2922 curproxy->conf.args.file = curproxy->conf.uif_file;
2923 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002924 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002925 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 +01002926 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002927 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
2928 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002929 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002930 cfgerr++;
2931 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002932 curproxy->conf.args.file = NULL;
2933 curproxy->conf.args.line = 0;
2934 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002935
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002936 /* only now we can check if some args remain unresolved.
2937 * This must be done after the users and groups resolution.
2938 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002939 cfgerr += smp_resolve_args(curproxy);
2940 if (!cfgerr)
2941 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002942
Willy Tarreau2738a142006-07-08 17:28:09 +02002943 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002944 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02002945 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02002946 (!curproxy->timeout.connect ||
2947 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002948 ha_warning("config : missing timeouts for %s '%s'.\n"
2949 " | While not properly invalid, you will certainly encounter various problems\n"
2950 " | with such a configuration. To fix this, please ensure that all following\n"
2951 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
2952 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002953 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02002954 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02002955
Willy Tarreau1fa31262007-12-03 00:36:16 +01002956 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
2957 * We must still support older configurations, so let's find out whether those
2958 * parameters have been set or must be copied from contimeouts.
2959 */
2960 if (curproxy != &defproxy) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002961 if (!curproxy->timeout.tarpit ||
2962 curproxy->timeout.tarpit == defproxy.timeout.tarpit) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01002963 /* tarpit timeout not set. We search in the following order:
2964 * default.tarpit, curr.connect, default.connect.
2965 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002966 if (defproxy.timeout.tarpit)
Willy Tarreau1fa31262007-12-03 00:36:16 +01002967 curproxy->timeout.tarpit = defproxy.timeout.tarpit;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002968 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002969 curproxy->timeout.tarpit = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002970 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002971 curproxy->timeout.tarpit = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002972 }
2973 if ((curproxy->cap & PR_CAP_BE) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002974 (!curproxy->timeout.queue ||
2975 curproxy->timeout.queue == defproxy.timeout.queue)) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01002976 /* queue timeout not set. We search in the following order:
2977 * default.queue, curr.connect, default.connect.
2978 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002979 if (defproxy.timeout.queue)
Willy Tarreau1fa31262007-12-03 00:36:16 +01002980 curproxy->timeout.queue = defproxy.timeout.queue;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002981 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002982 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002983 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002984 curproxy->timeout.queue = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002985 }
2986 }
2987
Willy Tarreau1620ec32011-08-06 17:05:02 +02002988 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_SSL3_CHK) {
Willy Tarreau137325d2010-02-01 16:38:17 +01002989 curproxy->check_len = sizeof(sslv3_client_hello_pkt) - 1;
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002990 curproxy->check_req = malloc(curproxy->check_len);
Willy Tarreau137325d2010-02-01 16:38:17 +01002991 memcpy(curproxy->check_req, sslv3_client_hello_pkt, curproxy->check_len);
Willy Tarreauf3c69202006-07-09 16:42:34 +02002992 }
2993
Willy Tarreau215663d2014-06-13 18:30:23 +02002994 if (!LIST_ISEMPTY(&curproxy->tcpcheck_rules) &&
2995 (curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_TCPCHK_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002996 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
2997 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02002998 err_code |= ERR_WARN;
2999 }
3000
Willy Tarreau193b8c62012-11-22 00:17:38 +01003001 /* ensure that cookie capture length is not too large */
3002 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003003 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3004 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003005 err_code |= ERR_WARN;
3006 curproxy->capture_len = global.tune.cookie_len - 1;
3007 }
3008
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003009 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003010 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003011 curproxy->req_cap_pool = create_pool("ptrcap",
3012 curproxy->nb_req_cap * sizeof(char *),
3013 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003014 }
3015
3016 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003017 curproxy->rsp_cap_pool = create_pool("ptrcap",
3018 curproxy->nb_rsp_cap * sizeof(char *),
3019 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003020 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003021
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003022 switch (curproxy->load_server_state_from_file) {
3023 case PR_SRV_STATE_FILE_UNSPEC:
3024 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3025 break;
3026 case PR_SRV_STATE_FILE_GLOBAL:
3027 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003028 ha_warning("config : backend '%s' configured to load server state file from global section 'server-state-file' directive. Unfortunately, 'server-state-file' is not set!\n",
3029 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003030 err_code |= ERR_WARN;
3031 }
3032 break;
3033 }
3034
Willy Tarreaubaaee002006-06-26 02:48:02 +02003035 /* first, we will invert the servers list order */
3036 newsrv = NULL;
3037 while (curproxy->srv) {
3038 struct server *next;
3039
3040 next = curproxy->srv->next;
3041 curproxy->srv->next = newsrv;
3042 newsrv = curproxy->srv;
3043 if (!next)
3044 break;
3045 curproxy->srv = next;
3046 }
3047
Willy Tarreau17edc812014-01-03 12:14:34 +01003048 /* Check that no server name conflicts. This causes trouble in the stats.
3049 * We only emit a warning for the first conflict affecting each server,
3050 * in order to avoid combinatory explosion if all servers have the same
3051 * name. We do that only for servers which do not have an explicit ID,
3052 * because these IDs were made also for distinguishing them and we don't
3053 * want to annoy people who correctly manage them.
3054 */
3055 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3056 struct server *other_srv;
3057
3058 if (newsrv->puid)
3059 continue;
3060
3061 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3062 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003063 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",
3064 newsrv->conf.file, newsrv->conf.line,
3065 proxy_type_str(curproxy), curproxy->id,
3066 newsrv->id, other_srv->conf.line);
Willy Tarreau17edc812014-01-03 12:14:34 +01003067 break;
3068 }
3069 }
3070 }
3071
Willy Tarreaudd701652010-05-25 23:03:02 +02003072 /* assign automatic UIDs to servers which don't have one yet */
3073 next_id = 1;
3074 newsrv = curproxy->srv;
3075 while (newsrv != NULL) {
3076 if (!newsrv->puid) {
3077 /* server ID not set, use automatic numbering with first
3078 * spare entry starting with next_svid.
3079 */
3080 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3081 newsrv->conf.id.key = newsrv->puid = next_id;
3082 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
3083 }
3084 next_id++;
3085 newsrv = newsrv->next;
3086 }
3087
Willy Tarreau20697042007-11-15 23:26:18 +01003088 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003089 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003090
Willy Tarreau62c3be22012-01-20 13:12:32 +01003091 /*
3092 * If this server supports a maxconn parameter, it needs a dedicated
3093 * tasks to fill the emptied slots when a connection leaves.
3094 * Also, resolve deferred tracking dependency if needed.
3095 */
3096 newsrv = curproxy->srv;
3097 while (newsrv != NULL) {
3098 if (newsrv->minconn > newsrv->maxconn) {
3099 /* Only 'minconn' was specified, or it was higher than or equal
3100 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3101 * this will avoid further useless expensive computations.
3102 */
3103 newsrv->maxconn = newsrv->minconn;
3104 } else if (newsrv->maxconn && !newsrv->minconn) {
3105 /* minconn was not specified, so we set it to maxconn */
3106 newsrv->minconn = newsrv->maxconn;
3107 }
3108
Willy Tarreau17d45382016-12-22 21:16:08 +01003109 /* this will also properly set the transport layer for prod and checks */
3110 if (newsrv->use_ssl || newsrv->check.use_ssl) {
3111 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3112 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3113 }
Emeric Brun94324a42012-10-11 14:00:19 +02003114
Willy Tarreau2f075e92013-12-03 11:11:34 +01003115 /* set the check type on the server */
3116 newsrv->check.type = curproxy->options2 & PR_O2_CHK_ANY;
3117
Willy Tarreau62c3be22012-01-20 13:12:32 +01003118 if (newsrv->trackit) {
3119 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003120 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003121 char *pname, *sname;
3122
3123 pname = newsrv->trackit;
3124 sname = strrchr(pname, '/');
3125
3126 if (sname)
3127 *sname++ = '\0';
3128 else {
3129 sname = pname;
3130 pname = NULL;
3131 }
3132
3133 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003134 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003135 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003136 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3137 proxy_type_str(curproxy), curproxy->id,
3138 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003139 cfgerr++;
3140 goto next_srv;
3141 }
3142 } else
3143 px = curproxy;
3144
3145 srv = findserver(px, sname);
3146 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003147 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3148 proxy_type_str(curproxy), curproxy->id,
3149 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003150 cfgerr++;
3151 goto next_srv;
3152 }
3153
Willy Tarreau32091232014-05-16 13:52:00 +02003154 if (!(srv->check.state & CHK_ST_CONFIGURED) &&
3155 !(srv->agent.state & CHK_ST_CONFIGURED) &&
3156 !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003157 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3158 "tracking as it does not have any check nor agent enabled.\n",
3159 proxy_type_str(curproxy), curproxy->id,
3160 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003161 cfgerr++;
3162 goto next_srv;
3163 }
3164
3165 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3166
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003167 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003168 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3169 "belongs to a tracking chain looping back to %s/%s.\n",
3170 proxy_type_str(curproxy), curproxy->id,
3171 newsrv->id, px->id, srv->id, px->id,
3172 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003173 cfgerr++;
3174 goto next_srv;
3175 }
3176
3177 if (curproxy != px &&
3178 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003179 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3180 "tracking: disable-on-404 option inconsistency.\n",
3181 proxy_type_str(curproxy), curproxy->id,
3182 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003183 cfgerr++;
3184 goto next_srv;
3185 }
3186
Willy Tarreau62c3be22012-01-20 13:12:32 +01003187 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003188 newsrv->tracknext = srv->trackers;
3189 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003190
3191 free(newsrv->trackit);
3192 newsrv->trackit = NULL;
3193 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003194
Willy Tarreau62c3be22012-01-20 13:12:32 +01003195 next_srv:
3196 newsrv = newsrv->next;
3197 }
3198
Olivier Houchard4e694042017-03-14 20:01:29 +01003199 /*
3200 * Try to generate dynamic cookies for servers now.
3201 * It couldn't be done earlier, since at the time we parsed
3202 * the server line, we may not have known yet that we
3203 * should use dynamic cookies, or the secret key may not
3204 * have been provided yet.
3205 */
3206 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3207 newsrv = curproxy->srv;
3208 while (newsrv != NULL) {
3209 srv_set_dyncookie(newsrv);
3210 newsrv = newsrv->next;
3211 }
3212
3213 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003214 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003215 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003216 */
3217
3218 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3219 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3220 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003221 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3222 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3223 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003224 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3225 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3226 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003227 } else {
3228 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3229 fwrr_init_server_groups(curproxy);
3230 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003231 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003232
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003233 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003234 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3235 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3236 fwlc_init_server_tree(curproxy);
3237 } else {
3238 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3239 fas_init_server_tree(curproxy);
3240 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003241 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003242
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003243 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003244 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3245 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3246 chash_init_server_tree(curproxy);
3247 } else {
3248 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3249 init_server_map(curproxy);
3250 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003251 break;
3252 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003253 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003254
3255 if (curproxy->options & PR_O_LOGASAP)
3256 curproxy->to_log &= ~LW_BYTES;
3257
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003258 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003259 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3260 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003261 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3262 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003263 err_code |= ERR_WARN;
3264 }
3265
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003266 if (curproxy->mode != PR_MODE_HTTP) {
3267 int optnum;
3268
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003269 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003270 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3271 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003272 err_code |= ERR_WARN;
3273 curproxy->uri_auth = NULL;
3274 }
3275
Willy Tarreaude7dc882017-03-10 11:49:21 +01003276 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003277 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3278 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003279 err_code |= ERR_WARN;
3280 }
3281
3282 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003283 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3284 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003285 err_code |= ERR_WARN;
3286 }
3287
3288 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003289 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3290 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003291 err_code |= ERR_WARN;
3292 }
3293
3294 if (!LIST_ISEMPTY(&curproxy->block_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003295 ha_warning("config : 'block' rules ignored for %s '%s' as they require HTTP mode.\n",
3296 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003297 err_code |= ERR_WARN;
3298 }
3299
3300 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003301 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3302 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003303 err_code |= ERR_WARN;
3304 }
3305
Willy Tarreau87cf5142011-08-19 22:57:24 +02003306 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003307 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3308 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003309 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003310 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003311 }
3312
3313 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003314 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3315 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003316 err_code |= ERR_WARN;
3317 curproxy->options &= ~PR_O_ORGTO;
3318 }
3319
3320 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3321 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3322 (curproxy->cap & cfg_opts[optnum].cap) &&
3323 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003324 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3325 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003326 err_code |= ERR_WARN;
3327 curproxy->options &= ~cfg_opts[optnum].val;
3328 }
3329 }
3330
3331 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3332 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3333 (curproxy->cap & cfg_opts2[optnum].cap) &&
3334 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003335 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3336 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003337 err_code |= ERR_WARN;
3338 curproxy->options2 &= ~cfg_opts2[optnum].val;
3339 }
3340 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003341
Willy Tarreau29fbe512015-08-20 19:35:14 +02003342#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003343 if (curproxy->conn_src.bind_hdr_occ) {
3344 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003345 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3346 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003347 err_code |= ERR_WARN;
3348 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003349#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003350 }
3351
Willy Tarreaubaaee002006-06-26 02:48:02 +02003352 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003353 * ensure that we're not cross-dressing a TCP server into HTTP.
3354 */
3355 newsrv = curproxy->srv;
3356 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003357 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003358 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3359 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003360 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003361 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003362
Willy Tarreau0cec3312011-10-31 13:49:26 +01003363 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003364 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3365 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003366 err_code |= ERR_WARN;
3367 }
3368
Willy Tarreauc93cd162014-05-13 15:54:22 +02003369 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003370 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3371 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003372 err_code |= ERR_WARN;
3373 }
3374
Willy Tarreau29fbe512015-08-20 19:35:14 +02003375#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003376 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3377 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003378 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3379 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003380 err_code |= ERR_WARN;
3381 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003382#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003383
Willy Tarreau46deab62018-04-28 07:18:15 +02003384 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3385 curproxy->options &= ~PR_O_REUSE_MASK;
3386
Willy Tarreau21d2af32008-02-14 20:25:24 +01003387 newsrv = newsrv->next;
3388 }
3389
Willy Tarreaue42bd962014-09-16 16:21:19 +02003390 /* check if we have a frontend with "tcp-request content" looking at L7
3391 * with no inspect-delay
3392 */
3393 if ((curproxy->cap & PR_CAP_FE) && !curproxy->tcp_req.inspect_delay) {
Christopher Faulete4e830d2017-09-18 14:51:41 +02003394 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
3395 if (arule->action == ACT_TCP_CAPTURE &&
3396 !(arule->arg.cap.expr->fetch->val & SMP_VAL_FE_SES_ACC))
Willy Tarreaue42bd962014-09-16 16:21:19 +02003397 break;
Christopher Faulete4e830d2017-09-18 14:51:41 +02003398 if ((arule->action >= ACT_ACTION_TRK_SC0 && arule->action <= ACT_ACTION_TRK_SCMAX) &&
3399 !(arule->arg.trk_ctr.expr->fetch->val & SMP_VAL_FE_SES_ACC))
Willy Tarreaue42bd962014-09-16 16:21:19 +02003400 break;
3401 }
3402
Christopher Faulete4e830d2017-09-18 14:51:41 +02003403 if (&arule->list != &curproxy->tcp_req.inspect_rules) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003404 ha_warning("config : %s '%s' : some 'tcp-request content' rules explicitly depending on request"
3405 " contents were found in a frontend without any 'tcp-request inspect-delay' setting."
3406 " This means that these rules will randomly find their contents. This can be fixed by"
3407 " setting the tcp-request inspect-delay.\n",
3408 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue42bd962014-09-16 16:21:19 +02003409 err_code |= ERR_WARN;
3410 }
3411 }
3412
Christopher Fauletd7c91962015-04-30 11:48:27 +02003413 /* Check filter configuration, if any */
3414 cfgerr += flt_check(curproxy);
3415
Willy Tarreauc1a21672009-08-16 22:37:44 +02003416 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003417 if (!curproxy->accept)
3418 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003419
Willy Tarreauc1a21672009-08-16 22:37:44 +02003420 if (curproxy->tcp_req.inspect_delay ||
3421 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003422 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003423
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003424 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003425 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003426 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003427 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003428
William Lallemandcf62f7e2018-10-26 14:47:40 +02003429 if (curproxy->mode == PR_MODE_CLI) {
3430 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3431 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3432 }
3433
Willy Tarreauc1a21672009-08-16 22:37:44 +02003434 /* both TCP and HTTP must check switching rules */
3435 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003436
3437 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003438 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003439 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3440 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 +01003441 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003442 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3443 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003444 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003445 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003446 }
3447
3448 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003449 if (curproxy->tcp_req.inspect_delay ||
3450 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3451 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3452
Emeric Brun97679e72010-09-23 17:56:44 +02003453 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3454 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3455
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003456 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003457 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003458 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003459 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003460
3461 /* If the backend does requires RDP cookie persistence, we have to
3462 * enable the corresponding analyser.
3463 */
3464 if (curproxy->options2 & PR_O2_RDPC_PRST)
3465 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003466
3467 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003468 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003469 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3470 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 +01003471 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003472 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3473 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003474 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003475 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003476 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003477
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003478 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003479 * attached to the current proxy */
3480 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3481 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003482 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003483
Christopher Faulet7ff4f142018-11-20 11:23:52 +01003484 /* Special case for HTX because it is still experimental */
3485 if (curproxy->options2 & PR_O2_USE_HTX)
3486 mode = PROTO_MODE_HTX;
3487
Christopher Fauleta717b992018-04-10 14:43:00 +02003488 if (!bind_conf->mux_proto)
3489 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003490
3491 /* it is possible that an incorrect mux was referenced
3492 * due to the proxy's mode not being taken into account
3493 * on first pass. Let's adjust it now.
3494 */
3495 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3496
3497 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003498 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3499 proxy_type_str(curproxy), curproxy->id,
3500 (int)bind_conf->mux_proto->token.len,
3501 bind_conf->mux_proto->token.ptr,
3502 bind_conf->arg, bind_conf->file, bind_conf->line);
3503 cfgerr++;
3504 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003505
3506 /* update the mux */
3507 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003508 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003509 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3510 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003511 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003512
Christopher Faulet7ff4f142018-11-20 11:23:52 +01003513 /* Special case for HTX because it is still experimental */
3514 if (curproxy->options2 & PR_O2_USE_HTX)
3515 mode = PROTO_MODE_HTX;
3516
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003517 if (!newsrv->mux_proto)
3518 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003519
3520 /* it is possible that an incorrect mux was referenced
3521 * due to the proxy's mode not being taken into account
3522 * on first pass. Let's adjust it now.
3523 */
3524 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3525
3526 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003527 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3528 proxy_type_str(curproxy), curproxy->id,
3529 (int)newsrv->mux_proto->token.len,
3530 newsrv->mux_proto->token.ptr,
3531 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3532 cfgerr++;
3533 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003534
3535 /* update the mux */
3536 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003537 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003538 }
3539
3540 /***********************************************************/
3541 /* At this point, target names have already been resolved. */
3542 /***********************************************************/
3543
3544 /* Check multi-process mode compatibility */
3545
3546 if (global.nbproc > 1 && global.stats_fe) {
3547 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3548 unsigned long mask;
3549
3550 mask = nbits(global.nbproc);
3551 if (global.stats_fe->bind_proc)
3552 mask &= global.stats_fe->bind_proc;
3553
3554 if (bind_conf->bind_proc)
3555 mask &= bind_conf->bind_proc;
3556
3557 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003558 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003559 break;
3560 }
3561 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003562 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 +02003563 }
3564 }
3565
3566 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003567 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003568 if (curproxy->bind_proc)
3569 continue;
3570
3571 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3572 unsigned long mask;
3573
Willy Tarreaue428b082015-05-04 21:57:58 +02003574 mask = bind_conf->bind_proc ? bind_conf->bind_proc : nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003575 curproxy->bind_proc |= mask;
3576 }
3577
3578 if (!curproxy->bind_proc)
Willy Tarreaue428b082015-05-04 21:57:58 +02003579 curproxy->bind_proc = nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003580 }
3581
3582 if (global.stats_fe) {
3583 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3584 unsigned long mask;
3585
Cyril Bonté06181952016-02-24 00:14:54 +01003586 mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003587 global.stats_fe->bind_proc |= mask;
3588 }
3589 if (!global.stats_fe->bind_proc)
Willy Tarreaue428b082015-05-04 21:57:58 +02003590 global.stats_fe->bind_proc = nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003591 }
3592
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003593 /* propagate bindings from frontends to backends. Don't do it if there
3594 * are any fatal errors as we must not call it with unresolved proxies.
3595 */
3596 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003597 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003598 if (curproxy->cap & PR_CAP_FE)
3599 propagate_processes(curproxy, NULL);
3600 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003601 }
3602
3603 /* Bind each unbound backend to all processes when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003604 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003605 if (curproxy->bind_proc)
3606 continue;
Willy Tarreaue428b082015-05-04 21:57:58 +02003607 curproxy->bind_proc = nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003608 }
3609
3610 /*******************************************************/
3611 /* At this step, all proxies have a non-null bind_proc */
3612 /*******************************************************/
3613
3614 /* perform the final checks before creating tasks */
3615
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003616 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003617 struct listener *listener;
3618 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003619
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003620 /* Configure SSL for each bind line.
3621 * Note: if configuration fails at some point, the ->ctx member
3622 * remains NULL so that listeners can later detach.
3623 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003624 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003625 if (bind_conf->xprt->prepare_bind_conf &&
3626 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003627 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003628 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003629
Willy Tarreaue6b98942007-10-29 01:09:36 +01003630 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003631 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003632 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003633 int nbproc;
3634
3635 nbproc = my_popcountl(curproxy->bind_proc &
Cyril Bonté4920d702016-04-15 07:58:43 +02003636 (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) &
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003637 nbits(global.nbproc));
3638
3639 if (!nbproc) /* no intersection between listener and frontend */
3640 nbproc = 1;
3641
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003642 if (!listener->luid) {
3643 /* listener ID not set, use automatic numbering with first
3644 * spare entry starting with next_luid.
3645 */
3646 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3647 listener->conf.id.key = listener->luid = next_id;
3648 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003649 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003650 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003651
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003652 /* enable separate counters */
3653 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003654 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003655 if (!listener->name)
3656 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003657 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003658
Willy Tarreaue6b98942007-10-29 01:09:36 +01003659 if (curproxy->options & PR_O_TCP_NOLING)
3660 listener->options |= LI_O_NOLINGER;
Willy Tarreau32368ce2012-09-06 11:10:55 +02003661 if (!listener->maxconn)
3662 listener->maxconn = curproxy->maxconn;
3663 if (!listener->backlog)
3664 listener->backlog = curproxy->backlog;
Willy Tarreau16a21472012-11-19 12:39:59 +01003665 if (!listener->maxaccept)
3666 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3667
3668 /* we want to have an optimal behaviour on single process mode to
3669 * maximize the work at once, but in multi-process we want to keep
3670 * some fairness between processes, so we target half of the max
3671 * number of events to be balanced over all the processes the proxy
3672 * is bound to. Rememeber that maxaccept = -1 must be kept as it is
3673 * used to disable the limit.
3674 */
3675 if (listener->maxaccept > 0) {
3676 if (nbproc > 1)
3677 listener->maxaccept = (listener->maxaccept + 1) / 2;
3678 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3679 }
3680
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003681 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003682 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003683 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003684
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003685 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003686 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003687
Willy Tarreau620408f2016-10-21 16:37:51 +02003688 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3689 listener->options |= LI_O_TCP_L5_RULES;
3690
Willy Tarreaude3041d2010-05-31 10:56:17 +02003691 if (curproxy->mon_mask.s_addr)
3692 listener->options |= LI_O_CHK_MONNET;
3693
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003694 /* smart accept mode is automatic in HTTP mode */
3695 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003696 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003697 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3698 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003699 }
3700
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003701 /* Release unused SSL configs */
3702 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003703 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3704 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003705 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003706
Willy Tarreau9504dd62018-10-15 09:37:03 +02003707 if (atleast2(curproxy->bind_proc & nbits(global.nbproc))) {
Willy Tarreau102df612014-05-07 23:56:38 +02003708 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003709 int count, maxproc = 0;
3710
3711 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
David Carliere6c39412015-07-02 07:00:17 +00003712 count = my_popcountl(bind_conf->bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003713 if (count > maxproc)
3714 maxproc = count;
3715 }
3716 /* backends have 0, frontends have 1 or more */
3717 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003718 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3719 " limited to process assigned to the current request.\n",
3720 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003721
Willy Tarreau102df612014-05-07 23:56:38 +02003722 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003723 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3724 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003725 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003726 }
Willy Tarreau102df612014-05-07 23:56:38 +02003727 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003728 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3729 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003730 }
3731 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003732
3733 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003734 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003735 if (curproxy->task) {
3736 curproxy->task->context = curproxy;
3737 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003738 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003739 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3740 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003741 cfgerr++;
3742 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003743 }
3744
Willy Tarreaufbb78422011-06-05 15:38:35 +02003745 /* automatically compute fullconn if not set. We must not do it in the
3746 * loop above because cross-references are not yet fully resolved.
3747 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003748 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreaufbb78422011-06-05 15:38:35 +02003749 /* If <fullconn> is not set, let's set it to 10% of the sum of
3750 * the possible incoming frontend's maxconns.
3751 */
3752 if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) {
Willy Tarreaufbb78422011-06-05 15:38:35 +02003753 /* we have the sum of the maxconns in <total>. We only
3754 * keep 10% of that sum to set the default fullconn, with
3755 * a hard minimum of 1 (to avoid a divide by zero).
3756 */
Emeric Brun3f783572017-01-12 11:21:28 +01003757 curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10;
Willy Tarreaufbb78422011-06-05 15:38:35 +02003758 if (!curproxy->fullconn)
3759 curproxy->fullconn = 1;
3760 }
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01003761 }
3762
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003763 /*
3764 * Recount currently required checks.
3765 */
3766
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003767 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003768 int optnum;
3769
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003770 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3771 if (curproxy->options & cfg_opts[optnum].val)
3772 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003773
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003774 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3775 if (curproxy->options2 & cfg_opts2[optnum].val)
3776 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003777 }
3778
Willy Tarreau0fca4832015-05-01 19:12:05 +02003779 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003780 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Willy Tarreau0fca4832015-05-01 19:12:05 +02003781 if (curproxy->table.peers.p)
3782 curproxy->table.peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
3783
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003784 if (cfg_peers) {
3785 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003786 struct peer *p, *pb;
3787
Willy Tarreau1e273012015-05-01 19:15:17 +02003788 /* Remove all peers sections which don't have a valid listener,
3789 * which are not used by any table, or which are bound to more
3790 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003791 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003792 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003793 while (*last) {
3794 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003795
3796 if (curpeers->state == PR_STSTOPPED) {
3797 /* the "disabled" keyword was present */
3798 if (curpeers->peers_fe)
3799 stop_proxy(curpeers->peers_fe);
3800 curpeers->peers_fe = NULL;
3801 }
3802 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003803 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3804 curpeers->id, localpeer);
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003805 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003806 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003807 /* either it's totally stopped or too much used */
3808 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003809 ha_alert("Peers section '%s': peers referenced by sections "
3810 "running in different processes (%d different ones). "
3811 "Check global.nbproc and all tables' bind-process "
3812 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003813 cfgerr++;
3814 }
3815 stop_proxy(curpeers->peers_fe);
3816 curpeers->peers_fe = NULL;
3817 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003818 else {
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003819 p = curpeers->remote;
3820 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003821 if (p->srv) {
3822 if (p->srv->use_ssl && xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3823 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3824 }
3825 else if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3826 struct list *l;
3827 struct bind_conf *bind_conf;
3828
3829 l = &curpeers->peers_fe->conf.bind;
3830 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3831 if (bind_conf->xprt->prepare_bind_conf &&
3832 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3833 cfgerr++;
3834 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003835 p = p->next;
3836 }
Willy Tarreaud9443442018-10-15 11:18:03 +02003837 if (!peers_init_sync(curpeers)) {
3838 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3839 curpeers->id);
3840 cfgerr++;
3841 break;
3842 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003843 last = &curpeers->next;
3844 continue;
3845 }
3846
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003847 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003848 p = curpeers->remote;
3849 while (p) {
3850 pb = p->next;
3851 free(p->id);
3852 free(p);
3853 p = pb;
3854 }
3855
3856 /* Destroy and unlink this curpeers section.
3857 * Note: curpeers is backed up into *last.
3858 */
3859 free(curpeers->id);
3860 curpeers = curpeers->next;
3861 free(*last);
3862 *last = curpeers;
3863 }
3864 }
3865
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003866 /* initialize stick-tables on backend capable proxies. This must not
3867 * be done earlier because the data size may be discovered while parsing
3868 * other proxies.
3869 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003870 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003871 if (curproxy->state == PR_STSTOPPED)
3872 continue;
3873
3874 if (!stktable_init(&curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003875 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003876 cfgerr++;
3877 }
3878 }
3879
Simon Horman0d16a402015-01-30 11:22:58 +09003880 if (mailers) {
3881 struct mailers *curmailers = mailers, **last;
3882 struct mailer *m, *mb;
3883
3884 /* Remove all mailers sections which don't have a valid listener.
3885 * This can happen when a mailers section is never referenced.
3886 */
3887 last = &mailers;
3888 while (*last) {
3889 curmailers = *last;
3890 if (curmailers->users) {
3891 last = &curmailers->next;
3892 continue;
3893 }
3894
Christopher Faulet767a84b2017-11-24 16:50:31 +01003895 ha_warning("Removing incomplete section 'mailers %s'.\n",
3896 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09003897
3898 m = curmailers->mailer_list;
3899 while (m) {
3900 mb = m->next;
3901 free(m->id);
3902 free(m);
3903 m = mb;
3904 }
3905
3906 /* Destroy and unlink this curmailers section.
3907 * Note: curmailers is backed up into *last.
3908 */
3909 free(curmailers->id);
3910 curmailers = curmailers->next;
3911 free(*last);
3912 *last = curmailers;
3913 }
3914 }
3915
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003916 /* Update server_state_file_name to backend name if backend is supposed to use
3917 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003918 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003919 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
3920 curproxy->server_state_file_name == NULL)
3921 curproxy->server_state_file_name = strdup(curproxy->id);
3922 }
3923
Willy Tarreaubafbe012017-11-24 17:34:44 +01003924 pool_head_hdr_idx = create_pool("hdr_idx",
Willy Tarreauac1932d2011-10-24 19:14:41 +02003925 global.tune.max_http_hdr * sizeof(struct hdr_idx_elem),
Willy Tarreau34eb6712011-10-24 18:15:04 +02003926 MEM_F_SHARED);
3927
Ben Draut054fbee2018-04-13 15:43:04 -06003928 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
3929 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
3930 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
3931 curr_resolvers->id, curr_resolvers->conf.file,
3932 curr_resolvers->conf.line);
3933 err_code |= ERR_WARN;
3934 }
3935 }
3936
William Lallemand48b4bb42017-10-23 14:36:34 +02003937 list_for_each_entry(postparser, &postparsers, list) {
3938 if (postparser->func)
3939 cfgerr += postparser->func();
3940 }
3941
Willy Tarreaubb925012009-07-23 13:36:36 +02003942 if (cfgerr > 0)
3943 err_code |= ERR_ALERT | ERR_FATAL;
3944 out:
3945 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003946}
3947
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003948/*
3949 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
3950 * parsing sessions.
3951 */
3952void cfg_register_keywords(struct cfg_kw_list *kwl)
3953{
3954 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
3955}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003956
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003957/*
3958 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
3959 */
3960void cfg_unregister_keywords(struct cfg_kw_list *kwl)
3961{
3962 LIST_DEL(&kwl->list);
3963 LIST_INIT(&kwl->list);
3964}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003965
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003966/* this function register new section in the haproxy configuration file.
3967 * <section_name> is the name of this new section and <section_parser>
3968 * is the called parser. If two section declaration have the same name,
3969 * only the first declared is used.
3970 */
3971int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02003972 int (*section_parser)(const char *, int, char **, int),
3973 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003974{
3975 struct cfg_section *cs;
3976
Willy Tarreau5e4261b2016-05-17 16:16:09 +02003977 list_for_each_entry(cs, &sections, list) {
3978 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003979 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02003980 return 0;
3981 }
3982 }
3983
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003984 cs = calloc(1, sizeof(*cs));
3985 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003986 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003987 return 0;
3988 }
3989
3990 cs->section_name = section_name;
3991 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02003992 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003993
3994 LIST_ADDQ(&sections, &cs->list);
3995
3996 return 1;
3997}
3998
William Lallemand48b4bb42017-10-23 14:36:34 +02003999/* this function register a new function which will be called once the haproxy
4000 * configuration file has been parsed. It's useful to check dependencies
4001 * between sections or to resolve items once everything is parsed.
4002 */
4003int cfg_register_postparser(char *name, int (*func)())
4004{
4005 struct cfg_postparser *cp;
4006
4007 cp = calloc(1, sizeof(*cp));
4008 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004009 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004010 return 0;
4011 }
4012 cp->name = name;
4013 cp->func = func;
4014
4015 LIST_ADDQ(&postparsers, &cp->list);
4016
4017 return 1;
4018}
4019
Willy Tarreaubaaee002006-06-26 02:48:02 +02004020/*
David Carlier845efb52015-09-25 11:49:18 +01004021 * free all config section entries
4022 */
4023void cfg_unregister_sections(void)
4024{
4025 struct cfg_section *cs, *ics;
4026
4027 list_for_each_entry_safe(cs, ics, &sections, list) {
4028 LIST_DEL(&cs->list);
4029 free(cs);
4030 }
4031}
4032
Christopher Faulet7110b402016-10-26 11:09:44 +02004033void cfg_backup_sections(struct list *backup_sections)
4034{
4035 struct cfg_section *cs, *ics;
4036
4037 list_for_each_entry_safe(cs, ics, &sections, list) {
4038 LIST_DEL(&cs->list);
4039 LIST_ADDQ(backup_sections, &cs->list);
4040 }
4041}
4042
4043void cfg_restore_sections(struct list *backup_sections)
4044{
4045 struct cfg_section *cs, *ics;
4046
4047 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4048 LIST_DEL(&cs->list);
4049 LIST_ADDQ(&sections, &cs->list);
4050 }
4051}
4052
Willy Tarreaue6552512018-11-26 11:33:13 +01004053/* these are the config sections handled by default */
4054REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4055REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4056REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4057REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4058REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4059REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4060REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4061REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4062REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4063REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004064
David Carlier845efb52015-09-25 11:49:18 +01004065/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004066 * Local variables:
4067 * c-indent-level: 8
4068 * c-basic-offset: 8
4069 * End:
4070 */