blob: 0bb4f2bbc39df8509c42228d6329f7dcd05e0597 [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 Tarreaudcc048a2020-06-04 19:11:43 +020036#include <haproxy/acl.h>
Willy Tarreau122eba92020-06-04 10:15:32 +020037#include <haproxy/action-t.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020038#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020039#include <haproxy/backend.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020040#include <haproxy/api.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020041#include <haproxy/capture.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020042#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020043#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020044#include <haproxy/check.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020045#include <haproxy/chunk.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020046#include <haproxy/connection.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020047#include <haproxy/dns.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020048#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020049#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020050#include <haproxy/frontend.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020051#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020052#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020053#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020054#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020055#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020056#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020057#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020058#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020059#include <haproxy/log.h>
Willy Tarreaucc9bbfb2020-06-04 11:09:42 +020060#include <haproxy/mailers-t.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020061#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020062#include <haproxy/peers-t.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020063#include <haproxy/pool.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020064#include <haproxy/proxy.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020065#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020066#include <haproxy/stats-t.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020067#include <haproxy/tools.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020068#include <haproxy/time.h>
Willy Tarreau8c42b8a2020-06-04 19:27:34 +020069#include <haproxy/uri_auth-t.h>
Willy Tarreau7a00efb2020-06-02 17:02:59 +020070#include <haproxy/namespace.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020071#include <haproxy/server.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020072#include <haproxy/task.h>
Willy Tarreau3f567e42020-05-28 15:29:19 +020073#include <haproxy/thread.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020074
Willy Tarreauf268ee82020-06-04 17:05:57 +020075#include <haproxy/global.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020076
Willy Tarreau2dd7c352020-06-03 15:26:55 +020077#include <haproxy/protocol.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020078#include <haproxy/peers.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020079#include <haproxy/sample.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020080#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020081#include <haproxy/stream.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020082#include <haproxy/tcp_rules.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020083
84
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010085/* Used to chain configuration sections definitions. This list
86 * stores struct cfg_section
87 */
88struct list sections = LIST_HEAD_INIT(sections);
89
William Lallemand48b4bb42017-10-23 14:36:34 +020090struct list postparsers = LIST_HEAD_INIT(postparsers);
91
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010092char *cursection = NULL;
93struct proxy defproxy = { }; /* fake proxy used to assign default values on all instances */
Willy Tarreauc8d5b952019-02-27 17:25:52 +010094int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +010095int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +010096char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +020097
Willy Tarreau5b2c3362008-07-09 19:39:06 +020098/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +010099struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200100 .list = LIST_HEAD_INIT(cfg_keywords.list)
101};
102
Willy Tarreaubaaee002006-06-26 02:48:02 +0200103/*
104 * converts <str> to a list of listeners which are dynamically allocated.
105 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
106 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
107 * - <port> is a numerical port from 1 to 65535 ;
108 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
109 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200110 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
111 * not NULL, it must be a valid pointer to either NULL or a freeable area that
112 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200113 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200114int 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 +0200115{
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100116 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200117 int port, end;
118
119 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200120
Willy Tarreaubaaee002006-06-26 02:48:02 +0200121 while (next && *next) {
William Lallemand75ea0a02017-11-15 19:02:58 +0100122 int inherited = 0;
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200123 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100124 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200125
126 str = next;
127 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100128 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200129 *next++ = 0;
130 }
131
Willy Tarreau48ef4c92017-01-06 18:32:38 +0100132 ss2 = str2sa_range(str, NULL, &port, &end, err,
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200133 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +0200134 NULL, 1);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100135 if (!ss2)
136 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200137
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100138 if (ss2->ss_family == AF_INET || ss2->ss_family == AF_INET6) {
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100139 if (!port && !end) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200140 memprintf(err, "missing port number: '%s'\n", str);
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100141 goto fail;
Emeric Bruned760922010-10-22 17:59:25 +0200142 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200143
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100144 if (!port || !end) {
145 memprintf(err, "port offsets are not allowed in 'bind': '%s'\n", str);
146 goto fail;
147 }
148
Emeric Bruned760922010-10-22 17:59:25 +0200149 if (port < 1 || port > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200150 memprintf(err, "invalid port '%d' specified for address '%s'.\n", port, str);
Emeric Bruned760922010-10-22 17:59:25 +0200151 goto fail;
152 }
153
154 if (end < 1 || end > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200155 memprintf(err, "invalid port '%d' specified for address '%s'.\n", end, str);
Emeric Bruned760922010-10-22 17:59:25 +0200156 goto fail;
157 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200158 }
Willy Tarreau40aa0702013-03-10 23:51:38 +0100159 else if (ss2->ss_family == AF_UNSPEC) {
160 socklen_t addr_len;
William Lallemand75ea0a02017-11-15 19:02:58 +0100161 inherited = 1;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100162
163 /* We want to attach to an already bound fd whose number
164 * is in the addr part of ss2 when cast to sockaddr_in.
165 * Note that by definition there is a single listener.
166 * We still have to determine the address family to
167 * register the correct protocol.
168 */
169 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
170 addr_len = sizeof(*ss2);
171 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
172 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
173 goto fail;
174 }
175
176 port = end = get_host_port(ss2);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200177
178 } else if (ss2->ss_family == AF_CUST_SOCKPAIR) {
179 socklen_t addr_len;
180 inherited = 1;
181
182 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
183 addr_len = sizeof(*ss2);
184 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
185 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
186 goto fail;
187 }
188
189 ss2->ss_family = AF_CUST_SOCKPAIR; /* reassign AF_CUST_SOCKPAIR because of getsockname */
190 port = end = 0;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100191 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200192
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100193 /* OK the address looks correct */
William Lallemand75ea0a02017-11-15 19:02:58 +0100194 if (!create_listeners(bind_conf, ss2, port, end, fd, inherited, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200195 memprintf(err, "%s for address '%s'.\n", *err, str);
196 goto fail;
197 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200198 } /* end while(next) */
199 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200200 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200201 fail:
202 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200203 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200204}
205
William Lallemand6e62fb62015-04-28 16:55:23 +0200206/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100207 * Report an error in <msg> when there are too many arguments. This version is
208 * intended to be used by keyword parsers so that the message will be included
209 * into the general error message. The index is the current keyword in args.
210 * Return 0 if the number of argument is correct, otherwise build a message and
211 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
212 * message may also be null, it will simply not be produced (useful to check only).
213 * <msg> and <err_code> are only affected on error.
214 */
215int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
216{
217 int i;
218
219 if (!*args[index + maxarg + 1])
220 return 0;
221
222 if (msg) {
223 *msg = NULL;
224 memprintf(msg, "%s", args[0]);
225 for (i = 1; i <= index; i++)
226 memprintf(msg, "%s %s", *msg, args[i]);
227
228 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
229 }
230 if (err_code)
231 *err_code |= ERR_ALERT | ERR_FATAL;
232
233 return 1;
234}
235
236/*
237 * same as too_many_args_idx with a 0 index
238 */
239int too_many_args(int maxarg, char **args, char **msg, int *err_code)
240{
241 return too_many_args_idx(maxarg, 0, args, msg, err_code);
242}
243
244/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200245 * Report a fatal Alert when there is too much arguments
246 * The index is the current keyword in args
247 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
248 * Fill err_code with an ERR_ALERT and an ERR_FATAL
249 */
250int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
251{
252 char *kw = NULL;
253 int i;
254
255 if (!*args[index + maxarg + 1])
256 return 0;
257
258 memprintf(&kw, "%s", args[0]);
259 for (i = 1; i <= index; i++) {
260 memprintf(&kw, "%s %s", kw, args[i]);
261 }
262
Christopher Faulet767a84b2017-11-24 16:50:31 +0100263 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 +0200264 free(kw);
265 *err_code |= ERR_ALERT | ERR_FATAL;
266 return 1;
267}
268
269/*
270 * same as alertif_too_many_args_idx with a 0 index
271 */
272int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
273{
274 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
275}
276
Willy Tarreau61d18892009-03-31 10:49:21 +0200277
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100278/* Report it if a request ACL condition uses some keywords that are incompatible
279 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
280 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
281 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100282 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100283int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100284{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100285 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200286 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100287
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100288 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100289 return 0;
290
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100291 acl = acl_cond_conflicts(cond, where);
292 if (acl) {
293 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100294 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
295 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100296 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100297 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
298 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100299 return ERR_WARN;
300 }
301 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100302 return 0;
303
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100304 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100305 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
306 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100307 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100308 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
309 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100310 return ERR_WARN;
311}
312
Christopher Faulet62519022017-10-16 15:49:32 +0200313/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100314 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100315 * two such numbers delimited by a dash ('-'). On success, it returns
316 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200317 *
318 * Note: this function can also be used to parse a thread number or a set of
319 * threads.
320 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100321int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200322{
Christopher Faulet26028f62017-11-22 15:01:51 +0100323 if (autoinc) {
324 *autoinc = 0;
325 if (strncmp(arg, "auto:", 5) == 0) {
326 arg += 5;
327 *autoinc = 1;
328 }
329 }
330
Christopher Faulet62519022017-10-16 15:49:32 +0200331 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100332 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200333 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100334 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200335 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100336 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200337 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100338 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100339 unsigned int low, high;
340
Christopher Faulet18cca782019-02-07 16:29:41 +0100341 for (p = arg; *p; p++) {
342 if (*p == '-' && !dash)
343 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100344 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100345 memprintf(err, "'%s' is not a valid number/range.", arg);
346 return -1;
347 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100348 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100349
350 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100351 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100352 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100353
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100354 if (high < low) {
355 unsigned int swap = low;
356 low = high;
357 high = swap;
358 }
359
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100360 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100361 memprintf(err, "'%s' is not a valid number/range."
362 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100363 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100364 return 1;
365 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100366
367 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100368 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200369 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100370 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100371
Christopher Faulet5ab51772017-11-22 11:21:58 +0100372 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200373}
374
David Carlier7e351ee2017-12-01 09:14:02 +0000375#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200376/* Parse cpu sets. Each CPU set is either a unique number between 0 and
377 * <LONGBITS> or a range with two such numbers delimited by a dash
378 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
379 * returns 0. otherwise it returns 1 with an error message in <err>.
380 */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100381unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200382{
383 int cur_arg = 0;
384
385 *cpu_set = 0;
386 while (*args[cur_arg]) {
387 char *dash;
388 unsigned int low, high;
389
Willy Tarreau90807112020-02-25 08:16:33 +0100390 if (!isdigit((unsigned char)*args[cur_arg])) {
Christopher Faulet62519022017-10-16 15:49:32 +0200391 memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
392 return -1;
393 }
394
395 low = high = str2uic(args[cur_arg]);
396 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100397 high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
Christopher Faulet62519022017-10-16 15:49:32 +0200398
399 if (high < low) {
400 unsigned int swap = low;
401 low = high;
402 high = swap;
403 }
404
405 if (high >= LONGBITS) {
406 memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
407 return 1;
408 }
409
410 while (low <= high)
411 *cpu_set |= 1UL << low++;
412
413 cur_arg++;
414 }
415 return 0;
416}
David Carlier7e351ee2017-12-01 09:14:02 +0000417#endif
418
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200419void init_default_instance()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200420{
Willy Tarreau97cb7802010-01-03 20:23:58 +0100421 init_new_proxy(&defproxy);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200422 defproxy.mode = PR_MODE_TCP;
423 defproxy.state = PR_STNEW;
424 defproxy.maxconn = cfg_maxpconn;
425 defproxy.conn_retries = CONN_RETRIES;
Joseph Lynch726ab712015-05-11 23:25:34 -0700426 defproxy.redispatch_after = 0;
Olivier Houchard86006a52018-12-14 19:37:49 +0100427 defproxy.options = PR_O_REUSE_SAFE;
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +0100428 defproxy.max_out_conns = MAX_SRV_LIST;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100429
Simon Horman66183002013-02-23 10:16:43 +0900430 defproxy.defsrv.check.inter = DEF_CHKINTR;
431 defproxy.defsrv.check.fastinter = 0;
432 defproxy.defsrv.check.downinter = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900433 defproxy.defsrv.agent.inter = DEF_CHKINTR;
434 defproxy.defsrv.agent.fastinter = 0;
435 defproxy.defsrv.agent.downinter = 0;
Simon Horman58c32972013-11-25 10:46:38 +0900436 defproxy.defsrv.check.rise = DEF_RISETIME;
437 defproxy.defsrv.check.fall = DEF_FALLTIME;
438 defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME;
439 defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME;
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200440 defproxy.defsrv.check.port = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900441 defproxy.defsrv.agent.port = 0;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100442 defproxy.defsrv.maxqueue = 0;
443 defproxy.defsrv.minconn = 0;
444 defproxy.defsrv.maxconn = 0;
Willy Tarreau9c538e02019-01-23 10:21:49 +0100445 defproxy.defsrv.max_reuse = -1;
Olivier Houchard006e3102018-12-10 18:30:32 +0100446 defproxy.defsrv.max_idle_conns = -1;
Willy Tarreau975b1552019-06-06 16:25:55 +0200447 defproxy.defsrv.pool_purge_delay = 5000;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100448 defproxy.defsrv.slowstart = 0;
449 defproxy.defsrv.onerror = DEF_HANA_ONERR;
450 defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT;
451 defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1;
Simon Horman64e34162015-02-06 11:11:57 +0900452
453 defproxy.email_alert.level = LOG_ALERT;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +0200454 defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200455}
456
Frédéric Lécaille18251032019-01-11 11:07:15 +0100457/* Allocate and initialize the frontend of a "peers" section found in
458 * file <file> at line <linenum> with <id> as ID.
459 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200460 * Note that this function may be called from "default-server"
461 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100462 */
463static int init_peers_frontend(const char *file, int linenum,
464 const char *id, struct peers *peers)
465{
466 struct proxy *p;
467
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200468 if (peers->peers_fe) {
469 p = peers->peers_fe;
470 goto out;
471 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100472
Frédéric Lécaille18251032019-01-11 11:07:15 +0100473 p = calloc(1, sizeof *p);
474 if (!p) {
475 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
476 return -1;
477 }
478
479 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200480 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100481 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200482 /* Finally store this frontend. */
483 peers->peers_fe = p;
484
485 out:
486 if (id && !p->id)
487 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200488 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100489 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100490 if (linenum != -1)
491 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100492
493 return 0;
494}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100495
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100496/* Only change ->file, ->line and ->arg struct bind_conf member values
497 * if already present.
498 */
499static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
500 const char *file, int line,
501 const char *arg, struct xprt_ops *xprt)
502{
503 struct bind_conf *bind_conf;
504
505 if (!LIST_ISEMPTY(&p->conf.bind)) {
506 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
507 free(bind_conf->file);
508 bind_conf->file = strdup(file);
509 bind_conf->line = line;
510 if (arg) {
511 free(bind_conf->arg);
512 bind_conf->arg = strdup(arg);
513 }
514 }
515 else {
516 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
517 }
518
519 return bind_conf;
520}
521
522/*
523 * Allocate a new struct peer parsed at line <linenum> in file <file>
524 * to be added to <peers>.
525 * Returns the new allocated structure if succeeded, NULL if not.
526 */
527static struct peer *cfg_peers_add_peer(struct peers *peers,
528 const char *file, int linenum,
529 const char *id, int local)
530{
531 struct peer *p;
532
533 p = calloc(1, sizeof *p);
534 if (!p) {
535 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
536 return NULL;
537 }
538
539 /* the peers are linked backwards first */
540 peers->count++;
541 p->next = peers->remote;
542 peers->remote = p;
543 p->conf.file = strdup(file);
544 p->conf.line = linenum;
545 p->last_change = now.tv_sec;
546 p->xprt = xprt_get(XPRT_RAW);
547 p->sock_init_arg = NULL;
548 HA_SPIN_INIT(&p->lock);
549 if (id)
550 p->id = strdup(id);
551 if (local) {
552 p->local = 1;
553 peers->local = p;
554 }
555
556 return p;
557}
558
Willy Tarreaubaaee002006-06-26 02:48:02 +0200559/*
William Lallemand51097192015-04-14 16:35:22 +0200560 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200561 * Returns the error code, 0 if OK, or any combination of :
562 * - ERR_ABORT: must abort ASAP
563 * - ERR_FATAL: we can continue parsing but not start the service
564 * - ERR_WARN: a warning has been emitted
565 * - ERR_ALERT: an alert has been emitted
566 * Only the two first ones can stop processing, the two others are just
567 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200568 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200569int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
570{
571 static struct peers *curpeers = NULL;
572 struct peer *newpeer = NULL;
573 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200574 struct bind_conf *bind_conf;
575 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200576 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100577 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100578 static int bind_line, peer_line;
579
580 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
581 int cur_arg;
582 static int kws_dumped;
583 struct bind_conf *bind_conf;
584 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200585
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100586 cur_arg = 1;
587
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200588 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
589 err_code |= ERR_ALERT | ERR_ABORT;
590 goto out;
591 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100592
593 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
594 NULL, xprt_get(XPRT_RAW));
595 if (*args[0] == 'b') {
596 struct listener *l;
597
598 if (peer_line) {
599 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
600 err_code |= ERR_ALERT | ERR_FATAL;
601 goto out;
602 }
603
604 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
605 if (errmsg && *errmsg) {
606 indent_msg(&errmsg, 2);
607 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
608 }
609 else
610 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
611 file, linenum, args[0], args[1], args[2]);
612 err_code |= ERR_FATAL;
613 goto out;
614 }
615 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
616 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100617 l->accept = session_accept_fd;
618 l->analysers |= curpeers->peers_fe->fe_req_ana;
619 l->default_target = curpeers->peers_fe->default_target;
620 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100621 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100622
623 bind_line = 1;
624 if (cfg_peers->local) {
625 newpeer = cfg_peers->local;
626 }
627 else {
628 /* This peer is local.
629 * Note that we do not set the peer ID. This latter is initialized
630 * when parsing "peer" or "server" line.
631 */
632 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
633 if (!newpeer) {
634 err_code |= ERR_ALERT | ERR_ABORT;
635 goto out;
636 }
637 }
638 newpeer->addr = l->addr;
639 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
640 cur_arg++;
641 }
642
643 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
644 int ret;
645
646 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
647 err_code |= ret;
648 if (ret) {
649 if (errmsg && *errmsg) {
650 indent_msg(&errmsg, 2);
651 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
652 }
653 else
654 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
655 file, linenum, args[cur_arg]);
656 if (ret & ERR_FATAL)
657 goto out;
658 }
659 cur_arg += 1 + kw->skip;
660 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100661 if (*args[cur_arg] != 0) {
Tim Duesterhus04bcaa12019-05-12 22:54:50 +0200662 char *kws = NULL;
663
664 if (!kws_dumped) {
665 kws_dumped = 1;
666 bind_dump_kws(&kws);
667 indent_msg(&kws, 4);
668 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100669 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.%s%s\n",
670 file, linenum, args[cur_arg], cursection,
671 kws ? " Registered keywords :" : "", kws ? kws: "");
672 free(kws);
673 err_code |= ERR_ALERT | ERR_FATAL;
674 goto out;
675 }
676 }
677 else if (strcmp(args[0], "default-server") == 0) {
678 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
679 err_code |= ERR_ALERT | ERR_ABORT;
680 goto out;
681 }
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200682 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, 0, 1);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200683 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100684 else if (strcmp(args[0], "log") == 0) {
685 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
686 err_code |= ERR_ALERT | ERR_ABORT;
687 goto out;
688 }
689 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), &errmsg)) {
690 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
691 err_code |= ERR_ALERT | ERR_FATAL;
692 goto out;
693 }
694 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200695 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100696 /* Initialize these static variables when entering a new "peers" section*/
697 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100698 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100699 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100700 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100701 goto out;
702 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200703
William Lallemand6e62fb62015-04-28 16:55:23 +0200704 if (alertif_too_many_args(1, file, linenum, args, &err_code))
705 goto out;
706
Emeric Brun32da3c42010-09-23 18:39:19 +0200707 err = invalid_char(args[1]);
708 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100709 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
710 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100711 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100712 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200713 }
714
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200715 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200716 /*
717 * If there are two proxies with the same name only following
718 * combinations are allowed:
719 */
720 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100721 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
722 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200723 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200724 }
725 }
726
Vincent Bernat02779b62016-04-03 13:48:43 +0200727 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100728 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200729 err_code |= ERR_ALERT | ERR_ABORT;
730 goto out;
731 }
732
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200733 curpeers->next = cfg_peers;
734 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200735 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200736 curpeers->conf.line = linenum;
737 curpeers->last_change = now.tv_sec;
738 curpeers->id = strdup(args[1]);
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200739 curpeers->state = PR_STNEW;
Emeric Brun32da3c42010-09-23 18:39:19 +0200740 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200741 else if (strcmp(args[0], "peer") == 0 ||
742 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100743 int local_peer, peer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200744
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100745 peer = *args[0] == 'p';
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100746 local_peer = !strcmp(args[1], localpeer);
747 /* The local peer may have already partially been parsed on a "bind" line. */
748 if (*args[0] == 'p') {
749 if (bind_line) {
750 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
751 err_code |= ERR_ALERT | ERR_FATAL;
752 goto out;
753 }
754 peer_line = 1;
755 }
756 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
757 /* The local peer has already been initialized on a "bind" line.
758 * Let's use it and store its ID.
759 */
760 newpeer = cfg_peers->local;
761 newpeer->id = strdup(localpeer);
762 }
763 else {
764 if (local_peer && cfg_peers->local) {
765 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
766 file, linenum, args[0], args[1],
767 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
768 err_code |= ERR_FATAL;
769 goto out;
770 }
771 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
772 if (!newpeer) {
773 err_code |= ERR_ALERT | ERR_ABORT;
774 goto out;
775 }
776 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200777
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100778 /* Line number and peer ID are updated only if this peer is the local one. */
779 if (init_peers_frontend(file,
780 newpeer->local ? linenum: -1,
781 newpeer->local ? newpeer->id : NULL,
782 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200783 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100784 goto out;
785 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100786
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100787 /* This initializes curpeer->peers->peers_fe->srv.
788 * The server address is parsed only if we are parsing a "peer" line,
789 * or if we are parsing a "server" line and the current peer is not the local one.
790 */
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200791 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, peer || !local_peer, 1);
792 if (!curpeers->peers_fe->srv) {
793 /* Remove the newly allocated peer. */
794 if (newpeer != curpeers->local) {
795 struct peer *p;
796
797 p = curpeers->remote;
798 curpeers->remote = curpeers->remote->next;
799 free(p->id);
800 free(p);
801 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200802 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200803 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200804
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100805 /* If the peer address has just been parsed, let's copy it to <newpeer>
806 * and initializes ->proto.
807 */
808 if (peer || !local_peer) {
809 newpeer->addr = curpeers->peers_fe->srv->addr;
810 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
811 }
812
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100813 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200814 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100815 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200816
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100817 newpeer->srv = curpeers->peers_fe->srv;
818 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200819 goto out;
820
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100821 /* The lines above are reserved to "peer" lines. */
822 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200823 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200824
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100825 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW));
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100826
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100827 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
828 if (errmsg && *errmsg) {
829 indent_msg(&errmsg, 2);
830 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100831 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100832 else
833 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
834 file, linenum, args[0], args[1], args[2]);
835 err_code |= ERR_FATAL;
836 goto out;
837 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100838
839 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
840 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100841 l->accept = session_accept_fd;
842 l->analysers |= curpeers->peers_fe->fe_req_ana;
843 l->default_target = curpeers->peers_fe->default_target;
844 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100845 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100846 }
847 else if (!strcmp(args[0], "table")) {
848 struct stktable *t, *other;
849 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100850 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100851
852 /* Line number and peer ID are updated only if this peer is the local one. */
853 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
854 err_code |= ERR_ALERT | ERR_ABORT;
855 goto out;
856 }
857
858 other = stktable_find_by_name(args[1]);
859 if (other) {
860 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
861 file, linenum, args[1],
862 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
863 other->proxy ? other->id : other->peers.p->id,
864 other->conf.file, other->conf.line);
865 err_code |= ERR_ALERT | ERR_FATAL;
866 goto out;
867 }
868
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100869 /* Build the stick-table name, concatenating the "peers" section name
870 * followed by a '/' character and the table name argument.
871 */
872 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100873 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100874 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
875 file, linenum, args[0], args[1]);
876 err_code |= ERR_ALERT | ERR_FATAL;
877 goto out;
878 }
879
880 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100881 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100882 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
883 file, linenum, args[0], args[1]);
884 err_code |= ERR_ALERT | ERR_FATAL;
885 goto out;
886 }
887
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100888 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100889 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100890 if (!t || !id) {
891 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
892 file, linenum, args[0], args[1]);
893 err_code |= ERR_ALERT | ERR_FATAL;
894 goto out;
895 }
896
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100897 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100898 if (err_code & ERR_FATAL)
899 goto out;
900
901 stktable_store_name(t);
902 t->next = stktables_list;
903 stktables_list = t;
904 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200905 else if (!strcmp(args[0], "disabled")) { /* disables this peers section */
906 curpeers->state = PR_STSTOPPED;
907 }
908 else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */
909 curpeers->state = PR_STNEW;
910 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200911 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100912 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200913 err_code |= ERR_ALERT | ERR_FATAL;
914 goto out;
915 }
916
917out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100918 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200919 return err_code;
920}
921
Baptiste Assmann325137d2015-04-13 23:40:55 +0200922/*
923 * Parse a <resolvers> section.
924 * Returns the error code, 0 if OK, or any combination of :
925 * - ERR_ABORT: must abort ASAP
926 * - ERR_FATAL: we can continue parsing but not start the service
927 * - ERR_WARN: a warning has been emitted
928 * - ERR_ALERT: an alert has been emitted
929 * Only the two first ones can stop processing, the two others are just
930 * indicators.
931 */
932int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
933{
934 static struct dns_resolvers *curr_resolvers = NULL;
935 struct dns_nameserver *newnameserver = NULL;
936 const char *err;
937 int err_code = 0;
938 char *errmsg = NULL;
939
940 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
941 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100942 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200943 err_code |= ERR_ALERT | ERR_ABORT;
944 goto out;
945 }
946
947 err = invalid_char(args[1]);
948 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100949 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
950 file, linenum, *err, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200951 err_code |= ERR_ALERT | ERR_ABORT;
952 goto out;
953 }
954
955 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
956 /* Error if two resolvers owns the same name */
957 if (strcmp(curr_resolvers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100958 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
959 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200960 err_code |= ERR_ALERT | ERR_ABORT;
961 }
962 }
963
Vincent Bernat02779b62016-04-03 13:48:43 +0200964 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100965 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200966 err_code |= ERR_ALERT | ERR_ABORT;
967 goto out;
968 }
969
970 /* default values */
971 LIST_ADDQ(&dns_resolvers, &curr_resolvers->list);
972 curr_resolvers->conf.file = strdup(file);
973 curr_resolvers->conf.line = linenum;
974 curr_resolvers->id = strdup(args[1]);
975 curr_resolvers->query_ids = EB_ROOT;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200976 /* default maximum response size */
977 curr_resolvers->accepted_payload_size = 512;
Baptiste Assmann987e16d2016-11-02 22:23:31 +0100978 /* default hold period for nx, other, refuse and timeout is 30s */
979 curr_resolvers->hold.nx = 30000;
980 curr_resolvers->hold.other = 30000;
981 curr_resolvers->hold.refused = 30000;
982 curr_resolvers->hold.timeout = 30000;
Baptiste Assmann686408b2017-08-18 10:15:42 +0200983 curr_resolvers->hold.obsolete = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200984 /* default hold period for valid is 10s */
Baptiste Assmann4c5490a2015-07-14 21:42:49 +0200985 curr_resolvers->hold.valid = 10000;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200986 curr_resolvers->timeout.resolve = 1000;
987 curr_resolvers->timeout.retry = 1000;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200988 curr_resolvers->resolve_retries = 3;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200989 curr_resolvers->nb_nameservers = 0;
990 LIST_INIT(&curr_resolvers->nameservers);
991 LIST_INIT(&curr_resolvers->resolutions.curr);
992 LIST_INIT(&curr_resolvers->resolutions.wait);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100993 HA_SPIN_INIT(&curr_resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200994 }
995 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
996 struct sockaddr_storage *sk;
997 int port1, port2;
998 struct protocol *proto;
999
1000 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001001 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1002 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001003 err_code |= ERR_ALERT | ERR_FATAL;
1004 goto out;
1005 }
1006
1007 err = invalid_char(args[1]);
1008 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001009 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1010 file, linenum, *err, args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001011 err_code |= ERR_ALERT | ERR_FATAL;
1012 goto out;
1013 }
1014
Christopher Faulet67957bd2017-09-27 11:00:59 +02001015 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
Baptiste Assmanna315c552015-11-02 22:55:49 +01001016 /* Error if two resolvers owns the same name */
1017 if (strcmp(newnameserver->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001018 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 -06001019 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
Baptiste Assmanna315c552015-11-02 22:55:49 +01001020 err_code |= ERR_ALERT | ERR_FATAL;
1021 }
1022 }
1023
Vincent Bernat02779b62016-04-03 13:48:43 +02001024 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001025 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001026 err_code |= ERR_ALERT | ERR_ABORT;
1027 goto out;
1028 }
1029
1030 /* the nameservers are linked backward first */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001031 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001032 newnameserver->resolvers = curr_resolvers;
1033 newnameserver->conf.file = strdup(file);
1034 newnameserver->conf.line = linenum;
1035 newnameserver->id = strdup(args[1]);
1036
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001037 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001038 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001039 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001040 err_code |= ERR_ALERT | ERR_FATAL;
1041 goto out;
1042 }
1043
1044 proto = protocol_by_family(sk->ss_family);
1045 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001046 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Baptiste Assmann325137d2015-04-13 23:40:55 +02001047 file, linenum, args[0], args[1]);
1048 err_code |= ERR_ALERT | ERR_FATAL;
1049 goto out;
1050 }
1051
1052 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001053 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1054 file, linenum, args[0], args[1], args[2]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001055 err_code |= ERR_ALERT | ERR_FATAL;
1056 goto out;
1057 }
1058
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001059 if (!port1 && !port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001060 ha_alert("parsing [%s:%d] : '%s %s' : no UDP port specified\n",
1061 file, linenum, args[0], args[1]);
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001062 err_code |= ERR_ALERT | ERR_FATAL;
1063 goto out;
1064 }
1065
Baptiste Assmann325137d2015-04-13 23:40:55 +02001066 newnameserver->addr = *sk;
1067 }
Ben Draut44e609b2018-05-29 15:40:08 -06001068 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
1069 const char *whitespace = "\r\n\t ";
1070 char *resolv_line = NULL;
1071 int resolv_linenum = 0;
1072 FILE *f = NULL;
1073 char *address = NULL;
1074 struct sockaddr_storage *sk = NULL;
1075 struct protocol *proto;
1076 int duplicate_name = 0;
1077
1078 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
1079 ha_alert("parsing [%s:%d] : out of memory.\n",
1080 file, linenum);
1081 err_code |= ERR_ALERT | ERR_FATAL;
1082 goto resolv_out;
1083 }
1084
1085 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
1086 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
1087 file, linenum);
1088 err_code |= ERR_ALERT | ERR_FATAL;
1089 goto resolv_out;
1090 }
1091
1092 sk = calloc(1, sizeof(*sk));
1093 if (sk == NULL) {
1094 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
1095 resolv_linenum);
1096 err_code |= ERR_ALERT | ERR_FATAL;
1097 goto resolv_out;
1098 }
1099
1100 while (fgets(resolv_line, LINESIZE, f) != NULL) {
1101 resolv_linenum++;
1102 if (strncmp(resolv_line, "nameserver", 10) != 0)
1103 continue;
1104
1105 address = strtok(resolv_line + 10, whitespace);
1106 if (address == resolv_line + 10)
1107 continue;
1108
1109 if (address == NULL) {
1110 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
1111 resolv_linenum);
1112 err_code |= ERR_WARN;
1113 continue;
1114 }
1115
1116 duplicate_name = 0;
1117 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
1118 if (strcmp(newnameserver->id, address) == 0) {
1119 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",
1120 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
1121 err_code |= ERR_WARN;
1122 duplicate_name = 1;
1123 }
1124 }
1125
1126 if (duplicate_name)
1127 continue;
1128
1129 memset(sk, 0, sizeof(*sk));
Willy Tarreau78675252020-05-28 18:07:10 +02001130 if (!str2ip2(address, sk, 1)) {
1131 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 -06001132 resolv_linenum, address);
1133 err_code |= ERR_WARN;
1134 continue;
1135 }
1136
1137 set_host_port(sk, 53);
1138
1139 proto = protocol_by_family(sk->ss_family);
1140 if (!proto || !proto->connect) {
1141 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
1142 resolv_linenum, address);
1143 err_code |= ERR_WARN;
1144 continue;
1145 }
1146
1147 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
1148 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1149 err_code |= ERR_ALERT | ERR_FATAL;
1150 goto resolv_out;
1151 }
1152
1153 newnameserver->conf.file = strdup("/etc/resolv.conf");
1154 if (newnameserver->conf.file == NULL) {
1155 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1156 err_code |= ERR_ALERT | ERR_FATAL;
1157 goto resolv_out;
1158 }
1159
1160 newnameserver->id = strdup(address);
1161 if (newnameserver->id == NULL) {
1162 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1163 err_code |= ERR_ALERT | ERR_FATAL;
1164 goto resolv_out;
1165 }
1166
1167 newnameserver->resolvers = curr_resolvers;
1168 newnameserver->conf.line = resolv_linenum;
1169 newnameserver->addr = *sk;
1170
1171 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
1172 }
1173
1174resolv_out:
1175 free(sk);
1176 free(resolv_line);
1177 if (f != NULL)
1178 fclose(f);
1179 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001180 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
1181 const char *res;
1182 unsigned int time;
1183
1184 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001185 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
1186 file, linenum, args[0]);
1187 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
Baptiste Assmann325137d2015-04-13 23:40:55 +02001188 err_code |= ERR_ALERT | ERR_FATAL;
1189 goto out;
1190 }
1191 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001192 if (res == PARSE_TIME_OVER) {
1193 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s>, maximum value is 2147483647 ms (~24.8 days).\n",
1194 file, linenum, args[1], args[0]);
1195 err_code |= ERR_ALERT | ERR_FATAL;
1196 goto out;
1197 }
1198 else if (res == PARSE_TIME_UNDER) {
1199 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s>, minimum non-null value is 1 ms.\n",
1200 file, linenum, args[1], args[0]);
1201 err_code |= ERR_ALERT | ERR_FATAL;
1202 goto out;
1203 }
1204 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001205 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1206 file, linenum, *res, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001207 err_code |= ERR_ALERT | ERR_FATAL;
1208 goto out;
1209 }
Baptiste Assmann987e16d2016-11-02 22:23:31 +01001210 if (strcmp(args[1], "nx") == 0)
1211 curr_resolvers->hold.nx = time;
1212 else if (strcmp(args[1], "other") == 0)
1213 curr_resolvers->hold.other = time;
1214 else if (strcmp(args[1], "refused") == 0)
1215 curr_resolvers->hold.refused = time;
1216 else if (strcmp(args[1], "timeout") == 0)
1217 curr_resolvers->hold.timeout = time;
1218 else if (strcmp(args[1], "valid") == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001219 curr_resolvers->hold.valid = time;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001220 else if (strcmp(args[1], "obsolete") == 0)
1221 curr_resolvers->hold.obsolete = time;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001222 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001223 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
1224 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001225 err_code |= ERR_ALERT | ERR_FATAL;
1226 goto out;
1227 }
1228
1229 }
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001230 else if (strcmp(args[0], "accepted_payload_size") == 0) {
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001231 int i = 0;
1232
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001233 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001234 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1235 file, linenum, args[0]);
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001236 err_code |= ERR_ALERT | ERR_FATAL;
1237 goto out;
1238 }
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001239
1240 i = atoi(args[1]);
Willy Tarreau0c219be2017-08-22 12:01:26 +02001241 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001242 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
1243 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001244 err_code |= ERR_ALERT | ERR_FATAL;
1245 goto out;
1246 }
1247
1248 curr_resolvers->accepted_payload_size = i;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001249 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001250 else if (strcmp(args[0], "resolution_pool_size") == 0) {
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001251 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 +01001252 file, linenum, args[0]);
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001253 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001254 goto out;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001255 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001256 else if (strcmp(args[0], "resolve_retries") == 0) {
1257 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001258 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1259 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001260 err_code |= ERR_ALERT | ERR_FATAL;
1261 goto out;
1262 }
1263 curr_resolvers->resolve_retries = atoi(args[1]);
1264 }
1265 else if (strcmp(args[0], "timeout") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001266 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001267 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
1268 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001269 err_code |= ERR_ALERT | ERR_FATAL;
1270 goto out;
1271 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001272 else if (strcmp(args[1], "retry") == 0 ||
1273 strcmp(args[1], "resolve") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001274 const char *res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001275 unsigned int tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001276
1277 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001278 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1279 file, linenum, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001280 err_code |= ERR_ALERT | ERR_FATAL;
1281 goto out;
1282 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001283 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001284 if (res == PARSE_TIME_OVER) {
1285 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1286 file, linenum, args[2], args[0], args[1]);
1287 err_code |= ERR_ALERT | ERR_FATAL;
1288 goto out;
1289 }
1290 else if (res == PARSE_TIME_UNDER) {
1291 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1292 file, linenum, args[2], args[0], args[1]);
1293 err_code |= ERR_ALERT | ERR_FATAL;
1294 goto out;
1295 }
1296 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001297 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1298 file, linenum, *res, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001299 err_code |= ERR_ALERT | ERR_FATAL;
1300 goto out;
1301 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001302 if (args[1][2] == 't')
1303 curr_resolvers->timeout.retry = tout;
1304 else
1305 curr_resolvers->timeout.resolve = tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001306 }
1307 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001308 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
1309 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001310 err_code |= ERR_ALERT | ERR_FATAL;
1311 goto out;
1312 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001313 } /* neither "nameserver" nor "resolvers" */
1314 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001315 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001316 err_code |= ERR_ALERT | ERR_FATAL;
1317 goto out;
1318 }
1319
1320 out:
1321 free(errmsg);
1322 return err_code;
1323}
Simon Horman0d16a402015-01-30 11:22:58 +09001324
1325/*
William Lallemand51097192015-04-14 16:35:22 +02001326 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001327 * Returns the error code, 0 if OK, or any combination of :
1328 * - ERR_ABORT: must abort ASAP
1329 * - ERR_FATAL: we can continue parsing but not start the service
1330 * - ERR_WARN: a warning has been emitted
1331 * - ERR_ALERT: an alert has been emitted
1332 * Only the two first ones can stop processing, the two others are just
1333 * indicators.
1334 */
1335int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1336{
1337 static struct mailers *curmailers = NULL;
1338 struct mailer *newmailer = NULL;
1339 const char *err;
1340 int err_code = 0;
1341 char *errmsg = NULL;
1342
1343 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1344 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001345 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001346 err_code |= ERR_ALERT | ERR_ABORT;
1347 goto out;
1348 }
1349
1350 err = invalid_char(args[1]);
1351 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001352 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1353 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001354 err_code |= ERR_ALERT | ERR_ABORT;
1355 goto out;
1356 }
1357
1358 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1359 /*
1360 * If there are two proxies with the same name only following
1361 * combinations are allowed:
1362 */
1363 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001364 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1365 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001366 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001367 }
1368 }
1369
Vincent Bernat02779b62016-04-03 13:48:43 +02001370 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001371 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001372 err_code |= ERR_ALERT | ERR_ABORT;
1373 goto out;
1374 }
1375
1376 curmailers->next = mailers;
1377 mailers = curmailers;
1378 curmailers->conf.file = strdup(file);
1379 curmailers->conf.line = linenum;
1380 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001381 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1382 * But need enough time so that timeouts don't occur
1383 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001384 }
1385 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1386 struct sockaddr_storage *sk;
1387 int port1, port2;
1388 struct protocol *proto;
1389
1390 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001391 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1392 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001393 err_code |= ERR_ALERT | ERR_FATAL;
1394 goto out;
1395 }
1396
1397 err = invalid_char(args[1]);
1398 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001399 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1400 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001401 err_code |= ERR_ALERT | ERR_FATAL;
1402 goto out;
1403 }
1404
Vincent Bernat02779b62016-04-03 13:48:43 +02001405 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001406 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001407 err_code |= ERR_ALERT | ERR_ABORT;
1408 goto out;
1409 }
1410
1411 /* the mailers are linked backwards first */
1412 curmailers->count++;
1413 newmailer->next = curmailers->mailer_list;
1414 curmailers->mailer_list = newmailer;
1415 newmailer->mailers = curmailers;
1416 newmailer->conf.file = strdup(file);
1417 newmailer->conf.line = linenum;
1418
1419 newmailer->id = strdup(args[1]);
1420
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001421 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Simon Horman0d16a402015-01-30 11:22:58 +09001422 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001423 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001424 err_code |= ERR_ALERT | ERR_FATAL;
1425 goto out;
1426 }
1427
1428 proto = protocol_by_family(sk->ss_family);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09001429 if (!proto || !proto->connect || proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001430 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1431 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001432 err_code |= ERR_ALERT | ERR_FATAL;
1433 goto out;
1434 }
1435
1436 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001437 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1438 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001439 err_code |= ERR_ALERT | ERR_FATAL;
1440 goto out;
1441 }
1442
1443 if (!port1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001444 ha_alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n",
1445 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001446 err_code |= ERR_ALERT | ERR_FATAL;
1447 goto out;
1448 }
1449
1450 newmailer->addr = *sk;
1451 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001452 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001453 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001454 }
1455 else if (strcmp(args[0], "timeout") == 0) {
1456 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001457 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1458 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001459 err_code |= ERR_ALERT | ERR_FATAL;
1460 goto out;
1461 }
1462 else if (strcmp(args[1], "mail") == 0) {
1463 const char *res;
1464 unsigned int timeout_mail;
1465 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001466 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1467 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001468 err_code |= ERR_ALERT | ERR_FATAL;
1469 goto out;
1470 }
1471 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001472 if (res == PARSE_TIME_OVER) {
1473 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1474 file, linenum, args[2], args[0], args[1]);
1475 err_code |= ERR_ALERT | ERR_FATAL;
1476 goto out;
1477 }
1478 else if (res == PARSE_TIME_UNDER) {
1479 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1480 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001481 err_code |= ERR_ALERT | ERR_FATAL;
1482 goto out;
1483 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001484 else if (res) {
1485 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1486 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001487 err_code |= ERR_ALERT | ERR_FATAL;
1488 goto out;
1489 }
1490 curmailers->timeout.mail = timeout_mail;
1491 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001492 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001493 file, linenum, args[0], args[1]);
1494 err_code |= ERR_ALERT | ERR_FATAL;
1495 goto out;
1496 }
1497 }
Simon Horman0d16a402015-01-30 11:22:58 +09001498 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001499 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001500 err_code |= ERR_ALERT | ERR_FATAL;
1501 goto out;
1502 }
1503
1504out:
1505 free(errmsg);
1506 return err_code;
1507}
1508
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001509void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001510{
1511 free(p->email_alert.mailers.name);
1512 p->email_alert.mailers.name = NULL;
1513 free(p->email_alert.from);
1514 p->email_alert.from = NULL;
1515 free(p->email_alert.to);
1516 p->email_alert.to = NULL;
1517 free(p->email_alert.myhostname);
1518 p->email_alert.myhostname = NULL;
1519}
1520
Willy Tarreaubaaee002006-06-26 02:48:02 +02001521
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001522int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001523cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1524{
Willy Tarreaue5733232019-05-22 19:24:06 +02001525#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001526 const char *err;
1527 const char *item = args[0];
1528
1529 if (!strcmp(item, "namespace_list")) {
1530 return 0;
1531 }
1532 else if (!strcmp(item, "namespace")) {
1533 size_t idx = 1;
1534 const char *current;
1535 while (*(current = args[idx++])) {
1536 err = invalid_char(current);
1537 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001538 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1539 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001540 return ERR_ALERT | ERR_FATAL;
1541 }
1542
1543 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001544 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1545 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001546 return ERR_ALERT | ERR_FATAL;
1547 }
1548 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001549 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1550 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001551 return ERR_ALERT | ERR_FATAL;
1552 }
1553 }
1554 }
1555
1556 return 0;
1557#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001558 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1559 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001560 return ERR_ALERT | ERR_FATAL;
1561#endif
1562}
1563
1564int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001565cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1566{
1567
1568 int err_code = 0;
1569 const char *err;
1570
1571 if (!strcmp(args[0], "userlist")) { /* new userlist */
1572 struct userlist *newul;
1573
1574 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001575 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1576 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001577 err_code |= ERR_ALERT | ERR_FATAL;
1578 goto out;
1579 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001580 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1581 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001582
1583 err = invalid_char(args[1]);
1584 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001585 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1586 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001587 err_code |= ERR_ALERT | ERR_FATAL;
1588 goto out;
1589 }
1590
1591 for (newul = userlist; newul; newul = newul->next)
1592 if (!strcmp(newul->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001593 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1594 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001595 err_code |= ERR_WARN;
1596 goto out;
1597 }
1598
Vincent Bernat02779b62016-04-03 13:48:43 +02001599 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001600 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001601 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001602 err_code |= ERR_ALERT | ERR_ABORT;
1603 goto out;
1604 }
1605
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001606 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001607 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001608 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001609 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001610 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001611 goto out;
1612 }
1613
1614 newul->next = userlist;
1615 userlist = newul;
1616
1617 } else if (!strcmp(args[0], "group")) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001618 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001619 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001620 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001621
1622 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001623 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1624 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001625 err_code |= ERR_ALERT | ERR_FATAL;
1626 goto out;
1627 }
1628
1629 err = invalid_char(args[1]);
1630 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001631 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1632 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001633 err_code |= ERR_ALERT | ERR_FATAL;
1634 goto out;
1635 }
1636
William Lallemand4ac9f542015-05-28 18:03:51 +02001637 if (!userlist)
1638 goto out;
1639
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001640 for (ag = userlist->groups; ag; ag = ag->next)
1641 if (!strcmp(ag->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001642 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1643 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001644 err_code |= ERR_ALERT;
1645 goto out;
1646 }
1647
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001648 ag = calloc(1, sizeof(*ag));
1649 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001650 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001651 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001652 goto out;
1653 }
1654
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001655 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001656 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001657 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001658 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001659 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001660 goto out;
1661 }
1662
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001663 cur_arg = 2;
1664
1665 while (*args[cur_arg]) {
1666 if (!strcmp(args[cur_arg], "users")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001667 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001668 cur_arg += 2;
1669 continue;
1670 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001671 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1672 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001673 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001674 free(ag->groupusers);
1675 free(ag->name);
1676 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001677 goto out;
1678 }
1679 }
1680
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001681 ag->next = userlist->groups;
1682 userlist->groups = ag;
1683
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001684 } else if (!strcmp(args[0], "user")) { /* new user */
1685 struct auth_users *newuser;
1686 int cur_arg;
1687
1688 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001689 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1690 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001691 err_code |= ERR_ALERT | ERR_FATAL;
1692 goto out;
1693 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001694 if (!userlist)
1695 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001696
1697 for (newuser = userlist->users; newuser; newuser = newuser->next)
1698 if (!strcmp(newuser->user, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001699 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1700 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001701 err_code |= ERR_ALERT;
1702 goto out;
1703 }
1704
Vincent Bernat02779b62016-04-03 13:48:43 +02001705 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001706 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001707 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001708 err_code |= ERR_ALERT | ERR_ABORT;
1709 goto out;
1710 }
1711
1712 newuser->user = strdup(args[1]);
1713
1714 newuser->next = userlist->users;
1715 userlist->users = newuser;
1716
1717 cur_arg = 2;
1718
1719 while (*args[cur_arg]) {
1720 if (!strcmp(args[cur_arg], "password")) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001721#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001722 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001723 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1724 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001725 err_code |= ERR_ALERT | ERR_FATAL;
1726 goto out;
1727 }
1728#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001729 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1730 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001731 err_code |= ERR_ALERT;
1732#endif
1733 newuser->pass = strdup(args[cur_arg + 1]);
1734 cur_arg += 2;
1735 continue;
1736 } else if (!strcmp(args[cur_arg], "insecure-password")) {
1737 newuser->pass = strdup(args[cur_arg + 1]);
1738 newuser->flags |= AU_O_INSECURE;
1739 cur_arg += 2;
1740 continue;
1741 } else if (!strcmp(args[cur_arg], "groups")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001742 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001743 cur_arg += 2;
1744 continue;
1745 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001746 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1747 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001748 err_code |= ERR_ALERT | ERR_FATAL;
1749 goto out;
1750 }
1751 }
1752 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001753 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 +01001754 err_code |= ERR_ALERT | ERR_FATAL;
1755 }
1756
1757out:
1758 return err_code;
1759}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001760
Christopher Faulet79bdef32016-11-04 22:36:15 +01001761int
1762cfg_parse_scope(const char *file, int linenum, char *line)
1763{
1764 char *beg, *end, *scope = NULL;
1765 int err_code = 0;
1766 const char *err;
1767
1768 beg = line + 1;
1769 end = strchr(beg, ']');
1770
1771 /* Detect end of scope declaration */
1772 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001773 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1774 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001775 err_code |= ERR_ALERT | ERR_FATAL;
1776 goto out;
1777 }
1778
1779 /* Get scope name and check its validity */
1780 scope = my_strndup(beg, end-beg);
1781 err = invalid_char(scope);
1782 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001783 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1784 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001785 err_code |= ERR_ALERT | ERR_ABORT;
1786 goto out;
1787 }
1788
1789 /* Be sure to have a scope declaration alone on its line */
1790 line = end+1;
1791 while (isspace((unsigned char)*line))
1792 line++;
1793 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001794 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1795 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001796 err_code |= ERR_ALERT | ERR_ABORT;
1797 goto out;
1798 }
1799
1800 /* We have a valid scope declaration, save it */
1801 free(cfg_scope);
1802 cfg_scope = scope;
1803 scope = NULL;
1804
1805 out:
1806 free(scope);
1807 return err_code;
1808}
1809
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001810int
1811cfg_parse_track_sc_num(unsigned int *track_sc_num,
1812 const char *arg, const char *end, char **errmsg)
1813{
1814 const char *p;
1815 unsigned int num;
1816
1817 p = arg;
1818 num = read_uint64(&arg, end);
1819
1820 if (arg != end) {
1821 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1822 return -1;
1823 }
1824
1825 if (num >= MAX_SESS_STKCTR) {
1826 memprintf(errmsg, "%u track-sc number exceeding "
1827 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1828 return -1;
1829 }
1830
1831 *track_sc_num = num;
1832 return 0;
1833}
1834
Willy Tarreaubaaee002006-06-26 02:48:02 +02001835/*
1836 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001837 * Returns the error code, 0 if OK, or any combination of :
1838 * - ERR_ABORT: must abort ASAP
1839 * - ERR_FATAL: we can continue parsing but not start the service
1840 * - ERR_WARN: a warning has been emitted
1841 * - ERR_ALERT: an alert has been emitted
1842 * Only the two first ones can stop processing, the two others are just
1843 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001844 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001845int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001846{
William Lallemand64e84512015-05-12 14:25:37 +02001847 char *thisline;
1848 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001849 FILE *f;
1850 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001851 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001852 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001853 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001854 int readbytes = 0;
1855
1856 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001857 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001858 return -1;
1859 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001860
David Carlier97880bb2016-04-08 10:35:26 +01001861 if ((f=fopen(file,"r")) == NULL) {
1862 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001863 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001864 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001865
William Lallemandb2f07452015-05-12 14:27:13 +02001866next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001867 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001868 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001869 char *end;
1870 char *args[MAX_LINE_ARGS + 1];
1871 char *line = thisline;
William Lallemandf9873ba2015-05-05 17:37:14 +02001872 int dquote = 0; /* double quote */
1873 int squote = 0; /* simple quote */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001874
Willy Tarreaubaaee002006-06-26 02:48:02 +02001875 linenum++;
1876
1877 end = line + strlen(line);
1878
William Lallemand64e84512015-05-12 14:25:37 +02001879 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001880 /* Check if we reached the limit and the last char is not \n.
1881 * Watch out for the last line without the terminating '\n'!
1882 */
William Lallemand64e84512015-05-12 14:25:37 +02001883 char *newline;
1884 int newlinesize = linesize * 2;
1885
1886 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1887 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001888 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1889 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001890 err_code |= ERR_ALERT | ERR_FATAL;
1891 continue;
1892 }
1893
1894 readbytes = linesize - 1;
1895 linesize = newlinesize;
1896 thisline = newline;
1897 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001898 }
1899
William Lallemand64e84512015-05-12 14:25:37 +02001900 readbytes = 0;
1901
Willy Tarreaubaaee002006-06-26 02:48:02 +02001902 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001903 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001904 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001905
Christopher Faulet79bdef32016-11-04 22:36:15 +01001906
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001907 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001908 err_code |= cfg_parse_scope(file, linenum, line);
1909 goto next_line;
1910 }
1911
Willy Tarreaubaaee002006-06-26 02:48:02 +02001912 arg = 0;
1913 args[arg] = line;
1914
1915 while (*line && arg < MAX_LINE_ARGS) {
William Lallemandf9873ba2015-05-05 17:37:14 +02001916 if (*line == '"' && !squote) { /* double quote outside single quotes */
1917 if (dquote)
1918 dquote = 0;
1919 else
1920 dquote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001921 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001922 end--;
1923 }
1924 else if (*line == '\'' && !dquote) { /* single quote outside double quotes */
1925 if (squote)
1926 squote = 0;
1927 else
1928 squote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001929 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001930 end--;
1931 }
1932 else if (*line == '\\' && !squote) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001933 /* first, we'll replace \\, \<space>, \#, \r, \n, \t, \xXX with their
1934 * C equivalent value. Other combinations left unchanged (eg: \1).
1935 */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001936 int skip = 0;
1937 if (line[1] == ' ' || line[1] == '\\' || line[1] == '#') {
1938 *line = line[1];
1939 skip = 1;
1940 }
1941 else if (line[1] == 'r') {
1942 *line = '\r';
1943 skip = 1;
William Lallemandf9873ba2015-05-05 17:37:14 +02001944 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001945 else if (line[1] == 'n') {
1946 *line = '\n';
1947 skip = 1;
1948 }
1949 else if (line[1] == 't') {
1950 *line = '\t';
1951 skip = 1;
1952 }
1953 else if (line[1] == 'x') {
Emeric Brunb982a3d2010-01-04 15:45:53 +01001954 if ((line + 3 < end) && ishex(line[2]) && ishex(line[3])) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001955 unsigned char hex1, hex2;
1956 hex1 = toupper(line[2]) - '0';
1957 hex2 = toupper(line[3]) - '0';
1958 if (hex1 > 9) hex1 -= 'A' - '9' - 1;
1959 if (hex2 > 9) hex2 -= 'A' - '9' - 1;
1960 *line = (hex1<<4) + hex2;
1961 skip = 3;
1962 }
1963 else {
Tim Duesterhusac4930e2020-05-07 19:24:20 +02001964 ha_alert("parsing [%s:%d] : invalid or incomplete '\\x' sequence '%.*s' in '%s'.\n", file, linenum, 4, line, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02001965 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhuse6291952020-05-07 19:21:31 +02001966 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001967 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001968 } else if (line[1] == '"') {
1969 *line = '"';
1970 skip = 1;
1971 } else if (line[1] == '\'') {
1972 *line = '\'';
1973 skip = 1;
William Lallemandb2f07452015-05-12 14:27:13 +02001974 } else if (line[1] == '$' && dquote) { /* escaping of $ only inside double quotes */
1975 *line = '$';
1976 skip = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001977 }
1978 if (skip) {
Cyril Bontédd1b01d2009-12-06 13:43:42 +01001979 memmove(line + 1, line + 1 + skip, end - (line + skip));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001980 end -= skip;
1981 }
1982 line++;
1983 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001984 else if ((!squote && !dquote && *line == '#') || *line == '\n' || *line == '\r') {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001985 /* end of string, end of loop */
1986 *line = 0;
1987 break;
1988 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001989 else if (!squote && !dquote && isspace((unsigned char)*line)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001990 /* a non-escaped space is an argument separator */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001991 *line++ = '\0';
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001992 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001993 line++;
1994 args[++arg] = line;
1995 }
William Lallemandb2f07452015-05-12 14:27:13 +02001996 else if (dquote && *line == '$') {
1997 /* environment variables are evaluated inside double quotes */
1998 char *var_beg;
1999 char *var_end;
2000 char save_char;
2001 char *value;
2002 int val_len;
2003 int newlinesize;
2004 int braces = 0;
2005
2006 var_beg = line + 1;
2007 var_end = var_beg;
2008
2009 if (*var_beg == '{') {
2010 var_beg++;
2011 var_end++;
2012 braces = 1;
2013 }
2014
Willy Tarreau90807112020-02-25 08:16:33 +01002015 if (!isalpha((unsigned char)*var_beg) && *var_beg != '_') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002016 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 +02002017 err_code |= ERR_ALERT | ERR_FATAL;
2018 goto next_line; /* skip current line */
2019 }
2020
Willy Tarreau90807112020-02-25 08:16:33 +01002021 while (isalnum((unsigned char)*var_end) || *var_end == '_')
William Lallemandb2f07452015-05-12 14:27:13 +02002022 var_end++;
2023
2024 save_char = *var_end;
2025 *var_end = '\0';
2026 value = getenv(var_beg);
2027 *var_end = save_char;
2028 val_len = value ? strlen(value) : 0;
2029
2030 if (braces) {
2031 if (*var_end == '}') {
2032 var_end++;
2033 braces = 0;
2034 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002035 ha_alert("parsing [%s:%d] : Variable expansion: Mismatched braces.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02002036 err_code |= ERR_ALERT | ERR_FATAL;
2037 goto next_line; /* skip current line */
2038 }
2039 }
2040
2041 newlinesize = (end - thisline) - (var_end - line) + val_len + 1;
2042
2043 /* if not enough space in thisline */
2044 if (newlinesize > linesize) {
2045 char *newline;
2046
2047 newline = realloc(thisline, newlinesize * sizeof(*thisline));
2048 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002049 ha_alert("parsing [%s:%d] : Variable expansion: Not enough memory.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02002050 err_code |= ERR_ALERT | ERR_FATAL;
2051 goto next_line; /* slip current line */
2052 }
2053 /* recompute pointers if realloc returns a new pointer */
2054 if (newline != thisline) {
2055 int i;
2056 int diff;
2057
2058 for (i = 0; i <= arg; i++) {
2059 diff = args[i] - thisline;
2060 args[i] = newline + diff;
2061 }
2062
2063 diff = var_end - thisline;
2064 var_end = newline + diff;
2065 diff = end - thisline;
2066 end = newline + diff;
2067 diff = line - thisline;
2068 line = newline + diff;
2069 thisline = newline;
2070 }
2071 linesize = newlinesize;
2072 }
2073
2074 /* insert value inside the line */
2075 memmove(line + val_len, var_end, end - var_end + 1);
2076 memcpy(line, value, val_len);
2077 end += val_len - (var_end - line);
2078 line += val_len;
2079 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002080 else {
2081 line++;
2082 }
2083 }
William Lallemandb2f07452015-05-12 14:27:13 +02002084
William Lallemandf9873ba2015-05-05 17:37:14 +02002085 if (dquote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002086 ha_alert("parsing [%s:%d] : Mismatched double quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002087 err_code |= ERR_ALERT | ERR_FATAL;
2088 }
2089
2090 if (squote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002091 ha_alert("parsing [%s:%d] : Mismatched simple quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002092 err_code |= ERR_ALERT | ERR_FATAL;
2093 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002094
2095 /* empty line */
2096 if (!**args)
2097 continue;
2098
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002099 if (*line) {
2100 /* we had to stop due to too many args.
2101 * Let's terminate the string, print the offending part then cut the
2102 * last arg.
2103 */
2104 while (*line && *line != '#' && *line != '\n' && *line != '\r')
2105 line++;
2106 *line = '\0';
2107
Christopher Faulet767a84b2017-11-24 16:50:31 +01002108 ha_alert("parsing [%s:%d]: line too long, truncating at word %d, position %ld: <%s>.\n",
2109 file, linenum, arg + 1, (long)(args[arg] - thisline + 1), args[arg]);
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002110 err_code |= ERR_ALERT | ERR_FATAL;
2111 args[arg] = line;
2112 }
2113
Willy Tarreau540abe42007-05-02 20:50:16 +02002114 /* zero out remaining args and ensure that at least one entry
2115 * is zeroed out.
2116 */
2117 while (++arg <= MAX_LINE_ARGS) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002118 args[arg] = line;
2119 }
2120
Willy Tarreau3842f002009-06-14 11:39:52 +02002121 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002122 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02002123 char *tmp;
2124
Willy Tarreau3842f002009-06-14 11:39:52 +02002125 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002126 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002127 for (arg=0; *args[arg+1]; arg++)
2128 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002129 *tmp = '\0'; // fix the next arg to \0
2130 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002131 }
Willy Tarreau3842f002009-06-14 11:39:52 +02002132 else if (!strcmp(args[0], "default")) {
2133 kwm = KWM_DEF;
2134 for (arg=0; *args[arg+1]; arg++)
2135 args[arg] = args[arg+1]; // shift args after inversion
2136 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002137
William Dauchyec730982019-10-27 20:08:10 +01002138 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2139 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002140 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
2141 strcmp(args[0], "insecure-fork-wanted") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002142 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002143 "supported only for options, log, busy-polling, "
Willy Tarreaud96f1122019-12-03 07:07:36 +01002144 "set-dumpable, strict-limits, and insecure-fork-wanted.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002145 err_code |= ERR_ALERT | ERR_FATAL;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002146 }
2147
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002148 /* detect section start */
2149 list_for_each_entry(ics, &sections, list) {
2150 if (strcmp(args[0], ics->section_name) == 0) {
2151 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002152 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002153 cs = ics;
2154 break;
2155 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002156 }
2157
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002158 if (pcs && pcs->post_section_parser) {
2159 err_code |= pcs->post_section_parser();
2160 if (err_code & ERR_ABORT)
2161 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002162 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002163 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002164
William Lallemandd2ff56d2017-10-16 11:06:50 +02002165 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002166 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002167 err_code |= ERR_ALERT | ERR_FATAL;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002168 } else {
William Lallemandd2ff56d2017-10-16 11:06:50 +02002169 err_code |= cs->section_parser(file, linenum, args, kwm);
2170 if (err_code & ERR_ABORT)
2171 goto err;
2172 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002173 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002174
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002175 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002176 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002177
2178err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002179 free(cfg_scope);
2180 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002181 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002182 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002183 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002184 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002185}
2186
Willy Tarreau64ab6072014-09-16 12:17:36 +02002187/* This function propagates processes from frontend <from> to backend <to> so
2188 * that it is always guaranteed that a backend pointed to by a frontend is
2189 * bound to all of its processes. After that, if the target is a "listen"
2190 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002191 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002192 * checked first to ensure that <to> is already bound to all processes of
2193 * <from>, there is no risk of looping and we ensure to follow the shortest
2194 * path to the destination.
2195 *
2196 * It is possible to set <to> to NULL for the first call so that the function
2197 * takes care of visiting the initial frontend in <from>.
2198 *
2199 * It is important to note that the function relies on the fact that all names
2200 * have already been resolved.
2201 */
2202void propagate_processes(struct proxy *from, struct proxy *to)
2203{
2204 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002205
2206 if (to) {
2207 /* check whether we need to go down */
2208 if (from->bind_proc &&
2209 (from->bind_proc & to->bind_proc) == from->bind_proc)
2210 return;
2211
2212 if (!from->bind_proc && !to->bind_proc)
2213 return;
2214
2215 to->bind_proc = from->bind_proc ?
2216 (to->bind_proc | from->bind_proc) : 0;
2217
2218 /* now propagate down */
2219 from = to;
2220 }
2221
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002222 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002223 return;
2224
Willy Tarreauf6b70012014-12-18 14:00:43 +01002225 if (from->state == PR_STSTOPPED)
2226 return;
2227
Willy Tarreau64ab6072014-09-16 12:17:36 +02002228 /* default_backend */
2229 if (from->defbe.be)
2230 propagate_processes(from, from->defbe.be);
2231
2232 /* use_backend */
2233 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002234 if (rule->dynamic)
2235 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002236 to = rule->be.backend;
2237 propagate_processes(from, to);
2238 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002239}
2240
Willy Tarreaubb925012009-07-23 13:36:36 +02002241/*
2242 * Returns the error code, 0 if OK, or any combination of :
2243 * - ERR_ABORT: must abort ASAP
2244 * - ERR_FATAL: we can continue parsing but not start the service
2245 * - ERR_WARN: a warning has been emitted
2246 * - ERR_ALERT: an alert has been emitted
2247 * Only the two first ones can stop processing, the two others are just
2248 * indicators.
2249 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002250int check_config_validity()
2251{
2252 int cfgerr = 0;
2253 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002254 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002255 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002256 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002257 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002258 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002259 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002260 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002261 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002262
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002263 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002264 /*
2265 * Now, check for the integrity of all that we have collected.
2266 */
2267
2268 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002269 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002270
Willy Tarreau193b8c62012-11-22 00:17:38 +01002271 if (!global.tune.max_http_hdr)
2272 global.tune.max_http_hdr = MAX_HTTP_HDR;
2273
2274 if (!global.tune.cookie_len)
2275 global.tune.cookie_len = CAPTURE_LEN;
2276
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002277 if (!global.tune.requri_len)
2278 global.tune.requri_len = REQURI_LEN;
2279
Willy Tarreau149ab772019-01-26 14:27:06 +01002280 if (!global.nbthread) {
2281 /* nbthread not set, thus automatic. In this case, and only if
2282 * running on a single process, we enable the same number of
2283 * threads as the number of CPUs the process is bound to. This
2284 * allows to easily control the number of threads using taskset.
2285 */
2286 global.nbthread = 1;
2287#if defined(USE_THREAD)
2288 if (global.nbproc == 1)
2289 global.nbthread = thread_cpus_enabled_at_boot;
2290 all_threads_mask = nbits(global.nbthread);
2291#endif
2292 }
2293
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002294 if (global.nbproc > 1 && global.nbthread > 1) {
2295 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2296 err_code |= ERR_ALERT | ERR_FATAL;
2297 goto out;
2298 }
2299
Willy Tarreaubafbe012017-11-24 17:34:44 +01002300 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002301
Willy Tarreaubafbe012017-11-24 17:34:44 +01002302 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002303
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002304 /* Post initialisation of the users and groups lists. */
2305 err_code = userlist_postinit();
2306 if (err_code != ERR_NONE)
2307 goto out;
2308
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002309 /* first, we will invert the proxy list order */
2310 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002311 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002312 struct proxy *next;
2313
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002314 next = proxies_list->next;
2315 proxies_list->next = curproxy;
2316 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002317 if (!next)
2318 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002319 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002320 }
2321
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002322 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002323 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002324 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002325 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002326 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002327 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002328 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002329 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002330
Willy Tarreau050536d2012-10-04 08:47:34 +02002331 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002332 /* proxy ID not set, use automatic numbering with first
2333 * spare entry starting with next_pxid.
2334 */
2335 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2336 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2337 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002338 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002339 next_pxid++;
2340
Willy Tarreau55ea7572007-06-17 19:56:27 +02002341
Willy Tarreaubaaee002006-06-26 02:48:02 +02002342 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002343 /* ensure we don't keep listeners uselessly bound */
2344 stop_proxy(curproxy);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002345 if (curproxy->table) {
2346 free((void *)curproxy->table->peers.name);
2347 curproxy->table->peers.p = NULL;
2348 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002349 continue;
2350 }
2351
Willy Tarreau102df612014-05-07 23:56:38 +02002352 /* Check multi-process mode compatibility for the current proxy */
2353
2354 if (curproxy->bind_proc) {
2355 /* an explicit bind-process was specified, let's check how many
2356 * processes remain.
2357 */
David Carliere6c39412015-07-02 07:00:17 +00002358 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002359
Willy Tarreaua38a7172019-02-02 17:11:28 +01002360 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002361 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002362 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 +02002363 curproxy->bind_proc = 1;
2364 }
2365 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002366 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 +02002367 curproxy->bind_proc = 0;
2368 }
2369 }
2370
Willy Tarreau3d209582014-05-09 17:06:11 +02002371 /* check and reduce the bind-proc of each listener */
2372 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2373 unsigned long mask;
2374
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002375 /* HTTP frontends with "h2" as ALPN/NPN will work in
2376 * HTTP/2 and absolutely require buffers 16kB or larger.
2377 */
2378#ifdef USE_OPENSSL
2379 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2380#ifdef OPENSSL_NPN_NEGOTIATED
2381 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002382 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002383 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",
2384 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002385 cfgerr++;
2386 }
2387#endif
2388#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2389 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002390 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002391 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",
2392 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002393 cfgerr++;
2394 }
2395#endif
2396 } /* HTTP && bufsize < 16384 */
2397#endif
2398
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002399 /* detect and address thread affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002400 mask = thread_mask(bind_conf->bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002401 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002402 unsigned long new_mask = 0;
2403
2404 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002405 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002406 mask >>= global.nbthread;
2407 }
2408
Willy Tarreaua36b3242019-02-02 13:14:34 +01002409 bind_conf->bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002410 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",
2411 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2412 }
2413
2414 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002415 mask = proc_mask(bind_conf->bind_proc) & proc_mask(curproxy->bind_proc);
2416 if (!(mask & all_proc_mask)) {
2417 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
2418 nbproc = my_popcountl(bind_conf->bind_proc);
2419 bind_conf->bind_proc = proc_mask(bind_conf->bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002420
Willy Tarreaua36b3242019-02-02 13:14:34 +01002421 if (!bind_conf->bind_proc && nbproc == 1) {
2422 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",
2423 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2424 bind_conf->bind_proc = mask & ~(mask - 1);
2425 }
2426 else if (!bind_conf->bind_proc && nbproc > 1) {
2427 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",
2428 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2429 bind_conf->bind_proc = 0;
2430 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002431 }
2432 }
2433
Willy Tarreauff01a212009-03-15 13:46:16 +01002434 switch (curproxy->mode) {
2435 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002436 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002437 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002438 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2439 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002440 cfgerr++;
2441 }
2442
2443 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002444 ha_warning("config : servers will be ignored for %s '%s'.\n",
2445 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002446 break;
2447
2448 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002449 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002450 break;
2451
2452 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002453 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002454 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002455
2456 case PR_MODE_CLI:
2457 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2458 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002459 }
2460
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002461 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002462 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2463 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002464 err_code |= ERR_WARN;
2465 }
2466
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002467 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002468 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002469 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002470 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2471 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002472 cfgerr++;
2473 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002474#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002475 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002476 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2477 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002478 cfgerr++;
2479 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002480#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002481 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002482 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2483 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002484 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002485 }
2486 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002487 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002488 /* If no LB algo is set in a backend, and we're not in
2489 * transparent mode, dispatch mode nor proxy mode, we
2490 * want to use balance roundrobin by default.
2491 */
2492 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2493 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002494 }
2495 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002496
Willy Tarreau1620ec32011-08-06 17:05:02 +02002497 if (curproxy->options & PR_O_DISPATCH)
2498 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2499 else if (curproxy->options & PR_O_HTTP_PROXY)
2500 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2501 else if (curproxy->options & PR_O_TRANSP)
2502 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002503
Christopher Faulete5870d82020-04-15 11:32:03 +02002504 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2505 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2506 proxy_type_str(curproxy), curproxy->id);
2507 err_code |= ERR_WARN;
2508 }
2509
2510 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002511 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002512 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002513 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2514 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002515 err_code |= ERR_WARN;
2516 curproxy->options &= ~PR_O_DISABLE404;
2517 }
2518 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002519 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2520 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002521 err_code |= ERR_WARN;
2522 curproxy->options &= ~PR_O2_CHK_SNDST;
2523 }
Willy Tarreauef781042010-01-27 11:53:01 +01002524 }
2525
Simon Horman98637e52014-06-20 12:30:16 +09002526 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2527 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002528 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2529 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002530 cfgerr++;
2531 }
2532 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002533 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2534 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002535 cfgerr++;
2536 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002537 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2538 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2539 curproxy->id, "option external-check");
2540 err_code |= ERR_WARN;
2541 }
Simon Horman98637e52014-06-20 12:30:16 +09002542 }
2543
Simon Horman64e34162015-02-06 11:11:57 +09002544 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002545 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002546 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2547 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2548 "'email-alert myhostname', or 'email-alert to' "
2549 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2550 "to be present).\n",
2551 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002552 err_code |= ERR_WARN;
2553 free_email_alert(curproxy);
2554 }
2555 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002556 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002557 }
2558
Simon Horman98637e52014-06-20 12:30:16 +09002559 if (curproxy->check_command) {
2560 int clear = 0;
2561 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002562 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2563 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002564 err_code |= ERR_WARN;
2565 clear = 1;
2566 }
2567 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002568 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2569 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002570 cfgerr++;
2571 }
2572 if (clear) {
2573 free(curproxy->check_command);
2574 curproxy->check_command = NULL;
2575 }
2576 }
2577
2578 if (curproxy->check_path) {
2579 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002580 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2581 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002582 err_code |= ERR_WARN;
2583 free(curproxy->check_path);
2584 curproxy->check_path = NULL;
2585 }
2586 }
2587
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002588 /* if a default backend was specified, let's find it */
2589 if (curproxy->defbe.name) {
2590 struct proxy *target;
2591
Willy Tarreauafb39922015-05-26 12:04:09 +02002592 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002593 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002594 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2595 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002596 cfgerr++;
2597 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002598 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2599 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002600 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002601 } else if (target->mode != curproxy->mode &&
2602 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2603
Christopher Faulet767a84b2017-11-24 16:50:31 +01002604 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2605 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2606 curproxy->conf.file, curproxy->conf.line,
2607 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2608 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002609 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002610 } else {
2611 free(curproxy->defbe.name);
2612 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002613 /* Emit a warning if this proxy also has some servers */
2614 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002615 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2616 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002617 err_code |= ERR_WARN;
2618 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002619 }
2620 }
2621
Willy Tarreau55ea7572007-06-17 19:56:27 +02002622 /* find the target proxy for 'use_backend' rules */
2623 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002624 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002625 struct logformat_node *node;
2626 char *pxname;
2627
2628 /* Try to parse the string as a log format expression. If the result
2629 * of the parsing is only one entry containing a simple string, then
2630 * it's a standard string corresponding to a static rule, thus the
2631 * parsing is cancelled and be.name is restored to be resolved.
2632 */
2633 pxname = rule->be.name;
2634 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002635 curproxy->conf.args.ctx = ARGC_UBK;
2636 curproxy->conf.args.file = rule->file;
2637 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002638 err = NULL;
2639 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002640 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2641 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002642 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002643 cfgerr++;
2644 continue;
2645 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002646 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2647
2648 if (!LIST_ISEMPTY(&rule->be.expr)) {
2649 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2650 rule->dynamic = 1;
2651 free(pxname);
2652 continue;
2653 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002654 /* Only one element in the list, a simple string: free the expression and
2655 * fall back to static rule
2656 */
2657 LIST_DEL(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002658 free(node->arg);
2659 free(node);
2660 }
2661
2662 rule->dynamic = 0;
2663 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002664
Willy Tarreauafb39922015-05-26 12:04:09 +02002665 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002666 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002667 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2668 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002669 cfgerr++;
2670 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002671 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2672 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002673 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002674 } else if (target->mode != curproxy->mode &&
2675 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2676
Christopher Faulet767a84b2017-11-24 16:50:31 +01002677 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2678 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2679 curproxy->conf.file, curproxy->conf.line,
2680 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2681 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002682 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002683 } else {
2684 free((void *)rule->be.name);
2685 rule->be.backend = target;
2686 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002687 }
2688
Willy Tarreau64ab6072014-09-16 12:17:36 +02002689 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002690 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002691 struct server *target;
2692 struct logformat_node *node;
2693 char *server_name;
2694
2695 /* We try to parse the string as a log format expression. If the result of the parsing
2696 * is only one entry containing a single string, then it's a standard string corresponding
2697 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2698 */
2699 server_name = srule->srv.name;
2700 LIST_INIT(&srule->expr);
2701 curproxy->conf.args.ctx = ARGC_USRV;
2702 err = NULL;
2703 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2704 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2705 srule->file, srule->line, server_name, err);
2706 free(err);
2707 cfgerr++;
2708 continue;
2709 }
2710 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2711
2712 if (!LIST_ISEMPTY(&srule->expr)) {
2713 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2714 srule->dynamic = 1;
2715 free(server_name);
2716 continue;
2717 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002718 /* Only one element in the list, a simple string: free the expression and
2719 * fall back to static rule
2720 */
2721 LIST_DEL(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002722 free(node->arg);
2723 free(node);
2724 }
2725
2726 srule->dynamic = 0;
2727 srule->srv.name = server_name;
2728 target = findserver(curproxy, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002729
2730 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002731 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2732 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002733 cfgerr++;
2734 continue;
2735 }
2736 free((void *)srule->srv.name);
2737 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002738 }
2739
Emeric Brunb982a3d2010-01-04 15:45:53 +01002740 /* find the target table for 'stick' rules */
2741 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002742 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002743
Emeric Brun1d33b292010-01-04 15:47:17 +01002744 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2745 if (mrule->flags & STK_IS_STORE)
2746 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2747
Emeric Brunb982a3d2010-01-04 15:45:53 +01002748 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002749 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002750 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002751 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002752
2753 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002754 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002755 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002756 cfgerr++;
2757 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002758 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002759 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2760 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002761 cfgerr++;
2762 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002763 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002764 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2765 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002766 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002767 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002768 else {
2769 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002770 mrule->table.t = target;
2771 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002772 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002773 if (!in_proxies_list(target->proxies_list, curproxy)) {
2774 curproxy->next_stkt_ref = target->proxies_list;
2775 target->proxies_list = curproxy;
2776 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002777 }
2778 }
2779
2780 /* find the target table for 'store response' rules */
2781 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002782 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002783
Emeric Brun1d33b292010-01-04 15:47:17 +01002784 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2785
Emeric Brunb982a3d2010-01-04 15:45:53 +01002786 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002787 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002788 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002789 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002790
2791 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002792 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002793 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002794 cfgerr++;
2795 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002796 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002797 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2798 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002799 cfgerr++;
2800 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002801 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002802 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2803 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002804 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002805 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002806 else {
2807 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002808 mrule->table.t = target;
2809 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002810 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002811 if (!in_proxies_list(target->proxies_list, curproxy)) {
2812 curproxy->next_stkt_ref = target->proxies_list;
2813 target->proxies_list = curproxy;
2814 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002815 }
2816 }
2817
Christopher Faulete4e830d2017-09-18 14:51:41 +02002818 /* check validity for 'tcp-request' layer 4 rules */
2819 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2820 err = NULL;
2821 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002822 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002823 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002824 cfgerr++;
2825 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002826 }
2827
Christopher Faulete4e830d2017-09-18 14:51:41 +02002828 /* check validity for 'tcp-request' layer 5 rules */
2829 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2830 err = NULL;
2831 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002832 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002833 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002834 cfgerr++;
2835 }
2836 }
2837
Christopher Faulete4e830d2017-09-18 14:51:41 +02002838 /* check validity for 'tcp-request' layer 6 rules */
2839 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2840 err = NULL;
2841 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002842 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002843 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002844 cfgerr++;
2845 }
2846 }
2847
Christopher Faulete4e830d2017-09-18 14:51:41 +02002848 /* check validity for 'http-request' layer 7 rules */
2849 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2850 err = NULL;
2851 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002852 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002853 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002854 cfgerr++;
2855 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002856 }
2857
Christopher Faulete4e830d2017-09-18 14:51:41 +02002858 /* check validity for 'http-response' layer 7 rules */
2859 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2860 err = NULL;
2861 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002862 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002863 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002864 cfgerr++;
2865 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002866 }
2867
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002868 /* check validity for 'http-after-response' layer 7 rules */
2869 list_for_each_entry(arule, &curproxy->http_after_res_rules, list) {
2870 err = NULL;
2871 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
2872 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
2873 free(err);
2874 cfgerr++;
2875 }
2876 }
2877
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002878 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002879 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002880
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002881 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002882 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
2883 free((void *)curproxy->table->peers.name);
2884 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002885 break;
2886 }
2887 }
2888
2889 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002890 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002891 curproxy->id, curproxy->table->peers.name);
2892 free((void *)curproxy->table->peers.name);
2893 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002894 cfgerr++;
2895 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002896 else if (curpeers->state == PR_STSTOPPED) {
2897 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002898 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002899 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002900 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002901 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2902 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002903 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002904 cfgerr++;
2905 }
2906 }
2907
Simon Horman9dc49962015-01-30 11:22:59 +09002908
2909 if (curproxy->email_alert.mailers.name) {
2910 struct mailers *curmailers = mailers;
2911
2912 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002913 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002914 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002915 }
Simon Horman9dc49962015-01-30 11:22:59 +09002916 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002917 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2918 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002919 free_email_alert(curproxy);
2920 cfgerr++;
2921 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002922 else {
2923 err = NULL;
2924 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002925 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002926 free(err);
2927 cfgerr++;
2928 }
2929 }
Simon Horman9dc49962015-01-30 11:22:59 +09002930 }
2931
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002932 if (curproxy->uri_auth && curproxy->uri_auth != defproxy.uri_auth &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002933 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002934 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002935 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2936 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002937 cfgerr++;
2938 goto out_uri_auth_compat;
2939 }
2940
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002941 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
2942 (curproxy->uri_auth != defproxy.uri_auth ||
2943 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002944 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002945 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002946 int i = 0;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002947 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2948 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002949
2950 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002951 uri_auth_compat_req[i++] = "realm";
2952 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2953 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002954
Willy Tarreau95fa4692010-02-01 13:05:50 +01002955 uri_auth_compat_req[i++] = "unless";
2956 uri_auth_compat_req[i++] = "{";
2957 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2958 uri_auth_compat_req[i++] = "}";
2959 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002960
Willy Tarreauff011f22011-01-06 17:51:27 +01002961 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2962 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002963 cfgerr++;
2964 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002965 }
2966
Willy Tarreauff011f22011-01-06 17:51:27 +01002967 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002968
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002969 if (curproxy->uri_auth->auth_realm) {
2970 free(curproxy->uri_auth->auth_realm);
2971 curproxy->uri_auth->auth_realm = NULL;
2972 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002973 }
2974out_uri_auth_compat:
2975
Dragan Dosen43885c72015-10-01 13:18:13 +02002976 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002977 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002978 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2979 if (!curproxy->conf.logformat_sd_string) {
2980 /* set the default logformat_sd_string */
2981 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2982 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002983 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002984 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002985 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002986
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002987 /* compile the log format */
2988 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002989 if (curproxy->conf.logformat_string != default_http_log_format &&
2990 curproxy->conf.logformat_string != default_tcp_log_format &&
2991 curproxy->conf.logformat_string != clf_http_log_format)
2992 free(curproxy->conf.logformat_string);
2993 curproxy->conf.logformat_string = NULL;
2994 free(curproxy->conf.lfs_file);
2995 curproxy->conf.lfs_file = NULL;
2996 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002997
2998 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2999 free(curproxy->conf.logformat_sd_string);
3000 curproxy->conf.logformat_sd_string = NULL;
3001 free(curproxy->conf.lfsd_file);
3002 curproxy->conf.lfsd_file = NULL;
3003 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003004 }
3005
Willy Tarreau62a61232013-04-12 18:13:46 +02003006 if (curproxy->conf.logformat_string) {
3007 curproxy->conf.args.ctx = ARGC_LOG;
3008 curproxy->conf.args.file = curproxy->conf.lfs_file;
3009 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003010 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003011 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003012 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003013 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3014 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003015 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003016 cfgerr++;
3017 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003018 curproxy->conf.args.file = NULL;
3019 curproxy->conf.args.line = 0;
3020 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003021
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003022 if (curproxy->conf.logformat_sd_string) {
3023 curproxy->conf.args.ctx = ARGC_LOGSD;
3024 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3025 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003026 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003027 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 +01003028 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003029 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3030 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003031 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003032 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003033 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003034 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3035 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003036 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003037 cfgerr++;
3038 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003039 curproxy->conf.args.file = NULL;
3040 curproxy->conf.args.line = 0;
3041 }
3042
Willy Tarreau62a61232013-04-12 18:13:46 +02003043 if (curproxy->conf.uniqueid_format_string) {
3044 curproxy->conf.args.ctx = ARGC_UIF;
3045 curproxy->conf.args.file = curproxy->conf.uif_file;
3046 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003047 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003048 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 +01003049 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003050 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3051 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003052 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003053 cfgerr++;
3054 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003055 curproxy->conf.args.file = NULL;
3056 curproxy->conf.args.line = 0;
3057 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003058
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003059 /* only now we can check if some args remain unresolved.
3060 * This must be done after the users and groups resolution.
3061 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003062 cfgerr += smp_resolve_args(curproxy);
3063 if (!cfgerr)
3064 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003065
Willy Tarreau2738a142006-07-08 17:28:09 +02003066 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003067 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003068 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003069 (!curproxy->timeout.connect ||
3070 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003071 ha_warning("config : missing timeouts for %s '%s'.\n"
3072 " | While not properly invalid, you will certainly encounter various problems\n"
3073 " | with such a configuration. To fix this, please ensure that all following\n"
3074 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3075 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003076 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003077 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003078
Willy Tarreau1fa31262007-12-03 00:36:16 +01003079 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3080 * We must still support older configurations, so let's find out whether those
3081 * parameters have been set or must be copied from contimeouts.
3082 */
3083 if (curproxy != &defproxy) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003084 if (!curproxy->timeout.tarpit ||
3085 curproxy->timeout.tarpit == defproxy.timeout.tarpit) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003086 /* tarpit timeout not set. We search in the following order:
3087 * default.tarpit, curr.connect, default.connect.
3088 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003089 if (defproxy.timeout.tarpit)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003090 curproxy->timeout.tarpit = defproxy.timeout.tarpit;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003091 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003092 curproxy->timeout.tarpit = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003093 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003094 curproxy->timeout.tarpit = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003095 }
3096 if ((curproxy->cap & PR_CAP_BE) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003097 (!curproxy->timeout.queue ||
3098 curproxy->timeout.queue == defproxy.timeout.queue)) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003099 /* queue timeout not set. We search in the following order:
3100 * default.queue, curr.connect, default.connect.
3101 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003102 if (defproxy.timeout.queue)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003103 curproxy->timeout.queue = defproxy.timeout.queue;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003104 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003105 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003106 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003107 curproxy->timeout.queue = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003108 }
3109 }
3110
Christopher Faulete5870d82020-04-15 11:32:03 +02003111 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003112 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
3113 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003114 err_code |= ERR_WARN;
3115 }
3116
Willy Tarreau193b8c62012-11-22 00:17:38 +01003117 /* ensure that cookie capture length is not too large */
3118 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003119 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3120 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003121 err_code |= ERR_WARN;
3122 curproxy->capture_len = global.tune.cookie_len - 1;
3123 }
3124
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003125 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003126 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003127 curproxy->req_cap_pool = create_pool("ptrcap",
3128 curproxy->nb_req_cap * sizeof(char *),
3129 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003130 }
3131
3132 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003133 curproxy->rsp_cap_pool = create_pool("ptrcap",
3134 curproxy->nb_rsp_cap * sizeof(char *),
3135 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003136 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003137
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003138 switch (curproxy->load_server_state_from_file) {
3139 case PR_SRV_STATE_FILE_UNSPEC:
3140 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3141 break;
3142 case PR_SRV_STATE_FILE_GLOBAL:
3143 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003144 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",
3145 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003146 err_code |= ERR_WARN;
3147 }
3148 break;
3149 }
3150
Willy Tarreaubaaee002006-06-26 02:48:02 +02003151 /* first, we will invert the servers list order */
3152 newsrv = NULL;
3153 while (curproxy->srv) {
3154 struct server *next;
3155
3156 next = curproxy->srv->next;
3157 curproxy->srv->next = newsrv;
3158 newsrv = curproxy->srv;
3159 if (!next)
3160 break;
3161 curproxy->srv = next;
3162 }
3163
Willy Tarreau17edc812014-01-03 12:14:34 +01003164 /* Check that no server name conflicts. This causes trouble in the stats.
3165 * We only emit a warning for the first conflict affecting each server,
3166 * in order to avoid combinatory explosion if all servers have the same
3167 * name. We do that only for servers which do not have an explicit ID,
3168 * because these IDs were made also for distinguishing them and we don't
3169 * want to annoy people who correctly manage them.
3170 */
3171 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3172 struct server *other_srv;
3173
3174 if (newsrv->puid)
3175 continue;
3176
3177 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3178 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003179 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 +01003180 newsrv->conf.file, newsrv->conf.line,
3181 proxy_type_str(curproxy), curproxy->id,
3182 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003183 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003184 break;
3185 }
3186 }
3187 }
3188
Willy Tarreaudd701652010-05-25 23:03:02 +02003189 /* assign automatic UIDs to servers which don't have one yet */
3190 next_id = 1;
3191 newsrv = curproxy->srv;
3192 while (newsrv != NULL) {
3193 if (!newsrv->puid) {
3194 /* server ID not set, use automatic numbering with first
3195 * spare entry starting with next_svid.
3196 */
3197 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3198 newsrv->conf.id.key = newsrv->puid = next_id;
3199 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003200 newsrv->conf.name.key = newsrv->id;
3201 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003202 }
3203 next_id++;
3204 newsrv = newsrv->next;
3205 }
3206
Willy Tarreau20697042007-11-15 23:26:18 +01003207 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003208 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003209
Willy Tarreau62c3be22012-01-20 13:12:32 +01003210 /*
3211 * If this server supports a maxconn parameter, it needs a dedicated
3212 * tasks to fill the emptied slots when a connection leaves.
3213 * Also, resolve deferred tracking dependency if needed.
3214 */
3215 newsrv = curproxy->srv;
3216 while (newsrv != NULL) {
3217 if (newsrv->minconn > newsrv->maxconn) {
3218 /* Only 'minconn' was specified, or it was higher than or equal
3219 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3220 * this will avoid further useless expensive computations.
3221 */
3222 newsrv->maxconn = newsrv->minconn;
3223 } else if (newsrv->maxconn && !newsrv->minconn) {
3224 /* minconn was not specified, so we set it to maxconn */
3225 newsrv->minconn = newsrv->maxconn;
3226 }
3227
Willy Tarreau17d45382016-12-22 21:16:08 +01003228 /* this will also properly set the transport layer for prod and checks */
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003229 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 || (newsrv->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003230 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3231 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3232 }
Emeric Brun94324a42012-10-11 14:00:19 +02003233
Willy Tarreau034c88c2017-01-23 23:36:45 +01003234 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3235 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3236 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3237 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",
3238 newsrv->conf.file, newsrv->conf.line,
3239 proxy_type_str(curproxy), curproxy->id,
3240 newsrv->id);
3241
Willy Tarreau62c3be22012-01-20 13:12:32 +01003242 if (newsrv->trackit) {
3243 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003244 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003245 char *pname, *sname;
3246
3247 pname = newsrv->trackit;
3248 sname = strrchr(pname, '/');
3249
3250 if (sname)
3251 *sname++ = '\0';
3252 else {
3253 sname = pname;
3254 pname = NULL;
3255 }
3256
3257 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003258 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003259 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003260 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3261 proxy_type_str(curproxy), curproxy->id,
3262 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003263 cfgerr++;
3264 goto next_srv;
3265 }
3266 } else
3267 px = curproxy;
3268
3269 srv = findserver(px, sname);
3270 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003271 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3272 proxy_type_str(curproxy), curproxy->id,
3273 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003274 cfgerr++;
3275 goto next_srv;
3276 }
3277
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003278 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003279 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3280 "tracking as it does not have any check nor agent enabled.\n",
3281 proxy_type_str(curproxy), curproxy->id,
3282 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003283 cfgerr++;
3284 goto next_srv;
3285 }
3286
3287 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3288
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003289 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003290 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3291 "belongs to a tracking chain looping back to %s/%s.\n",
3292 proxy_type_str(curproxy), curproxy->id,
3293 newsrv->id, px->id, srv->id, px->id,
3294 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003295 cfgerr++;
3296 goto next_srv;
3297 }
3298
3299 if (curproxy != px &&
3300 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003301 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3302 "tracking: disable-on-404 option inconsistency.\n",
3303 proxy_type_str(curproxy), curproxy->id,
3304 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003305 cfgerr++;
3306 goto next_srv;
3307 }
3308
Willy Tarreau62c3be22012-01-20 13:12:32 +01003309 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003310 newsrv->tracknext = srv->trackers;
3311 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003312
3313 free(newsrv->trackit);
3314 newsrv->trackit = NULL;
3315 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003316
Willy Tarreau62c3be22012-01-20 13:12:32 +01003317 next_srv:
3318 newsrv = newsrv->next;
3319 }
3320
Olivier Houchard4e694042017-03-14 20:01:29 +01003321 /*
3322 * Try to generate dynamic cookies for servers now.
3323 * It couldn't be done earlier, since at the time we parsed
3324 * the server line, we may not have known yet that we
3325 * should use dynamic cookies, or the secret key may not
3326 * have been provided yet.
3327 */
3328 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3329 newsrv = curproxy->srv;
3330 while (newsrv != NULL) {
3331 srv_set_dyncookie(newsrv);
3332 newsrv = newsrv->next;
3333 }
3334
3335 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003336 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003337 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003338 */
3339
3340 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3341 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3342 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003343 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3344 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3345 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003346 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3347 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3348 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003349 } else {
3350 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3351 fwrr_init_server_groups(curproxy);
3352 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003353 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003354
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003355 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003356 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3357 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3358 fwlc_init_server_tree(curproxy);
3359 } else {
3360 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3361 fas_init_server_tree(curproxy);
3362 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003363 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003364
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003365 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003366 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3367 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3368 chash_init_server_tree(curproxy);
3369 } else {
3370 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3371 init_server_map(curproxy);
3372 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003373 break;
3374 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003375 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003376
3377 if (curproxy->options & PR_O_LOGASAP)
3378 curproxy->to_log &= ~LW_BYTES;
3379
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003380 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003381 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3382 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003383 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3384 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003385 err_code |= ERR_WARN;
3386 }
3387
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003388 if (curproxy->mode != PR_MODE_HTTP) {
3389 int optnum;
3390
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003391 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003392 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3393 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003394 err_code |= ERR_WARN;
3395 curproxy->uri_auth = NULL;
3396 }
3397
Willy Tarreaude7dc882017-03-10 11:49:21 +01003398 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003399 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires 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->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003405 ha_warning("config : 'http-request' 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->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003411 ha_warning("config : 'http-response' 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 Tarreaude7dc882017-03-10 11:49:21 +01003416 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003417 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3418 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003419 err_code |= ERR_WARN;
3420 }
3421
Willy Tarreau87cf5142011-08-19 22:57:24 +02003422 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003423 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3424 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003425 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003426 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003427 }
3428
3429 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003430 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3431 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003432 err_code |= ERR_WARN;
3433 curproxy->options &= ~PR_O_ORGTO;
3434 }
3435
3436 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3437 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3438 (curproxy->cap & cfg_opts[optnum].cap) &&
3439 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003440 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3441 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003442 err_code |= ERR_WARN;
3443 curproxy->options &= ~cfg_opts[optnum].val;
3444 }
3445 }
3446
3447 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3448 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3449 (curproxy->cap & cfg_opts2[optnum].cap) &&
3450 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003451 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3452 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003453 err_code |= ERR_WARN;
3454 curproxy->options2 &= ~cfg_opts2[optnum].val;
3455 }
3456 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003457
Willy Tarreau29fbe512015-08-20 19:35:14 +02003458#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003459 if (curproxy->conn_src.bind_hdr_occ) {
3460 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003461 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3462 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003463 err_code |= ERR_WARN;
3464 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003465#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003466 }
3467
Willy Tarreaubaaee002006-06-26 02:48:02 +02003468 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003469 * ensure that we're not cross-dressing a TCP server into HTTP.
3470 */
3471 newsrv = curproxy->srv;
3472 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003473 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003474 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3475 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003476 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003477 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003478
Willy Tarreau0cec3312011-10-31 13:49:26 +01003479 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003480 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3481 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003482 err_code |= ERR_WARN;
3483 }
3484
Willy Tarreauc93cd162014-05-13 15:54:22 +02003485 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003486 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3487 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003488 err_code |= ERR_WARN;
3489 }
3490
Willy Tarreau29fbe512015-08-20 19:35:14 +02003491#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003492 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3493 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003494 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3495 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003496 err_code |= ERR_WARN;
3497 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003498#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003499
Willy Tarreau46deab62018-04-28 07:18:15 +02003500 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3501 curproxy->options &= ~PR_O_REUSE_MASK;
3502
Willy Tarreau21d2af32008-02-14 20:25:24 +01003503 newsrv = newsrv->next;
3504 }
3505
Christopher Fauletd7c91962015-04-30 11:48:27 +02003506 /* Check filter configuration, if any */
3507 cfgerr += flt_check(curproxy);
3508
Willy Tarreauc1a21672009-08-16 22:37:44 +02003509 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003510 if (!curproxy->accept)
3511 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003512
Willy Tarreauc1a21672009-08-16 22:37:44 +02003513 if (curproxy->tcp_req.inspect_delay ||
3514 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003515 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003516
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003517 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003518 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003519 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003520 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003521
William Lallemandcf62f7e2018-10-26 14:47:40 +02003522 if (curproxy->mode == PR_MODE_CLI) {
3523 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3524 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3525 }
3526
Willy Tarreauc1a21672009-08-16 22:37:44 +02003527 /* both TCP and HTTP must check switching rules */
3528 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003529
3530 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003531 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003532 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3533 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 +01003534 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003535 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3536 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003537 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003538 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003539 }
3540
3541 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003542 if (curproxy->tcp_req.inspect_delay ||
3543 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3544 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3545
Emeric Brun97679e72010-09-23 17:56:44 +02003546 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3547 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3548
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003549 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003550 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003551 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003552 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003553
3554 /* If the backend does requires RDP cookie persistence, we have to
3555 * enable the corresponding analyser.
3556 */
3557 if (curproxy->options2 & PR_O2_RDPC_PRST)
3558 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003559
3560 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003561 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003562 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3563 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 +01003564 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003565 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3566 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003567 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003568 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003569 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003570
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003571 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003572 * attached to the current proxy */
3573 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3574 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003575 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003576
3577 if (!bind_conf->mux_proto)
3578 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003579
3580 /* it is possible that an incorrect mux was referenced
3581 * due to the proxy's mode not being taken into account
3582 * on first pass. Let's adjust it now.
3583 */
3584 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3585
3586 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003587 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3588 proxy_type_str(curproxy), curproxy->id,
3589 (int)bind_conf->mux_proto->token.len,
3590 bind_conf->mux_proto->token.ptr,
3591 bind_conf->arg, bind_conf->file, bind_conf->line);
3592 cfgerr++;
3593 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003594
3595 /* update the mux */
3596 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003597 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003598 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3599 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003600 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003601
3602 if (!newsrv->mux_proto)
3603 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003604
3605 /* it is possible that an incorrect mux was referenced
3606 * due to the proxy's mode not being taken into account
3607 * on first pass. Let's adjust it now.
3608 */
3609 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3610
3611 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003612 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3613 proxy_type_str(curproxy), curproxy->id,
3614 (int)newsrv->mux_proto->token.len,
3615 newsrv->mux_proto->token.ptr,
3616 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3617 cfgerr++;
3618 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003619
3620 /* update the mux */
3621 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003622 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003623
3624 /* initialize idle conns lists */
3625 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3626 int i;
3627
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003628 newsrv->available_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->available_conns));
Willy Tarreau835daa12019-02-07 14:46:29 +01003629
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003630 if (!newsrv->available_conns) {
Willy Tarreau835daa12019-02-07 14:46:29 +01003631 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003632 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau835daa12019-02-07 14:46:29 +01003633 cfgerr++;
3634 continue;
3635 }
3636
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003637 for (i = 0; i < global.nbthread; i++)
3638 LIST_INIT(&newsrv->available_conns[i]);
Willy Tarreau980855b2019-02-07 14:59:29 +01003639
3640 if (newsrv->max_idle_conns != 0) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003641 if (idle_conn_task == NULL) {
3642 idle_conn_task = task_new(MAX_THREADS_MASK);
3643 if (!idle_conn_task)
3644 goto err;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003645
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003646 idle_conn_task->process = srv_cleanup_idle_connections;
3647 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003648
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003649 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubbb5f1d2019-10-18 08:50:49 +02003650 idle_conn_cleanup[i] = task_new(1UL << i);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003651 if (!idle_conn_cleanup[i])
3652 goto err;
3653 idle_conn_cleanup[i]->process = srv_cleanup_toremove_connections;
3654 idle_conn_cleanup[i]->context = NULL;
Olivier Houchard859dc802019-08-08 15:47:21 +02003655 MT_LIST_INIT(&toremove_connections[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003656 }
3657 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003658
3659 newsrv->idle_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->idle_conns));
3660 if (!newsrv->idle_conns) {
3661 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3662 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3663 cfgerr++;
3664 continue;
3665 }
3666
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003667 for (i = 0; i < global.nbthread; i++)
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003668 MT_LIST_INIT(&newsrv->idle_conns[i]);
3669
3670 newsrv->safe_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->safe_conns));
3671 if (!newsrv->safe_conns) {
3672 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3673 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3674 cfgerr++;
3675 continue;
3676 }
3677
3678 for (i = 0; i < global.nbthread; i++)
3679 MT_LIST_INIT(&newsrv->safe_conns[i]);
3680
3681 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(int));
Olivier Houchardf1314812019-02-18 16:41:17 +01003682 if (!newsrv->curr_idle_thr)
3683 goto err;
Willy Tarreau980855b2019-02-07 14:59:29 +01003684 continue;
3685 err:
3686 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3687 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3688 cfgerr++;
3689 continue;
3690 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003691 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003692 }
3693
3694 /***********************************************************/
3695 /* At this point, target names have already been resolved. */
3696 /***********************************************************/
3697
3698 /* Check multi-process mode compatibility */
3699
3700 if (global.nbproc > 1 && global.stats_fe) {
3701 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3702 unsigned long mask;
3703
Willy Tarreau6daac192019-02-02 17:39:53 +01003704 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
3705 mask &= proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003706
3707 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003708 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003709 break;
3710 }
3711 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003712 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 +02003713 }
3714 }
3715
3716 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003717 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003718 if (curproxy->bind_proc)
3719 continue;
3720
3721 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3722 unsigned long mask;
3723
Willy Tarreau6daac192019-02-02 17:39:53 +01003724 mask = proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003725 curproxy->bind_proc |= mask;
3726 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003727 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003728 }
3729
3730 if (global.stats_fe) {
3731 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3732 unsigned long mask;
3733
Cyril Bonté06181952016-02-24 00:14:54 +01003734 mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003735 global.stats_fe->bind_proc |= mask;
3736 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003737 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003738 }
3739
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003740 /* propagate bindings from frontends to backends. Don't do it if there
3741 * are any fatal errors as we must not call it with unresolved proxies.
3742 */
3743 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003744 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003745 if (curproxy->cap & PR_CAP_FE)
3746 propagate_processes(curproxy, NULL);
3747 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003748 }
3749
3750 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003751 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3752 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003753
3754 /*******************************************************/
3755 /* At this step, all proxies have a non-null bind_proc */
3756 /*******************************************************/
3757
3758 /* perform the final checks before creating tasks */
3759
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003760 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003761 struct listener *listener;
3762 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003763
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003764 /* Configure SSL for each bind line.
3765 * Note: if configuration fails at some point, the ->ctx member
3766 * remains NULL so that listeners can later detach.
3767 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003768 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003769 if (bind_conf->xprt->prepare_bind_conf &&
3770 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003771 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003772 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003773
Willy Tarreaue6b98942007-10-29 01:09:36 +01003774 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003775 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003776 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003777 int nbproc;
3778
3779 nbproc = my_popcountl(curproxy->bind_proc &
Cyril Bonté4920d702016-04-15 07:58:43 +02003780 (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003781 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003782
3783 if (!nbproc) /* no intersection between listener and frontend */
3784 nbproc = 1;
3785
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003786 if (!listener->luid) {
3787 /* listener ID not set, use automatic numbering with first
3788 * spare entry starting with next_luid.
3789 */
3790 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3791 listener->conf.id.key = listener->luid = next_id;
3792 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003793 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003794 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003795
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003796 /* enable separate counters */
3797 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003798 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003799 if (!listener->name)
3800 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003801 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003802
Willy Tarreaue6b98942007-10-29 01:09:36 +01003803 if (curproxy->options & PR_O_TCP_NOLING)
3804 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003805 if (!listener->maxaccept)
3806 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3807
3808 /* we want to have an optimal behaviour on single process mode to
3809 * maximize the work at once, but in multi-process we want to keep
3810 * some fairness between processes, so we target half of the max
3811 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003812 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003813 * used to disable the limit.
3814 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003815 if (listener->maxaccept > 0 && nbproc > 1) {
3816 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003817 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3818 }
3819
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003820 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003821 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003822 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003823
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003824 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003825 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003826
Willy Tarreau620408f2016-10-21 16:37:51 +02003827 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3828 listener->options |= LI_O_TCP_L5_RULES;
3829
Willy Tarreaude3041d2010-05-31 10:56:17 +02003830 if (curproxy->mon_mask.s_addr)
3831 listener->options |= LI_O_CHK_MONNET;
3832
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003833 /* smart accept mode is automatic in HTTP mode */
3834 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003835 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003836 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3837 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003838 }
3839
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003840 /* Release unused SSL configs */
3841 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003842 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3843 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003844 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003845
Willy Tarreaua38a7172019-02-02 17:11:28 +01003846 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003847 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003848 int count, maxproc = 0;
3849
3850 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
David Carliere6c39412015-07-02 07:00:17 +00003851 count = my_popcountl(bind_conf->bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003852 if (count > maxproc)
3853 maxproc = count;
3854 }
3855 /* backends have 0, frontends have 1 or more */
3856 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003857 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3858 " limited to process assigned to the current request.\n",
3859 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003860
Willy Tarreau102df612014-05-07 23:56:38 +02003861 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003862 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3863 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003864 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003865 }
Willy Tarreau102df612014-05-07 23:56:38 +02003866 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003867 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3868 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003869 }
3870 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003871
3872 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003873 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003874 if (curproxy->task) {
3875 curproxy->task->context = curproxy;
3876 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003877 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003878 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3879 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003880 cfgerr++;
3881 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003882 }
3883
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003884 /*
3885 * Recount currently required checks.
3886 */
3887
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003888 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003889 int optnum;
3890
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003891 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3892 if (curproxy->options & cfg_opts[optnum].val)
3893 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003894
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003895 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3896 if (curproxy->options2 & cfg_opts2[optnum].val)
3897 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003898 }
3899
Willy Tarreau0fca4832015-05-01 19:12:05 +02003900 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003901 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003902 if (curproxy->table && curproxy->table->peers.p)
3903 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003904
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003905 /* compute the required process bindings for the peers from <stktables_list>
3906 * for all the stick-tables, the ones coming with "peers" sections included.
3907 */
3908 for (t = stktables_list; t; t = t->next) {
3909 struct proxy *p;
3910
3911 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3912 if (t->peers.p && t->peers.p->peers_fe) {
3913 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3914 }
3915 }
3916 }
3917
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003918 if (cfg_peers) {
3919 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003920 struct peer *p, *pb;
3921
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003922 /* In the case the peers frontend was not initialized by a
3923 stick-table used in the configuration, set its bind_proc
3924 by default to the first process. */
3925 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003926 if (curpeers->peers_fe) {
3927 if (curpeers->peers_fe->bind_proc == 0)
3928 curpeers->peers_fe->bind_proc = 1;
3929 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003930 curpeers = curpeers->next;
3931 }
3932
3933 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003934 /* Remove all peers sections which don't have a valid listener,
3935 * which are not used by any table, or which are bound to more
3936 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003937 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003938 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003939 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003940 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003941 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003942
3943 if (curpeers->state == PR_STSTOPPED) {
3944 /* the "disabled" keyword was present */
3945 if (curpeers->peers_fe)
3946 stop_proxy(curpeers->peers_fe);
3947 curpeers->peers_fe = NULL;
3948 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003949 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003950 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3951 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003952 if (curpeers->peers_fe)
3953 stop_proxy(curpeers->peers_fe);
3954 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003955 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003956 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003957 /* either it's totally stopped or too much used */
3958 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003959 ha_alert("Peers section '%s': peers referenced by sections "
3960 "running in different processes (%d different ones). "
3961 "Check global.nbproc and all tables' bind-process "
3962 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003963 cfgerr++;
3964 }
3965 stop_proxy(curpeers->peers_fe);
3966 curpeers->peers_fe = NULL;
3967 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003968 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003969 /* Initializes the transport layer of the server part of all the peers belonging to
3970 * <curpeers> section if required.
3971 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3972 * of an old process.
3973 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003974 p = curpeers->remote;
3975 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003976 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003977 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 +01003978 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3979 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003980 p = p->next;
3981 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003982 /* Configure the SSL bindings of the local peer if required. */
3983 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3984 struct list *l;
3985 struct bind_conf *bind_conf;
3986
3987 l = &curpeers->peers_fe->conf.bind;
3988 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3989 if (bind_conf->xprt->prepare_bind_conf &&
3990 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3991 cfgerr++;
3992 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003993 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02003994 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3995 curpeers->id);
3996 cfgerr++;
3997 break;
3998 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003999 last = &curpeers->next;
4000 continue;
4001 }
4002
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004003 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004004 p = curpeers->remote;
4005 while (p) {
4006 pb = p->next;
4007 free(p->id);
4008 free(p);
4009 p = pb;
4010 }
4011
4012 /* Destroy and unlink this curpeers section.
4013 * Note: curpeers is backed up into *last.
4014 */
4015 free(curpeers->id);
4016 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004017 /* Reset any refereance to this peers section in the list of stick-tables */
4018 for (t = stktables_list; t; t = t->next) {
4019 if (t->peers.p && t->peers.p == *last)
4020 t->peers.p = NULL;
4021 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004022 free(*last);
4023 *last = curpeers;
4024 }
4025 }
4026
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004027 for (t = stktables_list; t; t = t->next) {
4028 if (t->proxy)
4029 continue;
4030 if (!stktable_init(t)) {
4031 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4032 cfgerr++;
4033 }
4034 }
4035
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004036 /* initialize stick-tables on backend capable proxies. This must not
4037 * be done earlier because the data size may be discovered while parsing
4038 * other proxies.
4039 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004040 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004041 if (curproxy->state == PR_STSTOPPED || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004042 continue;
4043
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004044 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004045 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004046 cfgerr++;
4047 }
4048 }
4049
Simon Horman0d16a402015-01-30 11:22:58 +09004050 if (mailers) {
4051 struct mailers *curmailers = mailers, **last;
4052 struct mailer *m, *mb;
4053
4054 /* Remove all mailers sections which don't have a valid listener.
4055 * This can happen when a mailers section is never referenced.
4056 */
4057 last = &mailers;
4058 while (*last) {
4059 curmailers = *last;
4060 if (curmailers->users) {
4061 last = &curmailers->next;
4062 continue;
4063 }
4064
Christopher Faulet767a84b2017-11-24 16:50:31 +01004065 ha_warning("Removing incomplete section 'mailers %s'.\n",
4066 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004067
4068 m = curmailers->mailer_list;
4069 while (m) {
4070 mb = m->next;
4071 free(m->id);
4072 free(m);
4073 m = mb;
4074 }
4075
4076 /* Destroy and unlink this curmailers section.
4077 * Note: curmailers is backed up into *last.
4078 */
4079 free(curmailers->id);
4080 curmailers = curmailers->next;
4081 free(*last);
4082 *last = curmailers;
4083 }
4084 }
4085
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004086 /* Update server_state_file_name to backend name if backend is supposed to use
4087 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004088 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004089 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4090 curproxy->server_state_file_name == NULL)
4091 curproxy->server_state_file_name = strdup(curproxy->id);
4092 }
4093
Ben Draut054fbee2018-04-13 15:43:04 -06004094 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
4095 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
4096 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
4097 curr_resolvers->id, curr_resolvers->conf.file,
4098 curr_resolvers->conf.line);
4099 err_code |= ERR_WARN;
4100 }
4101 }
4102
William Lallemand48b4bb42017-10-23 14:36:34 +02004103 list_for_each_entry(postparser, &postparsers, list) {
4104 if (postparser->func)
4105 cfgerr += postparser->func();
4106 }
4107
Willy Tarreaubb925012009-07-23 13:36:36 +02004108 if (cfgerr > 0)
4109 err_code |= ERR_ALERT | ERR_FATAL;
4110 out:
4111 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004112}
4113
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004114/*
4115 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4116 * parsing sessions.
4117 */
4118void cfg_register_keywords(struct cfg_kw_list *kwl)
4119{
4120 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
4121}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004122
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004123/*
4124 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4125 */
4126void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4127{
4128 LIST_DEL(&kwl->list);
4129 LIST_INIT(&kwl->list);
4130}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004131
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004132/* this function register new section in the haproxy configuration file.
4133 * <section_name> is the name of this new section and <section_parser>
4134 * is the called parser. If two section declaration have the same name,
4135 * only the first declared is used.
4136 */
4137int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004138 int (*section_parser)(const char *, int, char **, int),
4139 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004140{
4141 struct cfg_section *cs;
4142
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004143 list_for_each_entry(cs, &sections, list) {
4144 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004145 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004146 return 0;
4147 }
4148 }
4149
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004150 cs = calloc(1, sizeof(*cs));
4151 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004152 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004153 return 0;
4154 }
4155
4156 cs->section_name = section_name;
4157 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004158 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004159
4160 LIST_ADDQ(&sections, &cs->list);
4161
4162 return 1;
4163}
4164
William Lallemand48b4bb42017-10-23 14:36:34 +02004165/* this function register a new function which will be called once the haproxy
4166 * configuration file has been parsed. It's useful to check dependencies
4167 * between sections or to resolve items once everything is parsed.
4168 */
4169int cfg_register_postparser(char *name, int (*func)())
4170{
4171 struct cfg_postparser *cp;
4172
4173 cp = calloc(1, sizeof(*cp));
4174 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004175 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004176 return 0;
4177 }
4178 cp->name = name;
4179 cp->func = func;
4180
4181 LIST_ADDQ(&postparsers, &cp->list);
4182
4183 return 1;
4184}
4185
Willy Tarreaubaaee002006-06-26 02:48:02 +02004186/*
David Carlier845efb52015-09-25 11:49:18 +01004187 * free all config section entries
4188 */
4189void cfg_unregister_sections(void)
4190{
4191 struct cfg_section *cs, *ics;
4192
4193 list_for_each_entry_safe(cs, ics, &sections, list) {
4194 LIST_DEL(&cs->list);
4195 free(cs);
4196 }
4197}
4198
Christopher Faulet7110b402016-10-26 11:09:44 +02004199void cfg_backup_sections(struct list *backup_sections)
4200{
4201 struct cfg_section *cs, *ics;
4202
4203 list_for_each_entry_safe(cs, ics, &sections, list) {
4204 LIST_DEL(&cs->list);
4205 LIST_ADDQ(backup_sections, &cs->list);
4206 }
4207}
4208
4209void cfg_restore_sections(struct list *backup_sections)
4210{
4211 struct cfg_section *cs, *ics;
4212
4213 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4214 LIST_DEL(&cs->list);
4215 LIST_ADDQ(&sections, &cs->list);
4216 }
4217}
4218
Willy Tarreaue6552512018-11-26 11:33:13 +01004219/* these are the config sections handled by default */
4220REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4221REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4222REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4223REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4224REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4225REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4226REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4227REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4228REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4229REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004230
David Carlier845efb52015-09-25 11:49:18 +01004231/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004232 * Local variables:
4233 * c-indent-level: 8
4234 * c-basic-offset: 8
4235 * End:
4236 */