blob: 9c8efa2f6cd6f46c0fd38ab1d8be061a3e2408d9 [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 Tarreau8d366972020-05-27 16:10:29 +020047#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020048#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020049#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020050#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020051#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020052#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020053#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020054#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020055#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020056#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020057#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020058#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020059#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020060#include <haproxy/mailers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020061#include <haproxy/namespace.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020062#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020063#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020064#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020065#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020066#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020067#include <haproxy/proxy.h>
Emeric Brunc9437992021-02-12 19:42:55 +010068#include <haproxy/resolvers.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>
Frédéric Lécaille884f2e92020-11-23 14:23:21 +010081#include <haproxy/xprt_quic.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020082
83
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010084/* Used to chain configuration sections definitions. This list
85 * stores struct cfg_section
86 */
87struct list sections = LIST_HEAD_INIT(sections);
88
William Lallemand48b4bb42017-10-23 14:36:34 +020089struct list postparsers = LIST_HEAD_INIT(postparsers);
90
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +010091char *cursection = NULL;
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 Tarreau4b103022021-02-12 17:59:10 +0100101/* nested if/elif/else/endif block states */
102enum nested_cond_state {
103 NESTED_COND_IF_TAKE, // "if" with a true condition
104 NESTED_COND_IF_DROP, // "if" with a false condition
105 NESTED_COND_IF_SKIP, // "if" masked by an outer false condition
106
107 NESTED_COND_ELIF_TAKE, // "elif" with a true condition from a false one
108 NESTED_COND_ELIF_DROP, // "elif" with a false condition from a false one
109 NESTED_COND_ELIF_SKIP, // "elif" masked by an outer false condition or a previously taken if
110
111 NESTED_COND_ELSE_TAKE, // taken "else" after an if false condition
112 NESTED_COND_ELSE_DROP, // "else" masked by outer false condition or an if true condition
113};
114
115/* 100 levels of nested conditions should already be sufficient */
116#define MAXNESTEDCONDS 100
117
Willy Tarreaubaaee002006-06-26 02:48:02 +0200118/*
119 * converts <str> to a list of listeners which are dynamically allocated.
120 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
121 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
122 * - <port> is a numerical port from 1 to 65535 ;
123 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
124 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200125 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
126 * not NULL, it must be a valid pointer to either NULL or a freeable area that
127 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200128 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200129int 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 +0200130{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200131 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100132 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200133 int port, end;
134
135 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200136
Willy Tarreaubaaee002006-06-26 02:48:02 +0200137 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200138 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100139 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200140
141 str = next;
142 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100143 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200144 *next++ = 0;
145 }
146
Willy Tarreau5fc93282020-09-16 18:25:03 +0200147 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreau72b8c1f2015-09-08 15:50:19 +0200148 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200149 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200150 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100151 if (!ss2)
152 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200153
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100154 /* OK the address looks correct */
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100155
156#ifdef USE_QUIC
157 /* The transport layer automatically switches to QUIC when QUIC
158 * is selected, regardless of bind_conf settings. We then need
159 * to initialize QUIC params.
160 */
161 if (proto->sock_type == SOCK_DGRAM && proto->ctrl_type == SOCK_STREAM) {
162 bind_conf->xprt = xprt_get(XPRT_QUIC);
163 quic_transport_params_init(&bind_conf->quic_params, 1);
164 }
165#endif
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200166 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200167 memprintf(err, "%s for address '%s'.\n", *err, str);
168 goto fail;
169 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200170 } /* end while(next) */
171 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200172 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200173 fail:
174 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200175 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200176}
177
William Lallemand6e62fb62015-04-28 16:55:23 +0200178/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200179 * converts <str> to a list of datagram-oriented listeners which are dynamically
180 * allocated.
181 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
182 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
183 * - <port> is a numerical port from 1 to 65535 ;
184 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
185 * This can be repeated as many times as necessary, separated by a coma.
186 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
187 * not NULL, it must be a valid pointer to either NULL or a freeable area that
188 * will be replaced with an error message.
189 */
190int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
191{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200192 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200193 char *next, *dupstr;
194 int port, end;
195
196 next = dupstr = strdup(str);
197
198 while (next && *next) {
199 struct sockaddr_storage *ss2;
200 int fd = -1;
201
202 str = next;
203 /* 1) look for the end of the first address */
204 if ((next = strchr(str, ',')) != NULL) {
205 *next++ = 0;
206 }
207
Willy Tarreau5fc93282020-09-16 18:25:03 +0200208 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreauaa333122020-09-16 15:13:04 +0200209 curproxy == global.stats_fe ? NULL : global.unix_bind.prefix,
210 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
211 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
212 if (!ss2)
213 goto fail;
214
215 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200216 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200217 memprintf(err, "%s for address '%s'.\n", *err, str);
218 goto fail;
219 }
220 } /* end while(next) */
221 free(dupstr);
222 return 1;
223 fail:
224 free(dupstr);
225 return 0;
226}
227
228/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100229 * Report an error in <msg> when there are too many arguments. This version is
230 * intended to be used by keyword parsers so that the message will be included
231 * into the general error message. The index is the current keyword in args.
232 * Return 0 if the number of argument is correct, otherwise build a message and
233 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
234 * message may also be null, it will simply not be produced (useful to check only).
235 * <msg> and <err_code> are only affected on error.
236 */
237int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
238{
239 int i;
240
241 if (!*args[index + maxarg + 1])
242 return 0;
243
244 if (msg) {
245 *msg = NULL;
246 memprintf(msg, "%s", args[0]);
247 for (i = 1; i <= index; i++)
248 memprintf(msg, "%s %s", *msg, args[i]);
249
250 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
251 }
252 if (err_code)
253 *err_code |= ERR_ALERT | ERR_FATAL;
254
255 return 1;
256}
257
258/*
259 * same as too_many_args_idx with a 0 index
260 */
261int too_many_args(int maxarg, char **args, char **msg, int *err_code)
262{
263 return too_many_args_idx(maxarg, 0, args, msg, err_code);
264}
265
266/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200267 * Report a fatal Alert when there is too much arguments
268 * The index is the current keyword in args
269 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
270 * Fill err_code with an ERR_ALERT and an ERR_FATAL
271 */
272int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
273{
274 char *kw = NULL;
275 int i;
276
277 if (!*args[index + maxarg + 1])
278 return 0;
279
280 memprintf(&kw, "%s", args[0]);
281 for (i = 1; i <= index; i++) {
282 memprintf(&kw, "%s %s", kw, args[i]);
283 }
284
Christopher Faulet767a84b2017-11-24 16:50:31 +0100285 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 +0200286 free(kw);
287 *err_code |= ERR_ALERT | ERR_FATAL;
288 return 1;
289}
290
291/*
292 * same as alertif_too_many_args_idx with a 0 index
293 */
294int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
295{
296 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
297}
298
Willy Tarreau61d18892009-03-31 10:49:21 +0200299
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100300/* Report it if a request ACL condition uses some keywords that are incompatible
301 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
302 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
303 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100304 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100305int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100306{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100307 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200308 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100309
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100310 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100311 return 0;
312
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100313 acl = acl_cond_conflicts(cond, where);
314 if (acl) {
315 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100316 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
317 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100318 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100319 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
320 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100321 return ERR_WARN;
322 }
323 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100324 return 0;
325
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100326 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100327 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
328 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100329 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100330 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
331 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100332 return ERR_WARN;
333}
334
Willy Tarreaue2afcc42021-03-12 09:08:04 +0100335/* try to find in <list> the word that looks closest to <word> by counting
336 * transitions between letters, digits and other characters. Will return the
337 * best matching word if found, otherwise NULL. An optional array of extra
338 * words to compare may be passed in <extra>, but it must then be terminated
339 * by a NULL entry. If unused it may be NULL.
340 */
341const char *cfg_find_best_match(const char *word, const struct list *list, int section, const char **extra)
342{
343 uint8_t word_sig[1024]; // 0..25=letter, 26=digit, 27=other, 28=begin, 29=end
344 uint8_t list_sig[1024];
345 const struct cfg_kw_list *kwl;
346 int index;
347 const char *best_ptr = NULL;
348 int dist, best_dist = INT_MAX;
349
350 make_word_fingerprint(word_sig, word);
351 list_for_each_entry(kwl, list, list) {
352 for (index = 0; kwl->kw[index].kw != NULL; index++) {
353 if (kwl->kw[index].section != section)
354 continue;
355
356 make_word_fingerprint(list_sig, kwl->kw[index].kw);
357 dist = word_fingerprint_distance(word_sig, list_sig);
358 if (dist < best_dist) {
359 best_dist = dist;
360 best_ptr = kwl->kw[index].kw;
361 }
362 }
363 }
364
365 while (extra && *extra) {
366 make_word_fingerprint(list_sig, *extra);
367 dist = word_fingerprint_distance(word_sig, list_sig);
368 if (dist < best_dist) {
369 best_dist = dist;
370 best_ptr = *extra;
371 }
372 extra++;
373 }
374
375 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
376 best_ptr = NULL;
377 return best_ptr;
378}
379
380
Christopher Faulet62519022017-10-16 15:49:32 +0200381/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100382 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100383 * two such numbers delimited by a dash ('-'). On success, it returns
384 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200385 *
386 * Note: this function can also be used to parse a thread number or a set of
387 * threads.
388 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100389int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200390{
Christopher Faulet26028f62017-11-22 15:01:51 +0100391 if (autoinc) {
392 *autoinc = 0;
393 if (strncmp(arg, "auto:", 5) == 0) {
394 arg += 5;
395 *autoinc = 1;
396 }
397 }
398
Christopher Faulet62519022017-10-16 15:49:32 +0200399 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100400 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200401 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100402 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200403 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100404 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200405 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100406 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100407 unsigned int low, high;
408
Christopher Faulet18cca782019-02-07 16:29:41 +0100409 for (p = arg; *p; p++) {
410 if (*p == '-' && !dash)
411 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100412 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100413 memprintf(err, "'%s' is not a valid number/range.", arg);
414 return -1;
415 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100416 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100417
418 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100419 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100420 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100421
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100422 if (high < low) {
423 unsigned int swap = low;
424 low = high;
425 high = swap;
426 }
427
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100428 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100429 memprintf(err, "'%s' is not a valid number/range."
430 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100431 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100432 return 1;
433 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100434
435 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100436 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200437 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100438 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100439
Christopher Faulet5ab51772017-11-22 11:21:58 +0100440 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200441}
442
David Carlier7e351ee2017-12-01 09:14:02 +0000443#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200444/* Parse cpu sets. Each CPU set is either a unique number between 0 and
445 * <LONGBITS> or a range with two such numbers delimited by a dash
446 * ('-'). Multiple CPU numbers or ranges may be specified. On success, it
447 * returns 0. otherwise it returns 1 with an error message in <err>.
448 */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100449unsigned long parse_cpu_set(const char **args, unsigned long *cpu_set, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200450{
451 int cur_arg = 0;
452
453 *cpu_set = 0;
454 while (*args[cur_arg]) {
455 char *dash;
456 unsigned int low, high;
457
Willy Tarreau90807112020-02-25 08:16:33 +0100458 if (!isdigit((unsigned char)*args[cur_arg])) {
Christopher Faulet62519022017-10-16 15:49:32 +0200459 memprintf(err, "'%s' is not a CPU range.\n", args[cur_arg]);
460 return -1;
461 }
462
463 low = high = str2uic(args[cur_arg]);
464 if ((dash = strchr(args[cur_arg], '-')) != NULL)
Christopher Fauletff4121f2017-11-22 16:38:49 +0100465 high = ((!*(dash+1)) ? LONGBITS-1 : str2uic(dash + 1));
Christopher Faulet62519022017-10-16 15:49:32 +0200466
467 if (high < low) {
468 unsigned int swap = low;
469 low = high;
470 high = swap;
471 }
472
473 if (high >= LONGBITS) {
474 memprintf(err, "supports CPU numbers from 0 to %d.\n", LONGBITS - 1);
475 return 1;
476 }
477
478 while (low <= high)
479 *cpu_set |= 1UL << low++;
480
481 cur_arg++;
482 }
483 return 0;
484}
David Carlier7e351ee2017-12-01 09:14:02 +0000485#endif
486
Frédéric Lécaille18251032019-01-11 11:07:15 +0100487/* Allocate and initialize the frontend of a "peers" section found in
488 * file <file> at line <linenum> with <id> as ID.
489 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200490 * Note that this function may be called from "default-server"
491 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100492 */
493static int init_peers_frontend(const char *file, int linenum,
494 const char *id, struct peers *peers)
495{
496 struct proxy *p;
497
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200498 if (peers->peers_fe) {
499 p = peers->peers_fe;
500 goto out;
501 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100502
Frédéric Lécaille18251032019-01-11 11:07:15 +0100503 p = calloc(1, sizeof *p);
504 if (!p) {
505 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
506 return -1;
507 }
508
509 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200510 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100511 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200512 /* Finally store this frontend. */
513 peers->peers_fe = p;
514
515 out:
516 if (id && !p->id)
517 p->id = strdup(id);
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200518 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100519 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100520 if (linenum != -1)
521 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100522
523 return 0;
524}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100525
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100526/* Only change ->file, ->line and ->arg struct bind_conf member values
527 * if already present.
528 */
529static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
530 const char *file, int line,
531 const char *arg, struct xprt_ops *xprt)
532{
533 struct bind_conf *bind_conf;
534
535 if (!LIST_ISEMPTY(&p->conf.bind)) {
536 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
537 free(bind_conf->file);
538 bind_conf->file = strdup(file);
539 bind_conf->line = line;
540 if (arg) {
541 free(bind_conf->arg);
542 bind_conf->arg = strdup(arg);
543 }
544 }
545 else {
546 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
547 }
548
549 return bind_conf;
550}
551
552/*
553 * Allocate a new struct peer parsed at line <linenum> in file <file>
554 * to be added to <peers>.
555 * Returns the new allocated structure if succeeded, NULL if not.
556 */
557static struct peer *cfg_peers_add_peer(struct peers *peers,
558 const char *file, int linenum,
559 const char *id, int local)
560{
561 struct peer *p;
562
563 p = calloc(1, sizeof *p);
564 if (!p) {
565 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
566 return NULL;
567 }
568
569 /* the peers are linked backwards first */
570 peers->count++;
571 p->next = peers->remote;
572 peers->remote = p;
573 p->conf.file = strdup(file);
574 p->conf.line = linenum;
575 p->last_change = now.tv_sec;
576 p->xprt = xprt_get(XPRT_RAW);
577 p->sock_init_arg = NULL;
578 HA_SPIN_INIT(&p->lock);
579 if (id)
580 p->id = strdup(id);
581 if (local) {
582 p->local = 1;
583 peers->local = p;
584 }
585
586 return p;
587}
588
Willy Tarreaubaaee002006-06-26 02:48:02 +0200589/*
William Lallemand51097192015-04-14 16:35:22 +0200590 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200591 * Returns the error code, 0 if OK, or any combination of :
592 * - ERR_ABORT: must abort ASAP
593 * - ERR_FATAL: we can continue parsing but not start the service
594 * - ERR_WARN: a warning has been emitted
595 * - ERR_ALERT: an alert has been emitted
596 * Only the two first ones can stop processing, the two others are just
597 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200598 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200599int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
600{
601 static struct peers *curpeers = NULL;
602 struct peer *newpeer = NULL;
603 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200604 struct bind_conf *bind_conf;
605 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200606 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100607 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100608 static int bind_line, peer_line;
609
610 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
611 int cur_arg;
612 static int kws_dumped;
613 struct bind_conf *bind_conf;
614 struct bind_kw *kw;
Emeric Brun32da3c42010-09-23 18:39:19 +0200615
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100616 cur_arg = 1;
617
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200618 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
619 err_code |= ERR_ALERT | ERR_ABORT;
620 goto out;
621 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100622
623 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
624 NULL, xprt_get(XPRT_RAW));
625 if (*args[0] == 'b') {
626 struct listener *l;
627
628 if (peer_line) {
629 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
630 err_code |= ERR_ALERT | ERR_FATAL;
631 goto out;
632 }
633
634 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
635 if (errmsg && *errmsg) {
636 indent_msg(&errmsg, 2);
637 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
638 }
639 else
640 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
641 file, linenum, args[0], args[1], args[2]);
642 err_code |= ERR_FATAL;
643 goto out;
644 }
645 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
646 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100647 l->accept = session_accept_fd;
648 l->analysers |= curpeers->peers_fe->fe_req_ana;
649 l->default_target = curpeers->peers_fe->default_target;
650 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100651 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100652
653 bind_line = 1;
654 if (cfg_peers->local) {
655 newpeer = cfg_peers->local;
656 }
657 else {
658 /* This peer is local.
659 * Note that we do not set the peer ID. This latter is initialized
660 * when parsing "peer" or "server" line.
661 */
662 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
663 if (!newpeer) {
664 err_code |= ERR_ALERT | ERR_ABORT;
665 goto out;
666 }
667 }
Willy Tarreau37159062020-08-27 07:48:42 +0200668 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200669 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100670 cur_arg++;
671 }
672
673 while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) {
674 int ret;
675
676 ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg);
677 err_code |= ret;
678 if (ret) {
679 if (errmsg && *errmsg) {
680 indent_msg(&errmsg, 2);
681 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
682 }
683 else
684 ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n",
685 file, linenum, args[cur_arg]);
686 if (ret & ERR_FATAL)
687 goto out;
688 }
689 cur_arg += 1 + kw->skip;
690 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100691 if (*args[cur_arg] != 0) {
Tim Duesterhus04bcaa12019-05-12 22:54:50 +0200692 char *kws = NULL;
693
694 if (!kws_dumped) {
695 kws_dumped = 1;
696 bind_dump_kws(&kws);
697 indent_msg(&kws, 4);
698 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100699 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.%s%s\n",
700 file, linenum, args[cur_arg], cursection,
701 kws ? " Registered keywords :" : "", kws ? kws: "");
702 free(kws);
703 err_code |= ERR_ALERT | ERR_FATAL;
704 goto out;
705 }
706 }
707 else if (strcmp(args[0], "default-server") == 0) {
708 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
709 err_code |= ERR_ALERT | ERR_ABORT;
710 goto out;
711 }
Emeric Brund3db3842020-07-21 16:54:36 +0200712 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, 0, 1, 1);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200713 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100714 else if (strcmp(args[0], "log") == 0) {
715 if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) {
716 err_code |= ERR_ALERT | ERR_ABORT;
717 goto out;
718 }
719 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), &errmsg)) {
720 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
721 err_code |= ERR_ALERT | ERR_FATAL;
722 goto out;
723 }
724 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200725 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100726 /* Initialize these static variables when entering a new "peers" section*/
727 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100728 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100729 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100730 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100731 goto out;
732 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200733
William Lallemand6e62fb62015-04-28 16:55:23 +0200734 if (alertif_too_many_args(1, file, linenum, args, &err_code))
735 goto out;
736
Emeric Brun32da3c42010-09-23 18:39:19 +0200737 err = invalid_char(args[1]);
738 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100739 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
740 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100741 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100742 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200743 }
744
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200745 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200746 /*
747 * If there are two proxies with the same name only following
748 * combinations are allowed:
749 */
750 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100751 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
752 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200753 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200754 }
755 }
756
Vincent Bernat02779b62016-04-03 13:48:43 +0200757 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100758 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200759 err_code |= ERR_ALERT | ERR_ABORT;
760 goto out;
761 }
762
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200763 curpeers->next = cfg_peers;
764 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200765 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200766 curpeers->conf.line = linenum;
767 curpeers->last_change = now.tv_sec;
768 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200769 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200770 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200771 else if (strcmp(args[0], "peer") == 0 ||
772 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100773 int local_peer, peer;
Emeric Brun32da3c42010-09-23 18:39:19 +0200774
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100775 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100776 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100777 /* The local peer may have already partially been parsed on a "bind" line. */
778 if (*args[0] == 'p') {
779 if (bind_line) {
780 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
781 err_code |= ERR_ALERT | ERR_FATAL;
782 goto out;
783 }
784 peer_line = 1;
785 }
786 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
787 /* The local peer has already been initialized on a "bind" line.
788 * Let's use it and store its ID.
789 */
790 newpeer = cfg_peers->local;
791 newpeer->id = strdup(localpeer);
792 }
793 else {
794 if (local_peer && cfg_peers->local) {
795 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
796 file, linenum, args[0], args[1],
797 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
798 err_code |= ERR_FATAL;
799 goto out;
800 }
801 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
802 if (!newpeer) {
803 err_code |= ERR_ALERT | ERR_ABORT;
804 goto out;
805 }
806 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200807
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100808 /* Line number and peer ID are updated only if this peer is the local one. */
809 if (init_peers_frontend(file,
810 newpeer->local ? linenum: -1,
811 newpeer->local ? newpeer->id : NULL,
812 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200813 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100814 goto out;
815 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100816
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100817 /* This initializes curpeer->peers->peers_fe->srv.
818 * The server address is parsed only if we are parsing a "peer" line,
819 * or if we are parsing a "server" line and the current peer is not the local one.
820 */
Emeric Brund3db3842020-07-21 16:54:36 +0200821 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, peer || !local_peer, 1, 1);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200822 if (!curpeers->peers_fe->srv) {
823 /* Remove the newly allocated peer. */
824 if (newpeer != curpeers->local) {
825 struct peer *p;
826
827 p = curpeers->remote;
828 curpeers->remote = curpeers->remote->next;
829 free(p->id);
830 free(p);
831 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200832 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200833 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200834
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100835 /* If the peer address has just been parsed, let's copy it to <newpeer>
836 * and initializes ->proto.
837 */
838 if (peer || !local_peer) {
839 newpeer->addr = curpeers->peers_fe->srv->addr;
840 newpeer->proto = protocol_by_family(newpeer->addr.ss_family);
841 }
842
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100843 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200844 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100845 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200846
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100847 newpeer->srv = curpeers->peers_fe->srv;
848 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200849 goto out;
850
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100851 /* The lines above are reserved to "peer" lines. */
852 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200853 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200854
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100855 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 +0100856
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100857 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
858 if (errmsg && *errmsg) {
859 indent_msg(&errmsg, 2);
860 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 +0100861 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100862 else
863 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
864 file, linenum, args[0], args[1], args[2]);
865 err_code |= ERR_FATAL;
866 goto out;
867 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100868
869 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
870 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100871 l->accept = session_accept_fd;
872 l->analysers |= curpeers->peers_fe->fe_req_ana;
873 l->default_target = curpeers->peers_fe->default_target;
874 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100875 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100876 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100877 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100878 struct stktable *t, *other;
879 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100880 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100881
882 /* Line number and peer ID are updated only if this peer is the local one. */
883 if (init_peers_frontend(file, -1, NULL, curpeers) != 0) {
884 err_code |= ERR_ALERT | ERR_ABORT;
885 goto out;
886 }
887
888 other = stktable_find_by_name(args[1]);
889 if (other) {
890 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
891 file, linenum, args[1],
892 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
893 other->proxy ? other->id : other->peers.p->id,
894 other->conf.file, other->conf.line);
895 err_code |= ERR_ALERT | ERR_FATAL;
896 goto out;
897 }
898
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100899 /* Build the stick-table name, concatenating the "peers" section name
900 * followed by a '/' character and the table name argument.
901 */
902 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100903 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100904 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
905 file, linenum, args[0], args[1]);
906 err_code |= ERR_ALERT | ERR_FATAL;
907 goto out;
908 }
909
910 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100911 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100912 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
913 file, linenum, args[0], args[1]);
914 err_code |= ERR_ALERT | ERR_FATAL;
915 goto out;
916 }
917
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100918 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100919 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100920 if (!t || !id) {
921 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
922 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +0200923 free(t);
924 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100925 err_code |= ERR_ALERT | ERR_FATAL;
926 goto out;
927 }
928
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100929 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +0200930 if (err_code & ERR_FATAL) {
931 free(t);
932 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100933 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +0200934 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100935
936 stktable_store_name(t);
937 t->next = stktables_list;
938 stktables_list = t;
939 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100940 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200941 curpeers->disabled = 1;
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200942 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100943 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200944 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +0200945 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200946 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100947 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +0200948 err_code |= ERR_ALERT | ERR_FATAL;
949 goto out;
950 }
951
952out:
Willy Tarreau902636f2013-03-10 19:44:48 +0100953 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +0200954 return err_code;
955}
956
Baptiste Assmann325137d2015-04-13 23:40:55 +0200957/*
William Lallemand51097192015-04-14 16:35:22 +0200958 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +0900959 * Returns the error code, 0 if OK, or any combination of :
960 * - ERR_ABORT: must abort ASAP
961 * - ERR_FATAL: we can continue parsing but not start the service
962 * - ERR_WARN: a warning has been emitted
963 * - ERR_ALERT: an alert has been emitted
964 * Only the two first ones can stop processing, the two others are just
965 * indicators.
966 */
967int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
968{
969 static struct mailers *curmailers = NULL;
970 struct mailer *newmailer = NULL;
971 const char *err;
972 int err_code = 0;
973 char *errmsg = NULL;
974
975 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
976 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100977 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +0900978 err_code |= ERR_ALERT | ERR_ABORT;
979 goto out;
980 }
981
982 err = invalid_char(args[1]);
983 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100984 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
985 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +0900986 err_code |= ERR_ALERT | ERR_ABORT;
987 goto out;
988 }
989
990 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
991 /*
992 * If there are two proxies with the same name only following
993 * combinations are allowed:
994 */
995 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100996 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
997 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200998 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +0900999 }
1000 }
1001
Vincent Bernat02779b62016-04-03 13:48:43 +02001002 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001003 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001004 err_code |= ERR_ALERT | ERR_ABORT;
1005 goto out;
1006 }
1007
1008 curmailers->next = mailers;
1009 mailers = curmailers;
1010 curmailers->conf.file = strdup(file);
1011 curmailers->conf.line = linenum;
1012 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001013 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1014 * But need enough time so that timeouts don't occur
1015 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001016 }
1017 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1018 struct sockaddr_storage *sk;
1019 int port1, port2;
1020 struct protocol *proto;
1021
1022 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001023 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1024 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001025 err_code |= ERR_ALERT | ERR_FATAL;
1026 goto out;
1027 }
1028
1029 err = invalid_char(args[1]);
1030 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001031 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1032 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001033 err_code |= ERR_ALERT | ERR_FATAL;
1034 goto out;
1035 }
1036
Vincent Bernat02779b62016-04-03 13:48:43 +02001037 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001038 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001039 err_code |= ERR_ALERT | ERR_ABORT;
1040 goto out;
1041 }
1042
1043 /* the mailers are linked backwards first */
1044 curmailers->count++;
1045 newmailer->next = curmailers->mailer_list;
1046 curmailers->mailer_list = newmailer;
1047 newmailer->mailers = curmailers;
1048 newmailer->conf.file = strdup(file);
1049 newmailer->conf.line = linenum;
1050
1051 newmailer->id = strdup(args[1]);
1052
Willy Tarreau5fc93282020-09-16 18:25:03 +02001053 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001054 &errmsg, NULL, NULL,
1055 PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_XPRT | PA_O_CONNECT);
Simon Horman0d16a402015-01-30 11:22:58 +09001056 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001057 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001058 err_code |= ERR_ALERT | ERR_FATAL;
1059 goto out;
1060 }
1061
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001062 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001063 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1064 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001065 err_code |= ERR_ALERT | ERR_FATAL;
1066 goto out;
1067 }
1068
Simon Horman0d16a402015-01-30 11:22:58 +09001069 newmailer->addr = *sk;
1070 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001071 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001072 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001073 }
1074 else if (strcmp(args[0], "timeout") == 0) {
1075 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001076 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1077 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001078 err_code |= ERR_ALERT | ERR_FATAL;
1079 goto out;
1080 }
1081 else if (strcmp(args[1], "mail") == 0) {
1082 const char *res;
1083 unsigned int timeout_mail;
1084 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001085 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1086 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001087 err_code |= ERR_ALERT | ERR_FATAL;
1088 goto out;
1089 }
1090 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001091 if (res == PARSE_TIME_OVER) {
1092 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1093 file, linenum, args[2], args[0], args[1]);
1094 err_code |= ERR_ALERT | ERR_FATAL;
1095 goto out;
1096 }
1097 else if (res == PARSE_TIME_UNDER) {
1098 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1099 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001100 err_code |= ERR_ALERT | ERR_FATAL;
1101 goto out;
1102 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001103 else if (res) {
1104 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1105 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001106 err_code |= ERR_ALERT | ERR_FATAL;
1107 goto out;
1108 }
1109 curmailers->timeout.mail = timeout_mail;
1110 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001111 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001112 file, linenum, args[0], args[1]);
1113 err_code |= ERR_ALERT | ERR_FATAL;
1114 goto out;
1115 }
1116 }
Simon Horman0d16a402015-01-30 11:22:58 +09001117 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001118 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001119 err_code |= ERR_ALERT | ERR_FATAL;
1120 goto out;
1121 }
1122
1123out:
1124 free(errmsg);
1125 return err_code;
1126}
1127
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001128void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001129{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001130 ha_free(&p->email_alert.mailers.name);
1131 ha_free(&p->email_alert.from);
1132 ha_free(&p->email_alert.to);
1133 ha_free(&p->email_alert.myhostname);
Simon Horman9dc49962015-01-30 11:22:59 +09001134}
1135
Willy Tarreaubaaee002006-06-26 02:48:02 +02001136
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001137int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001138cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1139{
Willy Tarreaue5733232019-05-22 19:24:06 +02001140#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001141 const char *err;
1142 const char *item = args[0];
1143
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001144 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001145 return 0;
1146 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001147 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001148 size_t idx = 1;
1149 const char *current;
1150 while (*(current = args[idx++])) {
1151 err = invalid_char(current);
1152 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001153 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1154 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001155 return ERR_ALERT | ERR_FATAL;
1156 }
1157
1158 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001159 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1160 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001161 return ERR_ALERT | ERR_FATAL;
1162 }
1163 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001164 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1165 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001166 return ERR_ALERT | ERR_FATAL;
1167 }
1168 }
1169 }
1170
1171 return 0;
1172#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001173 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1174 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001175 return ERR_ALERT | ERR_FATAL;
1176#endif
1177}
1178
1179int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001180cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1181{
1182
1183 int err_code = 0;
1184 const char *err;
1185
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001186 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001187 struct userlist *newul;
1188
1189 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001190 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1191 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001192 err_code |= ERR_ALERT | ERR_FATAL;
1193 goto out;
1194 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001195 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1196 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001197
1198 err = invalid_char(args[1]);
1199 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001200 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1201 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001202 err_code |= ERR_ALERT | ERR_FATAL;
1203 goto out;
1204 }
1205
1206 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001207 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001208 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1209 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001210 err_code |= ERR_WARN;
1211 goto out;
1212 }
1213
Vincent Bernat02779b62016-04-03 13:48:43 +02001214 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001215 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001216 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001217 err_code |= ERR_ALERT | ERR_ABORT;
1218 goto out;
1219 }
1220
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001221 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001222 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001223 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001224 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001225 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001226 goto out;
1227 }
1228
1229 newul->next = userlist;
1230 userlist = newul;
1231
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001232 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001233 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001234 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001235 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001236
1237 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001238 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1239 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001240 err_code |= ERR_ALERT | ERR_FATAL;
1241 goto out;
1242 }
1243
1244 err = invalid_char(args[1]);
1245 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001246 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1247 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001248 err_code |= ERR_ALERT | ERR_FATAL;
1249 goto out;
1250 }
1251
William Lallemand4ac9f542015-05-28 18:03:51 +02001252 if (!userlist)
1253 goto out;
1254
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001255 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001256 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001257 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1258 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001259 err_code |= ERR_ALERT;
1260 goto out;
1261 }
1262
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001263 ag = calloc(1, sizeof(*ag));
1264 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001265 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001266 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001267 goto out;
1268 }
1269
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001270 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001271 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001272 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001273 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001274 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001275 goto out;
1276 }
1277
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001278 cur_arg = 2;
1279
1280 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001281 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001282 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001283 cur_arg += 2;
1284 continue;
1285 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001286 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1287 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001288 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001289 free(ag->groupusers);
1290 free(ag->name);
1291 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001292 goto out;
1293 }
1294 }
1295
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001296 ag->next = userlist->groups;
1297 userlist->groups = ag;
1298
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001299 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001300 struct auth_users *newuser;
1301 int cur_arg;
1302
1303 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001304 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1305 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001306 err_code |= ERR_ALERT | ERR_FATAL;
1307 goto out;
1308 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001309 if (!userlist)
1310 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001311
1312 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001313 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001314 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1315 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001316 err_code |= ERR_ALERT;
1317 goto out;
1318 }
1319
Vincent Bernat02779b62016-04-03 13:48:43 +02001320 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001321 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001322 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001323 err_code |= ERR_ALERT | ERR_ABORT;
1324 goto out;
1325 }
1326
1327 newuser->user = strdup(args[1]);
1328
1329 newuser->next = userlist->users;
1330 userlist->users = newuser;
1331
1332 cur_arg = 2;
1333
1334 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001335 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001336#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001337 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001338 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1339 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001340 err_code |= ERR_ALERT | ERR_FATAL;
1341 goto out;
1342 }
1343#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001344 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1345 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001346 err_code |= ERR_ALERT;
1347#endif
1348 newuser->pass = strdup(args[cur_arg + 1]);
1349 cur_arg += 2;
1350 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001351 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001352 newuser->pass = strdup(args[cur_arg + 1]);
1353 newuser->flags |= AU_O_INSECURE;
1354 cur_arg += 2;
1355 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001356 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001357 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001358 cur_arg += 2;
1359 continue;
1360 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001361 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1362 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001363 err_code |= ERR_ALERT | ERR_FATAL;
1364 goto out;
1365 }
1366 }
1367 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001368 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 +01001369 err_code |= ERR_ALERT | ERR_FATAL;
1370 }
1371
1372out:
1373 return err_code;
1374}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001375
Christopher Faulet79bdef32016-11-04 22:36:15 +01001376int
1377cfg_parse_scope(const char *file, int linenum, char *line)
1378{
1379 char *beg, *end, *scope = NULL;
1380 int err_code = 0;
1381 const char *err;
1382
1383 beg = line + 1;
1384 end = strchr(beg, ']');
1385
1386 /* Detect end of scope declaration */
1387 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001388 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1389 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001390 err_code |= ERR_ALERT | ERR_FATAL;
1391 goto out;
1392 }
1393
1394 /* Get scope name and check its validity */
1395 scope = my_strndup(beg, end-beg);
1396 err = invalid_char(scope);
1397 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001398 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1399 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001400 err_code |= ERR_ALERT | ERR_ABORT;
1401 goto out;
1402 }
1403
1404 /* Be sure to have a scope declaration alone on its line */
1405 line = end+1;
1406 while (isspace((unsigned char)*line))
1407 line++;
1408 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001409 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1410 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001411 err_code |= ERR_ALERT | ERR_ABORT;
1412 goto out;
1413 }
1414
1415 /* We have a valid scope declaration, save it */
1416 free(cfg_scope);
1417 cfg_scope = scope;
1418 scope = NULL;
1419
1420 out:
1421 free(scope);
1422 return err_code;
1423}
1424
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001425int
1426cfg_parse_track_sc_num(unsigned int *track_sc_num,
1427 const char *arg, const char *end, char **errmsg)
1428{
1429 const char *p;
1430 unsigned int num;
1431
1432 p = arg;
1433 num = read_uint64(&arg, end);
1434
1435 if (arg != end) {
1436 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1437 return -1;
1438 }
1439
1440 if (num >= MAX_SESS_STKCTR) {
1441 memprintf(errmsg, "%u track-sc number exceeding "
1442 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1443 return -1;
1444 }
1445
1446 *track_sc_num = num;
1447 return 0;
1448}
1449
Willy Tarreaubaaee002006-06-26 02:48:02 +02001450/*
1451 * This function reads and parses the configuration file given in the argument.
Willy Tarreau058e9072009-07-20 09:30:05 +02001452 * Returns the error code, 0 if OK, or any combination of :
1453 * - ERR_ABORT: must abort ASAP
1454 * - ERR_FATAL: we can continue parsing but not start the service
1455 * - ERR_WARN: a warning has been emitted
1456 * - ERR_ALERT: an alert has been emitted
1457 * Only the two first ones can stop processing, the two others are just
1458 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001459 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001460int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001461{
William Lallemand64e84512015-05-12 14:25:37 +02001462 char *thisline;
1463 int linesize = LINESIZE;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001464 FILE *f;
1465 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001466 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001467 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001468 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001469 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001470 char *outline = NULL;
1471 size_t outlen = 0;
1472 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001473 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001474 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001475 int nested_cond_lvl = 0;
1476 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
William Lallemand64e84512015-05-12 14:25:37 +02001477
1478 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001479 ha_alert("parsing [%s] : out of memory.\n", file);
William Lallemand64e84512015-05-12 14:25:37 +02001480 return -1;
1481 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001482
David Carlier97880bb2016-04-08 10:35:26 +01001483 if ((f=fopen(file,"r")) == NULL) {
1484 free(thisline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001485 return -1;
David Carlier97880bb2016-04-08 10:35:26 +01001486 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001487
William Lallemandb2f07452015-05-12 14:27:13 +02001488next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001489 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001490 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001491 char *end;
1492 char *args[MAX_LINE_ARGS + 1];
1493 char *line = thisline;
1494
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001495 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001496 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1497 file, linenum, (missing_lf + 1));
1498 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001499 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001500 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001501 }
1502
Willy Tarreaubaaee002006-06-26 02:48:02 +02001503 linenum++;
1504
Willy Tarreau32234e72020-06-16 17:14:33 +02001505 if (fatal >= 50) {
1506 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1507 break;
1508 }
1509
Willy Tarreaubaaee002006-06-26 02:48:02 +02001510 end = line + strlen(line);
1511
William Lallemand64e84512015-05-12 14:25:37 +02001512 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001513 /* Check if we reached the limit and the last char is not \n.
1514 * Watch out for the last line without the terminating '\n'!
1515 */
William Lallemand64e84512015-05-12 14:25:37 +02001516 char *newline;
1517 int newlinesize = linesize * 2;
1518
1519 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1520 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001521 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1522 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001523 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001524 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001525 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001526 continue;
1527 }
1528
1529 readbytes = linesize - 1;
1530 linesize = newlinesize;
1531 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001532 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001533 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001534 }
1535
William Lallemand64e84512015-05-12 14:25:37 +02001536 readbytes = 0;
1537
Willy Tarreau08488f62020-06-26 17:24:54 +02001538 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001539 /* kill trailing LF */
1540 *(end - 1) = 0;
1541 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001542 else {
1543 /* mark this line as truncated */
1544 missing_lf = end - line;
1545 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001546
Willy Tarreaubaaee002006-06-26 02:48:02 +02001547 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001548 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001549 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001550
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001551 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001552 err_code |= cfg_parse_scope(file, linenum, line);
1553 goto next_line;
1554 }
1555
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001556 while (1) {
1557 uint32_t err;
1558 char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001559
Willy Tarreau61dd44b2020-06-25 07:35:42 +02001560 arg = MAX_LINE_ARGS + 1;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001561 outlen = outlinesize;
1562 err = parse_line(line, outline, &outlen, args, &arg,
1563 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001564 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1565 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001566
1567 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001568 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1569
1570 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1571 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001572 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001573 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001574 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001575 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001576
1577 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001578 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1579
1580 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1581 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001582 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001583 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001584 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001585 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001586
1587 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001588 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1589
1590 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1591 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001592 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001593 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001594 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001595 }
William Lallemandb2f07452015-05-12 14:27:13 +02001596
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001597 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001598 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1599
1600 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1601 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001602 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001603 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001604 goto next_line;
1605 }
William Lallemandb2f07452015-05-12 14:27:13 +02001606
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001607 if (err & PARSE_ERR_WRONG_EXPAND) {
1608 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1609
1610 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1611 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1612 err_code |= ERR_ALERT | ERR_FATAL;
1613 fatal++;
1614 goto next_line;
1615 }
1616
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001617 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1618 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001619 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001620 if (outline == NULL) {
1621 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1622 file, linenum);
William Lallemandb2f07452015-05-12 14:27:13 +02001623 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001624 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001625 goto next_line;
William Lallemandb2f07452015-05-12 14:27:13 +02001626 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001627 /* try again */
1628 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001629 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001630
1631 if (err & PARSE_ERR_TOOMANY) {
1632 /* only check this *after* being sure the output is allocated */
1633 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1634 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1635 err_code |= ERR_ALERT | ERR_FATAL;
1636 fatal++;
1637 goto next_line;
1638 }
1639
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001640 /* everything's OK */
1641 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001642 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001643
1644 /* empty line */
1645 if (!**args)
1646 continue;
1647
Willy Tarreau4b103022021-02-12 17:59:10 +01001648 /* check for config macros */
1649 if (*args[0] == '.') {
1650 if (strcmp(args[0], ".if") == 0) {
1651 nested_cond_lvl++;
1652 if (nested_cond_lvl >= MAXNESTEDCONDS) {
1653 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
1654 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1655 goto err;
1656 }
1657
1658 if (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
1659 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
1660 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
1661 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
1662 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP) {
1663 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
1664 } else if (!*args[1] || *args[1] == '0') {
1665 /* empty = false */
1666 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
1667 } else if (atoi(args[1]) > 0) {
1668 /* true */
1669 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
1670 } else {
1671 ha_alert("parsing [%s:%d]: unparsable conditional expression '%s'.\n", file, linenum, args[1]);
1672 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1673 goto err;
1674 }
1675 goto next_line;
1676 }
1677 else if (strcmp(args[0], ".elif") == 0) {
1678 if (!nested_cond_lvl) {
1679 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
1680 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1681 goto err;
1682 }
1683
1684 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
1685 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
1686 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
1687 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1688 goto err;
1689 }
1690
1691 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
1692 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
1693 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
1694 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
1695 } else if (!*args[1] || *args[1] == '0') {
1696 /* empty = false */
1697 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
1698 } else if (atoi(args[1]) > 0) {
1699 /* true */
1700 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
1701 } else {
1702 ha_alert("parsing [%s:%d]: unparsable conditional expression '%s'.\n", file, linenum, args[1]);
1703 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1704 goto err;
1705 }
1706 goto next_line;
1707 }
1708 else if (strcmp(args[0], ".else") == 0) {
1709 if (!nested_cond_lvl) {
1710 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
1711 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1712 goto err;
1713 }
1714
1715 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
1716 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
1717 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
1718 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1719 goto err;
1720 }
1721
1722 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
1723 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
1724 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
1725 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
1726 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
1727 } else {
1728 /* otherwise we take the "else" */
1729 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
1730 }
1731 goto next_line;
1732 }
1733 else if (strcmp(args[0], ".endif") == 0) {
1734 if (!nested_cond_lvl) {
1735 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
1736 err_code |= ERR_ALERT | ERR_FATAL;
1737 fatal++;
1738 break;
1739 }
1740 nested_cond_lvl--;
1741 goto next_line;
1742 }
1743 }
1744
1745 if (nested_cond_lvl &&
1746 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
1747 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
1748 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
1749 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
1750 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
1751 /* The current block is masked out by the conditions */
1752 goto next_line;
1753 }
1754
1755 /* .warning/.error/.notice */
1756 if (*args[0] == '.') {
1757 if (strcmp(args[0], ".alert") == 0) {
1758 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
1759 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1760 goto err;
1761 }
1762 else if (strcmp(args[0], ".warning") == 0) {
1763 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
1764 err_code |= ERR_WARN;
1765 goto next_line;
1766 }
1767 else if (strcmp(args[0], ".notice") == 0) {
1768 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
1769 goto next_line;
1770 }
1771 else {
1772 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
1773 err_code |= ERR_ALERT | ERR_FATAL;
1774 fatal++;
1775 break;
1776 }
1777 }
1778
Willy Tarreau3842f002009-06-14 11:39:52 +02001779 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001780 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02001781 char *tmp;
1782
Willy Tarreau3842f002009-06-14 11:39:52 +02001783 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02001784 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001785 for (arg=0; *args[arg+1]; arg++)
1786 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02001787 *tmp = '\0'; // fix the next arg to \0
1788 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001789 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001790 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001791 kwm = KWM_DEF;
1792 for (arg=0; *args[arg+1]; arg++)
1793 args[arg] = args[arg+1]; // shift args after inversion
1794 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001795
William Dauchyec730982019-10-27 20:08:10 +01001796 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
1797 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01001798 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
1799 strcmp(args[0], "insecure-fork-wanted") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01001800 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01001801 "supported only for options, log, busy-polling, "
Willy Tarreaud96f1122019-12-03 07:07:36 +01001802 "set-dumpable, strict-limits, and insecure-fork-wanted.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02001803 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001804 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01001805 }
1806
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001807 /* detect section start */
1808 list_for_each_entry(ics, &sections, list) {
1809 if (strcmp(args[0], ics->section_name) == 0) {
1810 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001811 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001812 cs = ics;
1813 break;
1814 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001815 }
1816
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001817 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02001818 int status;
1819
1820 status = pcs->post_section_parser();
1821 err_code |= status;
1822 if (status & ERR_FATAL)
1823 fatal++;
1824
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001825 if (err_code & ERR_ABORT)
1826 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001827 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01001828 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001829
William Lallemandd2ff56d2017-10-16 11:06:50 +02001830 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001831 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02001832 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001833 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001834 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02001835 int status;
1836
1837 status = cs->section_parser(file, linenum, args, kwm);
1838 err_code |= status;
1839 if (status & ERR_FATAL)
1840 fatal++;
1841
William Lallemandd2ff56d2017-10-16 11:06:50 +02001842 if (err_code & ERR_ABORT)
1843 goto err;
1844 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001845 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02001846
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001847 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001848 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
1849 file, linenum, (missing_lf + 1));
1850 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001851 }
1852
Christopher Fauletbf7a9592018-12-02 09:37:38 +01001853 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01001854 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02001855
Willy Tarreau4b103022021-02-12 17:59:10 +01001856 if (nested_cond_lvl) {
1857 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
1858 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1859 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02001860err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001861 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01001862 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001863 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001864 free(outline);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001865 fclose(f);
Willy Tarreau058e9072009-07-20 09:30:05 +02001866 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001867}
1868
Willy Tarreau64ab6072014-09-16 12:17:36 +02001869/* This function propagates processes from frontend <from> to backend <to> so
1870 * that it is always guaranteed that a backend pointed to by a frontend is
1871 * bound to all of its processes. After that, if the target is a "listen"
1872 * instance, the function recursively descends the target's own targets along
Willy Tarreau98d04852015-05-26 12:18:29 +02001873 * default_backend and use_backend rules. Since the bits are
Willy Tarreau64ab6072014-09-16 12:17:36 +02001874 * checked first to ensure that <to> is already bound to all processes of
1875 * <from>, there is no risk of looping and we ensure to follow the shortest
1876 * path to the destination.
1877 *
1878 * It is possible to set <to> to NULL for the first call so that the function
1879 * takes care of visiting the initial frontend in <from>.
1880 *
1881 * It is important to note that the function relies on the fact that all names
1882 * have already been resolved.
1883 */
1884void propagate_processes(struct proxy *from, struct proxy *to)
1885{
1886 struct switching_rule *rule;
Willy Tarreau64ab6072014-09-16 12:17:36 +02001887
1888 if (to) {
1889 /* check whether we need to go down */
1890 if (from->bind_proc &&
1891 (from->bind_proc & to->bind_proc) == from->bind_proc)
1892 return;
1893
1894 if (!from->bind_proc && !to->bind_proc)
1895 return;
1896
1897 to->bind_proc = from->bind_proc ?
1898 (to->bind_proc | from->bind_proc) : 0;
1899
1900 /* now propagate down */
1901 from = to;
1902 }
1903
Willy Tarreau8a95d8c2014-12-18 13:56:26 +01001904 if (!(from->cap & PR_CAP_FE))
Willy Tarreau64ab6072014-09-16 12:17:36 +02001905 return;
1906
Willy Tarreauc3914d42020-09-24 08:39:22 +02001907 if (from->disabled)
Willy Tarreauf6b70012014-12-18 14:00:43 +01001908 return;
1909
Willy Tarreau64ab6072014-09-16 12:17:36 +02001910 /* default_backend */
1911 if (from->defbe.be)
1912 propagate_processes(from, from->defbe.be);
1913
1914 /* use_backend */
1915 list_for_each_entry(rule, &from->switching_rules, list) {
Cyril Bonté51639692014-10-02 19:56:25 +02001916 if (rule->dynamic)
1917 continue;
Willy Tarreau64ab6072014-09-16 12:17:36 +02001918 to = rule->be.backend;
1919 propagate_processes(from, to);
1920 }
Willy Tarreau64ab6072014-09-16 12:17:36 +02001921}
1922
Willy Tarreaubb925012009-07-23 13:36:36 +02001923/*
1924 * Returns the error code, 0 if OK, or any combination of :
1925 * - ERR_ABORT: must abort ASAP
1926 * - ERR_FATAL: we can continue parsing but not start the service
1927 * - ERR_WARN: a warning has been emitted
1928 * - ERR_ALERT: an alert has been emitted
1929 * Only the two first ones can stop processing, the two others are just
1930 * indicators.
1931 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001932int check_config_validity()
1933{
1934 int cfgerr = 0;
1935 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001936 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02001937 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02001938 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02001939 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001940 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01001941 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02001942 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01001943 struct resolvers *curr_resolvers = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001944
Willy Tarreau2a65ff02012-09-13 17:54:29 +02001945 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001946 /*
1947 * Now, check for the integrity of all that we have collected.
1948 */
1949
1950 /* will be needed further to delay some tasks */
Willy Tarreaub0b37bc2008-06-23 14:00:57 +02001951 tv_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02001952
Willy Tarreau193b8c62012-11-22 00:17:38 +01001953 if (!global.tune.max_http_hdr)
1954 global.tune.max_http_hdr = MAX_HTTP_HDR;
1955
1956 if (!global.tune.cookie_len)
1957 global.tune.cookie_len = CAPTURE_LEN;
1958
Stéphane Cottin23e9e932017-05-18 08:58:41 +02001959 if (!global.tune.requri_len)
1960 global.tune.requri_len = REQURI_LEN;
1961
Willy Tarreau149ab772019-01-26 14:27:06 +01001962 if (!global.nbthread) {
1963 /* nbthread not set, thus automatic. In this case, and only if
1964 * running on a single process, we enable the same number of
1965 * threads as the number of CPUs the process is bound to. This
1966 * allows to easily control the number of threads using taskset.
1967 */
1968 global.nbthread = 1;
1969#if defined(USE_THREAD)
1970 if (global.nbproc == 1)
1971 global.nbthread = thread_cpus_enabled_at_boot;
1972 all_threads_mask = nbits(global.nbthread);
1973#endif
1974 }
1975
Willy Tarreau26f6ae12019-02-02 12:56:15 +01001976 if (global.nbproc > 1 && global.nbthread > 1) {
1977 ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n");
1978 err_code |= ERR_ALERT | ERR_FATAL;
1979 goto out;
1980 }
1981
Willy Tarreaubafbe012017-11-24 17:34:44 +01001982 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02001983
Willy Tarreaubafbe012017-11-24 17:34:44 +01001984 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01001985
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001986 /* Post initialisation of the users and groups lists. */
1987 err_code = userlist_postinit();
1988 if (err_code != ERR_NONE)
1989 goto out;
1990
Willy Tarreau55bc0f82009-03-15 14:51:53 +01001991 /* first, we will invert the proxy list order */
1992 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001993 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01001994 struct proxy *next;
1995
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001996 next = proxies_list->next;
1997 proxies_list->next = curproxy;
1998 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01001999 if (!next)
2000 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002001 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002002 }
2003
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002004 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002005 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002006 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002007 struct sticking_rule *mrule;
Christopher Faulete4e830d2017-09-18 14:51:41 +02002008 struct act_rule *arule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002009 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002010 unsigned int next_id;
Willy Tarreau16a21472012-11-19 12:39:59 +01002011 int nbproc;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002012
Willy Tarreau050536d2012-10-04 08:47:34 +02002013 if (curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002014 /* proxy ID not set, use automatic numbering with first
2015 * spare entry starting with next_pxid.
2016 */
2017 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2018 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2019 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002020 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002021 next_pxid++;
2022
Willy Tarreau55ea7572007-06-17 19:56:27 +02002023
Willy Tarreauc3914d42020-09-24 08:39:22 +02002024 if (curproxy->disabled) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002025 /* ensure we don't keep listeners uselessly bound. We
2026 * can't disable their listeners yet (fdtab not
2027 * allocated yet) but let's skip them.
2028 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002029 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002030 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002031 curproxy->table->peers.p = NULL;
2032 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002033 continue;
2034 }
2035
Willy Tarreau102df612014-05-07 23:56:38 +02002036 /* Check multi-process mode compatibility for the current proxy */
2037
2038 if (curproxy->bind_proc) {
2039 /* an explicit bind-process was specified, let's check how many
2040 * processes remain.
2041 */
David Carliere6c39412015-07-02 07:00:17 +00002042 nbproc = my_popcountl(curproxy->bind_proc);
Willy Tarreau102df612014-05-07 23:56:38 +02002043
Willy Tarreaua38a7172019-02-02 17:11:28 +01002044 curproxy->bind_proc &= all_proc_mask;
Willy Tarreau102df612014-05-07 23:56:38 +02002045 if (!curproxy->bind_proc && nbproc == 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002046 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 +02002047 curproxy->bind_proc = 1;
2048 }
2049 else if (!curproxy->bind_proc && nbproc > 1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002050 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 +02002051 curproxy->bind_proc = 0;
2052 }
2053 }
2054
Willy Tarreau3d209582014-05-09 17:06:11 +02002055 /* check and reduce the bind-proc of each listener */
2056 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2057 unsigned long mask;
2058
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002059 /* HTTP frontends with "h2" as ALPN/NPN will work in
2060 * HTTP/2 and absolutely require buffers 16kB or larger.
2061 */
2062#ifdef USE_OPENSSL
2063 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2064#ifdef OPENSSL_NPN_NEGOTIATED
2065 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002066 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002067 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",
2068 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002069 cfgerr++;
2070 }
2071#endif
2072#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2073 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002074 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002075 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",
2076 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002077 cfgerr++;
2078 }
2079#endif
2080 } /* HTTP && bufsize < 16384 */
2081#endif
2082
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002083 /* detect and address thread affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002084 mask = thread_mask(bind_conf->settings.bind_thread);
Willy Tarreau3d957172019-02-02 18:00:17 +01002085 if (!(mask & all_threads_mask)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002086 unsigned long new_mask = 0;
2087
2088 while (mask) {
Willy Tarreau0c026f42018-08-01 19:12:20 +02002089 new_mask |= mask & all_threads_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002090 mask >>= global.nbthread;
2091 }
2092
Willy Tarreaue26993c2020-09-03 07:18:55 +02002093 bind_conf->settings.bind_thread = new_mask;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002094 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",
2095 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask);
2096 }
2097
2098 /* detect process and nbproc affinity inconsistencies */
Willy Tarreaue26993c2020-09-03 07:18:55 +02002099 mask = proc_mask(bind_conf->settings.bind_proc) & proc_mask(curproxy->bind_proc);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002100 if (!(mask & all_proc_mask)) {
2101 mask = proc_mask(curproxy->bind_proc) & all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02002102 nbproc = my_popcountl(bind_conf->settings.bind_proc);
2103 bind_conf->settings.bind_proc = proc_mask(bind_conf->settings.bind_proc) & mask;
Willy Tarreau3d209582014-05-09 17:06:11 +02002104
Willy Tarreaue26993c2020-09-03 07:18:55 +02002105 if (!bind_conf->settings.bind_proc && nbproc == 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002106 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",
2107 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002108 bind_conf->settings.bind_proc = mask & ~(mask - 1);
Willy Tarreaua36b3242019-02-02 13:14:34 +01002109 }
Willy Tarreaue26993c2020-09-03 07:18:55 +02002110 else if (!bind_conf->settings.bind_proc && nbproc > 1) {
Willy Tarreaua36b3242019-02-02 13:14:34 +01002111 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",
2112 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line);
Willy Tarreaue26993c2020-09-03 07:18:55 +02002113 bind_conf->settings.bind_proc = 0;
Willy Tarreaua36b3242019-02-02 13:14:34 +01002114 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002115 }
2116 }
2117
Willy Tarreauff01a212009-03-15 13:46:16 +01002118 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01002119 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002120 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002121 break;
2122
2123 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002124 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002125 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002126
2127 case PR_MODE_CLI:
2128 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2129 break;
Emeric Brun54932b42020-07-07 09:43:24 +02002130 case PR_MODE_SYSLOG:
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002131 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02002132 case PR_MODES:
2133 /* should not happen, bug gcc warn missing switch statement */
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002134 ha_alert("config : %s '%s' cannot use peers or syslog mode for this proxy. NOTE: PLEASE REPORT THIS TO DEVELOPERS AS YOU'RE NOT SUPPOSED TO BE ABLE TO CREATE A CONFIGURATION TRIGGERING THIS!\n",
Emeric Brun54932b42020-07-07 09:43:24 +02002135 proxy_type_str(curproxy), curproxy->id);
2136 cfgerr++;
2137 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002138 }
2139
Willy Tarreau58aa5cc2018-02-08 09:55:09 +01002140 if (curproxy != global.stats_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002141 ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
2142 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002143 err_code |= ERR_WARN;
2144 }
2145
Willy Tarreau77e0dae2020-10-14 15:44:27 +02002146 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002147 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002148 if (curproxy->options & PR_O_TRANSP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002149 ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n",
2150 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002151 cfgerr++;
2152 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002153#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002154 else if (curproxy->srv == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002155 ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n",
2156 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002157 cfgerr++;
2158 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002159#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002160 else if (curproxy->options & PR_O_DISPATCH) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002161 ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n",
2162 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002163 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002164 }
2165 }
Willy Tarreau1620ec32011-08-06 17:05:02 +02002166 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002167 /* If no LB algo is set in a backend, and we're not in
2168 * transparent mode, dispatch mode nor proxy mode, we
2169 * want to use balance roundrobin by default.
2170 */
2171 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2172 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002173 }
2174 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002175
Willy Tarreau1620ec32011-08-06 17:05:02 +02002176 if (curproxy->options & PR_O_DISPATCH)
2177 curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY);
2178 else if (curproxy->options & PR_O_HTTP_PROXY)
2179 curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP);
2180 else if (curproxy->options & PR_O_TRANSP)
2181 curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY);
Willy Tarreau82936582007-11-30 15:20:09 +01002182
Christopher Faulete5870d82020-04-15 11:32:03 +02002183 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
2184 ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
2185 proxy_type_str(curproxy), curproxy->id);
2186 err_code |= ERR_WARN;
2187 }
2188
2189 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002190 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002191 if (curproxy->options & PR_O_DISABLE404) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002192 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2193 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002194 err_code |= ERR_WARN;
2195 curproxy->options &= ~PR_O_DISABLE404;
2196 }
2197 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002198 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
2199 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002200 err_code |= ERR_WARN;
2201 curproxy->options &= ~PR_O2_CHK_SNDST;
2202 }
Willy Tarreauef781042010-01-27 11:53:01 +01002203 }
2204
Simon Horman98637e52014-06-20 12:30:16 +09002205 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2206 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002207 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2208 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002209 cfgerr++;
2210 }
2211 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002212 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2213 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002214 cfgerr++;
2215 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002216 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2217 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2218 curproxy->id, "option external-check");
2219 err_code |= ERR_WARN;
2220 }
Simon Horman98637e52014-06-20 12:30:16 +09002221 }
2222
Simon Horman64e34162015-02-06 11:11:57 +09002223 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002224 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002225 ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of "
2226 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2227 "'email-alert myhostname', or 'email-alert to' "
2228 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2229 "to be present).\n",
2230 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002231 err_code |= ERR_WARN;
2232 free_email_alert(curproxy);
2233 }
2234 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002235 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002236 }
2237
Simon Horman98637e52014-06-20 12:30:16 +09002238 if (curproxy->check_command) {
2239 int clear = 0;
2240 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002241 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2242 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002243 err_code |= ERR_WARN;
2244 clear = 1;
2245 }
2246 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002247 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2248 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002249 cfgerr++;
2250 }
2251 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002252 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09002253 }
2254 }
2255
2256 if (curproxy->check_path) {
2257 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002258 ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n",
2259 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002260 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002261 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09002262 }
2263 }
2264
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002265 /* if a default backend was specified, let's find it */
2266 if (curproxy->defbe.name) {
2267 struct proxy *target;
2268
Willy Tarreauafb39922015-05-26 12:04:09 +02002269 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002270 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002271 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2272 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002273 cfgerr++;
2274 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002275 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2276 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002277 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002278 } else if (target->mode != curproxy->mode &&
2279 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2280
Christopher Faulet767a84b2017-11-24 16:50:31 +01002281 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2282 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2283 curproxy->conf.file, curproxy->conf.line,
2284 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2285 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002286 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002287 } else {
2288 free(curproxy->defbe.name);
2289 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002290 /* Emit a warning if this proxy also has some servers */
2291 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002292 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2293 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002294 err_code |= ERR_WARN;
2295 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002296 }
2297 }
2298
Willy Tarreau55ea7572007-06-17 19:56:27 +02002299 /* find the target proxy for 'use_backend' rules */
2300 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002301 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002302 struct logformat_node *node;
2303 char *pxname;
2304
2305 /* Try to parse the string as a log format expression. If the result
2306 * of the parsing is only one entry containing a simple string, then
2307 * it's a standard string corresponding to a static rule, thus the
2308 * parsing is cancelled and be.name is restored to be resolved.
2309 */
2310 pxname = rule->be.name;
2311 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002312 curproxy->conf.args.ctx = ARGC_UBK;
2313 curproxy->conf.args.file = rule->file;
2314 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002315 err = NULL;
2316 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002317 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2318 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002319 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002320 cfgerr++;
2321 continue;
2322 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002323 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2324
2325 if (!LIST_ISEMPTY(&rule->be.expr)) {
2326 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2327 rule->dynamic = 1;
2328 free(pxname);
2329 continue;
2330 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002331 /* Only one element in the list, a simple string: free the expression and
2332 * fall back to static rule
2333 */
2334 LIST_DEL(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002335 free(node->arg);
2336 free(node);
2337 }
2338
2339 rule->dynamic = 0;
2340 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002341
Willy Tarreauafb39922015-05-26 12:04:09 +02002342 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002343 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002344 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2345 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002346 cfgerr++;
2347 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002348 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2349 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002350 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002351 } else if (target->mode != curproxy->mode &&
2352 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2353
Christopher Faulet767a84b2017-11-24 16:50:31 +01002354 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2355 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2356 curproxy->conf.file, curproxy->conf.line,
2357 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2358 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002359 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002360 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002361 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002362 rule->be.backend = target;
2363 }
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002364 }
2365
Willy Tarreau64ab6072014-09-16 12:17:36 +02002366 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002367 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002368 struct server *target;
2369 struct logformat_node *node;
2370 char *server_name;
2371
2372 /* We try to parse the string as a log format expression. If the result of the parsing
2373 * is only one entry containing a single string, then it's a standard string corresponding
2374 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2375 */
2376 server_name = srule->srv.name;
2377 LIST_INIT(&srule->expr);
2378 curproxy->conf.args.ctx = ARGC_USRV;
2379 err = NULL;
2380 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2381 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2382 srule->file, srule->line, server_name, err);
2383 free(err);
2384 cfgerr++;
2385 continue;
2386 }
2387 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2388
2389 if (!LIST_ISEMPTY(&srule->expr)) {
2390 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2391 srule->dynamic = 1;
2392 free(server_name);
2393 continue;
2394 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002395 /* Only one element in the list, a simple string: free the expression and
2396 * fall back to static rule
2397 */
2398 LIST_DEL(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002399 free(node->arg);
2400 free(node);
2401 }
2402
2403 srule->dynamic = 0;
2404 srule->srv.name = server_name;
2405 target = findserver(curproxy, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002406
2407 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002408 ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
2409 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002410 cfgerr++;
2411 continue;
2412 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01002413 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002414 srule->srv.ptr = target;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002415 }
2416
Emeric Brunb982a3d2010-01-04 15:45:53 +01002417 /* find the target table for 'stick' rules */
2418 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002419 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002420
Emeric Brun1d33b292010-01-04 15:47:17 +01002421 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
2422 if (mrule->flags & STK_IS_STORE)
2423 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2424
Emeric Brunb982a3d2010-01-04 15:45:53 +01002425 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002426 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002427 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002428 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002429
2430 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002431 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002432 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002433 cfgerr++;
2434 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002435 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002436 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2437 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002438 cfgerr++;
2439 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002440 else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002441 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2442 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002443 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002444 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002445 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002446 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002447 mrule->table.t = target;
2448 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07002449 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002450 if (!in_proxies_list(target->proxies_list, curproxy)) {
2451 curproxy->next_stkt_ref = target->proxies_list;
2452 target->proxies_list = curproxy;
2453 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002454 }
2455 }
2456
2457 /* find the target table for 'store response' rules */
2458 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002459 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002460
Emeric Brun1d33b292010-01-04 15:47:17 +01002461 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
2462
Emeric Brunb982a3d2010-01-04 15:45:53 +01002463 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002464 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002465 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002466 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002467
2468 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002469 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01002470 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002471 cfgerr++;
2472 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002473 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002474 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
2475 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01002476 cfgerr++;
2477 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002478 else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002479 ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n",
2480 curproxy->id, target->id, curproxy->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01002481 cfgerr++;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01002482 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002483 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002484 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002485 mrule->table.t = target;
2486 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL);
Thayne McCombs92149f92020-11-20 01:28:26 -07002487 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02002488 if (!in_proxies_list(target->proxies_list, curproxy)) {
2489 curproxy->next_stkt_ref = target->proxies_list;
2490 target->proxies_list = curproxy;
2491 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01002492 }
2493 }
2494
Christopher Faulete4e830d2017-09-18 14:51:41 +02002495 /* check validity for 'tcp-request' layer 4 rules */
2496 list_for_each_entry(arule, &curproxy->tcp_req.l4_rules, list) {
2497 err = NULL;
2498 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002499 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002500 free(err);
Willy Tarreau5f53de72012-12-12 00:25:44 +01002501 cfgerr++;
2502 }
Willy Tarreaud1f96522010-08-03 19:34:32 +02002503 }
2504
Christopher Faulete4e830d2017-09-18 14:51:41 +02002505 /* check validity for 'tcp-request' layer 5 rules */
2506 list_for_each_entry(arule, &curproxy->tcp_req.l5_rules, list) {
2507 err = NULL;
2508 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002509 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002510 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002511 cfgerr++;
2512 }
2513 }
2514
Christopher Faulete4e830d2017-09-18 14:51:41 +02002515 /* check validity for 'tcp-request' layer 6 rules */
2516 list_for_each_entry(arule, &curproxy->tcp_req.inspect_rules, list) {
2517 err = NULL;
2518 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002519 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002520 free(err);
Baptiste Assmanne9544932015-11-03 23:31:35 +01002521 cfgerr++;
2522 }
2523 }
2524
Christopher Faulete4e830d2017-09-18 14:51:41 +02002525 /* check validity for 'http-request' layer 7 rules */
2526 list_for_each_entry(arule, &curproxy->http_req_rules, list) {
2527 err = NULL;
2528 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002529 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002530 free(err);
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002531 cfgerr++;
2532 }
Ruoshan Huange4edc6b2016-07-14 15:07:45 +08002533 }
2534
Christopher Faulete4e830d2017-09-18 14:51:41 +02002535 /* check validity for 'http-response' layer 7 rules */
2536 list_for_each_entry(arule, &curproxy->http_res_rules, list) {
2537 err = NULL;
2538 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002539 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulete4e830d2017-09-18 14:51:41 +02002540 free(err);
Willy Tarreau09448f72014-06-25 18:12:15 +02002541 cfgerr++;
2542 }
Willy Tarreau09448f72014-06-25 18:12:15 +02002543 }
2544
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01002545 /* check validity for 'http-after-response' layer 7 rules */
2546 list_for_each_entry(arule, &curproxy->http_after_res_rules, list) {
2547 err = NULL;
2548 if (arule->check_ptr && !arule->check_ptr(arule, curproxy, &err)) {
2549 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
2550 free(err);
2551 cfgerr++;
2552 }
2553 }
2554
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002555 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002556 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002557
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02002558 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002559 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002560 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002561 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02002562 break;
2563 }
2564 }
2565
2566 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002567 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002568 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01002569 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002570 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002571 cfgerr++;
2572 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02002573 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002574 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002575 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02002576 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002577 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002578 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
2579 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002580 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02002581 cfgerr++;
2582 }
2583 }
2584
Simon Horman9dc49962015-01-30 11:22:59 +09002585
2586 if (curproxy->email_alert.mailers.name) {
2587 struct mailers *curmailers = mailers;
2588
2589 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002590 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09002591 break;
Simon Horman9dc49962015-01-30 11:22:59 +09002592 }
Simon Horman9dc49962015-01-30 11:22:59 +09002593 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002594 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
2595 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09002596 free_email_alert(curproxy);
2597 cfgerr++;
2598 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02002599 else {
2600 err = NULL;
2601 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002602 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02002603 free(err);
2604 cfgerr++;
2605 }
2606 }
Simon Horman9dc49962015-01-30 11:22:59 +09002607 }
2608
Willy Tarreau5bbc6762021-02-12 11:49:25 +01002609 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01002610 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002611 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002612 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
2613 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002614 cfgerr++;
2615 goto out_uri_auth_compat;
2616 }
2617
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002618 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01002619 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02002620 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002621 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02002622 struct act_rule *rule;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002623 int i = 0;
Willy Tarreau95fa4692010-02-01 13:05:50 +01002624 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
2625 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002626
2627 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002628 uri_auth_compat_req[i++] = "realm";
2629 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
2630 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002631
Willy Tarreau95fa4692010-02-01 13:05:50 +01002632 uri_auth_compat_req[i++] = "unless";
2633 uri_auth_compat_req[i++] = "{";
2634 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
2635 uri_auth_compat_req[i++] = "}";
2636 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002637
Willy Tarreauff011f22011-01-06 17:51:27 +01002638 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
2639 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01002640 cfgerr++;
2641 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002642 }
2643
Willy Tarreauff011f22011-01-06 17:51:27 +01002644 LIST_ADDQ(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01002645
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002646 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002647 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002648 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01002649 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01002650 }
2651out_uri_auth_compat:
2652
Dragan Dosen43885c72015-10-01 13:18:13 +02002653 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02002654 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02002655 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
2656 if (!curproxy->conf.logformat_sd_string) {
2657 /* set the default logformat_sd_string */
2658 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
2659 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002660 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02002661 }
Dragan Dosen1322d092015-09-22 16:05:32 +02002662 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02002663
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002664 /* compile the log format */
2665 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02002666 if (curproxy->conf.logformat_string != default_http_log_format &&
2667 curproxy->conf.logformat_string != default_tcp_log_format &&
2668 curproxy->conf.logformat_string != clf_http_log_format)
2669 free(curproxy->conf.logformat_string);
2670 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002671 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02002672 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002673
2674 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
2675 free(curproxy->conf.logformat_sd_string);
2676 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002677 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002678 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002679 }
2680
Willy Tarreau62a61232013-04-12 18:13:46 +02002681 if (curproxy->conf.logformat_string) {
2682 curproxy->conf.args.ctx = ARGC_LOG;
2683 curproxy->conf.args.file = curproxy->conf.lfs_file;
2684 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002685 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002686 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
2687 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002688 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002689 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
2690 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002691 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002692 cfgerr++;
2693 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002694 curproxy->conf.args.file = NULL;
2695 curproxy->conf.args.line = 0;
2696 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002697
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002698 if (curproxy->conf.logformat_sd_string) {
2699 curproxy->conf.args.ctx = ARGC_LOGSD;
2700 curproxy->conf.args.file = curproxy->conf.lfsd_file;
2701 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002702 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002703 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
2704 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002705 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002706 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2707 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002708 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002709 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002710 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002711 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
2712 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002713 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002714 cfgerr++;
2715 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02002716 curproxy->conf.args.file = NULL;
2717 curproxy->conf.args.line = 0;
2718 }
2719
Willy Tarreau62a61232013-04-12 18:13:46 +02002720 if (curproxy->conf.uniqueid_format_string) {
2721 curproxy->conf.args.ctx = ARGC_UIF;
2722 curproxy->conf.args.file = curproxy->conf.uif_file;
2723 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002724 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02002725 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
2726 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES,
2727 (curproxy->cap & PR_CAP_FE) ? SMP_VAL_FE_HRQ_HDR
2728 : SMP_VAL_BE_HRQ_HDR,
2729 &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002730 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
2731 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002732 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002733 cfgerr++;
2734 }
Willy Tarreau62a61232013-04-12 18:13:46 +02002735 curproxy->conf.args.file = NULL;
2736 curproxy->conf.args.line = 0;
2737 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002738
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002739 /* only now we can check if some args remain unresolved.
2740 * This must be done after the users and groups resolution.
2741 */
Willy Tarreaua4312fa2013-04-02 16:34:32 +02002742 cfgerr += smp_resolve_args(curproxy);
2743 if (!cfgerr)
2744 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01002745
Willy Tarreau2738a142006-07-08 17:28:09 +02002746 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02002747 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02002748 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02002749 (!curproxy->timeout.connect ||
2750 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002751 ha_warning("config : missing timeouts for %s '%s'.\n"
2752 " | While not properly invalid, you will certainly encounter various problems\n"
2753 " | with such a configuration. To fix this, please ensure that all following\n"
2754 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
2755 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002756 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02002757 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02002758
Willy Tarreau1fa31262007-12-03 00:36:16 +01002759 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
2760 * We must still support older configurations, so let's find out whether those
2761 * parameters have been set or must be copied from contimeouts.
2762 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01002763 if (!curproxy->timeout.tarpit)
2764 curproxy->timeout.tarpit = curproxy->timeout.connect;
2765 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
2766 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01002767
Christopher Faulete5870d82020-04-15 11:32:03 +02002768 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002769 ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
2770 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02002771 err_code |= ERR_WARN;
2772 }
2773
Willy Tarreau193b8c62012-11-22 00:17:38 +01002774 /* ensure that cookie capture length is not too large */
2775 if (curproxy->capture_len >= global.tune.cookie_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002776 ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n",
2777 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002778 err_code |= ERR_WARN;
2779 curproxy->capture_len = global.tune.cookie_len - 1;
2780 }
2781
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002782 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01002783 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02002784 curproxy->req_cap_pool = create_pool("ptrcap",
2785 curproxy->nb_req_cap * sizeof(char *),
2786 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01002787 }
2788
2789 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02002790 curproxy->rsp_cap_pool = create_pool("ptrcap",
2791 curproxy->nb_rsp_cap * sizeof(char *),
2792 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01002793 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02002794
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002795 switch (curproxy->load_server_state_from_file) {
2796 case PR_SRV_STATE_FILE_UNSPEC:
2797 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
2798 break;
2799 case PR_SRV_STATE_FILE_GLOBAL:
2800 if (!global.server_state_file) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002801 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",
2802 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02002803 err_code |= ERR_WARN;
2804 }
2805 break;
2806 }
2807
Willy Tarreaubaaee002006-06-26 02:48:02 +02002808 /* first, we will invert the servers list order */
2809 newsrv = NULL;
2810 while (curproxy->srv) {
2811 struct server *next;
2812
2813 next = curproxy->srv->next;
2814 curproxy->srv->next = newsrv;
2815 newsrv = curproxy->srv;
2816 if (!next)
2817 break;
2818 curproxy->srv = next;
2819 }
2820
Willy Tarreau17edc812014-01-03 12:14:34 +01002821 /* Check that no server name conflicts. This causes trouble in the stats.
2822 * We only emit a warning for the first conflict affecting each server,
2823 * in order to avoid combinatory explosion if all servers have the same
2824 * name. We do that only for servers which do not have an explicit ID,
2825 * because these IDs were made also for distinguishing them and we don't
2826 * want to annoy people who correctly manage them.
2827 */
2828 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
2829 struct server *other_srv;
2830
2831 if (newsrv->puid)
2832 continue;
2833
2834 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
2835 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02002836 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 +01002837 newsrv->conf.file, newsrv->conf.line,
2838 proxy_type_str(curproxy), curproxy->id,
2839 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02002840 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01002841 break;
2842 }
2843 }
2844 }
2845
Willy Tarreaudd701652010-05-25 23:03:02 +02002846 /* assign automatic UIDs to servers which don't have one yet */
2847 next_id = 1;
2848 newsrv = curproxy->srv;
2849 while (newsrv != NULL) {
2850 if (!newsrv->puid) {
2851 /* server ID not set, use automatic numbering with first
2852 * spare entry starting with next_svid.
2853 */
2854 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
2855 newsrv->conf.id.key = newsrv->puid = next_id;
2856 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
Frédéric Lécaille84d60462019-05-17 14:29:15 +02002857 newsrv->conf.name.key = newsrv->id;
2858 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
Willy Tarreaudd701652010-05-25 23:03:02 +02002859 }
2860 next_id++;
2861 newsrv = newsrv->next;
2862 }
2863
Willy Tarreau20697042007-11-15 23:26:18 +01002864 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01002865 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02002866
Willy Tarreau62c3be22012-01-20 13:12:32 +01002867 /*
2868 * If this server supports a maxconn parameter, it needs a dedicated
2869 * tasks to fill the emptied slots when a connection leaves.
2870 * Also, resolve deferred tracking dependency if needed.
2871 */
2872 newsrv = curproxy->srv;
2873 while (newsrv != NULL) {
2874 if (newsrv->minconn > newsrv->maxconn) {
2875 /* Only 'minconn' was specified, or it was higher than or equal
2876 * to 'maxconn'. Let's turn this into maxconn and clean it, as
2877 * this will avoid further useless expensive computations.
2878 */
2879 newsrv->maxconn = newsrv->minconn;
2880 } else if (newsrv->maxconn && !newsrv->minconn) {
2881 /* minconn was not specified, so we set it to maxconn */
2882 newsrv->minconn = newsrv->maxconn;
2883 }
2884
William Dauchyf6370442020-11-14 19:25:33 +01002885 /* this will also properly set the transport layer for
2886 * prod and checks
2887 * if default-server have use_ssl, prerare ssl init
2888 * without activating it */
2889 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
2890 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
2891 (newsrv->use_ssl != 1 && curproxy->defsrv.use_ssl == 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01002892 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
2893 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
2894 }
Emeric Brun94324a42012-10-11 14:00:19 +02002895
Willy Tarreau034c88c2017-01-23 23:36:45 +01002896 if ((newsrv->flags & SRV_F_FASTOPEN) &&
2897 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
2898 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
2899 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",
2900 newsrv->conf.file, newsrv->conf.line,
2901 proxy_type_str(curproxy), curproxy->id,
2902 newsrv->id);
2903
Willy Tarreau62c3be22012-01-20 13:12:32 +01002904 if (newsrv->trackit) {
2905 struct proxy *px;
Willy Tarreau32091232014-05-16 13:52:00 +02002906 struct server *srv, *loop;
Willy Tarreau62c3be22012-01-20 13:12:32 +01002907 char *pname, *sname;
2908
2909 pname = newsrv->trackit;
2910 sname = strrchr(pname, '/');
2911
2912 if (sname)
2913 *sname++ = '\0';
2914 else {
2915 sname = pname;
2916 pname = NULL;
2917 }
2918
2919 if (pname) {
Willy Tarreau9e0bb102015-05-26 11:24:42 +02002920 px = proxy_be_by_name(pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002921 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002922 ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n",
2923 proxy_type_str(curproxy), curproxy->id,
2924 newsrv->id, pname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002925 cfgerr++;
2926 goto next_srv;
2927 }
2928 } else
2929 px = curproxy;
2930
2931 srv = findserver(px, sname);
2932 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002933 ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n",
2934 proxy_type_str(curproxy), curproxy->id,
2935 newsrv->id, sname);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002936 cfgerr++;
2937 goto next_srv;
2938 }
2939
Christopher Faulet8892e5d2020-03-26 19:48:20 +01002940 if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002941 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for "
2942 "tracking as it does not have any check nor agent enabled.\n",
2943 proxy_type_str(curproxy), curproxy->id,
2944 newsrv->id, px->id, srv->id);
Willy Tarreau32091232014-05-16 13:52:00 +02002945 cfgerr++;
2946 goto next_srv;
2947 }
2948
2949 for (loop = srv->track; loop && loop != newsrv; loop = loop->track);
2950
Frédéric Lécaille2efc6492017-03-14 14:32:17 +01002951 if (newsrv == srv || loop) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002952 ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it "
2953 "belongs to a tracking chain looping back to %s/%s.\n",
2954 proxy_type_str(curproxy), curproxy->id,
2955 newsrv->id, px->id, srv->id, px->id,
2956 newsrv == srv ? srv->id : loop->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002957 cfgerr++;
2958 goto next_srv;
2959 }
2960
2961 if (curproxy != px &&
2962 (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002963 ha_alert("config : %s '%s', server '%s': unable to use %s/%s for"
2964 "tracking: disable-on-404 option inconsistency.\n",
2965 proxy_type_str(curproxy), curproxy->id,
2966 newsrv->id, px->id, srv->id);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002967 cfgerr++;
2968 goto next_srv;
2969 }
2970
Willy Tarreau62c3be22012-01-20 13:12:32 +01002971 newsrv->track = srv;
Willy Tarreau1a53a3a2013-12-11 15:27:05 +01002972 newsrv->tracknext = srv->trackers;
2973 srv->trackers = newsrv;
Willy Tarreau62c3be22012-01-20 13:12:32 +01002974
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002975 ha_free(&newsrv->trackit);
Willy Tarreau62c3be22012-01-20 13:12:32 +01002976 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02002977
Willy Tarreau62c3be22012-01-20 13:12:32 +01002978 next_srv:
2979 newsrv = newsrv->next;
2980 }
2981
Olivier Houchard4e694042017-03-14 20:01:29 +01002982 /*
2983 * Try to generate dynamic cookies for servers now.
2984 * It couldn't be done earlier, since at the time we parsed
2985 * the server line, we may not have known yet that we
2986 * should use dynamic cookies, or the secret key may not
2987 * have been provided yet.
2988 */
2989 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
2990 newsrv = curproxy->srv;
2991 while (newsrv != NULL) {
2992 srv_set_dyncookie(newsrv);
2993 newsrv = newsrv->next;
2994 }
2995
2996 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002997 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08002998 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002999 */
3000
3001 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3002 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3003 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003004 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3005 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3006 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003007 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3008 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3009 chash_init_server_tree(curproxy);
Willy Tarreau9757a382009-10-03 12:56:50 +02003010 } else {
3011 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3012 fwrr_init_server_groups(curproxy);
3013 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003014 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003015
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003016 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003017 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3018 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3019 fwlc_init_server_tree(curproxy);
3020 } else {
3021 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3022 fas_init_server_tree(curproxy);
3023 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003024 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003025
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003026 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003027 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3028 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
3029 chash_init_server_tree(curproxy);
3030 } else {
3031 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3032 init_server_map(curproxy);
3033 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003034 break;
3035 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003036 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003037
3038 if (curproxy->options & PR_O_LOGASAP)
3039 curproxy->to_log &= ~LW_BYTES;
3040
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003041 if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003042 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3043 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003044 ha_warning("config : log format ignored for %s '%s' since it has no log address.\n",
3045 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003046 err_code |= ERR_WARN;
3047 }
3048
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003049 if (curproxy->mode != PR_MODE_HTTP) {
3050 int optnum;
3051
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003052 if (curproxy->uri_auth) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003053 ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
3054 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003055 err_code |= ERR_WARN;
3056 curproxy->uri_auth = NULL;
3057 }
3058
Willy Tarreaude7dc882017-03-10 11:49:21 +01003059 if (curproxy->capture_name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003060 ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
3061 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003062 err_code |= ERR_WARN;
3063 }
3064
3065 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003066 ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
3067 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003068 err_code |= ERR_WARN;
3069 }
3070
3071 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003072 ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
3073 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003074 err_code |= ERR_WARN;
3075 }
3076
Willy Tarreaude7dc882017-03-10 11:49:21 +01003077 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003078 ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
3079 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003080 err_code |= ERR_WARN;
3081 }
3082
Willy Tarreau87cf5142011-08-19 22:57:24 +02003083 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003084 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3085 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003086 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003087 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003088 }
3089
3090 if (curproxy->options & PR_O_ORGTO) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003091 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3092 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003093 err_code |= ERR_WARN;
3094 curproxy->options &= ~PR_O_ORGTO;
3095 }
3096
3097 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3098 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3099 (curproxy->cap & cfg_opts[optnum].cap) &&
3100 (curproxy->options & cfg_opts[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003101 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3102 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003103 err_code |= ERR_WARN;
3104 curproxy->options &= ~cfg_opts[optnum].val;
3105 }
3106 }
3107
3108 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3109 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3110 (curproxy->cap & cfg_opts2[optnum].cap) &&
3111 (curproxy->options2 & cfg_opts2[optnum].val)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003112 ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
3113 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003114 err_code |= ERR_WARN;
3115 curproxy->options2 &= ~cfg_opts2[optnum].val;
3116 }
3117 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003118
Willy Tarreau29fbe512015-08-20 19:35:14 +02003119#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003120 if (curproxy->conn_src.bind_hdr_occ) {
3121 curproxy->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003122 ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
3123 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003124 err_code |= ERR_WARN;
3125 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003126#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003127 }
3128
Willy Tarreaubaaee002006-06-26 02:48:02 +02003129 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003130 * ensure that we're not cross-dressing a TCP server into HTTP.
3131 */
3132 newsrv = curproxy->srv;
3133 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003134 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003135 ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
3136 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003137 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003138 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003139
Willy Tarreau0cec3312011-10-31 13:49:26 +01003140 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003141 ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
3142 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003143 err_code |= ERR_WARN;
3144 }
3145
Willy Tarreauc93cd162014-05-13 15:54:22 +02003146 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003147 ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
3148 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003149 err_code |= ERR_WARN;
3150 }
3151
Willy Tarreau29fbe512015-08-20 19:35:14 +02003152#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003153 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3154 newsrv->conn_src.bind_hdr_occ = 0;
Christopher Faulet767a84b2017-11-24 16:50:31 +01003155 ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
3156 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003157 err_code |= ERR_WARN;
3158 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003159#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003160
Willy Tarreau46deab62018-04-28 07:18:15 +02003161 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3162 curproxy->options &= ~PR_O_REUSE_MASK;
3163
Willy Tarreau21d2af32008-02-14 20:25:24 +01003164 newsrv = newsrv->next;
3165 }
3166
Christopher Fauletd7c91962015-04-30 11:48:27 +02003167 /* Check filter configuration, if any */
3168 cfgerr += flt_check(curproxy);
3169
Willy Tarreauc1a21672009-08-16 22:37:44 +02003170 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003171 if (!curproxy->accept)
3172 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003173
Willy Tarreauc1a21672009-08-16 22:37:44 +02003174 if (curproxy->tcp_req.inspect_delay ||
3175 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
Willy Tarreaufb356202010-08-03 14:02:05 +02003176 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003177
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003178 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003179 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003180 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003181 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003182
William Lallemandcf62f7e2018-10-26 14:47:40 +02003183 if (curproxy->mode == PR_MODE_CLI) {
3184 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3185 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3186 }
3187
Willy Tarreauc1a21672009-08-16 22:37:44 +02003188 /* both TCP and HTTP must check switching rules */
3189 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003190
3191 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003192 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003193 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3194 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 +01003195 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003196 curproxy->fe_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3197 curproxy->fe_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003198 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003199 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003200 }
3201
3202 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreaufb356202010-08-03 14:02:05 +02003203 if (curproxy->tcp_req.inspect_delay ||
3204 !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules))
3205 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3206
Emeric Brun97679e72010-09-23 17:56:44 +02003207 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules))
3208 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3209
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003210 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003211 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003212 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003213 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003214
3215 /* If the backend does requires RDP cookie persistence, we have to
3216 * enable the corresponding analyser.
3217 */
3218 if (curproxy->options2 & PR_O2_RDPC_PRST)
3219 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003220
3221 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003222 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003223 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3224 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 +01003225 if (curproxy->mode == PR_MODE_HTTP) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003226 curproxy->be_req_ana |= AN_REQ_FLT_HTTP_HDRS;
3227 curproxy->be_rsp_ana |= AN_RES_FLT_HTTP_HDRS;
Christopher Faulet309c6412015-12-02 09:57:32 +01003228 }
Christopher Fauletd7c91962015-04-30 11:48:27 +02003229 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003230 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003231
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003232 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003233 * attached to the current proxy */
3234 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3235 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003236 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003237
3238 if (!bind_conf->mux_proto)
3239 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003240
3241 /* it is possible that an incorrect mux was referenced
3242 * due to the proxy's mode not being taken into account
3243 * on first pass. Let's adjust it now.
3244 */
3245 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3246
3247 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Christopher Fauleta717b992018-04-10 14:43:00 +02003248 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
3249 proxy_type_str(curproxy), curproxy->id,
3250 (int)bind_conf->mux_proto->token.len,
3251 bind_conf->mux_proto->token.ptr,
3252 bind_conf->arg, bind_conf->file, bind_conf->line);
3253 cfgerr++;
3254 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003255
3256 /* update the mux */
3257 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003258 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003259 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3260 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003261 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003262
3263 if (!newsrv->mux_proto)
3264 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003265
3266 /* it is possible that an incorrect mux was referenced
3267 * due to the proxy's mode not being taken into account
3268 * on first pass. Let's adjust it now.
3269 */
3270 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3271
3272 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003273 ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
3274 proxy_type_str(curproxy), curproxy->id,
3275 (int)newsrv->mux_proto->token.len,
3276 newsrv->mux_proto->token.ptr,
3277 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3278 cfgerr++;
3279 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003280
3281 /* update the mux */
3282 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003283 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01003284 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003285
Willy Tarreau4cdac162021-03-05 10:48:42 +01003286 /***********************************************************/
3287 /* At this point, target names have already been resolved. */
3288 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01003289
Willy Tarreau4cdac162021-03-05 10:48:42 +01003290 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01003291
Willy Tarreau4cdac162021-03-05 10:48:42 +01003292 list_for_each_entry(newsrv, &servers_list, global_list) {
3293 /* initialize idle conns lists */
3294 int i;
Willy Tarreau980855b2019-02-07 14:59:29 +01003295
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003296 newsrv->per_thr = calloc(global.nbthread, sizeof(*newsrv->per_thr));
3297 if (!newsrv->per_thr) {
3298 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
3299 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01003300 cfgerr++;
3301 continue;
3302 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003303
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003304 for (i = 0; i < global.nbthread; i++) {
3305 newsrv->per_thr[i].idle_conns = EB_ROOT;
3306 newsrv->per_thr[i].safe_conns = EB_ROOT;
3307 newsrv->per_thr[i].avail_conns = EB_ROOT;
Willy Tarreaud4e78d82021-03-04 10:47:54 +01003308 MT_LIST_INIT(&newsrv->per_thr[i].streams);
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003309 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003310
Willy Tarreau4cdac162021-03-05 10:48:42 +01003311 if (newsrv->max_idle_conns != 0) {
3312 if (idle_conn_task == NULL) {
3313 idle_conn_task = task_new(MAX_THREADS_MASK);
3314 if (!idle_conn_task)
3315 goto err;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003316
Willy Tarreau4cdac162021-03-05 10:48:42 +01003317 idle_conn_task->process = srv_cleanup_idle_conns;
3318 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003319
Willy Tarreau4cdac162021-03-05 10:48:42 +01003320 for (i = 0; i < global.nbthread; i++) {
3321 idle_conns[i].cleanup_task = task_new(1UL << i);
3322 if (!idle_conns[i].cleanup_task)
3323 goto err;
3324 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
3325 idle_conns[i].cleanup_task->context = NULL;
3326 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
3327 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003328 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01003329 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003330
Willy Tarreau4cdac162021-03-05 10:48:42 +01003331 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
3332 if (!newsrv->curr_idle_thr)
3333 goto err;
3334 continue;
3335 err:
3336 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3337 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3338 cfgerr++;
3339 continue;
Willy Tarreau835daa12019-02-07 14:46:29 +01003340 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003341 }
3342
Willy Tarreau419ead82014-09-16 13:41:21 +02003343
3344 /* Check multi-process mode compatibility */
3345
3346 if (global.nbproc > 1 && global.stats_fe) {
3347 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3348 unsigned long mask;
3349
Willy Tarreau6daac192019-02-02 17:39:53 +01003350 mask = proc_mask(global.stats_fe->bind_proc) && all_proc_mask;
Willy Tarreaue26993c2020-09-03 07:18:55 +02003351 mask &= proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003352
3353 /* stop here if more than one process is used */
Willy Tarreau9504dd62018-10-15 09:37:03 +02003354 if (atleast2(mask))
Willy Tarreau419ead82014-09-16 13:41:21 +02003355 break;
3356 }
3357 if (&bind_conf->by_fe != &global.stats_fe->conf.bind) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003358 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 +02003359 }
3360 }
3361
3362 /* Make each frontend inherit bind-process from its listeners when not specified. */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003363 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003364 if (curproxy->bind_proc)
3365 continue;
3366
3367 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3368 unsigned long mask;
3369
Willy Tarreaue26993c2020-09-03 07:18:55 +02003370 mask = proc_mask(bind_conf->settings.bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003371 curproxy->bind_proc |= mask;
3372 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003373 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003374 }
3375
3376 if (global.stats_fe) {
3377 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
3378 unsigned long mask;
3379
Willy Tarreaue26993c2020-09-03 07:18:55 +02003380 mask = bind_conf->settings.bind_proc ? bind_conf->settings.bind_proc : 0;
Willy Tarreau419ead82014-09-16 13:41:21 +02003381 global.stats_fe->bind_proc |= mask;
3382 }
Willy Tarreau6daac192019-02-02 17:39:53 +01003383 global.stats_fe->bind_proc = proc_mask(global.stats_fe->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003384 }
3385
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003386 /* propagate bindings from frontends to backends. Don't do it if there
3387 * are any fatal errors as we must not call it with unresolved proxies.
3388 */
3389 if (!cfgerr) {
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003390 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauacbe8ab2014-10-01 20:50:17 +02003391 if (curproxy->cap & PR_CAP_FE)
3392 propagate_processes(curproxy, NULL);
3393 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003394 }
3395
3396 /* Bind each unbound backend to all processes when not specified. */
Willy Tarreau6daac192019-02-02 17:39:53 +01003397 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
3398 curproxy->bind_proc = proc_mask(curproxy->bind_proc);
Willy Tarreau419ead82014-09-16 13:41:21 +02003399
3400 /*******************************************************/
3401 /* At this step, all proxies have a non-null bind_proc */
3402 /*******************************************************/
3403
3404 /* perform the final checks before creating tasks */
3405
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003406 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003407 struct listener *listener;
3408 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003409
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003410 /* Configure SSL for each bind line.
3411 * Note: if configuration fails at some point, the ->ctx member
3412 * remains NULL so that listeners can later detach.
3413 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003414 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003415 if (bind_conf->xprt->prepare_bind_conf &&
3416 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003417 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003418 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003419
Willy Tarreaue6b98942007-10-29 01:09:36 +01003420 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003421 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003422 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003423 int nbproc;
3424
3425 nbproc = my_popcountl(curproxy->bind_proc &
Willy Tarreaue26993c2020-09-03 07:18:55 +02003426 (listener->bind_conf->settings.bind_proc ? listener->bind_conf->settings.bind_proc : curproxy->bind_proc) &
Willy Tarreaua38a7172019-02-02 17:11:28 +01003427 all_proc_mask);
Willy Tarreau7c0ffd22016-04-14 11:47:38 +02003428
3429 if (!nbproc) /* no intersection between listener and frontend */
3430 nbproc = 1;
3431
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003432 if (!listener->luid) {
3433 /* listener ID not set, use automatic numbering with first
3434 * spare entry starting with next_luid.
3435 */
3436 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3437 listener->conf.id.key = listener->luid = next_id;
3438 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003439 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003440 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003441
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003442 /* enable separate counters */
3443 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003444 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003445 if (!listener->name)
3446 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003447 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003448
Willy Tarreaue6b98942007-10-29 01:09:36 +01003449 if (curproxy->options & PR_O_TCP_NOLING)
3450 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003451 if (!listener->maxaccept)
Willy Tarreau66161322021-02-19 15:50:27 +01003452 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau16a21472012-11-19 12:39:59 +01003453
3454 /* we want to have an optimal behaviour on single process mode to
3455 * maximize the work at once, but in multi-process we want to keep
3456 * some fairness between processes, so we target half of the max
3457 * number of events to be balanced over all the processes the proxy
Ilya Shipitsin6fb0f212020-04-02 15:25:26 +05003458 * is bound to. Remember that maxaccept = -1 must be kept as it is
Willy Tarreau16a21472012-11-19 12:39:59 +01003459 * used to disable the limit.
3460 */
Christopher Faulet02f3cf12019-04-30 14:08:41 +02003461 if (listener->maxaccept > 0 && nbproc > 1) {
3462 listener->maxaccept = (listener->maxaccept + 1) / 2;
Willy Tarreau16a21472012-11-19 12:39:59 +01003463 listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc;
3464 }
3465
Willy Tarreau9903f0e2015-04-04 18:50:31 +02003466 listener->accept = session_accept_fd;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003467 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003468 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003469
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003470 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003471 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003472
Willy Tarreau620408f2016-10-21 16:37:51 +02003473 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
3474 listener->options |= LI_O_TCP_L5_RULES;
3475
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003476 /* smart accept mode is automatic in HTTP mode */
3477 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003478 ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02003479 !(curproxy->no_options2 & PR_O2_SMARTACC)))
3480 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01003481 }
3482
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003483 /* Release unused SSL configs */
3484 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau795cdab2016-12-22 17:30:54 +01003485 if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf)
3486 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003487 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003488
Willy Tarreaua38a7172019-02-02 17:11:28 +01003489 if (atleast2(curproxy->bind_proc & all_proc_mask)) {
Willy Tarreau102df612014-05-07 23:56:38 +02003490 if (curproxy->uri_auth) {
Willy Tarreaueb791e02014-09-16 15:11:04 +02003491 int count, maxproc = 0;
3492
3493 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreaue26993c2020-09-03 07:18:55 +02003494 count = my_popcountl(bind_conf->settings.bind_proc);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003495 if (count > maxproc)
3496 maxproc = count;
3497 }
3498 /* backends have 0, frontends have 1 or more */
3499 if (maxproc != 1)
Christopher Faulet767a84b2017-11-24 16:50:31 +01003500 ha_warning("Proxy '%s': in multi-process mode, stats will be"
3501 " limited to process assigned to the current request.\n",
3502 curproxy->id);
Willy Tarreaueb791e02014-09-16 15:11:04 +02003503
Willy Tarreau102df612014-05-07 23:56:38 +02003504 if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003505 ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n",
3506 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003507 }
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003508 }
Willy Tarreau102df612014-05-07 23:56:38 +02003509 if (!LIST_ISEMPTY(&curproxy->sticking_rules)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003510 ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n",
3511 curproxy->id);
Cyril Bonté02ff8ef2010-12-14 22:48:49 +01003512 }
3513 }
Willy Tarreau918ff602011-07-25 16:33:49 +02003514
3515 /* create the task associated with the proxy */
Emeric Brunc60def82017-09-27 14:59:38 +02003516 curproxy->task = task_new(MAX_THREADS_MASK);
Willy Tarreau918ff602011-07-25 16:33:49 +02003517 if (curproxy->task) {
3518 curproxy->task->context = curproxy;
3519 curproxy->task->process = manage_proxy;
Willy Tarreau918ff602011-07-25 16:33:49 +02003520 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003521 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
3522 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02003523 cfgerr++;
3524 }
Willy Tarreaub369a042014-09-16 13:21:03 +02003525 }
3526
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003527 /*
3528 * Recount currently required checks.
3529 */
3530
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003531 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003532 int optnum;
3533
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003534 for (optnum = 0; cfg_opts[optnum].name; optnum++)
3535 if (curproxy->options & cfg_opts[optnum].val)
3536 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003537
Willy Tarreau66aa61f2009-01-18 21:44:07 +01003538 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
3539 if (curproxy->options2 & cfg_opts2[optnum].val)
3540 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01003541 }
3542
Willy Tarreau0fca4832015-05-01 19:12:05 +02003543 /* compute the required process bindings for the peers */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003544 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003545 if (curproxy->table && curproxy->table->peers.p)
3546 curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc;
Willy Tarreau0fca4832015-05-01 19:12:05 +02003547
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01003548 /* compute the required process bindings for the peers from <stktables_list>
3549 * for all the stick-tables, the ones coming with "peers" sections included.
3550 */
3551 for (t = stktables_list; t; t = t->next) {
3552 struct proxy *p;
3553
3554 for (p = t->proxies_list; p; p = p->next_stkt_ref) {
3555 if (t->peers.p && t->peers.p->peers_fe) {
3556 t->peers.p->peers_fe->bind_proc |= p->bind_proc;
3557 }
3558 }
3559 }
3560
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003561 if (cfg_peers) {
3562 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02003563 struct peer *p, *pb;
3564
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003565 /* In the case the peers frontend was not initialized by a
3566 stick-table used in the configuration, set its bind_proc
3567 by default to the first process. */
3568 while (curpeers) {
William Lallemand3ef2d562020-03-24 16:42:15 +01003569 if (curpeers->peers_fe) {
3570 if (curpeers->peers_fe->bind_proc == 0)
3571 curpeers->peers_fe->bind_proc = 1;
3572 }
William Lallemanda2cfd7e2020-03-24 16:02:48 +01003573 curpeers = curpeers->next;
3574 }
3575
3576 curpeers = cfg_peers;
Willy Tarreau1e273012015-05-01 19:15:17 +02003577 /* Remove all peers sections which don't have a valid listener,
3578 * which are not used by any table, or which are bound to more
3579 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02003580 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003581 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02003582 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003583 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02003584 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003585
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003586 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003587 /* the "disabled" keyword was present */
3588 if (curpeers->peers_fe)
3589 stop_proxy(curpeers->peers_fe);
3590 curpeers->peers_fe = NULL;
3591 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02003592 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003593 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
3594 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003595 if (curpeers->peers_fe)
3596 stop_proxy(curpeers->peers_fe);
3597 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003598 }
Willy Tarreau9504dd62018-10-15 09:37:03 +02003599 else if (atleast2(curpeers->peers_fe->bind_proc)) {
Willy Tarreau1e273012015-05-01 19:15:17 +02003600 /* either it's totally stopped or too much used */
3601 if (curpeers->peers_fe->bind_proc) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003602 ha_alert("Peers section '%s': peers referenced by sections "
3603 "running in different processes (%d different ones). "
3604 "Check global.nbproc and all tables' bind-process "
3605 "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc));
Willy Tarreau1e273012015-05-01 19:15:17 +02003606 cfgerr++;
3607 }
3608 stop_proxy(curpeers->peers_fe);
3609 curpeers->peers_fe = NULL;
3610 }
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003611 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003612 /* Initializes the transport layer of the server part of all the peers belonging to
3613 * <curpeers> section if required.
3614 * Note that ->srv is used by the local peer of a new process to connect to the local peer
3615 * of an old process.
3616 */
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003617 p = curpeers->remote;
3618 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01003619 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01003620 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 +01003621 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
3622 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02003623 p = p->next;
3624 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01003625 /* Configure the SSL bindings of the local peer if required. */
3626 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
3627 struct list *l;
3628 struct bind_conf *bind_conf;
3629
3630 l = &curpeers->peers_fe->conf.bind;
3631 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
3632 if (bind_conf->xprt->prepare_bind_conf &&
3633 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
3634 cfgerr++;
3635 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02003636 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02003637 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
3638 curpeers->id);
3639 cfgerr++;
3640 break;
3641 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003642 last = &curpeers->next;
3643 continue;
3644 }
3645
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003646 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02003647 p = curpeers->remote;
3648 while (p) {
3649 pb = p->next;
3650 free(p->id);
3651 free(p);
3652 p = pb;
3653 }
3654
3655 /* Destroy and unlink this curpeers section.
3656 * Note: curpeers is backed up into *last.
3657 */
3658 free(curpeers->id);
3659 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01003660 /* Reset any refereance to this peers section in the list of stick-tables */
3661 for (t = stktables_list; t; t = t->next) {
3662 if (t->peers.p && t->peers.p == *last)
3663 t->peers.p = NULL;
3664 }
Willy Tarreau122541c2011-09-07 21:24:49 +02003665 free(*last);
3666 *last = curpeers;
3667 }
3668 }
3669
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003670 for (t = stktables_list; t; t = t->next) {
3671 if (t->proxy)
3672 continue;
3673 if (!stktable_init(t)) {
3674 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
3675 cfgerr++;
3676 }
3677 }
3678
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003679 /* initialize stick-tables on backend capable proxies. This must not
3680 * be done earlier because the data size may be discovered while parsing
3681 * other proxies.
3682 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003683 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreauc3914d42020-09-24 08:39:22 +02003684 if (curproxy->disabled || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003685 continue;
3686
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003687 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003688 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02003689 cfgerr++;
3690 }
3691 }
3692
Simon Horman0d16a402015-01-30 11:22:58 +09003693 if (mailers) {
3694 struct mailers *curmailers = mailers, **last;
3695 struct mailer *m, *mb;
3696
3697 /* Remove all mailers sections which don't have a valid listener.
3698 * This can happen when a mailers section is never referenced.
3699 */
3700 last = &mailers;
3701 while (*last) {
3702 curmailers = *last;
3703 if (curmailers->users) {
3704 last = &curmailers->next;
3705 continue;
3706 }
3707
Christopher Faulet767a84b2017-11-24 16:50:31 +01003708 ha_warning("Removing incomplete section 'mailers %s'.\n",
3709 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09003710
3711 m = curmailers->mailer_list;
3712 while (m) {
3713 mb = m->next;
3714 free(m->id);
3715 free(m);
3716 m = mb;
3717 }
3718
3719 /* Destroy and unlink this curmailers section.
3720 * Note: curmailers is backed up into *last.
3721 */
3722 free(curmailers->id);
3723 curmailers = curmailers->next;
3724 free(*last);
3725 *last = curmailers;
3726 }
3727 }
3728
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003729 /* Update server_state_file_name to backend name if backend is supposed to use
3730 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003731 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003732 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
3733 curproxy->server_state_file_name == NULL)
3734 curproxy->server_state_file_name = strdup(curproxy->id);
3735 }
3736
Emeric Brun750fe792020-12-23 16:51:12 +01003737 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06003738 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
3739 ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n",
3740 curr_resolvers->id, curr_resolvers->conf.file,
3741 curr_resolvers->conf.line);
3742 err_code |= ERR_WARN;
3743 }
3744 }
3745
William Lallemand48b4bb42017-10-23 14:36:34 +02003746 list_for_each_entry(postparser, &postparsers, list) {
3747 if (postparser->func)
3748 cfgerr += postparser->func();
3749 }
3750
Willy Tarreaubb925012009-07-23 13:36:36 +02003751 if (cfgerr > 0)
3752 err_code |= ERR_ALERT | ERR_FATAL;
3753 out:
3754 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02003755}
3756
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003757/*
3758 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
3759 * parsing sessions.
3760 */
3761void cfg_register_keywords(struct cfg_kw_list *kwl)
3762{
3763 LIST_ADDQ(&cfg_keywords.list, &kwl->list);
3764}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003765
Willy Tarreau5b2c3362008-07-09 19:39:06 +02003766/*
3767 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
3768 */
3769void cfg_unregister_keywords(struct cfg_kw_list *kwl)
3770{
3771 LIST_DEL(&kwl->list);
3772 LIST_INIT(&kwl->list);
3773}
Willy Tarreaubaaee002006-06-26 02:48:02 +02003774
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003775/* this function register new section in the haproxy configuration file.
3776 * <section_name> is the name of this new section and <section_parser>
3777 * is the called parser. If two section declaration have the same name,
3778 * only the first declared is used.
3779 */
3780int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02003781 int (*section_parser)(const char *, int, char **, int),
3782 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003783{
3784 struct cfg_section *cs;
3785
Willy Tarreau5e4261b2016-05-17 16:16:09 +02003786 list_for_each_entry(cs, &sections, list) {
3787 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003788 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02003789 return 0;
3790 }
3791 }
3792
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003793 cs = calloc(1, sizeof(*cs));
3794 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003795 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003796 return 0;
3797 }
3798
3799 cs->section_name = section_name;
3800 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02003801 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01003802
3803 LIST_ADDQ(&sections, &cs->list);
3804
3805 return 1;
3806}
3807
William Lallemand48b4bb42017-10-23 14:36:34 +02003808/* this function register a new function which will be called once the haproxy
3809 * configuration file has been parsed. It's useful to check dependencies
3810 * between sections or to resolve items once everything is parsed.
3811 */
3812int cfg_register_postparser(char *name, int (*func)())
3813{
3814 struct cfg_postparser *cp;
3815
3816 cp = calloc(1, sizeof(*cp));
3817 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003818 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02003819 return 0;
3820 }
3821 cp->name = name;
3822 cp->func = func;
3823
3824 LIST_ADDQ(&postparsers, &cp->list);
3825
3826 return 1;
3827}
3828
Willy Tarreaubaaee002006-06-26 02:48:02 +02003829/*
David Carlier845efb52015-09-25 11:49:18 +01003830 * free all config section entries
3831 */
3832void cfg_unregister_sections(void)
3833{
3834 struct cfg_section *cs, *ics;
3835
3836 list_for_each_entry_safe(cs, ics, &sections, list) {
3837 LIST_DEL(&cs->list);
3838 free(cs);
3839 }
3840}
3841
Christopher Faulet7110b402016-10-26 11:09:44 +02003842void cfg_backup_sections(struct list *backup_sections)
3843{
3844 struct cfg_section *cs, *ics;
3845
3846 list_for_each_entry_safe(cs, ics, &sections, list) {
3847 LIST_DEL(&cs->list);
3848 LIST_ADDQ(backup_sections, &cs->list);
3849 }
3850}
3851
3852void cfg_restore_sections(struct list *backup_sections)
3853{
3854 struct cfg_section *cs, *ics;
3855
3856 list_for_each_entry_safe(cs, ics, backup_sections, list) {
3857 LIST_DEL(&cs->list);
3858 LIST_ADDQ(&sections, &cs->list);
3859 }
3860}
3861
Willy Tarreaue6552512018-11-26 11:33:13 +01003862/* these are the config sections handled by default */
3863REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
3864REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
3865REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
3866REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
3867REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
3868REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
3869REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
3870REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
3871REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02003872
David Carlier845efb52015-09-25 11:49:18 +01003873/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02003874 * Local variables:
3875 * c-indent-level: 8
3876 * c-basic-offset: 8
3877 * End:
3878 */