blob: 17db1fcae3f5e91743cd48c2f7613d6787259af2 [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 Tarreaub2551052020-06-09 09:07:15 +020038#include <haproxy/api.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020039#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020040#include <haproxy/backend.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 Tarreaub2551052020-06-09 09:07:15 +020051#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020052#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020053#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020054#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020055#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020056#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020057#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020058#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020059#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020060#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020061#include <haproxy/mailers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020062#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020063#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020064#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020065#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020066#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020067#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020068#include <haproxy/proxy.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020069#include <haproxy/sample.h>
70#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020071#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020072#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020073#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020074#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020075#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020076#include <haproxy/tcp_rules.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020077#include <haproxy/thread.h>
78#include <haproxy/time.h>
79#include <haproxy/tools.h>
80#include <haproxy/uri_auth-t.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020081
82
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010083/* Used to chain configuration sections definitions. This list
84 * stores struct cfg_section
85 */
86struct list sections = LIST_HEAD_INIT(sections);
87
William Lallemand48b4bb42017-10-23 14:36:34 +020088struct list postparsers = LIST_HEAD_INIT(postparsers);
89
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010090char *cursection = NULL;
91struct proxy defproxy = { }; /* fake proxy used to assign default values on all instances */
Willy Tarreauc8d5b952019-02-27 17:25:52 +010092int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +010093int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +010094char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +020095
Willy Tarreau5b2c3362008-07-09 19:39:06 +020096/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +010097struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +020098 .list = LIST_HEAD_INIT(cfg_keywords.list)
99};
100
Willy Tarreaubaaee002006-06-26 02:48:02 +0200101/*
102 * converts <str> to a list of listeners which are dynamically allocated.
103 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
104 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
105 * - <port> is a numerical port from 1 to 65535 ;
106 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
107 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200108 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
109 * not NULL, it must be a valid pointer to either NULL or a freeable area that
110 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200111 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200112int 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 +0200113{
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100114 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200115 int port, end;
116
117 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200118
Willy Tarreaubaaee002006-06-26 02:48:02 +0200119 while (next && *next) {
William Lallemand75ea0a02017-11-15 19:02:58 +0100120 int inherited = 0;
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200121 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100122 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200123
124 str = next;
125 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100126 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200127 *next++ = 0;
128 }
129
Willy Tarreau48ef4c92017-01-06 18:32:38 +0100130 ss2 = str2sa_range(str, NULL, &port, &end, err,
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200131 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
Thierry FOURNIER7fe3be72015-09-26 20:03:36 +0200132 NULL, 1);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100133 if (!ss2)
134 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200135
Emeric Brun3835c0d2020-07-07 09:46:09 +0200136 if (ss2->ss_family == AF_INET || ss2->ss_family == AF_INET6
137 || ss2->ss_family == AF_CUST_UDP4
138 || ss2->ss_family == AF_CUST_UDP6) {
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 }
Emeric Brund3db3842020-07-21 16:54:36 +0200682 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, 0, 1, 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 */
Emeric Brund3db3842020-07-21 16:54:36 +0200791 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, peer || !local_peer, 1, 1);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200792 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;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001855 char *outline = NULL;
1856 size_t outlen = 0;
1857 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001858 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001859 int missing_lf = -1;
William Lallemand64e84512015-05-12 14:25:37 +02001860
1861 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001862 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001863 return -1;
1864 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001865
David Carlier97880bb2016-04-08 10:35:26 +01001866 if ((f=fopen(file,"r")) == NULL) {
1867 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001868 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001869 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001870
William Lallemandb2f07452015-05-12 14:27:13 +02001871next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001872 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001873 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001874 char *end;
1875 char *args[MAX_LINE_ARGS + 1];
1876 char *line = thisline;
1877
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001878 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001879 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1880 file, linenum, (missing_lf + 1));
1881 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001882 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001883 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001884 }
1885
Willy Tarreaubaaee002006-06-26 02:48:02 +02001886 linenum++;
1887
Willy Tarreau32234e72020-06-16 17:14:33 +02001888 if (fatal >= 50) {
1889 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1890 break;
1891 }
1892
Willy Tarreaubaaee002006-06-26 02:48:02 +02001893 end = line + strlen(line);
1894
William Lallemand64e84512015-05-12 14:25:37 +02001895 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001896 /* Check if we reached the limit and the last char is not \n.
1897 * Watch out for the last line without the terminating '\n'!
1898 */
William Lallemand64e84512015-05-12 14:25:37 +02001899 char *newline;
1900 int newlinesize = linesize * 2;
1901
1902 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1903 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001904 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1905 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001906 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001907 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001908 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001909 continue;
1910 }
1911
1912 readbytes = linesize - 1;
1913 linesize = newlinesize;
1914 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001915 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001916 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001917 }
1918
William Lallemand64e84512015-05-12 14:25:37 +02001919 readbytes = 0;
1920
Willy Tarreau08488f62020-06-26 17:24:54 +02001921 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001922 /* kill trailing LF */
1923 *(end - 1) = 0;
1924 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001925 else {
1926 /* mark this line as truncated */
1927 missing_lf = end - line;
1928 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001929
Willy Tarreaubaaee002006-06-26 02:48:02 +02001930 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001931 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001932 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001933
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001934 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001935 err_code |= cfg_parse_scope(file, linenum, line);
1936 goto next_line;
1937 }
1938
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001939 while (1) {
1940 uint32_t err;
1941 char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001942
Willy Tarreau61dd44b2020-06-25 07:35:42 +02001943 arg = MAX_LINE_ARGS + 1;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001944 outlen = outlinesize;
1945 err = parse_line(line, outline, &outlen, args, &arg,
1946 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
1947 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP, &errptr);
1948
1949 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001950 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1951
1952 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1953 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001954 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001955 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001956 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001957 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001958
1959 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001960 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1961
1962 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1963 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001964 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001965 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001966 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001967 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001968
1969 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001970 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1971
1972 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1973 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001974 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001975 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001976 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001977 }
William Lallemandb2f07452015-05-12 14:27:13 +02001978
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001979 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001980 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1981
1982 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1983 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001984 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001985 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001986 goto next_line;
1987 }
William Lallemandb2f07452015-05-12 14:27:13 +02001988
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001989 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1990 outlinesize = (outlen + 1023) & -1024;
1991 outline = realloc(outline, outlinesize);
1992 if (outline == NULL) {
1993 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1994 file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001995 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001996 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001997 goto next_line;
William Lallemandb2f07452015-05-12 14:27:13 +02001998 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001999 /* try again */
2000 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002001 }
Willy Tarreau07d47062020-06-25 07:41:22 +02002002
2003 if (err & PARSE_ERR_TOOMANY) {
2004 /* only check this *after* being sure the output is allocated */
2005 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
2006 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
2007 err_code |= ERR_ALERT | ERR_FATAL;
2008 fatal++;
2009 goto next_line;
2010 }
2011
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002012 /* everything's OK */
2013 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02002014 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002015
2016 /* empty line */
2017 if (!**args)
2018 continue;
2019
Willy Tarreau3842f002009-06-14 11:39:52 +02002020 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002021 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02002022 char *tmp;
2023
Willy Tarreau3842f002009-06-14 11:39:52 +02002024 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002025 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002026 for (arg=0; *args[arg+1]; arg++)
2027 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002028 *tmp = '\0'; // fix the next arg to \0
2029 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002030 }
Willy Tarreau3842f002009-06-14 11:39:52 +02002031 else if (!strcmp(args[0], "default")) {
2032 kwm = KWM_DEF;
2033 for (arg=0; *args[arg+1]; arg++)
2034 args[arg] = args[arg+1]; // shift args after inversion
2035 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002036
William Dauchyec730982019-10-27 20:08:10 +01002037 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2038 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002039 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
2040 strcmp(args[0], "insecure-fork-wanted") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002041 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002042 "supported only for options, log, busy-polling, "
Willy Tarreaud96f1122019-12-03 07:07:36 +01002043 "set-dumpable, strict-limits, and insecure-fork-wanted.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002044 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002045 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002046 }
2047
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002048 /* detect section start */
2049 list_for_each_entry(ics, &sections, list) {
2050 if (strcmp(args[0], ics->section_name) == 0) {
2051 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002052 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002053 cs = ics;
2054 break;
2055 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002056 }
2057
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002058 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002059 int status;
2060
2061 status = pcs->post_section_parser();
2062 err_code |= status;
2063 if (status & ERR_FATAL)
2064 fatal++;
2065
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002066 if (err_code & ERR_ABORT)
2067 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002068 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002069 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002070
William Lallemandd2ff56d2017-10-16 11:06:50 +02002071 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002072 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002073 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002074 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002075 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002076 int status;
2077
2078 status = cs->section_parser(file, linenum, args, kwm);
2079 err_code |= status;
2080 if (status & ERR_FATAL)
2081 fatal++;
2082
William Lallemandd2ff56d2017-10-16 11:06:50 +02002083 if (err_code & ERR_ABORT)
2084 goto err;
2085 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002086 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002087
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002088 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002089 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2090 file, linenum, (missing_lf + 1));
2091 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002092 }
2093
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002094 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002095 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002096
2097err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002098 free(cfg_scope);
2099 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002100 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002101 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002102 free(outline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002103 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002104 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002105}
2106
Willy Tarreau64ab6072014-09-16 12:17:36 +02002107/* This function propagates processes from frontend <from> to backend <to> so
2108 * that it is always guaranteed that a backend pointed to by a frontend is
2109 * bound to all of its processes. After that, if the target is a "listen"
2110 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002111 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002112 * checked first to ensure that <to> is already bound to all processes of
2113 * <from>, there is no risk of looping and we ensure to follow the shortest
2114 * path to the destination.
2115 *
2116 * It is possible to set <to> to NULL for the first call so that the function
2117 * takes care of visiting the initial frontend in <from>.
2118 *
2119 * It is important to note that the function relies on the fact that all names
2120 * have already been resolved.
2121 */
2122void propagate_processes(struct proxy *from, struct proxy *to)
2123{
2124 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002125
2126 if (to) {
2127 /* check whether we need to go down */
2128 if (from->bind_proc &&
2129 (from->bind_proc & to->bind_proc) == from->bind_proc)
2130 return;
2131
2132 if (!from->bind_proc && !to->bind_proc)
2133 return;
2134
2135 to->bind_proc = from->bind_proc ?
2136 (to->bind_proc | from->bind_proc) : 0;
2137
2138 /* now propagate down */
2139 from = to;
2140 }
2141
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002142 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002143 return;
2144
Willy Tarreauf6b70012014-12-18 14:00:43 +01002145 if (from->state == PR_STSTOPPED)
2146 return;
2147
Willy Tarreau64ab6072014-09-16 12:17:36 +02002148 /* default_backend */
2149 if (from->defbe.be)
2150 propagate_processes(from, from->defbe.be);
2151
2152 /* use_backend */
2153 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002154 if (rule->dynamic)
2155 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002156 to = rule->be.backend;
2157 propagate_processes(from, to);
2158 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002159}
2160
Willy Tarreaubb925012009-07-23 13:36:36 +02002161/*
2162 * Returns the error code, 0 if OK, or any combination of :
2163 * - ERR_ABORT: must abort ASAP
2164 * - ERR_FATAL: we can continue parsing but not start the service
2165 * - ERR_WARN: a warning has been emitted
2166 * - ERR_ALERT: an alert has been emitted
2167 * Only the two first ones can stop processing, the two others are just
2168 * indicators.
2169 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002170int check_config_validity()
2171{
2172 int cfgerr = 0;
2173 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002174 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002175 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002176 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002177 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002178 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002179 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002180 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002181 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002182
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002183 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002184 /*
2185 * Now, check for the integrity of all that we have collected.
2186 */
2187
2188 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002189 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002190
Willy Tarreau193b8c62012-11-22 00:17:38 +01002191 if (!global.tune.max_http_hdr)
2192 global.tune.max_http_hdr = MAX_HTTP_HDR;
2193
2194 if (!global.tune.cookie_len)
2195 global.tune.cookie_len = CAPTURE_LEN;
2196
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002197 if (!global.tune.requri_len)
2198 global.tune.requri_len = REQURI_LEN;
2199
Willy Tarreau149ab772019-01-26 14:27:06 +01002200 if (!global.nbthread) {
2201 /* nbthread not set, thus automatic. In this case, and only if
2202 * running on a single process, we enable the same number of
2203 * threads as the number of CPUs the process is bound to. This
2204 * allows to easily control the number of threads using taskset.
2205 */
2206 global.nbthread = 1;
2207#if defined(USE_THREAD)
2208 if (global.nbproc == 1)
2209 global.nbthread = thread_cpus_enabled_at_boot;
2210 all_threads_mask = nbits(global.nbthread);
2211#endif
2212 }
2213
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002214 if (global.nbproc > 1 && global.nbthread > 1) {
2215 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2216 err_code |= ERR_ALERT | ERR_FATAL;
2217 goto out;
2218 }
2219
Willy Tarreaubafbe012017-11-24 17:34:44 +01002220 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002221
Willy Tarreaubafbe012017-11-24 17:34:44 +01002222 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002223
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002224 /* Post initialisation of the users and groups lists. */
2225 err_code = userlist_postinit();
2226 if (err_code != ERR_NONE)
2227 goto out;
2228
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002229 /* first, we will invert the proxy list order */
2230 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002231 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002232 struct proxy *next;
2233
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002234 next = proxies_list->next;
2235 proxies_list->next = curproxy;
2236 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002237 if (!next)
2238 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002239 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002240 }
2241
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002242 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002243 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002244 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002245 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002246 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002247 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002248 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002249 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002250
Willy Tarreau050536d2012-10-04 08:47:34 +02002251 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002252 /* proxy ID not set, use automatic numbering with first
2253 * spare entry starting with next_pxid.
2254 */
2255 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2256 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2257 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002258 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002259 next_pxid++;
2260
Willy Tarreau55ea7572007-06-17 19:56:27 +02002261
Willy Tarreaubaaee002006-06-26 02:48:02 +02002262 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002263 /* ensure we don't keep listeners uselessly bound */
2264 stop_proxy(curproxy);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002265 if (curproxy->table) {
2266 free((void *)curproxy->table->peers.name);
2267 curproxy->table->peers.p = NULL;
2268 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002269 continue;
2270 }
2271
Willy Tarreau102df612014-05-07 23:56:38 +02002272 /* Check multi-process mode compatibility for the current proxy */
2273
2274 if (curproxy->bind_proc) {
2275 /* an explicit bind-process was specified, let's check how many
2276 * processes remain.
2277 */
David Carliere6c39412015-07-02 07:00:17 +00002278 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002279
Willy Tarreaua38a7172019-02-02 17:11:28 +01002280 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002281 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002282 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 +02002283 curproxy->bind_proc = 1;
2284 }
2285 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002286 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 +02002287 curproxy->bind_proc = 0;
2288 }
2289 }
2290
Willy Tarreau3d209582014-05-09 17:06:11 +02002291 /* check and reduce the bind-proc of each listener */
2292 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2293 unsigned long mask;
2294
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002295 /* HTTP frontends with "h2" as ALPN/NPN will work in
2296 * HTTP/2 and absolutely require buffers 16kB or larger.
2297 */
2298#ifdef USE_OPENSSL
2299 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2300#ifdef OPENSSL_NPN_NEGOTIATED
2301 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002302 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002303 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",
2304 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002305 cfgerr++;
2306 }
2307#endif
2308#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2309 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002310 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002311 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",
2312 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002313 cfgerr++;
2314 }
2315#endif
2316 } /* HTTP && bufsize < 16384 */
2317#endif
2318
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002319 /* detect and address thread affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002320 mask = thread_mask(bind_conf->bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002321 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002322 unsigned long new_mask = 0;
2323
2324 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002325 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002326 mask >>= global.nbthread;
2327 }
2328
Willy Tarreaua36b3242019-02-02 13:14:34 +01002329 bind_conf->bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002330 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",
2331 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2332 }
2333
2334 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002335 mask = proc_mask(bind_conf->bind_proc) & proc_mask(curproxy->bind_proc);
2336 if (!(mask & all_proc_mask)) {
2337 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
2338 nbproc = my_popcountl(bind_conf->bind_proc);
2339 bind_conf->bind_proc = proc_mask(bind_conf->bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002340
Willy Tarreaua36b3242019-02-02 13:14:34 +01002341 if (!bind_conf->bind_proc && nbproc == 1) {
2342 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",
2343 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2344 bind_conf->bind_proc = mask & ~(mask - 1);
2345 }
2346 else if (!bind_conf->bind_proc && nbproc > 1) {
2347 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",
2348 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2349 bind_conf->bind_proc = 0;
2350 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002351 }
2352 }
2353
Willy Tarreauff01a212009-03-15 13:46:16 +01002354 switch (curproxy->mode) {
2355 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002356 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002357 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002358 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2359 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002360 cfgerr++;
2361 }
2362
2363 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002364 ha_warning("config : servers will be ignored for %s '%s'.\n",
2365 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002366 break;
2367
2368 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002369 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002370 break;
2371
2372 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002373 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002374 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002375
2376 case PR_MODE_CLI:
2377 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2378 break;
Emeric Brun54932b42020-07-07 09:43:24 +02002379 case PR_MODE_SYSLOG:
2380 case PR_MODES:
2381 /* should not happen, bug gcc warn missing switch statement */
2382 ha_alert("config : %s '%s' cannot use syslog mode for this proxy.\n",
2383 proxy_type_str(curproxy), curproxy->id);
2384 cfgerr++;
2385 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002386 }
2387
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002388 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002389 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2390 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002391 err_code |= ERR_WARN;
2392 }
2393
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002394 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002395 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002396 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002397 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2398 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002399 cfgerr++;
2400 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002401#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002402 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002403 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2404 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002405 cfgerr++;
2406 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002407#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002408 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002409 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2410 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002411 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002412 }
2413 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002414 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002415 /* If no LB algo is set in a backend, and we're not in
2416 * transparent mode, dispatch mode nor proxy mode, we
2417 * want to use balance roundrobin by default.
2418 */
2419 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2420 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002421 }
2422 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002423
Willy Tarreau1620ec32011-08-06 17:05:02 +02002424 if (curproxy->options & PR_O_DISPATCH)
2425 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2426 else if (curproxy->options & PR_O_HTTP_PROXY)
2427 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2428 else if (curproxy->options & PR_O_TRANSP)
2429 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002430
Christopher Faulete5870d82020-04-15 11:32:03 +02002431 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2432 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2433 proxy_type_str(curproxy), curproxy->id);
2434 err_code |= ERR_WARN;
2435 }
2436
2437 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002438 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002439 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002440 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2441 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002442 err_code |= ERR_WARN;
2443 curproxy->options &= ~PR_O_DISABLE404;
2444 }
2445 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002446 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2447 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002448 err_code |= ERR_WARN;
2449 curproxy->options &= ~PR_O2_CHK_SNDST;
2450 }
Willy Tarreauef781042010-01-27 11:53:01 +01002451 }
2452
Simon Horman98637e52014-06-20 12:30:16 +09002453 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2454 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002455 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2456 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002457 cfgerr++;
2458 }
2459 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002460 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2461 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002462 cfgerr++;
2463 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002464 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2465 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2466 curproxy->id, "option external-check");
2467 err_code |= ERR_WARN;
2468 }
Simon Horman98637e52014-06-20 12:30:16 +09002469 }
2470
Simon Horman64e34162015-02-06 11:11:57 +09002471 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002472 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002473 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2474 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2475 "'email-alert myhostname', or 'email-alert to' "
2476 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2477 "to be present).\n",
2478 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002479 err_code |= ERR_WARN;
2480 free_email_alert(curproxy);
2481 }
2482 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002483 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002484 }
2485
Simon Horman98637e52014-06-20 12:30:16 +09002486 if (curproxy->check_command) {
2487 int clear = 0;
2488 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002489 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2490 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002491 err_code |= ERR_WARN;
2492 clear = 1;
2493 }
2494 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002495 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2496 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002497 cfgerr++;
2498 }
2499 if (clear) {
2500 free(curproxy->check_command);
2501 curproxy->check_command = NULL;
2502 }
2503 }
2504
2505 if (curproxy->check_path) {
2506 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002507 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2508 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002509 err_code |= ERR_WARN;
2510 free(curproxy->check_path);
2511 curproxy->check_path = NULL;
2512 }
2513 }
2514
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002515 /* if a default backend was specified, let's find it */
2516 if (curproxy->defbe.name) {
2517 struct proxy *target;
2518
Willy Tarreauafb39922015-05-26 12:04:09 +02002519 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002520 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002521 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2522 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002523 cfgerr++;
2524 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002525 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2526 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002527 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002528 } else if (target->mode != curproxy->mode &&
2529 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2530
Christopher Faulet767a84b2017-11-24 16:50:31 +01002531 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2532 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2533 curproxy->conf.file, curproxy->conf.line,
2534 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2535 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002536 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002537 } else {
2538 free(curproxy->defbe.name);
2539 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002540 /* Emit a warning if this proxy also has some servers */
2541 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002542 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2543 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002544 err_code |= ERR_WARN;
2545 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002546 }
2547 }
2548
Willy Tarreau55ea7572007-06-17 19:56:27 +02002549 /* find the target proxy for 'use_backend' rules */
2550 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002551 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002552 struct logformat_node *node;
2553 char *pxname;
2554
2555 /* Try to parse the string as a log format expression. If the result
2556 * of the parsing is only one entry containing a simple string, then
2557 * it's a standard string corresponding to a static rule, thus the
2558 * parsing is cancelled and be.name is restored to be resolved.
2559 */
2560 pxname = rule->be.name;
2561 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002562 curproxy->conf.args.ctx = ARGC_UBK;
2563 curproxy->conf.args.file = rule->file;
2564 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002565 err = NULL;
2566 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002567 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2568 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002569 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002570 cfgerr++;
2571 continue;
2572 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002573 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2574
2575 if (!LIST_ISEMPTY(&rule->be.expr)) {
2576 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2577 rule->dynamic = 1;
2578 free(pxname);
2579 continue;
2580 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002581 /* Only one element in the list, a simple string: free the expression and
2582 * fall back to static rule
2583 */
2584 LIST_DEL(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002585 free(node->arg);
2586 free(node);
2587 }
2588
2589 rule->dynamic = 0;
2590 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002591
Willy Tarreauafb39922015-05-26 12:04:09 +02002592 target = proxy_be_by_name(rule->be.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 use_backend: '%s'.\n",
2595 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002596 cfgerr++;
2597 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002598 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2599 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +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) in a 'use_backend' rule (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 Tarreau55ea7572007-06-17 19:56:27 +02002610 } else {
2611 free((void *)rule->be.name);
2612 rule->be.backend = target;
2613 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002614 }
2615
Willy Tarreau64ab6072014-09-16 12:17:36 +02002616 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002617 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002618 struct server *target;
2619 struct logformat_node *node;
2620 char *server_name;
2621
2622 /* We try to parse the string as a log format expression. If the result of the parsing
2623 * is only one entry containing a single string, then it's a standard string corresponding
2624 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2625 */
2626 server_name = srule->srv.name;
2627 LIST_INIT(&srule->expr);
2628 curproxy->conf.args.ctx = ARGC_USRV;
2629 err = NULL;
2630 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2631 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2632 srule->file, srule->line, server_name, err);
2633 free(err);
2634 cfgerr++;
2635 continue;
2636 }
2637 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2638
2639 if (!LIST_ISEMPTY(&srule->expr)) {
2640 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2641 srule->dynamic = 1;
2642 free(server_name);
2643 continue;
2644 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002645 /* Only one element in the list, a simple string: free the expression and
2646 * fall back to static rule
2647 */
2648 LIST_DEL(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002649 free(node->arg);
2650 free(node);
2651 }
2652
2653 srule->dynamic = 0;
2654 srule->srv.name = server_name;
2655 target = findserver(curproxy, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002656
2657 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002658 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2659 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002660 cfgerr++;
2661 continue;
2662 }
2663 free((void *)srule->srv.name);
2664 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002665 }
2666
Emeric Brunb982a3d2010-01-04 15:45:53 +01002667 /* find the target table for 'stick' rules */
2668 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002669 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002670
Emeric Brun1d33b292010-01-04 15:47:17 +01002671 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2672 if (mrule->flags & STK_IS_STORE)
2673 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2674
Emeric Brunb982a3d2010-01-04 15:45:53 +01002675 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002676 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002677 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002678 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002679
2680 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002681 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002682 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002683 cfgerr++;
2684 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002685 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002686 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2687 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002688 cfgerr++;
2689 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002690 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002691 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2692 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002693 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002694 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002695 else {
2696 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002697 mrule->table.t = target;
2698 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002699 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002700 if (!in_proxies_list(target->proxies_list, curproxy)) {
2701 curproxy->next_stkt_ref = target->proxies_list;
2702 target->proxies_list = curproxy;
2703 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002704 }
2705 }
2706
2707 /* find the target table for 'store response' rules */
2708 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002709 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002710
Emeric Brun1d33b292010-01-04 15:47:17 +01002711 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2712
Emeric Brunb982a3d2010-01-04 15:45:53 +01002713 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002714 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002715 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002716 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002717
2718 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002719 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002720 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002721 cfgerr++;
2722 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002723 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002724 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2725 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002726 cfgerr++;
2727 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002728 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002729 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2730 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002731 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002732 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002733 else {
2734 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002735 mrule->table.t = target;
2736 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002737 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002738 if (!in_proxies_list(target->proxies_list, curproxy)) {
2739 curproxy->next_stkt_ref = target->proxies_list;
2740 target->proxies_list = curproxy;
2741 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002742 }
2743 }
2744
Christopher Faulete4e830d2017-09-18 14:51:41 +02002745 /* check validity for 'tcp-request' layer 4 rules */
2746 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2747 err = NULL;
2748 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002749 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002750 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002751 cfgerr++;
2752 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002753 }
2754
Christopher Faulete4e830d2017-09-18 14:51:41 +02002755 /* check validity for 'tcp-request' layer 5 rules */
2756 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2757 err = NULL;
2758 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002759 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002760 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002761 cfgerr++;
2762 }
2763 }
2764
Christopher Faulete4e830d2017-09-18 14:51:41 +02002765 /* check validity for 'tcp-request' layer 6 rules */
2766 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2767 err = NULL;
2768 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002769 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002770 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002771 cfgerr++;
2772 }
2773 }
2774
Christopher Faulete4e830d2017-09-18 14:51:41 +02002775 /* check validity for 'http-request' layer 7 rules */
2776 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2777 err = NULL;
2778 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002779 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002780 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002781 cfgerr++;
2782 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002783 }
2784
Christopher Faulete4e830d2017-09-18 14:51:41 +02002785 /* check validity for 'http-response' layer 7 rules */
2786 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2787 err = NULL;
2788 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002789 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002790 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002791 cfgerr++;
2792 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002793 }
2794
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002795 /* check validity for 'http-after-response' layer 7 rules */
2796 list_for_each_entry(arule, &curproxy->http_after_res_rules, list) {
2797 err = NULL;
2798 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
2799 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
2800 free(err);
2801 cfgerr++;
2802 }
2803 }
2804
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002805 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002806 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002807
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002808 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002809 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
2810 free((void *)curproxy->table->peers.name);
2811 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002812 break;
2813 }
2814 }
2815
2816 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002817 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002818 curproxy->id, curproxy->table->peers.name);
2819 free((void *)curproxy->table->peers.name);
2820 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002821 cfgerr++;
2822 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002823 else if (curpeers->state == PR_STSTOPPED) {
2824 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002825 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002826 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002827 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002828 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2829 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002830 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002831 cfgerr++;
2832 }
2833 }
2834
Simon Horman9dc49962015-01-30 11:22:59 +09002835
2836 if (curproxy->email_alert.mailers.name) {
2837 struct mailers *curmailers = mailers;
2838
2839 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002840 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002841 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002842 }
Simon Horman9dc49962015-01-30 11:22:59 +09002843 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002844 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2845 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002846 free_email_alert(curproxy);
2847 cfgerr++;
2848 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002849 else {
2850 err = NULL;
2851 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002852 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002853 free(err);
2854 cfgerr++;
2855 }
2856 }
Simon Horman9dc49962015-01-30 11:22:59 +09002857 }
2858
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002859 if (curproxy->uri_auth && curproxy->uri_auth != defproxy.uri_auth &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002860 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002861 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002862 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2863 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002864 cfgerr++;
2865 goto out_uri_auth_compat;
2866 }
2867
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002868 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
2869 (curproxy->uri_auth != defproxy.uri_auth ||
2870 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002871 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002872 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002873 int i = 0;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002874 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2875 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002876
2877 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002878 uri_auth_compat_req[i++] = "realm";
2879 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2880 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002881
Willy Tarreau95fa4692010-02-01 13:05:50 +01002882 uri_auth_compat_req[i++] = "unless";
2883 uri_auth_compat_req[i++] = "{";
2884 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2885 uri_auth_compat_req[i++] = "}";
2886 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002887
Willy Tarreauff011f22011-01-06 17:51:27 +01002888 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2889 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002890 cfgerr++;
2891 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002892 }
2893
Willy Tarreauff011f22011-01-06 17:51:27 +01002894 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002895
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002896 if (curproxy->uri_auth->auth_realm) {
2897 free(curproxy->uri_auth->auth_realm);
2898 curproxy->uri_auth->auth_realm = NULL;
2899 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002900 }
2901out_uri_auth_compat:
2902
Dragan Dosen43885c72015-10-01 13:18:13 +02002903 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002904 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002905 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2906 if (!curproxy->conf.logformat_sd_string) {
2907 /* set the default logformat_sd_string */
2908 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2909 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002910 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002911 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002912 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002913
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002914 /* compile the log format */
2915 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002916 if (curproxy->conf.logformat_string != default_http_log_format &&
2917 curproxy->conf.logformat_string != default_tcp_log_format &&
2918 curproxy->conf.logformat_string != clf_http_log_format)
2919 free(curproxy->conf.logformat_string);
2920 curproxy->conf.logformat_string = NULL;
2921 free(curproxy->conf.lfs_file);
2922 curproxy->conf.lfs_file = NULL;
2923 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002924
2925 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2926 free(curproxy->conf.logformat_sd_string);
2927 curproxy->conf.logformat_sd_string = NULL;
2928 free(curproxy->conf.lfsd_file);
2929 curproxy->conf.lfsd_file = NULL;
2930 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002931 }
2932
Willy Tarreau62a61232013-04-12 18:13:46 +02002933 if (curproxy->conf.logformat_string) {
2934 curproxy->conf.args.ctx = ARGC_LOG;
2935 curproxy->conf.args.file = curproxy->conf.lfs_file;
2936 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002937 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002938 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
2939 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002940 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002941 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
2942 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002943 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002944 cfgerr++;
2945 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002946 curproxy->conf.args.file = NULL;
2947 curproxy->conf.args.line = 0;
2948 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002949
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002950 if (curproxy->conf.logformat_sd_string) {
2951 curproxy->conf.args.ctx = ARGC_LOGSD;
2952 curproxy->conf.args.file = curproxy->conf.lfsd_file;
2953 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002954 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002955 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
2956 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002957 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002958 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2959 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002960 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002961 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002962 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002963 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2964 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002965 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002966 cfgerr++;
2967 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002968 curproxy->conf.args.file = NULL;
2969 curproxy->conf.args.line = 0;
2970 }
2971
Willy Tarreau62a61232013-04-12 18:13:46 +02002972 if (curproxy->conf.uniqueid_format_string) {
2973 curproxy->conf.args.ctx = ARGC_UIF;
2974 curproxy->conf.args.file = curproxy->conf.uif_file;
2975 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002976 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002977 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
2978 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES,
2979 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR
2980 : SMP_VAL_BE_HRQ_HDR,
2981 &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002982 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
2983 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002984 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002985 cfgerr++;
2986 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002987 curproxy->conf.args.file = NULL;
2988 curproxy->conf.args.line = 0;
2989 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002990
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002991 /* only now we can check if some args remain unresolved.
2992 * This must be done after the users and groups resolution.
2993 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002994 cfgerr += smp_resolve_args(curproxy);
2995 if (!cfgerr)
2996 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002997
Willy Tarreau2738a142006-07-08 17:28:09 +02002998 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002999 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003000 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003001 (!curproxy->timeout.connect ||
3002 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003003 ha_warning("config : missing timeouts for %s '%s'.\n"
3004 " | While not properly invalid, you will certainly encounter various problems\n"
3005 " | with such a configuration. To fix this, please ensure that all following\n"
3006 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3007 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003008 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003009 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003010
Willy Tarreau1fa31262007-12-03 00:36:16 +01003011 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3012 * We must still support older configurations, so let's find out whether those
3013 * parameters have been set or must be copied from contimeouts.
3014 */
3015 if (curproxy != &defproxy) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003016 if (!curproxy->timeout.tarpit ||
3017 curproxy->timeout.tarpit == defproxy.timeout.tarpit) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003018 /* tarpit timeout not set. We search in the following order:
3019 * default.tarpit, curr.connect, default.connect.
3020 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003021 if (defproxy.timeout.tarpit)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003022 curproxy->timeout.tarpit = defproxy.timeout.tarpit;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003023 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003024 curproxy->timeout.tarpit = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003025 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003026 curproxy->timeout.tarpit = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003027 }
3028 if ((curproxy->cap & PR_CAP_BE) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003029 (!curproxy->timeout.queue ||
3030 curproxy->timeout.queue == defproxy.timeout.queue)) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003031 /* queue timeout not set. We search in the following order:
3032 * default.queue, curr.connect, default.connect.
3033 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003034 if (defproxy.timeout.queue)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003035 curproxy->timeout.queue = defproxy.timeout.queue;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003036 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003037 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003038 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003039 curproxy->timeout.queue = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003040 }
3041 }
3042
Christopher Faulete5870d82020-04-15 11:32:03 +02003043 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003044 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
3045 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003046 err_code |= ERR_WARN;
3047 }
3048
Willy Tarreau193b8c62012-11-22 00:17:38 +01003049 /* ensure that cookie capture length is not too large */
3050 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003051 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3052 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003053 err_code |= ERR_WARN;
3054 curproxy->capture_len = global.tune.cookie_len - 1;
3055 }
3056
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003057 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003058 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003059 curproxy->req_cap_pool = create_pool("ptrcap",
3060 curproxy->nb_req_cap * sizeof(char *),
3061 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003062 }
3063
3064 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003065 curproxy->rsp_cap_pool = create_pool("ptrcap",
3066 curproxy->nb_rsp_cap * sizeof(char *),
3067 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003068 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003069
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003070 switch (curproxy->load_server_state_from_file) {
3071 case PR_SRV_STATE_FILE_UNSPEC:
3072 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3073 break;
3074 case PR_SRV_STATE_FILE_GLOBAL:
3075 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003076 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",
3077 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003078 err_code |= ERR_WARN;
3079 }
3080 break;
3081 }
3082
Willy Tarreaubaaee002006-06-26 02:48:02 +02003083 /* first, we will invert the servers list order */
3084 newsrv = NULL;
3085 while (curproxy->srv) {
3086 struct server *next;
3087
3088 next = curproxy->srv->next;
3089 curproxy->srv->next = newsrv;
3090 newsrv = curproxy->srv;
3091 if (!next)
3092 break;
3093 curproxy->srv = next;
3094 }
3095
Willy Tarreau17edc812014-01-03 12:14:34 +01003096 /* Check that no server name conflicts. This causes trouble in the stats.
3097 * We only emit a warning for the first conflict affecting each server,
3098 * in order to avoid combinatory explosion if all servers have the same
3099 * name. We do that only for servers which do not have an explicit ID,
3100 * because these IDs were made also for distinguishing them and we don't
3101 * want to annoy people who correctly manage them.
3102 */
3103 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3104 struct server *other_srv;
3105
3106 if (newsrv->puid)
3107 continue;
3108
3109 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3110 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003111 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 +01003112 newsrv->conf.file, newsrv->conf.line,
3113 proxy_type_str(curproxy), curproxy->id,
3114 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003115 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003116 break;
3117 }
3118 }
3119 }
3120
Willy Tarreaudd701652010-05-25 23:03:02 +02003121 /* assign automatic UIDs to servers which don't have one yet */
3122 next_id = 1;
3123 newsrv = curproxy->srv;
3124 while (newsrv != NULL) {
3125 if (!newsrv->puid) {
3126 /* server ID not set, use automatic numbering with first
3127 * spare entry starting with next_svid.
3128 */
3129 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3130 newsrv->conf.id.key = newsrv->puid = next_id;
3131 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003132 newsrv->conf.name.key = newsrv->id;
3133 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003134 }
3135 next_id++;
3136 newsrv = newsrv->next;
3137 }
3138
Willy Tarreau20697042007-11-15 23:26:18 +01003139 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003140 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003141
Willy Tarreau62c3be22012-01-20 13:12:32 +01003142 /*
3143 * If this server supports a maxconn parameter, it needs a dedicated
3144 * tasks to fill the emptied slots when a connection leaves.
3145 * Also, resolve deferred tracking dependency if needed.
3146 */
3147 newsrv = curproxy->srv;
3148 while (newsrv != NULL) {
3149 if (newsrv->minconn > newsrv->maxconn) {
3150 /* Only 'minconn' was specified, or it was higher than or equal
3151 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3152 * this will avoid further useless expensive computations.
3153 */
3154 newsrv->maxconn = newsrv->minconn;
3155 } else if (newsrv->maxconn && !newsrv->minconn) {
3156 /* minconn was not specified, so we set it to maxconn */
3157 newsrv->minconn = newsrv->maxconn;
3158 }
3159
Willy Tarreau17d45382016-12-22 21:16:08 +01003160 /* this will also properly set the transport layer for prod and checks */
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003161 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 || (newsrv->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003162 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3163 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3164 }
Emeric Brun94324a42012-10-11 14:00:19 +02003165
Willy Tarreau034c88c2017-01-23 23:36:45 +01003166 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3167 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3168 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3169 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",
3170 newsrv->conf.file, newsrv->conf.line,
3171 proxy_type_str(curproxy), curproxy->id,
3172 newsrv->id);
3173
Willy Tarreau62c3be22012-01-20 13:12:32 +01003174 if (newsrv->trackit) {
3175 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003176 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003177 char *pname, *sname;
3178
3179 pname = newsrv->trackit;
3180 sname = strrchr(pname, '/');
3181
3182 if (sname)
3183 *sname++ = '\0';
3184 else {
3185 sname = pname;
3186 pname = NULL;
3187 }
3188
3189 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003190 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003191 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003192 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3193 proxy_type_str(curproxy), curproxy->id,
3194 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003195 cfgerr++;
3196 goto next_srv;
3197 }
3198 } else
3199 px = curproxy;
3200
3201 srv = findserver(px, sname);
3202 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003203 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3204 proxy_type_str(curproxy), curproxy->id,
3205 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003206 cfgerr++;
3207 goto next_srv;
3208 }
3209
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003210 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003211 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3212 "tracking as it does not have any check nor agent enabled.\n",
3213 proxy_type_str(curproxy), curproxy->id,
3214 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003215 cfgerr++;
3216 goto next_srv;
3217 }
3218
3219 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3220
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003221 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003222 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3223 "belongs to a tracking chain looping back to %s/%s.\n",
3224 proxy_type_str(curproxy), curproxy->id,
3225 newsrv->id, px->id, srv->id, px->id,
3226 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003227 cfgerr++;
3228 goto next_srv;
3229 }
3230
3231 if (curproxy != px &&
3232 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003233 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3234 "tracking: disable-on-404 option inconsistency.\n",
3235 proxy_type_str(curproxy), curproxy->id,
3236 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003237 cfgerr++;
3238 goto next_srv;
3239 }
3240
Willy Tarreau62c3be22012-01-20 13:12:32 +01003241 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003242 newsrv->tracknext = srv->trackers;
3243 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003244
3245 free(newsrv->trackit);
3246 newsrv->trackit = NULL;
3247 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003248
Willy Tarreau62c3be22012-01-20 13:12:32 +01003249 next_srv:
3250 newsrv = newsrv->next;
3251 }
3252
Olivier Houchard4e694042017-03-14 20:01:29 +01003253 /*
3254 * Try to generate dynamic cookies for servers now.
3255 * It couldn't be done earlier, since at the time we parsed
3256 * the server line, we may not have known yet that we
3257 * should use dynamic cookies, or the secret key may not
3258 * have been provided yet.
3259 */
3260 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3261 newsrv = curproxy->srv;
3262 while (newsrv != NULL) {
3263 srv_set_dyncookie(newsrv);
3264 newsrv = newsrv->next;
3265 }
3266
3267 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003268 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003269 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003270 */
3271
3272 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3273 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3274 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003275 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3276 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3277 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003278 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3279 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3280 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003281 } else {
3282 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3283 fwrr_init_server_groups(curproxy);
3284 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003285 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003286
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003287 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003288 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3289 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3290 fwlc_init_server_tree(curproxy);
3291 } else {
3292 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3293 fas_init_server_tree(curproxy);
3294 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003295 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003296
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003297 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003298 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3299 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3300 chash_init_server_tree(curproxy);
3301 } else {
3302 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3303 init_server_map(curproxy);
3304 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003305 break;
3306 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003307 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003308
3309 if (curproxy->options & PR_O_LOGASAP)
3310 curproxy->to_log &= ~LW_BYTES;
3311
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003312 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003313 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3314 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003315 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3316 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003317 err_code |= ERR_WARN;
3318 }
3319
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003320 if (curproxy->mode != PR_MODE_HTTP) {
3321 int optnum;
3322
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003323 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003324 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3325 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003326 err_code |= ERR_WARN;
3327 curproxy->uri_auth = NULL;
3328 }
3329
Willy Tarreaude7dc882017-03-10 11:49:21 +01003330 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003331 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3332 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003333 err_code |= ERR_WARN;
3334 }
3335
3336 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003337 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3338 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003339 err_code |= ERR_WARN;
3340 }
3341
3342 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003343 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3344 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003345 err_code |= ERR_WARN;
3346 }
3347
Willy Tarreaude7dc882017-03-10 11:49:21 +01003348 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003349 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3350 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003351 err_code |= ERR_WARN;
3352 }
3353
Willy Tarreau87cf5142011-08-19 22:57:24 +02003354 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003355 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3356 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003357 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003358 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003359 }
3360
3361 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003362 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3363 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003364 err_code |= ERR_WARN;
3365 curproxy->options &= ~PR_O_ORGTO;
3366 }
3367
3368 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3369 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3370 (curproxy->cap & cfg_opts[optnum].cap) &&
3371 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003372 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3373 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003374 err_code |= ERR_WARN;
3375 curproxy->options &= ~cfg_opts[optnum].val;
3376 }
3377 }
3378
3379 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3380 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3381 (curproxy->cap & cfg_opts2[optnum].cap) &&
3382 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003383 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3384 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003385 err_code |= ERR_WARN;
3386 curproxy->options2 &= ~cfg_opts2[optnum].val;
3387 }
3388 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003389
Willy Tarreau29fbe512015-08-20 19:35:14 +02003390#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003391 if (curproxy->conn_src.bind_hdr_occ) {
3392 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003393 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3394 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003395 err_code |= ERR_WARN;
3396 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003397#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003398 }
3399
Willy Tarreaubaaee002006-06-26 02:48:02 +02003400 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003401 * ensure that we're not cross-dressing a TCP server into HTTP.
3402 */
3403 newsrv = curproxy->srv;
3404 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003405 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003406 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3407 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003408 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003409 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003410
Willy Tarreau0cec3312011-10-31 13:49:26 +01003411 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003412 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3413 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003414 err_code |= ERR_WARN;
3415 }
3416
Willy Tarreauc93cd162014-05-13 15:54:22 +02003417 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003418 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3419 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003420 err_code |= ERR_WARN;
3421 }
3422
Willy Tarreau29fbe512015-08-20 19:35:14 +02003423#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003424 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3425 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003426 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3427 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003428 err_code |= ERR_WARN;
3429 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003430#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003431
Willy Tarreau46deab62018-04-28 07:18:15 +02003432 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3433 curproxy->options &= ~PR_O_REUSE_MASK;
3434
Willy Tarreau21d2af32008-02-14 20:25:24 +01003435 newsrv = newsrv->next;
3436 }
3437
Christopher Fauletd7c91962015-04-30 11:48:27 +02003438 /* Check filter configuration, if any */
3439 cfgerr += flt_check(curproxy);
3440
Willy Tarreauc1a21672009-08-16 22:37:44 +02003441 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003442 if (!curproxy->accept)
3443 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003444
Willy Tarreauc1a21672009-08-16 22:37:44 +02003445 if (curproxy->tcp_req.inspect_delay ||
3446 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003447 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003448
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003449 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003450 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003451 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003452 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003453
William Lallemandcf62f7e2018-10-26 14:47:40 +02003454 if (curproxy->mode == PR_MODE_CLI) {
3455 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3456 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3457 }
3458
Willy Tarreauc1a21672009-08-16 22:37:44 +02003459 /* both TCP and HTTP must check switching rules */
3460 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003461
3462 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003463 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003464 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3465 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 +01003466 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003467 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3468 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003469 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003470 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003471 }
3472
3473 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003474 if (curproxy->tcp_req.inspect_delay ||
3475 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3476 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3477
Emeric Brun97679e72010-09-23 17:56:44 +02003478 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3479 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3480
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003481 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003482 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003483 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003484 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003485
3486 /* If the backend does requires RDP cookie persistence, we have to
3487 * enable the corresponding analyser.
3488 */
3489 if (curproxy->options2 & PR_O2_RDPC_PRST)
3490 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003491
3492 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003493 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003494 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3495 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 +01003496 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003497 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3498 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003499 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003500 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003501 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003502
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003503 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003504 * attached to the current proxy */
3505 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3506 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003507 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003508
3509 if (!bind_conf->mux_proto)
3510 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003511
3512 /* it is possible that an incorrect mux was referenced
3513 * due to the proxy's mode not being taken into account
3514 * on first pass. Let's adjust it now.
3515 */
3516 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3517
3518 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003519 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3520 proxy_type_str(curproxy), curproxy->id,
3521 (int)bind_conf->mux_proto->token.len,
3522 bind_conf->mux_proto->token.ptr,
3523 bind_conf->arg, bind_conf->file, bind_conf->line);
3524 cfgerr++;
3525 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003526
3527 /* update the mux */
3528 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003529 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003530 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3531 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003532 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003533
3534 if (!newsrv->mux_proto)
3535 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003536
3537 /* it is possible that an incorrect mux was referenced
3538 * due to the proxy's mode not being taken into account
3539 * on first pass. Let's adjust it now.
3540 */
3541 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3542
3543 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003544 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3545 proxy_type_str(curproxy), curproxy->id,
3546 (int)newsrv->mux_proto->token.len,
3547 newsrv->mux_proto->token.ptr,
3548 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3549 cfgerr++;
3550 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003551
3552 /* update the mux */
3553 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003554 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003555
3556 /* initialize idle conns lists */
3557 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3558 int i;
3559
Willy Tarreauad37c7a2020-07-17 14:18:36 +02003560 newsrv->available_conns = calloc(global.nbthread, sizeof(*newsrv->available_conns));
Willy Tarreau835daa12019-02-07 14:46:29 +01003561
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003562 if (!newsrv->available_conns) {
Willy Tarreau835daa12019-02-07 14:46:29 +01003563 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003564 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau835daa12019-02-07 14:46:29 +01003565 cfgerr++;
3566 continue;
3567 }
3568
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003569 for (i = 0; i < global.nbthread; i++)
3570 LIST_INIT(&newsrv->available_conns[i]);
Willy Tarreau980855b2019-02-07 14:59:29 +01003571
3572 if (newsrv->max_idle_conns != 0) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003573 if (idle_conn_task == NULL) {
3574 idle_conn_task = task_new(MAX_THREADS_MASK);
3575 if (!idle_conn_task)
3576 goto err;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003577
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003578 idle_conn_task->process = srv_cleanup_idle_connections;
3579 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003580
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003581 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003582 idle_conns[i].cleanup_task = task_new(1UL << i);
3583 if (!idle_conns[i].cleanup_task)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003584 goto err;
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003585 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_connections;
3586 idle_conns[i].cleanup_task->context = NULL;
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003587 HA_SPIN_INIT(&idle_conns[i].takeover_lock);
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003588 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003589 }
3590 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003591
Willy Tarreau9b9c1742020-07-17 15:04:53 +02003592 newsrv->idle_conns = calloc((unsigned short)global.nbthread, sizeof(*newsrv->idle_conns));
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003593 if (!newsrv->idle_conns) {
3594 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3595 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3596 cfgerr++;
3597 continue;
3598 }
3599
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003600 for (i = 0; i < global.nbthread; i++)
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003601 MT_LIST_INIT(&newsrv->idle_conns[i]);
3602
Willy Tarreauad37c7a2020-07-17 14:18:36 +02003603 newsrv->safe_conns = calloc(global.nbthread, sizeof(*newsrv->safe_conns));
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003604 if (!newsrv->safe_conns) {
3605 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3606 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3607 cfgerr++;
3608 continue;
3609 }
3610
3611 for (i = 0; i < global.nbthread; i++)
3612 MT_LIST_INIT(&newsrv->safe_conns[i]);
3613
3614 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(int));
Olivier Houchardf1314812019-02-18 16:41:17 +01003615 if (!newsrv->curr_idle_thr)
3616 goto err;
Willy Tarreau980855b2019-02-07 14:59:29 +01003617 continue;
3618 err:
3619 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3620 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3621 cfgerr++;
3622 continue;
3623 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003624 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003625 }
3626
3627 /***********************************************************/
3628 /* At this point, target names have already been resolved. */
3629 /***********************************************************/
3630
3631 /* Check multi-process mode compatibility */
3632
3633 if (global.nbproc > 1 && global.stats_fe) {
3634 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3635 unsigned long mask;
3636
Willy Tarreau6daac192019-02-02 17:39:53 +01003637 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
3638 mask &= proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003639
3640 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003641 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003642 break;
3643 }
3644 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003645 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 +02003646 }
3647 }
3648
3649 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003650 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003651 if (curproxy->bind_proc)
3652 continue;
3653
3654 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3655 unsigned long mask;
3656
Willy Tarreau6daac192019-02-02 17:39:53 +01003657 mask = proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003658 curproxy->bind_proc |= mask;
3659 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003660 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003661 }
3662
3663 if (global.stats_fe) {
3664 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3665 unsigned long mask;
3666
Cyril Bonté06181952016-02-24 00:14:54 +01003667 mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003668 global.stats_fe->bind_proc |= mask;
3669 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003670 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003671 }
3672
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003673 /* propagate bindings from frontends to backends. Don't do it if there
3674 * are any fatal errors as we must not call it with unresolved proxies.
3675 */
3676 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003677 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003678 if (curproxy->cap & PR_CAP_FE)
3679 propagate_processes(curproxy, NULL);
3680 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003681 }
3682
3683 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003684 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3685 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003686
3687 /*******************************************************/
3688 /* At this step, all proxies have a non-null bind_proc */
3689 /*******************************************************/
3690
3691 /* perform the final checks before creating tasks */
3692
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003693 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003694 struct listener *listener;
3695 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003696
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003697 /* Configure SSL for each bind line.
3698 * Note: if configuration fails at some point, the ->ctx member
3699 * remains NULL so that listeners can later detach.
3700 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003701 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003702 if (bind_conf->xprt->prepare_bind_conf &&
3703 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003704 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003705 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003706
Willy Tarreaue6b98942007-10-29 01:09:36 +01003707 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003708 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003709 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003710 int nbproc;
3711
3712 nbproc = my_popcountl(curproxy->bind_proc &
Cyril Bonté4920d702016-04-15 07:58:43 +02003713 (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003714 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003715
3716 if (!nbproc) /* no intersection between listener and frontend */
3717 nbproc = 1;
3718
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003719 if (!listener->luid) {
3720 /* listener ID not set, use automatic numbering with first
3721 * spare entry starting with next_luid.
3722 */
3723 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3724 listener->conf.id.key = listener->luid = next_id;
3725 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003726 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003727 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003728
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003729 /* enable separate counters */
3730 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003731 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003732 if (!listener->name)
3733 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003734 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003735
Willy Tarreaue6b98942007-10-29 01:09:36 +01003736 if (curproxy->options & PR_O_TCP_NOLING)
3737 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003738 if (!listener->maxaccept)
3739 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3740
3741 /* we want to have an optimal behaviour on single process mode to
3742 * maximize the work at once, but in multi-process we want to keep
3743 * some fairness between processes, so we target half of the max
3744 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003745 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003746 * used to disable the limit.
3747 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003748 if (listener->maxaccept > 0 && nbproc > 1) {
3749 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003750 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3751 }
3752
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003753 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003754 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003755 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003756
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003757 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003758 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003759
Willy Tarreau620408f2016-10-21 16:37:51 +02003760 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3761 listener->options |= LI_O_TCP_L5_RULES;
3762
Willy Tarreaude3041d2010-05-31 10:56:17 +02003763 if (curproxy->mon_mask.s_addr)
3764 listener->options |= LI_O_CHK_MONNET;
3765
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003766 /* smart accept mode is automatic in HTTP mode */
3767 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003768 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003769 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3770 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003771 }
3772
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003773 /* Release unused SSL configs */
3774 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003775 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3776 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003777 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003778
Willy Tarreaua38a7172019-02-02 17:11:28 +01003779 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003780 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003781 int count, maxproc = 0;
3782
3783 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
David Carliere6c39412015-07-02 07:00:17 +00003784 count = my_popcountl(bind_conf->bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003785 if (count > maxproc)
3786 maxproc = count;
3787 }
3788 /* backends have 0, frontends have 1 or more */
3789 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003790 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3791 " limited to process assigned to the current request.\n",
3792 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003793
Willy Tarreau102df612014-05-07 23:56:38 +02003794 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003795 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3796 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003797 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003798 }
Willy Tarreau102df612014-05-07 23:56:38 +02003799 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003800 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3801 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003802 }
3803 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003804
3805 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003806 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003807 if (curproxy->task) {
3808 curproxy->task->context = curproxy;
3809 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003810 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003811 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3812 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003813 cfgerr++;
3814 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003815 }
3816
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003817 /*
3818 * Recount currently required checks.
3819 */
3820
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003821 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003822 int optnum;
3823
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003824 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3825 if (curproxy->options & cfg_opts[optnum].val)
3826 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003827
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003828 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3829 if (curproxy->options2 & cfg_opts2[optnum].val)
3830 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003831 }
3832
Willy Tarreau0fca4832015-05-01 19:12:05 +02003833 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003834 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003835 if (curproxy->table && curproxy->table->peers.p)
3836 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003837
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003838 /* compute the required process bindings for the peers from <stktables_list>
3839 * for all the stick-tables, the ones coming with "peers" sections included.
3840 */
3841 for (t = stktables_list; t; t = t->next) {
3842 struct proxy *p;
3843
3844 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3845 if (t->peers.p && t->peers.p->peers_fe) {
3846 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3847 }
3848 }
3849 }
3850
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003851 if (cfg_peers) {
3852 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003853 struct peer *p, *pb;
3854
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003855 /* In the case the peers frontend was not initialized by a
3856 stick-table used in the configuration, set its bind_proc
3857 by default to the first process. */
3858 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003859 if (curpeers->peers_fe) {
3860 if (curpeers->peers_fe->bind_proc == 0)
3861 curpeers->peers_fe->bind_proc = 1;
3862 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003863 curpeers = curpeers->next;
3864 }
3865
3866 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003867 /* Remove all peers sections which don't have a valid listener,
3868 * which are not used by any table, or which are bound to more
3869 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003870 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003871 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003872 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003873 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003874 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003875
3876 if (curpeers->state == PR_STSTOPPED) {
3877 /* the "disabled" keyword was present */
3878 if (curpeers->peers_fe)
3879 stop_proxy(curpeers->peers_fe);
3880 curpeers->peers_fe = NULL;
3881 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003882 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003883 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3884 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003885 if (curpeers->peers_fe)
3886 stop_proxy(curpeers->peers_fe);
3887 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003888 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003889 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003890 /* either it's totally stopped or too much used */
3891 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003892 ha_alert("Peers section '%s': peers referenced by sections "
3893 "running in different processes (%d different ones). "
3894 "Check global.nbproc and all tables' bind-process "
3895 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003896 cfgerr++;
3897 }
3898 stop_proxy(curpeers->peers_fe);
3899 curpeers->peers_fe = NULL;
3900 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003901 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003902 /* Initializes the transport layer of the server part of all the peers belonging to
3903 * <curpeers> section if required.
3904 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3905 * of an old process.
3906 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003907 p = curpeers->remote;
3908 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003909 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003910 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 +01003911 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3912 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003913 p = p->next;
3914 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003915 /* Configure the SSL bindings of the local peer if required. */
3916 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3917 struct list *l;
3918 struct bind_conf *bind_conf;
3919
3920 l = &curpeers->peers_fe->conf.bind;
3921 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3922 if (bind_conf->xprt->prepare_bind_conf &&
3923 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3924 cfgerr++;
3925 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003926 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02003927 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3928 curpeers->id);
3929 cfgerr++;
3930 break;
3931 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003932 last = &curpeers->next;
3933 continue;
3934 }
3935
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003936 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003937 p = curpeers->remote;
3938 while (p) {
3939 pb = p->next;
3940 free(p->id);
3941 free(p);
3942 p = pb;
3943 }
3944
3945 /* Destroy and unlink this curpeers section.
3946 * Note: curpeers is backed up into *last.
3947 */
3948 free(curpeers->id);
3949 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003950 /* Reset any refereance to this peers section in the list of stick-tables */
3951 for (t = stktables_list; t; t = t->next) {
3952 if (t->peers.p && t->peers.p == *last)
3953 t->peers.p = NULL;
3954 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003955 free(*last);
3956 *last = curpeers;
3957 }
3958 }
3959
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003960 for (t = stktables_list; t; t = t->next) {
3961 if (t->proxy)
3962 continue;
3963 if (!stktable_init(t)) {
3964 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
3965 cfgerr++;
3966 }
3967 }
3968
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003969 /* initialize stick-tables on backend capable proxies. This must not
3970 * be done earlier because the data size may be discovered while parsing
3971 * other proxies.
3972 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003973 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003974 if (curproxy->state == PR_STSTOPPED || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003975 continue;
3976
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003977 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003978 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003979 cfgerr++;
3980 }
3981 }
3982
Simon Horman0d16a402015-01-30 11:22:58 +09003983 if (mailers) {
3984 struct mailers *curmailers = mailers, **last;
3985 struct mailer *m, *mb;
3986
3987 /* Remove all mailers sections which don't have a valid listener.
3988 * This can happen when a mailers section is never referenced.
3989 */
3990 last = &mailers;
3991 while (*last) {
3992 curmailers = *last;
3993 if (curmailers->users) {
3994 last = &curmailers->next;
3995 continue;
3996 }
3997
Christopher Faulet767a84b2017-11-24 16:50:31 +01003998 ha_warning("Removing incomplete section 'mailers %s'.\n",
3999 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004000
4001 m = curmailers->mailer_list;
4002 while (m) {
4003 mb = m->next;
4004 free(m->id);
4005 free(m);
4006 m = mb;
4007 }
4008
4009 /* Destroy and unlink this curmailers section.
4010 * Note: curmailers is backed up into *last.
4011 */
4012 free(curmailers->id);
4013 curmailers = curmailers->next;
4014 free(*last);
4015 *last = curmailers;
4016 }
4017 }
4018
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004019 /* Update server_state_file_name to backend name if backend is supposed to use
4020 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004021 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004022 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4023 curproxy->server_state_file_name == NULL)
4024 curproxy->server_state_file_name = strdup(curproxy->id);
4025 }
4026
Ben Draut054fbee2018-04-13 15:43:04 -06004027 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
4028 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
4029 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
4030 curr_resolvers->id, curr_resolvers->conf.file,
4031 curr_resolvers->conf.line);
4032 err_code |= ERR_WARN;
4033 }
4034 }
4035
William Lallemand48b4bb42017-10-23 14:36:34 +02004036 list_for_each_entry(postparser, &postparsers, list) {
4037 if (postparser->func)
4038 cfgerr += postparser->func();
4039 }
4040
Willy Tarreaubb925012009-07-23 13:36:36 +02004041 if (cfgerr > 0)
4042 err_code |= ERR_ALERT | ERR_FATAL;
4043 out:
4044 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004045}
4046
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004047/*
4048 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4049 * parsing sessions.
4050 */
4051void cfg_register_keywords(struct cfg_kw_list *kwl)
4052{
4053 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
4054}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004055
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004056/*
4057 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4058 */
4059void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4060{
4061 LIST_DEL(&kwl->list);
4062 LIST_INIT(&kwl->list);
4063}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004064
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004065/* this function register new section in the haproxy configuration file.
4066 * <section_name> is the name of this new section and <section_parser>
4067 * is the called parser. If two section declaration have the same name,
4068 * only the first declared is used.
4069 */
4070int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004071 int (*section_parser)(const char *, int, char **, int),
4072 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004073{
4074 struct cfg_section *cs;
4075
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004076 list_for_each_entry(cs, &sections, list) {
4077 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004078 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004079 return 0;
4080 }
4081 }
4082
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004083 cs = calloc(1, sizeof(*cs));
4084 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004085 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004086 return 0;
4087 }
4088
4089 cs->section_name = section_name;
4090 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004091 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004092
4093 LIST_ADDQ(&sections, &cs->list);
4094
4095 return 1;
4096}
4097
William Lallemand48b4bb42017-10-23 14:36:34 +02004098/* this function register a new function which will be called once the haproxy
4099 * configuration file has been parsed. It's useful to check dependencies
4100 * between sections or to resolve items once everything is parsed.
4101 */
4102int cfg_register_postparser(char *name, int (*func)())
4103{
4104 struct cfg_postparser *cp;
4105
4106 cp = calloc(1, sizeof(*cp));
4107 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004108 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004109 return 0;
4110 }
4111 cp->name = name;
4112 cp->func = func;
4113
4114 LIST_ADDQ(&postparsers, &cp->list);
4115
4116 return 1;
4117}
4118
Willy Tarreaubaaee002006-06-26 02:48:02 +02004119/*
David Carlier845efb52015-09-25 11:49:18 +01004120 * free all config section entries
4121 */
4122void cfg_unregister_sections(void)
4123{
4124 struct cfg_section *cs, *ics;
4125
4126 list_for_each_entry_safe(cs, ics, &sections, list) {
4127 LIST_DEL(&cs->list);
4128 free(cs);
4129 }
4130}
4131
Christopher Faulet7110b402016-10-26 11:09:44 +02004132void cfg_backup_sections(struct list *backup_sections)
4133{
4134 struct cfg_section *cs, *ics;
4135
4136 list_for_each_entry_safe(cs, ics, &sections, list) {
4137 LIST_DEL(&cs->list);
4138 LIST_ADDQ(backup_sections, &cs->list);
4139 }
4140}
4141
4142void cfg_restore_sections(struct list *backup_sections)
4143{
4144 struct cfg_section *cs, *ics;
4145
4146 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4147 LIST_DEL(&cs->list);
4148 LIST_ADDQ(&sections, &cs->list);
4149 }
4150}
4151
Willy Tarreaue6552512018-11-26 11:33:13 +01004152/* these are the config sections handled by default */
4153REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4154REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4155REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4156REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4157REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4158REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4159REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4160REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4161REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4162REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004163
David Carlier845efb52015-09-25 11:49:18 +01004164/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004165 * Local variables:
4166 * c-indent-level: 8
4167 * c-basic-offset: 8
4168 * End:
4169 */