blob: 977d4bd46660067d68ca1d310fa223bbb2a7550b [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Configuration parser
3 *
Willy Tarreauff011f22011-01-06 17:51:27 +01004 * Copyright 2000-2011 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Cyril Bonté1a0191d2014-08-29 20:20:02 +020013#ifdef CONFIG_HAP_CRYPT
14/* This is to have crypt() defined on Linux */
15#define _GNU_SOURCE
16
17#ifdef NEED_CRYPT_H
18/* some platforms such as Solaris need this */
19#include <crypt.h>
20#endif
21#endif /* CONFIG_HAP_CRYPT */
22
Willy Tarreaubaaee002006-06-26 02:48:02 +020023#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <netdb.h>
27#include <ctype.h>
Willy Tarreau95c20ac2007-03-25 15:39:23 +020028#include <pwd.h>
29#include <grp.h>
Willy Tarreau0b4ed902007-03-26 00:18:40 +020030#include <errno.h>
Willy Tarreau3f49b302007-06-11 00:29:26 +020031#include <sys/types.h>
32#include <sys/stat.h>
33#include <fcntl.h>
34#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035
Willy Tarreau2dd0d472006-06-29 17:53:05 +020036#include <common/cfgparse.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020037#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020038#include <common/config.h>
Willy Tarreau058e9072009-07-20 09:30:05 +020039#include <common/errors.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020040#include <common/memory.h>
41#include <common/standard.h>
42#include <common/time.h>
43#include <common/uri_auth.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010044#include <common/namespace.h>
Emeric Brunc60def82017-09-27 14:59:38 +020045#include <common/hathreads.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020046
47#include <types/capture.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020048#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020049#include <types/global.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010050#include <types/obj_type.h>
Emeric Brun32da3c42010-09-23 18:39:19 +020051#include <types/peers.h>
Simon Horman0d16a402015-01-30 11:22:58 +090052#include <types/mailers.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +020053#include <types/dns.h>
William Lallemand9ed62032016-11-21 17:49:11 +010054#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020055
Willy Tarreaueb0c6142007-05-07 00:53:22 +020056#include <proto/acl.h>
Christopher Faulet4fce0d82017-09-18 11:57:31 +020057#include <proto/action.h>
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +010058#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020059#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020060#include <proto/channel.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020061#include <proto/checks.h>
Baptiste Assmann201c07f2017-05-22 15:17:15 +020062#include <proto/dns.h>
William Lallemand9ed62032016-11-21 17:49:11 +010063#include <proto/stats.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020064#include <proto/filters.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020065#include <proto/frontend.h>
Willy Tarreau34eb6712011-10-24 18:15:04 +020066#include <proto/hdr_idx.h>
Willy Tarreau61c112a2018-10-02 16:43:32 +020067#include <proto/http_rules.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020068#include <proto/lb_chash.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010069#include <proto/lb_fas.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020070#include <proto/lb_fwlc.h>
71#include <proto/lb_fwrr.h>
72#include <proto/lb_map.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020073#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020074#include <proto/log.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020075#include <proto/protocol.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010076#include <proto/proto_http.h>
Willy Tarreau2b5652f2006-12-31 17:46:05 +010077#include <proto/proxy.h>
Emeric Brun32da3c42010-09-23 18:39:19 +020078#include <proto/peers.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020079#include <proto/sample.h>
Willy Tarreau9903f0e2015-04-04 18:50:31 +020080#include <proto/session.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020081#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020082#include <proto/stream.h>
Emeric Brunb982a3d2010-01-04 15:45:53 +010083#include <proto/stick_table.h>
Willy Tarreau39713102016-11-25 15:49:32 +010084#include <proto/task.h>
85#include <proto/tcp_rules.h>
Olivier Houchard673867c2018-05-25 16:58:52 +020086#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020087
88
Willy Tarreauf3c69202006-07-09 16:42:34 +020089/* This is the SSLv3 CLIENT HELLO packet used in conjunction with the
90 * ssl-hello-chk option to ensure that the remote server speaks SSL.
91 *
92 * Check RFC 2246 (TLSv1.0) sections A.3 and A.4 for details.
93 */
94const char sslv3_client_hello_pkt[] = {
95 "\x16" /* ContentType : 0x16 = Hanshake */
96 "\x03\x00" /* ProtocolVersion : 0x0300 = SSLv3 */
97 "\x00\x79" /* ContentLength : 0x79 bytes after this one */
98 "\x01" /* HanshakeType : 0x01 = CLIENT HELLO */
99 "\x00\x00\x75" /* HandshakeLength : 0x75 bytes after this one */
100 "\x03\x00" /* Hello Version : 0x0300 = v3 */
101 "\x00\x00\x00\x00" /* Unix GMT Time (s) : filled with <now> (@0x0B) */
102 "HAPROXYSSLCHK\nHAPROXYSSLCHK\n" /* Random : must be exactly 28 bytes */
103 "\x00" /* Session ID length : empty (no session ID) */
104 "\x00\x4E" /* Cipher Suite Length : 78 bytes after this one */
105 "\x00\x01" "\x00\x02" "\x00\x03" "\x00\x04" /* 39 most common ciphers : */
106 "\x00\x05" "\x00\x06" "\x00\x07" "\x00\x08" /* 0x01...0x1B, 0x2F...0x3A */
107 "\x00\x09" "\x00\x0A" "\x00\x0B" "\x00\x0C" /* This covers RSA/DH, */
108 "\x00\x0D" "\x00\x0E" "\x00\x0F" "\x00\x10" /* various bit lengths, */
109 "\x00\x11" "\x00\x12" "\x00\x13" "\x00\x14" /* SHA1/MD5, DES/3DES/AES... */
110 "\x00\x15" "\x00\x16" "\x00\x17" "\x00\x18"
111 "\x00\x19" "\x00\x1A" "\x00\x1B" "\x00\x2F"
112 "\x00\x30" "\x00\x31" "\x00\x32" "\x00\x33"
113 "\x00\x34" "\x00\x35" "\x00\x36" "\x00\x37"
114 "\x00\x38" "\x00\x39" "\x00\x3A"
115 "\x01" /* Compression Length : 0x01 = 1 byte for types */
116 "\x00" /* Compression Type : 0x00 = NULL compression */
117};
118
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +0100119/* Used to chain configuration sections definitions. This list
120 * stores struct cfg_section
121 */
122struct list sections = LIST_HEAD_INIT(sections);
123
William Lallemand48b4bb42017-10-23 14:36:34 +0200124struct list postparsers = LIST_HEAD_INIT(postparsers);
125
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100126char *cursection = NULL;
127struct proxy defproxy = { }; /* fake proxy used to assign default values on all instances */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200128int cfg_maxpconn = DEFAULT_MAXCONN; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +0100129int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +0100130char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200131
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200132/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100133struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200134 .list = LIST_HEAD_INIT(cfg_keywords.list)
135};
136
Willy Tarreaubaaee002006-06-26 02:48:02 +0200137/*
138 * converts <str> to a list of listeners which are dynamically allocated.
139 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
140 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
141 * - <port> is a numerical port from 1 to 65535 ;
142 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
143 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200144 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
145 * not NULL, it must be a valid pointer to either NULL or a freeable area that
146 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200147 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200148int str2listener(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
Willy Tarreaubaaee002006-06-26 02:48:02 +0200149{
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100150 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200151 int port, end;
152
153 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200154
Willy Tarreaubaaee002006-06-26 02:48:02 +0200155 while (next && *next) {
William Lallemand75ea0a02017-11-15 19:02:58 +0100156 int inherited = 0;
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200157 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100158 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200159
160 str = next;
161 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100162 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200163 *next++ = 0;
164 }
165
Willy Tarreau48ef4c92017-01-06 18:32:38 +0100166 ss2 = str2sa_range(str, NULL, &port, &end, err,
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200167 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +0200168 NULL, 1);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100169 if (!ss2)
170 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200171
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100172 if (ss2->ss_family == AF_INET || ss2->ss_family == AF_INET6) {
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100173 if (!port && !end) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200174 memprintf(err, "missing port number: '%s'\n", str);
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100175 goto fail;
Emeric Bruned760922010-10-22 17:59:25 +0200176 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200177
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100178 if (!port || !end) {
179 memprintf(err, "port offsets are not allowed in 'bind': '%s'\n", str);
180 goto fail;
181 }
182
Emeric Bruned760922010-10-22 17:59:25 +0200183 if (port < 1 || port > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200184 memprintf(err, "invalid port '%d' specified for address '%s'.\n", port, str);
Emeric Bruned760922010-10-22 17:59:25 +0200185 goto fail;
186 }
187
188 if (end < 1 || end > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200189 memprintf(err, "invalid port '%d' specified for address '%s'.\n", end, str);
Emeric Bruned760922010-10-22 17:59:25 +0200190 goto fail;
191 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200192 }
Willy Tarreau40aa0702013-03-10 23:51:38 +0100193 else if (ss2->ss_family == AF_UNSPEC) {
194 socklen_t addr_len;
William Lallemand75ea0a02017-11-15 19:02:58 +0100195 inherited = 1;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100196
197 /* We want to attach to an already bound fd whose number
198 * is in the addr part of ss2 when cast to sockaddr_in.
199 * Note that by definition there is a single listener.
200 * We still have to determine the address family to
201 * register the correct protocol.
202 */
203 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
204 addr_len = sizeof(*ss2);
205 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
206 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
207 goto fail;
208 }
209
210 port = end = get_host_port(ss2);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200211
212 } else if (ss2->ss_family == AF_CUST_SOCKPAIR) {
213 socklen_t addr_len;
214 inherited = 1;
215
216 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
217 addr_len = sizeof(*ss2);
218 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
219 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
220 goto fail;
221 }
222
223 ss2->ss_family = AF_CUST_SOCKPAIR; /* reassign AF_CUST_SOCKPAIR because of getsockname */
224 port = end = 0;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100225 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200226
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100227 /* OK the address looks correct */
William Lallemand75ea0a02017-11-15 19:02:58 +0100228 if (!create_listeners(bind_conf, ss2, port, end, fd, inherited, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200229 memprintf(err, "%s for address '%s'.\n", *err, str);
230 goto fail;
231 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200232 } /* end while(next) */
233 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200234 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200235 fail:
236 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200237 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200238}
239
William Lallemand6e62fb62015-04-28 16:55:23 +0200240/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100241 * Report an error in <msg> when there are too many arguments. This version is
242 * intended to be used by keyword parsers so that the message will be included
243 * into the general error message. The index is the current keyword in args.
244 * Return 0 if the number of argument is correct, otherwise build a message and
245 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
246 * message may also be null, it will simply not be produced (useful to check only).
247 * <msg> and <err_code> are only affected on error.
248 */
249int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
250{
251 int i;
252
253 if (!*args[index + maxarg + 1])
254 return 0;
255
256 if (msg) {
257 *msg = NULL;
258 memprintf(msg, "%s", args[0]);
259 for (i = 1; i <= index; i++)
260 memprintf(msg, "%s %s", *msg, args[i]);
261
262 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
263 }
264 if (err_code)
265 *err_code |= ERR_ALERT | ERR_FATAL;
266
267 return 1;
268}
269
270/*
271 * same as too_many_args_idx with a 0 index
272 */
273int too_many_args(int maxarg, char **args, char **msg, int *err_code)
274{
275 return too_many_args_idx(maxarg, 0, args, msg, err_code);
276}
277
278/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200279 * Report a fatal Alert when there is too much arguments
280 * The index is the current keyword in args
281 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
282 * Fill err_code with an ERR_ALERT and an ERR_FATAL
283 */
284int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
285{
286 char *kw = NULL;
287 int i;
288
289 if (!*args[index + maxarg + 1])
290 return 0;
291
292 memprintf(&kw, "%s", args[0]);
293 for (i = 1; i <= index; i++) {
294 memprintf(&kw, "%s %s", kw, args[i]);
295 }
296
Christopher Faulet767a84b2017-11-24 16:50:31 +0100297 ha_alert("parsing [%s:%d] : '%s' cannot handle unexpected argument '%s'.\n", file, linenum, kw, args[index + maxarg + 1]);
William Lallemand6e62fb62015-04-28 16:55:23 +0200298 free(kw);
299 *err_code |= ERR_ALERT | ERR_FATAL;
300 return 1;
301}
302
303/*
304 * same as alertif_too_many_args_idx with a 0 index
305 */
306int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
307{
308 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
309}
310
Willy Tarreau61d18892009-03-31 10:49:21 +0200311
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100312/* Report it if a request ACL condition uses some keywords that are incompatible
313 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
314 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
315 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100316 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100317int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100318{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100319 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200320 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100321
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100322 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100323 return 0;
324
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100325 acl = acl_cond_conflicts(cond, where);
326 if (acl) {
327 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100328 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
329 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100330 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100331 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
332 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100333 return ERR_WARN;
334 }
335 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100336 return 0;
337
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100338 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100339 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
340 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100341 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100342 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
343 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100344 return ERR_WARN;
345}
346
Christopher Faulet62519022017-10-16 15:49:32 +0200347/* Parse a string representing a process number or a set of processes. It must
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100348 * be "all", "odd", "even", a number between 1 and <LONGBITS> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100349 * two such numbers delimited by a dash ('-'). On success, it returns
350 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200351 *
352 * Note: this function can also be used to parse a thread number or a set of
353 * threads.
354 */
Christopher Faulet26028f62017-11-22 15:01:51 +0100355int parse_process_number(const char *arg, unsigned long *proc, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200356{
Christopher Faulet26028f62017-11-22 15:01:51 +0100357 if (autoinc) {
358 *autoinc = 0;
359 if (strncmp(arg, "auto:", 5) == 0) {
360 arg += 5;
361 *autoinc = 1;
362 }
363 }
364
Christopher Faulet62519022017-10-16 15:49:32 +0200365 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100366 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200367 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100368 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200369 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100370 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200371 else {
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100372 char *dash;
373 unsigned int low, high;
374
Christopher Faulet5ab51772017-11-22 11:21:58 +0100375 if (!isdigit((int)*arg)) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100376 memprintf(err, "'%s' is not a valid number.\n", arg);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100377 return -1;
378 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100379
380 low = high = str2uic(arg);
381 if ((dash = strchr(arg, '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100382 high = ((!*(dash+1)) ? LONGBITS : str2uic(dash + 1));
383
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100384 if (high < low) {
385 unsigned int swap = low;
386 low = high;
387 high = swap;
388 }
389
Christopher Faulet5ab51772017-11-22 11:21:58 +0100390 if (low < 1 || low > LONGBITS || high > LONGBITS) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100391 memprintf(err, "'%s' is not a valid number/range."
392 " It supports numbers from 1 to %d.\n",
Christopher Faulet5ab51772017-11-22 11:21:58 +0100393 arg, LONGBITS);
394 return 1;
395 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100396
397 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100398 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200399 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100400
Christopher Faulet5ab51772017-11-22 11:21:58 +0100401 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200402}
403
David Carlier7e351ee2017-12-01 09:14:02 +0000404#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200405/* Parse cpu sets. Each CPU set is either a unique number between 0 and
406 * <LONGBITS> or a range with two such numbers delimited by a dash
407 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
408 * returns 0. otherwise it returns 1 with an error message in <err>.
409 */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100410unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200411{
412 int cur_arg = 0;
413
414 *cpu_set = 0;
415 while (*args[cur_arg]) {
416 char *dash;
417 unsigned int low, high;
418
419 if (!isdigit((int)*args[cur_arg])) {
420 memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
421 return -1;
422 }
423
424 low = high = str2uic(args[cur_arg]);
425 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100426 high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
Christopher Faulet62519022017-10-16 15:49:32 +0200427
428 if (high < low) {
429 unsigned int swap = low;
430 low = high;
431 high = swap;
432 }
433
434 if (high >= LONGBITS) {
435 memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
436 return 1;
437 }
438
439 while (low <= high)
440 *cpu_set |= 1UL << low++;
441
442 cur_arg++;
443 }
444 return 0;
445}
David Carlier7e351ee2017-12-01 09:14:02 +0000446#endif
447
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200448void init_default_instance()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200449{
Willy Tarreau97cb7802010-01-03 20:23:58 +0100450 init_new_proxy(&defproxy);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200451 defproxy.mode = PR_MODE_TCP;
452 defproxy.state = PR_STNEW;
453 defproxy.maxconn = cfg_maxpconn;
454 defproxy.conn_retries = CONN_RETRIES;
Joseph Lynch726ab712015-05-11 23:25:34 -0700455 defproxy.redispatch_after = 0;
Andrew Rodlandb1f48e32016-10-25 12:49:05 -0400456 defproxy.lbprm.chash.balance_factor = 0;
Olivier Houchard86006a52018-12-14 19:37:49 +0100457 defproxy.options = PR_O_REUSE_SAFE;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100458
Simon Horman66183002013-02-23 10:16:43 +0900459 defproxy.defsrv.check.inter = DEF_CHKINTR;
460 defproxy.defsrv.check.fastinter = 0;
461 defproxy.defsrv.check.downinter = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900462 defproxy.defsrv.agent.inter = DEF_CHKINTR;
463 defproxy.defsrv.agent.fastinter = 0;
464 defproxy.defsrv.agent.downinter = 0;
Simon Horman58c32972013-11-25 10:46:38 +0900465 defproxy.defsrv.check.rise = DEF_RISETIME;
466 defproxy.defsrv.check.fall = DEF_FALLTIME;
467 defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME;
468 defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME;
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200469 defproxy.defsrv.check.port = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900470 defproxy.defsrv.agent.port = 0;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100471 defproxy.defsrv.maxqueue = 0;
472 defproxy.defsrv.minconn = 0;
473 defproxy.defsrv.maxconn = 0;
Olivier Houchard006e3102018-12-10 18:30:32 +0100474 defproxy.defsrv.max_idle_conns = -1;
Olivier Houchardb7b3faa2018-12-14 18:15:36 +0100475 defproxy.defsrv.pool_purge_delay = 1000;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100476 defproxy.defsrv.slowstart = 0;
477 defproxy.defsrv.onerror = DEF_HANA_ONERR;
478 defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT;
479 defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1;
Simon Horman64e34162015-02-06 11:11:57 +0900480
481 defproxy.email_alert.level = LOG_ALERT;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +0200482 defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200483}
484
Willy Tarreauade5ec42010-01-28 19:33:49 +0100485
Willy Tarreaubaaee002006-06-26 02:48:02 +0200486/*
William Lallemand51097192015-04-14 16:35:22 +0200487 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200488 * Returns the error code, 0 if OK, or any combination of :
489 * - ERR_ABORT: must abort ASAP
490 * - ERR_FATAL: we can continue parsing but not start the service
491 * - ERR_WARN: a warning has been emitted
492 * - ERR_ALERT: an alert has been emitted
493 * Only the two first ones can stop processing, the two others are just
494 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200495 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200496int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
497{
498 static struct peers *curpeers = NULL;
499 struct peer *newpeer = NULL;
500 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200501 struct bind_conf *bind_conf;
502 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200503 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100504 char *errmsg = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200505
506 if (strcmp(args[0], "peers") == 0) { /* new peers section */
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100507 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100508 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100509 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100510 goto out;
511 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200512
William Lallemand6e62fb62015-04-28 16:55:23 +0200513 if (alertif_too_many_args(1, file, linenum, args, &err_code))
514 goto out;
515
Emeric Brun32da3c42010-09-23 18:39:19 +0200516 err = invalid_char(args[1]);
517 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100518 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
519 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100520 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100521 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200522 }
523
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200524 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200525 /*
526 * If there are two proxies with the same name only following
527 * combinations are allowed:
528 */
529 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100530 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
531 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200532 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200533 }
534 }
535
Vincent Bernat02779b62016-04-03 13:48:43 +0200536 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100537 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200538 err_code |= ERR_ALERT | ERR_ABORT;
539 goto out;
540 }
541
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200542 curpeers->next = cfg_peers;
543 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200544 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200545 curpeers->conf.line = linenum;
546 curpeers->last_change = now.tv_sec;
547 curpeers->id = strdup(args[1]);
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200548 curpeers->state = PR_STNEW;
Emeric Brun32da3c42010-09-23 18:39:19 +0200549 }
550 else if (strcmp(args[0], "peer") == 0) { /* peer definition */
David du Colombier6f5ccb12011-03-10 22:26:24 +0100551 struct sockaddr_storage *sk;
Willy Tarreau2aa38802013-02-20 19:20:59 +0100552 int port1, port2;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100553 struct protocol *proto;
Emeric Brun32da3c42010-09-23 18:39:19 +0200554
555 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100556 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
557 file, linenum, args[0]);
Emeric Brun32da3c42010-09-23 18:39:19 +0200558 err_code |= ERR_ALERT | ERR_FATAL;
559 goto out;
560 }
561
562 err = invalid_char(args[1]);
563 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100564 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
565 file, linenum, *err, args[1]);
Emeric Brun32da3c42010-09-23 18:39:19 +0200566 err_code |= ERR_ALERT | ERR_FATAL;
567 goto out;
568 }
569
Vincent Bernat02779b62016-04-03 13:48:43 +0200570 if ((newpeer = calloc(1, sizeof(*newpeer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100571 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200572 err_code |= ERR_ALERT | ERR_ABORT;
573 goto out;
574 }
575
576 /* the peers are linked backwards first */
577 curpeers->count++;
578 newpeer->next = curpeers->remote;
579 curpeers->remote = newpeer;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200580 newpeer->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200581 newpeer->conf.line = linenum;
582
583 newpeer->last_change = now.tv_sec;
584 newpeer->id = strdup(args[1]);
585
Willy Tarreau48ef4c92017-01-06 18:32:38 +0100586 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Willy Tarreau2aa38802013-02-20 19:20:59 +0100587 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100588 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau2aa38802013-02-20 19:20:59 +0100589 err_code |= ERR_ALERT | ERR_FATAL;
590 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200591 }
Willy Tarreaub36487e2013-03-10 18:37:42 +0100592
593 proto = protocol_by_family(sk->ss_family);
594 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100595 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
596 file, linenum, args[0], args[1]);
Willy Tarreaub36487e2013-03-10 18:37:42 +0100597 err_code |= ERR_ALERT | ERR_FATAL;
598 goto out;
599 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100600
601 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100602 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
603 file, linenum, args[0], args[1], args[2]);
Emeric Brun32da3c42010-09-23 18:39:19 +0200604 err_code |= ERR_ALERT | ERR_FATAL;
605 goto out;
606 }
607
Willy Tarreau2aa38802013-02-20 19:20:59 +0100608 if (!port1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100609 ha_alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n",
610 file, linenum, args[0], args[1], args[2]);
Emeric Brun32da3c42010-09-23 18:39:19 +0200611 err_code |= ERR_ALERT | ERR_FATAL;
612 goto out;
613 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100614
Emeric Brun32da3c42010-09-23 18:39:19 +0200615 newpeer->addr = *sk;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100616 newpeer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100617 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200618 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100619 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200620
Emeric Brun32da3c42010-09-23 18:39:19 +0200621 if (strcmp(newpeer->id, localpeer) == 0) {
622 /* Current is local peer, it define a frontend */
623 newpeer->local = 1;
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200624 cfg_peers->local = newpeer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200625
626 if (!curpeers->peers_fe) {
627 if ((curpeers->peers_fe = calloc(1, sizeof(struct proxy))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100628 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200629 err_code |= ERR_ALERT | ERR_ABORT;
630 goto out;
631 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200632
Willy Tarreau237250c2011-07-29 01:49:03 +0200633 init_new_proxy(curpeers->peers_fe);
634 curpeers->peers_fe->parent = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +0200635 curpeers->peers_fe->id = strdup(args[1]);
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200636 curpeers->peers_fe->conf.args.file = curpeers->peers_fe->conf.file = strdup(file);
637 curpeers->peers_fe->conf.args.line = curpeers->peers_fe->conf.line = linenum;
Willy Tarreau91d96282015-03-13 15:47:26 +0100638 peers_setup_frontend(curpeers->peers_fe);
Willy Tarreau4348fad2012-09-20 16:48:07 +0200639
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100640 bind_conf = bind_conf_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW));
Willy Tarreau4348fad2012-09-20 16:48:07 +0200641
Willy Tarreau902636f2013-03-10 19:44:48 +0100642 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
643 if (errmsg && *errmsg) {
644 indent_msg(&errmsg, 2);
Christopher Faulet767a84b2017-11-24 16:50:31 +0100645 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200646 }
647 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100648 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
649 file, linenum, args[0], args[1], args[2]);
Emeric Brun32da3c42010-09-23 18:39:19 +0200650 err_code |= ERR_FATAL;
651 goto out;
652 }
Willy Tarreau4348fad2012-09-20 16:48:07 +0200653
654 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
Willy Tarreauacf3bf92013-01-18 10:51:07 +0100655 l->maxaccept = 1;
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200656 l->maxconn = curpeers->peers_fe->maxconn;
657 l->backlog = curpeers->peers_fe->backlog;
Willy Tarreau9903f0e2015-04-04 18:50:31 +0200658 l->accept = session_accept_fd;
Vincent Bernat3c2f2f22016-04-03 13:48:42 +0200659 l->analysers |= curpeers->peers_fe->fe_req_ana;
660 l->default_target = curpeers->peers_fe->default_target;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200661 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
662 global.maxsock += l->maxconn;
663 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200664 }
Willy Tarreau8b8fd562013-01-18 11:12:27 +0100665 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100666 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d.\n",
667 file, linenum, args[0], args[1],
668 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line);
Willy Tarreau8b8fd562013-01-18 11:12:27 +0100669 err_code |= ERR_FATAL;
670 goto out;
671 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200672 }
673 } /* neither "peer" nor "peers" */
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200674 else if (!strcmp(args[0], "disabled")) { /* disables this peers section */
675 curpeers->state = PR_STSTOPPED;
676 }
677 else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */
678 curpeers->state = PR_STNEW;
679 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200680 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100681 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200682 err_code |= ERR_ALERT | ERR_FATAL;
683 goto out;
684 }
685
686out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100687 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200688 return err_code;
689}
690
Baptiste Assmann325137d2015-04-13 23:40:55 +0200691/*
692 * Parse a <resolvers> section.
693 * Returns the error code, 0 if OK, or any combination of :
694 * - ERR_ABORT: must abort ASAP
695 * - ERR_FATAL: we can continue parsing but not start the service
696 * - ERR_WARN: a warning has been emitted
697 * - ERR_ALERT: an alert has been emitted
698 * Only the two first ones can stop processing, the two others are just
699 * indicators.
700 */
701int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
702{
703 static struct dns_resolvers *curr_resolvers = NULL;
704 struct dns_nameserver *newnameserver = NULL;
705 const char *err;
706 int err_code = 0;
707 char *errmsg = NULL;
708
709 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
710 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100711 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200712 err_code |= ERR_ALERT | ERR_ABORT;
713 goto out;
714 }
715
716 err = invalid_char(args[1]);
717 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100718 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
719 file, linenum, *err, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200720 err_code |= ERR_ALERT | ERR_ABORT;
721 goto out;
722 }
723
724 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
725 /* Error if two resolvers owns the same name */
726 if (strcmp(curr_resolvers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100727 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
728 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200729 err_code |= ERR_ALERT | ERR_ABORT;
730 }
731 }
732
Vincent Bernat02779b62016-04-03 13:48:43 +0200733 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100734 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200735 err_code |= ERR_ALERT | ERR_ABORT;
736 goto out;
737 }
738
739 /* default values */
740 LIST_ADDQ(&dns_resolvers, &curr_resolvers->list);
741 curr_resolvers->conf.file = strdup(file);
742 curr_resolvers->conf.line = linenum;
743 curr_resolvers->id = strdup(args[1]);
744 curr_resolvers->query_ids = EB_ROOT;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200745 /* default maximum response size */
746 curr_resolvers->accepted_payload_size = 512;
Baptiste Assmann987e16d2016-11-02 22:23:31 +0100747 /* default hold period for nx, other, refuse and timeout is 30s */
748 curr_resolvers->hold.nx = 30000;
749 curr_resolvers->hold.other = 30000;
750 curr_resolvers->hold.refused = 30000;
751 curr_resolvers->hold.timeout = 30000;
Baptiste Assmann686408b2017-08-18 10:15:42 +0200752 curr_resolvers->hold.obsolete = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200753 /* default hold period for valid is 10s */
Baptiste Assmann4c5490a2015-07-14 21:42:49 +0200754 curr_resolvers->hold.valid = 10000;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200755 curr_resolvers->timeout.resolve = 1000;
756 curr_resolvers->timeout.retry = 1000;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200757 curr_resolvers->resolve_retries = 3;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200758 curr_resolvers->nb_nameservers = 0;
759 LIST_INIT(&curr_resolvers->nameservers);
760 LIST_INIT(&curr_resolvers->resolutions.curr);
761 LIST_INIT(&curr_resolvers->resolutions.wait);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100762 HA_SPIN_INIT(&curr_resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200763 }
764 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
765 struct sockaddr_storage *sk;
766 int port1, port2;
767 struct protocol *proto;
768
769 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100770 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
771 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200772 err_code |= ERR_ALERT | ERR_FATAL;
773 goto out;
774 }
775
776 err = invalid_char(args[1]);
777 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100778 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
779 file, linenum, *err, args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200780 err_code |= ERR_ALERT | ERR_FATAL;
781 goto out;
782 }
783
Christopher Faulet67957bd2017-09-27 11:00:59 +0200784 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
Baptiste Assmanna315c552015-11-02 22:55:49 +0100785 /* Error if two resolvers owns the same name */
786 if (strcmp(newnameserver->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100787 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 -0600788 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
Baptiste Assmanna315c552015-11-02 22:55:49 +0100789 err_code |= ERR_ALERT | ERR_FATAL;
790 }
791 }
792
Vincent Bernat02779b62016-04-03 13:48:43 +0200793 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100794 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200795 err_code |= ERR_ALERT | ERR_ABORT;
796 goto out;
797 }
798
799 /* the nameservers are linked backward first */
Christopher Faulet67957bd2017-09-27 11:00:59 +0200800 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200801 newnameserver->resolvers = curr_resolvers;
802 newnameserver->conf.file = strdup(file);
803 newnameserver->conf.line = linenum;
804 newnameserver->id = strdup(args[1]);
805
Willy Tarreau48ef4c92017-01-06 18:32:38 +0100806 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200807 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100808 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200809 err_code |= ERR_ALERT | ERR_FATAL;
810 goto out;
811 }
812
813 proto = protocol_by_family(sk->ss_family);
814 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100815 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Baptiste Assmann325137d2015-04-13 23:40:55 +0200816 file, linenum, args[0], args[1]);
817 err_code |= ERR_ALERT | ERR_FATAL;
818 goto out;
819 }
820
821 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100822 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
823 file, linenum, args[0], args[1], args[2]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200824 err_code |= ERR_ALERT | ERR_FATAL;
825 goto out;
826 }
827
Baptiste Assmann7f43fa92016-01-21 00:59:46 +0100828 if (!port1 && !port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100829 ha_alert("parsing [%s:%d] : '%s %s' : no UDP port specified\n",
830 file, linenum, args[0], args[1]);
Baptiste Assmann7f43fa92016-01-21 00:59:46 +0100831 err_code |= ERR_ALERT | ERR_FATAL;
832 goto out;
833 }
834
Baptiste Assmann325137d2015-04-13 23:40:55 +0200835 newnameserver->addr = *sk;
836 }
Ben Draut44e609b2018-05-29 15:40:08 -0600837 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
838 const char *whitespace = "\r\n\t ";
839 char *resolv_line = NULL;
840 int resolv_linenum = 0;
841 FILE *f = NULL;
842 char *address = NULL;
843 struct sockaddr_storage *sk = NULL;
844 struct protocol *proto;
845 int duplicate_name = 0;
846
847 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
848 ha_alert("parsing [%s:%d] : out of memory.\n",
849 file, linenum);
850 err_code |= ERR_ALERT | ERR_FATAL;
851 goto resolv_out;
852 }
853
854 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
855 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
856 file, linenum);
857 err_code |= ERR_ALERT | ERR_FATAL;
858 goto resolv_out;
859 }
860
861 sk = calloc(1, sizeof(*sk));
862 if (sk == NULL) {
863 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
864 resolv_linenum);
865 err_code |= ERR_ALERT | ERR_FATAL;
866 goto resolv_out;
867 }
868
869 while (fgets(resolv_line, LINESIZE, f) != NULL) {
870 resolv_linenum++;
871 if (strncmp(resolv_line, "nameserver", 10) != 0)
872 continue;
873
874 address = strtok(resolv_line + 10, whitespace);
875 if (address == resolv_line + 10)
876 continue;
877
878 if (address == NULL) {
879 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
880 resolv_linenum);
881 err_code |= ERR_WARN;
882 continue;
883 }
884
885 duplicate_name = 0;
886 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
887 if (strcmp(newnameserver->id, address) == 0) {
888 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",
889 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
890 err_code |= ERR_WARN;
891 duplicate_name = 1;
892 }
893 }
894
895 if (duplicate_name)
896 continue;
897
898 memset(sk, 0, sizeof(*sk));
899 sk = str2ip2(address, sk, 1);
900 if (!sk) {
901 ha_warning("parsing [/etc/resolv.conf:%d] : address '%s' could not be recognized, namerserver will be excluded.\n",
902 resolv_linenum, address);
903 err_code |= ERR_WARN;
904 continue;
905 }
906
907 set_host_port(sk, 53);
908
909 proto = protocol_by_family(sk->ss_family);
910 if (!proto || !proto->connect) {
911 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
912 resolv_linenum, address);
913 err_code |= ERR_WARN;
914 continue;
915 }
916
917 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
918 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
919 err_code |= ERR_ALERT | ERR_FATAL;
920 goto resolv_out;
921 }
922
923 newnameserver->conf.file = strdup("/etc/resolv.conf");
924 if (newnameserver->conf.file == NULL) {
925 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
926 err_code |= ERR_ALERT | ERR_FATAL;
927 goto resolv_out;
928 }
929
930 newnameserver->id = strdup(address);
931 if (newnameserver->id == NULL) {
932 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
933 err_code |= ERR_ALERT | ERR_FATAL;
934 goto resolv_out;
935 }
936
937 newnameserver->resolvers = curr_resolvers;
938 newnameserver->conf.line = resolv_linenum;
939 newnameserver->addr = *sk;
940
941 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
942 }
943
944resolv_out:
945 free(sk);
946 free(resolv_line);
947 if (f != NULL)
948 fclose(f);
949 }
Baptiste Assmann325137d2015-04-13 23:40:55 +0200950 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
951 const char *res;
952 unsigned int time;
953
954 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100955 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
956 file, linenum, args[0]);
957 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
Baptiste Assmann325137d2015-04-13 23:40:55 +0200958 err_code |= ERR_ALERT | ERR_FATAL;
959 goto out;
960 }
961 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
962 if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100963 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
964 file, linenum, *res, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200965 err_code |= ERR_ALERT | ERR_FATAL;
966 goto out;
967 }
Baptiste Assmann987e16d2016-11-02 22:23:31 +0100968 if (strcmp(args[1], "nx") == 0)
969 curr_resolvers->hold.nx = time;
970 else if (strcmp(args[1], "other") == 0)
971 curr_resolvers->hold.other = time;
972 else if (strcmp(args[1], "refused") == 0)
973 curr_resolvers->hold.refused = time;
974 else if (strcmp(args[1], "timeout") == 0)
975 curr_resolvers->hold.timeout = time;
976 else if (strcmp(args[1], "valid") == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +0200977 curr_resolvers->hold.valid = time;
Olivier Houcharda8c6db82017-07-06 18:46:47 +0200978 else if (strcmp(args[1], "obsolete") == 0)
979 curr_resolvers->hold.obsolete = time;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200980 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100981 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
982 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200983 err_code |= ERR_ALERT | ERR_FATAL;
984 goto out;
985 }
986
987 }
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200988 else if (strcmp(args[0], "accepted_payload_size") == 0) {
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +0200989 int i = 0;
990
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200991 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100992 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
993 file, linenum, args[0]);
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200994 err_code |= ERR_ALERT | ERR_FATAL;
995 goto out;
996 }
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +0200997
998 i = atoi(args[1]);
Willy Tarreau0c219be2017-08-22 12:01:26 +0200999 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001000 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
1001 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001002 err_code |= ERR_ALERT | ERR_FATAL;
1003 goto out;
1004 }
1005
1006 curr_resolvers->accepted_payload_size = i;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001007 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001008 else if (strcmp(args[0], "resolution_pool_size") == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001009 ha_warning("parsing [%s:%d] : '%s' directive is now deprecated and ignored.\n",
1010 file, linenum, args[0]);
Christopher Faulet67957bd2017-09-27 11:00:59 +02001011 err_code |= ERR_WARN;
1012 goto out;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001013 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001014 else if (strcmp(args[0], "resolve_retries") == 0) {
1015 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001016 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1017 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001018 err_code |= ERR_ALERT | ERR_FATAL;
1019 goto out;
1020 }
1021 curr_resolvers->resolve_retries = atoi(args[1]);
1022 }
1023 else if (strcmp(args[0], "timeout") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001024 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001025 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
1026 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001027 err_code |= ERR_ALERT | ERR_FATAL;
1028 goto out;
1029 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001030 else if (strcmp(args[1], "retry") == 0 ||
1031 strcmp(args[1], "resolve") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001032 const char *res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001033 unsigned int tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001034
1035 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001036 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1037 file, linenum, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001038 err_code |= ERR_ALERT | ERR_FATAL;
1039 goto out;
1040 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001041 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001042 if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001043 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1044 file, linenum, *res, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001045 err_code |= ERR_ALERT | ERR_FATAL;
1046 goto out;
1047 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001048 if (args[1][2] == 't')
1049 curr_resolvers->timeout.retry = tout;
1050 else
1051 curr_resolvers->timeout.resolve = tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001052 }
1053 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001054 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
1055 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001056 err_code |= ERR_ALERT | ERR_FATAL;
1057 goto out;
1058 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001059 } /* neither "nameserver" nor "resolvers" */
1060 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001061 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001062 err_code |= ERR_ALERT | ERR_FATAL;
1063 goto out;
1064 }
1065
1066 out:
1067 free(errmsg);
1068 return err_code;
1069}
Simon Horman0d16a402015-01-30 11:22:58 +09001070
1071/*
William Lallemand51097192015-04-14 16:35:22 +02001072 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001073 * Returns the error code, 0 if OK, or any combination of :
1074 * - ERR_ABORT: must abort ASAP
1075 * - ERR_FATAL: we can continue parsing but not start the service
1076 * - ERR_WARN: a warning has been emitted
1077 * - ERR_ALERT: an alert has been emitted
1078 * Only the two first ones can stop processing, the two others are just
1079 * indicators.
1080 */
1081int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1082{
1083 static struct mailers *curmailers = NULL;
1084 struct mailer *newmailer = NULL;
1085 const char *err;
1086 int err_code = 0;
1087 char *errmsg = NULL;
1088
1089 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1090 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001091 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001092 err_code |= ERR_ALERT | ERR_ABORT;
1093 goto out;
1094 }
1095
1096 err = invalid_char(args[1]);
1097 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001098 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1099 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001100 err_code |= ERR_ALERT | ERR_ABORT;
1101 goto out;
1102 }
1103
1104 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1105 /*
1106 * If there are two proxies with the same name only following
1107 * combinations are allowed:
1108 */
1109 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001110 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1111 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001112 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001113 }
1114 }
1115
Vincent Bernat02779b62016-04-03 13:48:43 +02001116 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001117 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001118 err_code |= ERR_ALERT | ERR_ABORT;
1119 goto out;
1120 }
1121
1122 curmailers->next = mailers;
1123 mailers = curmailers;
1124 curmailers->conf.file = strdup(file);
1125 curmailers->conf.line = linenum;
1126 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001127 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1128 * But need enough time so that timeouts don't occur
1129 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001130 }
1131 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1132 struct sockaddr_storage *sk;
1133 int port1, port2;
1134 struct protocol *proto;
1135
1136 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001137 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1138 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001139 err_code |= ERR_ALERT | ERR_FATAL;
1140 goto out;
1141 }
1142
1143 err = invalid_char(args[1]);
1144 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001145 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1146 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001147 err_code |= ERR_ALERT | ERR_FATAL;
1148 goto out;
1149 }
1150
Vincent Bernat02779b62016-04-03 13:48:43 +02001151 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001152 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001153 err_code |= ERR_ALERT | ERR_ABORT;
1154 goto out;
1155 }
1156
1157 /* the mailers are linked backwards first */
1158 curmailers->count++;
1159 newmailer->next = curmailers->mailer_list;
1160 curmailers->mailer_list = newmailer;
1161 newmailer->mailers = curmailers;
1162 newmailer->conf.file = strdup(file);
1163 newmailer->conf.line = linenum;
1164
1165 newmailer->id = strdup(args[1]);
1166
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001167 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Simon Horman0d16a402015-01-30 11:22:58 +09001168 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001169 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001170 err_code |= ERR_ALERT | ERR_FATAL;
1171 goto out;
1172 }
1173
1174 proto = protocol_by_family(sk->ss_family);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09001175 if (!proto || !proto->connect || proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001176 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1177 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001178 err_code |= ERR_ALERT | ERR_FATAL;
1179 goto out;
1180 }
1181
1182 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001183 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1184 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001185 err_code |= ERR_ALERT | ERR_FATAL;
1186 goto out;
1187 }
1188
1189 if (!port1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001190 ha_alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n",
1191 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001192 err_code |= ERR_ALERT | ERR_FATAL;
1193 goto out;
1194 }
1195
1196 newmailer->addr = *sk;
1197 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001198 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001199 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001200 }
1201 else if (strcmp(args[0], "timeout") == 0) {
1202 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001203 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1204 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001205 err_code |= ERR_ALERT | ERR_FATAL;
1206 goto out;
1207 }
1208 else if (strcmp(args[1], "mail") == 0) {
1209 const char *res;
1210 unsigned int timeout_mail;
1211 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001212 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1213 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001214 err_code |= ERR_ALERT | ERR_FATAL;
1215 goto out;
1216 }
1217 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
1218 if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001219 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1220 file, linenum, *res, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001221 err_code |= ERR_ALERT | ERR_FATAL;
1222 goto out;
1223 }
1224 if (timeout_mail <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001225 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 +01001226 err_code |= ERR_ALERT | ERR_FATAL;
1227 goto out;
1228 }
1229 curmailers->timeout.mail = timeout_mail;
1230 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001231 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001232 file, linenum, args[0], args[1]);
1233 err_code |= ERR_ALERT | ERR_FATAL;
1234 goto out;
1235 }
1236 }
Simon Horman0d16a402015-01-30 11:22:58 +09001237 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);
Simon Horman0d16a402015-01-30 11:22:58 +09001239 err_code |= ERR_ALERT | ERR_FATAL;
1240 goto out;
1241 }
1242
1243out:
1244 free(errmsg);
1245 return err_code;
1246}
1247
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001248void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001249{
1250 free(p->email_alert.mailers.name);
1251 p->email_alert.mailers.name = NULL;
1252 free(p->email_alert.from);
1253 p->email_alert.from = NULL;
1254 free(p->email_alert.to);
1255 p->email_alert.to = NULL;
1256 free(p->email_alert.myhostname);
1257 p->email_alert.myhostname = NULL;
1258}
1259
Willy Tarreaubaaee002006-06-26 02:48:02 +02001260
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001261int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001262cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1263{
1264#ifdef CONFIG_HAP_NS
1265 const char *err;
1266 const char *item = args[0];
1267
1268 if (!strcmp(item, "namespace_list")) {
1269 return 0;
1270 }
1271 else if (!strcmp(item, "namespace")) {
1272 size_t idx = 1;
1273 const char *current;
1274 while (*(current = args[idx++])) {
1275 err = invalid_char(current);
1276 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001277 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1278 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001279 return ERR_ALERT | ERR_FATAL;
1280 }
1281
1282 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001283 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1284 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001285 return ERR_ALERT | ERR_FATAL;
1286 }
1287 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001288 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1289 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001290 return ERR_ALERT | ERR_FATAL;
1291 }
1292 }
1293 }
1294
1295 return 0;
1296#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001297 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1298 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001299 return ERR_ALERT | ERR_FATAL;
1300#endif
1301}
1302
1303int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001304cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1305{
1306
1307 int err_code = 0;
1308 const char *err;
1309
1310 if (!strcmp(args[0], "userlist")) { /* new userlist */
1311 struct userlist *newul;
1312
1313 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001314 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1315 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001316 err_code |= ERR_ALERT | ERR_FATAL;
1317 goto out;
1318 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001319 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1320 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001321
1322 err = invalid_char(args[1]);
1323 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001324 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1325 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001326 err_code |= ERR_ALERT | ERR_FATAL;
1327 goto out;
1328 }
1329
1330 for (newul = userlist; newul; newul = newul->next)
1331 if (!strcmp(newul->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001332 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1333 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001334 err_code |= ERR_WARN;
1335 goto out;
1336 }
1337
Vincent Bernat02779b62016-04-03 13:48:43 +02001338 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001339 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001340 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001341 err_code |= ERR_ALERT | ERR_ABORT;
1342 goto out;
1343 }
1344
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001345 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001346 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001347 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001348 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001349 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001350 goto out;
1351 }
1352
1353 newul->next = userlist;
1354 userlist = newul;
1355
1356 } else if (!strcmp(args[0], "group")) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001357 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001358 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001359 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001360
1361 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001362 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1363 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001364 err_code |= ERR_ALERT | ERR_FATAL;
1365 goto out;
1366 }
1367
1368 err = invalid_char(args[1]);
1369 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001370 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1371 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001372 err_code |= ERR_ALERT | ERR_FATAL;
1373 goto out;
1374 }
1375
William Lallemand4ac9f542015-05-28 18:03:51 +02001376 if (!userlist)
1377 goto out;
1378
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001379 for (ag = userlist->groups; ag; ag = ag->next)
1380 if (!strcmp(ag->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001381 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1382 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001383 err_code |= ERR_ALERT;
1384 goto out;
1385 }
1386
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001387 ag = calloc(1, sizeof(*ag));
1388 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001389 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001390 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001391 goto out;
1392 }
1393
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001394 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001395 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001396 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001397 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001398 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001399 goto out;
1400 }
1401
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001402 cur_arg = 2;
1403
1404 while (*args[cur_arg]) {
1405 if (!strcmp(args[cur_arg], "users")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001406 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001407 cur_arg += 2;
1408 continue;
1409 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001410 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1411 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001412 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001413 free(ag->groupusers);
1414 free(ag->name);
1415 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001416 goto out;
1417 }
1418 }
1419
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001420 ag->next = userlist->groups;
1421 userlist->groups = ag;
1422
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001423 } else if (!strcmp(args[0], "user")) { /* new user */
1424 struct auth_users *newuser;
1425 int cur_arg;
1426
1427 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001428 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1429 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001430 err_code |= ERR_ALERT | ERR_FATAL;
1431 goto out;
1432 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001433 if (!userlist)
1434 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001435
1436 for (newuser = userlist->users; newuser; newuser = newuser->next)
1437 if (!strcmp(newuser->user, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001438 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1439 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001440 err_code |= ERR_ALERT;
1441 goto out;
1442 }
1443
Vincent Bernat02779b62016-04-03 13:48:43 +02001444 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001445 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001446 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001447 err_code |= ERR_ALERT | ERR_ABORT;
1448 goto out;
1449 }
1450
1451 newuser->user = strdup(args[1]);
1452
1453 newuser->next = userlist->users;
1454 userlist->users = newuser;
1455
1456 cur_arg = 2;
1457
1458 while (*args[cur_arg]) {
1459 if (!strcmp(args[cur_arg], "password")) {
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001460#ifdef CONFIG_HAP_CRYPT
1461 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001462 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1463 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001464 err_code |= ERR_ALERT | ERR_FATAL;
1465 goto out;
1466 }
1467#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001468 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1469 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001470 err_code |= ERR_ALERT;
1471#endif
1472 newuser->pass = strdup(args[cur_arg + 1]);
1473 cur_arg += 2;
1474 continue;
1475 } else if (!strcmp(args[cur_arg], "insecure-password")) {
1476 newuser->pass = strdup(args[cur_arg + 1]);
1477 newuser->flags |= AU_O_INSECURE;
1478 cur_arg += 2;
1479 continue;
1480 } else if (!strcmp(args[cur_arg], "groups")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001481 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001482 cur_arg += 2;
1483 continue;
1484 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001485 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1486 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001487 err_code |= ERR_ALERT | ERR_FATAL;
1488 goto out;
1489 }
1490 }
1491 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001492 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 +01001493 err_code |= ERR_ALERT | ERR_FATAL;
1494 }
1495
1496out:
1497 return err_code;
1498}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001499
Christopher Faulet79bdef32016-11-04 22:36:15 +01001500int
1501cfg_parse_scope(const char *file, int linenum, char *line)
1502{
1503 char *beg, *end, *scope = NULL;
1504 int err_code = 0;
1505 const char *err;
1506
1507 beg = line + 1;
1508 end = strchr(beg, ']');
1509
1510 /* Detect end of scope declaration */
1511 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001512 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1513 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001514 err_code |= ERR_ALERT | ERR_FATAL;
1515 goto out;
1516 }
1517
1518 /* Get scope name and check its validity */
1519 scope = my_strndup(beg, end-beg);
1520 err = invalid_char(scope);
1521 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001522 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1523 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001524 err_code |= ERR_ALERT | ERR_ABORT;
1525 goto out;
1526 }
1527
1528 /* Be sure to have a scope declaration alone on its line */
1529 line = end+1;
1530 while (isspace((unsigned char)*line))
1531 line++;
1532 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001533 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1534 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001535 err_code |= ERR_ALERT | ERR_ABORT;
1536 goto out;
1537 }
1538
1539 /* We have a valid scope declaration, save it */
1540 free(cfg_scope);
1541 cfg_scope = scope;
1542 scope = NULL;
1543
1544 out:
1545 free(scope);
1546 return err_code;
1547}
1548
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001549int
1550cfg_parse_track_sc_num(unsigned int *track_sc_num,
1551 const char *arg, const char *end, char **errmsg)
1552{
1553 const char *p;
1554 unsigned int num;
1555
1556 p = arg;
1557 num = read_uint64(&arg, end);
1558
1559 if (arg != end) {
1560 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1561 return -1;
1562 }
1563
1564 if (num >= MAX_SESS_STKCTR) {
1565 memprintf(errmsg, "%u track-sc number exceeding "
1566 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1567 return -1;
1568 }
1569
1570 *track_sc_num = num;
1571 return 0;
1572}
1573
Willy Tarreaubaaee002006-06-26 02:48:02 +02001574/*
1575 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001576 * Returns the error code, 0 if OK, or any combination of :
1577 * - ERR_ABORT: must abort ASAP
1578 * - ERR_FATAL: we can continue parsing but not start the service
1579 * - ERR_WARN: a warning has been emitted
1580 * - ERR_ALERT: an alert has been emitted
1581 * Only the two first ones can stop processing, the two others are just
1582 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001583 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001584int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001585{
William Lallemand64e84512015-05-12 14:25:37 +02001586 char *thisline;
1587 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001588 FILE *f;
1589 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001590 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001591 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001592 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001593 int readbytes = 0;
1594
1595 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001596 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001597 return -1;
1598 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001599
David Carlier97880bb2016-04-08 10:35:26 +01001600 if ((f=fopen(file,"r")) == NULL) {
1601 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001602 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001603 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001604
William Lallemandb2f07452015-05-12 14:27:13 +02001605next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001606 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001607 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001608 char *end;
1609 char *args[MAX_LINE_ARGS + 1];
1610 char *line = thisline;
William Lallemandf9873ba2015-05-05 17:37:14 +02001611 int dquote = 0; /* double quote */
1612 int squote = 0; /* simple quote */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001613
Willy Tarreaubaaee002006-06-26 02:48:02 +02001614 linenum++;
1615
1616 end = line + strlen(line);
1617
William Lallemand64e84512015-05-12 14:25:37 +02001618 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001619 /* Check if we reached the limit and the last char is not \n.
1620 * Watch out for the last line without the terminating '\n'!
1621 */
William Lallemand64e84512015-05-12 14:25:37 +02001622 char *newline;
1623 int newlinesize = linesize * 2;
1624
1625 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1626 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001627 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1628 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001629 err_code |= ERR_ALERT | ERR_FATAL;
1630 continue;
1631 }
1632
1633 readbytes = linesize - 1;
1634 linesize = newlinesize;
1635 thisline = newline;
1636 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001637 }
1638
William Lallemand64e84512015-05-12 14:25:37 +02001639 readbytes = 0;
1640
Willy Tarreaubaaee002006-06-26 02:48:02 +02001641 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001642 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001643 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001644
Christopher Faulet79bdef32016-11-04 22:36:15 +01001645
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001646 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001647 err_code |= cfg_parse_scope(file, linenum, line);
1648 goto next_line;
1649 }
1650
Willy Tarreaubaaee002006-06-26 02:48:02 +02001651 arg = 0;
1652 args[arg] = line;
1653
1654 while (*line && arg < MAX_LINE_ARGS) {
William Lallemandf9873ba2015-05-05 17:37:14 +02001655 if (*line == '"' && !squote) { /* double quote outside single quotes */
1656 if (dquote)
1657 dquote = 0;
1658 else
1659 dquote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001660 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001661 end--;
1662 }
1663 else if (*line == '\'' && !dquote) { /* single quote outside double quotes */
1664 if (squote)
1665 squote = 0;
1666 else
1667 squote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001668 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001669 end--;
1670 }
1671 else if (*line == '\\' && !squote) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001672 /* first, we'll replace \\, \<space>, \#, \r, \n, \t, \xXX with their
1673 * C equivalent value. Other combinations left unchanged (eg: \1).
1674 */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001675 int skip = 0;
1676 if (line[1] == ' ' || line[1] == '\\' || line[1] == '#') {
1677 *line = line[1];
1678 skip = 1;
1679 }
1680 else if (line[1] == 'r') {
1681 *line = '\r';
1682 skip = 1;
William Lallemandf9873ba2015-05-05 17:37:14 +02001683 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001684 else if (line[1] == 'n') {
1685 *line = '\n';
1686 skip = 1;
1687 }
1688 else if (line[1] == 't') {
1689 *line = '\t';
1690 skip = 1;
1691 }
1692 else if (line[1] == 'x') {
Emeric Brunb982a3d2010-01-04 15:45:53 +01001693 if ((line + 3 < end) && ishex(line[2]) && ishex(line[3])) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001694 unsigned char hex1, hex2;
1695 hex1 = toupper(line[2]) - '0';
1696 hex2 = toupper(line[3]) - '0';
1697 if (hex1 > 9) hex1 -= 'A' - '9' - 1;
1698 if (hex2 > 9) hex2 -= 'A' - '9' - 1;
1699 *line = (hex1<<4) + hex2;
1700 skip = 3;
1701 }
1702 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001703 ha_alert("parsing [%s:%d] : invalid or incomplete '\\x' sequence in '%s'.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02001704 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001705 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001706 } else if (line[1] == '"') {
1707 *line = '"';
1708 skip = 1;
1709 } else if (line[1] == '\'') {
1710 *line = '\'';
1711 skip = 1;
William Lallemandb2f07452015-05-12 14:27:13 +02001712 } else if (line[1] == '$' && dquote) { /* escaping of $ only inside double quotes */
1713 *line = '$';
1714 skip = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001715 }
1716 if (skip) {
Cyril Bontédd1b01d2009-12-06 13:43:42 +01001717 memmove(line + 1, line + 1 + skip, end - (line + skip));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001718 end -= skip;
1719 }
1720 line++;
1721 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001722 else if ((!squote && !dquote && *line == '#') || *line == '\n' || *line == '\r') {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001723 /* end of string, end of loop */
1724 *line = 0;
1725 break;
1726 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001727 else if (!squote && !dquote && isspace((unsigned char)*line)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001728 /* a non-escaped space is an argument separator */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001729 *line++ = '\0';
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001730 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001731 line++;
1732 args[++arg] = line;
1733 }
William Lallemandb2f07452015-05-12 14:27:13 +02001734 else if (dquote && *line == '$') {
1735 /* environment variables are evaluated inside double quotes */
1736 char *var_beg;
1737 char *var_end;
1738 char save_char;
1739 char *value;
1740 int val_len;
1741 int newlinesize;
1742 int braces = 0;
1743
1744 var_beg = line + 1;
1745 var_end = var_beg;
1746
1747 if (*var_beg == '{') {
1748 var_beg++;
1749 var_end++;
1750 braces = 1;
1751 }
1752
1753 if (!isalpha((int)(unsigned char)*var_beg) && *var_beg != '_') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001754 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 +02001755 err_code |= ERR_ALERT | ERR_FATAL;
1756 goto next_line; /* skip current line */
1757 }
1758
1759 while (isalnum((int)(unsigned char)*var_end) || *var_end == '_')
1760 var_end++;
1761
1762 save_char = *var_end;
1763 *var_end = '\0';
1764 value = getenv(var_beg);
1765 *var_end = save_char;
1766 val_len = value ? strlen(value) : 0;
1767
1768 if (braces) {
1769 if (*var_end == '}') {
1770 var_end++;
1771 braces = 0;
1772 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001773 ha_alert("parsing [%s:%d] : Variable expansion: Mismatched braces.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001774 err_code |= ERR_ALERT | ERR_FATAL;
1775 goto next_line; /* skip current line */
1776 }
1777 }
1778
1779 newlinesize = (end - thisline) - (var_end - line) + val_len + 1;
1780
1781 /* if not enough space in thisline */
1782 if (newlinesize > linesize) {
1783 char *newline;
1784
1785 newline = realloc(thisline, newlinesize * sizeof(*thisline));
1786 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001787 ha_alert("parsing [%s:%d] : Variable expansion: Not enough memory.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001788 err_code |= ERR_ALERT | ERR_FATAL;
1789 goto next_line; /* slip current line */
1790 }
1791 /* recompute pointers if realloc returns a new pointer */
1792 if (newline != thisline) {
1793 int i;
1794 int diff;
1795
1796 for (i = 0; i <= arg; i++) {
1797 diff = args[i] - thisline;
1798 args[i] = newline + diff;
1799 }
1800
1801 diff = var_end - thisline;
1802 var_end = newline + diff;
1803 diff = end - thisline;
1804 end = newline + diff;
1805 diff = line - thisline;
1806 line = newline + diff;
1807 thisline = newline;
1808 }
1809 linesize = newlinesize;
1810 }
1811
1812 /* insert value inside the line */
1813 memmove(line + val_len, var_end, end - var_end + 1);
1814 memcpy(line, value, val_len);
1815 end += val_len - (var_end - line);
1816 line += val_len;
1817 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001818 else {
1819 line++;
1820 }
1821 }
William Lallemandb2f07452015-05-12 14:27:13 +02001822
William Lallemandf9873ba2015-05-05 17:37:14 +02001823 if (dquote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001824 ha_alert("parsing [%s:%d] : Mismatched double quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02001825 err_code |= ERR_ALERT | ERR_FATAL;
1826 }
1827
1828 if (squote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001829 ha_alert("parsing [%s:%d] : Mismatched simple quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02001830 err_code |= ERR_ALERT | ERR_FATAL;
1831 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001832
1833 /* empty line */
1834 if (!**args)
1835 continue;
1836
Willy Tarreau7bb651e2009-11-09 21:16:53 +01001837 if (*line) {
1838 /* we had to stop due to too many args.
1839 * Let's terminate the string, print the offending part then cut the
1840 * last arg.
1841 */
1842 while (*line && *line != '#' && *line != '\n' && *line != '\r')
1843 line++;
1844 *line = '\0';
1845
Christopher Faulet767a84b2017-11-24 16:50:31 +01001846 ha_alert("parsing [%s:%d]: line too long, truncating at word %d, position %ld: <%s>.\n",
1847 file, linenum, arg + 1, (long)(args[arg] - thisline + 1), args[arg]);
Willy Tarreau7bb651e2009-11-09 21:16:53 +01001848 err_code |= ERR_ALERT | ERR_FATAL;
1849 args[arg] = line;
1850 }
1851
Willy Tarreau540abe42007-05-02 20:50:16 +02001852 /* zero out remaining args and ensure that at least one entry
1853 * is zeroed out.
1854 */
1855 while (++arg <= MAX_LINE_ARGS) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001856 args[arg] = line;
1857 }
1858
Willy Tarreau3842f002009-06-14 11:39:52 +02001859 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001860 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02001861 char *tmp;
1862
Willy Tarreau3842f002009-06-14 11:39:52 +02001863 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02001864 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001865 for (arg=0; *args[arg+1]; arg++)
1866 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02001867 *tmp = '\0'; // fix the next arg to \0
1868 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001869 }
Willy Tarreau3842f002009-06-14 11:39:52 +02001870 else if (!strcmp(args[0], "default")) {
1871 kwm = KWM_DEF;
1872 for (arg=0; *args[arg+1]; arg++)
1873 args[arg] = args[arg+1]; // shift args after inversion
1874 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001875
William Lallemand0f99e342011-10-12 17:50:54 +02001876 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 && \
Willy Tarreaubeb859a2018-11-22 18:07:59 +01001877 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling")) {
1878 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 +02001879 err_code |= ERR_ALERT | ERR_FATAL;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001880 }
1881
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001882 /* detect section start */
1883 list_for_each_entry(ics, &sections, list) {
1884 if (strcmp(args[0], ics->section_name) == 0) {
1885 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001886 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001887 cs = ics;
1888 break;
1889 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001890 }
1891
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001892 if (pcs && pcs->post_section_parser) {
1893 err_code |= pcs->post_section_parser();
1894 if (err_code & ERR_ABORT)
1895 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001896 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01001897 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001898
William Lallemandd2ff56d2017-10-16 11:06:50 +02001899 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001900 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02001901 err_code |= ERR_ALERT | ERR_FATAL;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001902 } else {
William Lallemandd2ff56d2017-10-16 11:06:50 +02001903 err_code |= cs->section_parser(file, linenum, args, kwm);
1904 if (err_code & ERR_ABORT)
1905 goto err;
1906 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001907 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02001908
Christopher Fauletbf7a9592018-12-02 09:37:38 +01001909 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001910 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02001911
1912err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01001913 free(cfg_scope);
1914 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01001915 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001916 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001917 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02001918 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001919}
1920
Willy Tarreau64ab6072014-09-16 12:17:36 +02001921/* This function propagates processes from frontend <from> to backend <to> so
1922 * that it is always guaranteed that a backend pointed to by a frontend is
1923 * bound to all of its processes. After that, if the target is a "listen"
1924 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02001925 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02001926 * checked first to ensure that <to> is already bound to all processes of
1927 * <from>, there is no risk of looping and we ensure to follow the shortest
1928 * path to the destination.
1929 *
1930 * It is possible to set <to> to NULL for the first call so that the function
1931 * takes care of visiting the initial frontend in <from>.
1932 *
1933 * It is important to note that the function relies on the fact that all names
1934 * have already been resolved.
1935 */
1936void propagate_processes(struct proxy *from, struct proxy *to)
1937{
1938 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02001939
1940 if (to) {
1941 /* check whether we need to go down */
1942 if (from->bind_proc &&
1943 (from->bind_proc & to->bind_proc) == from->bind_proc)
1944 return;
1945
1946 if (!from->bind_proc && !to->bind_proc)
1947 return;
1948
1949 to->bind_proc = from->bind_proc ?
1950 (to->bind_proc | from->bind_proc) : 0;
1951
1952 /* now propagate down */
1953 from = to;
1954 }
1955
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01001956 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02001957 return;
1958
Willy Tarreauf6b70012014-12-18 14:00:43 +01001959 if (from->state == PR_STSTOPPED)
1960 return;
1961
Willy Tarreau64ab6072014-09-16 12:17:36 +02001962 /* default_backend */
1963 if (from->defbe.be)
1964 propagate_processes(from, from->defbe.be);
1965
1966 /* use_backend */
1967 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02001968 if (rule->dynamic)
1969 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02001970 to = rule->be.backend;
1971 propagate_processes(from, to);
1972 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02001973}
1974
Willy Tarreaubb925012009-07-23 13:36:36 +02001975/*
1976 * Returns the error code, 0 if OK, or any combination of :
1977 * - ERR_ABORT: must abort ASAP
1978 * - ERR_FATAL: we can continue parsing but not start the service
1979 * - ERR_WARN: a warning has been emitted
1980 * - ERR_ALERT: an alert has been emitted
1981 * Only the two first ones can stop processing, the two others are just
1982 * indicators.
1983 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001984int check_config_validity()
1985{
1986 int cfgerr = 0;
1987 struct proxy *curproxy = NULL;
1988 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02001989 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02001990 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001991 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01001992 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02001993 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06001994 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001995
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001996 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001997 /*
1998 * Now, check for the integrity of all that we have collected.
1999 */
2000
2001 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002002 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002003
Willy Tarreau193b8c62012-11-22 00:17:38 +01002004 if (!global.tune.max_http_hdr)
2005 global.tune.max_http_hdr = MAX_HTTP_HDR;
2006
2007 if (!global.tune.cookie_len)
2008 global.tune.cookie_len = CAPTURE_LEN;
2009
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002010 if (!global.tune.requri_len)
2011 global.tune.requri_len = REQURI_LEN;
2012
Willy Tarreaubafbe012017-11-24 17:34:44 +01002013 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002014
Willy Tarreaubafbe012017-11-24 17:34:44 +01002015 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002016
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002017 /* Post initialisation of the users and groups lists. */
2018 err_code = userlist_postinit();
2019 if (err_code != ERR_NONE)
2020 goto out;
2021
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002022 /* first, we will invert the proxy list order */
2023 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002024 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002025 struct proxy *next;
2026
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002027 next = proxies_list->next;
2028 proxies_list->next = curproxy;
2029 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002030 if (!next)
2031 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002032 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002033 }
2034
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002035 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002036 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002037 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002038 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002039 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002040 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002041 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002042 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002043
Willy Tarreau050536d2012-10-04 08:47:34 +02002044 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002045 /* proxy ID not set, use automatic numbering with first
2046 * spare entry starting with next_pxid.
2047 */
2048 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2049 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2050 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002051 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002052 next_pxid++;
2053
Willy Tarreau55ea7572007-06-17 19:56:27 +02002054
Willy Tarreaubaaee002006-06-26 02:48:02 +02002055 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002056 /* ensure we don't keep listeners uselessly bound */
2057 stop_proxy(curproxy);
Willy Tarreau02df7742015-05-01 19:59:56 +02002058 free((void *)curproxy->table.peers.name);
2059 curproxy->table.peers.p = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002060 continue;
2061 }
2062
Willy Tarreau102df612014-05-07 23:56:38 +02002063 /* Check multi-process mode compatibility for the current proxy */
2064
2065 if (curproxy->bind_proc) {
2066 /* an explicit bind-process was specified, let's check how many
2067 * processes remain.
2068 */
David Carliere6c39412015-07-02 07:00:17 +00002069 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002070
2071 curproxy->bind_proc &= nbits(global.nbproc);
2072 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002073 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 +02002074 curproxy->bind_proc = 1;
2075 }
2076 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002077 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 +02002078 curproxy->bind_proc = 0;
2079 }
2080 }
2081
Willy Tarreau3d209582014-05-09 17:06:11 +02002082 /* check and reduce the bind-proc of each listener */
2083 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2084 unsigned long mask;
2085
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002086 /* HTTP frontends with "h2" as ALPN/NPN will work in
2087 * HTTP/2 and absolutely require buffers 16kB or larger.
2088 */
2089#ifdef USE_OPENSSL
2090 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2091#ifdef OPENSSL_NPN_NEGOTIATED
2092 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002093 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002094 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",
2095 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002096 cfgerr++;
2097 }
2098#endif
2099#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2100 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002101 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002102 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",
2103 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002104 cfgerr++;
2105 }
2106#endif
2107 } /* HTTP && bufsize < 16384 */
2108#endif
2109
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002110 /* detect and address thread affinity inconsistencies */
2111 nbproc = 0;
2112 if (bind_conf->bind_proc)
2113 nbproc = my_ffsl(bind_conf->bind_proc);
2114
2115 mask = bind_conf->bind_thread[nbproc - 1];
Willy Tarreau0c026f42018-08-01 19:12:20 +02002116 if (mask && !(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002117 unsigned long new_mask = 0;
2118
2119 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002120 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002121 mask >>= global.nbthread;
2122 }
2123
2124 for (nbproc = 0; nbproc < LONGBITS; nbproc++) {
2125 if (!bind_conf->bind_proc || (bind_conf->bind_proc & (1UL << nbproc)))
2126 bind_conf->bind_thread[nbproc] = new_mask;
2127 }
2128 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",
2129 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2130 }
2131
2132 /* detect process and nbproc affinity inconsistencies */
Willy Tarreau3d209582014-05-09 17:06:11 +02002133 if (!bind_conf->bind_proc)
2134 continue;
2135
2136 mask = nbits(global.nbproc);
2137 if (curproxy->bind_proc)
2138 mask &= curproxy->bind_proc;
2139 /* mask cannot be null here thanks to the previous checks */
2140
David Carliere6c39412015-07-02 07:00:17 +00002141 nbproc = my_popcountl(bind_conf->bind_proc);
Willy Tarreau3d209582014-05-09 17:06:11 +02002142 bind_conf->bind_proc &= mask;
2143
2144 if (!bind_conf->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002145 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",
2146 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau3d209582014-05-09 17:06:11 +02002147 bind_conf->bind_proc = mask & ~(mask - 1);
2148 }
2149 else if (!bind_conf->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002150 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",
2151 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreau3d209582014-05-09 17:06:11 +02002152 bind_conf->bind_proc = 0;
2153 }
2154 }
2155
Willy Tarreauff01a212009-03-15 13:46:16 +01002156 switch (curproxy->mode) {
2157 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002158 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002159 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002160 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2161 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002162 cfgerr++;
2163 }
2164
2165 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002166 ha_warning("config : servers will be ignored for %s '%s'.\n",
2167 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002168 break;
2169
2170 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002171 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002172 break;
2173
2174 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002175 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002176 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002177
2178 case PR_MODE_CLI:
2179 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2180 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002181 }
2182
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002183 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002184 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2185 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002186 err_code |= ERR_WARN;
2187 }
2188
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002189 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002190 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002191 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002192 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2193 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002194 cfgerr++;
2195 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002196#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002197 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002198 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2199 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002200 cfgerr++;
2201 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002202#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002203 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002204 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2205 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002206 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002207 }
2208 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002209 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002210 /* If no LB algo is set in a backend, and we're not in
2211 * transparent mode, dispatch mode nor proxy mode, we
2212 * want to use balance roundrobin by default.
2213 */
2214 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2215 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002216 }
2217 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002218
Willy Tarreau1620ec32011-08-06 17:05:02 +02002219 if (curproxy->options & PR_O_DISPATCH)
2220 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2221 else if (curproxy->options & PR_O_HTTP_PROXY)
2222 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2223 else if (curproxy->options & PR_O_TRANSP)
2224 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002225
Willy Tarreau1620ec32011-08-06 17:05:02 +02002226 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_HTTP_CHK) {
2227 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002228 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2229 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002230 err_code |= ERR_WARN;
2231 curproxy->options &= ~PR_O_DISABLE404;
2232 }
2233 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002234 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2235 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002236 err_code |= ERR_WARN;
2237 curproxy->options &= ~PR_O2_CHK_SNDST;
2238 }
Willy Tarreauef781042010-01-27 11:53:01 +01002239 }
2240
Simon Horman98637e52014-06-20 12:30:16 +09002241 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2242 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002243 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2244 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002245 cfgerr++;
2246 }
2247 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002248 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2249 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002250 cfgerr++;
2251 }
2252 }
2253
Simon Horman64e34162015-02-06 11:11:57 +09002254 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002255 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002256 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2257 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2258 "'email-alert myhostname', or 'email-alert to' "
2259 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2260 "to be present).\n",
2261 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002262 err_code |= ERR_WARN;
2263 free_email_alert(curproxy);
2264 }
2265 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002266 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002267 }
2268
Simon Horman98637e52014-06-20 12:30:16 +09002269 if (curproxy->check_command) {
2270 int clear = 0;
2271 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002272 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2273 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002274 err_code |= ERR_WARN;
2275 clear = 1;
2276 }
2277 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002278 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2279 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002280 cfgerr++;
2281 }
2282 if (clear) {
2283 free(curproxy->check_command);
2284 curproxy->check_command = NULL;
2285 }
2286 }
2287
2288 if (curproxy->check_path) {
2289 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002290 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2291 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002292 err_code |= ERR_WARN;
2293 free(curproxy->check_path);
2294 curproxy->check_path = NULL;
2295 }
2296 }
2297
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002298 /* if a default backend was specified, let's find it */
2299 if (curproxy->defbe.name) {
2300 struct proxy *target;
2301
Willy Tarreauafb39922015-05-26 12:04:09 +02002302 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002303 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002304 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2305 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002306 cfgerr++;
2307 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002308 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2309 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002310 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002311 } else if (target->mode != curproxy->mode &&
2312 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2313
Christopher Faulet767a84b2017-11-24 16:50:31 +01002314 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2315 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2316 curproxy->conf.file, curproxy->conf.line,
2317 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2318 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002319 cfgerr++;
Willy Tarreau68ad3a42018-10-22 11:49:15 +02002320 } else if ((curproxy->options2 ^ target->options2) & PR_O2_USE_HTX) {
2321 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",
2322 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2323 curproxy->conf.file, curproxy->conf.line,
2324 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2325 target->conf.file, target->conf.line);
2326 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002327 } else {
2328 free(curproxy->defbe.name);
2329 curproxy->defbe.be = target;
Emeric Brun3f783572017-01-12 11:21:28 +01002330 /* Update tot_fe_maxconn for a further fullconn's computation */
2331 target->tot_fe_maxconn += curproxy->maxconn;
Willy Tarreauff678132012-02-13 14:32:34 +01002332 /* Emit a warning if this proxy also has some servers */
2333 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002334 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2335 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002336 err_code |= ERR_WARN;
2337 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002338 }
2339 }
2340
Emeric Brun3f783572017-01-12 11:21:28 +01002341 if (!curproxy->defbe.be && (curproxy->cap & PR_CAP_LISTEN) == PR_CAP_LISTEN) {
2342 /* Case of listen without default backend
2343 * The curproxy will be its own default backend
2344 * so we update tot_fe_maxconn for a further
2345 * fullconn's computation */
2346 curproxy->tot_fe_maxconn += curproxy->maxconn;
2347 }
2348
Willy Tarreau55ea7572007-06-17 19:56:27 +02002349 /* find the target proxy for 'use_backend' rules */
2350 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002351 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002352 struct logformat_node *node;
2353 char *pxname;
2354
2355 /* Try to parse the string as a log format expression. If the result
2356 * of the parsing is only one entry containing a simple string, then
2357 * it's a standard string corresponding to a static rule, thus the
2358 * parsing is cancelled and be.name is restored to be resolved.
2359 */
2360 pxname = rule->be.name;
2361 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002362 curproxy->conf.args.ctx = ARGC_UBK;
2363 curproxy->conf.args.file = rule->file;
2364 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002365 err = NULL;
2366 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002367 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2368 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002369 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002370 cfgerr++;
2371 continue;
2372 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002373 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2374
2375 if (!LIST_ISEMPTY(&rule->be.expr)) {
2376 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2377 rule->dynamic = 1;
2378 free(pxname);
2379 continue;
2380 }
2381 /* simple string: free the expression and fall back to static rule */
2382 free(node->arg);
2383 free(node);
2384 }
2385
2386 rule->dynamic = 0;
2387 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002388
Willy Tarreauafb39922015-05-26 12:04:09 +02002389 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002390 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002391 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2392 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002393 cfgerr++;
2394 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002395 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2396 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002397 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002398 } else if (target->mode != curproxy->mode &&
2399 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2400
Christopher Faulet767a84b2017-11-24 16:50:31 +01002401 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2402 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2403 curproxy->conf.file, curproxy->conf.line,
2404 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2405 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002406 cfgerr++;
Willy Tarreau68ad3a42018-10-22 11:49:15 +02002407 } else if ((curproxy->options2 ^ target->options2) & PR_O2_USE_HTX) {
2408 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",
2409 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2410 curproxy->conf.file, curproxy->conf.line,
2411 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2412 target->conf.file, target->conf.line);
2413 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002414 } else {
2415 free((void *)rule->be.name);
2416 rule->be.backend = target;
Emeric Brun3f783572017-01-12 11:21:28 +01002417 /* For each target of switching rules, we update
2418 * their tot_fe_maxconn, except if a previous rule point
2419 * on the same backend or on the default backend */
2420 if (rule->be.backend != curproxy->defbe.be) {
2421 struct switching_rule *swrule;
2422
2423 list_for_each_entry(swrule, &curproxy->switching_rules, list) {
2424 if (rule == swrule) {
2425 target->tot_fe_maxconn += curproxy->maxconn;
2426 break;
2427 }
2428 else if (!swrule->dynamic && swrule->be.backend == rule->be.backend) {
2429 /* there is multiple ref of this backend */
2430 break;
2431 }
2432 }
2433 }
Willy Tarreau55ea7572007-06-17 19:56:27 +02002434 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002435 }
2436
Willy Tarreau64ab6072014-09-16 12:17:36 +02002437 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002438 list_for_each_entry(srule, &curproxy->server_rules, list) {
2439 struct server *target = findserver(curproxy, srule->srv.name);
2440
2441 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002442 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2443 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002444 cfgerr++;
2445 continue;
2446 }
2447 free((void *)srule->srv.name);
2448 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002449 }
2450
Emeric Brunb982a3d2010-01-04 15:45:53 +01002451 /* find the target table for 'stick' rules */
2452 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
2453 struct proxy *target;
2454
Emeric Brun1d33b292010-01-04 15:47:17 +01002455 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2456 if (mrule->flags & STK_IS_STORE)
2457 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2458
Emeric Brunb982a3d2010-01-04 15:45:53 +01002459 if (mrule->table.name)
Willy Tarreau9e0bb102015-05-26 11:24:42 +02002460 target = proxy_tbl_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002461 else
2462 target = curproxy;
2463
2464 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002465 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
2466 curproxy->id, mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002467 cfgerr++;
2468 }
2469 else if (target->table.size == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002470 ha_alert("Proxy '%s': stick-table '%s' used but not configured.\n",
2471 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002472 cfgerr++;
2473 }
Willy Tarreau12785782012-04-27 21:37:17 +02002474 else if (!stktable_compatible_sample(mrule->expr, target->table.type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002475 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2476 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002477 cfgerr++;
2478 }
2479 else {
2480 free((void *)mrule->table.name);
2481 mrule->table.t = &(target->table);
Willy Tarreau888617d2010-06-20 09:11:39 +02002482 stktable_alloc_data_type(&target->table, STKTABLE_DT_SERVER_ID, NULL);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002483 }
2484 }
2485
2486 /* find the target table for 'store response' rules */
2487 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
2488 struct proxy *target;
2489
Emeric Brun1d33b292010-01-04 15:47:17 +01002490 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2491
Emeric Brunb982a3d2010-01-04 15:45:53 +01002492 if (mrule->table.name)
Willy Tarreau9e0bb102015-05-26 11:24:42 +02002493 target = proxy_tbl_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002494 else
2495 target = curproxy;
2496
2497 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002498 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
2499 curproxy->id, mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002500 cfgerr++;
2501 }
2502 else if (target->table.size == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002503 ha_alert("Proxy '%s': stick-table '%s' used but not configured.\n",
2504 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002505 cfgerr++;
2506 }
Willy Tarreau12785782012-04-27 21:37:17 +02002507 else if (!stktable_compatible_sample(mrule->expr, target->table.type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002508 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2509 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002510 cfgerr++;
2511 }
2512 else {
2513 free((void *)mrule->table.name);
2514 mrule->table.t = &(target->table);
Willy Tarreau888617d2010-06-20 09:11:39 +02002515 stktable_alloc_data_type(&target->table, STKTABLE_DT_SERVER_ID, NULL);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002516 }
2517 }
2518
Christopher Faulete4e830d2017-09-18 14:51:41 +02002519 /* check validity for 'tcp-request' layer 4 rules */
2520 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2521 err = NULL;
2522 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002523 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002524 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002525 cfgerr++;
2526 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002527 }
2528
Christopher Faulete4e830d2017-09-18 14:51:41 +02002529 /* check validity for 'tcp-request' layer 5 rules */
2530 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2531 err = NULL;
2532 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002533 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002534 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002535 cfgerr++;
2536 }
2537 }
2538
Christopher Faulete4e830d2017-09-18 14:51:41 +02002539 /* check validity for 'tcp-request' layer 6 rules */
2540 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2541 err = NULL;
2542 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002543 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002544 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002545 cfgerr++;
2546 }
2547 }
2548
Christopher Faulete4e830d2017-09-18 14:51:41 +02002549 /* check validity for 'http-request' layer 7 rules */
2550 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2551 err = NULL;
2552 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002553 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002554 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002555 cfgerr++;
2556 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002557 }
2558
Christopher Faulete4e830d2017-09-18 14:51:41 +02002559 /* check validity for 'http-response' layer 7 rules */
2560 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2561 err = NULL;
2562 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002563 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002564 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002565 cfgerr++;
2566 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002567 }
2568
Willy Tarreaub3dc39d2014-04-28 22:06:57 +02002569 /* move any "block" rules at the beginning of the http-request rules */
2570 if (!LIST_ISEMPTY(&curproxy->block_rules)) {
2571 /* insert block_rules into http_req_rules at the beginning */
2572 curproxy->block_rules.p->n = curproxy->http_req_rules.n;
2573 curproxy->http_req_rules.n->p = curproxy->block_rules.p;
2574 curproxy->block_rules.n->p = &curproxy->http_req_rules;
2575 curproxy->http_req_rules.n = curproxy->block_rules.n;
2576 LIST_INIT(&curproxy->block_rules);
2577 }
2578
Emeric Brun32da3c42010-09-23 18:39:19 +02002579 if (curproxy->table.peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002580 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002581
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002582 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +02002583 if (strcmp(curpeers->id, curproxy->table.peers.name) == 0) {
2584 free((void *)curproxy->table.peers.name);
Willy Tarreau973ca492013-01-17 21:34:52 +01002585 curproxy->table.peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002586 break;
2587 }
2588 }
2589
2590 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002591 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
2592 curproxy->id, curproxy->table.peers.name);
Willy Tarreaud66bf962011-10-28 14:16:49 +02002593 free((void *)curproxy->table.peers.name);
2594 curproxy->table.peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002595 cfgerr++;
2596 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002597 else if (curpeers->state == PR_STSTOPPED) {
2598 /* silently disable this peers section */
2599 curproxy->table.peers.p = NULL;
2600 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002601 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002602 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2603 curproxy->id, localpeer, curpeers->id);
Willy Tarreaud66bf962011-10-28 14:16:49 +02002604 curproxy->table.peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002605 cfgerr++;
2606 }
2607 }
2608
Simon Horman9dc49962015-01-30 11:22:59 +09002609
2610 if (curproxy->email_alert.mailers.name) {
2611 struct mailers *curmailers = mailers;
2612
2613 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002614 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002615 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002616 }
Simon Horman9dc49962015-01-30 11:22:59 +09002617 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002618 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2619 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002620 free_email_alert(curproxy);
2621 cfgerr++;
2622 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002623 else {
2624 err = NULL;
2625 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002626 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002627 free(err);
2628 cfgerr++;
2629 }
2630 }
Simon Horman9dc49962015-01-30 11:22:59 +09002631 }
2632
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002633 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & ST_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002634 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002635 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002636 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2637 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002638 cfgerr++;
2639 goto out_uri_auth_compat;
2640 }
2641
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002642 if (curproxy->uri_auth && curproxy->uri_auth->userlist && !(curproxy->uri_auth->flags & ST_CONVDONE)) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002643 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002644 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002645 int i = 0;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002646
Willy Tarreau95fa4692010-02-01 13:05:50 +01002647 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2648 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002649
2650 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002651 uri_auth_compat_req[i++] = "realm";
2652 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2653 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002654
Willy Tarreau95fa4692010-02-01 13:05:50 +01002655 uri_auth_compat_req[i++] = "unless";
2656 uri_auth_compat_req[i++] = "{";
2657 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2658 uri_auth_compat_req[i++] = "}";
2659 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002660
Willy Tarreauff011f22011-01-06 17:51:27 +01002661 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2662 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002663 cfgerr++;
2664 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002665 }
2666
Willy Tarreauff011f22011-01-06 17:51:27 +01002667 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002668
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002669 if (curproxy->uri_auth->auth_realm) {
2670 free(curproxy->uri_auth->auth_realm);
2671 curproxy->uri_auth->auth_realm = NULL;
2672 }
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002673
2674 curproxy->uri_auth->flags |= ST_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002675 }
2676out_uri_auth_compat:
2677
Dragan Dosen43885c72015-10-01 13:18:13 +02002678 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002679 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002680 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2681 if (!curproxy->conf.logformat_sd_string) {
2682 /* set the default logformat_sd_string */
2683 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2684 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002685 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002686 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002687 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002688
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002689 /* compile the log format */
2690 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002691 if (curproxy->conf.logformat_string != default_http_log_format &&
2692 curproxy->conf.logformat_string != default_tcp_log_format &&
2693 curproxy->conf.logformat_string != clf_http_log_format)
2694 free(curproxy->conf.logformat_string);
2695 curproxy->conf.logformat_string = NULL;
2696 free(curproxy->conf.lfs_file);
2697 curproxy->conf.lfs_file = NULL;
2698 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002699
2700 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2701 free(curproxy->conf.logformat_sd_string);
2702 curproxy->conf.logformat_sd_string = NULL;
2703 free(curproxy->conf.lfsd_file);
2704 curproxy->conf.lfsd_file = NULL;
2705 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002706 }
2707
Willy Tarreau62a61232013-04-12 18:13:46 +02002708 if (curproxy->conf.logformat_string) {
2709 curproxy->conf.args.ctx = ARGC_LOG;
2710 curproxy->conf.args.file = curproxy->conf.lfs_file;
2711 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002712 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002713 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002714 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002715 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
2716 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002717 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002718 cfgerr++;
2719 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002720 curproxy->conf.args.file = NULL;
2721 curproxy->conf.args.line = 0;
2722 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002723
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002724 if (curproxy->conf.logformat_sd_string) {
2725 curproxy->conf.args.ctx = ARGC_LOGSD;
2726 curproxy->conf.args.file = curproxy->conf.lfsd_file;
2727 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002728 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002729 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 +01002730 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002731 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2732 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002733 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002734 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002735 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002736 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2737 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002738 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002739 cfgerr++;
2740 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002741 curproxy->conf.args.file = NULL;
2742 curproxy->conf.args.line = 0;
2743 }
2744
Willy Tarreau62a61232013-04-12 18:13:46 +02002745 if (curproxy->conf.uniqueid_format_string) {
2746 curproxy->conf.args.ctx = ARGC_UIF;
2747 curproxy->conf.args.file = curproxy->conf.uif_file;
2748 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002749 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002750 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 +01002751 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002752 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
2753 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002754 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002755 cfgerr++;
2756 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002757 curproxy->conf.args.file = NULL;
2758 curproxy->conf.args.line = 0;
2759 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002760
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002761 /* only now we can check if some args remain unresolved.
2762 * This must be done after the users and groups resolution.
2763 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002764 cfgerr += smp_resolve_args(curproxy);
2765 if (!cfgerr)
2766 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002767
Willy Tarreau2738a142006-07-08 17:28:09 +02002768 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002769 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02002770 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02002771 (!curproxy->timeout.connect ||
2772 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002773 ha_warning("config : missing timeouts for %s '%s'.\n"
2774 " | While not properly invalid, you will certainly encounter various problems\n"
2775 " | with such a configuration. To fix this, please ensure that all following\n"
2776 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
2777 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002778 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02002779 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02002780
Willy Tarreau1fa31262007-12-03 00:36:16 +01002781 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
2782 * We must still support older configurations, so let's find out whether those
2783 * parameters have been set or must be copied from contimeouts.
2784 */
2785 if (curproxy != &defproxy) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002786 if (!curproxy->timeout.tarpit ||
2787 curproxy->timeout.tarpit == defproxy.timeout.tarpit) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01002788 /* tarpit timeout not set. We search in the following order:
2789 * default.tarpit, curr.connect, default.connect.
2790 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002791 if (defproxy.timeout.tarpit)
Willy Tarreau1fa31262007-12-03 00:36:16 +01002792 curproxy->timeout.tarpit = defproxy.timeout.tarpit;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002793 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002794 curproxy->timeout.tarpit = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002795 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002796 curproxy->timeout.tarpit = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002797 }
2798 if ((curproxy->cap & PR_CAP_BE) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002799 (!curproxy->timeout.queue ||
2800 curproxy->timeout.queue == defproxy.timeout.queue)) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01002801 /* queue timeout not set. We search in the following order:
2802 * default.queue, curr.connect, default.connect.
2803 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002804 if (defproxy.timeout.queue)
Willy Tarreau1fa31262007-12-03 00:36:16 +01002805 curproxy->timeout.queue = defproxy.timeout.queue;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002806 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002807 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002808 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01002809 curproxy->timeout.queue = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002810 }
2811 }
2812
Willy Tarreau1620ec32011-08-06 17:05:02 +02002813 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_SSL3_CHK) {
Willy Tarreau137325d2010-02-01 16:38:17 +01002814 curproxy->check_len = sizeof(sslv3_client_hello_pkt) - 1;
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02002815 curproxy->check_req = malloc(curproxy->check_len);
Willy Tarreau137325d2010-02-01 16:38:17 +01002816 memcpy(curproxy->check_req, sslv3_client_hello_pkt, curproxy->check_len);
Willy Tarreauf3c69202006-07-09 16:42:34 +02002817 }
2818
Willy Tarreau215663d2014-06-13 18:30:23 +02002819 if (!LIST_ISEMPTY(&curproxy->tcpcheck_rules) &&
2820 (curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_TCPCHK_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002821 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
2822 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02002823 err_code |= ERR_WARN;
2824 }
2825
Willy Tarreau193b8c62012-11-22 00:17:38 +01002826 /* ensure that cookie capture length is not too large */
2827 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002828 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
2829 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002830 err_code |= ERR_WARN;
2831 curproxy->capture_len = global.tune.cookie_len - 1;
2832 }
2833
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002834 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01002835 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02002836 curproxy->req_cap_pool = create_pool("ptrcap",
2837 curproxy->nb_req_cap * sizeof(char *),
2838 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01002839 }
2840
2841 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02002842 curproxy->rsp_cap_pool = create_pool("ptrcap",
2843 curproxy->nb_rsp_cap * sizeof(char *),
2844 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01002845 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002846
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002847 switch (curproxy->load_server_state_from_file) {
2848 case PR_SRV_STATE_FILE_UNSPEC:
2849 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
2850 break;
2851 case PR_SRV_STATE_FILE_GLOBAL:
2852 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002853 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",
2854 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002855 err_code |= ERR_WARN;
2856 }
2857 break;
2858 }
2859
Willy Tarreaubaaee002006-06-26 02:48:02 +02002860 /* first, we will invert the servers list order */
2861 newsrv = NULL;
2862 while (curproxy->srv) {
2863 struct server *next;
2864
2865 next = curproxy->srv->next;
2866 curproxy->srv->next = newsrv;
2867 newsrv = curproxy->srv;
2868 if (!next)
2869 break;
2870 curproxy->srv = next;
2871 }
2872
Willy Tarreau17edc812014-01-03 12:14:34 +01002873 /* Check that no server name conflicts. This causes trouble in the stats.
2874 * We only emit a warning for the first conflict affecting each server,
2875 * in order to avoid combinatory explosion if all servers have the same
2876 * name. We do that only for servers which do not have an explicit ID,
2877 * because these IDs were made also for distinguishing them and we don't
2878 * want to annoy people who correctly manage them.
2879 */
2880 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
2881 struct server *other_srv;
2882
2883 if (newsrv->puid)
2884 continue;
2885
2886 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
2887 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002888 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",
2889 newsrv->conf.file, newsrv->conf.line,
2890 proxy_type_str(curproxy), curproxy->id,
2891 newsrv->id, other_srv->conf.line);
Willy Tarreau17edc812014-01-03 12:14:34 +01002892 break;
2893 }
2894 }
2895 }
2896
Willy Tarreaudd701652010-05-25 23:03:02 +02002897 /* assign automatic UIDs to servers which don't have one yet */
2898 next_id = 1;
2899 newsrv = curproxy->srv;
2900 while (newsrv != NULL) {
2901 if (!newsrv->puid) {
2902 /* server ID not set, use automatic numbering with first
2903 * spare entry starting with next_svid.
2904 */
2905 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
2906 newsrv->conf.id.key = newsrv->puid = next_id;
2907 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
2908 }
2909 next_id++;
2910 newsrv = newsrv->next;
2911 }
2912
Willy Tarreau20697042007-11-15 23:26:18 +01002913 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01002914 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002915
Willy Tarreau62c3be22012-01-20 13:12:32 +01002916 /*
2917 * If this server supports a maxconn parameter, it needs a dedicated
2918 * tasks to fill the emptied slots when a connection leaves.
2919 * Also, resolve deferred tracking dependency if needed.
2920 */
2921 newsrv = curproxy->srv;
2922 while (newsrv != NULL) {
2923 if (newsrv->minconn > newsrv->maxconn) {
2924 /* Only 'minconn' was specified, or it was higher than or equal
2925 * to 'maxconn'. Let's turn this into maxconn and clean it, as
2926 * this will avoid further useless expensive computations.
2927 */
2928 newsrv->maxconn = newsrv->minconn;
2929 } else if (newsrv->maxconn && !newsrv->minconn) {
2930 /* minconn was not specified, so we set it to maxconn */
2931 newsrv->minconn = newsrv->maxconn;
2932 }
2933
Willy Tarreau17d45382016-12-22 21:16:08 +01002934 /* this will also properly set the transport layer for prod and checks */
2935 if (newsrv->use_ssl || newsrv->check.use_ssl) {
2936 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
2937 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
2938 }
Emeric Brun94324a42012-10-11 14:00:19 +02002939
Willy Tarreau2f075e92013-12-03 11:11:34 +01002940 /* set the check type on the server */
2941 newsrv->check.type = curproxy->options2 & PR_O2_CHK_ANY;
2942
Willy Tarreau62c3be22012-01-20 13:12:32 +01002943 if (newsrv->trackit) {
2944 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02002945 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01002946 char *pname, *sname;
2947
2948 pname = newsrv->trackit;
2949 sname = strrchr(pname, '/');
2950
2951 if (sname)
2952 *sname++ = '\0';
2953 else {
2954 sname = pname;
2955 pname = NULL;
2956 }
2957
2958 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02002959 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002960 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002961 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
2962 proxy_type_str(curproxy), curproxy->id,
2963 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002964 cfgerr++;
2965 goto next_srv;
2966 }
2967 } else
2968 px = curproxy;
2969
2970 srv = findserver(px, sname);
2971 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002972 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
2973 proxy_type_str(curproxy), curproxy->id,
2974 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002975 cfgerr++;
2976 goto next_srv;
2977 }
2978
Willy Tarreau32091232014-05-16 13:52:00 +02002979 if (!(srv->check.state & CHK_ST_CONFIGURED) &&
2980 !(srv->agent.state & CHK_ST_CONFIGURED) &&
2981 !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002982 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
2983 "tracking as it does not have any check nor agent enabled.\n",
2984 proxy_type_str(curproxy), curproxy->id,
2985 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02002986 cfgerr++;
2987 goto next_srv;
2988 }
2989
2990 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
2991
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01002992 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002993 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
2994 "belongs to a tracking chain looping back to %s/%s.\n",
2995 proxy_type_str(curproxy), curproxy->id,
2996 newsrv->id, px->id, srv->id, px->id,
2997 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002998 cfgerr++;
2999 goto next_srv;
3000 }
3001
3002 if (curproxy != px &&
3003 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003004 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3005 "tracking: disable-on-404 option inconsistency.\n",
3006 proxy_type_str(curproxy), curproxy->id,
3007 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003008 cfgerr++;
3009 goto next_srv;
3010 }
3011
Willy Tarreau62c3be22012-01-20 13:12:32 +01003012 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003013 newsrv->tracknext = srv->trackers;
3014 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003015
3016 free(newsrv->trackit);
3017 newsrv->trackit = NULL;
3018 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003019
Willy Tarreau62c3be22012-01-20 13:12:32 +01003020 next_srv:
3021 newsrv = newsrv->next;
3022 }
3023
Olivier Houchard4e694042017-03-14 20:01:29 +01003024 /*
3025 * Try to generate dynamic cookies for servers now.
3026 * It couldn't be done earlier, since at the time we parsed
3027 * the server line, we may not have known yet that we
3028 * should use dynamic cookies, or the secret key may not
3029 * have been provided yet.
3030 */
3031 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3032 newsrv = curproxy->srv;
3033 while (newsrv != NULL) {
3034 srv_set_dyncookie(newsrv);
3035 newsrv = newsrv->next;
3036 }
3037
3038 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003039 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003040 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003041 */
3042
3043 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3044 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3045 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003046 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3047 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3048 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003049 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3050 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3051 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003052 } else {
3053 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3054 fwrr_init_server_groups(curproxy);
3055 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003056 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003057
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003058 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003059 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3060 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3061 fwlc_init_server_tree(curproxy);
3062 } else {
3063 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3064 fas_init_server_tree(curproxy);
3065 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003066 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003067
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003068 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003069 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3070 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3071 chash_init_server_tree(curproxy);
3072 } else {
3073 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3074 init_server_map(curproxy);
3075 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003076 break;
3077 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003078 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003079
3080 if (curproxy->options & PR_O_LOGASAP)
3081 curproxy->to_log &= ~LW_BYTES;
3082
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003083 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003084 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3085 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003086 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3087 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003088 err_code |= ERR_WARN;
3089 }
3090
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003091 if (curproxy->mode != PR_MODE_HTTP) {
3092 int optnum;
3093
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003094 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003095 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3096 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003097 err_code |= ERR_WARN;
3098 curproxy->uri_auth = NULL;
3099 }
3100
Willy Tarreaude7dc882017-03-10 11:49:21 +01003101 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003102 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3103 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003104 err_code |= ERR_WARN;
3105 }
3106
3107 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003108 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3109 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003110 err_code |= ERR_WARN;
3111 }
3112
3113 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003114 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3115 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003116 err_code |= ERR_WARN;
3117 }
3118
3119 if (!LIST_ISEMPTY(&curproxy->block_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003120 ha_warning("config : 'block' rules ignored for %s '%s' as they require HTTP mode.\n",
3121 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003122 err_code |= ERR_WARN;
3123 }
3124
3125 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003126 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3127 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003128 err_code |= ERR_WARN;
3129 }
3130
Willy Tarreau87cf5142011-08-19 22:57:24 +02003131 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003132 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3133 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003134 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003135 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003136 }
3137
3138 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003139 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3140 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003141 err_code |= ERR_WARN;
3142 curproxy->options &= ~PR_O_ORGTO;
3143 }
3144
3145 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3146 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3147 (curproxy->cap & cfg_opts[optnum].cap) &&
3148 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003149 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3150 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003151 err_code |= ERR_WARN;
3152 curproxy->options &= ~cfg_opts[optnum].val;
3153 }
3154 }
3155
3156 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3157 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3158 (curproxy->cap & cfg_opts2[optnum].cap) &&
3159 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003160 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3161 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003162 err_code |= ERR_WARN;
3163 curproxy->options2 &= ~cfg_opts2[optnum].val;
3164 }
3165 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003166
Willy Tarreau29fbe512015-08-20 19:35:14 +02003167#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003168 if (curproxy->conn_src.bind_hdr_occ) {
3169 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003170 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3171 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003172 err_code |= ERR_WARN;
3173 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003174#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003175 }
3176
Willy Tarreaubaaee002006-06-26 02:48:02 +02003177 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003178 * ensure that we're not cross-dressing a TCP server into HTTP.
3179 */
3180 newsrv = curproxy->srv;
3181 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003182 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003183 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3184 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003185 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003186 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003187
Willy Tarreau0cec3312011-10-31 13:49:26 +01003188 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003189 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3190 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003191 err_code |= ERR_WARN;
3192 }
3193
Willy Tarreauc93cd162014-05-13 15:54:22 +02003194 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003195 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3196 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003197 err_code |= ERR_WARN;
3198 }
3199
Willy Tarreau29fbe512015-08-20 19:35:14 +02003200#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003201 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3202 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003203 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3204 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003205 err_code |= ERR_WARN;
3206 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003207#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003208
Willy Tarreau46deab62018-04-28 07:18:15 +02003209 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3210 curproxy->options &= ~PR_O_REUSE_MASK;
3211
Willy Tarreau21d2af32008-02-14 20:25:24 +01003212 newsrv = newsrv->next;
3213 }
3214
Willy Tarreaue42bd962014-09-16 16:21:19 +02003215 /* check if we have a frontend with "tcp-request content" looking at L7
3216 * with no inspect-delay
3217 */
3218 if ((curproxy->cap & PR_CAP_FE) && !curproxy->tcp_req.inspect_delay) {
Christopher Faulete4e830d2017-09-18 14:51:41 +02003219 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
3220 if (arule->action == ACT_TCP_CAPTURE &&
3221 !(arule->arg.cap.expr->fetch->val & SMP_VAL_FE_SES_ACC))
Willy Tarreaue42bd962014-09-16 16:21:19 +02003222 break;
Christopher Faulete4e830d2017-09-18 14:51:41 +02003223 if ((arule->action >= ACT_ACTION_TRK_SC0 && arule->action <= ACT_ACTION_TRK_SCMAX) &&
3224 !(arule->arg.trk_ctr.expr->fetch->val & SMP_VAL_FE_SES_ACC))
Willy Tarreaue42bd962014-09-16 16:21:19 +02003225 break;
3226 }
3227
Christopher Faulete4e830d2017-09-18 14:51:41 +02003228 if (&arule->list != &curproxy->tcp_req.inspect_rules) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003229 ha_warning("config : %s '%s' : some 'tcp-request content' rules explicitly depending on request"
3230 " contents were found in a frontend without any 'tcp-request inspect-delay' setting."
3231 " This means that these rules will randomly find their contents. This can be fixed by"
3232 " setting the tcp-request inspect-delay.\n",
3233 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue42bd962014-09-16 16:21:19 +02003234 err_code |= ERR_WARN;
3235 }
3236 }
3237
Christopher Fauletd7c91962015-04-30 11:48:27 +02003238 /* Check filter configuration, if any */
3239 cfgerr += flt_check(curproxy);
3240
Willy Tarreauc1a21672009-08-16 22:37:44 +02003241 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003242 if (!curproxy->accept)
3243 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003244
Willy Tarreauc1a21672009-08-16 22:37:44 +02003245 if (curproxy->tcp_req.inspect_delay ||
3246 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003247 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003248
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003249 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003250 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003251 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003252 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003253
William Lallemandcf62f7e2018-10-26 14:47:40 +02003254 if (curproxy->mode == PR_MODE_CLI) {
3255 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3256 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3257 }
3258
Willy Tarreauc1a21672009-08-16 22:37:44 +02003259 /* both TCP and HTTP must check switching rules */
3260 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003261
3262 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003263 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003264 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3265 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 +01003266 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003267 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3268 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003269 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003270 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003271 }
3272
3273 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003274 if (curproxy->tcp_req.inspect_delay ||
3275 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3276 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3277
Emeric Brun97679e72010-09-23 17:56:44 +02003278 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3279 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3280
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003281 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003282 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003283 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003284 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003285
3286 /* If the backend does requires RDP cookie persistence, we have to
3287 * enable the corresponding analyser.
3288 */
3289 if (curproxy->options2 & PR_O2_RDPC_PRST)
3290 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003291
3292 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003293 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003294 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3295 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 +01003296 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003297 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3298 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003299 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003300 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003301 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003302
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003303 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003304 * attached to the current proxy */
3305 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3306 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003307 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003308
Christopher Faulet7ff4f142018-11-20 11:23:52 +01003309 /* Special case for HTX because it is still experimental */
3310 if (curproxy->options2 & PR_O2_USE_HTX)
3311 mode = PROTO_MODE_HTX;
3312
Christopher Fauleta717b992018-04-10 14:43:00 +02003313 if (!bind_conf->mux_proto)
3314 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003315
3316 /* it is possible that an incorrect mux was referenced
3317 * due to the proxy's mode not being taken into account
3318 * on first pass. Let's adjust it now.
3319 */
3320 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3321
3322 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003323 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3324 proxy_type_str(curproxy), curproxy->id,
3325 (int)bind_conf->mux_proto->token.len,
3326 bind_conf->mux_proto->token.ptr,
3327 bind_conf->arg, bind_conf->file, bind_conf->line);
3328 cfgerr++;
3329 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003330
3331 /* update the mux */
3332 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003333 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003334 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3335 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003336 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003337
Christopher Faulet7ff4f142018-11-20 11:23:52 +01003338 /* Special case for HTX because it is still experimental */
3339 if (curproxy->options2 & PR_O2_USE_HTX)
3340 mode = PROTO_MODE_HTX;
3341
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003342 if (!newsrv->mux_proto)
3343 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003344
3345 /* it is possible that an incorrect mux was referenced
3346 * due to the proxy's mode not being taken into account
3347 * on first pass. Let's adjust it now.
3348 */
3349 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3350
3351 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003352 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3353 proxy_type_str(curproxy), curproxy->id,
3354 (int)newsrv->mux_proto->token.len,
3355 newsrv->mux_proto->token.ptr,
3356 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3357 cfgerr++;
3358 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003359
3360 /* update the mux */
3361 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003362 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003363 }
3364
3365 /***********************************************************/
3366 /* At this point, target names have already been resolved. */
3367 /***********************************************************/
3368
3369 /* Check multi-process mode compatibility */
3370
3371 if (global.nbproc > 1 && global.stats_fe) {
3372 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3373 unsigned long mask;
3374
3375 mask = nbits(global.nbproc);
3376 if (global.stats_fe->bind_proc)
3377 mask &= global.stats_fe->bind_proc;
3378
3379 if (bind_conf->bind_proc)
3380 mask &= bind_conf->bind_proc;
3381
3382 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003383 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003384 break;
3385 }
3386 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003387 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 +02003388 }
3389 }
3390
3391 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003392 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003393 if (curproxy->bind_proc)
3394 continue;
3395
3396 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3397 unsigned long mask;
3398
Willy Tarreaue428b082015-05-04 21:57:58 +02003399 mask = bind_conf->bind_proc ? bind_conf->bind_proc : nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003400 curproxy->bind_proc |= mask;
3401 }
3402
3403 if (!curproxy->bind_proc)
Willy Tarreaue428b082015-05-04 21:57:58 +02003404 curproxy->bind_proc = nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003405 }
3406
3407 if (global.stats_fe) {
3408 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3409 unsigned long mask;
3410
Cyril Bonté06181952016-02-24 00:14:54 +01003411 mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003412 global.stats_fe->bind_proc |= mask;
3413 }
3414 if (!global.stats_fe->bind_proc)
Willy Tarreaue428b082015-05-04 21:57:58 +02003415 global.stats_fe->bind_proc = nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003416 }
3417
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003418 /* propagate bindings from frontends to backends. Don't do it if there
3419 * are any fatal errors as we must not call it with unresolved proxies.
3420 */
3421 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003422 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003423 if (curproxy->cap & PR_CAP_FE)
3424 propagate_processes(curproxy, NULL);
3425 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003426 }
3427
3428 /* Bind each unbound backend to all processes when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003429 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003430 if (curproxy->bind_proc)
3431 continue;
Willy Tarreaue428b082015-05-04 21:57:58 +02003432 curproxy->bind_proc = nbits(global.nbproc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003433 }
3434
3435 /*******************************************************/
3436 /* At this step, all proxies have a non-null bind_proc */
3437 /*******************************************************/
3438
3439 /* perform the final checks before creating tasks */
3440
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003441 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003442 struct listener *listener;
3443 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003444
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003445 /* Configure SSL for each bind line.
3446 * Note: if configuration fails at some point, the ->ctx member
3447 * remains NULL so that listeners can later detach.
3448 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003449 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003450 if (bind_conf->xprt->prepare_bind_conf &&
3451 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003452 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003453 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003454
Willy Tarreaue6b98942007-10-29 01:09:36 +01003455 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003456 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003457 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003458 int nbproc;
3459
3460 nbproc = my_popcountl(curproxy->bind_proc &
Cyril Bonté4920d702016-04-15 07:58:43 +02003461 (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) &
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003462 nbits(global.nbproc));
3463
3464 if (!nbproc) /* no intersection between listener and frontend */
3465 nbproc = 1;
3466
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003467 if (!listener->luid) {
3468 /* listener ID not set, use automatic numbering with first
3469 * spare entry starting with next_luid.
3470 */
3471 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3472 listener->conf.id.key = listener->luid = next_id;
3473 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003474 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003475 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003476
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003477 /* enable separate counters */
3478 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003479 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003480 if (!listener->name)
3481 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003482 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003483
Willy Tarreaue6b98942007-10-29 01:09:36 +01003484 if (curproxy->options & PR_O_TCP_NOLING)
3485 listener->options |= LI_O_NOLINGER;
Willy Tarreau32368ce2012-09-06 11:10:55 +02003486 if (!listener->maxconn)
3487 listener->maxconn = curproxy->maxconn;
3488 if (!listener->backlog)
3489 listener->backlog = curproxy->backlog;
Willy Tarreau16a21472012-11-19 12:39:59 +01003490 if (!listener->maxaccept)
3491 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3492
3493 /* we want to have an optimal behaviour on single process mode to
3494 * maximize the work at once, but in multi-process we want to keep
3495 * some fairness between processes, so we target half of the max
3496 * number of events to be balanced over all the processes the proxy
3497 * is bound to. Rememeber that maxaccept = -1 must be kept as it is
3498 * used to disable the limit.
3499 */
3500 if (listener->maxaccept > 0) {
3501 if (nbproc > 1)
3502 listener->maxaccept = (listener->maxaccept + 1) / 2;
3503 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3504 }
3505
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003506 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003507 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003508 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003509
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003510 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003511 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003512
Willy Tarreau620408f2016-10-21 16:37:51 +02003513 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3514 listener->options |= LI_O_TCP_L5_RULES;
3515
Willy Tarreaude3041d2010-05-31 10:56:17 +02003516 if (curproxy->mon_mask.s_addr)
3517 listener->options |= LI_O_CHK_MONNET;
3518
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003519 /* smart accept mode is automatic in HTTP mode */
3520 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003521 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003522 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3523 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003524 }
3525
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003526 /* Release unused SSL configs */
3527 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003528 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3529 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003530 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003531
Willy Tarreau9504dd62018-10-15 09:37:03 +02003532 if (atleast2(curproxy->bind_proc & nbits(global.nbproc))) {
Willy Tarreau102df612014-05-07 23:56:38 +02003533 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003534 int count, maxproc = 0;
3535
3536 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
David Carliere6c39412015-07-02 07:00:17 +00003537 count = my_popcountl(bind_conf->bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003538 if (count > maxproc)
3539 maxproc = count;
3540 }
3541 /* backends have 0, frontends have 1 or more */
3542 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003543 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3544 " limited to process assigned to the current request.\n",
3545 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003546
Willy Tarreau102df612014-05-07 23:56:38 +02003547 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003548 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3549 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003550 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003551 }
Willy Tarreau102df612014-05-07 23:56:38 +02003552 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003553 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3554 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003555 }
3556 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003557
3558 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003559 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003560 if (curproxy->task) {
3561 curproxy->task->context = curproxy;
3562 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003563 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003564 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3565 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003566 cfgerr++;
3567 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003568 }
3569
Willy Tarreaufbb78422011-06-05 15:38:35 +02003570 /* automatically compute fullconn if not set. We must not do it in the
3571 * loop above because cross-references are not yet fully resolved.
3572 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003573 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreaufbb78422011-06-05 15:38:35 +02003574 /* If <fullconn> is not set, let's set it to 10% of the sum of
3575 * the possible incoming frontend's maxconns.
3576 */
3577 if (!curproxy->fullconn && (curproxy->cap & PR_CAP_BE)) {
Willy Tarreaufbb78422011-06-05 15:38:35 +02003578 /* we have the sum of the maxconns in <total>. We only
3579 * keep 10% of that sum to set the default fullconn, with
3580 * a hard minimum of 1 (to avoid a divide by zero).
3581 */
Emeric Brun3f783572017-01-12 11:21:28 +01003582 curproxy->fullconn = (curproxy->tot_fe_maxconn + 9) / 10;
Willy Tarreaufbb78422011-06-05 15:38:35 +02003583 if (!curproxy->fullconn)
3584 curproxy->fullconn = 1;
3585 }
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01003586 }
3587
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003588 /*
3589 * Recount currently required checks.
3590 */
3591
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003592 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003593 int optnum;
3594
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003595 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3596 if (curproxy->options & cfg_opts[optnum].val)
3597 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003598
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003599 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3600 if (curproxy->options2 & cfg_opts2[optnum].val)
3601 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003602 }
3603
Willy Tarreau0fca4832015-05-01 19:12:05 +02003604 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003605 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Willy Tarreau0fca4832015-05-01 19:12:05 +02003606 if (curproxy->table.peers.p)
3607 curproxy->table.peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
3608
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003609 if (cfg_peers) {
3610 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003611 struct peer *p, *pb;
3612
Willy Tarreau1e273012015-05-01 19:15:17 +02003613 /* Remove all peers sections which don't have a valid listener,
3614 * which are not used by any table, or which are bound to more
3615 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003616 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003617 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003618 while (*last) {
3619 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003620
3621 if (curpeers->state == PR_STSTOPPED) {
3622 /* the "disabled" keyword was present */
3623 if (curpeers->peers_fe)
3624 stop_proxy(curpeers->peers_fe);
3625 curpeers->peers_fe = NULL;
3626 }
3627 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003628 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3629 curpeers->id, localpeer);
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003630 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003631 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003632 /* either it's totally stopped or too much used */
3633 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003634 ha_alert("Peers section '%s': peers referenced by sections "
3635 "running in different processes (%d different ones). "
3636 "Check global.nbproc and all tables' bind-process "
3637 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003638 cfgerr++;
3639 }
3640 stop_proxy(curpeers->peers_fe);
3641 curpeers->peers_fe = NULL;
3642 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003643 else {
Willy Tarreaud9443442018-10-15 11:18:03 +02003644 if (!peers_init_sync(curpeers)) {
3645 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3646 curpeers->id);
3647 cfgerr++;
3648 break;
3649 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003650 last = &curpeers->next;
3651 continue;
3652 }
3653
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003654 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003655 p = curpeers->remote;
3656 while (p) {
3657 pb = p->next;
3658 free(p->id);
3659 free(p);
3660 p = pb;
3661 }
3662
3663 /* Destroy and unlink this curpeers section.
3664 * Note: curpeers is backed up into *last.
3665 */
3666 free(curpeers->id);
3667 curpeers = curpeers->next;
3668 free(*last);
3669 *last = curpeers;
3670 }
3671 }
3672
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003673 /* initialize stick-tables on backend capable proxies. This must not
3674 * be done earlier because the data size may be discovered while parsing
3675 * other proxies.
3676 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003677 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003678 if (curproxy->state == PR_STSTOPPED)
3679 continue;
3680
3681 if (!stktable_init(&curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003682 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003683 cfgerr++;
3684 }
3685 }
3686
Simon Horman0d16a402015-01-30 11:22:58 +09003687 if (mailers) {
3688 struct mailers *curmailers = mailers, **last;
3689 struct mailer *m, *mb;
3690
3691 /* Remove all mailers sections which don't have a valid listener.
3692 * This can happen when a mailers section is never referenced.
3693 */
3694 last = &mailers;
3695 while (*last) {
3696 curmailers = *last;
3697 if (curmailers->users) {
3698 last = &curmailers->next;
3699 continue;
3700 }
3701
Christopher Faulet767a84b2017-11-24 16:50:31 +01003702 ha_warning("Removing incomplete section 'mailers %s'.\n",
3703 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09003704
3705 m = curmailers->mailer_list;
3706 while (m) {
3707 mb = m->next;
3708 free(m->id);
3709 free(m);
3710 m = mb;
3711 }
3712
3713 /* Destroy and unlink this curmailers section.
3714 * Note: curmailers is backed up into *last.
3715 */
3716 free(curmailers->id);
3717 curmailers = curmailers->next;
3718 free(*last);
3719 *last = curmailers;
3720 }
3721 }
3722
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003723 /* Update server_state_file_name to backend name if backend is supposed to use
3724 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003725 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003726 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
3727 curproxy->server_state_file_name == NULL)
3728 curproxy->server_state_file_name = strdup(curproxy->id);
3729 }
3730
Willy Tarreaubafbe012017-11-24 17:34:44 +01003731 pool_head_hdr_idx = create_pool("hdr_idx",
Willy Tarreauac1932d2011-10-24 19:14:41 +02003732 global.tune.max_http_hdr * sizeof(struct hdr_idx_elem),
Willy Tarreau34eb6712011-10-24 18:15:04 +02003733 MEM_F_SHARED);
3734
Ben Draut054fbee2018-04-13 15:43:04 -06003735 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
3736 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
3737 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
3738 curr_resolvers->id, curr_resolvers->conf.file,
3739 curr_resolvers->conf.line);
3740 err_code |= ERR_WARN;
3741 }
3742 }
3743
William Lallemand48b4bb42017-10-23 14:36:34 +02003744 list_for_each_entry(postparser, &postparsers, list) {
3745 if (postparser->func)
3746 cfgerr += postparser->func();
3747 }
3748
Willy Tarreaubb925012009-07-23 13:36:36 +02003749 if (cfgerr > 0)
3750 err_code |= ERR_ALERT | ERR_FATAL;
3751 out:
3752 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003753}
3754
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003755/*
3756 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
3757 * parsing sessions.
3758 */
3759void cfg_register_keywords(struct cfg_kw_list *kwl)
3760{
3761 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
3762}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003763
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003764/*
3765 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
3766 */
3767void cfg_unregister_keywords(struct cfg_kw_list *kwl)
3768{
3769 LIST_DEL(&kwl->list);
3770 LIST_INIT(&kwl->list);
3771}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003772
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003773/* this function register new section in the haproxy configuration file.
3774 * <section_name> is the name of this new section and <section_parser>
3775 * is the called parser. If two section declaration have the same name,
3776 * only the first declared is used.
3777 */
3778int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02003779 int (*section_parser)(const char *, int, char **, int),
3780 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003781{
3782 struct cfg_section *cs;
3783
Willy Tarreau5e4261b2016-05-17 16:16:09 +02003784 list_for_each_entry(cs, &sections, list) {
3785 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003786 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02003787 return 0;
3788 }
3789 }
3790
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003791 cs = calloc(1, sizeof(*cs));
3792 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003793 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003794 return 0;
3795 }
3796
3797 cs->section_name = section_name;
3798 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02003799 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003800
3801 LIST_ADDQ(&sections, &cs->list);
3802
3803 return 1;
3804}
3805
William Lallemand48b4bb42017-10-23 14:36:34 +02003806/* this function register a new function which will be called once the haproxy
3807 * configuration file has been parsed. It's useful to check dependencies
3808 * between sections or to resolve items once everything is parsed.
3809 */
3810int cfg_register_postparser(char *name, int (*func)())
3811{
3812 struct cfg_postparser *cp;
3813
3814 cp = calloc(1, sizeof(*cp));
3815 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003816 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02003817 return 0;
3818 }
3819 cp->name = name;
3820 cp->func = func;
3821
3822 LIST_ADDQ(&postparsers, &cp->list);
3823
3824 return 1;
3825}
3826
Willy Tarreaubaaee002006-06-26 02:48:02 +02003827/*
David Carlier845efb52015-09-25 11:49:18 +01003828 * free all config section entries
3829 */
3830void cfg_unregister_sections(void)
3831{
3832 struct cfg_section *cs, *ics;
3833
3834 list_for_each_entry_safe(cs, ics, &sections, list) {
3835 LIST_DEL(&cs->list);
3836 free(cs);
3837 }
3838}
3839
Christopher Faulet7110b402016-10-26 11:09:44 +02003840void cfg_backup_sections(struct list *backup_sections)
3841{
3842 struct cfg_section *cs, *ics;
3843
3844 list_for_each_entry_safe(cs, ics, &sections, list) {
3845 LIST_DEL(&cs->list);
3846 LIST_ADDQ(backup_sections, &cs->list);
3847 }
3848}
3849
3850void cfg_restore_sections(struct list *backup_sections)
3851{
3852 struct cfg_section *cs, *ics;
3853
3854 list_for_each_entry_safe(cs, ics, backup_sections, list) {
3855 LIST_DEL(&cs->list);
3856 LIST_ADDQ(&sections, &cs->list);
3857 }
3858}
3859
Willy Tarreaue6552512018-11-26 11:33:13 +01003860/* these are the config sections handled by default */
3861REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
3862REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
3863REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
3864REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
3865REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
3866REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
3867REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
3868REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
3869REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
3870REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02003871
David Carlier845efb52015-09-25 11:49:18 +01003872/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02003873 * Local variables:
3874 * c-indent-level: 8
3875 * c-basic-offset: 8
3876 * End:
3877 */