blob: 2523e21fcef94f2f45fbec08f82f4e1343768ab2 [file] [log] [blame]
Willy Tarreaubaaee002006-06-26 02:48:02 +02001/*
2 * Configuration parser
3 *
Willy Tarreauff011f22011-01-06 17:51:27 +01004 * Copyright 2000-2011 Willy Tarreau <w@1wt.eu>
Willy Tarreaubaaee002006-06-26 02:48:02 +02005 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
Willy Tarreaue5733232019-05-22 19:24:06 +020013#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +020014/* This is to have crypt() defined on Linux */
15#define _GNU_SOURCE
16
Willy Tarreaue5733232019-05-22 19:24:06 +020017#ifdef USE_CRYPT_H
Cyril Bonté1a0191d2014-08-29 20:20:02 +020018/* some platforms such as Solaris need this */
19#include <crypt.h>
20#endif
Willy Tarreaue5733232019-05-22 19:24:06 +020021#endif /* USE_LIBCRYPT */
Cyril Bonté1a0191d2014-08-29 20:20:02 +020022
Willy Tarreaubaaee002006-06-26 02:48:02 +020023#include <stdio.h>
24#include <stdlib.h>
25#include <string.h>
26#include <netdb.h>
27#include <ctype.h>
Willy Tarreau95c20ac2007-03-25 15:39:23 +020028#include <pwd.h>
29#include <grp.h>
Willy Tarreau0b4ed902007-03-26 00:18:40 +020030#include <errno.h>
Willy Tarreau3f49b302007-06-11 00:29:26 +020031#include <sys/types.h>
32#include <sys/stat.h>
33#include <fcntl.h>
34#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035
Willy Tarreau2dd0d472006-06-29 17:53:05 +020036#include <common/cfgparse.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020037#include <common/chunk.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020038#include <common/config.h>
Willy Tarreau058e9072009-07-20 09:30:05 +020039#include <common/errors.h>
Willy Tarreau2dd0d472006-06-29 17:53:05 +020040#include <common/memory.h>
41#include <common/standard.h>
42#include <common/time.h>
43#include <common/uri_auth.h>
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +010044#include <common/namespace.h>
Emeric Brunc60def82017-09-27 14:59:38 +020045#include <common/hathreads.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020046
47#include <types/capture.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020048#include <types/filters.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020049#include <types/global.h>
Willy Tarreau3fdb3662012-11-12 00:42:33 +010050#include <types/obj_type.h>
Emeric Brun32da3c42010-09-23 18:39:19 +020051#include <types/peers.h>
Simon Horman0d16a402015-01-30 11:22:58 +090052#include <types/mailers.h>
Baptiste Assmann325137d2015-04-13 23:40:55 +020053#include <types/dns.h>
William Lallemand9ed62032016-11-21 17:49:11 +010054#include <types/stats.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020055
Willy Tarreaueb0c6142007-05-07 00:53:22 +020056#include <proto/acl.h>
Christopher Faulet4fce0d82017-09-18 11:57:31 +020057#include <proto/action.h>
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +010058#include <proto/auth.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020059#include <proto/backend.h>
Willy Tarreauc7e42382012-08-24 19:22:53 +020060#include <proto/channel.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020061#include <proto/checks.h>
Baptiste Assmann201c07f2017-05-22 15:17:15 +020062#include <proto/dns.h>
William Lallemand9ed62032016-11-21 17:49:11 +010063#include <proto/stats.h>
Christopher Fauletd7c91962015-04-30 11:48:27 +020064#include <proto/filters.h>
Willy Tarreaueb472682010-05-28 18:46:57 +020065#include <proto/frontend.h>
Willy Tarreau34eb6712011-10-24 18:15:04 +020066#include <proto/hdr_idx.h>
Willy Tarreau61c112a2018-10-02 16:43:32 +020067#include <proto/http_rules.h>
Willy Tarreau6b2e11b2009-10-01 07:52:15 +020068#include <proto/lb_chash.h>
Willy Tarreauf09c6602012-02-13 17:12:08 +010069#include <proto/lb_fas.h>
Willy Tarreauf89c1872009-10-01 11:19:37 +020070#include <proto/lb_fwlc.h>
71#include <proto/lb_fwrr.h>
72#include <proto/lb_map.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020073#include <proto/listener.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020074#include <proto/log.h>
Willy Tarreaud1d54542012-09-12 22:58:11 +020075#include <proto/protocol.h>
Willy Tarreaue6b98942007-10-29 01:09:36 +010076#include <proto/proto_http.h>
Willy Tarreau2b5652f2006-12-31 17:46:05 +010077#include <proto/proxy.h>
Emeric Brun32da3c42010-09-23 18:39:19 +020078#include <proto/peers.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020079#include <proto/sample.h>
Willy Tarreau9903f0e2015-04-04 18:50:31 +020080#include <proto/session.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020081#include <proto/server.h>
Willy Tarreau87b09662015-04-03 00:22:06 +020082#include <proto/stream.h>
Emeric Brunb982a3d2010-01-04 15:45:53 +010083#include <proto/stick_table.h>
Willy Tarreau39713102016-11-25 15:49:32 +010084#include <proto/task.h>
85#include <proto/tcp_rules.h>
Olivier Houchard673867c2018-05-25 16:58:52 +020086#include <proto/connection.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020087
88
Willy Tarreauf3c69202006-07-09 16:42:34 +020089/* This is the SSLv3 CLIENT HELLO packet used in conjunction with the
90 * ssl-hello-chk option to ensure that the remote server speaks SSL.
91 *
92 * Check RFC 2246 (TLSv1.0) sections A.3 and A.4 for details.
93 */
94const char sslv3_client_hello_pkt[] = {
95 "\x16" /* ContentType : 0x16 = Hanshake */
96 "\x03\x00" /* ProtocolVersion : 0x0300 = SSLv3 */
97 "\x00\x79" /* ContentLength : 0x79 bytes after this one */
98 "\x01" /* HanshakeType : 0x01 = CLIENT HELLO */
99 "\x00\x00\x75" /* HandshakeLength : 0x75 bytes after this one */
100 "\x03\x00" /* Hello Version : 0x0300 = v3 */
101 "\x00\x00\x00\x00" /* Unix GMT Time (s) : filled with <now> (@0x0B) */
102 "HAPROXYSSLCHK\nHAPROXYSSLCHK\n" /* Random : must be exactly 28 bytes */
103 "\x00" /* Session ID length : empty (no session ID) */
104 "\x00\x4E" /* Cipher Suite Length : 78 bytes after this one */
105 "\x00\x01" "\x00\x02" "\x00\x03" "\x00\x04" /* 39 most common ciphers : */
106 "\x00\x05" "\x00\x06" "\x00\x07" "\x00\x08" /* 0x01...0x1B, 0x2F...0x3A */
107 "\x00\x09" "\x00\x0A" "\x00\x0B" "\x00\x0C" /* This covers RSA/DH, */
108 "\x00\x0D" "\x00\x0E" "\x00\x0F" "\x00\x10" /* various bit lengths, */
109 "\x00\x11" "\x00\x12" "\x00\x13" "\x00\x14" /* SHA1/MD5, DES/3DES/AES... */
110 "\x00\x15" "\x00\x16" "\x00\x17" "\x00\x18"
111 "\x00\x19" "\x00\x1A" "\x00\x1B" "\x00\x2F"
112 "\x00\x30" "\x00\x31" "\x00\x32" "\x00\x33"
113 "\x00\x34" "\x00\x35" "\x00\x36" "\x00\x37"
114 "\x00\x38" "\x00\x39" "\x00\x3A"
115 "\x01" /* Compression Length : 0x01 = 1 byte for types */
116 "\x00" /* Compression Type : 0x00 = NULL compression */
117};
118
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +0100119/* Used to chain configuration sections definitions. This list
120 * stores struct cfg_section
121 */
122struct list sections = LIST_HEAD_INIT(sections);
123
William Lallemand48b4bb42017-10-23 14:36:34 +0200124struct list postparsers = LIST_HEAD_INIT(postparsers);
125
Eric Salamae5d22322021-03-16 15:12:17 +0100126extern struct proxy *mworker_proxy;
127
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100128char *cursection = NULL;
129struct proxy defproxy = { }; /* fake proxy used to assign default values on all instances */
Willy Tarreauc8d5b952019-02-27 17:25:52 +0100130int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +0100131int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +0100132char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200133
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200134/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100135struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200136 .list = LIST_HEAD_INIT(cfg_keywords.list)
137};
138
Willy Tarreaubaaee002006-06-26 02:48:02 +0200139/*
140 * converts <str> to a list of listeners which are dynamically allocated.
141 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
142 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
143 * - <port> is a numerical port from 1 to 65535 ;
144 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
145 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200146 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
147 * not NULL, it must be a valid pointer to either NULL or a freeable area that
148 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200149 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200150int 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 +0200151{
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100152 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200153 int port, end;
154
155 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200156
Willy Tarreaubaaee002006-06-26 02:48:02 +0200157 while (next && *next) {
William Lallemand75ea0a02017-11-15 19:02:58 +0100158 int inherited = 0;
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200159 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100160 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200161
162 str = next;
163 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100164 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200165 *next++ = 0;
166 }
167
Willy Tarreau48ef4c92017-01-06 18:32:38 +0100168 ss2 = str2sa_range(str, NULL, &port, &end, err,
Eric Salamae5d22322021-03-16 15:12:17 +0100169 (curproxy == global.stats_fe || curproxy == mworker_proxy) ? NULL : global.unix_bind.prefix,
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +0200170 NULL, 1);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100171 if (!ss2)
172 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200173
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100174 if (ss2->ss_family == AF_INET || ss2->ss_family == AF_INET6) {
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100175 if (!port && !end) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200176 memprintf(err, "missing port number: '%s'\n", str);
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100177 goto fail;
Emeric Bruned760922010-10-22 17:59:25 +0200178 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200179
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100180 if (!port || !end) {
181 memprintf(err, "port offsets are not allowed in 'bind': '%s'\n", str);
182 goto fail;
183 }
184
Emeric Bruned760922010-10-22 17:59:25 +0200185 if (port < 1 || port > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200186 memprintf(err, "invalid port '%d' specified for address '%s'.\n", port, str);
Emeric Bruned760922010-10-22 17:59:25 +0200187 goto fail;
188 }
189
190 if (end < 1 || end > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200191 memprintf(err, "invalid port '%d' specified for address '%s'.\n", end, str);
Emeric Bruned760922010-10-22 17:59:25 +0200192 goto fail;
193 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200194 }
Willy Tarreau40aa0702013-03-10 23:51:38 +0100195 else if (ss2->ss_family == AF_UNSPEC) {
196 socklen_t addr_len;
William Lallemand75ea0a02017-11-15 19:02:58 +0100197 inherited = 1;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100198
199 /* We want to attach to an already bound fd whose number
200 * is in the addr part of ss2 when cast to sockaddr_in.
201 * Note that by definition there is a single listener.
202 * We still have to determine the address family to
203 * register the correct protocol.
204 */
205 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
206 addr_len = sizeof(*ss2);
207 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
208 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
209 goto fail;
210 }
211
212 port = end = get_host_port(ss2);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200213
214 } else if (ss2->ss_family == AF_CUST_SOCKPAIR) {
215 socklen_t addr_len;
216 inherited = 1;
217
218 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
219 addr_len = sizeof(*ss2);
220 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
221 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
222 goto fail;
223 }
224
225 ss2->ss_family = AF_CUST_SOCKPAIR; /* reassign AF_CUST_SOCKPAIR because of getsockname */
226 port = end = 0;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100227 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200228
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100229 /* OK the address looks correct */
William Lallemand75ea0a02017-11-15 19:02:58 +0100230 if (!create_listeners(bind_conf, ss2, port, end, fd, inherited, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200231 memprintf(err, "%s for address '%s'.\n", *err, str);
232 goto fail;
233 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200234 } /* end while(next) */
235 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200236 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200237 fail:
238 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200239 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200240}
241
William Lallemand6e62fb62015-04-28 16:55:23 +0200242/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100243 * Report an error in <msg> when there are too many arguments. This version is
244 * intended to be used by keyword parsers so that the message will be included
245 * into the general error message. The index is the current keyword in args.
246 * Return 0 if the number of argument is correct, otherwise build a message and
247 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
248 * message may also be null, it will simply not be produced (useful to check only).
249 * <msg> and <err_code> are only affected on error.
250 */
251int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
252{
253 int i;
254
255 if (!*args[index + maxarg + 1])
256 return 0;
257
258 if (msg) {
259 *msg = NULL;
260 memprintf(msg, "%s", args[0]);
261 for (i = 1; i <= index; i++)
262 memprintf(msg, "%s %s", *msg, args[i]);
263
264 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
265 }
266 if (err_code)
267 *err_code |= ERR_ALERT | ERR_FATAL;
268
269 return 1;
270}
271
272/*
273 * same as too_many_args_idx with a 0 index
274 */
275int too_many_args(int maxarg, char **args, char **msg, int *err_code)
276{
277 return too_many_args_idx(maxarg, 0, args, msg, err_code);
278}
279
280/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200281 * Report a fatal Alert when there is too much arguments
282 * The index is the current keyword in args
283 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
284 * Fill err_code with an ERR_ALERT and an ERR_FATAL
285 */
286int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
287{
288 char *kw = NULL;
289 int i;
290
291 if (!*args[index + maxarg + 1])
292 return 0;
293
294 memprintf(&kw, "%s", args[0]);
295 for (i = 1; i <= index; i++) {
296 memprintf(&kw, "%s %s", kw, args[i]);
297 }
298
Christopher Faulet767a84b2017-11-24 16:50:31 +0100299 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 +0200300 free(kw);
301 *err_code |= ERR_ALERT | ERR_FATAL;
302 return 1;
303}
304
305/*
306 * same as alertif_too_many_args_idx with a 0 index
307 */
308int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
309{
310 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
311}
312
Willy Tarreau61d18892009-03-31 10:49:21 +0200313
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100314/* Report it if a request ACL condition uses some keywords that are incompatible
315 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
316 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
317 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100318 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100319int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100320{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100321 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200322 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100323
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100324 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100325 return 0;
326
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100327 acl = acl_cond_conflicts(cond, where);
328 if (acl) {
329 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100330 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
331 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100332 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100333 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
334 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100335 return ERR_WARN;
336 }
337 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100338 return 0;
339
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100340 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100341 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
342 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100343 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100344 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
345 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100346 return ERR_WARN;
347}
348
Christopher Faulet62519022017-10-16 15:49:32 +0200349/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100350 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100351 * two such numbers delimited by a dash ('-'). On success, it returns
352 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200353 *
354 * Note: this function can also be used to parse a thread number or a set of
355 * threads.
356 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100357int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200358{
Christopher Faulet26028f62017-11-22 15:01:51 +0100359 if (autoinc) {
360 *autoinc = 0;
361 if (strncmp(arg, "auto:", 5) == 0) {
362 arg += 5;
363 *autoinc = 1;
364 }
365 }
366
Christopher Faulet62519022017-10-16 15:49:32 +0200367 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100368 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200369 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100370 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200371 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100372 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200373 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100374 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100375 unsigned int low, high;
376
Christopher Faulet18cca782019-02-07 16:29:41 +0100377 for (p = arg; *p; p++) {
378 if (*p == '-' && !dash)
379 dash = p;
380 else if (!isdigit((int)*p)) {
381 memprintf(err, "'%s' is not a valid number/range.", arg);
382 return -1;
383 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100384 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100385
386 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100387 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100388 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100389
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100390 if (high < low) {
391 unsigned int swap = low;
392 low = high;
393 high = swap;
394 }
395
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100396 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100397 memprintf(err, "'%s' is not a valid number/range."
398 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100399 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100400 return 1;
401 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100402
403 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100404 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200405 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100406 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100407
Christopher Faulet5ab51772017-11-22 11:21:58 +0100408 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200409}
410
David Carlier7e351ee2017-12-01 09:14:02 +0000411#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200412/* Parse cpu sets. Each CPU set is either a unique number between 0 and
413 * <LONGBITS> or a range with two such numbers delimited by a dash
414 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
415 * returns 0. otherwise it returns 1 with an error message in <err>.
416 */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100417unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200418{
419 int cur_arg = 0;
420
421 *cpu_set = 0;
422 while (*args[cur_arg]) {
423 char *dash;
424 unsigned int low, high;
425
426 if (!isdigit((int)*args[cur_arg])) {
427 memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
428 return -1;
429 }
430
431 low = high = str2uic(args[cur_arg]);
432 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100433 high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
Christopher Faulet62519022017-10-16 15:49:32 +0200434
435 if (high < low) {
436 unsigned int swap = low;
437 low = high;
438 high = swap;
439 }
440
441 if (high >= LONGBITS) {
442 memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
443 return 1;
444 }
445
446 while (low <= high)
447 *cpu_set |= 1UL << low++;
448
449 cur_arg++;
450 }
451 return 0;
452}
David Carlier7e351ee2017-12-01 09:14:02 +0000453#endif
454
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200455void init_default_instance()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200456{
Willy Tarreau97cb7802010-01-03 20:23:58 +0100457 init_new_proxy(&defproxy);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200458 defproxy.mode = PR_MODE_TCP;
459 defproxy.state = PR_STNEW;
460 defproxy.maxconn = cfg_maxpconn;
461 defproxy.conn_retries = CONN_RETRIES;
Joseph Lynch726ab712015-05-11 23:25:34 -0700462 defproxy.redispatch_after = 0;
Olivier Houchard86006a52018-12-14 19:37:49 +0100463 defproxy.options = PR_O_REUSE_SAFE;
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +0100464 defproxy.max_out_conns = MAX_SRV_LIST;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100465
Simon Horman66183002013-02-23 10:16:43 +0900466 defproxy.defsrv.check.inter = DEF_CHKINTR;
467 defproxy.defsrv.check.fastinter = 0;
468 defproxy.defsrv.check.downinter = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900469 defproxy.defsrv.agent.inter = DEF_CHKINTR;
470 defproxy.defsrv.agent.fastinter = 0;
471 defproxy.defsrv.agent.downinter = 0;
Simon Horman58c32972013-11-25 10:46:38 +0900472 defproxy.defsrv.check.rise = DEF_RISETIME;
473 defproxy.defsrv.check.fall = DEF_FALLTIME;
474 defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME;
475 defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME;
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200476 defproxy.defsrv.check.port = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900477 defproxy.defsrv.agent.port = 0;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100478 defproxy.defsrv.maxqueue = 0;
479 defproxy.defsrv.minconn = 0;
480 defproxy.defsrv.maxconn = 0;
Willy Tarreau9c538e02019-01-23 10:21:49 +0100481 defproxy.defsrv.max_reuse = -1;
Olivier Houchard006e3102018-12-10 18:30:32 +0100482 defproxy.defsrv.max_idle_conns = -1;
Willy Tarreau975b1552019-06-06 16:25:55 +0200483 defproxy.defsrv.pool_purge_delay = 5000;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100484 defproxy.defsrv.slowstart = 0;
485 defproxy.defsrv.onerror = DEF_HANA_ONERR;
486 defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT;
487 defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1;
Simon Horman64e34162015-02-06 11:11:57 +0900488
489 defproxy.email_alert.level = LOG_ALERT;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +0200490 defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200491}
492
Frédéric Lécaille18251032019-01-11 11:07:15 +0100493/* Allocate and initialize the frontend of a "peers" section found in
494 * file <file> at line <linenum> with <id> as ID.
495 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200496 * Note that this function may be called from "default-server"
497 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100498 */
499static int init_peers_frontend(const char *file, int linenum,
500 const char *id, struct peers *peers)
501{
502 struct proxy *p;
503
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200504 if (peers->peers_fe) {
505 p = peers->peers_fe;
506 goto out;
507 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100508
Frédéric Lécaille18251032019-01-11 11:07:15 +0100509 p = calloc(1, sizeof *p);
510 if (!p) {
511 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
512 return -1;
513 }
514
515 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200516 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100517 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200518 /* Finally store this frontend. */
519 peers->peers_fe = p;
520
521 out:
522 if (id && !p->id)
523 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200524 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100525 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100526 if (linenum != -1)
527 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100528
529 return 0;
530}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100531
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100532/* Only change ->file, ->line and ->arg struct bind_conf member values
533 * if already present.
534 */
535static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
536 const char *file, int line,
537 const char *arg, struct xprt_ops *xprt)
538{
539 struct bind_conf *bind_conf;
540
541 if (!LIST_ISEMPTY(&p->conf.bind)) {
542 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
543 free(bind_conf->file);
544 bind_conf->file = strdup(file);
545 bind_conf->line = line;
546 if (arg) {
547 free(bind_conf->arg);
548 bind_conf->arg = strdup(arg);
549 }
550 }
551 else {
552 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
553 }
554
555 return bind_conf;
556}
557
558/*
559 * Allocate a new struct peer parsed at line <linenum> in file <file>
560 * to be added to <peers>.
561 * Returns the new allocated structure if succeeded, NULL if not.
562 */
563static struct peer *cfg_peers_add_peer(struct peers *peers,
564 const char *file, int linenum,
565 const char *id, int local)
566{
567 struct peer *p;
568
569 p = calloc(1, sizeof *p);
570 if (!p) {
571 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
572 return NULL;
573 }
574
575 /* the peers are linked backwards first */
576 peers->count++;
577 p->next = peers->remote;
578 peers->remote = p;
579 p->conf.file = strdup(file);
580 p->conf.line = linenum;
581 p->last_change = now.tv_sec;
582 p->xprt = xprt_get(XPRT_RAW);
583 p->sock_init_arg = NULL;
584 HA_SPIN_INIT(&p->lock);
585 if (id)
586 p->id = strdup(id);
587 if (local) {
588 p->local = 1;
589 peers->local = p;
590 }
591
592 return p;
593}
594
Willy Tarreaubaaee002006-06-26 02:48:02 +0200595/*
William Lallemand51097192015-04-14 16:35:22 +0200596 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200597 * Returns the error code, 0 if OK, or any combination of :
598 * - ERR_ABORT: must abort ASAP
599 * - ERR_FATAL: we can continue parsing but not start the service
600 * - ERR_WARN: a warning has been emitted
601 * - ERR_ALERT: an alert has been emitted
602 * Only the two first ones can stop processing, the two others are just
603 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200604 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200605int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
606{
607 static struct peers *curpeers = NULL;
608 struct peer *newpeer = NULL;
609 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200610 struct bind_conf *bind_conf;
611 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200612 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100613 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100614 static int bind_line, peer_line;
615
616 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
617 int cur_arg;
618 static int kws_dumped;
619 struct bind_conf *bind_conf;
620 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200621
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100622 cur_arg = 1;
623
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200624 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
625 err_code |= ERR_ALERT | ERR_ABORT;
626 goto out;
627 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100628
629 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
630 NULL, xprt_get(XPRT_RAW));
631 if (*args[0] == 'b') {
632 struct listener *l;
633
634 if (peer_line) {
635 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
636 err_code |= ERR_ALERT | ERR_FATAL;
637 goto out;
638 }
639
640 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
641 if (errmsg && *errmsg) {
642 indent_msg(&errmsg, 2);
643 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
644 }
645 else
646 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
647 file, linenum, args[0], args[1], args[2]);
648 err_code |= ERR_FATAL;
649 goto out;
650 }
651 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
652 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100653 l->accept = session_accept_fd;
654 l->analysers |= curpeers->peers_fe->fe_req_ana;
655 l->default_target = curpeers->peers_fe->default_target;
656 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100657 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100658
659 bind_line = 1;
660 if (cfg_peers->local) {
661 newpeer = cfg_peers->local;
662 }
663 else {
664 /* This peer is local.
665 * Note that we do not set the peer ID. This latter is initialized
666 * when parsing "peer" or "server" line.
667 */
668 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
669 if (!newpeer) {
670 err_code |= ERR_ALERT | ERR_ABORT;
671 goto out;
672 }
673 }
674 newpeer->addr = l->addr;
675 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
676 cur_arg++;
677 }
678
679 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
680 int ret;
681
682 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
683 err_code |= ret;
684 if (ret) {
685 if (errmsg && *errmsg) {
686 indent_msg(&errmsg, 2);
687 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
688 }
689 else
690 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
691 file, linenum, args[cur_arg]);
692 if (ret & ERR_FATAL)
693 goto out;
694 }
695 cur_arg += 1 + kw->skip;
696 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100697 if (*args[cur_arg] != 0) {
Tim Duesterhus04bcaa12019-05-12 22:54:50 +0200698 char *kws = NULL;
699
700 if (!kws_dumped) {
701 kws_dumped = 1;
702 bind_dump_kws(&kws);
703 indent_msg(&kws, 4);
704 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100705 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.%s%s\n",
706 file, linenum, args[cur_arg], cursection,
707 kws ? " Registered keywords :" : "", kws ? kws: "");
708 free(kws);
709 err_code |= ERR_ALERT | ERR_FATAL;
710 goto out;
711 }
712 }
713 else if (strcmp(args[0], "default-server") == 0) {
714 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
715 err_code |= ERR_ALERT | ERR_ABORT;
716 goto out;
717 }
Emeric Brun33f0a732020-07-21 16:54:36 +0200718 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, 0, 1, 1);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200719 }
720 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100721 /* Initialize these static variables when entering a new "peers" section*/
722 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100723 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100724 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100725 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100726 goto out;
727 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200728
William Lallemand6e62fb62015-04-28 16:55:23 +0200729 if (alertif_too_many_args(1, file, linenum, args, &err_code))
730 goto out;
731
Emeric Brun32da3c42010-09-23 18:39:19 +0200732 err = invalid_char(args[1]);
733 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100734 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
735 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100736 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100737 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200738 }
739
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200740 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200741 /*
742 * If there are two proxies with the same name only following
743 * combinations are allowed:
744 */
745 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100746 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
747 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200748 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200749 }
750 }
751
Vincent Bernat02779b62016-04-03 13:48:43 +0200752 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100753 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200754 err_code |= ERR_ALERT | ERR_ABORT;
755 goto out;
756 }
757
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200758 curpeers->next = cfg_peers;
759 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200760 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200761 curpeers->conf.line = linenum;
762 curpeers->last_change = now.tv_sec;
763 curpeers->id = strdup(args[1]);
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200764 curpeers->state = PR_STNEW;
Emeric Brun32da3c42010-09-23 18:39:19 +0200765 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200766 else if (strcmp(args[0], "peer") == 0 ||
767 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100768 int local_peer, peer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200769
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100770 peer = *args[0] == 'p';
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100771 local_peer = !strcmp(args[1], localpeer);
772 /* The local peer may have already partially been parsed on a "bind" line. */
773 if (*args[0] == 'p') {
774 if (bind_line) {
775 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
776 err_code |= ERR_ALERT | ERR_FATAL;
777 goto out;
778 }
779 peer_line = 1;
780 }
781 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
782 /* The local peer has already been initialized on a "bind" line.
783 * Let's use it and store its ID.
784 */
785 newpeer = cfg_peers->local;
786 newpeer->id = strdup(localpeer);
787 }
788 else {
789 if (local_peer && cfg_peers->local) {
790 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
791 file, linenum, args[0], args[1],
792 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
793 err_code |= ERR_FATAL;
794 goto out;
795 }
796 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
797 if (!newpeer) {
798 err_code |= ERR_ALERT | ERR_ABORT;
799 goto out;
800 }
801 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200802
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100803 /* Line number and peer ID are updated only if this peer is the local one. */
804 if (init_peers_frontend(file,
805 newpeer->local ? linenum: -1,
806 newpeer->local ? newpeer->id : NULL,
807 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200808 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100809 goto out;
810 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100811
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100812 /* This initializes curpeer->peers->peers_fe->srv.
813 * The server address is parsed only if we are parsing a "peer" line,
814 * or if we are parsing a "server" line and the current peer is not the local one.
815 */
Emeric Brun33f0a732020-07-21 16:54:36 +0200816 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, peer || !local_peer, 1, 1);
Frédéric Lécaille9b0d59d2020-04-03 09:43:47 +0200817 if (!curpeers->peers_fe->srv) {
818 /* Remove the newly allocated peer. */
819 if (newpeer != curpeers->local) {
820 struct peer *p;
821
822 p = curpeers->remote;
823 curpeers->remote = curpeers->remote->next;
824 free(p->id);
825 free(p);
826 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200827 goto out;
Frédéric Lécaille9b0d59d2020-04-03 09:43:47 +0200828 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200829
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100830 /* If the peer address has just been parsed, let's copy it to <newpeer>
831 * and initializes ->proto.
832 */
833 if (peer || !local_peer) {
834 newpeer->addr = curpeers->peers_fe->srv->addr;
835 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
836 }
837
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100838 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200839 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100840 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200841
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100842 newpeer->srv = curpeers->peers_fe->srv;
843 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200844 goto out;
845
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100846 /* The lines above are reserved to "peer" lines. */
847 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200848 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200849
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100850 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW));
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100851
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100852 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
853 if (errmsg && *errmsg) {
854 indent_msg(&errmsg, 2);
855 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100856 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100857 else
858 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
859 file, linenum, args[0], args[1], args[2]);
860 err_code |= ERR_FATAL;
861 goto out;
862 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100863
864 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
865 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100866 l->accept = session_accept_fd;
867 l->analysers |= curpeers->peers_fe->fe_req_ana;
868 l->default_target = curpeers->peers_fe->default_target;
869 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100870 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100871 }
872 else if (!strcmp(args[0], "table")) {
873 struct stktable *t, *other;
874 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100875 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100876
877 /* Line number and peer ID are updated only if this peer is the local one. */
878 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
879 err_code |= ERR_ALERT | ERR_ABORT;
880 goto out;
881 }
882
883 other = stktable_find_by_name(args[1]);
884 if (other) {
885 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
886 file, linenum, args[1],
887 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
888 other->proxy ? other->id : other->peers.p->id,
889 other->conf.file, other->conf.line);
890 err_code |= ERR_ALERT | ERR_FATAL;
891 goto out;
892 }
893
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100894 /* Build the stick-table name, concatenating the "peers" section name
895 * followed by a '/' character and the table name argument.
896 */
897 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100898 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100899 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
900 file, linenum, args[0], args[1]);
901 err_code |= ERR_ALERT | ERR_FATAL;
902 goto out;
903 }
904
905 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100906 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100907 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
908 file, linenum, args[0], args[1]);
909 err_code |= ERR_ALERT | ERR_FATAL;
910 goto out;
911 }
912
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100913 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100914 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100915 if (!t || !id) {
916 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
917 file, linenum, args[0], args[1]);
Eric Salama879924c2020-09-18 11:55:17 +0200918 free(t);
919 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100920 err_code |= ERR_ALERT | ERR_FATAL;
921 goto out;
922 }
923
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100924 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama879924c2020-09-18 11:55:17 +0200925 if (err_code & ERR_FATAL) {
926 free(t);
927 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100928 goto out;
Eric Salama879924c2020-09-18 11:55:17 +0200929 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100930
931 stktable_store_name(t);
932 t->next = stktables_list;
933 stktables_list = t;
934 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200935 else if (!strcmp(args[0], "disabled")) { /* disables this peers section */
936 curpeers->state = PR_STSTOPPED;
937 }
938 else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */
939 curpeers->state = PR_STNEW;
940 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200941 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100942 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200943 err_code |= ERR_ALERT | ERR_FATAL;
944 goto out;
945 }
946
947out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100948 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200949 return err_code;
950}
951
Baptiste Assmann325137d2015-04-13 23:40:55 +0200952/*
953 * Parse a <resolvers> section.
954 * Returns the error code, 0 if OK, or any combination of :
955 * - ERR_ABORT: must abort ASAP
956 * - ERR_FATAL: we can continue parsing but not start the service
957 * - ERR_WARN: a warning has been emitted
958 * - ERR_ALERT: an alert has been emitted
959 * Only the two first ones can stop processing, the two others are just
960 * indicators.
961 */
962int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
963{
964 static struct dns_resolvers *curr_resolvers = NULL;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200965 const char *err;
966 int err_code = 0;
967 char *errmsg = NULL;
968
969 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
970 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100971 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200972 err_code |= ERR_ALERT | ERR_ABORT;
973 goto out;
974 }
975
976 err = invalid_char(args[1]);
977 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100978 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
979 file, linenum, *err, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200980 err_code |= ERR_ALERT | ERR_ABORT;
981 goto out;
982 }
983
984 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
985 /* Error if two resolvers owns the same name */
986 if (strcmp(curr_resolvers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100987 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
988 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200989 err_code |= ERR_ALERT | ERR_ABORT;
990 }
991 }
992
Vincent Bernat02779b62016-04-03 13:48:43 +0200993 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100994 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200995 err_code |= ERR_ALERT | ERR_ABORT;
996 goto out;
997 }
998
999 /* default values */
1000 LIST_ADDQ(&dns_resolvers, &curr_resolvers->list);
1001 curr_resolvers->conf.file = strdup(file);
1002 curr_resolvers->conf.line = linenum;
1003 curr_resolvers->id = strdup(args[1]);
1004 curr_resolvers->query_ids = EB_ROOT;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001005 /* default maximum response size */
1006 curr_resolvers->accepted_payload_size = 512;
Baptiste Assmann987e16d2016-11-02 22:23:31 +01001007 /* default hold period for nx, other, refuse and timeout is 30s */
1008 curr_resolvers->hold.nx = 30000;
1009 curr_resolvers->hold.other = 30000;
1010 curr_resolvers->hold.refused = 30000;
1011 curr_resolvers->hold.timeout = 30000;
Baptiste Assmann686408b2017-08-18 10:15:42 +02001012 curr_resolvers->hold.obsolete = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001013 /* default hold period for valid is 10s */
Baptiste Assmann4c5490a2015-07-14 21:42:49 +02001014 curr_resolvers->hold.valid = 10000;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001015 curr_resolvers->timeout.resolve = 1000;
1016 curr_resolvers->timeout.retry = 1000;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001017 curr_resolvers->resolve_retries = 3;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001018 curr_resolvers->nb_nameservers = 0;
1019 LIST_INIT(&curr_resolvers->nameservers);
1020 LIST_INIT(&curr_resolvers->resolutions.curr);
1021 LIST_INIT(&curr_resolvers->resolutions.wait);
Christopher Faulet2a944ee2017-11-07 10:42:54 +01001022 HA_SPIN_INIT(&curr_resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001023 }
1024 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
Eric Salama6e134fe2020-11-13 15:56:36 +01001025 struct dns_nameserver *newnameserver = NULL;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001026 struct sockaddr_storage *sk;
1027 int port1, port2;
1028 struct protocol *proto;
1029
1030 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001031 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1032 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001033 err_code |= ERR_ALERT | ERR_FATAL;
1034 goto out;
1035 }
1036
1037 err = invalid_char(args[1]);
1038 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001039 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1040 file, linenum, *err, args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001041 err_code |= ERR_ALERT | ERR_FATAL;
1042 goto out;
1043 }
1044
Christopher Faulet67957bd2017-09-27 11:00:59 +02001045 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
Baptiste Assmanna315c552015-11-02 22:55:49 +01001046 /* Error if two resolvers owns the same name */
1047 if (strcmp(newnameserver->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001048 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 -06001049 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
Baptiste Assmanna315c552015-11-02 22:55:49 +01001050 err_code |= ERR_ALERT | ERR_FATAL;
1051 }
1052 }
1053
Vincent Bernat02779b62016-04-03 13:48:43 +02001054 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001055 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001056 err_code |= ERR_ALERT | ERR_ABORT;
1057 goto out;
1058 }
1059
1060 /* the nameservers are linked backward first */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001061 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001062 newnameserver->resolvers = curr_resolvers;
1063 newnameserver->conf.file = strdup(file);
1064 newnameserver->conf.line = linenum;
1065 newnameserver->id = strdup(args[1]);
1066
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001067 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001068 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001069 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001070 err_code |= ERR_ALERT | ERR_FATAL;
1071 goto out;
1072 }
1073
1074 proto = protocol_by_family(sk->ss_family);
1075 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001076 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Baptiste Assmann325137d2015-04-13 23:40:55 +02001077 file, linenum, args[0], args[1]);
1078 err_code |= ERR_ALERT | ERR_FATAL;
1079 goto out;
1080 }
1081
1082 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001083 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1084 file, linenum, args[0], args[1], args[2]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001085 err_code |= ERR_ALERT | ERR_FATAL;
1086 goto out;
1087 }
1088
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001089 if (!port1 && !port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001090 ha_alert("parsing [%s:%d] : '%s %s' : no UDP port specified\n",
1091 file, linenum, args[0], args[1]);
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001092 err_code |= ERR_ALERT | ERR_FATAL;
1093 goto out;
1094 }
1095
Baptiste Assmann325137d2015-04-13 23:40:55 +02001096 newnameserver->addr = *sk;
1097 }
Ben Draut44e609b2018-05-29 15:40:08 -06001098 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
Eric Salama6e134fe2020-11-13 15:56:36 +01001099 struct dns_nameserver *newnameserver = NULL;
Ben Draut44e609b2018-05-29 15:40:08 -06001100 const char *whitespace = "\r\n\t ";
1101 char *resolv_line = NULL;
1102 int resolv_linenum = 0;
1103 FILE *f = NULL;
1104 char *address = NULL;
1105 struct sockaddr_storage *sk = NULL;
1106 struct protocol *proto;
1107 int duplicate_name = 0;
1108
1109 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
1110 ha_alert("parsing [%s:%d] : out of memory.\n",
1111 file, linenum);
1112 err_code |= ERR_ALERT | ERR_FATAL;
1113 goto resolv_out;
1114 }
1115
1116 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
1117 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
1118 file, linenum);
1119 err_code |= ERR_ALERT | ERR_FATAL;
1120 goto resolv_out;
1121 }
1122
1123 sk = calloc(1, sizeof(*sk));
1124 if (sk == NULL) {
1125 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
1126 resolv_linenum);
1127 err_code |= ERR_ALERT | ERR_FATAL;
1128 goto resolv_out;
1129 }
1130
1131 while (fgets(resolv_line, LINESIZE, f) != NULL) {
1132 resolv_linenum++;
1133 if (strncmp(resolv_line, "nameserver", 10) != 0)
1134 continue;
1135
1136 address = strtok(resolv_line + 10, whitespace);
1137 if (address == resolv_line + 10)
1138 continue;
1139
1140 if (address == NULL) {
1141 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
1142 resolv_linenum);
1143 err_code |= ERR_WARN;
1144 continue;
1145 }
1146
1147 duplicate_name = 0;
1148 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
1149 if (strcmp(newnameserver->id, address) == 0) {
1150 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",
1151 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
1152 err_code |= ERR_WARN;
1153 duplicate_name = 1;
1154 }
1155 }
1156
1157 if (duplicate_name)
1158 continue;
1159
1160 memset(sk, 0, sizeof(*sk));
Willy Tarreau98fbb972020-05-28 18:07:10 +02001161 if (!str2ip2(address, sk, 1)) {
1162 ha_warning("parsing [/etc/resolv.conf:%d] : address '%s' could not be recognized, nameserver will be excluded.\n",
Ben Draut44e609b2018-05-29 15:40:08 -06001163 resolv_linenum, address);
1164 err_code |= ERR_WARN;
1165 continue;
1166 }
1167
1168 set_host_port(sk, 53);
1169
1170 proto = protocol_by_family(sk->ss_family);
1171 if (!proto || !proto->connect) {
1172 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
1173 resolv_linenum, address);
1174 err_code |= ERR_WARN;
1175 continue;
1176 }
1177
1178 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
1179 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1180 err_code |= ERR_ALERT | ERR_FATAL;
1181 goto resolv_out;
1182 }
1183
1184 newnameserver->conf.file = strdup("/etc/resolv.conf");
1185 if (newnameserver->conf.file == NULL) {
1186 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1187 err_code |= ERR_ALERT | ERR_FATAL;
Eric Salama6e134fe2020-11-13 15:56:36 +01001188 free(newnameserver);
Ben Draut44e609b2018-05-29 15:40:08 -06001189 goto resolv_out;
1190 }
1191
1192 newnameserver->id = strdup(address);
1193 if (newnameserver->id == NULL) {
1194 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1195 err_code |= ERR_ALERT | ERR_FATAL;
Eric Salama6e134fe2020-11-13 15:56:36 +01001196 free((char *)newnameserver->conf.file);
1197 free(newnameserver);
Ben Draut44e609b2018-05-29 15:40:08 -06001198 goto resolv_out;
1199 }
1200
1201 newnameserver->resolvers = curr_resolvers;
1202 newnameserver->conf.line = resolv_linenum;
1203 newnameserver->addr = *sk;
1204
1205 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
1206 }
1207
1208resolv_out:
1209 free(sk);
1210 free(resolv_line);
1211 if (f != NULL)
1212 fclose(f);
1213 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001214 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
1215 const char *res;
1216 unsigned int time;
1217
1218 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001219 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
1220 file, linenum, args[0]);
1221 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
Baptiste Assmann325137d2015-04-13 23:40:55 +02001222 err_code |= ERR_ALERT | ERR_FATAL;
1223 goto out;
1224 }
1225 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001226 if (res == PARSE_TIME_OVER) {
1227 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s>, maximum value is 2147483647 ms (~24.8 days).\n",
1228 file, linenum, args[1], args[0]);
1229 err_code |= ERR_ALERT | ERR_FATAL;
1230 goto out;
1231 }
1232 else if (res == PARSE_TIME_UNDER) {
1233 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s>, minimum non-null value is 1 ms.\n",
1234 file, linenum, args[1], args[0]);
1235 err_code |= ERR_ALERT | ERR_FATAL;
1236 goto out;
1237 }
1238 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001239 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1240 file, linenum, *res, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001241 err_code |= ERR_ALERT | ERR_FATAL;
1242 goto out;
1243 }
Baptiste Assmann987e16d2016-11-02 22:23:31 +01001244 if (strcmp(args[1], "nx") == 0)
1245 curr_resolvers->hold.nx = time;
1246 else if (strcmp(args[1], "other") == 0)
1247 curr_resolvers->hold.other = time;
1248 else if (strcmp(args[1], "refused") == 0)
1249 curr_resolvers->hold.refused = time;
1250 else if (strcmp(args[1], "timeout") == 0)
1251 curr_resolvers->hold.timeout = time;
1252 else if (strcmp(args[1], "valid") == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001253 curr_resolvers->hold.valid = time;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001254 else if (strcmp(args[1], "obsolete") == 0)
1255 curr_resolvers->hold.obsolete = time;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001256 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001257 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
1258 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001259 err_code |= ERR_ALERT | ERR_FATAL;
1260 goto out;
1261 }
1262
1263 }
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001264 else if (strcmp(args[0], "accepted_payload_size") == 0) {
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001265 int i = 0;
1266
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001267 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001268 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1269 file, linenum, args[0]);
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001270 err_code |= ERR_ALERT | ERR_FATAL;
1271 goto out;
1272 }
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001273
1274 i = atoi(args[1]);
Willy Tarreau0c219be2017-08-22 12:01:26 +02001275 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001276 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
1277 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001278 err_code |= ERR_ALERT | ERR_FATAL;
1279 goto out;
1280 }
1281
1282 curr_resolvers->accepted_payload_size = i;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001283 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001284 else if (strcmp(args[0], "resolution_pool_size") == 0) {
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001285 ha_alert("parsing [%s:%d] : '%s' directive is not supported anymore (it never appeared in a stable release).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01001286 file, linenum, args[0]);
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001287 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001288 goto out;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001289 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001290 else if (strcmp(args[0], "resolve_retries") == 0) {
1291 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001292 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1293 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001294 err_code |= ERR_ALERT | ERR_FATAL;
1295 goto out;
1296 }
1297 curr_resolvers->resolve_retries = atoi(args[1]);
1298 }
1299 else if (strcmp(args[0], "timeout") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001300 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001301 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
1302 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001303 err_code |= ERR_ALERT | ERR_FATAL;
1304 goto out;
1305 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001306 else if (strcmp(args[1], "retry") == 0 ||
1307 strcmp(args[1], "resolve") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001308 const char *res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001309 unsigned int tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001310
1311 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001312 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1313 file, linenum, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001314 err_code |= ERR_ALERT | ERR_FATAL;
1315 goto out;
1316 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001317 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001318 if (res == PARSE_TIME_OVER) {
1319 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1320 file, linenum, args[2], args[0], args[1]);
1321 err_code |= ERR_ALERT | ERR_FATAL;
1322 goto out;
1323 }
1324 else if (res == PARSE_TIME_UNDER) {
1325 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1326 file, linenum, args[2], args[0], args[1]);
1327 err_code |= ERR_ALERT | ERR_FATAL;
1328 goto out;
1329 }
1330 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001331 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1332 file, linenum, *res, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001333 err_code |= ERR_ALERT | ERR_FATAL;
1334 goto out;
1335 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001336 if (args[1][2] == 't')
1337 curr_resolvers->timeout.retry = tout;
1338 else
1339 curr_resolvers->timeout.resolve = tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001340 }
1341 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001342 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
1343 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001344 err_code |= ERR_ALERT | ERR_FATAL;
1345 goto out;
1346 }
Eric Salama6e134fe2020-11-13 15:56:36 +01001347 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001348 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001349 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001350 err_code |= ERR_ALERT | ERR_FATAL;
1351 goto out;
1352 }
1353
1354 out:
1355 free(errmsg);
1356 return err_code;
1357}
Simon Horman0d16a402015-01-30 11:22:58 +09001358
1359/*
William Lallemand51097192015-04-14 16:35:22 +02001360 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001361 * Returns the error code, 0 if OK, or any combination of :
1362 * - ERR_ABORT: must abort ASAP
1363 * - ERR_FATAL: we can continue parsing but not start the service
1364 * - ERR_WARN: a warning has been emitted
1365 * - ERR_ALERT: an alert has been emitted
1366 * Only the two first ones can stop processing, the two others are just
1367 * indicators.
1368 */
1369int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1370{
1371 static struct mailers *curmailers = NULL;
1372 struct mailer *newmailer = NULL;
1373 const char *err;
1374 int err_code = 0;
1375 char *errmsg = NULL;
1376
1377 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1378 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001379 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001380 err_code |= ERR_ALERT | ERR_ABORT;
1381 goto out;
1382 }
1383
1384 err = invalid_char(args[1]);
1385 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001386 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1387 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001388 err_code |= ERR_ALERT | ERR_ABORT;
1389 goto out;
1390 }
1391
1392 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1393 /*
1394 * If there are two proxies with the same name only following
1395 * combinations are allowed:
1396 */
1397 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001398 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1399 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001400 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001401 }
1402 }
1403
Vincent Bernat02779b62016-04-03 13:48:43 +02001404 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001405 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001406 err_code |= ERR_ALERT | ERR_ABORT;
1407 goto out;
1408 }
1409
1410 curmailers->next = mailers;
1411 mailers = curmailers;
1412 curmailers->conf.file = strdup(file);
1413 curmailers->conf.line = linenum;
1414 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001415 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1416 * But need enough time so that timeouts don't occur
1417 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001418 }
1419 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1420 struct sockaddr_storage *sk;
1421 int port1, port2;
1422 struct protocol *proto;
1423
1424 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001425 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1426 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001427 err_code |= ERR_ALERT | ERR_FATAL;
1428 goto out;
1429 }
1430
1431 err = invalid_char(args[1]);
1432 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001433 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1434 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001435 err_code |= ERR_ALERT | ERR_FATAL;
1436 goto out;
1437 }
1438
Vincent Bernat02779b62016-04-03 13:48:43 +02001439 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001440 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001441 err_code |= ERR_ALERT | ERR_ABORT;
1442 goto out;
1443 }
1444
1445 /* the mailers are linked backwards first */
1446 curmailers->count++;
1447 newmailer->next = curmailers->mailer_list;
1448 curmailers->mailer_list = newmailer;
1449 newmailer->mailers = curmailers;
1450 newmailer->conf.file = strdup(file);
1451 newmailer->conf.line = linenum;
1452
1453 newmailer->id = strdup(args[1]);
1454
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001455 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Simon Horman0d16a402015-01-30 11:22:58 +09001456 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001457 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001458 err_code |= ERR_ALERT | ERR_FATAL;
1459 goto out;
1460 }
1461
1462 proto = protocol_by_family(sk->ss_family);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09001463 if (!proto || !proto->connect || proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001464 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1465 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001466 err_code |= ERR_ALERT | ERR_FATAL;
1467 goto out;
1468 }
1469
1470 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001471 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1472 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001473 err_code |= ERR_ALERT | ERR_FATAL;
1474 goto out;
1475 }
1476
1477 if (!port1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001478 ha_alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n",
1479 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001480 err_code |= ERR_ALERT | ERR_FATAL;
1481 goto out;
1482 }
1483
1484 newmailer->addr = *sk;
1485 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001486 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001487 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001488 }
1489 else if (strcmp(args[0], "timeout") == 0) {
1490 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001491 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1492 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001493 err_code |= ERR_ALERT | ERR_FATAL;
1494 goto out;
1495 }
1496 else if (strcmp(args[1], "mail") == 0) {
1497 const char *res;
1498 unsigned int timeout_mail;
1499 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001500 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1501 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001502 err_code |= ERR_ALERT | ERR_FATAL;
1503 goto out;
1504 }
1505 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001506 if (res == PARSE_TIME_OVER) {
1507 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1508 file, linenum, args[2], args[0], args[1]);
1509 err_code |= ERR_ALERT | ERR_FATAL;
1510 goto out;
1511 }
1512 else if (res == PARSE_TIME_UNDER) {
1513 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1514 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001515 err_code |= ERR_ALERT | ERR_FATAL;
1516 goto out;
1517 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001518 else if (res) {
1519 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1520 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001521 err_code |= ERR_ALERT | ERR_FATAL;
1522 goto out;
1523 }
1524 curmailers->timeout.mail = timeout_mail;
1525 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001526 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001527 file, linenum, args[0], args[1]);
1528 err_code |= ERR_ALERT | ERR_FATAL;
1529 goto out;
1530 }
1531 }
Simon Horman0d16a402015-01-30 11:22:58 +09001532 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001533 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001534 err_code |= ERR_ALERT | ERR_FATAL;
1535 goto out;
1536 }
1537
1538out:
1539 free(errmsg);
1540 return err_code;
1541}
1542
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001543void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001544{
1545 free(p->email_alert.mailers.name);
1546 p->email_alert.mailers.name = NULL;
1547 free(p->email_alert.from);
1548 p->email_alert.from = NULL;
1549 free(p->email_alert.to);
1550 p->email_alert.to = NULL;
1551 free(p->email_alert.myhostname);
1552 p->email_alert.myhostname = NULL;
1553}
1554
Willy Tarreaubaaee002006-06-26 02:48:02 +02001555
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001556int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001557cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1558{
Willy Tarreaue5733232019-05-22 19:24:06 +02001559#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001560 const char *err;
1561 const char *item = args[0];
1562
1563 if (!strcmp(item, "namespace_list")) {
1564 return 0;
1565 }
1566 else if (!strcmp(item, "namespace")) {
1567 size_t idx = 1;
1568 const char *current;
1569 while (*(current = args[idx++])) {
1570 err = invalid_char(current);
1571 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001572 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1573 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001574 return ERR_ALERT | ERR_FATAL;
1575 }
1576
1577 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001578 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1579 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001580 return ERR_ALERT | ERR_FATAL;
1581 }
1582 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001583 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1584 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001585 return ERR_ALERT | ERR_FATAL;
1586 }
1587 }
1588 }
1589
1590 return 0;
1591#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001592 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1593 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001594 return ERR_ALERT | ERR_FATAL;
1595#endif
1596}
1597
1598int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001599cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1600{
1601
1602 int err_code = 0;
1603 const char *err;
1604
1605 if (!strcmp(args[0], "userlist")) { /* new userlist */
1606 struct userlist *newul;
1607
1608 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001609 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1610 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001611 err_code |= ERR_ALERT | ERR_FATAL;
1612 goto out;
1613 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001614 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1615 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001616
1617 err = invalid_char(args[1]);
1618 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001619 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1620 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001621 err_code |= ERR_ALERT | ERR_FATAL;
1622 goto out;
1623 }
1624
1625 for (newul = userlist; newul; newul = newul->next)
1626 if (!strcmp(newul->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001627 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1628 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001629 err_code |= ERR_WARN;
1630 goto out;
1631 }
1632
Vincent Bernat02779b62016-04-03 13:48:43 +02001633 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001634 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001635 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001636 err_code |= ERR_ALERT | ERR_ABORT;
1637 goto out;
1638 }
1639
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001640 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001641 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001642 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001643 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001644 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001645 goto out;
1646 }
1647
1648 newul->next = userlist;
1649 userlist = newul;
1650
1651 } else if (!strcmp(args[0], "group")) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001652 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001653 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001654 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001655
1656 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001657 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1658 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001659 err_code |= ERR_ALERT | ERR_FATAL;
1660 goto out;
1661 }
1662
1663 err = invalid_char(args[1]);
1664 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001665 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1666 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001667 err_code |= ERR_ALERT | ERR_FATAL;
1668 goto out;
1669 }
1670
William Lallemand4ac9f542015-05-28 18:03:51 +02001671 if (!userlist)
1672 goto out;
1673
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001674 for (ag = userlist->groups; ag; ag = ag->next)
1675 if (!strcmp(ag->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001676 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1677 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001678 err_code |= ERR_ALERT;
1679 goto out;
1680 }
1681
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001682 ag = calloc(1, sizeof(*ag));
1683 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001684 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001685 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001686 goto out;
1687 }
1688
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001689 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001690 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001691 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001692 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001693 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001694 goto out;
1695 }
1696
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001697 cur_arg = 2;
1698
1699 while (*args[cur_arg]) {
1700 if (!strcmp(args[cur_arg], "users")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001701 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001702 cur_arg += 2;
1703 continue;
1704 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001705 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1706 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001707 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001708 free(ag->groupusers);
1709 free(ag->name);
1710 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001711 goto out;
1712 }
1713 }
1714
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001715 ag->next = userlist->groups;
1716 userlist->groups = ag;
1717
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001718 } else if (!strcmp(args[0], "user")) { /* new user */
1719 struct auth_users *newuser;
1720 int cur_arg;
1721
1722 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001723 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1724 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001725 err_code |= ERR_ALERT | ERR_FATAL;
1726 goto out;
1727 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001728 if (!userlist)
1729 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001730
1731 for (newuser = userlist->users; newuser; newuser = newuser->next)
1732 if (!strcmp(newuser->user, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001733 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1734 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001735 err_code |= ERR_ALERT;
1736 goto out;
1737 }
1738
Vincent Bernat02779b62016-04-03 13:48:43 +02001739 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001740 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001741 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001742 err_code |= ERR_ALERT | ERR_ABORT;
1743 goto out;
1744 }
1745
1746 newuser->user = strdup(args[1]);
1747
1748 newuser->next = userlist->users;
1749 userlist->users = newuser;
1750
1751 cur_arg = 2;
1752
1753 while (*args[cur_arg]) {
1754 if (!strcmp(args[cur_arg], "password")) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001755#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001756 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001757 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1758 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001759 err_code |= ERR_ALERT | ERR_FATAL;
1760 goto out;
1761 }
1762#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001763 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1764 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001765 err_code |= ERR_ALERT;
1766#endif
1767 newuser->pass = strdup(args[cur_arg + 1]);
1768 cur_arg += 2;
1769 continue;
1770 } else if (!strcmp(args[cur_arg], "insecure-password")) {
1771 newuser->pass = strdup(args[cur_arg + 1]);
1772 newuser->flags |= AU_O_INSECURE;
1773 cur_arg += 2;
1774 continue;
1775 } else if (!strcmp(args[cur_arg], "groups")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001776 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001777 cur_arg += 2;
1778 continue;
1779 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001780 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1781 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001782 err_code |= ERR_ALERT | ERR_FATAL;
1783 goto out;
1784 }
1785 }
1786 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001787 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 +01001788 err_code |= ERR_ALERT | ERR_FATAL;
1789 }
1790
1791out:
1792 return err_code;
1793}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001794
Christopher Faulet79bdef32016-11-04 22:36:15 +01001795int
1796cfg_parse_scope(const char *file, int linenum, char *line)
1797{
1798 char *beg, *end, *scope = NULL;
1799 int err_code = 0;
1800 const char *err;
1801
1802 beg = line + 1;
1803 end = strchr(beg, ']');
1804
1805 /* Detect end of scope declaration */
1806 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001807 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1808 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001809 err_code |= ERR_ALERT | ERR_FATAL;
1810 goto out;
1811 }
1812
1813 /* Get scope name and check its validity */
1814 scope = my_strndup(beg, end-beg);
1815 err = invalid_char(scope);
1816 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001817 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1818 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001819 err_code |= ERR_ALERT | ERR_ABORT;
1820 goto out;
1821 }
1822
1823 /* Be sure to have a scope declaration alone on its line */
1824 line = end+1;
1825 while (isspace((unsigned char)*line))
1826 line++;
1827 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001828 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1829 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001830 err_code |= ERR_ALERT | ERR_ABORT;
1831 goto out;
1832 }
1833
1834 /* We have a valid scope declaration, save it */
1835 free(cfg_scope);
1836 cfg_scope = scope;
1837 scope = NULL;
1838
1839 out:
1840 free(scope);
1841 return err_code;
1842}
1843
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001844int
1845cfg_parse_track_sc_num(unsigned int *track_sc_num,
1846 const char *arg, const char *end, char **errmsg)
1847{
1848 const char *p;
1849 unsigned int num;
1850
1851 p = arg;
1852 num = read_uint64(&arg, end);
1853
1854 if (arg != end) {
1855 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1856 return -1;
1857 }
1858
1859 if (num >= MAX_SESS_STKCTR) {
1860 memprintf(errmsg, "%u track-sc number exceeding "
1861 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1862 return -1;
1863 }
1864
1865 *track_sc_num = num;
1866 return 0;
1867}
1868
Willy Tarreaubaaee002006-06-26 02:48:02 +02001869/*
1870 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001871 * Returns the error code, 0 if OK, or any combination of :
1872 * - ERR_ABORT: must abort ASAP
1873 * - ERR_FATAL: we can continue parsing but not start the service
1874 * - ERR_WARN: a warning has been emitted
1875 * - ERR_ALERT: an alert has been emitted
1876 * Only the two first ones can stop processing, the two others are just
1877 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001878 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001879int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001880{
William Lallemand64e84512015-05-12 14:25:37 +02001881 char *thisline;
1882 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001883 FILE *f;
1884 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001885 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001886 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001887 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001888 int readbytes = 0;
1889
1890 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001891 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001892 return -1;
1893 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001894
David Carlier97880bb2016-04-08 10:35:26 +01001895 if ((f=fopen(file,"r")) == NULL) {
1896 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001897 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001898 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001899
William Lallemandb2f07452015-05-12 14:27:13 +02001900next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001901 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001902 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001903 char *end;
1904 char *args[MAX_LINE_ARGS + 1];
1905 char *line = thisline;
William Lallemandf9873ba2015-05-05 17:37:14 +02001906 int dquote = 0; /* double quote */
1907 int squote = 0; /* simple quote */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001908
Willy Tarreaubaaee002006-06-26 02:48:02 +02001909 linenum++;
1910
1911 end = line + strlen(line);
1912
William Lallemand64e84512015-05-12 14:25:37 +02001913 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001914 /* Check if we reached the limit and the last char is not \n.
1915 * Watch out for the last line without the terminating '\n'!
1916 */
William Lallemand64e84512015-05-12 14:25:37 +02001917 char *newline;
1918 int newlinesize = linesize * 2;
1919
1920 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1921 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001922 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1923 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001924 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau4d4dda12020-06-25 09:37:54 +02001925 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001926 continue;
1927 }
1928
1929 readbytes = linesize - 1;
1930 linesize = newlinesize;
1931 thisline = newline;
Willy Tarreau4d4dda12020-06-25 09:37:54 +02001932 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001933 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001934 }
1935
William Lallemand64e84512015-05-12 14:25:37 +02001936 readbytes = 0;
1937
Willy Tarreaubaaee002006-06-26 02:48:02 +02001938 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001939 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001940 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001941
Christopher Faulet79bdef32016-11-04 22:36:15 +01001942
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001943 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001944 err_code |= cfg_parse_scope(file, linenum, line);
1945 goto next_line;
1946 }
1947
Willy Tarreaubaaee002006-06-26 02:48:02 +02001948 arg = 0;
1949 args[arg] = line;
1950
1951 while (*line && arg < MAX_LINE_ARGS) {
William Lallemandf9873ba2015-05-05 17:37:14 +02001952 if (*line == '"' && !squote) { /* double quote outside single quotes */
1953 if (dquote)
1954 dquote = 0;
1955 else
1956 dquote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001957 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001958 end--;
1959 }
1960 else if (*line == '\'' && !dquote) { /* single quote outside double quotes */
1961 if (squote)
1962 squote = 0;
1963 else
1964 squote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001965 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001966 end--;
1967 }
1968 else if (*line == '\\' && !squote) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001969 /* first, we'll replace \\, \<space>, \#, \r, \n, \t, \xXX with their
1970 * C equivalent value. Other combinations left unchanged (eg: \1).
1971 */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001972 int skip = 0;
1973 if (line[1] == ' ' || line[1] == '\\' || line[1] == '#') {
1974 *line = line[1];
1975 skip = 1;
1976 }
1977 else if (line[1] == 'r') {
1978 *line = '\r';
1979 skip = 1;
William Lallemandf9873ba2015-05-05 17:37:14 +02001980 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001981 else if (line[1] == 'n') {
1982 *line = '\n';
1983 skip = 1;
1984 }
1985 else if (line[1] == 't') {
1986 *line = '\t';
1987 skip = 1;
1988 }
1989 else if (line[1] == 'x') {
Emeric Brunb982a3d2010-01-04 15:45:53 +01001990 if ((line + 3 < end) && ishex(line[2]) && ishex(line[3])) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001991 unsigned char hex1, hex2;
1992 hex1 = toupper(line[2]) - '0';
1993 hex2 = toupper(line[3]) - '0';
1994 if (hex1 > 9) hex1 -= 'A' - '9' - 1;
1995 if (hex2 > 9) hex2 -= 'A' - '9' - 1;
1996 *line = (hex1<<4) + hex2;
1997 skip = 3;
1998 }
1999 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002000 ha_alert("parsing [%s:%d] : invalid or incomplete '\\x' sequence in '%s'.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002001 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f244222020-05-07 19:21:31 +02002002 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002003 }
William Lallemandf9873ba2015-05-05 17:37:14 +02002004 } else if (line[1] == '"') {
2005 *line = '"';
2006 skip = 1;
2007 } else if (line[1] == '\'') {
2008 *line = '\'';
2009 skip = 1;
William Lallemandb2f07452015-05-12 14:27:13 +02002010 } else if (line[1] == '$' && dquote) { /* escaping of $ only inside double quotes */
2011 *line = '$';
2012 skip = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002013 }
2014 if (skip) {
Cyril Bontédd1b01d2009-12-06 13:43:42 +01002015 memmove(line + 1, line + 1 + skip, end - (line + skip));
Willy Tarreaubaaee002006-06-26 02:48:02 +02002016 end -= skip;
2017 }
2018 line++;
2019 }
William Lallemandf9873ba2015-05-05 17:37:14 +02002020 else if ((!squote && !dquote && *line == '#') || *line == '\n' || *line == '\r') {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002021 /* end of string, end of loop */
2022 *line = 0;
2023 break;
2024 }
William Lallemandf9873ba2015-05-05 17:37:14 +02002025 else if (!squote && !dquote && isspace((unsigned char)*line)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002026 /* a non-escaped space is an argument separator */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01002027 *line++ = '\0';
Willy Tarreau8f8e6452007-06-17 21:51:38 +02002028 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02002029 line++;
2030 args[++arg] = line;
2031 }
William Lallemandb2f07452015-05-12 14:27:13 +02002032 else if (dquote && *line == '$') {
2033 /* environment variables are evaluated inside double quotes */
2034 char *var_beg;
2035 char *var_end;
2036 char save_char;
2037 char *value;
2038 int val_len;
2039 int newlinesize;
2040 int braces = 0;
2041
2042 var_beg = line + 1;
2043 var_end = var_beg;
2044
2045 if (*var_beg == '{') {
2046 var_beg++;
2047 var_end++;
2048 braces = 1;
2049 }
2050
2051 if (!isalpha((int)(unsigned char)*var_beg) && *var_beg != '_') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002052 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 +02002053 err_code |= ERR_ALERT | ERR_FATAL;
2054 goto next_line; /* skip current line */
2055 }
2056
2057 while (isalnum((int)(unsigned char)*var_end) || *var_end == '_')
2058 var_end++;
2059
2060 save_char = *var_end;
2061 *var_end = '\0';
2062 value = getenv(var_beg);
2063 *var_end = save_char;
2064 val_len = value ? strlen(value) : 0;
2065
2066 if (braces) {
2067 if (*var_end == '}') {
2068 var_end++;
2069 braces = 0;
2070 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002071 ha_alert("parsing [%s:%d] : Variable expansion: Mismatched braces.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02002072 err_code |= ERR_ALERT | ERR_FATAL;
2073 goto next_line; /* skip current line */
2074 }
2075 }
2076
2077 newlinesize = (end - thisline) - (var_end - line) + val_len + 1;
2078
2079 /* if not enough space in thisline */
2080 if (newlinesize > linesize) {
2081 char *newline;
2082
2083 newline = realloc(thisline, newlinesize * sizeof(*thisline));
2084 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002085 ha_alert("parsing [%s:%d] : Variable expansion: Not enough memory.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02002086 err_code |= ERR_ALERT | ERR_FATAL;
2087 goto next_line; /* slip current line */
2088 }
2089 /* recompute pointers if realloc returns a new pointer */
2090 if (newline != thisline) {
2091 int i;
2092 int diff;
2093
2094 for (i = 0; i <= arg; i++) {
2095 diff = args[i] - thisline;
2096 args[i] = newline + diff;
2097 }
2098
2099 diff = var_end - thisline;
2100 var_end = newline + diff;
2101 diff = end - thisline;
2102 end = newline + diff;
2103 diff = line - thisline;
2104 line = newline + diff;
2105 thisline = newline;
2106 }
2107 linesize = newlinesize;
2108 }
2109
2110 /* insert value inside the line */
2111 memmove(line + val_len, var_end, end - var_end + 1);
2112 memcpy(line, value, val_len);
2113 end += val_len - (var_end - line);
2114 line += val_len;
2115 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002116 else {
2117 line++;
2118 }
2119 }
William Lallemandb2f07452015-05-12 14:27:13 +02002120
William Lallemandf9873ba2015-05-05 17:37:14 +02002121 if (dquote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002122 ha_alert("parsing [%s:%d] : Mismatched double quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002123 err_code |= ERR_ALERT | ERR_FATAL;
2124 }
2125
2126 if (squote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002127 ha_alert("parsing [%s:%d] : Mismatched simple quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002128 err_code |= ERR_ALERT | ERR_FATAL;
2129 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002130
2131 /* empty line */
2132 if (!**args)
2133 continue;
2134
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002135 if (*line) {
2136 /* we had to stop due to too many args.
2137 * Let's terminate the string, print the offending part then cut the
2138 * last arg.
2139 */
2140 while (*line && *line != '#' && *line != '\n' && *line != '\r')
2141 line++;
2142 *line = '\0';
2143
Christopher Faulet767a84b2017-11-24 16:50:31 +01002144 ha_alert("parsing [%s:%d]: line too long, truncating at word %d, position %ld: <%s>.\n",
2145 file, linenum, arg + 1, (long)(args[arg] - thisline + 1), args[arg]);
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002146 err_code |= ERR_ALERT | ERR_FATAL;
2147 args[arg] = line;
2148 }
2149
Willy Tarreau540abe42007-05-02 20:50:16 +02002150 /* zero out remaining args and ensure that at least one entry
2151 * is zeroed out.
2152 */
2153 while (++arg <= MAX_LINE_ARGS) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002154 args[arg] = line;
2155 }
2156
Willy Tarreau3842f002009-06-14 11:39:52 +02002157 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002158 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02002159 char *tmp;
2160
Willy Tarreau3842f002009-06-14 11:39:52 +02002161 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002162 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002163 for (arg=0; *args[arg+1]; arg++)
2164 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002165 *tmp = '\0'; // fix the next arg to \0
2166 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002167 }
Willy Tarreau3842f002009-06-14 11:39:52 +02002168 else if (!strcmp(args[0], "default")) {
2169 kwm = KWM_DEF;
2170 for (arg=0; *args[arg+1]; arg++)
2171 args[arg] = args[arg+1]; // shift args after inversion
2172 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002173
William Lallemand0f99e342011-10-12 17:50:54 +02002174 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 && \
Willy Tarreaubeb859a2018-11-22 18:07:59 +01002175 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling")) {
2176 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 +02002177 err_code |= ERR_ALERT | ERR_FATAL;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002178 }
2179
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002180 /* detect section start */
2181 list_for_each_entry(ics, &sections, list) {
2182 if (strcmp(args[0], ics->section_name) == 0) {
2183 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002184 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002185 cs = ics;
2186 break;
2187 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002188 }
2189
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002190 if (pcs && pcs->post_section_parser) {
2191 err_code |= pcs->post_section_parser();
2192 if (err_code & ERR_ABORT)
2193 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002194 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002195 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002196
William Lallemandd2ff56d2017-10-16 11:06:50 +02002197 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002198 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002199 err_code |= ERR_ALERT | ERR_FATAL;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002200 } else {
William Lallemandd2ff56d2017-10-16 11:06:50 +02002201 err_code |= cs->section_parser(file, linenum, args, kwm);
2202 if (err_code & ERR_ABORT)
2203 goto err;
2204 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002205 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002206
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002207 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002208 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002209
2210err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002211 free(cfg_scope);
2212 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002213 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002214 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002215 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002216 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002217}
2218
Willy Tarreau64ab6072014-09-16 12:17:36 +02002219/* This function propagates processes from frontend <from> to backend <to> so
2220 * that it is always guaranteed that a backend pointed to by a frontend is
2221 * bound to all of its processes. After that, if the target is a "listen"
2222 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002223 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002224 * checked first to ensure that <to> is already bound to all processes of
2225 * <from>, there is no risk of looping and we ensure to follow the shortest
2226 * path to the destination.
2227 *
2228 * It is possible to set <to> to NULL for the first call so that the function
2229 * takes care of visiting the initial frontend in <from>.
2230 *
2231 * It is important to note that the function relies on the fact that all names
2232 * have already been resolved.
2233 */
2234void propagate_processes(struct proxy *from, struct proxy *to)
2235{
2236 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002237
2238 if (to) {
2239 /* check whether we need to go down */
2240 if (from->bind_proc &&
2241 (from->bind_proc & to->bind_proc) == from->bind_proc)
2242 return;
2243
2244 if (!from->bind_proc && !to->bind_proc)
2245 return;
2246
2247 to->bind_proc = from->bind_proc ?
2248 (to->bind_proc | from->bind_proc) : 0;
2249
2250 /* now propagate down */
2251 from = to;
2252 }
2253
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002254 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002255 return;
2256
Willy Tarreauf6b70012014-12-18 14:00:43 +01002257 if (from->state == PR_STSTOPPED)
2258 return;
2259
Willy Tarreau64ab6072014-09-16 12:17:36 +02002260 /* default_backend */
2261 if (from->defbe.be)
2262 propagate_processes(from, from->defbe.be);
2263
2264 /* use_backend */
2265 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002266 if (rule->dynamic)
2267 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002268 to = rule->be.backend;
2269 propagate_processes(from, to);
2270 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002271}
2272
Willy Tarreaubb925012009-07-23 13:36:36 +02002273/*
2274 * Returns the error code, 0 if OK, or any combination of :
2275 * - ERR_ABORT: must abort ASAP
2276 * - ERR_FATAL: we can continue parsing but not start the service
2277 * - ERR_WARN: a warning has been emitted
2278 * - ERR_ALERT: an alert has been emitted
2279 * Only the two first ones can stop processing, the two others are just
2280 * indicators.
2281 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002282int check_config_validity()
2283{
2284 int cfgerr = 0;
2285 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002286 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002287 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002288 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002289 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002290 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002291 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002292 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002293 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002294
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002295 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002296 /*
2297 * Now, check for the integrity of all that we have collected.
2298 */
2299
2300 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002301 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002302
Willy Tarreau193b8c62012-11-22 00:17:38 +01002303 if (!global.tune.max_http_hdr)
2304 global.tune.max_http_hdr = MAX_HTTP_HDR;
2305
2306 if (!global.tune.cookie_len)
2307 global.tune.cookie_len = CAPTURE_LEN;
2308
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002309 if (!global.tune.requri_len)
2310 global.tune.requri_len = REQURI_LEN;
2311
Willy Tarreau149ab772019-01-26 14:27:06 +01002312 if (!global.nbthread) {
2313 /* nbthread not set, thus automatic. In this case, and only if
2314 * running on a single process, we enable the same number of
2315 * threads as the number of CPUs the process is bound to. This
2316 * allows to easily control the number of threads using taskset.
2317 */
2318 global.nbthread = 1;
2319#if defined(USE_THREAD)
2320 if (global.nbproc == 1)
2321 global.nbthread = thread_cpus_enabled_at_boot;
2322 all_threads_mask = nbits(global.nbthread);
2323#endif
2324 }
2325
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002326 if (global.nbproc > 1 && global.nbthread > 1) {
2327 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2328 err_code |= ERR_ALERT | ERR_FATAL;
2329 goto out;
2330 }
2331
Willy Tarreaubafbe012017-11-24 17:34:44 +01002332 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002333
Willy Tarreaubafbe012017-11-24 17:34:44 +01002334 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002335
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002336 /* Post initialisation of the users and groups lists. */
2337 err_code = userlist_postinit();
2338 if (err_code != ERR_NONE)
2339 goto out;
2340
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002341 /* first, we will invert the proxy list order */
2342 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002343 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002344 struct proxy *next;
2345
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002346 next = proxies_list->next;
2347 proxies_list->next = curproxy;
2348 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002349 if (!next)
2350 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002351 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002352 }
2353
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002354 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002355 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002356 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002357 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002358 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002359 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002360 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002361 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002362
Willy Tarreau050536d2012-10-04 08:47:34 +02002363 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002364 /* proxy ID not set, use automatic numbering with first
2365 * spare entry starting with next_pxid.
2366 */
2367 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2368 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2369 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002370 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002371 next_pxid++;
2372
Willy Tarreau55ea7572007-06-17 19:56:27 +02002373
Willy Tarreaubaaee002006-06-26 02:48:02 +02002374 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002375 /* ensure we don't keep listeners uselessly bound */
2376 stop_proxy(curproxy);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002377 if (curproxy->table) {
2378 free((void *)curproxy->table->peers.name);
2379 curproxy->table->peers.p = NULL;
2380 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002381 continue;
2382 }
2383
Willy Tarreau102df612014-05-07 23:56:38 +02002384 /* Check multi-process mode compatibility for the current proxy */
2385
2386 if (curproxy->bind_proc) {
2387 /* an explicit bind-process was specified, let's check how many
2388 * processes remain.
2389 */
David Carliere6c39412015-07-02 07:00:17 +00002390 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002391
Willy Tarreaua38a7172019-02-02 17:11:28 +01002392 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002393 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002394 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 +02002395 curproxy->bind_proc = 1;
2396 }
2397 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002398 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 +02002399 curproxy->bind_proc = 0;
2400 }
2401 }
2402
Willy Tarreau3d209582014-05-09 17:06:11 +02002403 /* check and reduce the bind-proc of each listener */
2404 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2405 unsigned long mask;
2406
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002407 /* HTTP frontends with "h2" as ALPN/NPN will work in
2408 * HTTP/2 and absolutely require buffers 16kB or larger.
2409 */
2410#ifdef USE_OPENSSL
2411 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2412#ifdef OPENSSL_NPN_NEGOTIATED
2413 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002414 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002415 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",
2416 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002417 cfgerr++;
2418 }
2419#endif
2420#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2421 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002422 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002423 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",
2424 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002425 cfgerr++;
2426 }
2427#endif
2428 } /* HTTP && bufsize < 16384 */
2429#endif
2430
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002431 /* detect and address thread affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002432 mask = thread_mask(bind_conf->bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002433 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002434 unsigned long new_mask = 0;
2435
2436 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002437 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002438 mask >>= global.nbthread;
2439 }
2440
Willy Tarreaua36b3242019-02-02 13:14:34 +01002441 bind_conf->bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002442 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",
2443 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2444 }
2445
2446 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002447 mask = proc_mask(bind_conf->bind_proc) & proc_mask(curproxy->bind_proc);
2448 if (!(mask & all_proc_mask)) {
2449 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
2450 nbproc = my_popcountl(bind_conf->bind_proc);
2451 bind_conf->bind_proc = proc_mask(bind_conf->bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002452
Willy Tarreaua36b3242019-02-02 13:14:34 +01002453 if (!bind_conf->bind_proc && nbproc == 1) {
2454 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",
2455 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2456 bind_conf->bind_proc = mask & ~(mask - 1);
2457 }
2458 else if (!bind_conf->bind_proc && nbproc > 1) {
2459 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",
2460 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2461 bind_conf->bind_proc = 0;
2462 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002463 }
2464 }
2465
Willy Tarreauff01a212009-03-15 13:46:16 +01002466 switch (curproxy->mode) {
2467 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002468 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002469 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002470 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2471 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002472 cfgerr++;
2473 }
2474
2475 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002476 ha_warning("config : servers will be ignored for %s '%s'.\n",
2477 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002478 break;
2479
2480 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002481 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002482 break;
2483
2484 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002485 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002486 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002487
2488 case PR_MODE_CLI:
2489 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2490 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002491 }
2492
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002493 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002494 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2495 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002496 err_code |= ERR_WARN;
2497 }
2498
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002499 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002500 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002501 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002502 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2503 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002504 cfgerr++;
2505 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002506#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002507 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002508 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2509 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002510 cfgerr++;
2511 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002512#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002513 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002514 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2515 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002516 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002517 }
2518 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002519 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002520 /* If no LB algo is set in a backend, and we're not in
2521 * transparent mode, dispatch mode nor proxy mode, we
2522 * want to use balance roundrobin by default.
2523 */
2524 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2525 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002526 }
2527 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002528
Willy Tarreau1620ec32011-08-06 17:05:02 +02002529 if (curproxy->options & PR_O_DISPATCH)
2530 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2531 else if (curproxy->options & PR_O_HTTP_PROXY)
2532 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2533 else if (curproxy->options & PR_O_TRANSP)
2534 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002535
Willy Tarreau1620ec32011-08-06 17:05:02 +02002536 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_HTTP_CHK) {
2537 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002538 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2539 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002540 err_code |= ERR_WARN;
2541 curproxy->options &= ~PR_O_DISABLE404;
2542 }
2543 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002544 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2545 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002546 err_code |= ERR_WARN;
2547 curproxy->options &= ~PR_O2_CHK_SNDST;
2548 }
Willy Tarreauef781042010-01-27 11:53:01 +01002549 }
2550
Simon Horman98637e52014-06-20 12:30:16 +09002551 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2552 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002553 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2554 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002555 cfgerr++;
2556 }
2557 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002558 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2559 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002560 cfgerr++;
2561 }
2562 }
2563
Olivier Houcharda254a372019-04-05 15:30:12 +02002564 if ((curproxy->retry_type &~ PR_RE_CONN_FAILED) &&
2565 !(curproxy->options2 & PR_O2_USE_HTX)) {
2566 ha_warning("Proxy '%s' : retry-on with any other keywords than 'conn-failure' will be ignored, requires 'option http-use-htx'.\n", curproxy->id);
2567 err_code |= ERR_WARN;
2568 curproxy->retry_type &= PR_RE_CONN_FAILED;
2569 }
Simon Horman64e34162015-02-06 11:11:57 +09002570 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002571 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002572 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2573 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2574 "'email-alert myhostname', or 'email-alert to' "
2575 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2576 "to be present).\n",
2577 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002578 err_code |= ERR_WARN;
2579 free_email_alert(curproxy);
2580 }
2581 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002582 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002583 }
2584
Simon Horman98637e52014-06-20 12:30:16 +09002585 if (curproxy->check_command) {
2586 int clear = 0;
2587 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002588 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2589 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002590 err_code |= ERR_WARN;
2591 clear = 1;
2592 }
2593 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002594 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2595 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002596 cfgerr++;
2597 }
2598 if (clear) {
2599 free(curproxy->check_command);
2600 curproxy->check_command = NULL;
2601 }
2602 }
2603
2604 if (curproxy->check_path) {
2605 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002606 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2607 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002608 err_code |= ERR_WARN;
2609 free(curproxy->check_path);
2610 curproxy->check_path = NULL;
2611 }
2612 }
2613
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002614 /* if a default backend was specified, let's find it */
2615 if (curproxy->defbe.name) {
2616 struct proxy *target;
2617
Willy Tarreauafb39922015-05-26 12:04:09 +02002618 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002619 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002620 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2621 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002622 cfgerr++;
2623 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002624 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2625 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002626 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002627 } else if (target->mode != curproxy->mode &&
2628 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2629
Christopher Faulet767a84b2017-11-24 16:50:31 +01002630 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2631 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2632 curproxy->conf.file, curproxy->conf.line,
2633 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2634 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002635 cfgerr++;
Willy Tarreau68ad3a42018-10-22 11:49:15 +02002636 } else if ((curproxy->options2 ^ target->options2) & PR_O2_USE_HTX) {
2637 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",
2638 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2639 curproxy->conf.file, curproxy->conf.line,
2640 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2641 target->conf.file, target->conf.line);
2642 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002643 } else {
2644 free(curproxy->defbe.name);
2645 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002646 /* Emit a warning if this proxy also has some servers */
2647 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002648 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2649 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002650 err_code |= ERR_WARN;
2651 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002652 }
2653 }
2654
Willy Tarreau55ea7572007-06-17 19:56:27 +02002655 /* find the target proxy for 'use_backend' rules */
2656 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002657 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002658 struct logformat_node *node;
2659 char *pxname;
2660
2661 /* Try to parse the string as a log format expression. If the result
2662 * of the parsing is only one entry containing a simple string, then
2663 * it's a standard string corresponding to a static rule, thus the
2664 * parsing is cancelled and be.name is restored to be resolved.
2665 */
2666 pxname = rule->be.name;
2667 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002668 curproxy->conf.args.ctx = ARGC_UBK;
2669 curproxy->conf.args.file = rule->file;
2670 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002671 err = NULL;
2672 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002673 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2674 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002675 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002676 cfgerr++;
2677 continue;
2678 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002679 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2680
2681 if (!LIST_ISEMPTY(&rule->be.expr)) {
2682 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2683 rule->dynamic = 1;
2684 free(pxname);
2685 continue;
2686 }
Christopher Faulet8762fea2020-05-07 15:59:33 +02002687 /* Only one element in the list, a simple string: free the expression and
2688 * fall back to static rule
2689 */
2690 LIST_DEL(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002691 free(node->arg);
2692 free(node);
2693 }
2694
2695 rule->dynamic = 0;
2696 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002697
Willy Tarreauafb39922015-05-26 12:04:09 +02002698 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002699 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002700 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2701 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002702 cfgerr++;
2703 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002704 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2705 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002706 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002707 } else if (target->mode != curproxy->mode &&
2708 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2709
Christopher Faulet767a84b2017-11-24 16:50:31 +01002710 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2711 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2712 curproxy->conf.file, curproxy->conf.line,
2713 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2714 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002715 cfgerr++;
Willy Tarreau68ad3a42018-10-22 11:49:15 +02002716 } else if ((curproxy->options2 ^ target->options2) & PR_O2_USE_HTX) {
2717 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",
2718 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2719 curproxy->conf.file, curproxy->conf.line,
2720 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2721 target->conf.file, target->conf.line);
2722 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002723 } else {
2724 free((void *)rule->be.name);
2725 rule->be.backend = target;
2726 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002727 }
2728
Willy Tarreau64ab6072014-09-16 12:17:36 +02002729 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002730 list_for_each_entry(srule, &curproxy->server_rules, list) {
2731 struct server *target = findserver(curproxy, srule->srv.name);
2732
2733 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002734 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2735 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002736 cfgerr++;
2737 continue;
2738 }
2739 free((void *)srule->srv.name);
2740 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002741 }
2742
Emeric Brunb982a3d2010-01-04 15:45:53 +01002743 /* find the target table for 'stick' rules */
2744 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002745 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002746
Emeric Brun1d33b292010-01-04 15:47:17 +01002747 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2748 if (mrule->flags & STK_IS_STORE)
2749 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2750
Emeric Brunb982a3d2010-01-04 15:45:53 +01002751 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002752 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002753 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002754 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002755
2756 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002757 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreauecb5b892020-01-24 07:19:34 +01002758 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002759 cfgerr++;
2760 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002761 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002762 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2763 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002764 cfgerr++;
2765 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002766 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002767 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2768 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002769 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002770 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002771 else {
2772 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002773 mrule->table.t = target;
2774 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002775 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaillef596b4f2019-09-02 14:02:28 +02002776 if (!in_proxies_list(target->proxies_list, curproxy)) {
2777 curproxy->next_stkt_ref = target->proxies_list;
2778 target->proxies_list = curproxy;
2779 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002780 }
2781 }
2782
2783 /* find the target table for 'store response' rules */
2784 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002785 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002786
Emeric Brun1d33b292010-01-04 15:47:17 +01002787 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2788
Emeric Brunb982a3d2010-01-04 15:45:53 +01002789 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002790 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002791 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002792 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002793
2794 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002795 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreauecb5b892020-01-24 07:19:34 +01002796 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002797 cfgerr++;
2798 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002799 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002800 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2801 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002802 cfgerr++;
2803 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002804 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002805 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2806 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002807 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002808 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002809 else {
2810 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002811 mrule->table.t = target;
2812 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002813 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaillef596b4f2019-09-02 14:02:28 +02002814 if (!in_proxies_list(target->proxies_list, curproxy)) {
2815 curproxy->next_stkt_ref = target->proxies_list;
2816 target->proxies_list = curproxy;
2817 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002818 }
2819 }
2820
Christopher Faulete4e830d2017-09-18 14:51:41 +02002821 /* check validity for 'tcp-request' layer 4 rules */
2822 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2823 err = NULL;
2824 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002825 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002826 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002827 cfgerr++;
2828 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002829 }
2830
Christopher Faulete4e830d2017-09-18 14:51:41 +02002831 /* check validity for 'tcp-request' layer 5 rules */
2832 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2833 err = NULL;
2834 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002835 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002836 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002837 cfgerr++;
2838 }
2839 }
2840
Christopher Faulete4e830d2017-09-18 14:51:41 +02002841 /* check validity for 'tcp-request' layer 6 rules */
2842 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2843 err = NULL;
2844 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002845 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002846 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002847 cfgerr++;
2848 }
2849 }
2850
Christopher Faulete4e830d2017-09-18 14:51:41 +02002851 /* check validity for 'http-request' layer 7 rules */
2852 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2853 err = NULL;
2854 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002855 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002856 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002857 cfgerr++;
2858 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002859 }
2860
Christopher Faulete4e830d2017-09-18 14:51:41 +02002861 /* check validity for 'http-response' layer 7 rules */
2862 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2863 err = NULL;
2864 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002865 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002866 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002867 cfgerr++;
2868 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002869 }
2870
Willy Tarreaub3dc39d2014-04-28 22:06:57 +02002871 /* move any "block" rules at the beginning of the http-request rules */
2872 if (!LIST_ISEMPTY(&curproxy->block_rules)) {
2873 /* insert block_rules into http_req_rules at the beginning */
2874 curproxy->block_rules.p->n = curproxy->http_req_rules.n;
2875 curproxy->http_req_rules.n->p = curproxy->block_rules.p;
2876 curproxy->block_rules.n->p = &curproxy->http_req_rules;
2877 curproxy->http_req_rules.n = curproxy->block_rules.n;
2878 LIST_INIT(&curproxy->block_rules);
2879 }
2880
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002881 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002882 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002883
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002884 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002885 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
2886 free((void *)curproxy->table->peers.name);
2887 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002888 break;
2889 }
2890 }
2891
2892 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002893 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002894 curproxy->id, curproxy->table->peers.name);
2895 free((void *)curproxy->table->peers.name);
2896 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002897 cfgerr++;
2898 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002899 else if (curpeers->state == PR_STSTOPPED) {
2900 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002901 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002902 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002903 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002904 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2905 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002906 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002907 cfgerr++;
2908 }
2909 }
2910
Simon Horman9dc49962015-01-30 11:22:59 +09002911
2912 if (curproxy->email_alert.mailers.name) {
2913 struct mailers *curmailers = mailers;
2914
2915 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002916 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002917 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002918 }
Simon Horman9dc49962015-01-30 11:22:59 +09002919 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002920 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2921 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002922 free_email_alert(curproxy);
2923 cfgerr++;
2924 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002925 else {
2926 err = NULL;
2927 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002928 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002929 free(err);
2930 cfgerr++;
2931 }
2932 }
Simon Horman9dc49962015-01-30 11:22:59 +09002933 }
2934
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002935 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & ST_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002936 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002937 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002938 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2939 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002940 cfgerr++;
2941 goto out_uri_auth_compat;
2942 }
2943
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002944 if (curproxy->uri_auth && curproxy->uri_auth->userlist && !(curproxy->uri_auth->flags & ST_CONVDONE)) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002945 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002946 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002947 int i = 0;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002948
Willy Tarreau95fa4692010-02-01 13:05:50 +01002949 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2950 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002951
2952 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002953 uri_auth_compat_req[i++] = "realm";
2954 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2955 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002956
Willy Tarreau95fa4692010-02-01 13:05:50 +01002957 uri_auth_compat_req[i++] = "unless";
2958 uri_auth_compat_req[i++] = "{";
2959 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2960 uri_auth_compat_req[i++] = "}";
2961 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002962
Willy Tarreauff011f22011-01-06 17:51:27 +01002963 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2964 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002965 cfgerr++;
2966 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002967 }
2968
Willy Tarreauff011f22011-01-06 17:51:27 +01002969 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002970
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002971 if (curproxy->uri_auth->auth_realm) {
2972 free(curproxy->uri_auth->auth_realm);
2973 curproxy->uri_auth->auth_realm = NULL;
2974 }
Krzysztof Piotr Oledzki329f74d2010-02-22 20:27:23 +01002975
2976 curproxy->uri_auth->flags |= ST_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002977 }
2978out_uri_auth_compat:
2979
Dragan Dosen43885c72015-10-01 13:18:13 +02002980 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002981 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002982 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2983 if (!curproxy->conf.logformat_sd_string) {
2984 /* set the default logformat_sd_string */
2985 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2986 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002987 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002988 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002989 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002990
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002991 /* compile the log format */
2992 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002993 if (curproxy->conf.logformat_string != default_http_log_format &&
2994 curproxy->conf.logformat_string != default_tcp_log_format &&
2995 curproxy->conf.logformat_string != clf_http_log_format)
2996 free(curproxy->conf.logformat_string);
2997 curproxy->conf.logformat_string = NULL;
2998 free(curproxy->conf.lfs_file);
2999 curproxy->conf.lfs_file = NULL;
3000 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003001
3002 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3003 free(curproxy->conf.logformat_sd_string);
3004 curproxy->conf.logformat_sd_string = NULL;
3005 free(curproxy->conf.lfsd_file);
3006 curproxy->conf.lfsd_file = NULL;
3007 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003008 }
3009
Willy Tarreau62a61232013-04-12 18:13:46 +02003010 if (curproxy->conf.logformat_string) {
3011 curproxy->conf.args.ctx = ARGC_LOG;
3012 curproxy->conf.args.file = curproxy->conf.lfs_file;
3013 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003014 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003015 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003016 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003017 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3018 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003019 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003020 cfgerr++;
3021 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003022 curproxy->conf.args.file = NULL;
3023 curproxy->conf.args.line = 0;
3024 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003025
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003026 if (curproxy->conf.logformat_sd_string) {
3027 curproxy->conf.args.ctx = ARGC_LOGSD;
3028 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3029 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003030 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003031 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 +01003032 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003033 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3034 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003035 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003036 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003037 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003038 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3039 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003040 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003041 cfgerr++;
3042 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003043 curproxy->conf.args.file = NULL;
3044 curproxy->conf.args.line = 0;
3045 }
3046
Willy Tarreau62a61232013-04-12 18:13:46 +02003047 if (curproxy->conf.uniqueid_format_string) {
3048 curproxy->conf.args.ctx = ARGC_UIF;
3049 curproxy->conf.args.file = curproxy->conf.uif_file;
3050 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003051 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003052 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 +01003053 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003054 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3055 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003056 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003057 cfgerr++;
3058 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003059 curproxy->conf.args.file = NULL;
3060 curproxy->conf.args.line = 0;
3061 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003062
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003063 /* only now we can check if some args remain unresolved.
3064 * This must be done after the users and groups resolution.
3065 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003066 cfgerr += smp_resolve_args(curproxy);
3067 if (!cfgerr)
3068 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003069
Willy Tarreau2738a142006-07-08 17:28:09 +02003070 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003071 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003072 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003073 (!curproxy->timeout.connect ||
3074 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003075 ha_warning("config : missing timeouts for %s '%s'.\n"
3076 " | While not properly invalid, you will certainly encounter various problems\n"
3077 " | with such a configuration. To fix this, please ensure that all following\n"
3078 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3079 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003080 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003081 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003082
Willy Tarreau1fa31262007-12-03 00:36:16 +01003083 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3084 * We must still support older configurations, so let's find out whether those
3085 * parameters have been set or must be copied from contimeouts.
3086 */
Willy Tarreau7811c532021-02-12 11:14:35 +01003087 if (!curproxy->timeout.tarpit)
3088 curproxy->timeout.tarpit = curproxy->timeout.connect;
3089 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
3090 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003091
Willy Tarreau1620ec32011-08-06 17:05:02 +02003092 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_SSL3_CHK) {
Willy Tarreau137325d2010-02-01 16:38:17 +01003093 curproxy->check_len = sizeof(sslv3_client_hello_pkt) - 1;
Vincent Bernat3c2f2f22016-04-03 13:48:42 +02003094 curproxy->check_req = malloc(curproxy->check_len);
Willy Tarreau137325d2010-02-01 16:38:17 +01003095 memcpy(curproxy->check_req, sslv3_client_hello_pkt, curproxy->check_len);
Willy Tarreauf3c69202006-07-09 16:42:34 +02003096 }
3097
Willy Tarreau215663d2014-06-13 18:30:23 +02003098 if (!LIST_ISEMPTY(&curproxy->tcpcheck_rules) &&
3099 (curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_TCPCHK_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003100 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
3101 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003102 err_code |= ERR_WARN;
3103 }
3104
Willy Tarreau193b8c62012-11-22 00:17:38 +01003105 /* ensure that cookie capture length is not too large */
3106 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003107 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3108 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003109 err_code |= ERR_WARN;
3110 curproxy->capture_len = global.tune.cookie_len - 1;
3111 }
3112
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003113 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003114 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003115 curproxy->req_cap_pool = create_pool("ptrcap",
3116 curproxy->nb_req_cap * sizeof(char *),
3117 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003118 }
3119
3120 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003121 curproxy->rsp_cap_pool = create_pool("ptrcap",
3122 curproxy->nb_rsp_cap * sizeof(char *),
3123 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003124 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003125
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003126 switch (curproxy->load_server_state_from_file) {
3127 case PR_SRV_STATE_FILE_UNSPEC:
3128 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3129 break;
3130 case PR_SRV_STATE_FILE_GLOBAL:
3131 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003132 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",
3133 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003134 err_code |= ERR_WARN;
3135 }
3136 break;
3137 }
3138
Willy Tarreaubaaee002006-06-26 02:48:02 +02003139 /* first, we will invert the servers list order */
3140 newsrv = NULL;
3141 while (curproxy->srv) {
3142 struct server *next;
3143
3144 next = curproxy->srv->next;
3145 curproxy->srv->next = newsrv;
3146 newsrv = curproxy->srv;
3147 if (!next)
3148 break;
3149 curproxy->srv = next;
3150 }
3151
Willy Tarreau17edc812014-01-03 12:14:34 +01003152 /* Check that no server name conflicts. This causes trouble in the stats.
3153 * We only emit a warning for the first conflict affecting each server,
3154 * in order to avoid combinatory explosion if all servers have the same
3155 * name. We do that only for servers which do not have an explicit ID,
3156 * because these IDs were made also for distinguishing them and we don't
3157 * want to annoy people who correctly manage them.
3158 */
3159 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3160 struct server *other_srv;
3161
3162 if (newsrv->puid)
3163 continue;
3164
3165 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3166 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003167 ha_alert("parsing [%s:%d] : %s '%s', another server named '%s' was already defined at line %d, please use distinct names.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003168 newsrv->conf.file, newsrv->conf.line,
3169 proxy_type_str(curproxy), curproxy->id,
3170 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003171 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003172 break;
3173 }
3174 }
3175 }
3176
Willy Tarreaudd701652010-05-25 23:03:02 +02003177 /* assign automatic UIDs to servers which don't have one yet */
3178 next_id = 1;
3179 newsrv = curproxy->srv;
3180 while (newsrv != NULL) {
3181 if (!newsrv->puid) {
3182 /* server ID not set, use automatic numbering with first
3183 * spare entry starting with next_svid.
3184 */
3185 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3186 newsrv->conf.id.key = newsrv->puid = next_id;
3187 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003188 newsrv->conf.name.key = newsrv->id;
3189 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003190 }
3191 next_id++;
3192 newsrv = newsrv->next;
3193 }
3194
Willy Tarreau20697042007-11-15 23:26:18 +01003195 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003196 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003197
Willy Tarreau62c3be22012-01-20 13:12:32 +01003198 /*
3199 * If this server supports a maxconn parameter, it needs a dedicated
3200 * tasks to fill the emptied slots when a connection leaves.
3201 * Also, resolve deferred tracking dependency if needed.
3202 */
3203 newsrv = curproxy->srv;
3204 while (newsrv != NULL) {
3205 if (newsrv->minconn > newsrv->maxconn) {
3206 /* Only 'minconn' was specified, or it was higher than or equal
3207 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3208 * this will avoid further useless expensive computations.
3209 */
3210 newsrv->maxconn = newsrv->minconn;
3211 } else if (newsrv->maxconn && !newsrv->minconn) {
3212 /* minconn was not specified, so we set it to maxconn */
3213 newsrv->minconn = newsrv->maxconn;
3214 }
3215
Willy Tarreau17d45382016-12-22 21:16:08 +01003216 /* this will also properly set the transport layer for prod and checks */
Christopher Faulet68d35ae2020-03-27 18:55:49 +01003217 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 || (newsrv->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003218 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3219 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3220 }
Emeric Brun94324a42012-10-11 14:00:19 +02003221
Willy Tarreau034c88c2017-01-23 23:36:45 +01003222 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3223 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3224 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3225 ha_warning("parsing [%s:%d] : %s '%s': server '%s' has tfo activated, the backend should be configured with at least 'conn-failure', 'empty-response' and 'response-timeout' or we wouldn't be able to retry the connection on failure.\n",
3226 newsrv->conf.file, newsrv->conf.line,
3227 proxy_type_str(curproxy), curproxy->id,
3228 newsrv->id);
3229
Willy Tarreau62c3be22012-01-20 13:12:32 +01003230 if (newsrv->trackit) {
3231 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003232 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003233 char *pname, *sname;
3234
3235 pname = newsrv->trackit;
3236 sname = strrchr(pname, '/');
3237
3238 if (sname)
3239 *sname++ = '\0';
3240 else {
3241 sname = pname;
3242 pname = NULL;
3243 }
3244
3245 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003246 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003247 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003248 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3249 proxy_type_str(curproxy), curproxy->id,
3250 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003251 cfgerr++;
3252 goto next_srv;
3253 }
3254 } else
3255 px = curproxy;
3256
3257 srv = findserver(px, sname);
3258 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003259 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3260 proxy_type_str(curproxy), curproxy->id,
3261 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003262 cfgerr++;
3263 goto next_srv;
3264 }
3265
Christopher Fauletc6e07702020-03-26 19:48:20 +01003266 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003267 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3268 "tracking as it does not have any check nor agent enabled.\n",
3269 proxy_type_str(curproxy), curproxy->id,
3270 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003271 cfgerr++;
3272 goto next_srv;
3273 }
3274
3275 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3276
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003277 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003278 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3279 "belongs to a tracking chain looping back to %s/%s.\n",
3280 proxy_type_str(curproxy), curproxy->id,
3281 newsrv->id, px->id, srv->id, px->id,
3282 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003283 cfgerr++;
3284 goto next_srv;
3285 }
3286
3287 if (curproxy != px &&
3288 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003289 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3290 "tracking: disable-on-404 option inconsistency.\n",
3291 proxy_type_str(curproxy), curproxy->id,
3292 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003293 cfgerr++;
3294 goto next_srv;
3295 }
3296
Willy Tarreau62c3be22012-01-20 13:12:32 +01003297 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003298 newsrv->tracknext = srv->trackers;
3299 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003300
3301 free(newsrv->trackit);
3302 newsrv->trackit = NULL;
3303 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003304
Willy Tarreau62c3be22012-01-20 13:12:32 +01003305 next_srv:
3306 newsrv = newsrv->next;
3307 }
3308
Olivier Houchard4e694042017-03-14 20:01:29 +01003309 /*
3310 * Try to generate dynamic cookies for servers now.
3311 * It couldn't be done earlier, since at the time we parsed
3312 * the server line, we may not have known yet that we
3313 * should use dynamic cookies, or the secret key may not
3314 * have been provided yet.
3315 */
3316 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3317 newsrv = curproxy->srv;
3318 while (newsrv != NULL) {
3319 srv_set_dyncookie(newsrv);
3320 newsrv = newsrv->next;
3321 }
3322
3323 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003324 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003325 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003326 */
3327
3328 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3329 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3330 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003331 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3332 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3333 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003334 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3335 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3336 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003337 } else {
3338 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3339 fwrr_init_server_groups(curproxy);
3340 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003341 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003342
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003343 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003344 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3345 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3346 fwlc_init_server_tree(curproxy);
3347 } else {
3348 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3349 fas_init_server_tree(curproxy);
3350 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003351 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003352
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003353 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003354 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3355 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3356 chash_init_server_tree(curproxy);
3357 } else {
3358 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3359 init_server_map(curproxy);
3360 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003361 break;
3362 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003363 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003364
3365 if (curproxy->options & PR_O_LOGASAP)
3366 curproxy->to_log &= ~LW_BYTES;
3367
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003368 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003369 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3370 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003371 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3372 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003373 err_code |= ERR_WARN;
3374 }
3375
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003376 if (curproxy->mode != PR_MODE_HTTP) {
3377 int optnum;
3378
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003379 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003380 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3381 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003382 err_code |= ERR_WARN;
3383 curproxy->uri_auth = NULL;
3384 }
3385
Willy Tarreaude7dc882017-03-10 11:49:21 +01003386 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003387 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3388 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003389 err_code |= ERR_WARN;
3390 }
3391
3392 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003393 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3394 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003395 err_code |= ERR_WARN;
3396 }
3397
3398 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003399 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3400 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003401 err_code |= ERR_WARN;
3402 }
3403
3404 if (!LIST_ISEMPTY(&curproxy->block_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003405 ha_warning("config : 'block' rules ignored for %s '%s' as they require HTTP mode.\n",
3406 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003407 err_code |= ERR_WARN;
3408 }
3409
3410 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003411 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3412 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003413 err_code |= ERR_WARN;
3414 }
3415
Willy Tarreau87cf5142011-08-19 22:57:24 +02003416 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003417 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3418 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003419 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003420 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003421 }
3422
3423 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003424 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3425 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003426 err_code |= ERR_WARN;
3427 curproxy->options &= ~PR_O_ORGTO;
3428 }
3429
3430 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3431 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3432 (curproxy->cap & cfg_opts[optnum].cap) &&
3433 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003434 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3435 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003436 err_code |= ERR_WARN;
3437 curproxy->options &= ~cfg_opts[optnum].val;
3438 }
3439 }
3440
3441 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3442 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3443 (curproxy->cap & cfg_opts2[optnum].cap) &&
3444 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003445 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3446 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003447 err_code |= ERR_WARN;
3448 curproxy->options2 &= ~cfg_opts2[optnum].val;
3449 }
3450 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003451
Willy Tarreau29fbe512015-08-20 19:35:14 +02003452#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003453 if (curproxy->conn_src.bind_hdr_occ) {
3454 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003455 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3456 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003457 err_code |= ERR_WARN;
3458 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003459#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003460 }
3461
Willy Tarreaubaaee002006-06-26 02:48:02 +02003462 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003463 * ensure that we're not cross-dressing a TCP server into HTTP.
3464 */
3465 newsrv = curproxy->srv;
3466 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003467 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003468 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3469 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003470 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003471 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003472
Willy Tarreau0cec3312011-10-31 13:49:26 +01003473 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003474 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3475 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003476 err_code |= ERR_WARN;
3477 }
3478
Willy Tarreauc93cd162014-05-13 15:54:22 +02003479 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003480 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3481 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003482 err_code |= ERR_WARN;
3483 }
3484
Willy Tarreau29fbe512015-08-20 19:35:14 +02003485#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003486 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3487 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003488 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3489 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003490 err_code |= ERR_WARN;
3491 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003492#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003493
Willy Tarreau46deab62018-04-28 07:18:15 +02003494 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3495 curproxy->options &= ~PR_O_REUSE_MASK;
3496
Willy Tarreau21d2af32008-02-14 20:25:24 +01003497 newsrv = newsrv->next;
3498 }
3499
Willy Tarreaue42bd962014-09-16 16:21:19 +02003500 /* check if we have a frontend with "tcp-request content" looking at L7
3501 * with no inspect-delay
3502 */
3503 if ((curproxy->cap & PR_CAP_FE) && !curproxy->tcp_req.inspect_delay) {
Christopher Faulete4e830d2017-09-18 14:51:41 +02003504 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
3505 if (arule->action == ACT_TCP_CAPTURE &&
3506 !(arule->arg.cap.expr->fetch->val & SMP_VAL_FE_SES_ACC))
Willy Tarreaue42bd962014-09-16 16:21:19 +02003507 break;
Christopher Faulete4e830d2017-09-18 14:51:41 +02003508 if ((arule->action >= ACT_ACTION_TRK_SC0 && arule->action <= ACT_ACTION_TRK_SCMAX) &&
3509 !(arule->arg.trk_ctr.expr->fetch->val & SMP_VAL_FE_SES_ACC))
Willy Tarreaue42bd962014-09-16 16:21:19 +02003510 break;
3511 }
3512
Christopher Faulete4e830d2017-09-18 14:51:41 +02003513 if (&arule->list != &curproxy->tcp_req.inspect_rules) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003514 ha_warning("config : %s '%s' : some 'tcp-request content' rules explicitly depending on request"
3515 " contents were found in a frontend without any 'tcp-request inspect-delay' setting."
3516 " This means that these rules will randomly find their contents. This can be fixed by"
3517 " setting the tcp-request inspect-delay.\n",
3518 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue42bd962014-09-16 16:21:19 +02003519 err_code |= ERR_WARN;
3520 }
3521 }
3522
Christopher Fauletd7c91962015-04-30 11:48:27 +02003523 /* Check filter configuration, if any */
3524 cfgerr += flt_check(curproxy);
3525
Willy Tarreauc1a21672009-08-16 22:37:44 +02003526 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003527 if (!curproxy->accept)
3528 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003529
Willy Tarreauc1a21672009-08-16 22:37:44 +02003530 if (curproxy->tcp_req.inspect_delay ||
3531 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003532 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003533
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003534 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003535 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003536 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003537 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003538
William Lallemandcf62f7e2018-10-26 14:47:40 +02003539 if (curproxy->mode == PR_MODE_CLI) {
3540 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3541 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3542 }
3543
Willy Tarreauc1a21672009-08-16 22:37:44 +02003544 /* both TCP and HTTP must check switching rules */
3545 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003546
3547 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003548 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003549 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3550 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 +01003551 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003552 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3553 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003554 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003555 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003556 }
3557
3558 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003559 if (curproxy->tcp_req.inspect_delay ||
3560 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3561 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3562
Emeric Brun97679e72010-09-23 17:56:44 +02003563 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3564 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3565
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003566 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003567 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003568 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003569 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003570
3571 /* If the backend does requires RDP cookie persistence, we have to
3572 * enable the corresponding analyser.
3573 */
3574 if (curproxy->options2 & PR_O2_RDPC_PRST)
3575 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003576
3577 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003578 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003579 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3580 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 +01003581 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003582 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3583 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003584 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003585 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003586 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003587
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003588 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003589 * attached to the current proxy */
3590 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3591 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003592 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003593
Christopher Faulet49040582019-04-24 15:25:00 +02003594 /* Special case for HTX because legacy HTTP still exists */
3595 if (mode == PROTO_MODE_HTTP && (curproxy->options2 & PR_O2_USE_HTX))
Christopher Faulet7ff4f142018-11-20 11:23:52 +01003596 mode = PROTO_MODE_HTX;
3597
Christopher Fauleta717b992018-04-10 14:43:00 +02003598 if (!bind_conf->mux_proto)
3599 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003600
3601 /* it is possible that an incorrect mux was referenced
3602 * due to the proxy's mode not being taken into account
3603 * on first pass. Let's adjust it now.
3604 */
3605 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3606
3607 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003608 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3609 proxy_type_str(curproxy), curproxy->id,
3610 (int)bind_conf->mux_proto->token.len,
3611 bind_conf->mux_proto->token.ptr,
3612 bind_conf->arg, bind_conf->file, bind_conf->line);
3613 cfgerr++;
3614 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003615
3616 /* update the mux */
3617 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003618 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003619 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3620 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003621 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003622
Christopher Faulet49040582019-04-24 15:25:00 +02003623 /* Special case for HTX because legacy HTTP still exists */
3624 if (mode == PROTO_MODE_HTTP && (curproxy->options2 & PR_O2_USE_HTX))
Christopher Faulet7ff4f142018-11-20 11:23:52 +01003625 mode = PROTO_MODE_HTX;
3626
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003627 if (!newsrv->mux_proto)
3628 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003629
3630 /* it is possible that an incorrect mux was referenced
3631 * due to the proxy's mode not being taken into account
3632 * on first pass. Let's adjust it now.
3633 */
3634 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3635
3636 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003637 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3638 proxy_type_str(curproxy), curproxy->id,
3639 (int)newsrv->mux_proto->token.len,
3640 newsrv->mux_proto->token.ptr,
3641 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3642 cfgerr++;
3643 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003644
3645 /* update the mux */
3646 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003647 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003648
Christopher Faulet6c9bbb22019-03-26 21:37:23 +01003649 /* the option "http-tunnel" is ignored when HTX is enabled and
3650 * only works with the legacy HTTP. So emit a warning if the
3651 * option is set on a HTX frontend. */
3652 if ((curproxy->cap & PR_CAP_FE) && curproxy->options2 & PR_O2_USE_HTX &&
3653 (curproxy->options & PR_O_HTTP_MODE) == PR_O_HTTP_TUN) {
3654 ha_warning("config : %s '%s' : the option 'http-tunnel' is ignored for HTX proxies.\n",
3655 proxy_type_str(curproxy), curproxy->id);
3656 curproxy->options &= ~PR_O_HTTP_MODE;
3657 }
3658
Willy Tarreau835daa12019-02-07 14:46:29 +01003659 /* initialize idle conns lists */
3660 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3661 int i;
3662
3663 newsrv->priv_conns = calloc(global.nbthread, sizeof(*newsrv->priv_conns));
3664 newsrv->idle_conns = calloc(global.nbthread, sizeof(*newsrv->idle_conns));
3665 newsrv->safe_conns = calloc(global.nbthread, sizeof(*newsrv->safe_conns));
3666
3667 if (!newsrv->priv_conns || !newsrv->idle_conns || !newsrv->safe_conns) {
Willy Tarreau980855b2019-02-07 14:59:29 +01003668 free(newsrv->safe_conns); newsrv->safe_conns = NULL;
3669 free(newsrv->idle_conns); newsrv->idle_conns = NULL;
3670 free(newsrv->priv_conns); newsrv->priv_conns = NULL;
Willy Tarreau835daa12019-02-07 14:46:29 +01003671 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3672 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3673 cfgerr++;
3674 continue;
3675 }
3676
3677 for (i = 0; i < global.nbthread; i++) {
3678 LIST_INIT(&newsrv->priv_conns[i]);
3679 LIST_INIT(&newsrv->idle_conns[i]);
3680 LIST_INIT(&newsrv->safe_conns[i]);
3681 }
Willy Tarreau980855b2019-02-07 14:59:29 +01003682
3683 if (newsrv->max_idle_conns != 0) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003684 if (idle_conn_task == NULL) {
3685 idle_conn_task = task_new(MAX_THREADS_MASK);
3686 if (!idle_conn_task)
3687 goto err;
3688 idle_conn_task->process = srv_cleanup_idle_connections;
3689 idle_conn_task->context = NULL;
3690 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau5fa7e732019-10-18 08:50:49 +02003691 idle_conn_cleanup[i] = task_new(1UL << i);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003692 if (!idle_conn_cleanup[i])
3693 goto err;
3694 idle_conn_cleanup[i]->process = srv_cleanup_toremove_connections;
3695 idle_conn_cleanup[i]->context = NULL;
Olivier Houchard0db0b042020-06-29 17:48:27 +02003696 HA_SPIN_INIT(&toremove_lock[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003697 LIST_INIT(&toremove_connections[i]);
3698 }
3699 }
Willy Tarreauae7dbbf2020-01-24 11:19:13 +01003700 newsrv->idle_orphan_conns = calloc((unsigned short)global.nbthread, sizeof(*newsrv->idle_orphan_conns));
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003701 if (!newsrv->idle_orphan_conns)
Willy Tarreau980855b2019-02-07 14:59:29 +01003702 goto err;
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003703 for (i = 0; i < global.nbthread; i++)
Willy Tarreau980855b2019-02-07 14:59:29 +01003704 LIST_INIT(&newsrv->idle_orphan_conns[i]);
Tim Duesterhusa57ea192020-02-22 16:39:05 +01003705 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
Olivier Houchardf1314812019-02-18 16:41:17 +01003706 if (!newsrv->curr_idle_thr)
3707 goto err;
Willy Tarreau980855b2019-02-07 14:59:29 +01003708 continue;
3709 err:
3710 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3711 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3712 cfgerr++;
3713 continue;
3714 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003715 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003716 }
3717
3718 /***********************************************************/
3719 /* At this point, target names have already been resolved. */
3720 /***********************************************************/
3721
3722 /* Check multi-process mode compatibility */
3723
3724 if (global.nbproc > 1 && global.stats_fe) {
3725 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3726 unsigned long mask;
3727
Willy Tarreau6daac192019-02-02 17:39:53 +01003728 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
3729 mask &= proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003730
3731 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003732 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003733 break;
3734 }
3735 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003736 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 +02003737 }
3738 }
3739
3740 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003741 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003742 if (curproxy->bind_proc)
3743 continue;
3744
3745 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3746 unsigned long mask;
3747
Willy Tarreau6daac192019-02-02 17:39:53 +01003748 mask = proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003749 curproxy->bind_proc |= mask;
3750 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003751 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003752 }
3753
3754 if (global.stats_fe) {
3755 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3756 unsigned long mask;
3757
Cyril Bonté06181952016-02-24 00:14:54 +01003758 mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003759 global.stats_fe->bind_proc |= mask;
3760 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003761 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003762 }
3763
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003764 /* propagate bindings from frontends to backends. Don't do it if there
3765 * are any fatal errors as we must not call it with unresolved proxies.
3766 */
3767 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003768 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003769 if (curproxy->cap & PR_CAP_FE)
3770 propagate_processes(curproxy, NULL);
3771 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003772 }
3773
3774 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003775 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3776 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003777
3778 /*******************************************************/
3779 /* At this step, all proxies have a non-null bind_proc */
3780 /*******************************************************/
3781
3782 /* perform the final checks before creating tasks */
3783
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003784 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003785 struct listener *listener;
3786 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003787
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003788 /* Configure SSL for each bind line.
3789 * Note: if configuration fails at some point, the ->ctx member
3790 * remains NULL so that listeners can later detach.
3791 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003792 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003793 if (bind_conf->xprt->prepare_bind_conf &&
3794 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003795 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003796 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003797
Willy Tarreaue6b98942007-10-29 01:09:36 +01003798 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003799 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003800 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003801 int nbproc;
3802
3803 nbproc = my_popcountl(curproxy->bind_proc &
Cyril Bonté4920d702016-04-15 07:58:43 +02003804 (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003805 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003806
3807 if (!nbproc) /* no intersection between listener and frontend */
3808 nbproc = 1;
3809
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003810 if (!listener->luid) {
3811 /* listener ID not set, use automatic numbering with first
3812 * spare entry starting with next_luid.
3813 */
3814 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3815 listener->conf.id.key = listener->luid = next_id;
3816 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003817 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003818 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003819
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003820 /* enable separate counters */
3821 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003822 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003823 if (!listener->name)
3824 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003825 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003826
Willy Tarreaue6b98942007-10-29 01:09:36 +01003827 if (curproxy->options & PR_O_TCP_NOLING)
3828 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003829 if (!listener->maxaccept)
3830 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3831
3832 /* we want to have an optimal behaviour on single process mode to
3833 * maximize the work at once, but in multi-process we want to keep
3834 * some fairness between processes, so we target half of the max
3835 * number of events to be balanced over all the processes the proxy
3836 * is bound to. Rememeber that maxaccept = -1 must be kept as it is
3837 * used to disable the limit.
3838 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003839 if (listener->maxaccept > 0 && nbproc > 1) {
3840 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003841 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3842 }
3843
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003844 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003845 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003846 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003847
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003848 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003849 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003850
Willy Tarreau620408f2016-10-21 16:37:51 +02003851 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3852 listener->options |= LI_O_TCP_L5_RULES;
3853
Willy Tarreaude3041d2010-05-31 10:56:17 +02003854 if (curproxy->mon_mask.s_addr)
3855 listener->options |= LI_O_CHK_MONNET;
3856
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003857 /* smart accept mode is automatic in HTTP mode */
3858 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003859 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003860 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3861 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003862 }
3863
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003864 /* Release unused SSL configs */
3865 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003866 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3867 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003868 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003869
Willy Tarreaua38a7172019-02-02 17:11:28 +01003870 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003871 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003872 int count, maxproc = 0;
3873
3874 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
David Carliere6c39412015-07-02 07:00:17 +00003875 count = my_popcountl(bind_conf->bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003876 if (count > maxproc)
3877 maxproc = count;
3878 }
3879 /* backends have 0, frontends have 1 or more */
3880 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003881 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3882 " limited to process assigned to the current request.\n",
3883 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003884
Willy Tarreau102df612014-05-07 23:56:38 +02003885 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003886 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3887 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003888 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003889 }
Willy Tarreau102df612014-05-07 23:56:38 +02003890 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003891 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3892 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003893 }
3894 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003895
3896 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003897 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003898 if (curproxy->task) {
3899 curproxy->task->context = curproxy;
3900 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003901 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003902 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3903 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003904 cfgerr++;
3905 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003906 }
3907
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003908 /*
3909 * Recount currently required checks.
3910 */
3911
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003912 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003913 int optnum;
3914
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003915 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3916 if (curproxy->options & cfg_opts[optnum].val)
3917 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003918
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003919 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3920 if (curproxy->options2 & cfg_opts2[optnum].val)
3921 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003922 }
3923
Willy Tarreau0fca4832015-05-01 19:12:05 +02003924 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003925 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003926 if (curproxy->table && curproxy->table->peers.p)
3927 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003928
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003929 /* compute the required process bindings for the peers from <stktables_list>
3930 * for all the stick-tables, the ones coming with "peers" sections included.
3931 */
3932 for (t = stktables_list; t; t = t->next) {
3933 struct proxy *p;
3934
3935 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3936 if (t->peers.p && t->peers.p->peers_fe) {
3937 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3938 }
3939 }
3940 }
3941
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003942 if (cfg_peers) {
3943 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003944 struct peer *p, *pb;
3945
William Lallemand98235322020-03-24 16:02:48 +01003946 /* In the case the peers frontend was not initialized by a
3947 stick-table used in the configuration, set its bind_proc
3948 by default to the first process. */
3949 while (curpeers) {
William Lallemand0412f692020-03-24 16:42:15 +01003950 if (curpeers->peers_fe) {
3951 if (curpeers->peers_fe->bind_proc == 0)
3952 curpeers->peers_fe->bind_proc = 1;
3953 }
William Lallemand98235322020-03-24 16:02:48 +01003954 curpeers = curpeers->next;
3955 }
3956
3957 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003958 /* Remove all peers sections which don't have a valid listener,
3959 * which are not used by any table, or which are bound to more
3960 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003961 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003962 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003963 while (*last) {
Frédéric Lécaillea30b1d72020-03-24 20:08:30 +01003964 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003965 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003966
3967 if (curpeers->state == PR_STSTOPPED) {
3968 /* the "disabled" keyword was present */
3969 if (curpeers->peers_fe)
3970 stop_proxy(curpeers->peers_fe);
3971 curpeers->peers_fe = NULL;
3972 }
Frédéric Lécaille854079b2019-10-04 08:30:04 +02003973 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003974 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3975 curpeers->id, localpeer);
Frédéric Lécaillea30b1d72020-03-24 20:08:30 +01003976 if (curpeers->peers_fe)
3977 stop_proxy(curpeers->peers_fe);
3978 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003979 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003980 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003981 /* either it's totally stopped or too much used */
3982 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003983 ha_alert("Peers section '%s': peers referenced by sections "
3984 "running in different processes (%d different ones). "
3985 "Check global.nbproc and all tables' bind-process "
3986 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003987 cfgerr++;
3988 }
3989 stop_proxy(curpeers->peers_fe);
3990 curpeers->peers_fe = NULL;
3991 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003992 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003993 /* Initializes the transport layer of the server part of all the peers belonging to
3994 * <curpeers> section if required.
3995 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3996 * of an old process.
3997 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003998 p = curpeers->remote;
3999 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004000 if (p->srv) {
Christopher Faulet68d35ae2020-03-27 18:55:49 +01004001 if (p->srv->use_ssl == 1 && xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004002 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
4003 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004004 p = p->next;
4005 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004006 /* Configure the SSL bindings of the local peer if required. */
4007 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
4008 struct list *l;
4009 struct bind_conf *bind_conf;
4010
4011 l = &curpeers->peers_fe->conf.bind;
4012 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
4013 if (bind_conf->xprt->prepare_bind_conf &&
4014 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4015 cfgerr++;
4016 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004017 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004018 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4019 curpeers->id);
4020 cfgerr++;
4021 break;
4022 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004023 last = &curpeers->next;
4024 continue;
4025 }
4026
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004027 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004028 p = curpeers->remote;
4029 while (p) {
4030 pb = p->next;
4031 free(p->id);
4032 free(p);
4033 p = pb;
4034 }
4035
4036 /* Destroy and unlink this curpeers section.
4037 * Note: curpeers is backed up into *last.
4038 */
4039 free(curpeers->id);
4040 curpeers = curpeers->next;
Frédéric Lécaillea30b1d72020-03-24 20:08:30 +01004041 /* Reset any refereance to this peers section in the list of stick-tables */
4042 for (t = stktables_list; t; t = t->next) {
4043 if (t->peers.p && t->peers.p == *last)
4044 t->peers.p = NULL;
4045 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004046 free(*last);
4047 *last = curpeers;
4048 }
4049 }
4050
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004051 for (t = stktables_list; t; t = t->next) {
4052 if (t->proxy)
4053 continue;
4054 if (!stktable_init(t)) {
4055 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4056 cfgerr++;
4057 }
4058 }
4059
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004060 /* initialize stick-tables on backend capable proxies. This must not
4061 * be done earlier because the data size may be discovered while parsing
4062 * other proxies.
4063 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004064 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004065 if (curproxy->state == PR_STSTOPPED || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004066 continue;
4067
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004068 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004069 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004070 cfgerr++;
4071 }
4072 }
4073
Simon Horman0d16a402015-01-30 11:22:58 +09004074 if (mailers) {
4075 struct mailers *curmailers = mailers, **last;
4076 struct mailer *m, *mb;
4077
4078 /* Remove all mailers sections which don't have a valid listener.
4079 * This can happen when a mailers section is never referenced.
4080 */
4081 last = &mailers;
4082 while (*last) {
4083 curmailers = *last;
4084 if (curmailers->users) {
4085 last = &curmailers->next;
4086 continue;
4087 }
4088
Christopher Faulet767a84b2017-11-24 16:50:31 +01004089 ha_warning("Removing incomplete section 'mailers %s'.\n",
4090 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004091
4092 m = curmailers->mailer_list;
4093 while (m) {
4094 mb = m->next;
4095 free(m->id);
4096 free(m);
4097 m = mb;
4098 }
4099
4100 /* Destroy and unlink this curmailers section.
4101 * Note: curmailers is backed up into *last.
4102 */
4103 free(curmailers->id);
4104 curmailers = curmailers->next;
4105 free(*last);
4106 *last = curmailers;
4107 }
4108 }
4109
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004110 /* Update server_state_file_name to backend name if backend is supposed to use
4111 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004112 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004113 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4114 curproxy->server_state_file_name == NULL)
4115 curproxy->server_state_file_name = strdup(curproxy->id);
4116 }
4117
Willy Tarreaubafbe012017-11-24 17:34:44 +01004118 pool_head_hdr_idx = create_pool("hdr_idx",
Willy Tarreauac1932d2011-10-24 19:14:41 +02004119 global.tune.max_http_hdr * sizeof(struct hdr_idx_elem),
Willy Tarreau34eb6712011-10-24 18:15:04 +02004120 MEM_F_SHARED);
4121
Ben Draut054fbee2018-04-13 15:43:04 -06004122 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
4123 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
4124 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
4125 curr_resolvers->id, curr_resolvers->conf.file,
4126 curr_resolvers->conf.line);
4127 err_code |= ERR_WARN;
4128 }
4129 }
4130
William Lallemand48b4bb42017-10-23 14:36:34 +02004131 list_for_each_entry(postparser, &postparsers, list) {
4132 if (postparser->func)
4133 cfgerr += postparser->func();
4134 }
4135
Willy Tarreaubb925012009-07-23 13:36:36 +02004136 if (cfgerr > 0)
4137 err_code |= ERR_ALERT | ERR_FATAL;
4138 out:
4139 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004140}
4141
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004142/*
4143 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4144 * parsing sessions.
4145 */
4146void cfg_register_keywords(struct cfg_kw_list *kwl)
4147{
4148 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
4149}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004150
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004151/*
4152 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4153 */
4154void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4155{
4156 LIST_DEL(&kwl->list);
4157 LIST_INIT(&kwl->list);
4158}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004159
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004160/* this function register new section in the haproxy configuration file.
4161 * <section_name> is the name of this new section and <section_parser>
4162 * is the called parser. If two section declaration have the same name,
4163 * only the first declared is used.
4164 */
4165int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004166 int (*section_parser)(const char *, int, char **, int),
4167 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004168{
4169 struct cfg_section *cs;
4170
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004171 list_for_each_entry(cs, &sections, list) {
4172 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004173 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004174 return 0;
4175 }
4176 }
4177
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004178 cs = calloc(1, sizeof(*cs));
4179 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004180 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004181 return 0;
4182 }
4183
4184 cs->section_name = section_name;
4185 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004186 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004187
4188 LIST_ADDQ(&sections, &cs->list);
4189
4190 return 1;
4191}
4192
William Lallemand48b4bb42017-10-23 14:36:34 +02004193/* this function register a new function which will be called once the haproxy
4194 * configuration file has been parsed. It's useful to check dependencies
4195 * between sections or to resolve items once everything is parsed.
4196 */
4197int cfg_register_postparser(char *name, int (*func)())
4198{
4199 struct cfg_postparser *cp;
4200
4201 cp = calloc(1, sizeof(*cp));
4202 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004203 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004204 return 0;
4205 }
4206 cp->name = name;
4207 cp->func = func;
4208
4209 LIST_ADDQ(&postparsers, &cp->list);
4210
4211 return 1;
4212}
4213
Willy Tarreaubaaee002006-06-26 02:48:02 +02004214/*
David Carlier845efb52015-09-25 11:49:18 +01004215 * free all config section entries
4216 */
4217void cfg_unregister_sections(void)
4218{
4219 struct cfg_section *cs, *ics;
4220
4221 list_for_each_entry_safe(cs, ics, &sections, list) {
4222 LIST_DEL(&cs->list);
4223 free(cs);
4224 }
4225}
4226
Christopher Faulet7110b402016-10-26 11:09:44 +02004227void cfg_backup_sections(struct list *backup_sections)
4228{
4229 struct cfg_section *cs, *ics;
4230
4231 list_for_each_entry_safe(cs, ics, &sections, list) {
4232 LIST_DEL(&cs->list);
4233 LIST_ADDQ(backup_sections, &cs->list);
4234 }
4235}
4236
4237void cfg_restore_sections(struct list *backup_sections)
4238{
4239 struct cfg_section *cs, *ics;
4240
4241 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4242 LIST_DEL(&cs->list);
4243 LIST_ADDQ(&sections, &cs->list);
4244 }
4245}
4246
Willy Tarreaue6552512018-11-26 11:33:13 +01004247/* these are the config sections handled by default */
4248REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4249REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4250REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4251REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4252REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4253REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4254REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4255REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4256REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4257REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004258
David Carlier845efb52015-09-25 11:49:18 +01004259/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004260 * Local variables:
4261 * c-indent-level: 8
4262 * c-basic-offset: 8
4263 * End:
4264 */