blob: a9d863e2c3d76926895f48c0a5209a5d60a50f4d [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
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100136 if (ss2->ss_family == AF_INET || ss2->ss_family == AF_INET6) {
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100137 if (!port && !end) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200138 memprintf(err, "missing port number: '%s'\n", str);
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100139 goto fail;
Emeric Bruned760922010-10-22 17:59:25 +0200140 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200141
Willy Tarreau6d03cc32013-02-20 17:26:02 +0100142 if (!port || !end) {
143 memprintf(err, "port offsets are not allowed in 'bind': '%s'\n", str);
144 goto fail;
145 }
146
Emeric Bruned760922010-10-22 17:59:25 +0200147 if (port < 1 || port > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200148 memprintf(err, "invalid port '%d' specified for address '%s'.\n", port, str);
Emeric Bruned760922010-10-22 17:59:25 +0200149 goto fail;
150 }
151
152 if (end < 1 || end > 65535) {
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200153 memprintf(err, "invalid port '%d' specified for address '%s'.\n", end, str);
Emeric Bruned760922010-10-22 17:59:25 +0200154 goto fail;
155 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200156 }
Willy Tarreau40aa0702013-03-10 23:51:38 +0100157 else if (ss2->ss_family == AF_UNSPEC) {
158 socklen_t addr_len;
William Lallemand75ea0a02017-11-15 19:02:58 +0100159 inherited = 1;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100160
161 /* We want to attach to an already bound fd whose number
162 * is in the addr part of ss2 when cast to sockaddr_in.
163 * Note that by definition there is a single listener.
164 * We still have to determine the address family to
165 * register the correct protocol.
166 */
167 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
168 addr_len = sizeof(*ss2);
169 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
170 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
171 goto fail;
172 }
173
174 port = end = get_host_port(ss2);
William Lallemand2fe7dd02018-09-11 16:51:29 +0200175
176 } else if (ss2->ss_family == AF_CUST_SOCKPAIR) {
177 socklen_t addr_len;
178 inherited = 1;
179
180 fd = ((struct sockaddr_in *)ss2)->sin_addr.s_addr;
181 addr_len = sizeof(*ss2);
182 if (getsockname(fd, (struct sockaddr *)ss2, &addr_len) == -1) {
183 memprintf(err, "cannot use file descriptor '%d' : %s.\n", fd, strerror(errno));
184 goto fail;
185 }
186
187 ss2->ss_family = AF_CUST_SOCKPAIR; /* reassign AF_CUST_SOCKPAIR because of getsockname */
188 port = end = 0;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100189 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200190
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100191 /* OK the address looks correct */
William Lallemand75ea0a02017-11-15 19:02:58 +0100192 if (!create_listeners(bind_conf, ss2, port, end, fd, inherited, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200193 memprintf(err, "%s for address '%s'.\n", *err, str);
194 goto fail;
195 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200196 } /* end while(next) */
197 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200198 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200199 fail:
200 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200201 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200202}
203
William Lallemand6e62fb62015-04-28 16:55:23 +0200204/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100205 * Report an error in <msg> when there are too many arguments. This version is
206 * intended to be used by keyword parsers so that the message will be included
207 * into the general error message. The index is the current keyword in args.
208 * Return 0 if the number of argument is correct, otherwise build a message and
209 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
210 * message may also be null, it will simply not be produced (useful to check only).
211 * <msg> and <err_code> are only affected on error.
212 */
213int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
214{
215 int i;
216
217 if (!*args[index + maxarg + 1])
218 return 0;
219
220 if (msg) {
221 *msg = NULL;
222 memprintf(msg, "%s", args[0]);
223 for (i = 1; i <= index; i++)
224 memprintf(msg, "%s %s", *msg, args[i]);
225
226 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
227 }
228 if (err_code)
229 *err_code |= ERR_ALERT | ERR_FATAL;
230
231 return 1;
232}
233
234/*
235 * same as too_many_args_idx with a 0 index
236 */
237int too_many_args(int maxarg, char **args, char **msg, int *err_code)
238{
239 return too_many_args_idx(maxarg, 0, args, msg, err_code);
240}
241
242/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200243 * Report a fatal Alert when there is too much arguments
244 * The index is the current keyword in args
245 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
246 * Fill err_code with an ERR_ALERT and an ERR_FATAL
247 */
248int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
249{
250 char *kw = NULL;
251 int i;
252
253 if (!*args[index + maxarg + 1])
254 return 0;
255
256 memprintf(&kw, "%s", args[0]);
257 for (i = 1; i <= index; i++) {
258 memprintf(&kw, "%s %s", kw, args[i]);
259 }
260
Christopher Faulet767a84b2017-11-24 16:50:31 +0100261 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 +0200262 free(kw);
263 *err_code |= ERR_ALERT | ERR_FATAL;
264 return 1;
265}
266
267/*
268 * same as alertif_too_many_args_idx with a 0 index
269 */
270int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
271{
272 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
273}
274
Willy Tarreau61d18892009-03-31 10:49:21 +0200275
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100276/* Report it if a request ACL condition uses some keywords that are incompatible
277 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
278 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
279 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100280 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100281int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100282{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100283 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200284 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100285
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100286 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100287 return 0;
288
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100289 acl = acl_cond_conflicts(cond, where);
290 if (acl) {
291 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100292 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
293 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100294 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100295 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
296 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100297 return ERR_WARN;
298 }
299 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100300 return 0;
301
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100302 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100303 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
304 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100305 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100306 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
307 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100308 return ERR_WARN;
309}
310
Christopher Faulet62519022017-10-16 15:49:32 +0200311/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100312 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100313 * two such numbers delimited by a dash ('-'). On success, it returns
314 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200315 *
316 * Note: this function can also be used to parse a thread number or a set of
317 * threads.
318 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100319int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200320{
Christopher Faulet26028f62017-11-22 15:01:51 +0100321 if (autoinc) {
322 *autoinc = 0;
323 if (strncmp(arg, "auto:", 5) == 0) {
324 arg += 5;
325 *autoinc = 1;
326 }
327 }
328
Christopher Faulet62519022017-10-16 15:49:32 +0200329 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100330 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200331 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100332 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200333 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100334 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200335 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100336 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100337 unsigned int low, high;
338
Christopher Faulet18cca782019-02-07 16:29:41 +0100339 for (p = arg; *p; p++) {
340 if (*p == '-' && !dash)
341 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100342 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100343 memprintf(err, "'%s' is not a valid number/range.", arg);
344 return -1;
345 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100346 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100347
348 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100349 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100350 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100351
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100352 if (high < low) {
353 unsigned int swap = low;
354 low = high;
355 high = swap;
356 }
357
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100358 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100359 memprintf(err, "'%s' is not a valid number/range."
360 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100361 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100362 return 1;
363 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100364
365 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100366 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200367 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100368 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100369
Christopher Faulet5ab51772017-11-22 11:21:58 +0100370 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200371}
372
David Carlier7e351ee2017-12-01 09:14:02 +0000373#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200374/* Parse cpu sets. Each CPU set is either a unique number between 0 and
375 * <LONGBITS> or a range with two such numbers delimited by a dash
376 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
377 * returns 0. otherwise it returns 1 with an error message in <err>.
378 */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100379unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200380{
381 int cur_arg = 0;
382
383 *cpu_set = 0;
384 while (*args[cur_arg]) {
385 char *dash;
386 unsigned int low, high;
387
Willy Tarreau90807112020-02-25 08:16:33 +0100388 if (!isdigit((unsigned char)*args[cur_arg])) {
Christopher Faulet62519022017-10-16 15:49:32 +0200389 memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
390 return -1;
391 }
392
393 low = high = str2uic(args[cur_arg]);
394 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100395 high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
Christopher Faulet62519022017-10-16 15:49:32 +0200396
397 if (high < low) {
398 unsigned int swap = low;
399 low = high;
400 high = swap;
401 }
402
403 if (high >= LONGBITS) {
404 memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
405 return 1;
406 }
407
408 while (low <= high)
409 *cpu_set |= 1UL << low++;
410
411 cur_arg++;
412 }
413 return 0;
414}
David Carlier7e351ee2017-12-01 09:14:02 +0000415#endif
416
Willy Tarreau915e1eb2009-06-22 15:48:36 +0200417void init_default_instance()
Willy Tarreaubaaee002006-06-26 02:48:02 +0200418{
Willy Tarreau97cb7802010-01-03 20:23:58 +0100419 init_new_proxy(&defproxy);
Willy Tarreaubaaee002006-06-26 02:48:02 +0200420 defproxy.mode = PR_MODE_TCP;
421 defproxy.state = PR_STNEW;
422 defproxy.maxconn = cfg_maxpconn;
423 defproxy.conn_retries = CONN_RETRIES;
Joseph Lynch726ab712015-05-11 23:25:34 -0700424 defproxy.redispatch_after = 0;
Olivier Houchard86006a52018-12-14 19:37:49 +0100425 defproxy.options = PR_O_REUSE_SAFE;
Olivier Houcharda4d4fdf2018-12-14 19:27:06 +0100426 defproxy.max_out_conns = MAX_SRV_LIST;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100427
Simon Horman66183002013-02-23 10:16:43 +0900428 defproxy.defsrv.check.inter = DEF_CHKINTR;
429 defproxy.defsrv.check.fastinter = 0;
430 defproxy.defsrv.check.downinter = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900431 defproxy.defsrv.agent.inter = DEF_CHKINTR;
432 defproxy.defsrv.agent.fastinter = 0;
433 defproxy.defsrv.agent.downinter = 0;
Simon Horman58c32972013-11-25 10:46:38 +0900434 defproxy.defsrv.check.rise = DEF_RISETIME;
435 defproxy.defsrv.check.fall = DEF_FALLTIME;
436 defproxy.defsrv.agent.rise = DEF_AGENT_RISETIME;
437 defproxy.defsrv.agent.fall = DEF_AGENT_FALLTIME;
Willy Tarreau5b3a2022012-09-28 15:01:02 +0200438 defproxy.defsrv.check.port = 0;
Simon Hormand60d6912013-11-25 10:46:36 +0900439 defproxy.defsrv.agent.port = 0;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100440 defproxy.defsrv.maxqueue = 0;
441 defproxy.defsrv.minconn = 0;
442 defproxy.defsrv.maxconn = 0;
Willy Tarreau9c538e02019-01-23 10:21:49 +0100443 defproxy.defsrv.max_reuse = -1;
Olivier Houchard006e3102018-12-10 18:30:32 +0100444 defproxy.defsrv.max_idle_conns = -1;
Willy Tarreau975b1552019-06-06 16:25:55 +0200445 defproxy.defsrv.pool_purge_delay = 5000;
Krzysztof Piotr Oledzkic6df0662010-01-05 16:38:49 +0100446 defproxy.defsrv.slowstart = 0;
447 defproxy.defsrv.onerror = DEF_HANA_ONERR;
448 defproxy.defsrv.consecutive_errors_limit = DEF_HANA_ERRLIMIT;
449 defproxy.defsrv.uweight = defproxy.defsrv.iweight = 1;
Simon Horman64e34162015-02-06 11:11:57 +0900450
451 defproxy.email_alert.level = LOG_ALERT;
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +0200452 defproxy.load_server_state_from_file = PR_SRV_STATE_FILE_UNSPEC;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200453}
454
Frédéric Lécaille18251032019-01-11 11:07:15 +0100455/* Allocate and initialize the frontend of a "peers" section found in
456 * file <file> at line <linenum> with <id> as ID.
457 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200458 * Note that this function may be called from "default-server"
459 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100460 */
461static int init_peers_frontend(const char *file, int linenum,
462 const char *id, struct peers *peers)
463{
464 struct proxy *p;
465
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200466 if (peers->peers_fe) {
467 p = peers->peers_fe;
468 goto out;
469 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100470
Frédéric Lécaille18251032019-01-11 11:07:15 +0100471 p = calloc(1, sizeof *p);
472 if (!p) {
473 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
474 return -1;
475 }
476
477 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200478 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100479 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200480 /* Finally store this frontend. */
481 peers->peers_fe = p;
482
483 out:
484 if (id && !p->id)
485 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200486 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100487 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100488 if (linenum != -1)
489 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100490
491 return 0;
492}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100493
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100494/* Only change ->file, ->line and ->arg struct bind_conf member values
495 * if already present.
496 */
497static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
498 const char *file, int line,
499 const char *arg, struct xprt_ops *xprt)
500{
501 struct bind_conf *bind_conf;
502
503 if (!LIST_ISEMPTY(&p->conf.bind)) {
504 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
505 free(bind_conf->file);
506 bind_conf->file = strdup(file);
507 bind_conf->line = line;
508 if (arg) {
509 free(bind_conf->arg);
510 bind_conf->arg = strdup(arg);
511 }
512 }
513 else {
514 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
515 }
516
517 return bind_conf;
518}
519
520/*
521 * Allocate a new struct peer parsed at line <linenum> in file <file>
522 * to be added to <peers>.
523 * Returns the new allocated structure if succeeded, NULL if not.
524 */
525static struct peer *cfg_peers_add_peer(struct peers *peers,
526 const char *file, int linenum,
527 const char *id, int local)
528{
529 struct peer *p;
530
531 p = calloc(1, sizeof *p);
532 if (!p) {
533 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
534 return NULL;
535 }
536
537 /* the peers are linked backwards first */
538 peers->count++;
539 p->next = peers->remote;
540 peers->remote = p;
541 p->conf.file = strdup(file);
542 p->conf.line = linenum;
543 p->last_change = now.tv_sec;
544 p->xprt = xprt_get(XPRT_RAW);
545 p->sock_init_arg = NULL;
546 HA_SPIN_INIT(&p->lock);
547 if (id)
548 p->id = strdup(id);
549 if (local) {
550 p->local = 1;
551 peers->local = p;
552 }
553
554 return p;
555}
556
Willy Tarreaubaaee002006-06-26 02:48:02 +0200557/*
William Lallemand51097192015-04-14 16:35:22 +0200558 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200559 * Returns the error code, 0 if OK, or any combination of :
560 * - ERR_ABORT: must abort ASAP
561 * - ERR_FATAL: we can continue parsing but not start the service
562 * - ERR_WARN: a warning has been emitted
563 * - ERR_ALERT: an alert has been emitted
564 * Only the two first ones can stop processing, the two others are just
565 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200566 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200567int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
568{
569 static struct peers *curpeers = NULL;
570 struct peer *newpeer = NULL;
571 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200572 struct bind_conf *bind_conf;
573 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200574 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100575 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100576 static int bind_line, peer_line;
577
578 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
579 int cur_arg;
580 static int kws_dumped;
581 struct bind_conf *bind_conf;
582 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200583
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100584 cur_arg = 1;
585
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200586 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
587 err_code |= ERR_ALERT | ERR_ABORT;
588 goto out;
589 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100590
591 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
592 NULL, xprt_get(XPRT_RAW));
593 if (*args[0] == 'b') {
594 struct listener *l;
595
596 if (peer_line) {
597 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
598 err_code |= ERR_ALERT | ERR_FATAL;
599 goto out;
600 }
601
602 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
603 if (errmsg && *errmsg) {
604 indent_msg(&errmsg, 2);
605 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
606 }
607 else
608 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
609 file, linenum, args[0], args[1], args[2]);
610 err_code |= ERR_FATAL;
611 goto out;
612 }
613 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
614 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100615 l->accept = session_accept_fd;
616 l->analysers |= curpeers->peers_fe->fe_req_ana;
617 l->default_target = curpeers->peers_fe->default_target;
618 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100619 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100620
621 bind_line = 1;
622 if (cfg_peers->local) {
623 newpeer = cfg_peers->local;
624 }
625 else {
626 /* This peer is local.
627 * Note that we do not set the peer ID. This latter is initialized
628 * when parsing "peer" or "server" line.
629 */
630 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
631 if (!newpeer) {
632 err_code |= ERR_ALERT | ERR_ABORT;
633 goto out;
634 }
635 }
636 newpeer->addr = l->addr;
637 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
638 cur_arg++;
639 }
640
641 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
642 int ret;
643
644 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
645 err_code |= ret;
646 if (ret) {
647 if (errmsg && *errmsg) {
648 indent_msg(&errmsg, 2);
649 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
650 }
651 else
652 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
653 file, linenum, args[cur_arg]);
654 if (ret & ERR_FATAL)
655 goto out;
656 }
657 cur_arg += 1 + kw->skip;
658 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100659 if (*args[cur_arg] != 0) {
Tim Duesterhus04bcaa12019-05-12 22:54:50 +0200660 char *kws = NULL;
661
662 if (!kws_dumped) {
663 kws_dumped = 1;
664 bind_dump_kws(&kws);
665 indent_msg(&kws, 4);
666 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100667 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.%s%s\n",
668 file, linenum, args[cur_arg], cursection,
669 kws ? " Registered keywords :" : "", kws ? kws: "");
670 free(kws);
671 err_code |= ERR_ALERT | ERR_FATAL;
672 goto out;
673 }
674 }
675 else if (strcmp(args[0], "default-server") == 0) {
676 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
677 err_code |= ERR_ALERT | ERR_ABORT;
678 goto out;
679 }
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200680 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, 0, 1);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200681 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100682 else if (strcmp(args[0], "log") == 0) {
683 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
684 err_code |= ERR_ALERT | ERR_ABORT;
685 goto out;
686 }
687 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), &errmsg)) {
688 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
689 err_code |= ERR_ALERT | ERR_FATAL;
690 goto out;
691 }
692 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200693 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100694 /* Initialize these static variables when entering a new "peers" section*/
695 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100696 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100697 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100698 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100699 goto out;
700 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200701
William Lallemand6e62fb62015-04-28 16:55:23 +0200702 if (alertif_too_many_args(1, file, linenum, args, &err_code))
703 goto out;
704
Emeric Brun32da3c42010-09-23 18:39:19 +0200705 err = invalid_char(args[1]);
706 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100707 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
708 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100709 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100710 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200711 }
712
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200713 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200714 /*
715 * If there are two proxies with the same name only following
716 * combinations are allowed:
717 */
718 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100719 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
720 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200721 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200722 }
723 }
724
Vincent Bernat02779b62016-04-03 13:48:43 +0200725 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100726 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200727 err_code |= ERR_ALERT | ERR_ABORT;
728 goto out;
729 }
730
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200731 curpeers->next = cfg_peers;
732 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200733 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200734 curpeers->conf.line = linenum;
735 curpeers->last_change = now.tv_sec;
736 curpeers->id = strdup(args[1]);
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200737 curpeers->state = PR_STNEW;
Emeric Brun32da3c42010-09-23 18:39:19 +0200738 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200739 else if (strcmp(args[0], "peer") == 0 ||
740 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100741 int local_peer, peer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200742
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100743 peer = *args[0] == 'p';
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100744 local_peer = !strcmp(args[1], localpeer);
745 /* The local peer may have already partially been parsed on a "bind" line. */
746 if (*args[0] == 'p') {
747 if (bind_line) {
748 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
749 err_code |= ERR_ALERT | ERR_FATAL;
750 goto out;
751 }
752 peer_line = 1;
753 }
754 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
755 /* The local peer has already been initialized on a "bind" line.
756 * Let's use it and store its ID.
757 */
758 newpeer = cfg_peers->local;
759 newpeer->id = strdup(localpeer);
760 }
761 else {
762 if (local_peer && cfg_peers->local) {
763 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
764 file, linenum, args[0], args[1],
765 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
766 err_code |= ERR_FATAL;
767 goto out;
768 }
769 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
770 if (!newpeer) {
771 err_code |= ERR_ALERT | ERR_ABORT;
772 goto out;
773 }
774 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200775
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100776 /* Line number and peer ID are updated only if this peer is the local one. */
777 if (init_peers_frontend(file,
778 newpeer->local ? linenum: -1,
779 newpeer->local ? newpeer->id : NULL,
780 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200781 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100782 goto out;
783 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100784
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100785 /* This initializes curpeer->peers->peers_fe->srv.
786 * The server address is parsed only if we are parsing a "peer" line,
787 * or if we are parsing a "server" line and the current peer is not the local one.
788 */
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200789 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, peer || !local_peer, 1);
790 if (!curpeers->peers_fe->srv) {
791 /* Remove the newly allocated peer. */
792 if (newpeer != curpeers->local) {
793 struct peer *p;
794
795 p = curpeers->remote;
796 curpeers->remote = curpeers->remote->next;
797 free(p->id);
798 free(p);
799 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200800 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200801 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200802
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100803 /* If the peer address has just been parsed, let's copy it to <newpeer>
804 * and initializes ->proto.
805 */
806 if (peer || !local_peer) {
807 newpeer->addr = curpeers->peers_fe->srv->addr;
808 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
809 }
810
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100811 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200812 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100813 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200814
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100815 newpeer->srv = curpeers->peers_fe->srv;
816 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200817 goto out;
818
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100819 /* The lines above are reserved to "peer" lines. */
820 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200821 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200822
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100823 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 +0100824
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100825 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
826 if (errmsg && *errmsg) {
827 indent_msg(&errmsg, 2);
828 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 +0100829 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100830 else
831 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
832 file, linenum, args[0], args[1], args[2]);
833 err_code |= ERR_FATAL;
834 goto out;
835 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100836
837 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
838 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100839 l->accept = session_accept_fd;
840 l->analysers |= curpeers->peers_fe->fe_req_ana;
841 l->default_target = curpeers->peers_fe->default_target;
842 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100843 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100844 }
845 else if (!strcmp(args[0], "table")) {
846 struct stktable *t, *other;
847 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100848 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100849
850 /* Line number and peer ID are updated only if this peer is the local one. */
851 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
852 err_code |= ERR_ALERT | ERR_ABORT;
853 goto out;
854 }
855
856 other = stktable_find_by_name(args[1]);
857 if (other) {
858 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
859 file, linenum, args[1],
860 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
861 other->proxy ? other->id : other->peers.p->id,
862 other->conf.file, other->conf.line);
863 err_code |= ERR_ALERT | ERR_FATAL;
864 goto out;
865 }
866
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100867 /* Build the stick-table name, concatenating the "peers" section name
868 * followed by a '/' character and the table name argument.
869 */
870 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100871 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100872 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
873 file, linenum, args[0], args[1]);
874 err_code |= ERR_ALERT | ERR_FATAL;
875 goto out;
876 }
877
878 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100879 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100880 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
881 file, linenum, args[0], args[1]);
882 err_code |= ERR_ALERT | ERR_FATAL;
883 goto out;
884 }
885
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100886 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100887 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100888 if (!t || !id) {
889 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
890 file, linenum, args[0], args[1]);
891 err_code |= ERR_ALERT | ERR_FATAL;
892 goto out;
893 }
894
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100895 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100896 if (err_code & ERR_FATAL)
897 goto out;
898
899 stktable_store_name(t);
900 t->next = stktables_list;
901 stktables_list = t;
902 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200903 else if (!strcmp(args[0], "disabled")) { /* disables this peers section */
904 curpeers->state = PR_STSTOPPED;
905 }
906 else if (!strcmp(args[0], "enabled")) { /* enables this peers section (used to revert a disabled default) */
907 curpeers->state = PR_STNEW;
908 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200909 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100910 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200911 err_code |= ERR_ALERT | ERR_FATAL;
912 goto out;
913 }
914
915out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100916 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200917 return err_code;
918}
919
Baptiste Assmann325137d2015-04-13 23:40:55 +0200920/*
921 * Parse a <resolvers> section.
922 * Returns the error code, 0 if OK, or any combination of :
923 * - ERR_ABORT: must abort ASAP
924 * - ERR_FATAL: we can continue parsing but not start the service
925 * - ERR_WARN: a warning has been emitted
926 * - ERR_ALERT: an alert has been emitted
927 * Only the two first ones can stop processing, the two others are just
928 * indicators.
929 */
930int cfg_parse_resolvers(const char *file, int linenum, char **args, int kwm)
931{
932 static struct dns_resolvers *curr_resolvers = NULL;
933 struct dns_nameserver *newnameserver = NULL;
934 const char *err;
935 int err_code = 0;
936 char *errmsg = NULL;
937
938 if (strcmp(args[0], "resolvers") == 0) { /* new resolvers section */
939 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100940 ha_alert("parsing [%s:%d] : missing name for resolvers section.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200941 err_code |= ERR_ALERT | ERR_ABORT;
942 goto out;
943 }
944
945 err = invalid_char(args[1]);
946 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100947 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
948 file, linenum, *err, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200949 err_code |= ERR_ALERT | ERR_ABORT;
950 goto out;
951 }
952
953 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
954 /* Error if two resolvers owns the same name */
955 if (strcmp(curr_resolvers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100956 ha_alert("Parsing [%s:%d]: resolvers '%s' has same name as another resolvers (declared at %s:%d).\n",
957 file, linenum, args[1], curr_resolvers->conf.file, curr_resolvers->conf.line);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200958 err_code |= ERR_ALERT | ERR_ABORT;
959 }
960 }
961
Vincent Bernat02779b62016-04-03 13:48:43 +0200962 if ((curr_resolvers = calloc(1, sizeof(*curr_resolvers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100963 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200964 err_code |= ERR_ALERT | ERR_ABORT;
965 goto out;
966 }
967
968 /* default values */
969 LIST_ADDQ(&dns_resolvers, &curr_resolvers->list);
970 curr_resolvers->conf.file = strdup(file);
971 curr_resolvers->conf.line = linenum;
972 curr_resolvers->id = strdup(args[1]);
973 curr_resolvers->query_ids = EB_ROOT;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +0200974 /* default maximum response size */
975 curr_resolvers->accepted_payload_size = 512;
Baptiste Assmann987e16d2016-11-02 22:23:31 +0100976 /* default hold period for nx, other, refuse and timeout is 30s */
977 curr_resolvers->hold.nx = 30000;
978 curr_resolvers->hold.other = 30000;
979 curr_resolvers->hold.refused = 30000;
980 curr_resolvers->hold.timeout = 30000;
Baptiste Assmann686408b2017-08-18 10:15:42 +0200981 curr_resolvers->hold.obsolete = 0;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200982 /* default hold period for valid is 10s */
Baptiste Assmann4c5490a2015-07-14 21:42:49 +0200983 curr_resolvers->hold.valid = 10000;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200984 curr_resolvers->timeout.resolve = 1000;
985 curr_resolvers->timeout.retry = 1000;
Baptiste Assmann325137d2015-04-13 23:40:55 +0200986 curr_resolvers->resolve_retries = 3;
Christopher Faulet67957bd2017-09-27 11:00:59 +0200987 curr_resolvers->nb_nameservers = 0;
988 LIST_INIT(&curr_resolvers->nameservers);
989 LIST_INIT(&curr_resolvers->resolutions.curr);
990 LIST_INIT(&curr_resolvers->resolutions.wait);
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100991 HA_SPIN_INIT(&curr_resolvers->lock);
Baptiste Assmann325137d2015-04-13 23:40:55 +0200992 }
993 else if (strcmp(args[0], "nameserver") == 0) { /* nameserver definition */
994 struct sockaddr_storage *sk;
995 int port1, port2;
996 struct protocol *proto;
997
998 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100999 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1000 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001001 err_code |= ERR_ALERT | ERR_FATAL;
1002 goto out;
1003 }
1004
1005 err = invalid_char(args[1]);
1006 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001007 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1008 file, linenum, *err, args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001009 err_code |= ERR_ALERT | ERR_FATAL;
1010 goto out;
1011 }
1012
Christopher Faulet67957bd2017-09-27 11:00:59 +02001013 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
Baptiste Assmanna315c552015-11-02 22:55:49 +01001014 /* Error if two resolvers owns the same name */
1015 if (strcmp(newnameserver->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001016 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 -06001017 file, linenum, args[1], newnameserver->conf.file, newnameserver->conf.line);
Baptiste Assmanna315c552015-11-02 22:55:49 +01001018 err_code |= ERR_ALERT | ERR_FATAL;
1019 }
1020 }
1021
Vincent Bernat02779b62016-04-03 13:48:43 +02001022 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001023 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001024 err_code |= ERR_ALERT | ERR_ABORT;
1025 goto out;
1026 }
1027
1028 /* the nameservers are linked backward first */
Christopher Faulet67957bd2017-09-27 11:00:59 +02001029 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001030 newnameserver->resolvers = curr_resolvers;
1031 newnameserver->conf.file = strdup(file);
1032 newnameserver->conf.line = linenum;
1033 newnameserver->id = strdup(args[1]);
1034
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001035 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001036 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001037 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001038 err_code |= ERR_ALERT | ERR_FATAL;
1039 goto out;
1040 }
1041
1042 proto = protocol_by_family(sk->ss_family);
1043 if (!proto || !proto->connect) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001044 ha_alert("parsing [%s:%d] : '%s %s' : connect() not supported for this address family.\n",
Baptiste Assmann325137d2015-04-13 23:40:55 +02001045 file, linenum, args[0], args[1]);
1046 err_code |= ERR_ALERT | ERR_FATAL;
1047 goto out;
1048 }
1049
1050 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001051 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1052 file, linenum, args[0], args[1], args[2]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001053 err_code |= ERR_ALERT | ERR_FATAL;
1054 goto out;
1055 }
1056
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001057 if (!port1 && !port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001058 ha_alert("parsing [%s:%d] : '%s %s' : no UDP port specified\n",
1059 file, linenum, args[0], args[1]);
Baptiste Assmann7f43fa92016-01-21 00:59:46 +01001060 err_code |= ERR_ALERT | ERR_FATAL;
1061 goto out;
1062 }
1063
Baptiste Assmann325137d2015-04-13 23:40:55 +02001064 newnameserver->addr = *sk;
1065 }
Ben Draut44e609b2018-05-29 15:40:08 -06001066 else if (strcmp(args[0], "parse-resolv-conf") == 0) {
1067 const char *whitespace = "\r\n\t ";
1068 char *resolv_line = NULL;
1069 int resolv_linenum = 0;
1070 FILE *f = NULL;
1071 char *address = NULL;
1072 struct sockaddr_storage *sk = NULL;
1073 struct protocol *proto;
1074 int duplicate_name = 0;
1075
1076 if ((resolv_line = malloc(sizeof(*resolv_line) * LINESIZE)) == NULL) {
1077 ha_alert("parsing [%s:%d] : out of memory.\n",
1078 file, linenum);
1079 err_code |= ERR_ALERT | ERR_FATAL;
1080 goto resolv_out;
1081 }
1082
1083 if ((f = fopen("/etc/resolv.conf", "r")) == NULL) {
1084 ha_alert("parsing [%s:%d] : failed to open /etc/resolv.conf.\n",
1085 file, linenum);
1086 err_code |= ERR_ALERT | ERR_FATAL;
1087 goto resolv_out;
1088 }
1089
1090 sk = calloc(1, sizeof(*sk));
1091 if (sk == NULL) {
1092 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n",
1093 resolv_linenum);
1094 err_code |= ERR_ALERT | ERR_FATAL;
1095 goto resolv_out;
1096 }
1097
1098 while (fgets(resolv_line, LINESIZE, f) != NULL) {
1099 resolv_linenum++;
1100 if (strncmp(resolv_line, "nameserver", 10) != 0)
1101 continue;
1102
1103 address = strtok(resolv_line + 10, whitespace);
1104 if (address == resolv_line + 10)
1105 continue;
1106
1107 if (address == NULL) {
1108 ha_warning("parsing [/etc/resolv.conf:%d] : nameserver line is missing address.\n",
1109 resolv_linenum);
1110 err_code |= ERR_WARN;
1111 continue;
1112 }
1113
1114 duplicate_name = 0;
1115 list_for_each_entry(newnameserver, &curr_resolvers->nameservers, list) {
1116 if (strcmp(newnameserver->id, address) == 0) {
1117 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",
1118 resolv_linenum, address, newnameserver->conf.file, newnameserver->conf.line);
1119 err_code |= ERR_WARN;
1120 duplicate_name = 1;
1121 }
1122 }
1123
1124 if (duplicate_name)
1125 continue;
1126
1127 memset(sk, 0, sizeof(*sk));
Willy Tarreau78675252020-05-28 18:07:10 +02001128 if (!str2ip2(address, sk, 1)) {
1129 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 -06001130 resolv_linenum, address);
1131 err_code |= ERR_WARN;
1132 continue;
1133 }
1134
1135 set_host_port(sk, 53);
1136
1137 proto = protocol_by_family(sk->ss_family);
1138 if (!proto || !proto->connect) {
1139 ha_warning("parsing [/etc/resolv.conf:%d] : '%s' : connect() not supported for this address family.\n",
1140 resolv_linenum, address);
1141 err_code |= ERR_WARN;
1142 continue;
1143 }
1144
1145 if ((newnameserver = calloc(1, sizeof(*newnameserver))) == NULL) {
1146 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1147 err_code |= ERR_ALERT | ERR_FATAL;
1148 goto resolv_out;
1149 }
1150
1151 newnameserver->conf.file = strdup("/etc/resolv.conf");
1152 if (newnameserver->conf.file == NULL) {
1153 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1154 err_code |= ERR_ALERT | ERR_FATAL;
1155 goto resolv_out;
1156 }
1157
1158 newnameserver->id = strdup(address);
1159 if (newnameserver->id == NULL) {
1160 ha_alert("parsing [/etc/resolv.conf:%d] : out of memory.\n", resolv_linenum);
1161 err_code |= ERR_ALERT | ERR_FATAL;
1162 goto resolv_out;
1163 }
1164
1165 newnameserver->resolvers = curr_resolvers;
1166 newnameserver->conf.line = resolv_linenum;
1167 newnameserver->addr = *sk;
1168
1169 LIST_ADDQ(&curr_resolvers->nameservers, &newnameserver->list);
1170 }
1171
1172resolv_out:
1173 free(sk);
1174 free(resolv_line);
1175 if (f != NULL)
1176 fclose(f);
1177 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001178 else if (strcmp(args[0], "hold") == 0) { /* hold periods */
1179 const char *res;
1180 unsigned int time;
1181
1182 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001183 ha_alert("parsing [%s:%d] : '%s' expects an <event> and a <time> as arguments.\n",
1184 file, linenum, args[0]);
1185 ha_alert("<event> can be either 'valid', 'nx', 'refused', 'timeout', or 'other'\n");
Baptiste Assmann325137d2015-04-13 23:40:55 +02001186 err_code |= ERR_ALERT | ERR_FATAL;
1187 goto out;
1188 }
1189 res = parse_time_err(args[2], &time, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001190 if (res == PARSE_TIME_OVER) {
1191 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s>, maximum value is 2147483647 ms (~24.8 days).\n",
1192 file, linenum, args[1], args[0]);
1193 err_code |= ERR_ALERT | ERR_FATAL;
1194 goto out;
1195 }
1196 else if (res == PARSE_TIME_UNDER) {
1197 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s>, minimum non-null value is 1 ms.\n",
1198 file, linenum, args[1], args[0]);
1199 err_code |= ERR_ALERT | ERR_FATAL;
1200 goto out;
1201 }
1202 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001203 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
1204 file, linenum, *res, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001205 err_code |= ERR_ALERT | ERR_FATAL;
1206 goto out;
1207 }
Baptiste Assmann987e16d2016-11-02 22:23:31 +01001208 if (strcmp(args[1], "nx") == 0)
1209 curr_resolvers->hold.nx = time;
1210 else if (strcmp(args[1], "other") == 0)
1211 curr_resolvers->hold.other = time;
1212 else if (strcmp(args[1], "refused") == 0)
1213 curr_resolvers->hold.refused = time;
1214 else if (strcmp(args[1], "timeout") == 0)
1215 curr_resolvers->hold.timeout = time;
1216 else if (strcmp(args[1], "valid") == 0)
Baptiste Assmann325137d2015-04-13 23:40:55 +02001217 curr_resolvers->hold.valid = time;
Olivier Houcharda8c6db82017-07-06 18:46:47 +02001218 else if (strcmp(args[1], "obsolete") == 0)
1219 curr_resolvers->hold.obsolete = time;
Baptiste Assmann325137d2015-04-13 23:40:55 +02001220 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001221 ha_alert("parsing [%s:%d] : '%s' unknown <event>: '%s', expects either 'nx', 'timeout', 'valid', 'obsolete' or 'other'.\n",
1222 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001223 err_code |= ERR_ALERT | ERR_FATAL;
1224 goto out;
1225 }
1226
1227 }
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001228 else if (strcmp(args[0], "accepted_payload_size") == 0) {
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001229 int i = 0;
1230
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001231 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001232 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1233 file, linenum, args[0]);
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001234 err_code |= ERR_ALERT | ERR_FATAL;
1235 goto out;
1236 }
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001237
1238 i = atoi(args[1]);
Willy Tarreau0c219be2017-08-22 12:01:26 +02001239 if (i < DNS_HEADER_SIZE || i > DNS_MAX_UDP_MESSAGE) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001240 ha_alert("parsing [%s:%d] : '%s' must be between %d and %d inclusive (was %s).\n",
1241 file, linenum, args[0], DNS_HEADER_SIZE, DNS_MAX_UDP_MESSAGE, args[1]);
Baptiste Assmann9d8dbbc2017-08-18 23:35:08 +02001242 err_code |= ERR_ALERT | ERR_FATAL;
1243 goto out;
1244 }
1245
1246 curr_resolvers->accepted_payload_size = i;
Baptiste Assmann2af08fe2017-08-14 00:13:01 +02001247 }
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001248 else if (strcmp(args[0], "resolution_pool_size") == 0) {
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001249 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 +01001250 file, linenum, args[0]);
Tim Duesterhus3506dae2019-05-14 20:57:56 +02001251 err_code |= ERR_ALERT | ERR_FATAL;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001252 goto out;
Baptiste Assmann201c07f2017-05-22 15:17:15 +02001253 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001254 else if (strcmp(args[0], "resolve_retries") == 0) {
1255 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001256 ha_alert("parsing [%s:%d] : '%s' expects <nb> as argument.\n",
1257 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001258 err_code |= ERR_ALERT | ERR_FATAL;
1259 goto out;
1260 }
1261 curr_resolvers->resolve_retries = atoi(args[1]);
1262 }
1263 else if (strcmp(args[0], "timeout") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001264 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001265 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments.\n",
1266 file, linenum, args[0]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001267 err_code |= ERR_ALERT | ERR_FATAL;
1268 goto out;
1269 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001270 else if (strcmp(args[1], "retry") == 0 ||
1271 strcmp(args[1], "resolve") == 0) {
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001272 const char *res;
Christopher Faulet67957bd2017-09-27 11:00:59 +02001273 unsigned int tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001274
1275 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001276 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1277 file, linenum, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001278 err_code |= ERR_ALERT | ERR_FATAL;
1279 goto out;
1280 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001281 res = parse_time_err(args[2], &tout, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001282 if (res == PARSE_TIME_OVER) {
1283 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1284 file, linenum, args[2], args[0], args[1]);
1285 err_code |= ERR_ALERT | ERR_FATAL;
1286 goto out;
1287 }
1288 else if (res == PARSE_TIME_UNDER) {
1289 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1290 file, linenum, args[2], args[0], args[1]);
1291 err_code |= ERR_ALERT | ERR_FATAL;
1292 goto out;
1293 }
1294 else if (res) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001295 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1296 file, linenum, *res, args[0], args[1]);
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001297 err_code |= ERR_ALERT | ERR_FATAL;
1298 goto out;
1299 }
Christopher Faulet67957bd2017-09-27 11:00:59 +02001300 if (args[1][2] == 't')
1301 curr_resolvers->timeout.retry = tout;
1302 else
1303 curr_resolvers->timeout.resolve = tout;
Pieter Baauw7a91a0e2016-02-13 15:51:58 +01001304 }
1305 else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001306 ha_alert("parsing [%s:%d] : '%s' expects 'retry' or 'resolve' and <time> as arguments got '%s'.\n",
1307 file, linenum, args[0], args[1]);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001308 err_code |= ERR_ALERT | ERR_FATAL;
1309 goto out;
1310 }
Baptiste Assmann325137d2015-04-13 23:40:55 +02001311 } /* neither "nameserver" nor "resolvers" */
1312 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001313 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Baptiste Assmann325137d2015-04-13 23:40:55 +02001314 err_code |= ERR_ALERT | ERR_FATAL;
1315 goto out;
1316 }
1317
1318 out:
1319 free(errmsg);
1320 return err_code;
1321}
Simon Horman0d16a402015-01-30 11:22:58 +09001322
1323/*
William Lallemand51097192015-04-14 16:35:22 +02001324 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001325 * Returns the error code, 0 if OK, or any combination of :
1326 * - ERR_ABORT: must abort ASAP
1327 * - ERR_FATAL: we can continue parsing but not start the service
1328 * - ERR_WARN: a warning has been emitted
1329 * - ERR_ALERT: an alert has been emitted
1330 * Only the two first ones can stop processing, the two others are just
1331 * indicators.
1332 */
1333int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1334{
1335 static struct mailers *curmailers = NULL;
1336 struct mailer *newmailer = NULL;
1337 const char *err;
1338 int err_code = 0;
1339 char *errmsg = NULL;
1340
1341 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1342 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001343 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001344 err_code |= ERR_ALERT | ERR_ABORT;
1345 goto out;
1346 }
1347
1348 err = invalid_char(args[1]);
1349 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001350 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1351 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001352 err_code |= ERR_ALERT | ERR_ABORT;
1353 goto out;
1354 }
1355
1356 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1357 /*
1358 * If there are two proxies with the same name only following
1359 * combinations are allowed:
1360 */
1361 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001362 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1363 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001364 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001365 }
1366 }
1367
Vincent Bernat02779b62016-04-03 13:48:43 +02001368 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001369 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001370 err_code |= ERR_ALERT | ERR_ABORT;
1371 goto out;
1372 }
1373
1374 curmailers->next = mailers;
1375 mailers = curmailers;
1376 curmailers->conf.file = strdup(file);
1377 curmailers->conf.line = linenum;
1378 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001379 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1380 * But need enough time so that timeouts don't occur
1381 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001382 }
1383 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1384 struct sockaddr_storage *sk;
1385 int port1, port2;
1386 struct protocol *proto;
1387
1388 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001389 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1390 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001391 err_code |= ERR_ALERT | ERR_FATAL;
1392 goto out;
1393 }
1394
1395 err = invalid_char(args[1]);
1396 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001397 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1398 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001399 err_code |= ERR_ALERT | ERR_FATAL;
1400 goto out;
1401 }
1402
Vincent Bernat02779b62016-04-03 13:48:43 +02001403 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001404 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001405 err_code |= ERR_ALERT | ERR_ABORT;
1406 goto out;
1407 }
1408
1409 /* the mailers are linked backwards first */
1410 curmailers->count++;
1411 newmailer->next = curmailers->mailer_list;
1412 curmailers->mailer_list = newmailer;
1413 newmailer->mailers = curmailers;
1414 newmailer->conf.file = strdup(file);
1415 newmailer->conf.line = linenum;
1416
1417 newmailer->id = strdup(args[1]);
1418
Willy Tarreau48ef4c92017-01-06 18:32:38 +01001419 sk = str2sa_range(args[2], NULL, &port1, &port2, &errmsg, NULL, NULL, 1);
Simon Horman0d16a402015-01-30 11:22:58 +09001420 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001421 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001422 err_code |= ERR_ALERT | ERR_FATAL;
1423 goto out;
1424 }
1425
1426 proto = protocol_by_family(sk->ss_family);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09001427 if (!proto || !proto->connect || proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001428 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1429 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001430 err_code |= ERR_ALERT | ERR_FATAL;
1431 goto out;
1432 }
1433
1434 if (port1 != port2) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001435 ha_alert("parsing [%s:%d] : '%s %s' : port ranges and offsets are not allowed in '%s'\n",
1436 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001437 err_code |= ERR_ALERT | ERR_FATAL;
1438 goto out;
1439 }
1440
1441 if (!port1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001442 ha_alert("parsing [%s:%d] : '%s %s' : missing or invalid port in '%s'\n",
1443 file, linenum, args[0], args[1], args[2]);
Simon Horman0d16a402015-01-30 11:22:58 +09001444 err_code |= ERR_ALERT | ERR_FATAL;
1445 goto out;
1446 }
1447
1448 newmailer->addr = *sk;
1449 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001450 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001451 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001452 }
1453 else if (strcmp(args[0], "timeout") == 0) {
1454 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001455 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1456 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001457 err_code |= ERR_ALERT | ERR_FATAL;
1458 goto out;
1459 }
1460 else if (strcmp(args[1], "mail") == 0) {
1461 const char *res;
1462 unsigned int timeout_mail;
1463 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001464 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1465 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001466 err_code |= ERR_ALERT | ERR_FATAL;
1467 goto out;
1468 }
1469 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001470 if (res == PARSE_TIME_OVER) {
1471 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1472 file, linenum, args[2], args[0], args[1]);
1473 err_code |= ERR_ALERT | ERR_FATAL;
1474 goto out;
1475 }
1476 else if (res == PARSE_TIME_UNDER) {
1477 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1478 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001479 err_code |= ERR_ALERT | ERR_FATAL;
1480 goto out;
1481 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001482 else if (res) {
1483 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1484 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001485 err_code |= ERR_ALERT | ERR_FATAL;
1486 goto out;
1487 }
1488 curmailers->timeout.mail = timeout_mail;
1489 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001490 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001491 file, linenum, args[0], args[1]);
1492 err_code |= ERR_ALERT | ERR_FATAL;
1493 goto out;
1494 }
1495 }
Simon Horman0d16a402015-01-30 11:22:58 +09001496 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001497 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001498 err_code |= ERR_ALERT | ERR_FATAL;
1499 goto out;
1500 }
1501
1502out:
1503 free(errmsg);
1504 return err_code;
1505}
1506
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001507void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001508{
1509 free(p->email_alert.mailers.name);
1510 p->email_alert.mailers.name = NULL;
1511 free(p->email_alert.from);
1512 p->email_alert.from = NULL;
1513 free(p->email_alert.to);
1514 p->email_alert.to = NULL;
1515 free(p->email_alert.myhostname);
1516 p->email_alert.myhostname = NULL;
1517}
1518
Willy Tarreaubaaee002006-06-26 02:48:02 +02001519
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001520int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001521cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1522{
Willy Tarreaue5733232019-05-22 19:24:06 +02001523#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001524 const char *err;
1525 const char *item = args[0];
1526
1527 if (!strcmp(item, "namespace_list")) {
1528 return 0;
1529 }
1530 else if (!strcmp(item, "namespace")) {
1531 size_t idx = 1;
1532 const char *current;
1533 while (*(current = args[idx++])) {
1534 err = invalid_char(current);
1535 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001536 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1537 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001538 return ERR_ALERT | ERR_FATAL;
1539 }
1540
1541 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001542 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1543 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001544 return ERR_ALERT | ERR_FATAL;
1545 }
1546 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001547 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1548 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001549 return ERR_ALERT | ERR_FATAL;
1550 }
1551 }
1552 }
1553
1554 return 0;
1555#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001556 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1557 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001558 return ERR_ALERT | ERR_FATAL;
1559#endif
1560}
1561
1562int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001563cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1564{
1565
1566 int err_code = 0;
1567 const char *err;
1568
1569 if (!strcmp(args[0], "userlist")) { /* new userlist */
1570 struct userlist *newul;
1571
1572 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001573 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1574 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001575 err_code |= ERR_ALERT | ERR_FATAL;
1576 goto out;
1577 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001578 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1579 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001580
1581 err = invalid_char(args[1]);
1582 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001583 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1584 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001585 err_code |= ERR_ALERT | ERR_FATAL;
1586 goto out;
1587 }
1588
1589 for (newul = userlist; newul; newul = newul->next)
1590 if (!strcmp(newul->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001591 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1592 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001593 err_code |= ERR_WARN;
1594 goto out;
1595 }
1596
Vincent Bernat02779b62016-04-03 13:48:43 +02001597 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001598 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001599 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001600 err_code |= ERR_ALERT | ERR_ABORT;
1601 goto out;
1602 }
1603
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001604 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001605 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001606 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001607 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001608 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001609 goto out;
1610 }
1611
1612 newul->next = userlist;
1613 userlist = newul;
1614
1615 } else if (!strcmp(args[0], "group")) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001616 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001617 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001618 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001619
1620 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001621 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1622 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001623 err_code |= ERR_ALERT | ERR_FATAL;
1624 goto out;
1625 }
1626
1627 err = invalid_char(args[1]);
1628 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001629 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1630 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001631 err_code |= ERR_ALERT | ERR_FATAL;
1632 goto out;
1633 }
1634
William Lallemand4ac9f542015-05-28 18:03:51 +02001635 if (!userlist)
1636 goto out;
1637
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001638 for (ag = userlist->groups; ag; ag = ag->next)
1639 if (!strcmp(ag->name, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001640 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1641 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001642 err_code |= ERR_ALERT;
1643 goto out;
1644 }
1645
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001646 ag = calloc(1, sizeof(*ag));
1647 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001648 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001649 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001650 goto out;
1651 }
1652
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001653 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001654 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001655 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001656 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001657 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001658 goto out;
1659 }
1660
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001661 cur_arg = 2;
1662
1663 while (*args[cur_arg]) {
1664 if (!strcmp(args[cur_arg], "users")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001665 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001666 cur_arg += 2;
1667 continue;
1668 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001669 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1670 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001671 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001672 free(ag->groupusers);
1673 free(ag->name);
1674 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001675 goto out;
1676 }
1677 }
1678
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001679 ag->next = userlist->groups;
1680 userlist->groups = ag;
1681
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001682 } else if (!strcmp(args[0], "user")) { /* new user */
1683 struct auth_users *newuser;
1684 int cur_arg;
1685
1686 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001687 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1688 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001689 err_code |= ERR_ALERT | ERR_FATAL;
1690 goto out;
1691 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001692 if (!userlist)
1693 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001694
1695 for (newuser = userlist->users; newuser; newuser = newuser->next)
1696 if (!strcmp(newuser->user, args[1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001697 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1698 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001699 err_code |= ERR_ALERT;
1700 goto out;
1701 }
1702
Vincent Bernat02779b62016-04-03 13:48:43 +02001703 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001704 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001705 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001706 err_code |= ERR_ALERT | ERR_ABORT;
1707 goto out;
1708 }
1709
1710 newuser->user = strdup(args[1]);
1711
1712 newuser->next = userlist->users;
1713 userlist->users = newuser;
1714
1715 cur_arg = 2;
1716
1717 while (*args[cur_arg]) {
1718 if (!strcmp(args[cur_arg], "password")) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001719#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001720 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001721 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1722 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001723 err_code |= ERR_ALERT | ERR_FATAL;
1724 goto out;
1725 }
1726#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001727 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1728 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001729 err_code |= ERR_ALERT;
1730#endif
1731 newuser->pass = strdup(args[cur_arg + 1]);
1732 cur_arg += 2;
1733 continue;
1734 } else if (!strcmp(args[cur_arg], "insecure-password")) {
1735 newuser->pass = strdup(args[cur_arg + 1]);
1736 newuser->flags |= AU_O_INSECURE;
1737 cur_arg += 2;
1738 continue;
1739 } else if (!strcmp(args[cur_arg], "groups")) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001740 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001741 cur_arg += 2;
1742 continue;
1743 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001744 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1745 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001746 err_code |= ERR_ALERT | ERR_FATAL;
1747 goto out;
1748 }
1749 }
1750 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001751 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 +01001752 err_code |= ERR_ALERT | ERR_FATAL;
1753 }
1754
1755out:
1756 return err_code;
1757}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001758
Christopher Faulet79bdef32016-11-04 22:36:15 +01001759int
1760cfg_parse_scope(const char *file, int linenum, char *line)
1761{
1762 char *beg, *end, *scope = NULL;
1763 int err_code = 0;
1764 const char *err;
1765
1766 beg = line + 1;
1767 end = strchr(beg, ']');
1768
1769 /* Detect end of scope declaration */
1770 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001771 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1772 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001773 err_code |= ERR_ALERT | ERR_FATAL;
1774 goto out;
1775 }
1776
1777 /* Get scope name and check its validity */
1778 scope = my_strndup(beg, end-beg);
1779 err = invalid_char(scope);
1780 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001781 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1782 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001783 err_code |= ERR_ALERT | ERR_ABORT;
1784 goto out;
1785 }
1786
1787 /* Be sure to have a scope declaration alone on its line */
1788 line = end+1;
1789 while (isspace((unsigned char)*line))
1790 line++;
1791 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001792 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1793 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001794 err_code |= ERR_ALERT | ERR_ABORT;
1795 goto out;
1796 }
1797
1798 /* We have a valid scope declaration, save it */
1799 free(cfg_scope);
1800 cfg_scope = scope;
1801 scope = NULL;
1802
1803 out:
1804 free(scope);
1805 return err_code;
1806}
1807
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001808int
1809cfg_parse_track_sc_num(unsigned int *track_sc_num,
1810 const char *arg, const char *end, char **errmsg)
1811{
1812 const char *p;
1813 unsigned int num;
1814
1815 p = arg;
1816 num = read_uint64(&arg, end);
1817
1818 if (arg != end) {
1819 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1820 return -1;
1821 }
1822
1823 if (num >= MAX_SESS_STKCTR) {
1824 memprintf(errmsg, "%u track-sc number exceeding "
1825 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1826 return -1;
1827 }
1828
1829 *track_sc_num = num;
1830 return 0;
1831}
1832
Willy Tarreaubaaee002006-06-26 02:48:02 +02001833/*
1834 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001835 * Returns the error code, 0 if OK, or any combination of :
1836 * - ERR_ABORT: must abort ASAP
1837 * - ERR_FATAL: we can continue parsing but not start the service
1838 * - ERR_WARN: a warning has been emitted
1839 * - ERR_ALERT: an alert has been emitted
1840 * Only the two first ones can stop processing, the two others are just
1841 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001842 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001843int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001844{
William Lallemand64e84512015-05-12 14:25:37 +02001845 char *thisline;
1846 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001847 FILE *f;
1848 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001849 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001850 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001851 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001852 int readbytes = 0;
1853
1854 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001855 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001856 return -1;
1857 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001858
David Carlier97880bb2016-04-08 10:35:26 +01001859 if ((f=fopen(file,"r")) == NULL) {
1860 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001861 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001862 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001863
William Lallemandb2f07452015-05-12 14:27:13 +02001864next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001865 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001866 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001867 char *end;
1868 char *args[MAX_LINE_ARGS + 1];
1869 char *line = thisline;
William Lallemandf9873ba2015-05-05 17:37:14 +02001870 int dquote = 0; /* double quote */
1871 int squote = 0; /* simple quote */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001872
Willy Tarreaubaaee002006-06-26 02:48:02 +02001873 linenum++;
1874
1875 end = line + strlen(line);
1876
William Lallemand64e84512015-05-12 14:25:37 +02001877 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001878 /* Check if we reached the limit and the last char is not \n.
1879 * Watch out for the last line without the terminating '\n'!
1880 */
William Lallemand64e84512015-05-12 14:25:37 +02001881 char *newline;
1882 int newlinesize = linesize * 2;
1883
1884 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1885 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001886 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1887 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001888 err_code |= ERR_ALERT | ERR_FATAL;
1889 continue;
1890 }
1891
1892 readbytes = linesize - 1;
1893 linesize = newlinesize;
1894 thisline = newline;
1895 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001896 }
1897
William Lallemand64e84512015-05-12 14:25:37 +02001898 readbytes = 0;
1899
Willy Tarreaubaaee002006-06-26 02:48:02 +02001900 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001901 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001902 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001903
Christopher Faulet79bdef32016-11-04 22:36:15 +01001904
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001905 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001906 err_code |= cfg_parse_scope(file, linenum, line);
1907 goto next_line;
1908 }
1909
Willy Tarreaubaaee002006-06-26 02:48:02 +02001910 arg = 0;
1911 args[arg] = line;
1912
1913 while (*line && arg < MAX_LINE_ARGS) {
William Lallemandf9873ba2015-05-05 17:37:14 +02001914 if (*line == '"' && !squote) { /* double quote outside single quotes */
1915 if (dquote)
1916 dquote = 0;
1917 else
1918 dquote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001919 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001920 end--;
1921 }
1922 else if (*line == '\'' && !dquote) { /* single quote outside double quotes */
1923 if (squote)
1924 squote = 0;
1925 else
1926 squote = 1;
William Lallemand3f415602015-05-12 14:01:09 +02001927 memmove(line, line + 1, end - line);
William Lallemandf9873ba2015-05-05 17:37:14 +02001928 end--;
1929 }
1930 else if (*line == '\\' && !squote) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001931 /* first, we'll replace \\, \<space>, \#, \r, \n, \t, \xXX with their
1932 * C equivalent value. Other combinations left unchanged (eg: \1).
1933 */
Willy Tarreaubaaee002006-06-26 02:48:02 +02001934 int skip = 0;
1935 if (line[1] == ' ' || line[1] == '\\' || line[1] == '#') {
1936 *line = line[1];
1937 skip = 1;
1938 }
1939 else if (line[1] == 'r') {
1940 *line = '\r';
1941 skip = 1;
William Lallemandf9873ba2015-05-05 17:37:14 +02001942 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001943 else if (line[1] == 'n') {
1944 *line = '\n';
1945 skip = 1;
1946 }
1947 else if (line[1] == 't') {
1948 *line = '\t';
1949 skip = 1;
1950 }
1951 else if (line[1] == 'x') {
Emeric Brunb982a3d2010-01-04 15:45:53 +01001952 if ((line + 3 < end) && ishex(line[2]) && ishex(line[3])) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001953 unsigned char hex1, hex2;
1954 hex1 = toupper(line[2]) - '0';
1955 hex2 = toupper(line[3]) - '0';
1956 if (hex1 > 9) hex1 -= 'A' - '9' - 1;
1957 if (hex2 > 9) hex2 -= 'A' - '9' - 1;
1958 *line = (hex1<<4) + hex2;
1959 skip = 3;
1960 }
1961 else {
Tim Duesterhusac4930e2020-05-07 19:24:20 +02001962 ha_alert("parsing [%s:%d] : invalid or incomplete '\\x' sequence '%.*s' in '%s'.\n", file, linenum, 4, line, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02001963 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhuse6291952020-05-07 19:21:31 +02001964 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001965 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001966 } else if (line[1] == '"') {
1967 *line = '"';
1968 skip = 1;
1969 } else if (line[1] == '\'') {
1970 *line = '\'';
1971 skip = 1;
William Lallemandb2f07452015-05-12 14:27:13 +02001972 } else if (line[1] == '$' && dquote) { /* escaping of $ only inside double quotes */
1973 *line = '$';
1974 skip = 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001975 }
1976 if (skip) {
Cyril Bontédd1b01d2009-12-06 13:43:42 +01001977 memmove(line + 1, line + 1 + skip, end - (line + skip));
Willy Tarreaubaaee002006-06-26 02:48:02 +02001978 end -= skip;
1979 }
1980 line++;
1981 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001982 else if ((!squote && !dquote && *line == '#') || *line == '\n' || *line == '\r') {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001983 /* end of string, end of loop */
1984 *line = 0;
1985 break;
1986 }
William Lallemandf9873ba2015-05-05 17:37:14 +02001987 else if (!squote && !dquote && isspace((unsigned char)*line)) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02001988 /* a non-escaped space is an argument separator */
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001989 *line++ = '\0';
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001990 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001991 line++;
1992 args[++arg] = line;
1993 }
William Lallemandb2f07452015-05-12 14:27:13 +02001994 else if (dquote && *line == '$') {
1995 /* environment variables are evaluated inside double quotes */
1996 char *var_beg;
1997 char *var_end;
1998 char save_char;
1999 char *value;
2000 int val_len;
2001 int newlinesize;
2002 int braces = 0;
2003
2004 var_beg = line + 1;
2005 var_end = var_beg;
2006
2007 if (*var_beg == '{') {
2008 var_beg++;
2009 var_end++;
2010 braces = 1;
2011 }
2012
Willy Tarreau90807112020-02-25 08:16:33 +01002013 if (!isalpha((unsigned char)*var_beg) && *var_beg != '_') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002014 ha_alert("parsing [%s:%d] : Variable expansion: Unrecognized character '%c' in variable name.\n", file, linenum, *var_beg);
William Lallemandb2f07452015-05-12 14:27:13 +02002015 err_code |= ERR_ALERT | ERR_FATAL;
2016 goto next_line; /* skip current line */
2017 }
2018
Willy Tarreau90807112020-02-25 08:16:33 +01002019 while (isalnum((unsigned char)*var_end) || *var_end == '_')
William Lallemandb2f07452015-05-12 14:27:13 +02002020 var_end++;
2021
2022 save_char = *var_end;
2023 *var_end = '\0';
2024 value = getenv(var_beg);
2025 *var_end = save_char;
2026 val_len = value ? strlen(value) : 0;
2027
2028 if (braces) {
2029 if (*var_end == '}') {
2030 var_end++;
2031 braces = 0;
2032 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002033 ha_alert("parsing [%s:%d] : Variable expansion: Mismatched braces.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02002034 err_code |= ERR_ALERT | ERR_FATAL;
2035 goto next_line; /* skip current line */
2036 }
2037 }
2038
2039 newlinesize = (end - thisline) - (var_end - line) + val_len + 1;
2040
2041 /* if not enough space in thisline */
2042 if (newlinesize > linesize) {
2043 char *newline;
2044
2045 newline = realloc(thisline, newlinesize * sizeof(*thisline));
2046 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002047 ha_alert("parsing [%s:%d] : Variable expansion: Not enough memory.\n", file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02002048 err_code |= ERR_ALERT | ERR_FATAL;
2049 goto next_line; /* slip current line */
2050 }
2051 /* recompute pointers if realloc returns a new pointer */
2052 if (newline != thisline) {
2053 int i;
2054 int diff;
2055
2056 for (i = 0; i <= arg; i++) {
2057 diff = args[i] - thisline;
2058 args[i] = newline + diff;
2059 }
2060
2061 diff = var_end - thisline;
2062 var_end = newline + diff;
2063 diff = end - thisline;
2064 end = newline + diff;
2065 diff = line - thisline;
2066 line = newline + diff;
2067 thisline = newline;
2068 }
2069 linesize = newlinesize;
2070 }
2071
2072 /* insert value inside the line */
2073 memmove(line + val_len, var_end, end - var_end + 1);
2074 memcpy(line, value, val_len);
2075 end += val_len - (var_end - line);
2076 line += val_len;
2077 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002078 else {
2079 line++;
2080 }
2081 }
William Lallemandb2f07452015-05-12 14:27:13 +02002082
William Lallemandf9873ba2015-05-05 17:37:14 +02002083 if (dquote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002084 ha_alert("parsing [%s:%d] : Mismatched double quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002085 err_code |= ERR_ALERT | ERR_FATAL;
2086 }
2087
2088 if (squote) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002089 ha_alert("parsing [%s:%d] : Mismatched simple quotes.\n", file, linenum);
William Lallemandf9873ba2015-05-05 17:37:14 +02002090 err_code |= ERR_ALERT | ERR_FATAL;
2091 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002092
2093 /* empty line */
2094 if (!**args)
2095 continue;
2096
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002097 if (*line) {
2098 /* we had to stop due to too many args.
2099 * Let's terminate the string, print the offending part then cut the
2100 * last arg.
2101 */
2102 while (*line && *line != '#' && *line != '\n' && *line != '\r')
2103 line++;
2104 *line = '\0';
2105
Christopher Faulet767a84b2017-11-24 16:50:31 +01002106 ha_alert("parsing [%s:%d]: line too long, truncating at word %d, position %ld: <%s>.\n",
2107 file, linenum, arg + 1, (long)(args[arg] - thisline + 1), args[arg]);
Willy Tarreau7bb651e2009-11-09 21:16:53 +01002108 err_code |= ERR_ALERT | ERR_FATAL;
2109 args[arg] = line;
2110 }
2111
Willy Tarreau540abe42007-05-02 20:50:16 +02002112 /* zero out remaining args and ensure that at least one entry
2113 * is zeroed out.
2114 */
2115 while (++arg <= MAX_LINE_ARGS) {
Willy Tarreaubaaee002006-06-26 02:48:02 +02002116 args[arg] = line;
2117 }
2118
Willy Tarreau3842f002009-06-14 11:39:52 +02002119 /* check for keyword modifiers "no" and "default" */
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002120 if (!strcmp(args[0], "no")) {
William Lallemand0f99e342011-10-12 17:50:54 +02002121 char *tmp;
2122
Willy Tarreau3842f002009-06-14 11:39:52 +02002123 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002124 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002125 for (arg=0; *args[arg+1]; arg++)
2126 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002127 *tmp = '\0'; // fix the next arg to \0
2128 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002129 }
Willy Tarreau3842f002009-06-14 11:39:52 +02002130 else if (!strcmp(args[0], "default")) {
2131 kwm = KWM_DEF;
2132 for (arg=0; *args[arg+1]; arg++)
2133 args[arg] = args[arg+1]; // shift args after inversion
2134 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002135
William Dauchyec730982019-10-27 20:08:10 +01002136 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2137 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002138 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
2139 strcmp(args[0], "insecure-fork-wanted") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002140 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002141 "supported only for options, log, busy-polling, "
Willy Tarreaud96f1122019-12-03 07:07:36 +01002142 "set-dumpable, strict-limits, and insecure-fork-wanted.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002143 err_code |= ERR_ALERT | ERR_FATAL;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002144 }
2145
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002146 /* detect section start */
2147 list_for_each_entry(ics, &sections, list) {
2148 if (strcmp(args[0], ics->section_name) == 0) {
2149 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002150 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002151 cs = ics;
2152 break;
2153 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002154 }
2155
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002156 if (pcs && pcs->post_section_parser) {
2157 err_code |= pcs->post_section_parser();
2158 if (err_code & ERR_ABORT)
2159 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002160 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002161 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002162
William Lallemandd2ff56d2017-10-16 11:06:50 +02002163 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002164 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002165 err_code |= ERR_ALERT | ERR_FATAL;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002166 } else {
William Lallemandd2ff56d2017-10-16 11:06:50 +02002167 err_code |= cs->section_parser(file, linenum, args, kwm);
2168 if (err_code & ERR_ABORT)
2169 goto err;
2170 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002171 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002172
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002173 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002174 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002175
2176err:
Christopher Faulet79bdef32016-11-04 22:36:15 +01002177 free(cfg_scope);
2178 cfg_scope = NULL;
Willy Tarreau6daf3432008-01-22 16:44:08 +01002179 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002180 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002181 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02002182 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002183}
2184
Willy Tarreau64ab6072014-09-16 12:17:36 +02002185/* This function propagates processes from frontend <from> to backend <to> so
2186 * that it is always guaranteed that a backend pointed to by a frontend is
2187 * bound to all of its processes. After that, if the target is a "listen"
2188 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02002189 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02002190 * checked first to ensure that <to> is already bound to all processes of
2191 * <from>, there is no risk of looping and we ensure to follow the shortest
2192 * path to the destination.
2193 *
2194 * It is possible to set <to> to NULL for the first call so that the function
2195 * takes care of visiting the initial frontend in <from>.
2196 *
2197 * It is important to note that the function relies on the fact that all names
2198 * have already been resolved.
2199 */
2200void propagate_processes(struct proxy *from, struct proxy *to)
2201{
2202 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002203
2204 if (to) {
2205 /* check whether we need to go down */
2206 if (from->bind_proc &&
2207 (from->bind_proc & to->bind_proc) == from->bind_proc)
2208 return;
2209
2210 if (!from->bind_proc && !to->bind_proc)
2211 return;
2212
2213 to->bind_proc = from->bind_proc ?
2214 (to->bind_proc | from->bind_proc) : 0;
2215
2216 /* now propagate down */
2217 from = to;
2218 }
2219
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01002220 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02002221 return;
2222
Willy Tarreauf6b70012014-12-18 14:00:43 +01002223 if (from->state == PR_STSTOPPED)
2224 return;
2225
Willy Tarreau64ab6072014-09-16 12:17:36 +02002226 /* default_backend */
2227 if (from->defbe.be)
2228 propagate_processes(from, from->defbe.be);
2229
2230 /* use_backend */
2231 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02002232 if (rule->dynamic)
2233 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02002234 to = rule->be.backend;
2235 propagate_processes(from, to);
2236 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02002237}
2238
Willy Tarreaubb925012009-07-23 13:36:36 +02002239/*
2240 * Returns the error code, 0 if OK, or any combination of :
2241 * - ERR_ABORT: must abort ASAP
2242 * - ERR_FATAL: we can continue parsing but not start the service
2243 * - ERR_WARN: a warning has been emitted
2244 * - ERR_ALERT: an alert has been emitted
2245 * Only the two first ones can stop processing, the two others are just
2246 * indicators.
2247 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002248int check_config_validity()
2249{
2250 int cfgerr = 0;
2251 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002252 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002253 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002254 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002255 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002256 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002257 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002258 struct cfg_postparser *postparser;
Ben Draut054fbee2018-04-13 15:43:04 -06002259 struct dns_resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002260
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002261 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002262 /*
2263 * Now, check for the integrity of all that we have collected.
2264 */
2265
2266 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02002267 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002268
Willy Tarreau193b8c62012-11-22 00:17:38 +01002269 if (!global.tune.max_http_hdr)
2270 global.tune.max_http_hdr = MAX_HTTP_HDR;
2271
2272 if (!global.tune.cookie_len)
2273 global.tune.cookie_len = CAPTURE_LEN;
2274
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002275 if (!global.tune.requri_len)
2276 global.tune.requri_len = REQURI_LEN;
2277
Willy Tarreau149ab772019-01-26 14:27:06 +01002278 if (!global.nbthread) {
2279 /* nbthread not set, thus automatic. In this case, and only if
2280 * running on a single process, we enable the same number of
2281 * threads as the number of CPUs the process is bound to. This
2282 * allows to easily control the number of threads using taskset.
2283 */
2284 global.nbthread = 1;
2285#if defined(USE_THREAD)
2286 if (global.nbproc == 1)
2287 global.nbthread = thread_cpus_enabled_at_boot;
2288 all_threads_mask = nbits(global.nbthread);
2289#endif
2290 }
2291
Willy Tarreau26f6ae12019-02-02 12:56:15 +01002292 if (global.nbproc > 1 && global.nbthread > 1) {
2293 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
2294 err_code |= ERR_ALERT | ERR_FATAL;
2295 goto out;
2296 }
2297
Willy Tarreaubafbe012017-11-24 17:34:44 +01002298 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002299
Willy Tarreaubafbe012017-11-24 17:34:44 +01002300 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002301
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002302 /* Post initialisation of the users and groups lists. */
2303 err_code = userlist_postinit();
2304 if (err_code != ERR_NONE)
2305 goto out;
2306
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002307 /* first, we will invert the proxy list order */
2308 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002309 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002310 struct proxy *next;
2311
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002312 next = proxies_list->next;
2313 proxies_list->next = curproxy;
2314 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002315 if (!next)
2316 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002317 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002318 }
2319
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002320 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002321 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002322 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002323 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002324 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002325 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002326 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002327 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002328
Willy Tarreau050536d2012-10-04 08:47:34 +02002329 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002330 /* proxy ID not set, use automatic numbering with first
2331 * spare entry starting with next_pxid.
2332 */
2333 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2334 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2335 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002336 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002337 next_pxid++;
2338
Willy Tarreau55ea7572007-06-17 19:56:27 +02002339
Willy Tarreaubaaee002006-06-26 02:48:02 +02002340 if (curproxy->state == PR_STSTOPPED) {
Willy Tarreauda250db2008-10-12 12:07:48 +02002341 /* ensure we don't keep listeners uselessly bound */
2342 stop_proxy(curproxy);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002343 if (curproxy->table) {
2344 free((void *)curproxy->table->peers.name);
2345 curproxy->table->peers.p = NULL;
2346 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002347 continue;
2348 }
2349
Willy Tarreau102df612014-05-07 23:56:38 +02002350 /* Check multi-process mode compatibility for the current proxy */
2351
2352 if (curproxy->bind_proc) {
2353 /* an explicit bind-process was specified, let's check how many
2354 * processes remain.
2355 */
David Carliere6c39412015-07-02 07:00:17 +00002356 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002357
Willy Tarreaua38a7172019-02-02 17:11:28 +01002358 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002359 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002360 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 +02002361 curproxy->bind_proc = 1;
2362 }
2363 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002364 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 +02002365 curproxy->bind_proc = 0;
2366 }
2367 }
2368
Willy Tarreau3d209582014-05-09 17:06:11 +02002369 /* check and reduce the bind-proc of each listener */
2370 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2371 unsigned long mask;
2372
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002373 /* HTTP frontends with "h2" as ALPN/NPN will work in
2374 * HTTP/2 and absolutely require buffers 16kB or larger.
2375 */
2376#ifdef USE_OPENSSL
2377 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2378#ifdef OPENSSL_NPN_NEGOTIATED
2379 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002380 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002381 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",
2382 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002383 cfgerr++;
2384 }
2385#endif
2386#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2387 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002388 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002389 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",
2390 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002391 cfgerr++;
2392 }
2393#endif
2394 } /* HTTP && bufsize < 16384 */
2395#endif
2396
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002397 /* detect and address thread affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002398 mask = thread_mask(bind_conf->bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002399 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002400 unsigned long new_mask = 0;
2401
2402 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002403 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002404 mask >>= global.nbthread;
2405 }
2406
Willy Tarreaua36b3242019-02-02 13:14:34 +01002407 bind_conf->bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002408 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",
2409 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2410 }
2411
2412 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaua36b3242019-02-02 13:14:34 +01002413 mask = proc_mask(bind_conf->bind_proc) & proc_mask(curproxy->bind_proc);
2414 if (!(mask & all_proc_mask)) {
2415 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
2416 nbproc = my_popcountl(bind_conf->bind_proc);
2417 bind_conf->bind_proc = proc_mask(bind_conf->bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002418
Willy Tarreaua36b3242019-02-02 13:14:34 +01002419 if (!bind_conf->bind_proc && nbproc == 1) {
2420 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",
2421 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2422 bind_conf->bind_proc = mask & ~(mask - 1);
2423 }
2424 else if (!bind_conf->bind_proc && nbproc > 1) {
2425 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",
2426 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
2427 bind_conf->bind_proc = 0;
2428 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002429 }
2430 }
2431
Willy Tarreauff01a212009-03-15 13:46:16 +01002432 switch (curproxy->mode) {
2433 case PR_MODE_HEALTH:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002434 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002435 if (!(curproxy->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002436 ha_alert("config : %s '%s' cannot be in health mode as it has no frontend capability.\n",
2437 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002438 cfgerr++;
2439 }
2440
2441 if (curproxy->srv != NULL)
Christopher Faulet767a84b2017-11-24 16:50:31 +01002442 ha_warning("config : servers will be ignored for %s '%s'.\n",
2443 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauff01a212009-03-15 13:46:16 +01002444 break;
2445
2446 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002447 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002448 break;
2449
2450 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002451 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002452 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002453
2454 case PR_MODE_CLI:
2455 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2456 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002457 }
2458
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002459 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002460 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2461 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002462 err_code |= ERR_WARN;
2463 }
2464
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002465 if ((curproxy->cap & PR_CAP_BE) && (curproxy->mode != PR_MODE_HEALTH)) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002466 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002467 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002468 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2469 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002470 cfgerr++;
2471 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002472#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002473 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002474 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2475 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002476 cfgerr++;
2477 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002478#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002479 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002480 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2481 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002482 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002483 }
2484 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002485 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002486 /* If no LB algo is set in a backend, and we're not in
2487 * transparent mode, dispatch mode nor proxy mode, we
2488 * want to use balance roundrobin by default.
2489 */
2490 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2491 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002492 }
2493 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002494
Willy Tarreau1620ec32011-08-06 17:05:02 +02002495 if (curproxy->options & PR_O_DISPATCH)
2496 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2497 else if (curproxy->options & PR_O_HTTP_PROXY)
2498 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2499 else if (curproxy->options & PR_O_TRANSP)
2500 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002501
Christopher Faulete5870d82020-04-15 11:32:03 +02002502 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2503 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2504 proxy_type_str(curproxy), curproxy->id);
2505 err_code |= ERR_WARN;
2506 }
2507
2508 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002509 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002510 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002511 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2512 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002513 err_code |= ERR_WARN;
2514 curproxy->options &= ~PR_O_DISABLE404;
2515 }
2516 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002517 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2518 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002519 err_code |= ERR_WARN;
2520 curproxy->options &= ~PR_O2_CHK_SNDST;
2521 }
Willy Tarreauef781042010-01-27 11:53:01 +01002522 }
2523
Simon Horman98637e52014-06-20 12:30:16 +09002524 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2525 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002526 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2527 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002528 cfgerr++;
2529 }
2530 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002531 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2532 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002533 cfgerr++;
2534 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002535 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2536 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2537 curproxy->id, "option external-check");
2538 err_code |= ERR_WARN;
2539 }
Simon Horman98637e52014-06-20 12:30:16 +09002540 }
2541
Simon Horman64e34162015-02-06 11:11:57 +09002542 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002543 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002544 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2545 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2546 "'email-alert myhostname', or 'email-alert to' "
2547 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2548 "to be present).\n",
2549 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002550 err_code |= ERR_WARN;
2551 free_email_alert(curproxy);
2552 }
2553 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002554 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002555 }
2556
Simon Horman98637e52014-06-20 12:30:16 +09002557 if (curproxy->check_command) {
2558 int clear = 0;
2559 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002560 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2561 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002562 err_code |= ERR_WARN;
2563 clear = 1;
2564 }
2565 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002566 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2567 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002568 cfgerr++;
2569 }
2570 if (clear) {
2571 free(curproxy->check_command);
2572 curproxy->check_command = NULL;
2573 }
2574 }
2575
2576 if (curproxy->check_path) {
2577 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002578 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2579 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002580 err_code |= ERR_WARN;
2581 free(curproxy->check_path);
2582 curproxy->check_path = NULL;
2583 }
2584 }
2585
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002586 /* if a default backend was specified, let's find it */
2587 if (curproxy->defbe.name) {
2588 struct proxy *target;
2589
Willy Tarreauafb39922015-05-26 12:04:09 +02002590 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002591 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002592 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2593 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002594 cfgerr++;
2595 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002596 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2597 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002598 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002599 } else if (target->mode != curproxy->mode &&
2600 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2601
Christopher Faulet767a84b2017-11-24 16:50:31 +01002602 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2603 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2604 curproxy->conf.file, curproxy->conf.line,
2605 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2606 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002607 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002608 } else {
2609 free(curproxy->defbe.name);
2610 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002611 /* Emit a warning if this proxy also has some servers */
2612 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002613 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2614 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002615 err_code |= ERR_WARN;
2616 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002617 }
2618 }
2619
Willy Tarreau55ea7572007-06-17 19:56:27 +02002620 /* find the target proxy for 'use_backend' rules */
2621 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002622 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002623 struct logformat_node *node;
2624 char *pxname;
2625
2626 /* Try to parse the string as a log format expression. If the result
2627 * of the parsing is only one entry containing a simple string, then
2628 * it's a standard string corresponding to a static rule, thus the
2629 * parsing is cancelled and be.name is restored to be resolved.
2630 */
2631 pxname = rule->be.name;
2632 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002633 curproxy->conf.args.ctx = ARGC_UBK;
2634 curproxy->conf.args.file = rule->file;
2635 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002636 err = NULL;
2637 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002638 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2639 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002640 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002641 cfgerr++;
2642 continue;
2643 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002644 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2645
2646 if (!LIST_ISEMPTY(&rule->be.expr)) {
2647 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2648 rule->dynamic = 1;
2649 free(pxname);
2650 continue;
2651 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002652 /* Only one element in the list, a simple string: free the expression and
2653 * fall back to static rule
2654 */
2655 LIST_DEL(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002656 free(node->arg);
2657 free(node);
2658 }
2659
2660 rule->dynamic = 0;
2661 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002662
Willy Tarreauafb39922015-05-26 12:04:09 +02002663 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002664 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002665 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2666 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002667 cfgerr++;
2668 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002669 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2670 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002671 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002672 } else if (target->mode != curproxy->mode &&
2673 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2674
Christopher Faulet767a84b2017-11-24 16:50:31 +01002675 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2676 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2677 curproxy->conf.file, curproxy->conf.line,
2678 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2679 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002680 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002681 } else {
2682 free((void *)rule->be.name);
2683 rule->be.backend = target;
2684 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002685 }
2686
Willy Tarreau64ab6072014-09-16 12:17:36 +02002687 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002688 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002689 struct server *target;
2690 struct logformat_node *node;
2691 char *server_name;
2692
2693 /* We try to parse the string as a log format expression. If the result of the parsing
2694 * is only one entry containing a single string, then it's a standard string corresponding
2695 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2696 */
2697 server_name = srule->srv.name;
2698 LIST_INIT(&srule->expr);
2699 curproxy->conf.args.ctx = ARGC_USRV;
2700 err = NULL;
2701 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2702 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2703 srule->file, srule->line, server_name, err);
2704 free(err);
2705 cfgerr++;
2706 continue;
2707 }
2708 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2709
2710 if (!LIST_ISEMPTY(&srule->expr)) {
2711 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2712 srule->dynamic = 1;
2713 free(server_name);
2714 continue;
2715 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002716 /* Only one element in the list, a simple string: free the expression and
2717 * fall back to static rule
2718 */
2719 LIST_DEL(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002720 free(node->arg);
2721 free(node);
2722 }
2723
2724 srule->dynamic = 0;
2725 srule->srv.name = server_name;
2726 target = findserver(curproxy, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002727
2728 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002729 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2730 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002731 cfgerr++;
2732 continue;
2733 }
2734 free((void *)srule->srv.name);
2735 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002736 }
2737
Emeric Brunb982a3d2010-01-04 15:45:53 +01002738 /* find the target table for 'stick' rules */
2739 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002740 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002741
Emeric Brun1d33b292010-01-04 15:47:17 +01002742 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2743 if (mrule->flags & STK_IS_STORE)
2744 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2745
Emeric Brunb982a3d2010-01-04 15:45:53 +01002746 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002747 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002748 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002749 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002750
2751 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002752 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002753 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002754 cfgerr++;
2755 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002756 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002757 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2758 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002759 cfgerr++;
2760 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002761 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002762 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2763 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002764 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002765 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002766 else {
2767 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002768 mrule->table.t = target;
2769 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002770 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002771 if (!in_proxies_list(target->proxies_list, curproxy)) {
2772 curproxy->next_stkt_ref = target->proxies_list;
2773 target->proxies_list = curproxy;
2774 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002775 }
2776 }
2777
2778 /* find the target table for 'store response' rules */
2779 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002780 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002781
Emeric Brun1d33b292010-01-04 15:47:17 +01002782 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2783
Emeric Brunb982a3d2010-01-04 15:45:53 +01002784 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002785 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002786 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002787 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002788
2789 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002790 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002791 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002792 cfgerr++;
2793 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002794 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002795 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2796 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002797 cfgerr++;
2798 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002799 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002800 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2801 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002802 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002803 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002804 else {
2805 free((void *)mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002806 mrule->table.t = target;
2807 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Frédéric Lécailledb52d902019-05-17 10:12:52 +02002808 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_NAME, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002809 if (!in_proxies_list(target->proxies_list, curproxy)) {
2810 curproxy->next_stkt_ref = target->proxies_list;
2811 target->proxies_list = curproxy;
2812 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002813 }
2814 }
2815
Christopher Faulete4e830d2017-09-18 14:51:41 +02002816 /* check validity for 'tcp-request' layer 4 rules */
2817 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2818 err = NULL;
2819 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002820 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002821 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002822 cfgerr++;
2823 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002824 }
2825
Christopher Faulete4e830d2017-09-18 14:51:41 +02002826 /* check validity for 'tcp-request' layer 5 rules */
2827 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2828 err = NULL;
2829 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002830 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002831 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002832 cfgerr++;
2833 }
2834 }
2835
Christopher Faulete4e830d2017-09-18 14:51:41 +02002836 /* check validity for 'tcp-request' layer 6 rules */
2837 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2838 err = NULL;
2839 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002840 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002841 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002842 cfgerr++;
2843 }
2844 }
2845
Christopher Faulete4e830d2017-09-18 14:51:41 +02002846 /* check validity for 'http-request' layer 7 rules */
2847 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2848 err = NULL;
2849 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002850 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002851 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002852 cfgerr++;
2853 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002854 }
2855
Christopher Faulete4e830d2017-09-18 14:51:41 +02002856 /* check validity for 'http-response' layer 7 rules */
2857 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2858 err = NULL;
2859 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002860 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002861 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002862 cfgerr++;
2863 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002864 }
2865
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002866 /* check validity for 'http-after-response' layer 7 rules */
2867 list_for_each_entry(arule, &curproxy->http_after_res_rules, list) {
2868 err = NULL;
2869 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
2870 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
2871 free(err);
2872 cfgerr++;
2873 }
2874 }
2875
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002876 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002877 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002878
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002879 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002880 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
2881 free((void *)curproxy->table->peers.name);
2882 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002883 break;
2884 }
2885 }
2886
2887 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002888 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002889 curproxy->id, curproxy->table->peers.name);
2890 free((void *)curproxy->table->peers.name);
2891 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002892 cfgerr++;
2893 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002894 else if (curpeers->state == PR_STSTOPPED) {
2895 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002896 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002897 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002898 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002899 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2900 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002901 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002902 cfgerr++;
2903 }
2904 }
2905
Simon Horman9dc49962015-01-30 11:22:59 +09002906
2907 if (curproxy->email_alert.mailers.name) {
2908 struct mailers *curmailers = mailers;
2909
2910 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Christopher Faulet0108bb32017-10-20 21:34:32 +02002911 if (!strcmp(curmailers->id, curproxy->email_alert.mailers.name))
Simon Horman9dc49962015-01-30 11:22:59 +09002912 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002913 }
Simon Horman9dc49962015-01-30 11:22:59 +09002914 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002915 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2916 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002917 free_email_alert(curproxy);
2918 cfgerr++;
2919 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002920 else {
2921 err = NULL;
2922 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002923 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002924 free(err);
2925 cfgerr++;
2926 }
2927 }
Simon Horman9dc49962015-01-30 11:22:59 +09002928 }
2929
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002930 if (curproxy->uri_auth && curproxy->uri_auth != defproxy.uri_auth &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002931 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002932 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002933 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2934 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002935 cfgerr++;
2936 goto out_uri_auth_compat;
2937 }
2938
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002939 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
2940 (curproxy->uri_auth != defproxy.uri_auth ||
2941 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002942 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002943 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002944 int i = 0;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002945 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2946 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002947
2948 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002949 uri_auth_compat_req[i++] = "realm";
2950 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2951 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002952
Willy Tarreau95fa4692010-02-01 13:05:50 +01002953 uri_auth_compat_req[i++] = "unless";
2954 uri_auth_compat_req[i++] = "{";
2955 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2956 uri_auth_compat_req[i++] = "}";
2957 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002958
Willy Tarreauff011f22011-01-06 17:51:27 +01002959 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2960 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002961 cfgerr++;
2962 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002963 }
2964
Willy Tarreauff011f22011-01-06 17:51:27 +01002965 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002966
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002967 if (curproxy->uri_auth->auth_realm) {
2968 free(curproxy->uri_auth->auth_realm);
2969 curproxy->uri_auth->auth_realm = NULL;
2970 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002971 }
2972out_uri_auth_compat:
2973
Dragan Dosen43885c72015-10-01 13:18:13 +02002974 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002975 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002976 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2977 if (!curproxy->conf.logformat_sd_string) {
2978 /* set the default logformat_sd_string */
2979 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2980 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002981 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002982 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002983 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002984
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002985 /* compile the log format */
2986 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002987 if (curproxy->conf.logformat_string != default_http_log_format &&
2988 curproxy->conf.logformat_string != default_tcp_log_format &&
2989 curproxy->conf.logformat_string != clf_http_log_format)
2990 free(curproxy->conf.logformat_string);
2991 curproxy->conf.logformat_string = NULL;
2992 free(curproxy->conf.lfs_file);
2993 curproxy->conf.lfs_file = NULL;
2994 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002995
2996 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2997 free(curproxy->conf.logformat_sd_string);
2998 curproxy->conf.logformat_sd_string = NULL;
2999 free(curproxy->conf.lfsd_file);
3000 curproxy->conf.lfsd_file = NULL;
3001 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003002 }
3003
Willy Tarreau62a61232013-04-12 18:13:46 +02003004 if (curproxy->conf.logformat_string) {
3005 curproxy->conf.args.ctx = ARGC_LOG;
3006 curproxy->conf.args.file = curproxy->conf.lfs_file;
3007 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003008 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003009 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003010 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003011 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3012 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003013 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003014 cfgerr++;
3015 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003016 curproxy->conf.args.file = NULL;
3017 curproxy->conf.args.line = 0;
3018 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003019
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003020 if (curproxy->conf.logformat_sd_string) {
3021 curproxy->conf.args.ctx = ARGC_LOGSD;
3022 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3023 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003024 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003025 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd, LOG_OPT_MANDATORY,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003026 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003027 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3028 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003029 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003030 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003031 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003032 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3033 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003034 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003035 cfgerr++;
3036 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003037 curproxy->conf.args.file = NULL;
3038 curproxy->conf.args.line = 0;
3039 }
3040
Willy Tarreau62a61232013-04-12 18:13:46 +02003041 if (curproxy->conf.uniqueid_format_string) {
3042 curproxy->conf.args.ctx = ARGC_UIF;
3043 curproxy->conf.args.file = curproxy->conf.uif_file;
3044 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003045 err = NULL;
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003046 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id, LOG_OPT_HTTP,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003047 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR : SMP_VAL_BE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003048 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3049 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003050 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003051 cfgerr++;
3052 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003053 curproxy->conf.args.file = NULL;
3054 curproxy->conf.args.line = 0;
3055 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003056
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003057 /* only now we can check if some args remain unresolved.
3058 * This must be done after the users and groups resolution.
3059 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003060 cfgerr += smp_resolve_args(curproxy);
3061 if (!cfgerr)
3062 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003063
Willy Tarreau2738a142006-07-08 17:28:09 +02003064 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003065 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003066 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003067 (!curproxy->timeout.connect ||
3068 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003069 ha_warning("config : missing timeouts for %s '%s'.\n"
3070 " | While not properly invalid, you will certainly encounter various problems\n"
3071 " | with such a configuration. To fix this, please ensure that all following\n"
3072 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3073 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003074 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003075 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003076
Willy Tarreau1fa31262007-12-03 00:36:16 +01003077 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3078 * We must still support older configurations, so let's find out whether those
3079 * parameters have been set or must be copied from contimeouts.
3080 */
3081 if (curproxy != &defproxy) {
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003082 if (!curproxy->timeout.tarpit ||
3083 curproxy->timeout.tarpit == defproxy.timeout.tarpit) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003084 /* tarpit timeout not set. We search in the following order:
3085 * default.tarpit, curr.connect, default.connect.
3086 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003087 if (defproxy.timeout.tarpit)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003088 curproxy->timeout.tarpit = defproxy.timeout.tarpit;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003089 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003090 curproxy->timeout.tarpit = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003091 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003092 curproxy->timeout.tarpit = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003093 }
3094 if ((curproxy->cap & PR_CAP_BE) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003095 (!curproxy->timeout.queue ||
3096 curproxy->timeout.queue == defproxy.timeout.queue)) {
Willy Tarreau1fa31262007-12-03 00:36:16 +01003097 /* queue timeout not set. We search in the following order:
3098 * default.queue, curr.connect, default.connect.
3099 */
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003100 if (defproxy.timeout.queue)
Willy Tarreau1fa31262007-12-03 00:36:16 +01003101 curproxy->timeout.queue = defproxy.timeout.queue;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003102 else if (curproxy->timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003103 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003104 else if (defproxy.timeout.connect)
Willy Tarreaud7c30f92007-12-03 01:38:36 +01003105 curproxy->timeout.queue = defproxy.timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003106 }
3107 }
3108
Christopher Faulete5870d82020-04-15 11:32:03 +02003109 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003110 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
3111 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003112 err_code |= ERR_WARN;
3113 }
3114
Willy Tarreau193b8c62012-11-22 00:17:38 +01003115 /* ensure that cookie capture length is not too large */
3116 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003117 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
3118 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003119 err_code |= ERR_WARN;
3120 curproxy->capture_len = global.tune.cookie_len - 1;
3121 }
3122
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003123 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003124 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003125 curproxy->req_cap_pool = create_pool("ptrcap",
3126 curproxy->nb_req_cap * sizeof(char *),
3127 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003128 }
3129
3130 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003131 curproxy->rsp_cap_pool = create_pool("ptrcap",
3132 curproxy->nb_rsp_cap * sizeof(char *),
3133 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003134 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003135
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003136 switch (curproxy->load_server_state_from_file) {
3137 case PR_SRV_STATE_FILE_UNSPEC:
3138 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3139 break;
3140 case PR_SRV_STATE_FILE_GLOBAL:
3141 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003142 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",
3143 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003144 err_code |= ERR_WARN;
3145 }
3146 break;
3147 }
3148
Willy Tarreaubaaee002006-06-26 02:48:02 +02003149 /* first, we will invert the servers list order */
3150 newsrv = NULL;
3151 while (curproxy->srv) {
3152 struct server *next;
3153
3154 next = curproxy->srv->next;
3155 curproxy->srv->next = newsrv;
3156 newsrv = curproxy->srv;
3157 if (!next)
3158 break;
3159 curproxy->srv = next;
3160 }
3161
Willy Tarreau17edc812014-01-03 12:14:34 +01003162 /* Check that no server name conflicts. This causes trouble in the stats.
3163 * We only emit a warning for the first conflict affecting each server,
3164 * in order to avoid combinatory explosion if all servers have the same
3165 * name. We do that only for servers which do not have an explicit ID,
3166 * because these IDs were made also for distinguishing them and we don't
3167 * want to annoy people who correctly manage them.
3168 */
3169 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3170 struct server *other_srv;
3171
3172 if (newsrv->puid)
3173 continue;
3174
3175 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3176 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003177 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 +01003178 newsrv->conf.file, newsrv->conf.line,
3179 proxy_type_str(curproxy), curproxy->id,
3180 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003181 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003182 break;
3183 }
3184 }
3185 }
3186
Willy Tarreaudd701652010-05-25 23:03:02 +02003187 /* assign automatic UIDs to servers which don't have one yet */
3188 next_id = 1;
3189 newsrv = curproxy->srv;
3190 while (newsrv != NULL) {
3191 if (!newsrv->puid) {
3192 /* server ID not set, use automatic numbering with first
3193 * spare entry starting with next_svid.
3194 */
3195 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3196 newsrv->conf.id.key = newsrv->puid = next_id;
3197 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02003198 newsrv->conf.name.key = newsrv->id;
3199 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02003200 }
3201 next_id++;
3202 newsrv = newsrv->next;
3203 }
3204
Willy Tarreau20697042007-11-15 23:26:18 +01003205 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003206 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003207
Willy Tarreau62c3be22012-01-20 13:12:32 +01003208 /*
3209 * If this server supports a maxconn parameter, it needs a dedicated
3210 * tasks to fill the emptied slots when a connection leaves.
3211 * Also, resolve deferred tracking dependency if needed.
3212 */
3213 newsrv = curproxy->srv;
3214 while (newsrv != NULL) {
3215 if (newsrv->minconn > newsrv->maxconn) {
3216 /* Only 'minconn' was specified, or it was higher than or equal
3217 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3218 * this will avoid further useless expensive computations.
3219 */
3220 newsrv->maxconn = newsrv->minconn;
3221 } else if (newsrv->maxconn && !newsrv->minconn) {
3222 /* minconn was not specified, so we set it to maxconn */
3223 newsrv->minconn = newsrv->maxconn;
3224 }
3225
Willy Tarreau17d45382016-12-22 21:16:08 +01003226 /* this will also properly set the transport layer for prod and checks */
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003227 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 || (newsrv->proxy->options & PR_O_TCPCHK_SSL)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003228 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3229 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3230 }
Emeric Brun94324a42012-10-11 14:00:19 +02003231
Willy Tarreau034c88c2017-01-23 23:36:45 +01003232 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3233 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3234 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
3235 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",
3236 newsrv->conf.file, newsrv->conf.line,
3237 proxy_type_str(curproxy), curproxy->id,
3238 newsrv->id);
3239
Willy Tarreau62c3be22012-01-20 13:12:32 +01003240 if (newsrv->trackit) {
3241 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02003242 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003243 char *pname, *sname;
3244
3245 pname = newsrv->trackit;
3246 sname = strrchr(pname, '/');
3247
3248 if (sname)
3249 *sname++ = '\0';
3250 else {
3251 sname = pname;
3252 pname = NULL;
3253 }
3254
3255 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02003256 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003257 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003258 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
3259 proxy_type_str(curproxy), curproxy->id,
3260 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003261 cfgerr++;
3262 goto next_srv;
3263 }
3264 } else
3265 px = curproxy;
3266
3267 srv = findserver(px, sname);
3268 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003269 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
3270 proxy_type_str(curproxy), curproxy->id,
3271 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003272 cfgerr++;
3273 goto next_srv;
3274 }
3275
Christopher Faulet8892e5d2020-03-26 19:48:20 +01003276 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003277 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
3278 "tracking as it does not have any check nor agent enabled.\n",
3279 proxy_type_str(curproxy), curproxy->id,
3280 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02003281 cfgerr++;
3282 goto next_srv;
3283 }
3284
3285 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
3286
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01003287 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003288 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
3289 "belongs to a tracking chain looping back to %s/%s.\n",
3290 proxy_type_str(curproxy), curproxy->id,
3291 newsrv->id, px->id, srv->id, px->id,
3292 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003293 cfgerr++;
3294 goto next_srv;
3295 }
3296
3297 if (curproxy != px &&
3298 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003299 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
3300 "tracking: disable-on-404 option inconsistency.\n",
3301 proxy_type_str(curproxy), curproxy->id,
3302 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01003303 cfgerr++;
3304 goto next_srv;
3305 }
3306
Willy Tarreau62c3be22012-01-20 13:12:32 +01003307 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01003308 newsrv->tracknext = srv->trackers;
3309 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003310
3311 free(newsrv->trackit);
3312 newsrv->trackit = NULL;
3313 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003314
Willy Tarreau62c3be22012-01-20 13:12:32 +01003315 next_srv:
3316 newsrv = newsrv->next;
3317 }
3318
Olivier Houchard4e694042017-03-14 20:01:29 +01003319 /*
3320 * Try to generate dynamic cookies for servers now.
3321 * It couldn't be done earlier, since at the time we parsed
3322 * the server line, we may not have known yet that we
3323 * should use dynamic cookies, or the secret key may not
3324 * have been provided yet.
3325 */
3326 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3327 newsrv = curproxy->srv;
3328 while (newsrv != NULL) {
3329 srv_set_dyncookie(newsrv);
3330 newsrv = newsrv->next;
3331 }
3332
3333 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003334 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003335 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003336 */
3337
3338 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3339 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3340 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003341 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3342 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3343 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003344 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3345 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3346 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003347 } else {
3348 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3349 fwrr_init_server_groups(curproxy);
3350 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003351 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003352
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003353 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003354 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3355 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3356 fwlc_init_server_tree(curproxy);
3357 } else {
3358 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3359 fas_init_server_tree(curproxy);
3360 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003361 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003362
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003363 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003364 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3365 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3366 chash_init_server_tree(curproxy);
3367 } else {
3368 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3369 init_server_map(curproxy);
3370 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003371 break;
3372 }
Christopher Faulet2a944ee2017-11-07 10:42:54 +01003373 HA_SPIN_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003374
3375 if (curproxy->options & PR_O_LOGASAP)
3376 curproxy->to_log &= ~LW_BYTES;
3377
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003378 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003379 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3380 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003381 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3382 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003383 err_code |= ERR_WARN;
3384 }
3385
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003386 if (curproxy->mode != PR_MODE_HTTP) {
3387 int optnum;
3388
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003389 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003390 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3391 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003392 err_code |= ERR_WARN;
3393 curproxy->uri_auth = NULL;
3394 }
3395
Willy Tarreaude7dc882017-03-10 11:49:21 +01003396 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003397 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3398 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003399 err_code |= ERR_WARN;
3400 }
3401
3402 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003403 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3404 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003405 err_code |= ERR_WARN;
3406 }
3407
3408 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003409 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3410 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003411 err_code |= ERR_WARN;
3412 }
3413
Willy Tarreaude7dc882017-03-10 11:49:21 +01003414 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003415 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3416 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003417 err_code |= ERR_WARN;
3418 }
3419
Willy Tarreau87cf5142011-08-19 22:57:24 +02003420 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003421 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3422 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003423 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003424 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003425 }
3426
3427 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003428 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3429 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003430 err_code |= ERR_WARN;
3431 curproxy->options &= ~PR_O_ORGTO;
3432 }
3433
3434 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3435 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3436 (curproxy->cap & cfg_opts[optnum].cap) &&
3437 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003438 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3439 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003440 err_code |= ERR_WARN;
3441 curproxy->options &= ~cfg_opts[optnum].val;
3442 }
3443 }
3444
3445 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3446 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3447 (curproxy->cap & cfg_opts2[optnum].cap) &&
3448 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003449 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3450 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003451 err_code |= ERR_WARN;
3452 curproxy->options2 &= ~cfg_opts2[optnum].val;
3453 }
3454 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003455
Willy Tarreau29fbe512015-08-20 19:35:14 +02003456#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003457 if (curproxy->conn_src.bind_hdr_occ) {
3458 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003459 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3460 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003461 err_code |= ERR_WARN;
3462 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003463#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003464 }
3465
Willy Tarreaubaaee002006-06-26 02:48:02 +02003466 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003467 * ensure that we're not cross-dressing a TCP server into HTTP.
3468 */
3469 newsrv = curproxy->srv;
3470 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003471 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003472 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3473 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003474 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003475 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003476
Willy Tarreau0cec3312011-10-31 13:49:26 +01003477 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003478 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3479 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003480 err_code |= ERR_WARN;
3481 }
3482
Willy Tarreauc93cd162014-05-13 15:54:22 +02003483 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003484 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3485 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003486 err_code |= ERR_WARN;
3487 }
3488
Willy Tarreau29fbe512015-08-20 19:35:14 +02003489#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003490 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3491 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003492 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3493 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003494 err_code |= ERR_WARN;
3495 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003496#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003497
Willy Tarreau46deab62018-04-28 07:18:15 +02003498 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3499 curproxy->options &= ~PR_O_REUSE_MASK;
3500
Willy Tarreau21d2af32008-02-14 20:25:24 +01003501 newsrv = newsrv->next;
3502 }
3503
Christopher Fauletd7c91962015-04-30 11:48:27 +02003504 /* Check filter configuration, if any */
3505 cfgerr += flt_check(curproxy);
3506
Willy Tarreauc1a21672009-08-16 22:37:44 +02003507 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003508 if (!curproxy->accept)
3509 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003510
Willy Tarreauc1a21672009-08-16 22:37:44 +02003511 if (curproxy->tcp_req.inspect_delay ||
3512 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003513 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003514
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003515 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003516 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003517 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003518 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003519
William Lallemandcf62f7e2018-10-26 14:47:40 +02003520 if (curproxy->mode == PR_MODE_CLI) {
3521 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3522 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3523 }
3524
Willy Tarreauc1a21672009-08-16 22:37:44 +02003525 /* both TCP and HTTP must check switching rules */
3526 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003527
3528 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003529 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003530 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3531 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 +01003532 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003533 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3534 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003535 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003536 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003537 }
3538
3539 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003540 if (curproxy->tcp_req.inspect_delay ||
3541 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3542 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3543
Emeric Brun97679e72010-09-23 17:56:44 +02003544 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3545 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3546
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003547 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003548 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003549 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003550 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003551
3552 /* If the backend does requires RDP cookie persistence, we have to
3553 * enable the corresponding analyser.
3554 */
3555 if (curproxy->options2 & PR_O2_RDPC_PRST)
3556 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003557
3558 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003559 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003560 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3561 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 +01003562 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003563 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3564 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003565 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003566 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003567 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003568
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003569 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003570 * attached to the current proxy */
3571 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3572 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003573 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003574
3575 if (!bind_conf->mux_proto)
3576 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003577
3578 /* it is possible that an incorrect mux was referenced
3579 * due to the proxy's mode not being taken into account
3580 * on first pass. Let's adjust it now.
3581 */
3582 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3583
3584 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003585 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3586 proxy_type_str(curproxy), curproxy->id,
3587 (int)bind_conf->mux_proto->token.len,
3588 bind_conf->mux_proto->token.ptr,
3589 bind_conf->arg, bind_conf->file, bind_conf->line);
3590 cfgerr++;
3591 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003592
3593 /* update the mux */
3594 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003595 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003596 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3597 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003598 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003599
3600 if (!newsrv->mux_proto)
3601 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003602
3603 /* it is possible that an incorrect mux was referenced
3604 * due to the proxy's mode not being taken into account
3605 * on first pass. Let's adjust it now.
3606 */
3607 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3608
3609 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003610 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3611 proxy_type_str(curproxy), curproxy->id,
3612 (int)newsrv->mux_proto->token.len,
3613 newsrv->mux_proto->token.ptr,
3614 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3615 cfgerr++;
3616 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003617
3618 /* update the mux */
3619 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003620 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003621
3622 /* initialize idle conns lists */
3623 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3624 int i;
3625
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003626 newsrv->available_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->available_conns));
Willy Tarreau835daa12019-02-07 14:46:29 +01003627
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003628 if (!newsrv->available_conns) {
Willy Tarreau835daa12019-02-07 14:46:29 +01003629 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003630 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau835daa12019-02-07 14:46:29 +01003631 cfgerr++;
3632 continue;
3633 }
3634
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003635 for (i = 0; i < global.nbthread; i++)
3636 LIST_INIT(&newsrv->available_conns[i]);
Willy Tarreau980855b2019-02-07 14:59:29 +01003637
3638 if (newsrv->max_idle_conns != 0) {
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003639 if (idle_conn_task == NULL) {
3640 idle_conn_task = task_new(MAX_THREADS_MASK);
3641 if (!idle_conn_task)
3642 goto err;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003643
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003644 idle_conn_task->process = srv_cleanup_idle_connections;
3645 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003646
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003647 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubbb5f1d2019-10-18 08:50:49 +02003648 idle_conn_cleanup[i] = task_new(1UL << i);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003649 if (!idle_conn_cleanup[i])
3650 goto err;
3651 idle_conn_cleanup[i]->process = srv_cleanup_toremove_connections;
3652 idle_conn_cleanup[i]->context = NULL;
Olivier Houchard859dc802019-08-08 15:47:21 +02003653 MT_LIST_INIT(&toremove_connections[i]);
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003654 }
3655 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003656
3657 newsrv->idle_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->idle_conns));
3658 if (!newsrv->idle_conns) {
3659 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3660 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3661 cfgerr++;
3662 continue;
3663 }
3664
Olivier Houchard9ea5d362019-02-14 18:29:09 +01003665 for (i = 0; i < global.nbthread; i++)
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003666 MT_LIST_INIT(&newsrv->idle_conns[i]);
3667
3668 newsrv->safe_conns = calloc((unsigned)global.nbthread, sizeof(*newsrv->safe_conns));
3669 if (!newsrv->safe_conns) {
3670 ha_alert("parsing [%s:%d] : failed to allocate idle connections for server '%s'.\n",
3671 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3672 cfgerr++;
3673 continue;
3674 }
3675
3676 for (i = 0; i < global.nbthread; i++)
3677 MT_LIST_INIT(&newsrv->safe_conns[i]);
3678
3679 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(int));
Olivier Houchardf1314812019-02-18 16:41:17 +01003680 if (!newsrv->curr_idle_thr)
3681 goto err;
Willy Tarreau980855b2019-02-07 14:59:29 +01003682 continue;
3683 err:
3684 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3685 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3686 cfgerr++;
3687 continue;
3688 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003689 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003690 }
3691
3692 /***********************************************************/
3693 /* At this point, target names have already been resolved. */
3694 /***********************************************************/
3695
3696 /* Check multi-process mode compatibility */
3697
3698 if (global.nbproc > 1 && global.stats_fe) {
3699 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3700 unsigned long mask;
3701
Willy Tarreau6daac192019-02-02 17:39:53 +01003702 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
3703 mask &= proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003704
3705 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003706 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003707 break;
3708 }
3709 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003710 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 +02003711 }
3712 }
3713
3714 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003715 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003716 if (curproxy->bind_proc)
3717 continue;
3718
3719 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3720 unsigned long mask;
3721
Willy Tarreau6daac192019-02-02 17:39:53 +01003722 mask = proc_mask(bind_conf->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003723 curproxy->bind_proc |= mask;
3724 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003725 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003726 }
3727
3728 if (global.stats_fe) {
3729 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3730 unsigned long mask;
3731
Cyril Bonté06181952016-02-24 00:14:54 +01003732 mask = bind_conf->bind_proc ? bind_conf->bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003733 global.stats_fe->bind_proc |= mask;
3734 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003735 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003736 }
3737
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003738 /* propagate bindings from frontends to backends. Don't do it if there
3739 * are any fatal errors as we must not call it with unresolved proxies.
3740 */
3741 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003742 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003743 if (curproxy->cap & PR_CAP_FE)
3744 propagate_processes(curproxy, NULL);
3745 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003746 }
3747
3748 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003749 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3750 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003751
3752 /*******************************************************/
3753 /* At this step, all proxies have a non-null bind_proc */
3754 /*******************************************************/
3755
3756 /* perform the final checks before creating tasks */
3757
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003758 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003759 struct listener *listener;
3760 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003761
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003762 /* Configure SSL for each bind line.
3763 * Note: if configuration fails at some point, the ->ctx member
3764 * remains NULL so that listeners can later detach.
3765 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003766 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003767 if (bind_conf->xprt->prepare_bind_conf &&
3768 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003769 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003770 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003771
Willy Tarreaue6b98942007-10-29 01:09:36 +01003772 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003773 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003774 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003775 int nbproc;
3776
3777 nbproc = my_popcountl(curproxy->bind_proc &
Cyril Bonté4920d702016-04-15 07:58:43 +02003778 (listener->bind_conf->bind_proc ? listener->bind_conf->bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003779 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003780
3781 if (!nbproc) /* no intersection between listener and frontend */
3782 nbproc = 1;
3783
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003784 if (!listener->luid) {
3785 /* listener ID not set, use automatic numbering with first
3786 * spare entry starting with next_luid.
3787 */
3788 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3789 listener->conf.id.key = listener->luid = next_id;
3790 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003791 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003792 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003793
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003794 /* enable separate counters */
3795 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003796 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003797 if (!listener->name)
3798 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003799 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003800
Willy Tarreaue6b98942007-10-29 01:09:36 +01003801 if (curproxy->options & PR_O_TCP_NOLING)
3802 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003803 if (!listener->maxaccept)
3804 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : 64;
3805
3806 /* we want to have an optimal behaviour on single process mode to
3807 * maximize the work at once, but in multi-process we want to keep
3808 * some fairness between processes, so we target half of the max
3809 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003810 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003811 * used to disable the limit.
3812 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003813 if (listener->maxaccept > 0 && nbproc > 1) {
3814 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003815 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3816 }
3817
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003818 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003819 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003820 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003821
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003822 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003823 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003824
Willy Tarreau620408f2016-10-21 16:37:51 +02003825 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3826 listener->options |= LI_O_TCP_L5_RULES;
3827
Willy Tarreaude3041d2010-05-31 10:56:17 +02003828 if (curproxy->mon_mask.s_addr)
3829 listener->options |= LI_O_CHK_MONNET;
3830
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003831 /* smart accept mode is automatic in HTTP mode */
3832 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003833 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003834 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3835 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003836 }
3837
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003838 /* Release unused SSL configs */
3839 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003840 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3841 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003842 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003843
Willy Tarreaua38a7172019-02-02 17:11:28 +01003844 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003845 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003846 int count, maxproc = 0;
3847
3848 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
David Carliere6c39412015-07-02 07:00:17 +00003849 count = my_popcountl(bind_conf->bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003850 if (count > maxproc)
3851 maxproc = count;
3852 }
3853 /* backends have 0, frontends have 1 or more */
3854 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003855 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3856 " limited to process assigned to the current request.\n",
3857 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003858
Willy Tarreau102df612014-05-07 23:56:38 +02003859 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003860 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3861 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003862 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003863 }
Willy Tarreau102df612014-05-07 23:56:38 +02003864 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003865 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3866 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003867 }
3868 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003869
3870 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003871 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003872 if (curproxy->task) {
3873 curproxy->task->context = curproxy;
3874 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003875 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003876 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3877 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003878 cfgerr++;
3879 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003880 }
3881
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003882 /*
3883 * Recount currently required checks.
3884 */
3885
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003886 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003887 int optnum;
3888
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003889 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3890 if (curproxy->options & cfg_opts[optnum].val)
3891 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003892
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003893 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3894 if (curproxy->options2 & cfg_opts2[optnum].val)
3895 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003896 }
3897
Willy Tarreau0fca4832015-05-01 19:12:05 +02003898 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003899 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003900 if (curproxy->table && curproxy->table->peers.p)
3901 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003902
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003903 /* compute the required process bindings for the peers from <stktables_list>
3904 * for all the stick-tables, the ones coming with "peers" sections included.
3905 */
3906 for (t = stktables_list; t; t = t->next) {
3907 struct proxy *p;
3908
3909 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3910 if (t->peers.p && t->peers.p->peers_fe) {
3911 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3912 }
3913 }
3914 }
3915
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003916 if (cfg_peers) {
3917 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003918 struct peer *p, *pb;
3919
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003920 /* In the case the peers frontend was not initialized by a
3921 stick-table used in the configuration, set its bind_proc
3922 by default to the first process. */
3923 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003924 if (curpeers->peers_fe) {
3925 if (curpeers->peers_fe->bind_proc == 0)
3926 curpeers->peers_fe->bind_proc = 1;
3927 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003928 curpeers = curpeers->next;
3929 }
3930
3931 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003932 /* Remove all peers sections which don't have a valid listener,
3933 * which are not used by any table, or which are bound to more
3934 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003935 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003936 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003937 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003938 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003939 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003940
3941 if (curpeers->state == PR_STSTOPPED) {
3942 /* the "disabled" keyword was present */
3943 if (curpeers->peers_fe)
3944 stop_proxy(curpeers->peers_fe);
3945 curpeers->peers_fe = NULL;
3946 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003947 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003948 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3949 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003950 if (curpeers->peers_fe)
3951 stop_proxy(curpeers->peers_fe);
3952 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003953 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003954 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003955 /* either it's totally stopped or too much used */
3956 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003957 ha_alert("Peers section '%s': peers referenced by sections "
3958 "running in different processes (%d different ones). "
3959 "Check global.nbproc and all tables' bind-process "
3960 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003961 cfgerr++;
3962 }
3963 stop_proxy(curpeers->peers_fe);
3964 curpeers->peers_fe = NULL;
3965 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003966 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003967 /* Initializes the transport layer of the server part of all the peers belonging to
3968 * <curpeers> section if required.
3969 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3970 * of an old process.
3971 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003972 p = curpeers->remote;
3973 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003974 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003975 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 +01003976 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3977 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003978 p = p->next;
3979 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003980 /* Configure the SSL bindings of the local peer if required. */
3981 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3982 struct list *l;
3983 struct bind_conf *bind_conf;
3984
3985 l = &curpeers->peers_fe->conf.bind;
3986 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3987 if (bind_conf->xprt->prepare_bind_conf &&
3988 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3989 cfgerr++;
3990 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003991 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02003992 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3993 curpeers->id);
3994 cfgerr++;
3995 break;
3996 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003997 last = &curpeers->next;
3998 continue;
3999 }
4000
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004001 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004002 p = curpeers->remote;
4003 while (p) {
4004 pb = p->next;
4005 free(p->id);
4006 free(p);
4007 p = pb;
4008 }
4009
4010 /* Destroy and unlink this curpeers section.
4011 * Note: curpeers is backed up into *last.
4012 */
4013 free(curpeers->id);
4014 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004015 /* Reset any refereance to this peers section in the list of stick-tables */
4016 for (t = stktables_list; t; t = t->next) {
4017 if (t->peers.p && t->peers.p == *last)
4018 t->peers.p = NULL;
4019 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004020 free(*last);
4021 *last = curpeers;
4022 }
4023 }
4024
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004025 for (t = stktables_list; t; t = t->next) {
4026 if (t->proxy)
4027 continue;
4028 if (!stktable_init(t)) {
4029 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4030 cfgerr++;
4031 }
4032 }
4033
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004034 /* initialize stick-tables on backend capable proxies. This must not
4035 * be done earlier because the data size may be discovered while parsing
4036 * other proxies.
4037 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004038 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004039 if (curproxy->state == PR_STSTOPPED || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004040 continue;
4041
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004042 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004043 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004044 cfgerr++;
4045 }
4046 }
4047
Simon Horman0d16a402015-01-30 11:22:58 +09004048 if (mailers) {
4049 struct mailers *curmailers = mailers, **last;
4050 struct mailer *m, *mb;
4051
4052 /* Remove all mailers sections which don't have a valid listener.
4053 * This can happen when a mailers section is never referenced.
4054 */
4055 last = &mailers;
4056 while (*last) {
4057 curmailers = *last;
4058 if (curmailers->users) {
4059 last = &curmailers->next;
4060 continue;
4061 }
4062
Christopher Faulet767a84b2017-11-24 16:50:31 +01004063 ha_warning("Removing incomplete section 'mailers %s'.\n",
4064 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004065
4066 m = curmailers->mailer_list;
4067 while (m) {
4068 mb = m->next;
4069 free(m->id);
4070 free(m);
4071 m = mb;
4072 }
4073
4074 /* Destroy and unlink this curmailers section.
4075 * Note: curmailers is backed up into *last.
4076 */
4077 free(curmailers->id);
4078 curmailers = curmailers->next;
4079 free(*last);
4080 *last = curmailers;
4081 }
4082 }
4083
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004084 /* Update server_state_file_name to backend name if backend is supposed to use
4085 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004086 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004087 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4088 curproxy->server_state_file_name == NULL)
4089 curproxy->server_state_file_name = strdup(curproxy->id);
4090 }
4091
Ben Draut054fbee2018-04-13 15:43:04 -06004092 list_for_each_entry(curr_resolvers, &dns_resolvers, list) {
4093 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
4094 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
4095 curr_resolvers->id, curr_resolvers->conf.file,
4096 curr_resolvers->conf.line);
4097 err_code |= ERR_WARN;
4098 }
4099 }
4100
William Lallemand48b4bb42017-10-23 14:36:34 +02004101 list_for_each_entry(postparser, &postparsers, list) {
4102 if (postparser->func)
4103 cfgerr += postparser->func();
4104 }
4105
Willy Tarreaubb925012009-07-23 13:36:36 +02004106 if (cfgerr > 0)
4107 err_code |= ERR_ALERT | ERR_FATAL;
4108 out:
4109 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004110}
4111
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004112/*
4113 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4114 * parsing sessions.
4115 */
4116void cfg_register_keywords(struct cfg_kw_list *kwl)
4117{
4118 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
4119}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004120
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004121/*
4122 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4123 */
4124void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4125{
4126 LIST_DEL(&kwl->list);
4127 LIST_INIT(&kwl->list);
4128}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004129
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004130/* this function register new section in the haproxy configuration file.
4131 * <section_name> is the name of this new section and <section_parser>
4132 * is the called parser. If two section declaration have the same name,
4133 * only the first declared is used.
4134 */
4135int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004136 int (*section_parser)(const char *, int, char **, int),
4137 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004138{
4139 struct cfg_section *cs;
4140
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004141 list_for_each_entry(cs, &sections, list) {
4142 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004143 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004144 return 0;
4145 }
4146 }
4147
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004148 cs = calloc(1, sizeof(*cs));
4149 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004150 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004151 return 0;
4152 }
4153
4154 cs->section_name = section_name;
4155 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004156 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004157
4158 LIST_ADDQ(&sections, &cs->list);
4159
4160 return 1;
4161}
4162
William Lallemand48b4bb42017-10-23 14:36:34 +02004163/* this function register a new function which will be called once the haproxy
4164 * configuration file has been parsed. It's useful to check dependencies
4165 * between sections or to resolve items once everything is parsed.
4166 */
4167int cfg_register_postparser(char *name, int (*func)())
4168{
4169 struct cfg_postparser *cp;
4170
4171 cp = calloc(1, sizeof(*cp));
4172 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004173 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004174 return 0;
4175 }
4176 cp->name = name;
4177 cp->func = func;
4178
4179 LIST_ADDQ(&postparsers, &cp->list);
4180
4181 return 1;
4182}
4183
Willy Tarreaubaaee002006-06-26 02:48:02 +02004184/*
David Carlier845efb52015-09-25 11:49:18 +01004185 * free all config section entries
4186 */
4187void cfg_unregister_sections(void)
4188{
4189 struct cfg_section *cs, *ics;
4190
4191 list_for_each_entry_safe(cs, ics, &sections, list) {
4192 LIST_DEL(&cs->list);
4193 free(cs);
4194 }
4195}
4196
Christopher Faulet7110b402016-10-26 11:09:44 +02004197void cfg_backup_sections(struct list *backup_sections)
4198{
4199 struct cfg_section *cs, *ics;
4200
4201 list_for_each_entry_safe(cs, ics, &sections, list) {
4202 LIST_DEL(&cs->list);
4203 LIST_ADDQ(backup_sections, &cs->list);
4204 }
4205}
4206
4207void cfg_restore_sections(struct list *backup_sections)
4208{
4209 struct cfg_section *cs, *ics;
4210
4211 list_for_each_entry_safe(cs, ics, backup_sections, list) {
4212 LIST_DEL(&cs->list);
4213 LIST_ADDQ(&sections, &cs->list);
4214 }
4215}
4216
Willy Tarreaue6552512018-11-26 11:33:13 +01004217/* these are the config sections handled by default */
4218REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4219REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4220REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4221REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4222REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4223REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4224REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4225REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4226REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
4227REGISTER_CONFIG_SECTION("resolvers", cfg_parse_resolvers, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004228
David Carlier845efb52015-09-25 11:49:18 +01004229/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004230 * Local variables:
4231 * c-indent-level: 8
4232 * c-basic-offset: 8
4233 * End:
4234 */