blob: 50f43cde59a3ed880d8317d5e90dc6d6c9ad3cdb [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
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100348 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100349 * two such numbers delimited by a dash ('-'). On success, it returns
350 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200351 *
352 * Note: this function can also be used to parse a thread number or a set of
353 * threads.
354 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100355int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200356{
Christopher Faulet26028f62017-11-22 15:01:51 +0100357 if (autoinc) {
358 *autoinc = 0;
359 if (strncmp(arg, "auto:", 5) == 0) {
360 arg += 5;
361 *autoinc = 1;
362 }
363 }
364
Christopher Faulet62519022017-10-16 15:49:32 +0200365 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100366 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200367 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100368 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200369 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100370 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200371 else {
Christopher 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)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100382 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100383
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100384 if (high < low) {
385 unsigned int swap = low;
386 low = high;
387 high = swap;
388 }
389
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100390 if (low < 1 || low > max || high > max) {
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",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100393 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100394 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 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100400 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100401
Christopher Faulet5ab51772017-11-22 11:21:58 +0100402 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200403}
404
David Carlier7e351ee2017-12-01 09:14:02 +0000405#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200406/* Parse cpu sets. Each CPU set is either a unique number between 0 and
407 * <LONGBITS> or a range with two such numbers delimited by a dash
408 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
409 * returns 0. otherwise it returns 1 with an error message in <err>.
410 */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100411unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200412{
413 int cur_arg = 0;
414
415 *cpu_set = 0;
416 while (*args[cur_arg]) {
417 char *dash;
418 unsigned int low, high;
419
420 if (!isdigit((int)*args[cur_arg])) {
421 memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
422 return -1;
423 }
424
425 low = high = str2uic(args[cur_arg]);
426 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100427 high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
Christopher Faulet62519022017-10-16 15:49:32 +0200428
429 if (high < low) {
430 unsigned int swap = low;
431 low = high;
432 high = swap;
433 }
434
435 if (high >= LONGBITS) {
436 memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
437 return 1;
438 }
439
440 while (low <= high)
441 *cpu_set |= 1UL << low++;
442
443 cur_arg++;
444 }
445 return 0;
446}
David Carlier7e351ee2017-12-01 09:14:02 +0000447#endif
448
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200449void init_default_instance()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200450{
Willy Tarreau97cb7802010-01-03 20:23:58 +0100451 init_new_proxy(&defproxy);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200452 defproxy.mode = PR_MODE_TCP;
453 defproxy.state = PR_STNEW;
454 defproxy.maxconn = cfg_maxpconn;
455 defproxy.conn_retries = CONN_RETRIES;
Joseph Lynch726ab712015-05-11 23:25:34 -0700456 defproxy.redispatch_after = 0;
Olivier Houchard86006a52018-12-14 19:37:49 +0100457 defproxy.options = PR_O_REUSE_SAFE;
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +0100458 defproxy.max_out_conns = MAX_SRV_LIST;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100459
Simon Horman66183002013-02-23 10:16:43 +0900460 defproxy.defsrv.check.inter = DEF_CHKINTR;
461 defproxy.defsrv.check.fastinter = 0;
462 defproxy.defsrv.check.downinter = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900463 defproxy.defsrv.agent.inter = DEF_CHKINTR;
464 defproxy.defsrv.agent.fastinter = 0;
465 defproxy.defsrv.agent.downinter = 0;
Simon Horman58c32972013-11-25 10:46:38 +0900466 defproxy.defsrv.check.rise = DEF_RISETIME;
467 defproxy.defsrv.check.fall = DEF_FALLTIME;
468 defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME;
469 defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME;
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200470 defproxy.defsrv.check.port = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900471 defproxy.defsrv.agent.port = 0;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100472 defproxy.defsrv.maxqueue = 0;
473 defproxy.defsrv.minconn = 0;
474 defproxy.defsrv.maxconn = 0;
Willy Tarreau9c538e02019-01-23 10:21:49 +0100475 defproxy.defsrv.max_reuse = -1;
Olivier Houchard006e3102018-12-10 18:30:32 +0100476 defproxy.defsrv.max_idle_conns = -1;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100477 defproxy.defsrv.pool_purge_delay = 1000;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100478 defproxy.defsrv.slowstart = 0;
479 defproxy.defsrv.onerror = DEF_HANA_ONERR;
480 defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT;
481 defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1;
Simon Horman64e34162015-02-06 11:11:57 +0900482
483 defproxy.email_alert.level = LOG_ALERT;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +0200484 defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200485}
486
Frédéric Lécaille18251032019-01-11 11:07:15 +0100487/* Allocate and initialize the frontend of a "peers" section found in
488 * file <file> at line <linenum> with <id> as ID.
489 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200490 * Note that this function may be called from "default-server"
491 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100492 */
493static int init_peers_frontend(const char *file, int linenum,
494 const char *id, struct peers *peers)
495{
496 struct proxy *p;
497
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200498 if (peers->peers_fe) {
499 p = peers->peers_fe;
500 goto out;
501 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100502
Frédéric Lécaille18251032019-01-11 11:07:15 +0100503 p = calloc(1, sizeof *p);
504 if (!p) {
505 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
506 return -1;
507 }
508
509 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200510 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100511 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200512 /* Finally store this frontend. */
513 peers->peers_fe = p;
514
515 out:
516 if (id && !p->id)
517 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200518 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100519 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100520 if (linenum != -1)
521 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100522
523 return 0;
524}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100525
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100526/* Only change ->file, ->line and ->arg struct bind_conf member values
527 * if already present.
528 */
529static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
530 const char *file, int line,
531 const char *arg, struct xprt_ops *xprt)
532{
533 struct bind_conf *bind_conf;
534
535 if (!LIST_ISEMPTY(&p->conf.bind)) {
536 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
537 free(bind_conf->file);
538 bind_conf->file = strdup(file);
539 bind_conf->line = line;
540 if (arg) {
541 free(bind_conf->arg);
542 bind_conf->arg = strdup(arg);
543 }
544 }
545 else {
546 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
547 }
548
549 return bind_conf;
550}
551
552/*
553 * Allocate a new struct peer parsed at line <linenum> in file <file>
554 * to be added to <peers>.
555 * Returns the new allocated structure if succeeded, NULL if not.
556 */
557static struct peer *cfg_peers_add_peer(struct peers *peers,
558 const char *file, int linenum,
559 const char *id, int local)
560{
561 struct peer *p;
562
563 p = calloc(1, sizeof *p);
564 if (!p) {
565 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
566 return NULL;
567 }
568
569 /* the peers are linked backwards first */
570 peers->count++;
571 p->next = peers->remote;
572 peers->remote = p;
573 p->conf.file = strdup(file);
574 p->conf.line = linenum;
575 p->last_change = now.tv_sec;
576 p->xprt = xprt_get(XPRT_RAW);
577 p->sock_init_arg = NULL;
578 HA_SPIN_INIT(&p->lock);
579 if (id)
580 p->id = strdup(id);
581 if (local) {
582 p->local = 1;
583 peers->local = p;
584 }
585
586 return p;
587}
588
Willy Tarreaubaaee002006-06-26 02:48:02 +0200589/*
William Lallemand51097192015-04-14 16:35:22 +0200590 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200591 * Returns the error code, 0 if OK, or any combination of :
592 * - ERR_ABORT: must abort ASAP
593 * - ERR_FATAL: we can continue parsing but not start the service
594 * - ERR_WARN: a warning has been emitted
595 * - ERR_ALERT: an alert has been emitted
596 * Only the two first ones can stop processing, the two others are just
597 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200598 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200599int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
600{
601 static struct peers *curpeers = NULL;
602 struct peer *newpeer = NULL;
603 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200604 struct bind_conf *bind_conf;
605 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200606 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100607 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100608 static int bind_line, peer_line;
609
610 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
611 int cur_arg;
612 static int kws_dumped;
613 struct bind_conf *bind_conf;
614 struct bind_kw *kw;
615 char *kws;
Emeric Brun32da3c42010-09-23 18:39:19 +0200616
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100617 cur_arg = 1;
618
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200619 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
620 err_code |= ERR_ALERT | ERR_ABORT;
621 goto out;
622 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100623
624 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
625 NULL, xprt_get(XPRT_RAW));
626 if (*args[0] == 'b') {
627 struct listener *l;
628
629 if (peer_line) {
630 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
631 err_code |= ERR_ALERT | ERR_FATAL;
632 goto out;
633 }
634
635 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
636 if (errmsg && *errmsg) {
637 indent_msg(&errmsg, 2);
638 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
639 }
640 else
641 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
642 file, linenum, args[0], args[1], args[2]);
643 err_code |= ERR_FATAL;
644 goto out;
645 }
646 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
647 l->maxaccept = 1;
648 l->maxconn = curpeers->peers_fe->maxconn;
649 l->backlog = curpeers->peers_fe->backlog;
650 l->accept = session_accept_fd;
651 l->analysers |= curpeers->peers_fe->fe_req_ana;
652 l->default_target = curpeers->peers_fe->default_target;
653 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
654 global.maxsock += l->maxconn;
655
656 bind_line = 1;
657 if (cfg_peers->local) {
658 newpeer = cfg_peers->local;
659 }
660 else {
661 /* This peer is local.
662 * Note that we do not set the peer ID. This latter is initialized
663 * when parsing "peer" or "server" line.
664 */
665 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
666 if (!newpeer) {
667 err_code |= ERR_ALERT | ERR_ABORT;
668 goto out;
669 }
670 }
671 newpeer->addr = l->addr;
672 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
673 cur_arg++;
674 }
675
676 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
677 int ret;
678
679 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
680 err_code |= ret;
681 if (ret) {
682 if (errmsg && *errmsg) {
683 indent_msg(&errmsg, 2);
684 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
685 }
686 else
687 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
688 file, linenum, args[cur_arg]);
689 if (ret & ERR_FATAL)
690 goto out;
691 }
692 cur_arg += 1 + kw->skip;
693 }
694 kws = NULL;
695 if (!kws_dumped) {
696 kws_dumped = 1;
697 bind_dump_kws(&kws);
698 indent_msg(&kws, 4);
699 }
700 if (*args[cur_arg] != 0) {
701 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.%s%s\n",
702 file, linenum, args[cur_arg], cursection,
703 kws ? " Registered keywords :" : "", kws ? kws: "");
704 free(kws);
705 err_code |= ERR_ALERT | ERR_FATAL;
706 goto out;
707 }
708 }
709 else if (strcmp(args[0], "default-server") == 0) {
710 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
711 err_code |= ERR_ALERT | ERR_ABORT;
712 goto out;
713 }
714 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, 0);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200715 }
716 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100717 /* Initialize these static variables when entering a new "peers" section*/
718 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100719 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100720 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100721 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100722 goto out;
723 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200724
William Lallemand6e62fb62015-04-28 16:55:23 +0200725 if (alertif_too_many_args(1, file, linenum, args, &err_code))
726 goto out;
727
Emeric Brun32da3c42010-09-23 18:39:19 +0200728 err = invalid_char(args[1]);
729 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100730 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
731 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100732 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100733 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200734 }
735
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200736 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200737 /*
738 * If there are two proxies with the same name only following
739 * combinations are allowed:
740 */
741 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100742 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
743 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200744 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200745 }
746 }
747
Vincent Bernat02779b62016-04-03 13:48:43 +0200748 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100749 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200750 err_code |= ERR_ALERT | ERR_ABORT;
751 goto out;
752 }
753
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200754 curpeers->next = cfg_peers;
755 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200756 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200757 curpeers->conf.line = linenum;
758 curpeers->last_change = now.tv_sec;
759 curpeers->id = strdup(args[1]);
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200760 curpeers->state = PR_STNEW;
Emeric Brun32da3c42010-09-23 18:39:19 +0200761 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200762 else if (strcmp(args[0], "peer") == 0 ||
763 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100764 int local_peer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200765
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100766 local_peer = !strcmp(args[1], localpeer);
767 /* The local peer may have already partially been parsed on a "bind" line. */
768 if (*args[0] == 'p') {
769 if (bind_line) {
770 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
771 err_code |= ERR_ALERT | ERR_FATAL;
772 goto out;
773 }
774 peer_line = 1;
775 }
776 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
777 /* The local peer has already been initialized on a "bind" line.
778 * Let's use it and store its ID.
779 */
780 newpeer = cfg_peers->local;
781 newpeer->id = strdup(localpeer);
782 }
783 else {
784 if (local_peer && cfg_peers->local) {
785 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
786 file, linenum, args[0], args[1],
787 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
788 err_code |= ERR_FATAL;
789 goto out;
790 }
791 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
792 if (!newpeer) {
793 err_code |= ERR_ALERT | ERR_ABORT;
794 goto out;
795 }
796 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200797
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100798 /* Line number and peer ID are updated only if this peer is the local one. */
799 if (init_peers_frontend(file,
800 newpeer->local ? linenum: -1,
801 newpeer->local ? newpeer->id : NULL,
802 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200803 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100804 goto out;
805 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100806
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100807 /* This initializes curpeer->peers->peers_fe->srv. */
808 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, !local_peer);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200809 if (!curpeers->peers_fe->srv)
Emeric Brun32da3c42010-09-23 18:39:19 +0200810 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200811
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200812 newpeer->addr = curpeers->peers_fe->srv->addr;
813 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100814 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200815 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100816 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200817
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100818 if (!newpeer->local) {
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200819 newpeer->srv = curpeers->peers_fe->srv;
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200820 goto out;
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200821 }
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200822
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100823 /* The lines above are reserved to "peer" lines. */
824 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200825 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200826
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100827 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 +0100828
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100829 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
830 if (errmsg && *errmsg) {
831 indent_msg(&errmsg, 2);
832 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 +0100833 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100834 else
835 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
836 file, linenum, args[0], args[1], args[2]);
837 err_code |= ERR_FATAL;
838 goto out;
839 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100840
841 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
842 l->maxaccept = 1;
843 l->maxconn = curpeers->peers_fe->maxconn;
844 l->backlog = curpeers->peers_fe->backlog;
845 l->accept = session_accept_fd;
846 l->analysers |= curpeers->peers_fe->fe_req_ana;
847 l->default_target = curpeers->peers_fe->default_target;
848 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
849 global.maxsock += l->maxconn;
Emeric Brun32da3c42010-09-23 18:39:19 +0200850 } /* neither "peer" nor "peers" */
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200851 else if (!strcmp(args[0], "disabled")) { /* disables this peers section */
852 curpeers->state = PR_STSTOPPED;
853 }
854 else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */
855 curpeers->state = PR_STNEW;
856 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200857 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100858 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200859 err_code |= ERR_ALERT | ERR_FATAL;
860 goto out;
861 }
862
863out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100864 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200865 return err_code;
866}
867
Baptiste Assmann325137d2015-04-13 23:40:55 +0200868/*
869 * Parse a <resolvers> section.
870 * Returns the error code, 0 if OK, or any combination of :
871 * - ERR_ABORT: must abort ASAP
872 * - ERR_FATAL: we can continue parsing but not start the service
873 * - ERR_WARN: a warning has been emitted
874 * - ERR_ALERT: an alert has been emitted
875 * Only the two first ones can stop processing, the two others are just
876 * indicators.
877 */
878int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
879{
880 static struct dns_resolvers *curr_resolvers = NULL;
881 struct dns_nameserver *newnameserver = NULL;
882 const char *err;
883 int err_code = 0;
884 char *errmsg = NULL;
885
886 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
887 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100888 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200889 err_code |= ERR_ALERT | ERR_ABORT;
890 goto out;
891 }
892
893 err = invalid_char(args[1]);
894 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100895 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
896 file, linenum, *err, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200897 err_code |= ERR_ALERT | ERR_ABORT;
898 goto out;
899 }
900
901 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
902 /* Error if two resolvers owns the same name */
903 if (strcmp(curr_resolvers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100904 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
905 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200906 err_code |= ERR_ALERT | ERR_ABORT;
907 }
908 }
909
Vincent Bernat02779b62016-04-03 13:48:43 +0200910 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100911 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200912 err_code |= ERR_ALERT | ERR_ABORT;
913 goto out;
914 }
915
916 /* default values */
917 LIST_ADDQ(&dns_resolvers, &curr_resolvers->list);
918 curr_resolvers->conf.file = strdup(file);
919 curr_resolvers->conf.line = linenum;
920 curr_resolvers->id = strdup(args[1]);
921 curr_resolvers->query_ids = EB_ROOT;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200922 /* default maximum response size */
923 curr_resolvers->accepted_payload_size = 512;
Baptiste Assmann987e16d2016-11-02 22:23:31 +0100924 /* default hold period for nx, other, refuse and timeout is 30s */
925 curr_resolvers->hold.nx = 30000;
926 curr_resolvers->hold.other = 30000;
927 curr_resolvers->hold.refused = 30000;
928 curr_resolvers->hold.timeout = 30000;
Baptiste Assmann686408b2017-08-18 10:15:42 +0200929 curr_resolvers->hold.obsolete = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200930 /* default hold period for valid is 10s */
Baptiste Assmann4c5490a2015-07-14 21:42:49 +0200931 curr_resolvers->hold.valid = 10000;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200932 curr_resolvers->timeout.resolve = 1000;
933 curr_resolvers->timeout.retry = 1000;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200934 curr_resolvers->resolve_retries = 3;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200935 curr_resolvers->nb_nameservers = 0;
936 LIST_INIT(&curr_resolvers->nameservers);
937 LIST_INIT(&curr_resolvers->resolutions.curr);
938 LIST_INIT(&curr_resolvers->resolutions.wait);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100939 HA_SPIN_INIT(&curr_resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200940 }
941 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
942 struct sockaddr_storage *sk;
943 int port1, port2;
944 struct protocol *proto;
945
946 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100947 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
948 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200949 err_code |= ERR_ALERT | ERR_FATAL;
950 goto out;
951 }
952
953 err = invalid_char(args[1]);
954 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100955 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
956 file, linenum, *err, args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200957 err_code |= ERR_ALERT | ERR_FATAL;
958 goto out;
959 }
960
Christopher Faulet67957bd2017-09-27 11:00:59 +0200961 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
Baptiste Assmanna315c552015-11-02 22:55:49 +0100962 /* Error if two resolvers owns the same name */
963 if (strcmp(newnameserver->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100964 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 -0600965 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
Baptiste Assmanna315c552015-11-02 22:55:49 +0100966 err_code |= ERR_ALERT | ERR_FATAL;
967 }
968 }
969
Vincent Bernat02779b62016-04-03 13:48:43 +0200970 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100971 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200972 err_code |= ERR_ALERT | ERR_ABORT;
973 goto out;
974 }
975
976 /* the nameservers are linked backward first */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200977 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200978 newnameserver->resolvers = curr_resolvers;
979 newnameserver->conf.file = strdup(file);
980 newnameserver->conf.line = linenum;
981 newnameserver->id = strdup(args[1]);
982
Willy Tarreau48ef4c92017-01-06 18:32:38 +0100983 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200984 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100985 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200986 err_code |= ERR_ALERT | ERR_FATAL;
987 goto out;
988 }
989
990 proto = protocol_by_family(sk->ss_family);
991 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100992 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Baptiste Assmann325137d2015-04-13 23:40:55 +0200993 file, linenum, args[0], args[1]);
994 err_code |= ERR_ALERT | ERR_FATAL;
995 goto out;
996 }
997
998 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100999 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1000 file, linenum, args[0], args[1], args[2]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001001 err_code |= ERR_ALERT | ERR_FATAL;
1002 goto out;
1003 }
1004
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001005 if (!port1 && !port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001006 ha_alert("parsing [%s:%d] : '%s %s' : no UDP port specified\n",
1007 file, linenum, args[0], args[1]);
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001008 err_code |= ERR_ALERT | ERR_FATAL;
1009 goto out;
1010 }
1011
Baptiste Assmann325137d2015-04-13 23:40:55 +02001012 newnameserver->addr = *sk;
1013 }
Ben Draut44e609b2018-05-29 15:40:08 -06001014 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
1015 const char *whitespace = "\r\n\t ";
1016 char *resolv_line = NULL;
1017 int resolv_linenum = 0;
1018 FILE *f = NULL;
1019 char *address = NULL;
1020 struct sockaddr_storage *sk = NULL;
1021 struct protocol *proto;
1022 int duplicate_name = 0;
1023
1024 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
1025 ha_alert("parsing [%s:%d] : out of memory.\n",
1026 file, linenum);
1027 err_code |= ERR_ALERT | ERR_FATAL;
1028 goto resolv_out;
1029 }
1030
1031 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
1032 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
1033 file, linenum);
1034 err_code |= ERR_ALERT | ERR_FATAL;
1035 goto resolv_out;
1036 }
1037
1038 sk = calloc(1, sizeof(*sk));
1039 if (sk == NULL) {
1040 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
1041 resolv_linenum);
1042 err_code |= ERR_ALERT | ERR_FATAL;
1043 goto resolv_out;
1044 }
1045
1046 while (fgets(resolv_line, LINESIZE, f) != NULL) {
1047 resolv_linenum++;
1048 if (strncmp(resolv_line, "nameserver", 10) != 0)
1049 continue;
1050
1051 address = strtok(resolv_line + 10, whitespace);
1052 if (address == resolv_line + 10)
1053 continue;
1054
1055 if (address == NULL) {
1056 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
1057 resolv_linenum);
1058 err_code |= ERR_WARN;
1059 continue;
1060 }
1061
1062 duplicate_name = 0;
1063 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
1064 if (strcmp(newnameserver->id, address) == 0) {
1065 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",
1066 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
1067 err_code |= ERR_WARN;
1068 duplicate_name = 1;
1069 }
1070 }
1071
1072 if (duplicate_name)
1073 continue;
1074
1075 memset(sk, 0, sizeof(*sk));
1076 sk = str2ip2(address, sk, 1);
1077 if (!sk) {
1078 ha_warning("parsing [/etc/resolv.conf:%d] : address '%s' could not be recognized, namerserver will be excluded.\n",
1079 resolv_linenum, address);
1080 err_code |= ERR_WARN;
1081 continue;
1082 }
1083
1084 set_host_port(sk, 53);
1085
1086 proto = protocol_by_family(sk->ss_family);
1087 if (!proto || !proto->connect) {
1088 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
1089 resolv_linenum, address);
1090 err_code |= ERR_WARN;
1091 continue;
1092 }
1093
1094 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
1095 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1096 err_code |= ERR_ALERT | ERR_FATAL;
1097 goto resolv_out;
1098 }
1099
1100 newnameserver->conf.file = strdup("/etc/resolv.conf");
1101 if (newnameserver->conf.file == NULL) {
1102 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1103 err_code |= ERR_ALERT | ERR_FATAL;
1104 goto resolv_out;
1105 }
1106
1107 newnameserver->id = strdup(address);
1108 if (newnameserver->id == NULL) {
1109 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1110 err_code |= ERR_ALERT | ERR_FATAL;
1111 goto resolv_out;
1112 }
1113
1114 newnameserver->resolvers = curr_resolvers;
1115 newnameserver->conf.line = resolv_linenum;
1116 newnameserver->addr = *sk;
1117
1118 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
1119 }
1120
1121resolv_out:
1122 free(sk);
1123 free(resolv_line);
1124 if (f != NULL)
1125 fclose(f);
1126 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001127 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
1128 const char *res;
1129 unsigned int time;
1130
1131 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001132 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
1133 file, linenum, args[0]);
1134 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
Baptiste Assmann325137d2015-04-13 23:40:55 +02001135 err_code |= ERR_ALERT | ERR_FATAL;
1136 goto out;
1137 }
1138 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
1139 if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001140 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1141 file, linenum, *res, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001142 err_code |= ERR_ALERT | ERR_FATAL;
1143 goto out;
1144 }
Baptiste Assmann987e16d2016-11-02 22:23:31 +01001145 if (strcmp(args[1], "nx") == 0)
1146 curr_resolvers->hold.nx = time;
1147 else if (strcmp(args[1], "other") == 0)
1148 curr_resolvers->hold.other = time;
1149 else if (strcmp(args[1], "refused") == 0)
1150 curr_resolvers->hold.refused = time;
1151 else if (strcmp(args[1], "timeout") == 0)
1152 curr_resolvers->hold.timeout = time;
1153 else if (strcmp(args[1], "valid") == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001154 curr_resolvers->hold.valid = time;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001155 else if (strcmp(args[1], "obsolete") == 0)
1156 curr_resolvers->hold.obsolete = time;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001157 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001158 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
1159 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001160 err_code |= ERR_ALERT | ERR_FATAL;
1161 goto out;
1162 }
1163
1164 }
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001165 else if (strcmp(args[0], "accepted_payload_size") == 0) {
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001166 int i = 0;
1167
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001168 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001169 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1170 file, linenum, args[0]);
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001171 err_code |= ERR_ALERT | ERR_FATAL;
1172 goto out;
1173 }
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001174
1175 i = atoi(args[1]);
Willy Tarreau0c219be2017-08-22 12:01:26 +02001176 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001177 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
1178 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001179 err_code |= ERR_ALERT | ERR_FATAL;
1180 goto out;
1181 }
1182
1183 curr_resolvers->accepted_payload_size = i;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001184 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001185 else if (strcmp(args[0], "resolution_pool_size") == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001186 ha_warning("parsing [%s:%d] : '%s' directive is now deprecated and ignored.\n",
1187 file, linenum, args[0]);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001188 err_code |= ERR_WARN;
1189 goto out;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001190 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001191 else if (strcmp(args[0], "resolve_retries") == 0) {
1192 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001193 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1194 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001195 err_code |= ERR_ALERT | ERR_FATAL;
1196 goto out;
1197 }
1198 curr_resolvers->resolve_retries = atoi(args[1]);
1199 }
1200 else if (strcmp(args[0], "timeout") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001201 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001202 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
1203 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001204 err_code |= ERR_ALERT | ERR_FATAL;
1205 goto out;
1206 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001207 else if (strcmp(args[1], "retry") == 0 ||
1208 strcmp(args[1], "resolve") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001209 const char *res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001210 unsigned int tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001211
1212 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001213 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1214 file, linenum, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001215 err_code |= ERR_ALERT | ERR_FATAL;
1216 goto out;
1217 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001218 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001219 if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001220 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1221 file, linenum, *res, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001222 err_code |= ERR_ALERT | ERR_FATAL;
1223 goto out;
1224 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001225 if (args[1][2] == 't')
1226 curr_resolvers->timeout.retry = tout;
1227 else
1228 curr_resolvers->timeout.resolve = tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001229 }
1230 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001231 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
1232 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001233 err_code |= ERR_ALERT | ERR_FATAL;
1234 goto out;
1235 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001236 } /* neither "nameserver" nor "resolvers" */
1237 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001238 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001239 err_code |= ERR_ALERT | ERR_FATAL;
1240 goto out;
1241 }
1242
1243 out:
1244 free(errmsg);
1245 return err_code;
1246}
Simon Horman0d16a402015-01-30 11:22:58 +09001247
1248/*
William Lallemand51097192015-04-14 16:35:22 +02001249 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001250 * Returns the error code, 0 if OK, or any combination of :
1251 * - ERR_ABORT: must abort ASAP
1252 * - ERR_FATAL: we can continue parsing but not start the service
1253 * - ERR_WARN: a warning has been emitted
1254 * - ERR_ALERT: an alert has been emitted
1255 * Only the two first ones can stop processing, the two others are just
1256 * indicators.
1257 */
1258int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1259{
1260 static struct mailers *curmailers = NULL;
1261 struct mailer *newmailer = NULL;
1262 const char *err;
1263 int err_code = 0;
1264 char *errmsg = NULL;
1265
1266 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1267 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001268 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001269 err_code |= ERR_ALERT | ERR_ABORT;
1270 goto out;
1271 }
1272
1273 err = invalid_char(args[1]);
1274 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001275 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1276 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001277 err_code |= ERR_ALERT | ERR_ABORT;
1278 goto out;
1279 }
1280
1281 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1282 /*
1283 * If there are two proxies with the same name only following
1284 * combinations are allowed:
1285 */
1286 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001287 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1288 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001289 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001290 }
1291 }
1292
Vincent Bernat02779b62016-04-03 13:48:43 +02001293 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001294 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001295 err_code |= ERR_ALERT | ERR_ABORT;
1296 goto out;
1297 }
1298
1299 curmailers->next = mailers;
1300 mailers = curmailers;
1301 curmailers->conf.file = strdup(file);
1302 curmailers->conf.line = linenum;
1303 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001304 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1305 * But need enough time so that timeouts don't occur
1306 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001307 }
1308 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1309 struct sockaddr_storage *sk;
1310 int port1, port2;
1311 struct protocol *proto;
1312
1313 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001314 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1315 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001316 err_code |= ERR_ALERT | ERR_FATAL;
1317 goto out;
1318 }
1319
1320 err = invalid_char(args[1]);
1321 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001322 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1323 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001324 err_code |= ERR_ALERT | ERR_FATAL;
1325 goto out;
1326 }
1327
Vincent Bernat02779b62016-04-03 13:48:43 +02001328 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001329 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001330 err_code |= ERR_ALERT | ERR_ABORT;
1331 goto out;
1332 }
1333
1334 /* the mailers are linked backwards first */
1335 curmailers->count++;
1336 newmailer->next = curmailers->mailer_list;
1337 curmailers->mailer_list = newmailer;
1338 newmailer->mailers = curmailers;
1339 newmailer->conf.file = strdup(file);
1340 newmailer->conf.line = linenum;
1341
1342 newmailer->id = strdup(args[1]);
1343
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001344 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Simon Horman0d16a402015-01-30 11:22:58 +09001345 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001346 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001347 err_code |= ERR_ALERT | ERR_FATAL;
1348 goto out;
1349 }
1350
1351 proto = protocol_by_family(sk->ss_family);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09001352 if (!proto || !proto->connect || proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001353 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1354 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001355 err_code |= ERR_ALERT | ERR_FATAL;
1356 goto out;
1357 }
1358
1359 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001360 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1361 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001362 err_code |= ERR_ALERT | ERR_FATAL;
1363 goto out;
1364 }
1365
1366 if (!port1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001367 ha_alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n",
1368 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001369 err_code |= ERR_ALERT | ERR_FATAL;
1370 goto out;
1371 }
1372
1373 newmailer->addr = *sk;
1374 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001375 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001376 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001377 }
1378 else if (strcmp(args[0], "timeout") == 0) {
1379 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001380 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1381 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001382 err_code |= ERR_ALERT | ERR_FATAL;
1383 goto out;
1384 }
1385 else if (strcmp(args[1], "mail") == 0) {
1386 const char *res;
1387 unsigned int timeout_mail;
1388 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001389 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1390 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001391 err_code |= ERR_ALERT | ERR_FATAL;
1392 goto out;
1393 }
1394 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
1395 if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001396 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1397 file, linenum, *res, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001398 err_code |= ERR_ALERT | ERR_FATAL;
1399 goto out;
1400 }
1401 if (timeout_mail <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001402 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 +01001403 err_code |= ERR_ALERT | ERR_FATAL;
1404 goto out;
1405 }
1406 curmailers->timeout.mail = timeout_mail;
1407 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001408 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001409 file, linenum, args[0], args[1]);
1410 err_code |= ERR_ALERT | ERR_FATAL;
1411 goto out;
1412 }
1413 }
Simon Horman0d16a402015-01-30 11:22:58 +09001414 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001415 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001416 err_code |= ERR_ALERT | ERR_FATAL;
1417 goto out;
1418 }
1419
1420out:
1421 free(errmsg);
1422 return err_code;
1423}
1424
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001425void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001426{
1427 free(p->email_alert.mailers.name);
1428 p->email_alert.mailers.name = NULL;
1429 free(p->email_alert.from);
1430 p->email_alert.from = NULL;
1431 free(p->email_alert.to);
1432 p->email_alert.to = NULL;
1433 free(p->email_alert.myhostname);
1434 p->email_alert.myhostname = NULL;
1435}
1436
Willy Tarreaubaaee002006-06-26 02:48:02 +02001437
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001438int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001439cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1440{
1441#ifdef CONFIG_HAP_NS
1442 const char *err;
1443 const char *item = args[0];
1444
1445 if (!strcmp(item, "namespace_list")) {
1446 return 0;
1447 }
1448 else if (!strcmp(item, "namespace")) {
1449 size_t idx = 1;
1450 const char *current;
1451 while (*(current = args[idx++])) {
1452 err = invalid_char(current);
1453 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001454 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1455 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001456 return ERR_ALERT | ERR_FATAL;
1457 }
1458
1459 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001460 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1461 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001462 return ERR_ALERT | ERR_FATAL;
1463 }
1464 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001465 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1466 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001467 return ERR_ALERT | ERR_FATAL;
1468 }
1469 }
1470 }
1471
1472 return 0;
1473#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001474 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1475 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001476 return ERR_ALERT | ERR_FATAL;
1477#endif
1478}
1479
1480int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001481cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1482{
1483
1484 int err_code = 0;
1485 const char *err;
1486
1487 if (!strcmp(args[0], "userlist")) { /* new userlist */
1488 struct userlist *newul;
1489
1490 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001491 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1492 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001493 err_code |= ERR_ALERT | ERR_FATAL;
1494 goto out;
1495 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001496 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1497 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001498
1499 err = invalid_char(args[1]);
1500 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001501 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1502 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001503 err_code |= ERR_ALERT | ERR_FATAL;
1504 goto out;
1505 }
1506
1507 for (newul = userlist; newul; newul = newul->next)
1508 if (!strcmp(newul->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001509 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1510 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001511 err_code |= ERR_WARN;
1512 goto out;
1513 }
1514
Vincent Bernat02779b62016-04-03 13:48:43 +02001515 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001516 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001517 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001518 err_code |= ERR_ALERT | ERR_ABORT;
1519 goto out;
1520 }
1521
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001522 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001523 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001524 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001525 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001526 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001527 goto out;
1528 }
1529
1530 newul->next = userlist;
1531 userlist = newul;
1532
1533 } else if (!strcmp(args[0], "group")) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001534 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001535 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001536 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001537
1538 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001539 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1540 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001541 err_code |= ERR_ALERT | ERR_FATAL;
1542 goto out;
1543 }
1544
1545 err = invalid_char(args[1]);
1546 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001547 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1548 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001549 err_code |= ERR_ALERT | ERR_FATAL;
1550 goto out;
1551 }
1552
William Lallemand4ac9f542015-05-28 18:03:51 +02001553 if (!userlist)
1554 goto out;
1555
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001556 for (ag = userlist->groups; ag; ag = ag->next)
1557 if (!strcmp(ag->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001558 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1559 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001560 err_code |= ERR_ALERT;
1561 goto out;
1562 }
1563
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001564 ag = calloc(1, sizeof(*ag));
1565 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001566 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001567 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001568 goto out;
1569 }
1570
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001571 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001572 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001573 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001574 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001575 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001576 goto out;
1577 }
1578
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001579 cur_arg = 2;
1580
1581 while (*args[cur_arg]) {
1582 if (!strcmp(args[cur_arg], "users")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001583 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001584 cur_arg += 2;
1585 continue;
1586 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001587 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1588 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001589 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001590 free(ag->groupusers);
1591 free(ag->name);
1592 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001593 goto out;
1594 }
1595 }
1596
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001597 ag->next = userlist->groups;
1598 userlist->groups = ag;
1599
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001600 } else if (!strcmp(args[0], "user")) { /* new user */
1601 struct auth_users *newuser;
1602 int cur_arg;
1603
1604 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001605 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1606 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001607 err_code |= ERR_ALERT | ERR_FATAL;
1608 goto out;
1609 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001610 if (!userlist)
1611 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001612
1613 for (newuser = userlist->users; newuser; newuser = newuser->next)
1614 if (!strcmp(newuser->user, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001615 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1616 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001617 err_code |= ERR_ALERT;
1618 goto out;
1619 }
1620
Vincent Bernat02779b62016-04-03 13:48:43 +02001621 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001622 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001623 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001624 err_code |= ERR_ALERT | ERR_ABORT;
1625 goto out;
1626 }
1627
1628 newuser->user = strdup(args[1]);
1629
1630 newuser->next = userlist->users;
1631 userlist->users = newuser;
1632
1633 cur_arg = 2;
1634
1635 while (*args[cur_arg]) {
1636 if (!strcmp(args[cur_arg], "password")) {
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001637#ifdef CONFIG_HAP_CRYPT
1638 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001639 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1640 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001641 err_code |= ERR_ALERT | ERR_FATAL;
1642 goto out;
1643 }
1644#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001645 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1646 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001647 err_code |= ERR_ALERT;
1648#endif
1649 newuser->pass = strdup(args[cur_arg + 1]);
1650 cur_arg += 2;
1651 continue;
1652 } else if (!strcmp(args[cur_arg], "insecure-password")) {
1653 newuser->pass = strdup(args[cur_arg + 1]);
1654 newuser->flags |= AU_O_INSECURE;
1655 cur_arg += 2;
1656 continue;
1657 } else if (!strcmp(args[cur_arg], "groups")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001658 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001659 cur_arg += 2;
1660 continue;
1661 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001662 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1663 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001664 err_code |= ERR_ALERT | ERR_FATAL;
1665 goto out;
1666 }
1667 }
1668 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001669 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 +01001670 err_code |= ERR_ALERT | ERR_FATAL;
1671 }
1672
1673out:
1674 return err_code;
1675}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001676
Christopher Faulet79bdef32016-11-04 22:36:15 +01001677int
1678cfg_parse_scope(const char *file, int linenum, char *line)
1679{
1680 char *beg, *end, *scope = NULL;
1681 int err_code = 0;
1682 const char *err;
1683
1684 beg = line + 1;
1685 end = strchr(beg, ']');
1686
1687 /* Detect end of scope declaration */
1688 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001689 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1690 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001691 err_code |= ERR_ALERT | ERR_FATAL;
1692 goto out;
1693 }
1694
1695 /* Get scope name and check its validity */
1696 scope = my_strndup(beg, end-beg);
1697 err = invalid_char(scope);
1698 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001699 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1700 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001701 err_code |= ERR_ALERT | ERR_ABORT;
1702 goto out;
1703 }
1704
1705 /* Be sure to have a scope declaration alone on its line */
1706 line = end+1;
1707 while (isspace((unsigned char)*line))
1708 line++;
1709 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001710 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1711 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001712 err_code |= ERR_ALERT | ERR_ABORT;
1713 goto out;
1714 }
1715
1716 /* We have a valid scope declaration, save it */
1717 free(cfg_scope);
1718 cfg_scope = scope;
1719 scope = NULL;
1720
1721 out:
1722 free(scope);
1723 return err_code;
1724}
1725
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001726int
1727cfg_parse_track_sc_num(unsigned int *track_sc_num,
1728 const char *arg, const char *end, char **errmsg)
1729{
1730 const char *p;
1731 unsigned int num;
1732
1733 p = arg;
1734 num = read_uint64(&arg, end);
1735
1736 if (arg != end) {
1737 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1738 return -1;
1739 }
1740
1741 if (num >= MAX_SESS_STKCTR) {
1742 memprintf(errmsg, "%u track-sc number exceeding "
1743 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1744 return -1;
1745 }
1746
1747 *track_sc_num = num;
1748 return 0;
1749}
1750
Willy Tarreaubaaee002006-06-26 02:48:02 +02001751/*
1752 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001753 * Returns the error code, 0 if OK, or any combination of :
1754 * - ERR_ABORT: must abort ASAP
1755 * - ERR_FATAL: we can continue parsing but not start the service
1756 * - ERR_WARN: a warning has been emitted
1757 * - ERR_ALERT: an alert has been emitted
1758 * Only the two first ones can stop processing, the two others are just
1759 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001760 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001761int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001762{
William Lallemand64e84512015-05-12 14:25:37 +02001763 char *thisline;
1764 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001765 FILE *f;
1766 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001767 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001768 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001769 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001770 int readbytes = 0;
1771
1772 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001773 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001774 return -1;
1775 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001776
David Carlier97880bb2016-04-08 10:35:26 +01001777 if ((f=fopen(file,"r")) == NULL) {
1778 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001779 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001780 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001781
William Lallemandb2f07452015-05-12 14:27:13 +02001782next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001783 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001784 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001785 char *end;
1786 char *args[MAX_LINE_ARGS + 1];
1787 char *line = thisline;
William Lallemandf9873ba2015-05-05 17:37:14 +02001788 int dquote = 0; /* double quote */
1789 int squote = 0; /* simple quote */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001790
Willy Tarreaubaaee002006-06-26 02:48:02 +02001791 linenum++;
1792
1793 end = line + strlen(line);
1794
William Lallemand64e84512015-05-12 14:25:37 +02001795 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001796 /* Check if we reached the limit and the last char is not \n.
1797 * Watch out for the last line without the terminating '\n'!
1798 */
William Lallemand64e84512015-05-12 14:25:37 +02001799 char *newline;
1800 int newlinesize = linesize * 2;
1801
1802 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1803 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001804 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1805 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001806 err_code |= ERR_ALERT | ERR_FATAL;
1807 continue;
1808 }
1809
1810 readbytes = linesize - 1;
1811 linesize = newlinesize;
1812 thisline = newline;
1813 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001814 }
1815
William Lallemand64e84512015-05-12 14:25:37 +02001816 readbytes = 0;
1817
Willy Tarreaubaaee002006-06-26 02:48:02 +02001818 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001819 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001820 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001821
Christopher Faulet79bdef32016-11-04 22:36:15 +01001822
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001823 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001824 err_code |= cfg_parse_scope(file, linenum, line);
1825 goto next_line;
1826 }
1827
Willy Tarreaubaaee002006-06-26 02:48:02 +02001828 arg = 0;
1829 args[arg] = line;
1830
1831 while (*line && arg < MAX_LINE_ARGS) {
William Lallemandf9873ba2015-05-05 17:37:14 +02001832 if (*line == '"' && !squote) { /* double quote outside single quotes */
1833 if (dquote)
1834 dquote = 0;
1835 else
1836 dquote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001837 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001838 end--;
1839 }
1840 else if (*line == '\'' && !dquote) { /* single quote outside double quotes */
1841 if (squote)
1842 squote = 0;
1843 else
1844 squote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001845 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001846 end--;
1847 }
1848 else if (*line == '\\' && !squote) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001849 /* first, we'll replace \\, \<space>, \#, \r, \n, \t, \xXX with their
1850 * C equivalent value. Other combinations left unchanged (eg: \1).
1851 */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001852 int skip = 0;
1853 if (line[1] == ' ' || line[1] == '\\' || line[1] == '#') {
1854 *line = line[1];
1855 skip = 1;
1856 }
1857 else if (line[1] == 'r') {
1858 *line = '\r';
1859 skip = 1;
William Lallemandf9873ba2015-05-05 17:37:14 +02001860 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001861 else if (line[1] == 'n') {
1862 *line = '\n';
1863 skip = 1;
1864 }
1865 else if (line[1] == 't') {
1866 *line = '\t';
1867 skip = 1;
1868 }
1869 else if (line[1] == 'x') {
Emeric Brunb982a3d2010-01-04 15:45:53 +01001870 if ((line + 3 < end) && ishex(line[2]) && ishex(line[3])) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001871 unsigned char hex1, hex2;
1872 hex1 = toupper(line[2]) - '0';
1873 hex2 = toupper(line[3]) - '0';
1874 if (hex1 > 9) hex1 -= 'A' - '9' - 1;
1875 if (hex2 > 9) hex2 -= 'A' - '9' - 1;
1876 *line = (hex1<<4) + hex2;
1877 skip = 3;
1878 }
1879 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001880 ha_alert("parsing [%s:%d] : invalid or incomplete '\\x' sequence in '%s'.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02001881 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001882 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001883 } else if (line[1] == '"') {
1884 *line = '"';
1885 skip = 1;
1886 } else if (line[1] == '\'') {
1887 *line = '\'';
1888 skip = 1;
William Lallemandb2f07452015-05-12 14:27:13 +02001889 } else if (line[1] == '$' && dquote) { /* escaping of $ only inside double quotes */
1890 *line = '$';
1891 skip = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001892 }
1893 if (skip) {
Cyril Bontédd1b01d2009-12-06 13:43:42 +01001894 memmove(line + 1, line + 1 + skip, end - (line + skip));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001895 end -= skip;
1896 }
1897 line++;
1898 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001899 else if ((!squote && !dquote && *line == '#') || *line == '\n' || *line == '\r') {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001900 /* end of string, end of loop */
1901 *line = 0;
1902 break;
1903 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001904 else if (!squote && !dquote && isspace((unsigned char)*line)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001905 /* a non-escaped space is an argument separator */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001906 *line++ = '\0';
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001907 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001908 line++;
1909 args[++arg] = line;
1910 }
William Lallemandb2f07452015-05-12 14:27:13 +02001911 else if (dquote && *line == '$') {
1912 /* environment variables are evaluated inside double quotes */
1913 char *var_beg;
1914 char *var_end;
1915 char save_char;
1916 char *value;
1917 int val_len;
1918 int newlinesize;
1919 int braces = 0;
1920
1921 var_beg = line + 1;
1922 var_end = var_beg;
1923
1924 if (*var_beg == '{') {
1925 var_beg++;
1926 var_end++;
1927 braces = 1;
1928 }
1929
1930 if (!isalpha((int)(unsigned char)*var_beg) && *var_beg != '_') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001931 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 +02001932 err_code |= ERR_ALERT | ERR_FATAL;
1933 goto next_line; /* skip current line */
1934 }
1935
1936 while (isalnum((int)(unsigned char)*var_end) || *var_end == '_')
1937 var_end++;
1938
1939 save_char = *var_end;
1940 *var_end = '\0';
1941 value = getenv(var_beg);
1942 *var_end = save_char;
1943 val_len = value ? strlen(value) : 0;
1944
1945 if (braces) {
1946 if (*var_end == '}') {
1947 var_end++;
1948 braces = 0;
1949 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001950 ha_alert("parsing [%s:%d] : Variable expansion: Mismatched braces.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001951 err_code |= ERR_ALERT | ERR_FATAL;
1952 goto next_line; /* skip current line */
1953 }
1954 }
1955
1956 newlinesize = (end - thisline) - (var_end - line) + val_len + 1;
1957
1958 /* if not enough space in thisline */
1959 if (newlinesize > linesize) {
1960 char *newline;
1961
1962 newline = realloc(thisline, newlinesize * sizeof(*thisline));
1963 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001964 ha_alert("parsing [%s:%d] : Variable expansion: Not enough memory.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001965 err_code |= ERR_ALERT | ERR_FATAL;
1966 goto next_line; /* slip current line */
1967 }
1968 /* recompute pointers if realloc returns a new pointer */
1969 if (newline != thisline) {
1970 int i;
1971 int diff;
1972
1973 for (i = 0; i <= arg; i++) {
1974 diff = args[i] - thisline;
1975 args[i] = newline + diff;
1976 }
1977
1978 diff = var_end - thisline;
1979 var_end = newline + diff;
1980 diff = end - thisline;
1981 end = newline + diff;
1982 diff = line - thisline;
1983 line = newline + diff;
1984 thisline = newline;
1985 }
1986 linesize = newlinesize;
1987 }
1988
1989 /* insert value inside the line */
1990 memmove(line + val_len, var_end, end - var_end + 1);
1991 memcpy(line, value, val_len);
1992 end += val_len - (var_end - line);
1993 line += val_len;
1994 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001995 else {
1996 line++;
1997 }
1998 }
William Lallemandb2f07452015-05-12 14:27:13 +02001999
William Lallemandf9873ba2015-05-05 17:37:14 +02002000 if (dquote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002001 ha_alert("parsing [%s:%d] : Mismatched double quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002002 err_code |= ERR_ALERT | ERR_FATAL;
2003 }
2004
2005 if (squote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002006 ha_alert("parsing [%s:%d] : Mismatched simple quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002007 err_code |= ERR_ALERT | ERR_FATAL;
2008 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002009
2010 /* empty line */
2011 if (!**args)
2012 continue;
2013
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002014 if (*line) {
2015 /* we had to stop due to too many args.
2016 * Let's terminate the string, print the offending part then cut the
2017 * last arg.
2018 */
2019 while (*line && *line != '#' && *line != '\n' && *line != '\r')
2020 line++;
2021 *line = '\0';
2022
Christopher Faulet767a84b2017-11-24 16:50:31 +01002023 ha_alert("parsing [%s:%d]: line too long, truncating at word %d, position %ld: <%s>.\n",
2024 file, linenum, arg + 1, (long)(args[arg] - thisline + 1), args[arg]);
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002025 err_code |= ERR_ALERT | ERR_FATAL;
2026 args[arg] = line;
2027 }
2028
Willy Tarreau540abe42007-05-02 20:50:16 +02002029 /* zero out remaining args and ensure that at least one entry
2030 * is zeroed out.
2031 */
2032 while (++arg <= MAX_LINE_ARGS) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002033 args[arg] = line;
2034 }
2035
Willy Tarreau3842f002009-06-14 11:39:52 +02002036 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002037 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02002038 char *tmp;
2039
Willy Tarreau3842f002009-06-14 11:39:52 +02002040 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002041 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002042 for (arg=0; *args[arg+1]; arg++)
2043 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002044 *tmp = '\0'; // fix the next arg to \0
2045 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002046 }
Willy Tarreau3842f002009-06-14 11:39:52 +02002047 else if (!strcmp(args[0], "default")) {
2048 kwm = KWM_DEF;
2049 for (arg=0; *args[arg+1]; arg++)
2050 args[arg] = args[arg+1]; // shift args after inversion
2051 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002052
William Lallemand0f99e342011-10-12 17:50:54 +02002053 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 && \
Willy Tarreaubeb859a2018-11-22 18:07:59 +01002054 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling")) {
2055 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 +02002056 err_code |= ERR_ALERT | ERR_FATAL;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002057 }
2058
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002059 /* detect section start */
2060 list_for_each_entry(ics, &sections, list) {
2061 if (strcmp(args[0], ics->section_name) == 0) {
2062 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002063 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002064 cs = ics;
2065 break;
2066 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002067 }
2068
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002069 if (pcs && pcs->post_section_parser) {
2070 err_code |= pcs->post_section_parser();
2071 if (err_code & ERR_ABORT)
2072 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002073 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002074 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002075
William Lallemandd2ff56d2017-10-16 11:06:50 +02002076 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002077 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002078 err_code |= ERR_ALERT | ERR_FATAL;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002079 } else {
William Lallemandd2ff56d2017-10-16 11:06:50 +02002080 err_code |= cs->section_parser(file, linenum, args, kwm);
2081 if (err_code & ERR_ABORT)
2082 goto err;
2083 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002084 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002085
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002086 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002087 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002088
2089err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002090 free(cfg_scope);
2091 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002092 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002093 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002094 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002095 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002096}
2097
Willy Tarreau64ab6072014-09-16 12:17:36 +02002098/* This function propagates processes from frontend <from> to backend <to> so
2099 * that it is always guaranteed that a backend pointed to by a frontend is
2100 * bound to all of its processes. After that, if the target is a "listen"
2101 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002102 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002103 * checked first to ensure that <to> is already bound to all processes of
2104 * <from>, there is no risk of looping and we ensure to follow the shortest
2105 * path to the destination.
2106 *
2107 * It is possible to set <to> to NULL for the first call so that the function
2108 * takes care of visiting the initial frontend in <from>.
2109 *
2110 * It is important to note that the function relies on the fact that all names
2111 * have already been resolved.
2112 */
2113void propagate_processes(struct proxy *from, struct proxy *to)
2114{
2115 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002116
2117 if (to) {
2118 /* check whether we need to go down */
2119 if (from->bind_proc &&
2120 (from->bind_proc & to->bind_proc) == from->bind_proc)
2121 return;
2122
2123 if (!from->bind_proc && !to->bind_proc)
2124 return;
2125
2126 to->bind_proc = from->bind_proc ?
2127 (to->bind_proc | from->bind_proc) : 0;
2128
2129 /* now propagate down */
2130 from = to;
2131 }
2132
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002133 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002134 return;
2135
Willy Tarreauf6b70012014-12-18 14:00:43 +01002136 if (from->state == PR_STSTOPPED)
2137 return;
2138
Willy Tarreau64ab6072014-09-16 12:17:36 +02002139 /* default_backend */
2140 if (from->defbe.be)
2141 propagate_processes(from, from->defbe.be);
2142
2143 /* use_backend */
2144 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002145 if (rule->dynamic)
2146 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002147 to = rule->be.backend;
2148 propagate_processes(from, to);
2149 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002150}
2151
Willy Tarreaubb925012009-07-23 13:36:36 +02002152/*
2153 * Returns the error code, 0 if OK, or any combination of :
2154 * - ERR_ABORT: must abort ASAP
2155 * - ERR_FATAL: we can continue parsing but not start the service
2156 * - ERR_WARN: a warning has been emitted
2157 * - ERR_ALERT: an alert has been emitted
2158 * Only the two first ones can stop processing, the two others are just
2159 * indicators.
2160 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002161int check_config_validity()
2162{
2163 int cfgerr = 0;
2164 struct proxy *curproxy = NULL;
2165 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002166 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002167 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002168 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002169 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002170 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002171 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002172
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002173 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002174 /*
2175 * Now, check for the integrity of all that we have collected.
2176 */
2177
2178 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002179 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002180
Willy Tarreau193b8c62012-11-22 00:17:38 +01002181 if (!global.tune.max_http_hdr)
2182 global.tune.max_http_hdr = MAX_HTTP_HDR;
2183
2184 if (!global.tune.cookie_len)
2185 global.tune.cookie_len = CAPTURE_LEN;
2186
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002187 if (!global.tune.requri_len)
2188 global.tune.requri_len = REQURI_LEN;
2189
Willy Tarreaubafbe012017-11-24 17:34:44 +01002190 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002191
Willy Tarreaubafbe012017-11-24 17:34:44 +01002192 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002193
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002194 /* Post initialisation of the users and groups lists. */
2195 err_code = userlist_postinit();
2196 if (err_code != ERR_NONE)
2197 goto out;
2198
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002199 /* first, we will invert the proxy list order */
2200 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002201 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002202 struct proxy *next;
2203
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002204 next = proxies_list->next;
2205 proxies_list->next = curproxy;
2206 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002207 if (!next)
2208 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002209 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002210 }
2211
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002212 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002213 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002214 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002215 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002216 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002217 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002218 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002219 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002220
Willy Tarreau050536d2012-10-04 08:47:34 +02002221 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002222 /* proxy ID not set, use automatic numbering with first
2223 * spare entry starting with next_pxid.
2224 */
2225 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2226 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2227 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002228 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002229 next_pxid++;
2230
Willy Tarreau55ea7572007-06-17 19:56:27 +02002231
Willy Tarreaubaaee002006-06-26 02:48:02 +02002232 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002233 /* ensure we don't keep listeners uselessly bound */
2234 stop_proxy(curproxy);
Willy Tarreau02df7742015-05-01 19:59:56 +02002235 free((void *)curproxy->table.peers.name);
2236 curproxy->table.peers.p = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002237 continue;
2238 }
2239
Willy Tarreau102df612014-05-07 23:56:38 +02002240 /* Check multi-process mode compatibility for the current proxy */
2241
2242 if (curproxy->bind_proc) {
2243 /* an explicit bind-process was specified, let's check how many
2244 * processes remain.
2245 */
David Carliere6c39412015-07-02 07:00:17 +00002246 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002247
2248 curproxy->bind_proc &= nbits(global.nbproc);
2249 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002250 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 +02002251 curproxy->bind_proc = 1;
2252 }
2253 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002254 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 +02002255 curproxy->bind_proc = 0;
2256 }
2257 }
2258
Willy Tarreau3d209582014-05-09 17:06:11 +02002259 /* check and reduce the bind-proc of each listener */
2260 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2261 unsigned long mask;
2262
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002263 /* HTTP frontends with "h2" as ALPN/NPN will work in
2264 * HTTP/2 and absolutely require buffers 16kB or larger.
2265 */
2266#ifdef USE_OPENSSL
2267 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2268#ifdef OPENSSL_NPN_NEGOTIATED
2269 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002270 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002271 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",
2272 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002273 cfgerr++;
2274 }
2275#endif
2276#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2277 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002278 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002279 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",
2280 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002281 cfgerr++;
2282 }
2283#endif
2284 } /* HTTP && bufsize < 16384 */
2285#endif
2286
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002287 /* detect and address thread affinity inconsistencies */
2288 nbproc = 0;
2289 if (bind_conf->bind_proc)
2290 nbproc = my_ffsl(bind_conf->bind_proc);
2291
2292 mask = bind_conf->bind_thread[nbproc - 1];
Willy Tarreau0c026f42018-08-01 19:12:20 +02002293 if (mask && !(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002294 unsigned long new_mask = 0;
2295
2296 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002297 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002298 mask >>= global.nbthread;
2299 }
2300
2301 for (nbproc = 0; nbproc < LONGBITS; nbproc++) {
2302 if (!bind_conf->bind_proc || (bind_conf->bind_proc & (1UL << nbproc)))
2303 bind_conf->bind_thread[nbproc] = new_mask;
2304 }
2305 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",
2306 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2307 }
2308
2309 /* detect process and nbproc affinity inconsistencies */
Willy Tarreau3d209582014-05-09 17:06:11 +02002310 if (!bind_conf->bind_proc)
2311 continue;
2312
2313 mask = nbits(global.nbproc);
2314 if (curproxy->bind_proc)
2315 mask &= curproxy->bind_proc;
2316 /* mask cannot be null here thanks to the previous checks */
2317
David Carliere6c39412015-07-02 07:00:17 +00002318 nbproc = my_popcountl(bind_conf->bind_proc);
Willy Tarreau3d209582014-05-09 17:06:11 +02002319 bind_conf->bind_proc &= mask;
2320
2321 if (!bind_conf->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002322 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",
2323 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau3d209582014-05-09 17:06:11 +02002324 bind_conf->bind_proc = mask & ~(mask - 1);
2325 }
2326 else if (!bind_conf->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002327 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",
2328 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau3d209582014-05-09 17:06:11 +02002329 bind_conf->bind_proc = 0;
2330 }
2331 }
2332
Willy Tarreauff01a212009-03-15 13:46:16 +01002333 switch (curproxy->mode) {
2334 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002335 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002336 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002337 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2338 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002339 cfgerr++;
2340 }
2341
2342 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002343 ha_warning("config : servers will be ignored for %s '%s'.\n",
2344 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002345 break;
2346
2347 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002348 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002349 break;
2350
2351 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002352 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002353 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002354
2355 case PR_MODE_CLI:
2356 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2357 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002358 }
2359
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002360 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002361 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2362 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002363 err_code |= ERR_WARN;
2364 }
2365
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002366 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002367 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002368 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002369 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2370 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002371 cfgerr++;
2372 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002373#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002374 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002375 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2376 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002377 cfgerr++;
2378 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002379#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002380 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002381 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2382 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002383 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002384 }
2385 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002386 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002387 /* If no LB algo is set in a backend, and we're not in
2388 * transparent mode, dispatch mode nor proxy mode, we
2389 * want to use balance roundrobin by default.
2390 */
2391 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2392 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002393 }
2394 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002395
Willy Tarreau1620ec32011-08-06 17:05:02 +02002396 if (curproxy->options & PR_O_DISPATCH)
2397 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2398 else if (curproxy->options & PR_O_HTTP_PROXY)
2399 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2400 else if (curproxy->options & PR_O_TRANSP)
2401 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002402
Willy Tarreau1620ec32011-08-06 17:05:02 +02002403 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_HTTP_CHK) {
2404 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002405 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2406 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002407 err_code |= ERR_WARN;
2408 curproxy->options &= ~PR_O_DISABLE404;
2409 }
2410 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002411 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2412 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002413 err_code |= ERR_WARN;
2414 curproxy->options &= ~PR_O2_CHK_SNDST;
2415 }
Willy Tarreauef781042010-01-27 11:53:01 +01002416 }
2417
Simon Horman98637e52014-06-20 12:30:16 +09002418 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2419 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002420 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2421 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002422 cfgerr++;
2423 }
2424 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002425 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2426 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002427 cfgerr++;
2428 }
2429 }
2430
Simon Horman64e34162015-02-06 11:11:57 +09002431 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002432 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002433 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2434 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2435 "'email-alert myhostname', or 'email-alert to' "
2436 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2437 "to be present).\n",
2438 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002439 err_code |= ERR_WARN;
2440 free_email_alert(curproxy);
2441 }
2442 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002443 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002444 }
2445
Simon Horman98637e52014-06-20 12:30:16 +09002446 if (curproxy->check_command) {
2447 int clear = 0;
2448 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002449 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2450 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002451 err_code |= ERR_WARN;
2452 clear = 1;
2453 }
2454 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002455 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2456 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002457 cfgerr++;
2458 }
2459 if (clear) {
2460 free(curproxy->check_command);
2461 curproxy->check_command = NULL;
2462 }
2463 }
2464
2465 if (curproxy->check_path) {
2466 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002467 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2468 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002469 err_code |= ERR_WARN;
2470 free(curproxy->check_path);
2471 curproxy->check_path = NULL;
2472 }
2473 }
2474
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002475 /* if a default backend was specified, let's find it */
2476 if (curproxy->defbe.name) {
2477 struct proxy *target;
2478
Willy Tarreauafb39922015-05-26 12:04:09 +02002479 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002480 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002481 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2482 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002483 cfgerr++;
2484 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002485 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2486 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002487 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002488 } else if (target->mode != curproxy->mode &&
2489 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2490
Christopher Faulet767a84b2017-11-24 16:50:31 +01002491 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2492 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2493 curproxy->conf.file, curproxy->conf.line,
2494 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2495 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002496 cfgerr++;
Willy Tarreau68ad3a42018-10-22 11:49:15 +02002497 } else if ((curproxy->options2 ^ target->options2) & PR_O2_USE_HTX) {
2498 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",
2499 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2500 curproxy->conf.file, curproxy->conf.line,
2501 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2502 target->conf.file, target->conf.line);
2503 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002504 } else {
2505 free(curproxy->defbe.name);
2506 curproxy->defbe.be = target;
Emeric Brun3f783572017-01-12 11:21:28 +01002507 /* Update tot_fe_maxconn for a further fullconn's computation */
2508 target->tot_fe_maxconn += curproxy->maxconn;
Willy Tarreauff678132012-02-13 14:32:34 +01002509 /* Emit a warning if this proxy also has some servers */
2510 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002511 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2512 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002513 err_code |= ERR_WARN;
2514 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002515 }
2516 }
2517
Emeric Brun3f783572017-01-12 11:21:28 +01002518 if (!curproxy->defbe.be && (curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN) {
2519 /* Case of listen without default backend
2520 * The curproxy will be its own default backend
2521 * so we update tot_fe_maxconn for a further
2522 * fullconn's computation */
2523 curproxy->tot_fe_maxconn += curproxy->maxconn;
2524 }
2525
Willy Tarreau55ea7572007-06-17 19:56:27 +02002526 /* find the target proxy for 'use_backend' rules */
2527 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002528 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002529 struct logformat_node *node;
2530 char *pxname;
2531
2532 /* Try to parse the string as a log format expression. If the result
2533 * of the parsing is only one entry containing a simple string, then
2534 * it's a standard string corresponding to a static rule, thus the
2535 * parsing is cancelled and be.name is restored to be resolved.
2536 */
2537 pxname = rule->be.name;
2538 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002539 curproxy->conf.args.ctx = ARGC_UBK;
2540 curproxy->conf.args.file = rule->file;
2541 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002542 err = NULL;
2543 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002544 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2545 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002546 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002547 cfgerr++;
2548 continue;
2549 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002550 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2551
2552 if (!LIST_ISEMPTY(&rule->be.expr)) {
2553 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2554 rule->dynamic = 1;
2555 free(pxname);
2556 continue;
2557 }
2558 /* simple string: free the expression and fall back to static rule */
2559 free(node->arg);
2560 free(node);
2561 }
2562
2563 rule->dynamic = 0;
2564 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002565
Willy Tarreauafb39922015-05-26 12:04:09 +02002566 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002567 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002568 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2569 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002570 cfgerr++;
2571 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002572 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2573 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002574 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002575 } else if (target->mode != curproxy->mode &&
2576 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2577
Christopher Faulet767a84b2017-11-24 16:50:31 +01002578 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2579 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2580 curproxy->conf.file, curproxy->conf.line,
2581 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2582 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002583 cfgerr++;
Willy Tarreau68ad3a42018-10-22 11:49:15 +02002584 } else if ((curproxy->options2 ^ target->options2) & PR_O2_USE_HTX) {
2585 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",
2586 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2587 curproxy->conf.file, curproxy->conf.line,
2588 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2589 target->conf.file, target->conf.line);
2590 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002591 } else {
2592 free((void *)rule->be.name);
2593 rule->be.backend = target;
Emeric Brun3f783572017-01-12 11:21:28 +01002594 /* For each target of switching rules, we update
2595 * their tot_fe_maxconn, except if a previous rule point
2596 * on the same backend or on the default backend */
2597 if (rule->be.backend != curproxy->defbe.be) {
2598 struct switching_rule *swrule;
2599
2600 list_for_each_entry(swrule, &curproxy->switching_rules, list) {
2601 if (rule == swrule) {
2602 target->tot_fe_maxconn += curproxy->maxconn;
2603 break;
2604 }
2605 else if (!swrule->dynamic && swrule->be.backend == rule->be.backend) {
2606 /* there is multiple ref of this backend */
2607 break;
2608 }
2609 }
2610 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02002611 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002612 }
2613
Willy Tarreau64ab6072014-09-16 12:17:36 +02002614 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002615 list_for_each_entry(srule, &curproxy->server_rules, list) {
2616 struct server *target = findserver(curproxy, srule->srv.name);
2617
2618 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002619 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2620 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002621 cfgerr++;
2622 continue;
2623 }
2624 free((void *)srule->srv.name);
2625 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002626 }
2627
Emeric Brunb982a3d2010-01-04 15:45:53 +01002628 /* find the target table for 'stick' rules */
2629 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
2630 struct proxy *target;
2631
Emeric Brun1d33b292010-01-04 15:47:17 +01002632 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2633 if (mrule->flags & STK_IS_STORE)
2634 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2635
Emeric Brunb982a3d2010-01-04 15:45:53 +01002636 if (mrule->table.name)
Willy Tarreau9e0bb102015-05-26 11:24:42 +02002637 target = proxy_tbl_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002638 else
2639 target = curproxy;
2640
2641 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002642 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
2643 curproxy->id, mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002644 cfgerr++;
2645 }
2646 else if (target->table.size == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002647 ha_alert("Proxy '%s': stick-table '%s' used but not configured.\n",
2648 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002649 cfgerr++;
2650 }
Willy Tarreau12785782012-04-27 21:37:17 +02002651 else if (!stktable_compatible_sample(mrule->expr, target->table.type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002652 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2653 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002654 cfgerr++;
2655 }
2656 else {
2657 free((void *)mrule->table.name);
2658 mrule->table.t = &(target->table);
Willy Tarreau888617d2010-06-20 09:11:39 +02002659 stktable_alloc_data_type(&target->table, STKTABLE_DT_SERVER_ID, NULL);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002660 }
2661 }
2662
2663 /* find the target table for 'store response' rules */
2664 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
2665 struct proxy *target;
2666
Emeric Brun1d33b292010-01-04 15:47:17 +01002667 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2668
Emeric Brunb982a3d2010-01-04 15:45:53 +01002669 if (mrule->table.name)
Willy Tarreau9e0bb102015-05-26 11:24:42 +02002670 target = proxy_tbl_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002671 else
2672 target = curproxy;
2673
2674 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002675 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
2676 curproxy->id, mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002677 cfgerr++;
2678 }
2679 else if (target->table.size == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002680 ha_alert("Proxy '%s': stick-table '%s' used but not configured.\n",
2681 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002682 cfgerr++;
2683 }
Willy Tarreau12785782012-04-27 21:37:17 +02002684 else if (!stktable_compatible_sample(mrule->expr, target->table.type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002685 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2686 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002687 cfgerr++;
2688 }
2689 else {
2690 free((void *)mrule->table.name);
2691 mrule->table.t = &(target->table);
Willy Tarreau888617d2010-06-20 09:11:39 +02002692 stktable_alloc_data_type(&target->table, STKTABLE_DT_SERVER_ID, NULL);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002693 }
2694 }
2695
Christopher Faulete4e830d2017-09-18 14:51:41 +02002696 /* check validity for 'tcp-request' layer 4 rules */
2697 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2698 err = NULL;
2699 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002700 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002701 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002702 cfgerr++;
2703 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002704 }
2705
Christopher Faulete4e830d2017-09-18 14:51:41 +02002706 /* check validity for 'tcp-request' layer 5 rules */
2707 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2708 err = NULL;
2709 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002710 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002711 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002712 cfgerr++;
2713 }
2714 }
2715
Christopher Faulete4e830d2017-09-18 14:51:41 +02002716 /* check validity for 'tcp-request' layer 6 rules */
2717 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2718 err = NULL;
2719 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002720 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002721 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002722 cfgerr++;
2723 }
2724 }
2725
Christopher Faulete4e830d2017-09-18 14:51:41 +02002726 /* check validity for 'http-request' layer 7 rules */
2727 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2728 err = NULL;
2729 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002730 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002731 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002732 cfgerr++;
2733 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002734 }
2735
Christopher Faulete4e830d2017-09-18 14:51:41 +02002736 /* check validity for 'http-response' layer 7 rules */
2737 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2738 err = NULL;
2739 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002740 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002741 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002742 cfgerr++;
2743 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002744 }
2745
Willy Tarreaub3dc39d2014-04-28 22:06:57 +02002746 /* move any "block" rules at the beginning of the http-request rules */
2747 if (!LIST_ISEMPTY(&curproxy->block_rules)) {
2748 /* insert block_rules into http_req_rules at the beginning */
2749 curproxy->block_rules.p->n = curproxy->http_req_rules.n;
2750 curproxy->http_req_rules.n->p = curproxy->block_rules.p;
2751 curproxy->block_rules.n->p = &curproxy->http_req_rules;
2752 curproxy->http_req_rules.n = curproxy->block_rules.n;
2753 LIST_INIT(&curproxy->block_rules);
2754 }
2755
Emeric Brun32da3c42010-09-23 18:39:19 +02002756 if (curproxy->table.peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002757 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002758
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002759 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +02002760 if (strcmp(curpeers->id, curproxy->table.peers.name) == 0) {
2761 free((void *)curproxy->table.peers.name);
Willy Tarreau973ca492013-01-17 21:34:52 +01002762 curproxy->table.peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002763 break;
2764 }
2765 }
2766
2767 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002768 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
2769 curproxy->id, curproxy->table.peers.name);
Willy Tarreaud66bf962011-10-28 14:16:49 +02002770 free((void *)curproxy->table.peers.name);
2771 curproxy->table.peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002772 cfgerr++;
2773 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002774 else if (curpeers->state == PR_STSTOPPED) {
2775 /* silently disable this peers section */
2776 curproxy->table.peers.p = NULL;
2777 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002778 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002779 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2780 curproxy->id, localpeer, curpeers->id);
Willy Tarreaud66bf962011-10-28 14:16:49 +02002781 curproxy->table.peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002782 cfgerr++;
2783 }
2784 }
2785
Simon Horman9dc49962015-01-30 11:22:59 +09002786
2787 if (curproxy->email_alert.mailers.name) {
2788 struct mailers *curmailers = mailers;
2789
2790 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002791 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002792 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002793 }
Simon Horman9dc49962015-01-30 11:22:59 +09002794 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002795 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2796 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002797 free_email_alert(curproxy);
2798 cfgerr++;
2799 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002800 else {
2801 err = NULL;
2802 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002803 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002804 free(err);
2805 cfgerr++;
2806 }
2807 }
Simon Horman9dc49962015-01-30 11:22:59 +09002808 }
2809
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002810 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & ST_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002811 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002812 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002813 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2814 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002815 cfgerr++;
2816 goto out_uri_auth_compat;
2817 }
2818
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002819 if (curproxy->uri_auth && curproxy->uri_auth->userlist && !(curproxy->uri_auth->flags & ST_CONVDONE)) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002820 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002821 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002822 int i = 0;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002823
Willy Tarreau95fa4692010-02-01 13:05:50 +01002824 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2825 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002826
2827 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002828 uri_auth_compat_req[i++] = "realm";
2829 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2830 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002831
Willy Tarreau95fa4692010-02-01 13:05:50 +01002832 uri_auth_compat_req[i++] = "unless";
2833 uri_auth_compat_req[i++] = "{";
2834 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2835 uri_auth_compat_req[i++] = "}";
2836 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002837
Willy Tarreauff011f22011-01-06 17:51:27 +01002838 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2839 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002840 cfgerr++;
2841 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002842 }
2843
Willy Tarreauff011f22011-01-06 17:51:27 +01002844 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002845
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002846 if (curproxy->uri_auth->auth_realm) {
2847 free(curproxy->uri_auth->auth_realm);
2848 curproxy->uri_auth->auth_realm = NULL;
2849 }
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002850
2851 curproxy->uri_auth->flags |= ST_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002852 }
2853out_uri_auth_compat:
2854
Dragan Dosen43885c72015-10-01 13:18:13 +02002855 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002856 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002857 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2858 if (!curproxy->conf.logformat_sd_string) {
2859 /* set the default logformat_sd_string */
2860 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2861 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002862 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002863 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002864 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002865
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002866 /* compile the log format */
2867 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002868 if (curproxy->conf.logformat_string != default_http_log_format &&
2869 curproxy->conf.logformat_string != default_tcp_log_format &&
2870 curproxy->conf.logformat_string != clf_http_log_format)
2871 free(curproxy->conf.logformat_string);
2872 curproxy->conf.logformat_string = NULL;
2873 free(curproxy->conf.lfs_file);
2874 curproxy->conf.lfs_file = NULL;
2875 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002876
2877 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2878 free(curproxy->conf.logformat_sd_string);
2879 curproxy->conf.logformat_sd_string = NULL;
2880 free(curproxy->conf.lfsd_file);
2881 curproxy->conf.lfsd_file = NULL;
2882 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002883 }
2884
Willy Tarreau62a61232013-04-12 18:13:46 +02002885 if (curproxy->conf.logformat_string) {
2886 curproxy->conf.args.ctx = ARGC_LOG;
2887 curproxy->conf.args.file = curproxy->conf.lfs_file;
2888 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002889 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002890 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002891 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002892 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
2893 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002894 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002895 cfgerr++;
2896 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002897 curproxy->conf.args.file = NULL;
2898 curproxy->conf.args.line = 0;
2899 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002900
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002901 if (curproxy->conf.logformat_sd_string) {
2902 curproxy->conf.args.ctx = ARGC_LOGSD;
2903 curproxy->conf.args.file = curproxy->conf.lfsd_file;
2904 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002905 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002906 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 +01002907 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002908 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2909 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002910 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002911 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002912 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002913 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2914 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002915 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002916 cfgerr++;
2917 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002918 curproxy->conf.args.file = NULL;
2919 curproxy->conf.args.line = 0;
2920 }
2921
Willy Tarreau62a61232013-04-12 18:13:46 +02002922 if (curproxy->conf.uniqueid_format_string) {
2923 curproxy->conf.args.ctx = ARGC_UIF;
2924 curproxy->conf.args.file = curproxy->conf.uif_file;
2925 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002926 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002927 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 +01002928 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002929 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
2930 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002931 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002932 cfgerr++;
2933 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002934 curproxy->conf.args.file = NULL;
2935 curproxy->conf.args.line = 0;
2936 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002937
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002938 /* only now we can check if some args remain unresolved.
2939 * This must be done after the users and groups resolution.
2940 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002941 cfgerr += smp_resolve_args(curproxy);
2942 if (!cfgerr)
2943 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002944
Willy Tarreau2738a142006-07-08 17:28:09 +02002945 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002946 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02002947 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02002948 (!curproxy->timeout.connect ||
2949 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002950 ha_warning("config : missing timeouts for %s '%s'.\n"
2951 " | While not properly invalid, you will certainly encounter various problems\n"
2952 " | with such a configuration. To fix this, please ensure that all following\n"
2953 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
2954 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002955 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02002956 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02002957
Willy Tarreau1fa31262007-12-03 00:36:16 +01002958 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
2959 * We must still support older configurations, so let's find out whether those
2960 * parameters have been set or must be copied from contimeouts.
2961 */
2962 if (curproxy != &defproxy) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002963 if (!curproxy->timeout.tarpit ||
2964 curproxy->timeout.tarpit == defproxy.timeout.tarpit) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01002965 /* tarpit timeout not set. We search in the following order:
2966 * default.tarpit, curr.connect, default.connect.
2967 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002968 if (defproxy.timeout.tarpit)
Willy Tarreau1fa31262007-12-03 00:36:16 +01002969 curproxy->timeout.tarpit = defproxy.timeout.tarpit;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002970 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002971 curproxy->timeout.tarpit = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002972 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002973 curproxy->timeout.tarpit = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002974 }
2975 if ((curproxy->cap & PR_CAP_BE) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002976 (!curproxy->timeout.queue ||
2977 curproxy->timeout.queue == defproxy.timeout.queue)) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01002978 /* queue timeout not set. We search in the following order:
2979 * default.queue, curr.connect, default.connect.
2980 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002981 if (defproxy.timeout.queue)
Willy Tarreau1fa31262007-12-03 00:36:16 +01002982 curproxy->timeout.queue = defproxy.timeout.queue;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002983 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002984 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002985 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002986 curproxy->timeout.queue = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002987 }
2988 }
2989
Willy Tarreau1620ec32011-08-06 17:05:02 +02002990 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_SSL3_CHK) {
Willy Tarreau137325d2010-02-01 16:38:17 +01002991 curproxy->check_len = sizeof(sslv3_client_hello_pkt) - 1;
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002992 curproxy->check_req = malloc(curproxy->check_len);
Willy Tarreau137325d2010-02-01 16:38:17 +01002993 memcpy(curproxy->check_req, sslv3_client_hello_pkt, curproxy->check_len);
Willy Tarreauf3c69202006-07-09 16:42:34 +02002994 }
2995
Willy Tarreau215663d2014-06-13 18:30:23 +02002996 if (!LIST_ISEMPTY(&curproxy->tcpcheck_rules) &&
2997 (curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_TCPCHK_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002998 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
2999 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003000 err_code |= ERR_WARN;
3001 }
3002
Willy Tarreau193b8c62012-11-22 00:17:38 +01003003 /* ensure that cookie capture length is not too large */
3004 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003005 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3006 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003007 err_code |= ERR_WARN;
3008 curproxy->capture_len = global.tune.cookie_len - 1;
3009 }
3010
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003011 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003012 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003013 curproxy->req_cap_pool = create_pool("ptrcap",
3014 curproxy->nb_req_cap * sizeof(char *),
3015 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003016 }
3017
3018 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003019 curproxy->rsp_cap_pool = create_pool("ptrcap",
3020 curproxy->nb_rsp_cap * sizeof(char *),
3021 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003022 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003023
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003024 switch (curproxy->load_server_state_from_file) {
3025 case PR_SRV_STATE_FILE_UNSPEC:
3026 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3027 break;
3028 case PR_SRV_STATE_FILE_GLOBAL:
3029 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003030 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",
3031 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003032 err_code |= ERR_WARN;
3033 }
3034 break;
3035 }
3036
Willy Tarreaubaaee002006-06-26 02:48:02 +02003037 /* first, we will invert the servers list order */
3038 newsrv = NULL;
3039 while (curproxy->srv) {
3040 struct server *next;
3041
3042 next = curproxy->srv->next;
3043 curproxy->srv->next = newsrv;
3044 newsrv = curproxy->srv;
3045 if (!next)
3046 break;
3047 curproxy->srv = next;
3048 }
3049
Willy Tarreau17edc812014-01-03 12:14:34 +01003050 /* Check that no server name conflicts. This causes trouble in the stats.
3051 * We only emit a warning for the first conflict affecting each server,
3052 * in order to avoid combinatory explosion if all servers have the same
3053 * name. We do that only for servers which do not have an explicit ID,
3054 * because these IDs were made also for distinguishing them and we don't
3055 * want to annoy people who correctly manage them.
3056 */
3057 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3058 struct server *other_srv;
3059
3060 if (newsrv->puid)
3061 continue;
3062
3063 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3064 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003065 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",
3066 newsrv->conf.file, newsrv->conf.line,
3067 proxy_type_str(curproxy), curproxy->id,
3068 newsrv->id, other_srv->conf.line);
Willy Tarreau17edc812014-01-03 12:14:34 +01003069 break;
3070 }
3071 }
3072 }
3073
Willy Tarreaudd701652010-05-25 23:03:02 +02003074 /* assign automatic UIDs to servers which don't have one yet */
3075 next_id = 1;
3076 newsrv = curproxy->srv;
3077 while (newsrv != NULL) {
3078 if (!newsrv->puid) {
3079 /* server ID not set, use automatic numbering with first
3080 * spare entry starting with next_svid.
3081 */
3082 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3083 newsrv->conf.id.key = newsrv->puid = next_id;
3084 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
3085 }
3086 next_id++;
3087 newsrv = newsrv->next;
3088 }
3089
Willy Tarreau20697042007-11-15 23:26:18 +01003090 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003091 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003092
Willy Tarreau62c3be22012-01-20 13:12:32 +01003093 /*
3094 * If this server supports a maxconn parameter, it needs a dedicated
3095 * tasks to fill the emptied slots when a connection leaves.
3096 * Also, resolve deferred tracking dependency if needed.
3097 */
3098 newsrv = curproxy->srv;
3099 while (newsrv != NULL) {
3100 if (newsrv->minconn > newsrv->maxconn) {
3101 /* Only 'minconn' was specified, or it was higher than or equal
3102 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3103 * this will avoid further useless expensive computations.
3104 */
3105 newsrv->maxconn = newsrv->minconn;
3106 } else if (newsrv->maxconn && !newsrv->minconn) {
3107 /* minconn was not specified, so we set it to maxconn */
3108 newsrv->minconn = newsrv->maxconn;
3109 }
3110
Willy Tarreau17d45382016-12-22 21:16:08 +01003111 /* this will also properly set the transport layer for prod and checks */
3112 if (newsrv->use_ssl || newsrv->check.use_ssl) {
3113 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3114 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3115 }
Emeric Brun94324a42012-10-11 14:00:19 +02003116
Willy Tarreau2f075e92013-12-03 11:11:34 +01003117 /* set the check type on the server */
3118 newsrv->check.type = curproxy->options2 & PR_O2_CHK_ANY;
3119
Willy Tarreau62c3be22012-01-20 13:12:32 +01003120 if (newsrv->trackit) {
3121 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003122 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003123 char *pname, *sname;
3124
3125 pname = newsrv->trackit;
3126 sname = strrchr(pname, '/');
3127
3128 if (sname)
3129 *sname++ = '\0';
3130 else {
3131 sname = pname;
3132 pname = NULL;
3133 }
3134
3135 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003136 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003137 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003138 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3139 proxy_type_str(curproxy), curproxy->id,
3140 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003141 cfgerr++;
3142 goto next_srv;
3143 }
3144 } else
3145 px = curproxy;
3146
3147 srv = findserver(px, sname);
3148 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003149 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3150 proxy_type_str(curproxy), curproxy->id,
3151 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003152 cfgerr++;
3153 goto next_srv;
3154 }
3155
Willy Tarreau32091232014-05-16 13:52:00 +02003156 if (!(srv->check.state & CHK_ST_CONFIGURED) &&
3157 !(srv->agent.state & CHK_ST_CONFIGURED) &&
3158 !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003159 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3160 "tracking as it does not have any check nor agent enabled.\n",
3161 proxy_type_str(curproxy), curproxy->id,
3162 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003163 cfgerr++;
3164 goto next_srv;
3165 }
3166
3167 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3168
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003169 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003170 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3171 "belongs to a tracking chain looping back to %s/%s.\n",
3172 proxy_type_str(curproxy), curproxy->id,
3173 newsrv->id, px->id, srv->id, px->id,
3174 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003175 cfgerr++;
3176 goto next_srv;
3177 }
3178
3179 if (curproxy != px &&
3180 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003181 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3182 "tracking: disable-on-404 option inconsistency.\n",
3183 proxy_type_str(curproxy), curproxy->id,
3184 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003185 cfgerr++;
3186 goto next_srv;
3187 }
3188
Willy Tarreau62c3be22012-01-20 13:12:32 +01003189 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003190 newsrv->tracknext = srv->trackers;
3191 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003192
3193 free(newsrv->trackit);
3194 newsrv->trackit = NULL;
3195 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003196
Willy Tarreau62c3be22012-01-20 13:12:32 +01003197 next_srv:
3198 newsrv = newsrv->next;
3199 }
3200
Olivier Houchard4e694042017-03-14 20:01:29 +01003201 /*
3202 * Try to generate dynamic cookies for servers now.
3203 * It couldn't be done earlier, since at the time we parsed
3204 * the server line, we may not have known yet that we
3205 * should use dynamic cookies, or the secret key may not
3206 * have been provided yet.
3207 */
3208 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3209 newsrv = curproxy->srv;
3210 while (newsrv != NULL) {
3211 srv_set_dyncookie(newsrv);
3212 newsrv = newsrv->next;
3213 }
3214
3215 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003216 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003217 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003218 */
3219
3220 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3221 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3222 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003223 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3224 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3225 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003226 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3227 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3228 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003229 } else {
3230 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3231 fwrr_init_server_groups(curproxy);
3232 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003233 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003234
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003235 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003236 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3237 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3238 fwlc_init_server_tree(curproxy);
3239 } else {
3240 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3241 fas_init_server_tree(curproxy);
3242 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003243 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003244
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003245 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003246 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3247 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3248 chash_init_server_tree(curproxy);
3249 } else {
3250 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3251 init_server_map(curproxy);
3252 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003253 break;
3254 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003255 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003256
3257 if (curproxy->options & PR_O_LOGASAP)
3258 curproxy->to_log &= ~LW_BYTES;
3259
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003260 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003261 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3262 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003263 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3264 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003265 err_code |= ERR_WARN;
3266 }
3267
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003268 if (curproxy->mode != PR_MODE_HTTP) {
3269 int optnum;
3270
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003271 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003272 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3273 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003274 err_code |= ERR_WARN;
3275 curproxy->uri_auth = NULL;
3276 }
3277
Willy Tarreaude7dc882017-03-10 11:49:21 +01003278 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003279 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3280 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003281 err_code |= ERR_WARN;
3282 }
3283
3284 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003285 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3286 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003287 err_code |= ERR_WARN;
3288 }
3289
3290 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003291 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3292 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003293 err_code |= ERR_WARN;
3294 }
3295
3296 if (!LIST_ISEMPTY(&curproxy->block_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003297 ha_warning("config : 'block' rules ignored for %s '%s' as they require HTTP mode.\n",
3298 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003299 err_code |= ERR_WARN;
3300 }
3301
3302 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003303 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3304 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003305 err_code |= ERR_WARN;
3306 }
3307
Willy Tarreau87cf5142011-08-19 22:57:24 +02003308 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003309 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3310 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003311 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003312 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003313 }
3314
3315 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003316 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3317 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003318 err_code |= ERR_WARN;
3319 curproxy->options &= ~PR_O_ORGTO;
3320 }
3321
3322 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3323 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3324 (curproxy->cap & cfg_opts[optnum].cap) &&
3325 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003326 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3327 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003328 err_code |= ERR_WARN;
3329 curproxy->options &= ~cfg_opts[optnum].val;
3330 }
3331 }
3332
3333 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3334 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3335 (curproxy->cap & cfg_opts2[optnum].cap) &&
3336 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003337 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3338 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003339 err_code |= ERR_WARN;
3340 curproxy->options2 &= ~cfg_opts2[optnum].val;
3341 }
3342 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003343
Willy Tarreau29fbe512015-08-20 19:35:14 +02003344#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003345 if (curproxy->conn_src.bind_hdr_occ) {
3346 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003347 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3348 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003349 err_code |= ERR_WARN;
3350 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003351#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003352 }
3353
Willy Tarreaubaaee002006-06-26 02:48:02 +02003354 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003355 * ensure that we're not cross-dressing a TCP server into HTTP.
3356 */
3357 newsrv = curproxy->srv;
3358 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003359 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003360 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3361 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003362 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003363 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003364
Willy Tarreau0cec3312011-10-31 13:49:26 +01003365 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003366 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3367 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003368 err_code |= ERR_WARN;
3369 }
3370
Willy Tarreauc93cd162014-05-13 15:54:22 +02003371 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003372 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3373 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003374 err_code |= ERR_WARN;
3375 }
3376
Willy Tarreau29fbe512015-08-20 19:35:14 +02003377#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003378 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3379 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003380 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3381 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003382 err_code |= ERR_WARN;
3383 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003384#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003385
Willy Tarreau46deab62018-04-28 07:18:15 +02003386 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3387 curproxy->options &= ~PR_O_REUSE_MASK;
3388
Willy Tarreau21d2af32008-02-14 20:25:24 +01003389 newsrv = newsrv->next;
3390 }
3391
Willy Tarreaue42bd962014-09-16 16:21:19 +02003392 /* check if we have a frontend with "tcp-request content" looking at L7
3393 * with no inspect-delay
3394 */
3395 if ((curproxy->cap & PR_CAP_FE) && !curproxy->tcp_req.inspect_delay) {
Christopher Faulete4e830d2017-09-18 14:51:41 +02003396 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
3397 if (arule->action == ACT_TCP_CAPTURE &&
3398 !(arule->arg.cap.expr->fetch->val & SMP_VAL_FE_SES_ACC))
Willy Tarreaue42bd962014-09-16 16:21:19 +02003399 break;
Christopher Faulete4e830d2017-09-18 14:51:41 +02003400 if ((arule->action >= ACT_ACTION_TRK_SC0 && arule->action <= ACT_ACTION_TRK_SCMAX) &&
3401 !(arule->arg.trk_ctr.expr->fetch->val & SMP_VAL_FE_SES_ACC))
Willy Tarreaue42bd962014-09-16 16:21:19 +02003402 break;
3403 }
3404
Christopher Faulete4e830d2017-09-18 14:51:41 +02003405 if (&arule->list != &curproxy->tcp_req.inspect_rules) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003406 ha_warning("config : %s '%s' : some 'tcp-request content' rules explicitly depending on request"
3407 " contents were found in a frontend without any 'tcp-request inspect-delay' setting."
3408 " This means that these rules will randomly find their contents. This can be fixed by"
3409 " setting the tcp-request inspect-delay.\n",
3410 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue42bd962014-09-16 16:21:19 +02003411 err_code |= ERR_WARN;
3412 }
3413 }
3414
Christopher Fauletd7c91962015-04-30 11:48:27 +02003415 /* Check filter configuration, if any */
3416 cfgerr += flt_check(curproxy);
3417
Willy Tarreauc1a21672009-08-16 22:37:44 +02003418 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003419 if (!curproxy->accept)
3420 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003421
Willy Tarreauc1a21672009-08-16 22:37:44 +02003422 if (curproxy->tcp_req.inspect_delay ||
3423 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003424 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003425
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003426 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003427 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003428 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003429 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003430
William Lallemandcf62f7e2018-10-26 14:47:40 +02003431 if (curproxy->mode == PR_MODE_CLI) {
3432 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3433 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3434 }
3435
Willy Tarreauc1a21672009-08-16 22:37:44 +02003436 /* both TCP and HTTP must check switching rules */
3437 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003438
3439 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003440 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003441 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3442 curproxy->fe_rsp_ana |= AN_RES_FLT_START_FE | AN_RES_FLT_XFER_DATA | AN_RES_FLT_END;
Christopher Faulet309c6412015-12-02 09:57:32 +01003443 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003444 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3445 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003446 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003447 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003448 }
3449
3450 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003451 if (curproxy->tcp_req.inspect_delay ||
3452 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3453 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3454
Emeric Brun97679e72010-09-23 17:56:44 +02003455 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3456 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3457
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003458 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003459 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003460 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003461 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003462
3463 /* If the backend does requires RDP cookie persistence, we have to
3464 * enable the corresponding analyser.
3465 */
3466 if (curproxy->options2 & PR_O2_RDPC_PRST)
3467 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003468
3469 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003470 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003471 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3472 curproxy->be_rsp_ana |= AN_RES_FLT_START_BE | AN_RES_FLT_XFER_DATA | AN_RES_FLT_END;
Christopher Faulet309c6412015-12-02 09:57:32 +01003473 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003474 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3475 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003476 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003477 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003478 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003479
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003480 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003481 * attached to the current proxy */
3482 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3483 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003484 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003485
Christopher Faulet7ff4f142018-11-20 11:23:52 +01003486 /* Special case for HTX because it is still experimental */
3487 if (curproxy->options2 & PR_O2_USE_HTX)
3488 mode = PROTO_MODE_HTX;
3489
Christopher Fauleta717b992018-04-10 14:43:00 +02003490 if (!bind_conf->mux_proto)
3491 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003492
3493 /* it is possible that an incorrect mux was referenced
3494 * due to the proxy's mode not being taken into account
3495 * on first pass. Let's adjust it now.
3496 */
3497 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3498
3499 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003500 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3501 proxy_type_str(curproxy), curproxy->id,
3502 (int)bind_conf->mux_proto->token.len,
3503 bind_conf->mux_proto->token.ptr,
3504 bind_conf->arg, bind_conf->file, bind_conf->line);
3505 cfgerr++;
3506 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003507
3508 /* update the mux */
3509 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003510 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003511 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3512 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003513 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003514
Christopher Faulet7ff4f142018-11-20 11:23:52 +01003515 /* Special case for HTX because it is still experimental */
3516 if (curproxy->options2 & PR_O2_USE_HTX)
3517 mode = PROTO_MODE_HTX;
3518
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003519 if (!newsrv->mux_proto)
3520 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003521
3522 /* it is possible that an incorrect mux was referenced
3523 * due to the proxy's mode not being taken into account
3524 * on first pass. Let's adjust it now.
3525 */
3526 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3527
3528 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003529 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3530 proxy_type_str(curproxy), curproxy->id,
3531 (int)newsrv->mux_proto->token.len,
3532 newsrv->mux_proto->token.ptr,
3533 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3534 cfgerr++;
3535 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003536
3537 /* update the mux */
3538 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003539 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003540 }
3541
3542 /***********************************************************/
3543 /* At this point, target names have already been resolved. */
3544 /***********************************************************/
3545
3546 /* Check multi-process mode compatibility */
3547
3548 if (global.nbproc > 1 && global.stats_fe) {
3549 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3550 unsigned long mask;
3551
3552 mask = nbits(global.nbproc);
3553 if (global.stats_fe->bind_proc)
3554 mask &= global.stats_fe->bind_proc;
3555
3556 if (bind_conf->bind_proc)
3557 mask &= bind_conf->bind_proc;
3558
3559 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003560 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003561 break;
3562 }
3563 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003564 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 +02003565 }
3566 }
3567
3568 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003569 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003570 if (curproxy->bind_proc)
3571 continue;
3572
3573 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3574 unsigned long mask;
3575
Willy Tarreaue428b082015-05-04 21:57:58 +02003576 mask = bind_conf->bind_proc ? bind_conf->bind_proc : nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003577 curproxy->bind_proc |= mask;
3578 }
3579
3580 if (!curproxy->bind_proc)
Willy Tarreaue428b082015-05-04 21:57:58 +02003581 curproxy->bind_proc = nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003582 }
3583
3584 if (global.stats_fe) {
3585 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3586 unsigned long mask;
3587
Cyril Bonté06181952016-02-24 00:14:54 +01003588 mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003589 global.stats_fe->bind_proc |= mask;
3590 }
3591 if (!global.stats_fe->bind_proc)
Willy Tarreaue428b082015-05-04 21:57:58 +02003592 global.stats_fe->bind_proc = nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003593 }
3594
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003595 /* propagate bindings from frontends to backends. Don't do it if there
3596 * are any fatal errors as we must not call it with unresolved proxies.
3597 */
3598 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003599 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003600 if (curproxy->cap & PR_CAP_FE)
3601 propagate_processes(curproxy, NULL);
3602 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003603 }
3604
3605 /* Bind each unbound backend to all processes when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003606 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003607 if (curproxy->bind_proc)
3608 continue;
Willy Tarreaue428b082015-05-04 21:57:58 +02003609 curproxy->bind_proc = nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003610 }
3611
3612 /*******************************************************/
3613 /* At this step, all proxies have a non-null bind_proc */
3614 /*******************************************************/
3615
3616 /* perform the final checks before creating tasks */
3617
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003618 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003619 struct listener *listener;
3620 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003621
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003622 /* Configure SSL for each bind line.
3623 * Note: if configuration fails at some point, the ->ctx member
3624 * remains NULL so that listeners can later detach.
3625 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003626 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003627 if (bind_conf->xprt->prepare_bind_conf &&
3628 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003629 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003630 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003631
Willy Tarreaue6b98942007-10-29 01:09:36 +01003632 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003633 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003634 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003635 int nbproc;
3636
3637 nbproc = my_popcountl(curproxy->bind_proc &
Cyril Bonté4920d702016-04-15 07:58:43 +02003638 (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) &
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003639 nbits(global.nbproc));
3640
3641 if (!nbproc) /* no intersection between listener and frontend */
3642 nbproc = 1;
3643
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003644 if (!listener->luid) {
3645 /* listener ID not set, use automatic numbering with first
3646 * spare entry starting with next_luid.
3647 */
3648 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3649 listener->conf.id.key = listener->luid = next_id;
3650 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003651 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003652 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003653
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003654 /* enable separate counters */
3655 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003656 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003657 if (!listener->name)
3658 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003659 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003660
Willy Tarreaue6b98942007-10-29 01:09:36 +01003661 if (curproxy->options & PR_O_TCP_NOLING)
3662 listener->options |= LI_O_NOLINGER;
Willy Tarreau32368ce2012-09-06 11:10:55 +02003663 if (!listener->maxconn)
3664 listener->maxconn = curproxy->maxconn;
3665 if (!listener->backlog)
3666 listener->backlog = curproxy->backlog;
Willy Tarreau16a21472012-11-19 12:39:59 +01003667 if (!listener->maxaccept)
3668 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3669
3670 /* we want to have an optimal behaviour on single process mode to
3671 * maximize the work at once, but in multi-process we want to keep
3672 * some fairness between processes, so we target half of the max
3673 * number of events to be balanced over all the processes the proxy
3674 * is bound to. Rememeber that maxaccept = -1 must be kept as it is
3675 * used to disable the limit.
3676 */
3677 if (listener->maxaccept > 0) {
3678 if (nbproc > 1)
3679 listener->maxaccept = (listener->maxaccept + 1) / 2;
3680 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3681 }
3682
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003683 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003684 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003685 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003686
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003687 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003688 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003689
Willy Tarreau620408f2016-10-21 16:37:51 +02003690 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3691 listener->options |= LI_O_TCP_L5_RULES;
3692
Willy Tarreaude3041d2010-05-31 10:56:17 +02003693 if (curproxy->mon_mask.s_addr)
3694 listener->options |= LI_O_CHK_MONNET;
3695
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003696 /* smart accept mode is automatic in HTTP mode */
3697 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003698 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003699 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3700 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003701 }
3702
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003703 /* Release unused SSL configs */
3704 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003705 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3706 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003707 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003708
Willy Tarreau9504dd62018-10-15 09:37:03 +02003709 if (atleast2(curproxy->bind_proc & nbits(global.nbproc))) {
Willy Tarreau102df612014-05-07 23:56:38 +02003710 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003711 int count, maxproc = 0;
3712
3713 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
David Carliere6c39412015-07-02 07:00:17 +00003714 count = my_popcountl(bind_conf->bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003715 if (count > maxproc)
3716 maxproc = count;
3717 }
3718 /* backends have 0, frontends have 1 or more */
3719 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003720 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3721 " limited to process assigned to the current request.\n",
3722 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003723
Willy Tarreau102df612014-05-07 23:56:38 +02003724 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003725 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3726 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003727 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003728 }
Willy Tarreau102df612014-05-07 23:56:38 +02003729 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003730 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3731 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003732 }
3733 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003734
3735 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003736 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003737 if (curproxy->task) {
3738 curproxy->task->context = curproxy;
3739 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003740 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003741 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3742 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003743 cfgerr++;
3744 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003745 }
3746
Willy Tarreaufbb78422011-06-05 15:38:35 +02003747 /* automatically compute fullconn if not set. We must not do it in the
3748 * loop above because cross-references are not yet fully resolved.
3749 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003750 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreaufbb78422011-06-05 15:38:35 +02003751 /* If <fullconn> is not set, let's set it to 10% of the sum of
3752 * the possible incoming frontend's maxconns.
3753 */
3754 if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) {
Willy Tarreaufbb78422011-06-05 15:38:35 +02003755 /* we have the sum of the maxconns in <total>. We only
3756 * keep 10% of that sum to set the default fullconn, with
3757 * a hard minimum of 1 (to avoid a divide by zero).
3758 */
Emeric Brun3f783572017-01-12 11:21:28 +01003759 curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10;
Willy Tarreaufbb78422011-06-05 15:38:35 +02003760 if (!curproxy->fullconn)
3761 curproxy->fullconn = 1;
3762 }
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01003763 }
3764
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003765 /*
3766 * Recount currently required checks.
3767 */
3768
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003769 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003770 int optnum;
3771
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003772 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3773 if (curproxy->options & cfg_opts[optnum].val)
3774 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003775
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003776 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3777 if (curproxy->options2 & cfg_opts2[optnum].val)
3778 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003779 }
3780
Willy Tarreau0fca4832015-05-01 19:12:05 +02003781 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003782 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Willy Tarreau0fca4832015-05-01 19:12:05 +02003783 if (curproxy->table.peers.p)
3784 curproxy->table.peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
3785
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003786 if (cfg_peers) {
3787 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003788 struct peer *p, *pb;
3789
Willy Tarreau1e273012015-05-01 19:15:17 +02003790 /* Remove all peers sections which don't have a valid listener,
3791 * which are not used by any table, or which are bound to more
3792 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003793 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003794 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003795 while (*last) {
3796 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003797
3798 if (curpeers->state == PR_STSTOPPED) {
3799 /* the "disabled" keyword was present */
3800 if (curpeers->peers_fe)
3801 stop_proxy(curpeers->peers_fe);
3802 curpeers->peers_fe = NULL;
3803 }
3804 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003805 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3806 curpeers->id, localpeer);
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003807 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003808 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003809 /* either it's totally stopped or too much used */
3810 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003811 ha_alert("Peers section '%s': peers referenced by sections "
3812 "running in different processes (%d different ones). "
3813 "Check global.nbproc and all tables' bind-process "
3814 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003815 cfgerr++;
3816 }
3817 stop_proxy(curpeers->peers_fe);
3818 curpeers->peers_fe = NULL;
3819 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003820 else {
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003821 p = curpeers->remote;
3822 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003823 if (p->srv) {
3824 if (p->srv->use_ssl && xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3825 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3826 }
3827 else if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3828 struct list *l;
3829 struct bind_conf *bind_conf;
3830
3831 l = &curpeers->peers_fe->conf.bind;
3832 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3833 if (bind_conf->xprt->prepare_bind_conf &&
3834 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3835 cfgerr++;
3836 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003837 p = p->next;
3838 }
Willy Tarreaud9443442018-10-15 11:18:03 +02003839 if (!peers_init_sync(curpeers)) {
3840 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3841 curpeers->id);
3842 cfgerr++;
3843 break;
3844 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003845 last = &curpeers->next;
3846 continue;
3847 }
3848
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003849 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003850 p = curpeers->remote;
3851 while (p) {
3852 pb = p->next;
3853 free(p->id);
3854 free(p);
3855 p = pb;
3856 }
3857
3858 /* Destroy and unlink this curpeers section.
3859 * Note: curpeers is backed up into *last.
3860 */
3861 free(curpeers->id);
3862 curpeers = curpeers->next;
3863 free(*last);
3864 *last = curpeers;
3865 }
3866 }
3867
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003868 /* initialize stick-tables on backend capable proxies. This must not
3869 * be done earlier because the data size may be discovered while parsing
3870 * other proxies.
3871 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003872 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003873 if (curproxy->state == PR_STSTOPPED)
3874 continue;
3875
3876 if (!stktable_init(&curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003877 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003878 cfgerr++;
3879 }
3880 }
3881
Simon Horman0d16a402015-01-30 11:22:58 +09003882 if (mailers) {
3883 struct mailers *curmailers = mailers, **last;
3884 struct mailer *m, *mb;
3885
3886 /* Remove all mailers sections which don't have a valid listener.
3887 * This can happen when a mailers section is never referenced.
3888 */
3889 last = &mailers;
3890 while (*last) {
3891 curmailers = *last;
3892 if (curmailers->users) {
3893 last = &curmailers->next;
3894 continue;
3895 }
3896
Christopher Faulet767a84b2017-11-24 16:50:31 +01003897 ha_warning("Removing incomplete section 'mailers %s'.\n",
3898 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09003899
3900 m = curmailers->mailer_list;
3901 while (m) {
3902 mb = m->next;
3903 free(m->id);
3904 free(m);
3905 m = mb;
3906 }
3907
3908 /* Destroy and unlink this curmailers section.
3909 * Note: curmailers is backed up into *last.
3910 */
3911 free(curmailers->id);
3912 curmailers = curmailers->next;
3913 free(*last);
3914 *last = curmailers;
3915 }
3916 }
3917
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003918 /* Update server_state_file_name to backend name if backend is supposed to use
3919 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003920 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003921 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
3922 curproxy->server_state_file_name == NULL)
3923 curproxy->server_state_file_name = strdup(curproxy->id);
3924 }
3925
Willy Tarreaubafbe012017-11-24 17:34:44 +01003926 pool_head_hdr_idx = create_pool("hdr_idx",
Willy Tarreauac1932d2011-10-24 19:14:41 +02003927 global.tune.max_http_hdr * sizeof(struct hdr_idx_elem),
Willy Tarreau34eb6712011-10-24 18:15:04 +02003928 MEM_F_SHARED);
3929
Ben Draut054fbee2018-04-13 15:43:04 -06003930 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
3931 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
3932 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
3933 curr_resolvers->id, curr_resolvers->conf.file,
3934 curr_resolvers->conf.line);
3935 err_code |= ERR_WARN;
3936 }
3937 }
3938
William Lallemand48b4bb42017-10-23 14:36:34 +02003939 list_for_each_entry(postparser, &postparsers, list) {
3940 if (postparser->func)
3941 cfgerr += postparser->func();
3942 }
3943
Willy Tarreaubb925012009-07-23 13:36:36 +02003944 if (cfgerr > 0)
3945 err_code |= ERR_ALERT | ERR_FATAL;
3946 out:
3947 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003948}
3949
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003950/*
3951 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
3952 * parsing sessions.
3953 */
3954void cfg_register_keywords(struct cfg_kw_list *kwl)
3955{
3956 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
3957}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003958
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003959/*
3960 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
3961 */
3962void cfg_unregister_keywords(struct cfg_kw_list *kwl)
3963{
3964 LIST_DEL(&kwl->list);
3965 LIST_INIT(&kwl->list);
3966}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003967
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003968/* this function register new section in the haproxy configuration file.
3969 * <section_name> is the name of this new section and <section_parser>
3970 * is the called parser. If two section declaration have the same name,
3971 * only the first declared is used.
3972 */
3973int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02003974 int (*section_parser)(const char *, int, char **, int),
3975 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003976{
3977 struct cfg_section *cs;
3978
Willy Tarreau5e4261b2016-05-17 16:16:09 +02003979 list_for_each_entry(cs, &sections, list) {
3980 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003981 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02003982 return 0;
3983 }
3984 }
3985
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003986 cs = calloc(1, sizeof(*cs));
3987 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003988 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003989 return 0;
3990 }
3991
3992 cs->section_name = section_name;
3993 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02003994 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003995
3996 LIST_ADDQ(&sections, &cs->list);
3997
3998 return 1;
3999}
4000
William Lallemand48b4bb42017-10-23 14:36:34 +02004001/* this function register a new function which will be called once the haproxy
4002 * configuration file has been parsed. It's useful to check dependencies
4003 * between sections or to resolve items once everything is parsed.
4004 */
4005int cfg_register_postparser(char *name, int (*func)())
4006{
4007 struct cfg_postparser *cp;
4008
4009 cp = calloc(1, sizeof(*cp));
4010 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004011 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004012 return 0;
4013 }
4014 cp->name = name;
4015 cp->func = func;
4016
4017 LIST_ADDQ(&postparsers, &cp->list);
4018
4019 return 1;
4020}
4021
Willy Tarreaubaaee002006-06-26 02:48:02 +02004022/*
David Carlier845efb52015-09-25 11:49:18 +01004023 * free all config section entries
4024 */
4025void cfg_unregister_sections(void)
4026{
4027 struct cfg_section *cs, *ics;
4028
4029 list_for_each_entry_safe(cs, ics, &sections, list) {
4030 LIST_DEL(&cs->list);
4031 free(cs);
4032 }
4033}
4034
Christopher Faulet7110b402016-10-26 11:09:44 +02004035void cfg_backup_sections(struct list *backup_sections)
4036{
4037 struct cfg_section *cs, *ics;
4038
4039 list_for_each_entry_safe(cs, ics, &sections, list) {
4040 LIST_DEL(&cs->list);
4041 LIST_ADDQ(backup_sections, &cs->list);
4042 }
4043}
4044
4045void cfg_restore_sections(struct list *backup_sections)
4046{
4047 struct cfg_section *cs, *ics;
4048
4049 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4050 LIST_DEL(&cs->list);
4051 LIST_ADDQ(&sections, &cs->list);
4052 }
4053}
4054
Willy Tarreaue6552512018-11-26 11:33:13 +01004055/* these are the config sections handled by default */
4056REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4057REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4058REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4059REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4060REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4061REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4062REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4063REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4064REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4065REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004066
David Carlier845efb52015-09-25 11:49:18 +01004067/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004068 * Local variables:
4069 * c-indent-level: 8
4070 * c-basic-offset: 8
4071 * End:
4072 */