blob: de82a9fd3eb4be0c7326f4ea7321210435c956d3 [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) {
1879 ha_warning("parsing [%s:%d]: Stray NUL character at position %d. "
1880 "This will become a hard error in HAProxy 2.3.\n",
1881 file, linenum, (missing_lf + 1));
1882 err_code |= ERR_WARN;
1883 missing_lf = -1;
1884 }
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) {
2089 ha_warning("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d. "
2090 "This will become a hard error in HAProxy 2.3.\n",
2091 file, linenum, (missing_lf + 1));
2092 err_code |= ERR_WARN;
2093 }
2094
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002095 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002096 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002097
2098err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002099 free(cfg_scope);
2100 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002101 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002102 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002103 free(outline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002104 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002105 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002106}
2107
Willy Tarreau64ab6072014-09-16 12:17:36 +02002108/* This function propagates processes from frontend <from> to backend <to> so
2109 * that it is always guaranteed that a backend pointed to by a frontend is
2110 * bound to all of its processes. After that, if the target is a "listen"
2111 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002112 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002113 * checked first to ensure that <to> is already bound to all processes of
2114 * <from>, there is no risk of looping and we ensure to follow the shortest
2115 * path to the destination.
2116 *
2117 * It is possible to set <to> to NULL for the first call so that the function
2118 * takes care of visiting the initial frontend in <from>.
2119 *
2120 * It is important to note that the function relies on the fact that all names
2121 * have already been resolved.
2122 */
2123void propagate_processes(struct proxy *from, struct proxy *to)
2124{
2125 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002126
2127 if (to) {
2128 /* check whether we need to go down */
2129 if (from->bind_proc &&
2130 (from->bind_proc & to->bind_proc) == from->bind_proc)
2131 return;
2132
2133 if (!from->bind_proc && !to->bind_proc)
2134 return;
2135
2136 to->bind_proc = from->bind_proc ?
2137 (to->bind_proc | from->bind_proc) : 0;
2138
2139 /* now propagate down */
2140 from = to;
2141 }
2142
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002143 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002144 return;
2145
Willy Tarreauf6b70012014-12-18 14:00:43 +01002146 if (from->state == PR_STSTOPPED)
2147 return;
2148
Willy Tarreau64ab6072014-09-16 12:17:36 +02002149 /* default_backend */
2150 if (from->defbe.be)
2151 propagate_processes(from, from->defbe.be);
2152
2153 /* use_backend */
2154 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002155 if (rule->dynamic)
2156 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002157 to = rule->be.backend;
2158 propagate_processes(from, to);
2159 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002160}
2161
Willy Tarreaubb925012009-07-23 13:36:36 +02002162/*
2163 * Returns the error code, 0 if OK, or any combination of :
2164 * - ERR_ABORT: must abort ASAP
2165 * - ERR_FATAL: we can continue parsing but not start the service
2166 * - ERR_WARN: a warning has been emitted
2167 * - ERR_ALERT: an alert has been emitted
2168 * Only the two first ones can stop processing, the two others are just
2169 * indicators.
2170 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002171int check_config_validity()
2172{
2173 int cfgerr = 0;
2174 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002175 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002176 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002177 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002178 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002179 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002180 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002181 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002182 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002183
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002184 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002185 /*
2186 * Now, check for the integrity of all that we have collected.
2187 */
2188
2189 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002190 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002191
Willy Tarreau193b8c62012-11-22 00:17:38 +01002192 if (!global.tune.max_http_hdr)
2193 global.tune.max_http_hdr = MAX_HTTP_HDR;
2194
2195 if (!global.tune.cookie_len)
2196 global.tune.cookie_len = CAPTURE_LEN;
2197
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002198 if (!global.tune.requri_len)
2199 global.tune.requri_len = REQURI_LEN;
2200
Willy Tarreau149ab772019-01-26 14:27:06 +01002201 if (!global.nbthread) {
2202 /* nbthread not set, thus automatic. In this case, and only if
2203 * running on a single process, we enable the same number of
2204 * threads as the number of CPUs the process is bound to. This
2205 * allows to easily control the number of threads using taskset.
2206 */
2207 global.nbthread = 1;
2208#if defined(USE_THREAD)
2209 if (global.nbproc == 1)
2210 global.nbthread = thread_cpus_enabled_at_boot;
2211 all_threads_mask = nbits(global.nbthread);
2212#endif
2213 }
2214
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002215 if (global.nbproc > 1 && global.nbthread > 1) {
2216 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2217 err_code |= ERR_ALERT | ERR_FATAL;
2218 goto out;
2219 }
2220
Willy Tarreaubafbe012017-11-24 17:34:44 +01002221 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002222
Willy Tarreaubafbe012017-11-24 17:34:44 +01002223 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002224
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002225 /* Post initialisation of the users and groups lists. */
2226 err_code = userlist_postinit();
2227 if (err_code != ERR_NONE)
2228 goto out;
2229
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002230 /* first, we will invert the proxy list order */
2231 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002232 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002233 struct proxy *next;
2234
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002235 next = proxies_list->next;
2236 proxies_list->next = curproxy;
2237 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002238 if (!next)
2239 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002240 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002241 }
2242
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002243 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002244 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002245 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002246 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002247 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002248 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002249 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002250 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002251
Willy Tarreau050536d2012-10-04 08:47:34 +02002252 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002253 /* proxy ID not set, use automatic numbering with first
2254 * spare entry starting with next_pxid.
2255 */
2256 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2257 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2258 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002259 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002260 next_pxid++;
2261
Willy Tarreau55ea7572007-06-17 19:56:27 +02002262
Willy Tarreaubaaee002006-06-26 02:48:02 +02002263 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002264 /* ensure we don't keep listeners uselessly bound */
2265 stop_proxy(curproxy);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002266 if (curproxy->table) {
2267 free((void *)curproxy->table->peers.name);
2268 curproxy->table->peers.p = NULL;
2269 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002270 continue;
2271 }
2272
Willy Tarreau102df612014-05-07 23:56:38 +02002273 /* Check multi-process mode compatibility for the current proxy */
2274
2275 if (curproxy->bind_proc) {
2276 /* an explicit bind-process was specified, let's check how many
2277 * processes remain.
2278 */
David Carliere6c39412015-07-02 07:00:17 +00002279 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002280
Willy Tarreaua38a7172019-02-02 17:11:28 +01002281 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002282 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002283 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 +02002284 curproxy->bind_proc = 1;
2285 }
2286 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002287 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 +02002288 curproxy->bind_proc = 0;
2289 }
2290 }
2291
Willy Tarreau3d209582014-05-09 17:06:11 +02002292 /* check and reduce the bind-proc of each listener */
2293 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2294 unsigned long mask;
2295
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002296 /* HTTP frontends with "h2" as ALPN/NPN will work in
2297 * HTTP/2 and absolutely require buffers 16kB or larger.
2298 */
2299#ifdef USE_OPENSSL
2300 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2301#ifdef OPENSSL_NPN_NEGOTIATED
2302 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002303 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002304 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",
2305 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002306 cfgerr++;
2307 }
2308#endif
2309#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2310 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002311 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002312 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",
2313 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002314 cfgerr++;
2315 }
2316#endif
2317 } /* HTTP && bufsize < 16384 */
2318#endif
2319
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002320 /* detect and address thread affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002321 mask = thread_mask(bind_conf->bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002322 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002323 unsigned long new_mask = 0;
2324
2325 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002326 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002327 mask >>= global.nbthread;
2328 }
2329
Willy Tarreaua36b3242019-02-02 13:14:34 +01002330 bind_conf->bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002331 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",
2332 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2333 }
2334
2335 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002336 mask = proc_mask(bind_conf->bind_proc) & proc_mask(curproxy->bind_proc);
2337 if (!(mask & all_proc_mask)) {
2338 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
2339 nbproc = my_popcountl(bind_conf->bind_proc);
2340 bind_conf->bind_proc = proc_mask(bind_conf->bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002341
Willy Tarreaua36b3242019-02-02 13:14:34 +01002342 if (!bind_conf->bind_proc && nbproc == 1) {
2343 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",
2344 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2345 bind_conf->bind_proc = mask & ~(mask - 1);
2346 }
2347 else if (!bind_conf->bind_proc && nbproc > 1) {
2348 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",
2349 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2350 bind_conf->bind_proc = 0;
2351 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002352 }
2353 }
2354
Willy Tarreauff01a212009-03-15 13:46:16 +01002355 switch (curproxy->mode) {
2356 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002357 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002358 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002359 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2360 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002361 cfgerr++;
2362 }
2363
2364 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002365 ha_warning("config : servers will be ignored for %s '%s'.\n",
2366 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002367 break;
2368
2369 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002370 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002371 break;
2372
2373 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002374 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002375 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002376
2377 case PR_MODE_CLI:
2378 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2379 break;
Emeric Brun54932b42020-07-07 09:43:24 +02002380 case PR_MODE_SYSLOG:
2381 case PR_MODES:
2382 /* should not happen, bug gcc warn missing switch statement */
2383 ha_alert("config : %s '%s' cannot use syslog mode for this proxy.\n",
2384 proxy_type_str(curproxy), curproxy->id);
2385 cfgerr++;
2386 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002387 }
2388
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002389 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002390 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2391 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002392 err_code |= ERR_WARN;
2393 }
2394
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002395 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002396 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002397 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002398 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2399 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002400 cfgerr++;
2401 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002402#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002403 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002404 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2405 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002406 cfgerr++;
2407 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002408#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002409 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002410 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2411 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002412 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002413 }
2414 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002415 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002416 /* If no LB algo is set in a backend, and we're not in
2417 * transparent mode, dispatch mode nor proxy mode, we
2418 * want to use balance roundrobin by default.
2419 */
2420 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2421 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002422 }
2423 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002424
Willy Tarreau1620ec32011-08-06 17:05:02 +02002425 if (curproxy->options & PR_O_DISPATCH)
2426 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2427 else if (curproxy->options & PR_O_HTTP_PROXY)
2428 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2429 else if (curproxy->options & PR_O_TRANSP)
2430 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002431
Christopher Faulete5870d82020-04-15 11:32:03 +02002432 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2433 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2434 proxy_type_str(curproxy), curproxy->id);
2435 err_code |= ERR_WARN;
2436 }
2437
2438 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002439 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002440 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002441 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2442 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002443 err_code |= ERR_WARN;
2444 curproxy->options &= ~PR_O_DISABLE404;
2445 }
2446 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002447 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2448 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002449 err_code |= ERR_WARN;
2450 curproxy->options &= ~PR_O2_CHK_SNDST;
2451 }
Willy Tarreauef781042010-01-27 11:53:01 +01002452 }
2453
Simon Horman98637e52014-06-20 12:30:16 +09002454 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2455 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002456 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2457 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002458 cfgerr++;
2459 }
2460 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002461 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2462 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002463 cfgerr++;
2464 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002465 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2466 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2467 curproxy->id, "option external-check");
2468 err_code |= ERR_WARN;
2469 }
Simon Horman98637e52014-06-20 12:30:16 +09002470 }
2471
Simon Horman64e34162015-02-06 11:11:57 +09002472 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002473 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002474 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2475 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2476 "'email-alert myhostname', or 'email-alert to' "
2477 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2478 "to be present).\n",
2479 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002480 err_code |= ERR_WARN;
2481 free_email_alert(curproxy);
2482 }
2483 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002484 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002485 }
2486
Simon Horman98637e52014-06-20 12:30:16 +09002487 if (curproxy->check_command) {
2488 int clear = 0;
2489 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002490 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2491 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002492 err_code |= ERR_WARN;
2493 clear = 1;
2494 }
2495 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002496 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2497 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002498 cfgerr++;
2499 }
2500 if (clear) {
2501 free(curproxy->check_command);
2502 curproxy->check_command = NULL;
2503 }
2504 }
2505
2506 if (curproxy->check_path) {
2507 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002508 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2509 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002510 err_code |= ERR_WARN;
2511 free(curproxy->check_path);
2512 curproxy->check_path = NULL;
2513 }
2514 }
2515
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002516 /* if a default backend was specified, let's find it */
2517 if (curproxy->defbe.name) {
2518 struct proxy *target;
2519
Willy Tarreauafb39922015-05-26 12:04:09 +02002520 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002521 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002522 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2523 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002524 cfgerr++;
2525 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002526 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2527 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002528 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002529 } else if (target->mode != curproxy->mode &&
2530 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2531
Christopher Faulet767a84b2017-11-24 16:50:31 +01002532 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2533 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2534 curproxy->conf.file, curproxy->conf.line,
2535 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2536 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002537 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002538 } else {
2539 free(curproxy->defbe.name);
2540 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002541 /* Emit a warning if this proxy also has some servers */
2542 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002543 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2544 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002545 err_code |= ERR_WARN;
2546 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002547 }
2548 }
2549
Willy Tarreau55ea7572007-06-17 19:56:27 +02002550 /* find the target proxy for 'use_backend' rules */
2551 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002552 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002553 struct logformat_node *node;
2554 char *pxname;
2555
2556 /* Try to parse the string as a log format expression. If the result
2557 * of the parsing is only one entry containing a simple string, then
2558 * it's a standard string corresponding to a static rule, thus the
2559 * parsing is cancelled and be.name is restored to be resolved.
2560 */
2561 pxname = rule->be.name;
2562 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002563 curproxy->conf.args.ctx = ARGC_UBK;
2564 curproxy->conf.args.file = rule->file;
2565 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002566 err = NULL;
2567 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002568 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2569 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002570 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002571 cfgerr++;
2572 continue;
2573 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002574 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2575
2576 if (!LIST_ISEMPTY(&rule->be.expr)) {
2577 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2578 rule->dynamic = 1;
2579 free(pxname);
2580 continue;
2581 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002582 /* Only one element in the list, a simple string: free the expression and
2583 * fall back to static rule
2584 */
2585 LIST_DEL(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002586 free(node->arg);
2587 free(node);
2588 }
2589
2590 rule->dynamic = 0;
2591 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002592
Willy Tarreauafb39922015-05-26 12:04:09 +02002593 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002594 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002595 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2596 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002597 cfgerr++;
2598 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002599 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2600 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002601 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002602 } else if (target->mode != curproxy->mode &&
2603 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2604
Christopher Faulet767a84b2017-11-24 16:50:31 +01002605 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2606 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2607 curproxy->conf.file, curproxy->conf.line,
2608 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2609 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002610 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002611 } else {
2612 free((void *)rule->be.name);
2613 rule->be.backend = target;
2614 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002615 }
2616
Willy Tarreau64ab6072014-09-16 12:17:36 +02002617 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002618 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002619 struct server *target;
2620 struct logformat_node *node;
2621 char *server_name;
2622
2623 /* We try to parse the string as a log format expression. If the result of the parsing
2624 * is only one entry containing a single string, then it's a standard string corresponding
2625 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2626 */
2627 server_name = srule->srv.name;
2628 LIST_INIT(&srule->expr);
2629 curproxy->conf.args.ctx = ARGC_USRV;
2630 err = NULL;
2631 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2632 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2633 srule->file, srule->line, server_name, err);
2634 free(err);
2635 cfgerr++;
2636 continue;
2637 }
2638 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2639
2640 if (!LIST_ISEMPTY(&srule->expr)) {
2641 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2642 srule->dynamic = 1;
2643 free(server_name);
2644 continue;
2645 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002646 /* Only one element in the list, a simple string: free the expression and
2647 * fall back to static rule
2648 */
2649 LIST_DEL(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002650 free(node->arg);
2651 free(node);
2652 }
2653
2654 srule->dynamic = 0;
2655 srule->srv.name = server_name;
2656 target = findserver(curproxy, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002657
2658 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002659 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2660 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002661 cfgerr++;
2662 continue;
2663 }
2664 free((void *)srule->srv.name);
2665 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002666 }
2667
Emeric Brunb982a3d2010-01-04 15:45:53 +01002668 /* find the target table for 'stick' rules */
2669 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002670 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002671
Emeric Brun1d33b292010-01-04 15:47:17 +01002672 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2673 if (mrule->flags & STK_IS_STORE)
2674 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2675
Emeric Brunb982a3d2010-01-04 15:45:53 +01002676 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002677 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002678 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002679 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002680
2681 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002682 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002683 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002684 cfgerr++;
2685 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002686 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002687 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2688 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002689 cfgerr++;
2690 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002691 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002692 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2693 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002694 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002695 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002696 else {
2697 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002698 mrule->table.t = target;
2699 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002700 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002701 if (!in_proxies_list(target->proxies_list, curproxy)) {
2702 curproxy->next_stkt_ref = target->proxies_list;
2703 target->proxies_list = curproxy;
2704 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002705 }
2706 }
2707
2708 /* find the target table for 'store response' rules */
2709 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002710 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002711
Emeric Brun1d33b292010-01-04 15:47:17 +01002712 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2713
Emeric Brunb982a3d2010-01-04 15:45:53 +01002714 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002715 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002716 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002717 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002718
2719 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002720 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002721 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002722 cfgerr++;
2723 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002724 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002725 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2726 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002727 cfgerr++;
2728 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002729 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002730 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2731 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002732 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002733 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002734 else {
2735 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002736 mrule->table.t = target;
2737 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002738 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002739 if (!in_proxies_list(target->proxies_list, curproxy)) {
2740 curproxy->next_stkt_ref = target->proxies_list;
2741 target->proxies_list = curproxy;
2742 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002743 }
2744 }
2745
Christopher Faulete4e830d2017-09-18 14:51:41 +02002746 /* check validity for 'tcp-request' layer 4 rules */
2747 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2748 err = NULL;
2749 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002750 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002751 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002752 cfgerr++;
2753 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002754 }
2755
Christopher Faulete4e830d2017-09-18 14:51:41 +02002756 /* check validity for 'tcp-request' layer 5 rules */
2757 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2758 err = NULL;
2759 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002760 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002761 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002762 cfgerr++;
2763 }
2764 }
2765
Christopher Faulete4e830d2017-09-18 14:51:41 +02002766 /* check validity for 'tcp-request' layer 6 rules */
2767 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2768 err = NULL;
2769 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002770 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002771 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002772 cfgerr++;
2773 }
2774 }
2775
Christopher Faulete4e830d2017-09-18 14:51:41 +02002776 /* check validity for 'http-request' layer 7 rules */
2777 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2778 err = NULL;
2779 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002780 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002781 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002782 cfgerr++;
2783 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002784 }
2785
Christopher Faulete4e830d2017-09-18 14:51:41 +02002786 /* check validity for 'http-response' layer 7 rules */
2787 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2788 err = NULL;
2789 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002790 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002791 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002792 cfgerr++;
2793 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002794 }
2795
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002796 /* check validity for 'http-after-response' layer 7 rules */
2797 list_for_each_entry(arule, &curproxy->http_after_res_rules, list) {
2798 err = NULL;
2799 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
2800 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
2801 free(err);
2802 cfgerr++;
2803 }
2804 }
2805
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002806 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002807 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002808
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002809 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002810 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
2811 free((void *)curproxy->table->peers.name);
2812 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002813 break;
2814 }
2815 }
2816
2817 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002818 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002819 curproxy->id, curproxy->table->peers.name);
2820 free((void *)curproxy->table->peers.name);
2821 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002822 cfgerr++;
2823 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002824 else if (curpeers->state == PR_STSTOPPED) {
2825 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002826 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002827 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002828 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002829 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2830 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002831 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002832 cfgerr++;
2833 }
2834 }
2835
Simon Horman9dc49962015-01-30 11:22:59 +09002836
2837 if (curproxy->email_alert.mailers.name) {
2838 struct mailers *curmailers = mailers;
2839
2840 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002841 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002842 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002843 }
Simon Horman9dc49962015-01-30 11:22:59 +09002844 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002845 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2846 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002847 free_email_alert(curproxy);
2848 cfgerr++;
2849 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002850 else {
2851 err = NULL;
2852 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002853 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002854 free(err);
2855 cfgerr++;
2856 }
2857 }
Simon Horman9dc49962015-01-30 11:22:59 +09002858 }
2859
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002860 if (curproxy->uri_auth && curproxy->uri_auth != defproxy.uri_auth &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002861 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002862 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002863 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2864 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002865 cfgerr++;
2866 goto out_uri_auth_compat;
2867 }
2868
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002869 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
2870 (curproxy->uri_auth != defproxy.uri_auth ||
2871 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002872 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002873 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002874 int i = 0;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002875 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2876 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002877
2878 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002879 uri_auth_compat_req[i++] = "realm";
2880 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2881 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002882
Willy Tarreau95fa4692010-02-01 13:05:50 +01002883 uri_auth_compat_req[i++] = "unless";
2884 uri_auth_compat_req[i++] = "{";
2885 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2886 uri_auth_compat_req[i++] = "}";
2887 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002888
Willy Tarreauff011f22011-01-06 17:51:27 +01002889 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2890 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002891 cfgerr++;
2892 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002893 }
2894
Willy Tarreauff011f22011-01-06 17:51:27 +01002895 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002896
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002897 if (curproxy->uri_auth->auth_realm) {
2898 free(curproxy->uri_auth->auth_realm);
2899 curproxy->uri_auth->auth_realm = NULL;
2900 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002901 }
2902out_uri_auth_compat:
2903
Dragan Dosen43885c72015-10-01 13:18:13 +02002904 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002905 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002906 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2907 if (!curproxy->conf.logformat_sd_string) {
2908 /* set the default logformat_sd_string */
2909 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2910 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002911 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002912 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002913 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002914
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002915 /* compile the log format */
2916 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002917 if (curproxy->conf.logformat_string != default_http_log_format &&
2918 curproxy->conf.logformat_string != default_tcp_log_format &&
2919 curproxy->conf.logformat_string != clf_http_log_format)
2920 free(curproxy->conf.logformat_string);
2921 curproxy->conf.logformat_string = NULL;
2922 free(curproxy->conf.lfs_file);
2923 curproxy->conf.lfs_file = NULL;
2924 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002925
2926 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2927 free(curproxy->conf.logformat_sd_string);
2928 curproxy->conf.logformat_sd_string = NULL;
2929 free(curproxy->conf.lfsd_file);
2930 curproxy->conf.lfsd_file = NULL;
2931 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002932 }
2933
Willy Tarreau62a61232013-04-12 18:13:46 +02002934 if (curproxy->conf.logformat_string) {
2935 curproxy->conf.args.ctx = ARGC_LOG;
2936 curproxy->conf.args.file = curproxy->conf.lfs_file;
2937 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002938 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002939 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
2940 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002941 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002942 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
2943 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002944 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002945 cfgerr++;
2946 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002947 curproxy->conf.args.file = NULL;
2948 curproxy->conf.args.line = 0;
2949 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002950
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002951 if (curproxy->conf.logformat_sd_string) {
2952 curproxy->conf.args.ctx = ARGC_LOGSD;
2953 curproxy->conf.args.file = curproxy->conf.lfsd_file;
2954 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002955 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002956 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
2957 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002958 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002959 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2960 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002961 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002962 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002963 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002964 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2965 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002966 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002967 cfgerr++;
2968 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002969 curproxy->conf.args.file = NULL;
2970 curproxy->conf.args.line = 0;
2971 }
2972
Willy Tarreau62a61232013-04-12 18:13:46 +02002973 if (curproxy->conf.uniqueid_format_string) {
2974 curproxy->conf.args.ctx = ARGC_UIF;
2975 curproxy->conf.args.file = curproxy->conf.uif_file;
2976 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002977 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002978 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
2979 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES,
2980 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR
2981 : SMP_VAL_BE_HRQ_HDR,
2982 &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002983 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
2984 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002985 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002986 cfgerr++;
2987 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002988 curproxy->conf.args.file = NULL;
2989 curproxy->conf.args.line = 0;
2990 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002991
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002992 /* only now we can check if some args remain unresolved.
2993 * This must be done after the users and groups resolution.
2994 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002995 cfgerr += smp_resolve_args(curproxy);
2996 if (!cfgerr)
2997 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002998
Willy Tarreau2738a142006-07-08 17:28:09 +02002999 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003000 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003001 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003002 (!curproxy->timeout.connect ||
3003 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003004 ha_warning("config : missing timeouts for %s '%s'.\n"
3005 " | While not properly invalid, you will certainly encounter various problems\n"
3006 " | with such a configuration. To fix this, please ensure that all following\n"
3007 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3008 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003009 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003010 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003011
Willy Tarreau1fa31262007-12-03 00:36:16 +01003012 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3013 * We must still support older configurations, so let's find out whether those
3014 * parameters have been set or must be copied from contimeouts.
3015 */
3016 if (curproxy != &defproxy) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003017 if (!curproxy->timeout.tarpit ||
3018 curproxy->timeout.tarpit == defproxy.timeout.tarpit) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003019 /* tarpit timeout not set. We search in the following order:
3020 * default.tarpit, curr.connect, default.connect.
3021 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003022 if (defproxy.timeout.tarpit)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003023 curproxy->timeout.tarpit = defproxy.timeout.tarpit;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003024 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003025 curproxy->timeout.tarpit = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003026 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003027 curproxy->timeout.tarpit = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003028 }
3029 if ((curproxy->cap & PR_CAP_BE) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003030 (!curproxy->timeout.queue ||
3031 curproxy->timeout.queue == defproxy.timeout.queue)) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003032 /* queue timeout not set. We search in the following order:
3033 * default.queue, curr.connect, default.connect.
3034 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003035 if (defproxy.timeout.queue)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003036 curproxy->timeout.queue = defproxy.timeout.queue;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003037 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003038 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003039 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003040 curproxy->timeout.queue = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003041 }
3042 }
3043
Christopher Faulete5870d82020-04-15 11:32:03 +02003044 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003045 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
3046 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003047 err_code |= ERR_WARN;
3048 }
3049
Willy Tarreau193b8c62012-11-22 00:17:38 +01003050 /* ensure that cookie capture length is not too large */
3051 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003052 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3053 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003054 err_code |= ERR_WARN;
3055 curproxy->capture_len = global.tune.cookie_len - 1;
3056 }
3057
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003058 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003059 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003060 curproxy->req_cap_pool = create_pool("ptrcap",
3061 curproxy->nb_req_cap * sizeof(char *),
3062 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003063 }
3064
3065 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003066 curproxy->rsp_cap_pool = create_pool("ptrcap",
3067 curproxy->nb_rsp_cap * sizeof(char *),
3068 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003069 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003070
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003071 switch (curproxy->load_server_state_from_file) {
3072 case PR_SRV_STATE_FILE_UNSPEC:
3073 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3074 break;
3075 case PR_SRV_STATE_FILE_GLOBAL:
3076 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003077 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",
3078 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003079 err_code |= ERR_WARN;
3080 }
3081 break;
3082 }
3083
Willy Tarreaubaaee002006-06-26 02:48:02 +02003084 /* first, we will invert the servers list order */
3085 newsrv = NULL;
3086 while (curproxy->srv) {
3087 struct server *next;
3088
3089 next = curproxy->srv->next;
3090 curproxy->srv->next = newsrv;
3091 newsrv = curproxy->srv;
3092 if (!next)
3093 break;
3094 curproxy->srv = next;
3095 }
3096
Willy Tarreau17edc812014-01-03 12:14:34 +01003097 /* Check that no server name conflicts. This causes trouble in the stats.
3098 * We only emit a warning for the first conflict affecting each server,
3099 * in order to avoid combinatory explosion if all servers have the same
3100 * name. We do that only for servers which do not have an explicit ID,
3101 * because these IDs were made also for distinguishing them and we don't
3102 * want to annoy people who correctly manage them.
3103 */
3104 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3105 struct server *other_srv;
3106
3107 if (newsrv->puid)
3108 continue;
3109
3110 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3111 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003112 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 +01003113 newsrv->conf.file, newsrv->conf.line,
3114 proxy_type_str(curproxy), curproxy->id,
3115 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003116 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003117 break;
3118 }
3119 }
3120 }
3121
Willy Tarreaudd701652010-05-25 23:03:02 +02003122 /* assign automatic UIDs to servers which don't have one yet */
3123 next_id = 1;
3124 newsrv = curproxy->srv;
3125 while (newsrv != NULL) {
3126 if (!newsrv->puid) {
3127 /* server ID not set, use automatic numbering with first
3128 * spare entry starting with next_svid.
3129 */
3130 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3131 newsrv->conf.id.key = newsrv->puid = next_id;
3132 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003133 newsrv->conf.name.key = newsrv->id;
3134 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003135 }
3136 next_id++;
3137 newsrv = newsrv->next;
3138 }
3139
Willy Tarreau20697042007-11-15 23:26:18 +01003140 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003141 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003142
Willy Tarreau62c3be22012-01-20 13:12:32 +01003143 /*
3144 * If this server supports a maxconn parameter, it needs a dedicated
3145 * tasks to fill the emptied slots when a connection leaves.
3146 * Also, resolve deferred tracking dependency if needed.
3147 */
3148 newsrv = curproxy->srv;
3149 while (newsrv != NULL) {
3150 if (newsrv->minconn > newsrv->maxconn) {
3151 /* Only 'minconn' was specified, or it was higher than or equal
3152 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3153 * this will avoid further useless expensive computations.
3154 */
3155 newsrv->maxconn = newsrv->minconn;
3156 } else if (newsrv->maxconn && !newsrv->minconn) {
3157 /* minconn was not specified, so we set it to maxconn */
3158 newsrv->minconn = newsrv->maxconn;
3159 }
3160
Willy Tarreau17d45382016-12-22 21:16:08 +01003161 /* this will also properly set the transport layer for prod and checks */
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003162 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 || (newsrv->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003163 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3164 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3165 }
Emeric Brun94324a42012-10-11 14:00:19 +02003166
Willy Tarreau034c88c2017-01-23 23:36:45 +01003167 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3168 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3169 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3170 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",
3171 newsrv->conf.file, newsrv->conf.line,
3172 proxy_type_str(curproxy), curproxy->id,
3173 newsrv->id);
3174
Willy Tarreau62c3be22012-01-20 13:12:32 +01003175 if (newsrv->trackit) {
3176 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003177 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003178 char *pname, *sname;
3179
3180 pname = newsrv->trackit;
3181 sname = strrchr(pname, '/');
3182
3183 if (sname)
3184 *sname++ = '\0';
3185 else {
3186 sname = pname;
3187 pname = NULL;
3188 }
3189
3190 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003191 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003192 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003193 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3194 proxy_type_str(curproxy), curproxy->id,
3195 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003196 cfgerr++;
3197 goto next_srv;
3198 }
3199 } else
3200 px = curproxy;
3201
3202 srv = findserver(px, sname);
3203 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003204 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3205 proxy_type_str(curproxy), curproxy->id,
3206 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003207 cfgerr++;
3208 goto next_srv;
3209 }
3210
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003211 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003212 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3213 "tracking as it does not have any check nor agent enabled.\n",
3214 proxy_type_str(curproxy), curproxy->id,
3215 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003216 cfgerr++;
3217 goto next_srv;
3218 }
3219
3220 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3221
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003222 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003223 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3224 "belongs to a tracking chain looping back to %s/%s.\n",
3225 proxy_type_str(curproxy), curproxy->id,
3226 newsrv->id, px->id, srv->id, px->id,
3227 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003228 cfgerr++;
3229 goto next_srv;
3230 }
3231
3232 if (curproxy != px &&
3233 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003234 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3235 "tracking: disable-on-404 option inconsistency.\n",
3236 proxy_type_str(curproxy), curproxy->id,
3237 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003238 cfgerr++;
3239 goto next_srv;
3240 }
3241
Willy Tarreau62c3be22012-01-20 13:12:32 +01003242 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003243 newsrv->tracknext = srv->trackers;
3244 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003245
3246 free(newsrv->trackit);
3247 newsrv->trackit = NULL;
3248 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003249
Willy Tarreau62c3be22012-01-20 13:12:32 +01003250 next_srv:
3251 newsrv = newsrv->next;
3252 }
3253
Olivier Houchard4e694042017-03-14 20:01:29 +01003254 /*
3255 * Try to generate dynamic cookies for servers now.
3256 * It couldn't be done earlier, since at the time we parsed
3257 * the server line, we may not have known yet that we
3258 * should use dynamic cookies, or the secret key may not
3259 * have been provided yet.
3260 */
3261 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3262 newsrv = curproxy->srv;
3263 while (newsrv != NULL) {
3264 srv_set_dyncookie(newsrv);
3265 newsrv = newsrv->next;
3266 }
3267
3268 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003269 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003270 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003271 */
3272
3273 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3274 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3275 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003276 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3277 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3278 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003279 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3280 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3281 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003282 } else {
3283 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3284 fwrr_init_server_groups(curproxy);
3285 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003286 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003287
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003288 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003289 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3290 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3291 fwlc_init_server_tree(curproxy);
3292 } else {
3293 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3294 fas_init_server_tree(curproxy);
3295 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003296 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003297
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003298 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003299 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3300 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3301 chash_init_server_tree(curproxy);
3302 } else {
3303 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3304 init_server_map(curproxy);
3305 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003306 break;
3307 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003308 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003309
3310 if (curproxy->options & PR_O_LOGASAP)
3311 curproxy->to_log &= ~LW_BYTES;
3312
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003313 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003314 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3315 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003316 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3317 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003318 err_code |= ERR_WARN;
3319 }
3320
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003321 if (curproxy->mode != PR_MODE_HTTP) {
3322 int optnum;
3323
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003324 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003325 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3326 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003327 err_code |= ERR_WARN;
3328 curproxy->uri_auth = NULL;
3329 }
3330
Willy Tarreaude7dc882017-03-10 11:49:21 +01003331 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003332 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3333 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003334 err_code |= ERR_WARN;
3335 }
3336
3337 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003338 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3339 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003340 err_code |= ERR_WARN;
3341 }
3342
3343 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003344 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3345 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003346 err_code |= ERR_WARN;
3347 }
3348
Willy Tarreaude7dc882017-03-10 11:49:21 +01003349 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003350 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3351 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003352 err_code |= ERR_WARN;
3353 }
3354
Willy Tarreau87cf5142011-08-19 22:57:24 +02003355 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003356 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3357 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003358 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003359 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003360 }
3361
3362 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003363 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3364 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003365 err_code |= ERR_WARN;
3366 curproxy->options &= ~PR_O_ORGTO;
3367 }
3368
3369 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3370 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3371 (curproxy->cap & cfg_opts[optnum].cap) &&
3372 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003373 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3374 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003375 err_code |= ERR_WARN;
3376 curproxy->options &= ~cfg_opts[optnum].val;
3377 }
3378 }
3379
3380 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3381 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3382 (curproxy->cap & cfg_opts2[optnum].cap) &&
3383 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003384 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3385 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003386 err_code |= ERR_WARN;
3387 curproxy->options2 &= ~cfg_opts2[optnum].val;
3388 }
3389 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003390
Willy Tarreau29fbe512015-08-20 19:35:14 +02003391#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003392 if (curproxy->conn_src.bind_hdr_occ) {
3393 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003394 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3395 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003396 err_code |= ERR_WARN;
3397 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003398#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003399 }
3400
Willy Tarreaubaaee002006-06-26 02:48:02 +02003401 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003402 * ensure that we're not cross-dressing a TCP server into HTTP.
3403 */
3404 newsrv = curproxy->srv;
3405 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003406 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003407 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3408 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003409 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003410 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003411
Willy Tarreau0cec3312011-10-31 13:49:26 +01003412 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003413 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3414 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003415 err_code |= ERR_WARN;
3416 }
3417
Willy Tarreauc93cd162014-05-13 15:54:22 +02003418 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003419 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3420 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003421 err_code |= ERR_WARN;
3422 }
3423
Willy Tarreau29fbe512015-08-20 19:35:14 +02003424#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003425 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3426 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003427 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3428 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003429 err_code |= ERR_WARN;
3430 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003431#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003432
Willy Tarreau46deab62018-04-28 07:18:15 +02003433 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3434 curproxy->options &= ~PR_O_REUSE_MASK;
3435
Willy Tarreau21d2af32008-02-14 20:25:24 +01003436 newsrv = newsrv->next;
3437 }
3438
Christopher Fauletd7c91962015-04-30 11:48:27 +02003439 /* Check filter configuration, if any */
3440 cfgerr += flt_check(curproxy);
3441
Willy Tarreauc1a21672009-08-16 22:37:44 +02003442 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003443 if (!curproxy->accept)
3444 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003445
Willy Tarreauc1a21672009-08-16 22:37:44 +02003446 if (curproxy->tcp_req.inspect_delay ||
3447 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003448 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003449
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003450 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003451 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003452 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003453 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003454
William Lallemandcf62f7e2018-10-26 14:47:40 +02003455 if (curproxy->mode == PR_MODE_CLI) {
3456 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3457 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3458 }
3459
Willy Tarreauc1a21672009-08-16 22:37:44 +02003460 /* both TCP and HTTP must check switching rules */
3461 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003462
3463 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003464 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003465 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3466 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 +01003467 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003468 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3469 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003470 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003471 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003472 }
3473
3474 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003475 if (curproxy->tcp_req.inspect_delay ||
3476 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3477 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3478
Emeric Brun97679e72010-09-23 17:56:44 +02003479 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3480 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3481
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003482 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003483 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003484 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003485 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003486
3487 /* If the backend does requires RDP cookie persistence, we have to
3488 * enable the corresponding analyser.
3489 */
3490 if (curproxy->options2 & PR_O2_RDPC_PRST)
3491 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003492
3493 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003494 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003495 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3496 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 +01003497 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003498 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3499 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003500 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003501 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003502 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003503
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003504 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003505 * attached to the current proxy */
3506 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3507 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003508 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003509
3510 if (!bind_conf->mux_proto)
3511 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003512
3513 /* it is possible that an incorrect mux was referenced
3514 * due to the proxy's mode not being taken into account
3515 * on first pass. Let's adjust it now.
3516 */
3517 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3518
3519 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003520 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3521 proxy_type_str(curproxy), curproxy->id,
3522 (int)bind_conf->mux_proto->token.len,
3523 bind_conf->mux_proto->token.ptr,
3524 bind_conf->arg, bind_conf->file, bind_conf->line);
3525 cfgerr++;
3526 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003527
3528 /* update the mux */
3529 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003530 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003531 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3532 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003533 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003534
3535 if (!newsrv->mux_proto)
3536 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003537
3538 /* it is possible that an incorrect mux was referenced
3539 * due to the proxy's mode not being taken into account
3540 * on first pass. Let's adjust it now.
3541 */
3542 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3543
3544 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003545 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3546 proxy_type_str(curproxy), curproxy->id,
3547 (int)newsrv->mux_proto->token.len,
3548 newsrv->mux_proto->token.ptr,
3549 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3550 cfgerr++;
3551 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003552
3553 /* update the mux */
3554 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003555 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003556
3557 /* initialize idle conns lists */
3558 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3559 int i;
3560
Willy Tarreauad37c7a2020-07-17 14:18:36 +02003561 newsrv->available_conns = calloc(global.nbthread, sizeof(*newsrv->available_conns));
Willy Tarreau835daa12019-02-07 14:46:29 +01003562
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003563 if (!newsrv->available_conns) {
Willy Tarreau835daa12019-02-07 14:46:29 +01003564 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003565 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau835daa12019-02-07 14:46:29 +01003566 cfgerr++;
3567 continue;
3568 }
3569
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003570 for (i = 0; i < global.nbthread; i++)
3571 LIST_INIT(&newsrv->available_conns[i]);
Willy Tarreau980855b2019-02-07 14:59:29 +01003572
3573 if (newsrv->max_idle_conns != 0) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003574 if (idle_conn_task == NULL) {
3575 idle_conn_task = task_new(MAX_THREADS_MASK);
3576 if (!idle_conn_task)
3577 goto err;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003578
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003579 idle_conn_task->process = srv_cleanup_idle_connections;
3580 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003581
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003582 for (i = 0; i < global.nbthread; i++) {
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003583 idle_conns[i].cleanup_task = task_new(1UL << i);
3584 if (!idle_conns[i].cleanup_task)
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003585 goto err;
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003586 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_connections;
3587 idle_conns[i].cleanup_task->context = NULL;
Olivier Houchardf8f4c2e2020-06-29 20:15:59 +02003588 HA_SPIN_INIT(&idle_conns[i].takeover_lock);
Willy Tarreau4d82bf52020-06-28 00:19:17 +02003589 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003590 }
3591 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003592
Willy Tarreau9b9c1742020-07-17 15:04:53 +02003593 newsrv->idle_conns = calloc((unsigned short)global.nbthread, sizeof(*newsrv->idle_conns));
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003594 if (!newsrv->idle_conns) {
3595 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3596 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3597 cfgerr++;
3598 continue;
3599 }
3600
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003601 for (i = 0; i < global.nbthread; i++)
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003602 MT_LIST_INIT(&newsrv->idle_conns[i]);
3603
Willy Tarreauad37c7a2020-07-17 14:18:36 +02003604 newsrv->safe_conns = calloc(global.nbthread, sizeof(*newsrv->safe_conns));
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003605 if (!newsrv->safe_conns) {
3606 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3607 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3608 cfgerr++;
3609 continue;
3610 }
3611
3612 for (i = 0; i < global.nbthread; i++)
3613 MT_LIST_INIT(&newsrv->safe_conns[i]);
3614
3615 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(int));
Olivier Houchardf1314812019-02-18 16:41:17 +01003616 if (!newsrv->curr_idle_thr)
3617 goto err;
Willy Tarreau980855b2019-02-07 14:59:29 +01003618 continue;
3619 err:
3620 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3621 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3622 cfgerr++;
3623 continue;
3624 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003625 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003626 }
3627
3628 /***********************************************************/
3629 /* At this point, target names have already been resolved. */
3630 /***********************************************************/
3631
3632 /* Check multi-process mode compatibility */
3633
3634 if (global.nbproc > 1 && global.stats_fe) {
3635 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3636 unsigned long mask;
3637
Willy Tarreau6daac192019-02-02 17:39:53 +01003638 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
3639 mask &= proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003640
3641 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003642 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003643 break;
3644 }
3645 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003646 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 +02003647 }
3648 }
3649
3650 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003651 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003652 if (curproxy->bind_proc)
3653 continue;
3654
3655 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3656 unsigned long mask;
3657
Willy Tarreau6daac192019-02-02 17:39:53 +01003658 mask = proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003659 curproxy->bind_proc |= mask;
3660 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003661 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003662 }
3663
3664 if (global.stats_fe) {
3665 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3666 unsigned long mask;
3667
Cyril Bonté06181952016-02-24 00:14:54 +01003668 mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003669 global.stats_fe->bind_proc |= mask;
3670 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003671 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003672 }
3673
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003674 /* propagate bindings from frontends to backends. Don't do it if there
3675 * are any fatal errors as we must not call it with unresolved proxies.
3676 */
3677 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003678 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003679 if (curproxy->cap & PR_CAP_FE)
3680 propagate_processes(curproxy, NULL);
3681 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003682 }
3683
3684 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003685 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3686 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003687
3688 /*******************************************************/
3689 /* At this step, all proxies have a non-null bind_proc */
3690 /*******************************************************/
3691
3692 /* perform the final checks before creating tasks */
3693
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003694 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003695 struct listener *listener;
3696 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003697
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003698 /* Configure SSL for each bind line.
3699 * Note: if configuration fails at some point, the ->ctx member
3700 * remains NULL so that listeners can later detach.
3701 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003702 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003703 if (bind_conf->xprt->prepare_bind_conf &&
3704 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003705 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003706 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003707
Willy Tarreaue6b98942007-10-29 01:09:36 +01003708 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003709 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003710 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003711 int nbproc;
3712
3713 nbproc = my_popcountl(curproxy->bind_proc &
Cyril Bonté4920d702016-04-15 07:58:43 +02003714 (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003715 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003716
3717 if (!nbproc) /* no intersection between listener and frontend */
3718 nbproc = 1;
3719
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003720 if (!listener->luid) {
3721 /* listener ID not set, use automatic numbering with first
3722 * spare entry starting with next_luid.
3723 */
3724 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3725 listener->conf.id.key = listener->luid = next_id;
3726 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003727 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003728 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003729
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003730 /* enable separate counters */
3731 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003732 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003733 if (!listener->name)
3734 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003735 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003736
Willy Tarreaue6b98942007-10-29 01:09:36 +01003737 if (curproxy->options & PR_O_TCP_NOLING)
3738 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003739 if (!listener->maxaccept)
3740 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3741
3742 /* we want to have an optimal behaviour on single process mode to
3743 * maximize the work at once, but in multi-process we want to keep
3744 * some fairness between processes, so we target half of the max
3745 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003746 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003747 * used to disable the limit.
3748 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003749 if (listener->maxaccept > 0 && nbproc > 1) {
3750 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003751 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3752 }
3753
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003754 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003755 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003756 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003757
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003758 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003759 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003760
Willy Tarreau620408f2016-10-21 16:37:51 +02003761 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3762 listener->options |= LI_O_TCP_L5_RULES;
3763
Willy Tarreaude3041d2010-05-31 10:56:17 +02003764 if (curproxy->mon_mask.s_addr)
3765 listener->options |= LI_O_CHK_MONNET;
3766
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003767 /* smart accept mode is automatic in HTTP mode */
3768 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003769 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003770 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3771 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003772 }
3773
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003774 /* Release unused SSL configs */
3775 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003776 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3777 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003778 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003779
Willy Tarreaua38a7172019-02-02 17:11:28 +01003780 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003781 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003782 int count, maxproc = 0;
3783
3784 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
David Carliere6c39412015-07-02 07:00:17 +00003785 count = my_popcountl(bind_conf->bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003786 if (count > maxproc)
3787 maxproc = count;
3788 }
3789 /* backends have 0, frontends have 1 or more */
3790 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003791 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3792 " limited to process assigned to the current request.\n",
3793 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003794
Willy Tarreau102df612014-05-07 23:56:38 +02003795 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003796 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3797 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003798 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003799 }
Willy Tarreau102df612014-05-07 23:56:38 +02003800 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003801 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3802 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003803 }
3804 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003805
3806 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003807 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003808 if (curproxy->task) {
3809 curproxy->task->context = curproxy;
3810 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003811 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003812 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3813 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003814 cfgerr++;
3815 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003816 }
3817
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003818 /*
3819 * Recount currently required checks.
3820 */
3821
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003822 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003823 int optnum;
3824
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003825 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3826 if (curproxy->options & cfg_opts[optnum].val)
3827 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003828
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003829 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3830 if (curproxy->options2 & cfg_opts2[optnum].val)
3831 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003832 }
3833
Willy Tarreau0fca4832015-05-01 19:12:05 +02003834 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003835 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003836 if (curproxy->table && curproxy->table->peers.p)
3837 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003838
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003839 /* compute the required process bindings for the peers from <stktables_list>
3840 * for all the stick-tables, the ones coming with "peers" sections included.
3841 */
3842 for (t = stktables_list; t; t = t->next) {
3843 struct proxy *p;
3844
3845 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3846 if (t->peers.p && t->peers.p->peers_fe) {
3847 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3848 }
3849 }
3850 }
3851
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003852 if (cfg_peers) {
3853 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003854 struct peer *p, *pb;
3855
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003856 /* In the case the peers frontend was not initialized by a
3857 stick-table used in the configuration, set its bind_proc
3858 by default to the first process. */
3859 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003860 if (curpeers->peers_fe) {
3861 if (curpeers->peers_fe->bind_proc == 0)
3862 curpeers->peers_fe->bind_proc = 1;
3863 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003864 curpeers = curpeers->next;
3865 }
3866
3867 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003868 /* Remove all peers sections which don't have a valid listener,
3869 * which are not used by any table, or which are bound to more
3870 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003871 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003872 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003873 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003874 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003875 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003876
3877 if (curpeers->state == PR_STSTOPPED) {
3878 /* the "disabled" keyword was present */
3879 if (curpeers->peers_fe)
3880 stop_proxy(curpeers->peers_fe);
3881 curpeers->peers_fe = NULL;
3882 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003883 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003884 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3885 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003886 if (curpeers->peers_fe)
3887 stop_proxy(curpeers->peers_fe);
3888 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003889 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003890 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003891 /* either it's totally stopped or too much used */
3892 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003893 ha_alert("Peers section '%s': peers referenced by sections "
3894 "running in different processes (%d different ones). "
3895 "Check global.nbproc and all tables' bind-process "
3896 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003897 cfgerr++;
3898 }
3899 stop_proxy(curpeers->peers_fe);
3900 curpeers->peers_fe = NULL;
3901 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003902 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003903 /* Initializes the transport layer of the server part of all the peers belonging to
3904 * <curpeers> section if required.
3905 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3906 * of an old process.
3907 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003908 p = curpeers->remote;
3909 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003910 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003911 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 +01003912 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3913 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003914 p = p->next;
3915 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003916 /* Configure the SSL bindings of the local peer if required. */
3917 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3918 struct list *l;
3919 struct bind_conf *bind_conf;
3920
3921 l = &curpeers->peers_fe->conf.bind;
3922 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3923 if (bind_conf->xprt->prepare_bind_conf &&
3924 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3925 cfgerr++;
3926 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003927 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02003928 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3929 curpeers->id);
3930 cfgerr++;
3931 break;
3932 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003933 last = &curpeers->next;
3934 continue;
3935 }
3936
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003937 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003938 p = curpeers->remote;
3939 while (p) {
3940 pb = p->next;
3941 free(p->id);
3942 free(p);
3943 p = pb;
3944 }
3945
3946 /* Destroy and unlink this curpeers section.
3947 * Note: curpeers is backed up into *last.
3948 */
3949 free(curpeers->id);
3950 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003951 /* Reset any refereance to this peers section in the list of stick-tables */
3952 for (t = stktables_list; t; t = t->next) {
3953 if (t->peers.p && t->peers.p == *last)
3954 t->peers.p = NULL;
3955 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003956 free(*last);
3957 *last = curpeers;
3958 }
3959 }
3960
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003961 for (t = stktables_list; t; t = t->next) {
3962 if (t->proxy)
3963 continue;
3964 if (!stktable_init(t)) {
3965 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
3966 cfgerr++;
3967 }
3968 }
3969
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003970 /* initialize stick-tables on backend capable proxies. This must not
3971 * be done earlier because the data size may be discovered while parsing
3972 * other proxies.
3973 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003974 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003975 if (curproxy->state == PR_STSTOPPED || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003976 continue;
3977
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003978 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003979 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003980 cfgerr++;
3981 }
3982 }
3983
Simon Horman0d16a402015-01-30 11:22:58 +09003984 if (mailers) {
3985 struct mailers *curmailers = mailers, **last;
3986 struct mailer *m, *mb;
3987
3988 /* Remove all mailers sections which don't have a valid listener.
3989 * This can happen when a mailers section is never referenced.
3990 */
3991 last = &mailers;
3992 while (*last) {
3993 curmailers = *last;
3994 if (curmailers->users) {
3995 last = &curmailers->next;
3996 continue;
3997 }
3998
Christopher Faulet767a84b2017-11-24 16:50:31 +01003999 ha_warning("Removing incomplete section 'mailers %s'.\n",
4000 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004001
4002 m = curmailers->mailer_list;
4003 while (m) {
4004 mb = m->next;
4005 free(m->id);
4006 free(m);
4007 m = mb;
4008 }
4009
4010 /* Destroy and unlink this curmailers section.
4011 * Note: curmailers is backed up into *last.
4012 */
4013 free(curmailers->id);
4014 curmailers = curmailers->next;
4015 free(*last);
4016 *last = curmailers;
4017 }
4018 }
4019
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004020 /* Update server_state_file_name to backend name if backend is supposed to use
4021 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004022 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004023 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4024 curproxy->server_state_file_name == NULL)
4025 curproxy->server_state_file_name = strdup(curproxy->id);
4026 }
4027
Ben Draut054fbee2018-04-13 15:43:04 -06004028 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
4029 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
4030 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
4031 curr_resolvers->id, curr_resolvers->conf.file,
4032 curr_resolvers->conf.line);
4033 err_code |= ERR_WARN;
4034 }
4035 }
4036
William Lallemand48b4bb42017-10-23 14:36:34 +02004037 list_for_each_entry(postparser, &postparsers, list) {
4038 if (postparser->func)
4039 cfgerr += postparser->func();
4040 }
4041
Willy Tarreaubb925012009-07-23 13:36:36 +02004042 if (cfgerr > 0)
4043 err_code |= ERR_ALERT | ERR_FATAL;
4044 out:
4045 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004046}
4047
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004048/*
4049 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4050 * parsing sessions.
4051 */
4052void cfg_register_keywords(struct cfg_kw_list *kwl)
4053{
4054 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
4055}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004056
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004057/*
4058 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4059 */
4060void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4061{
4062 LIST_DEL(&kwl->list);
4063 LIST_INIT(&kwl->list);
4064}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004065
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004066/* this function register new section in the haproxy configuration file.
4067 * <section_name> is the name of this new section and <section_parser>
4068 * is the called parser. If two section declaration have the same name,
4069 * only the first declared is used.
4070 */
4071int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004072 int (*section_parser)(const char *, int, char **, int),
4073 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004074{
4075 struct cfg_section *cs;
4076
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004077 list_for_each_entry(cs, &sections, list) {
4078 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004079 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004080 return 0;
4081 }
4082 }
4083
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004084 cs = calloc(1, sizeof(*cs));
4085 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004086 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004087 return 0;
4088 }
4089
4090 cs->section_name = section_name;
4091 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004092 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004093
4094 LIST_ADDQ(&sections, &cs->list);
4095
4096 return 1;
4097}
4098
William Lallemand48b4bb42017-10-23 14:36:34 +02004099/* this function register a new function which will be called once the haproxy
4100 * configuration file has been parsed. It's useful to check dependencies
4101 * between sections or to resolve items once everything is parsed.
4102 */
4103int cfg_register_postparser(char *name, int (*func)())
4104{
4105 struct cfg_postparser *cp;
4106
4107 cp = calloc(1, sizeof(*cp));
4108 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004109 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004110 return 0;
4111 }
4112 cp->name = name;
4113 cp->func = func;
4114
4115 LIST_ADDQ(&postparsers, &cp->list);
4116
4117 return 1;
4118}
4119
Willy Tarreaubaaee002006-06-26 02:48:02 +02004120/*
David Carlier845efb52015-09-25 11:49:18 +01004121 * free all config section entries
4122 */
4123void cfg_unregister_sections(void)
4124{
4125 struct cfg_section *cs, *ics;
4126
4127 list_for_each_entry_safe(cs, ics, &sections, list) {
4128 LIST_DEL(&cs->list);
4129 free(cs);
4130 }
4131}
4132
Christopher Faulet7110b402016-10-26 11:09:44 +02004133void cfg_backup_sections(struct list *backup_sections)
4134{
4135 struct cfg_section *cs, *ics;
4136
4137 list_for_each_entry_safe(cs, ics, &sections, list) {
4138 LIST_DEL(&cs->list);
4139 LIST_ADDQ(backup_sections, &cs->list);
4140 }
4141}
4142
4143void cfg_restore_sections(struct list *backup_sections)
4144{
4145 struct cfg_section *cs, *ics;
4146
4147 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4148 LIST_DEL(&cs->list);
4149 LIST_ADDQ(&sections, &cs->list);
4150 }
4151}
4152
Willy Tarreaue6552512018-11-26 11:33:13 +01004153/* these are the config sections handled by default */
4154REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4155REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4156REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4157REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4158REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4159REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4160REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4161REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4162REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4163REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004164
David Carlier845efb52015-09-25 11:49:18 +01004165/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004166 * Local variables:
4167 * c-indent-level: 8
4168 * c-basic-offset: 8
4169 * End:
4170 */