blob: a56052151d523dc166f4d2d50211cd19e4d55cbf [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
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +010023#include <dirent.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020024#include <stdio.h>
25#include <stdlib.h>
26#include <string.h>
27#include <netdb.h>
28#include <ctype.h>
Willy Tarreau95c20ac2007-03-25 15:39:23 +020029#include <pwd.h>
30#include <grp.h>
Willy Tarreau0b4ed902007-03-26 00:18:40 +020031#include <errno.h>
Willy Tarreau3f49b302007-06-11 00:29:26 +020032#include <sys/types.h>
33#include <sys/stat.h>
Willy Tarreau3f49b302007-06-11 00:29:26 +020034#include <unistd.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020035
Willy Tarreaudcc048a2020-06-04 19:11:43 +020036#include <haproxy/acl.h>
Christopher Faulet42c6cf92021-03-25 17:19:04 +010037#include <haproxy/action.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020038#include <haproxy/api.h>
Willy Tarreau732525f2021-05-06 15:49:04 +020039#include <haproxy/arg.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020040#include <haproxy/auth.h>
Willy Tarreau49801602020-06-04 22:50:02 +020041#include <haproxy/backend.h>
Willy Tarreau278161c2020-06-04 11:18:28 +020042#include <haproxy/capture.h>
Willy Tarreau66243b42021-07-16 15:39:28 +020043#include <haproxy/cfgcond.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020044#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020045#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020046#include <haproxy/check.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020047#include <haproxy/chunk.h>
Willy Tarreau55542642021-10-08 09:33:24 +020048#include <haproxy/clock.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020049#ifdef USE_CPU_AFFINITY
Amaury Denoyellec90932b2021-04-14 16:16:03 +020050#include <haproxy/cpuset.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020051#endif
Willy Tarreau7ea393d2020-06-04 18:02:10 +020052#include <haproxy/connection.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020053#include <haproxy/errors.h>
Willy Tarreauc7babd82020-06-04 21:29:29 +020054#include <haproxy/filters.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020055#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020056#include <haproxy/global.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020057#include <haproxy/http_ana.h>
Willy Tarreauc761f842020-06-04 11:40:28 +020058#include <haproxy/http_rules.h>
Willy Tarreaufbe8da32020-06-04 14:34:27 +020059#include <haproxy/lb_chash.h>
Willy Tarreaub5fc3bf2020-06-04 14:37:38 +020060#include <haproxy/lb_fas.h>
Willy Tarreau02549412020-06-04 14:41:04 +020061#include <haproxy/lb_fwlc.h>
Willy Tarreau546ba422020-06-04 14:45:03 +020062#include <haproxy/lb_fwrr.h>
Willy Tarreau28671592020-06-04 20:22:59 +020063#include <haproxy/lb_map.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020064#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020065#include <haproxy/log.h>
Willy Tarreaucee013e2020-06-05 11:40:38 +020066#include <haproxy/mailers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020067#include <haproxy/namespace.h>
Amaury Denoyelleb59b8892022-01-25 17:48:47 +010068#include <haproxy/quic_sock.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020069#include <haproxy/obj_type-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020070#include <haproxy/peers-t.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020071#include <haproxy/peers.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020072#include <haproxy/pool.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020073#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020074#include <haproxy/proxy.h>
Emeric Brunc9437992021-02-12 19:42:55 +010075#include <haproxy/resolvers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020076#include <haproxy/sample.h>
77#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020078#include <haproxy/session.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020079#include <haproxy/stats-t.h>
Willy Tarreau872f2ea2020-06-04 18:46:44 +020080#include <haproxy/stick_table.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020081#include <haproxy/stream.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020082#include <haproxy/task.h>
Willy Tarreau8b550af2020-06-04 17:42:48 +020083#include <haproxy/tcp_rules.h>
Amaury Denoyellef2c27a52021-07-23 15:46:46 +020084#include <haproxy/tcpcheck.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020085#include <haproxy/thread.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020086#include <haproxy/tools.h>
87#include <haproxy/uri_auth-t.h>
Frédéric Lécaille884f2e92020-11-23 14:23:21 +010088#include <haproxy/xprt_quic.h>
Willy Tarreaubaaee002006-06-26 02:48:02 +020089
90
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +010091/* Used to chain configuration sections definitions. This list
92 * stores struct cfg_section
93 */
94struct list sections = LIST_HEAD_INIT(sections);
95
William Lallemand48b4bb42017-10-23 14:36:34 +020096struct list postparsers = LIST_HEAD_INIT(postparsers);
97
Eric Salama1b8dacc2021-03-16 15:12:17 +010098extern struct proxy *mworker_proxy;
99
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100100char *cursection = NULL;
Willy Tarreauc8d5b952019-02-27 17:25:52 +0100101int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */
Willy Tarreau5af24ef2009-03-15 15:23:16 +0100102int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */
Christopher Faulet79bdef32016-11-04 22:36:15 +0100103char *cfg_scope = NULL; /* the current scope during the configuration parsing */
Willy Tarreaubaaee002006-06-26 02:48:02 +0200104
Willy Tarreau8a022d52021-04-27 20:29:11 +0200105/* how to handle default paths */
106static enum default_path_mode {
107 DEFAULT_PATH_CURRENT = 0, /* "current": paths are relative to CWD (this is the default) */
108 DEFAULT_PATH_CONFIG, /* "config": paths are relative to config file */
109 DEFAULT_PATH_PARENT, /* "parent": paths are relative to config file's ".." */
110 DEFAULT_PATH_ORIGIN, /* "origin": paths are relative to default_path_origin */
111} default_path_mode;
112
113static char initial_cwd[PATH_MAX];
114static char current_cwd[PATH_MAX];
115
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200116/* List head of all known configuration keywords */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100117struct cfg_kw_list cfg_keywords = {
Willy Tarreau5b2c3362008-07-09 19:39:06 +0200118 .list = LIST_HEAD_INIT(cfg_keywords.list)
119};
120
Willy Tarreaubaaee002006-06-26 02:48:02 +0200121/*
122 * converts <str> to a list of listeners which are dynamically allocated.
123 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
124 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
125 * - <port> is a numerical port from 1 to 65535 ;
126 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
127 * This can be repeated as many times as necessary, separated by a coma.
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200128 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
129 * not NULL, it must be a valid pointer to either NULL or a freeable area that
130 * will be replaced with an error message.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200131 */
Willy Tarreau4fbb2282012-09-20 20:01:39 +0200132int 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 +0200133{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200134 struct protocol *proto;
Willy Tarreau2dff0c22011-03-04 15:43:13 +0100135 char *next, *dupstr;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200136 int port, end;
137
138 next = dupstr = strdup(str);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200139
Willy Tarreaubaaee002006-06-26 02:48:02 +0200140 while (next && *next) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200141 struct sockaddr_storage *ss2;
Willy Tarreau40aa0702013-03-10 23:51:38 +0100142 int fd = -1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200143
144 str = next;
145 /* 1) look for the end of the first address */
Krzysztof Piotr Oledzki52d522b2009-01-27 16:57:08 +0100146 if ((next = strchr(str, ',')) != NULL) {
Willy Tarreaubaaee002006-06-26 02:48:02 +0200147 *next++ = 0;
148 }
149
Willy Tarreau5fc93282020-09-16 18:25:03 +0200150 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Eric Salama1b8dacc2021-03-16 15:12:17 +0100151 (curproxy == global.cli_fe || curproxy == mworker_proxy) ? NULL : global.unix_bind.prefix,
Willy Tarreau32819932020-09-04 15:53:16 +0200152 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
Willy Tarreau5e1779a2020-09-16 16:28:08 +0200153 PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT);
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100154 if (!ss2)
155 goto fail;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200156
Willy Tarreau12eb2a62013-03-06 15:45:03 +0100157 /* OK the address looks correct */
Willy Tarreau91b780a2022-05-20 16:15:01 +0200158 if (proto->proto_type == PROTO_TYPE_DGRAM)
159 bind_conf->options |= BC_O_USE_SOCK_DGRAM;
160 else
161 bind_conf->options |= BC_O_USE_SOCK_STREAM;
162
163 if (proto->xprt_type == PROTO_TYPE_DGRAM)
164 bind_conf->options |= BC_O_USE_XPRT_DGRAM;
165 else
166 bind_conf->options |= BC_O_USE_XPRT_STREAM;
Frédéric Lécaille884f2e92020-11-23 14:23:21 +0100167
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200168 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreau0de59fd2017-09-15 08:10:44 +0200169 memprintf(err, "%s for address '%s'.\n", *err, str);
170 goto fail;
171 }
Willy Tarreaubaaee002006-06-26 02:48:02 +0200172 } /* end while(next) */
173 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200174 return 1;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200175 fail:
176 free(dupstr);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +0200177 return 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +0200178}
179
William Lallemand6e62fb62015-04-28 16:55:23 +0200180/*
Willy Tarreauaa333122020-09-16 15:13:04 +0200181 * converts <str> to a list of datagram-oriented listeners which are dynamically
182 * allocated.
183 * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where :
184 * - <addr> can be empty or "*" to indicate INADDR_ANY ;
185 * - <port> is a numerical port from 1 to 65535 ;
186 * - <end> indicates to use the range from <port> to <end> instead (inclusive).
187 * This can be repeated as many times as necessary, separated by a coma.
188 * Function returns 1 for success or 0 if error. In case of errors, if <err> is
189 * not NULL, it must be a valid pointer to either NULL or a freeable area that
190 * will be replaced with an error message.
191 */
192int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err)
193{
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200194 struct protocol *proto;
Willy Tarreauaa333122020-09-16 15:13:04 +0200195 char *next, *dupstr;
196 int port, end;
197
198 next = dupstr = strdup(str);
199
200 while (next && *next) {
201 struct sockaddr_storage *ss2;
202 int fd = -1;
203
204 str = next;
205 /* 1) look for the end of the first address */
206 if ((next = strchr(str, ',')) != NULL) {
207 *next++ = 0;
208 }
209
Willy Tarreau5fc93282020-09-16 18:25:03 +0200210 ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err,
Willy Tarreau4975d142021-03-13 11:00:33 +0100211 curproxy == global.cli_fe ? NULL : global.unix_bind.prefix,
Willy Tarreauaa333122020-09-16 15:13:04 +0200212 NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE |
213 PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT);
214 if (!ss2)
215 goto fail;
216
217 /* OK the address looks correct */
Willy Tarreau9b3178d2020-09-16 17:58:55 +0200218 if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) {
Willy Tarreauaa333122020-09-16 15:13:04 +0200219 memprintf(err, "%s for address '%s'.\n", *err, str);
220 goto fail;
221 }
222 } /* end while(next) */
223 free(dupstr);
224 return 1;
225 fail:
226 free(dupstr);
227 return 0;
228}
229
230/*
Willy Tarreau08138612021-05-08 19:58:37 +0200231 * Sends a warning if proxy <proxy> does not have at least one of the
232 * capabilities in <cap>. An optional <hint> may be added at the end
233 * of the warning to help the user. Returns 1 if a warning was emitted
234 * or 0 if the condition is valid.
235 */
236int warnifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint)
237{
238 char *msg;
239
240 switch (cap) {
241 case PR_CAP_BE: msg = "no backend"; break;
242 case PR_CAP_FE: msg = "no frontend"; break;
243 case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break;
244 default: msg = "not enough"; break;
245 }
246
247 if (!(proxy->cap & cap)) {
248 ha_warning("parsing [%s:%d] : '%s' ignored because %s '%s' has %s capability.%s\n",
249 file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : "");
250 return 1;
251 }
252 return 0;
253}
254
255/*
256 * Sends an alert if proxy <proxy> does not have at least one of the
257 * capabilities in <cap>. An optional <hint> may be added at the end
258 * of the alert to help the user. Returns 1 if an alert was emitted
259 * or 0 if the condition is valid.
260 */
261int failifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint)
262{
263 char *msg;
264
265 switch (cap) {
266 case PR_CAP_BE: msg = "no backend"; break;
267 case PR_CAP_FE: msg = "no frontend"; break;
268 case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break;
269 default: msg = "not enough"; break;
270 }
271
272 if (!(proxy->cap & cap)) {
273 ha_alert("parsing [%s:%d] : '%s' not allowed because %s '%s' has %s capability.%s\n",
274 file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : "");
275 return 1;
276 }
277 return 0;
278}
279
280/*
Willy Tarreauece9b072016-12-21 22:41:44 +0100281 * Report an error in <msg> when there are too many arguments. This version is
282 * intended to be used by keyword parsers so that the message will be included
283 * into the general error message. The index is the current keyword in args.
284 * Return 0 if the number of argument is correct, otherwise build a message and
285 * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The
286 * message may also be null, it will simply not be produced (useful to check only).
287 * <msg> and <err_code> are only affected on error.
288 */
289int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code)
290{
291 int i;
292
293 if (!*args[index + maxarg + 1])
294 return 0;
295
296 if (msg) {
297 *msg = NULL;
298 memprintf(msg, "%s", args[0]);
299 for (i = 1; i <= index; i++)
300 memprintf(msg, "%s %s", *msg, args[i]);
301
302 memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]);
303 }
304 if (err_code)
305 *err_code |= ERR_ALERT | ERR_FATAL;
306
307 return 1;
308}
309
310/*
311 * same as too_many_args_idx with a 0 index
312 */
313int too_many_args(int maxarg, char **args, char **msg, int *err_code)
314{
315 return too_many_args_idx(maxarg, 0, args, msg, err_code);
316}
317
318/*
William Lallemand6e62fb62015-04-28 16:55:23 +0200319 * Report a fatal Alert when there is too much arguments
320 * The index is the current keyword in args
321 * Return 0 if the number of argument is correct, otherwise emit an alert and return 1
322 * Fill err_code with an ERR_ALERT and an ERR_FATAL
323 */
324int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code)
325{
326 char *kw = NULL;
327 int i;
328
329 if (!*args[index + maxarg + 1])
330 return 0;
331
332 memprintf(&kw, "%s", args[0]);
333 for (i = 1; i <= index; i++) {
334 memprintf(&kw, "%s %s", kw, args[i]);
335 }
336
Christopher Faulet767a84b2017-11-24 16:50:31 +0100337 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 +0200338 free(kw);
339 *err_code |= ERR_ALERT | ERR_FATAL;
340 return 1;
341}
342
343/*
344 * same as alertif_too_many_args_idx with a 0 index
345 */
346int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code)
347{
348 return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code);
349}
350
Willy Tarreau61d18892009-03-31 10:49:21 +0200351
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100352/* Report it if a request ACL condition uses some keywords that are incompatible
353 * with the place where the ACL is used. It returns either 0 or ERR_WARN so that
354 * its result can be or'ed with err_code. Note that <cond> may be NULL and then
355 * will be ignored.
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100356 */
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +0100357int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100358{
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100359 const struct acl *acl;
Willy Tarreau93fddf12013-03-31 22:59:32 +0200360 const char *kw;
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100361
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100362 if (!cond)
Willy Tarreauf1e98b82010-01-28 17:59:39 +0100363 return 0;
364
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100365 acl = acl_cond_conflicts(cond, where);
366 if (acl) {
367 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100368 ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n",
369 file, line, acl->name, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100370 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100371 ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n",
372 file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100373 return ERR_WARN;
374 }
375 if (!acl_cond_kw_conflicts(cond, where, &acl, &kw))
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100376 return 0;
377
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100378 if (acl->name && *acl->name)
Christopher Faulet767a84b2017-11-24 16:50:31 +0100379 ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n",
380 file, line, acl->name, kw, sample_ckp_names(where));
Willy Tarreaua91d0a52013-03-25 08:12:18 +0100381 else
Christopher Faulet767a84b2017-11-24 16:50:31 +0100382 ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n",
383 file, line, kw, sample_ckp_names(where));
Willy Tarreaufdb563c2010-01-31 15:43:27 +0100384 return ERR_WARN;
385}
386
Christopher Faulet581db2b2021-03-26 10:02:46 +0100387/* Report it if an ACL uses a L6 sample fetch from an HTTP proxy. It returns
388 * either 0 or ERR_WARN so that its result can be or'ed with err_code. Note that
389 * <cond> may be NULL and then will be ignored.
390*/
391int warnif_tcp_http_cond(const struct proxy *px, const struct acl_cond *cond)
392{
393 if (!cond || px->mode != PR_MODE_HTTP)
394 return 0;
395
396 if (cond->use & (SMP_USE_L6REQ|SMP_USE_L6RES)) {
397 ha_warning("Proxy '%s': L6 sample fetches ignored on HTTP proxies (declared at %s:%d).\n",
398 px->id, cond->file, cond->line);
399 return ERR_WARN;
400 }
401 return 0;
402}
403
Willy Tarreaue2afcc42021-03-12 09:08:04 +0100404/* try to find in <list> the word that looks closest to <word> by counting
405 * transitions between letters, digits and other characters. Will return the
406 * best matching word if found, otherwise NULL. An optional array of extra
407 * words to compare may be passed in <extra>, but it must then be terminated
408 * by a NULL entry. If unused it may be NULL.
409 */
410const char *cfg_find_best_match(const char *word, const struct list *list, int section, const char **extra)
411{
412 uint8_t word_sig[1024]; // 0..25=letter, 26=digit, 27=other, 28=begin, 29=end
413 uint8_t list_sig[1024];
414 const struct cfg_kw_list *kwl;
415 int index;
416 const char *best_ptr = NULL;
417 int dist, best_dist = INT_MAX;
418
419 make_word_fingerprint(word_sig, word);
420 list_for_each_entry(kwl, list, list) {
421 for (index = 0; kwl->kw[index].kw != NULL; index++) {
422 if (kwl->kw[index].section != section)
423 continue;
424
425 make_word_fingerprint(list_sig, kwl->kw[index].kw);
426 dist = word_fingerprint_distance(word_sig, list_sig);
427 if (dist < best_dist) {
428 best_dist = dist;
429 best_ptr = kwl->kw[index].kw;
430 }
431 }
432 }
433
434 while (extra && *extra) {
435 make_word_fingerprint(list_sig, *extra);
436 dist = word_fingerprint_distance(word_sig, list_sig);
437 if (dist < best_dist) {
438 best_dist = dist;
439 best_ptr = *extra;
440 }
441 extra++;
442 }
443
444 if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr)))
445 best_ptr = NULL;
446 return best_ptr;
447}
448
Christopher Faulet62519022017-10-16 15:49:32 +0200449/* Parse a string representing a process number or a set of processes. It must
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100450 * be "all", "odd", "even", a number between 1 and <max> or a range with
Christopher Faulet5ab51772017-11-22 11:21:58 +0100451 * two such numbers delimited by a dash ('-'). On success, it returns
452 * 0. otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200453 *
454 * Note: this function can also be used to parse a thread number or a set of
455 * threads.
456 */
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100457int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200458{
Christopher Faulet26028f62017-11-22 15:01:51 +0100459 if (autoinc) {
460 *autoinc = 0;
461 if (strncmp(arg, "auto:", 5) == 0) {
462 arg += 5;
463 *autoinc = 1;
464 }
465 }
466
Christopher Faulet62519022017-10-16 15:49:32 +0200467 if (strcmp(arg, "all") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100468 *proc |= ~0UL;
Christopher Faulet62519022017-10-16 15:49:32 +0200469 else if (strcmp(arg, "odd") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100470 *proc |= ~0UL/3UL; /* 0x555....555 */
Christopher Faulet62519022017-10-16 15:49:32 +0200471 else if (strcmp(arg, "even") == 0)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100472 *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */
Christopher Faulet62519022017-10-16 15:49:32 +0200473 else {
Christopher Faulet18cca782019-02-07 16:29:41 +0100474 const char *p, *dash = NULL;
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100475 unsigned int low, high;
476
Christopher Faulet18cca782019-02-07 16:29:41 +0100477 for (p = arg; *p; p++) {
478 if (*p == '-' && !dash)
479 dash = p;
Willy Tarreau90807112020-02-25 08:16:33 +0100480 else if (!isdigit((unsigned char)*p)) {
Christopher Faulet18cca782019-02-07 16:29:41 +0100481 memprintf(err, "'%s' is not a valid number/range.", arg);
482 return -1;
483 }
Christopher Faulet5ab51772017-11-22 11:21:58 +0100484 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100485
486 low = high = str2uic(arg);
Christopher Faulet18cca782019-02-07 16:29:41 +0100487 if (dash)
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100488 high = ((!*(dash+1)) ? max : str2uic(dash + 1));
Christopher Fauletff4121f2017-11-22 16:38:49 +0100489
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100490 if (high < low) {
491 unsigned int swap = low;
492 low = high;
493 high = swap;
494 }
495
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100496 if (low < 1 || low > max || high > max) {
Christopher Fauletcb6a9452017-11-22 16:50:41 +0100497 memprintf(err, "'%s' is not a valid number/range."
498 " It supports numbers from 1 to %d.\n",
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100499 arg, max);
Christopher Faulet5ab51772017-11-22 11:21:58 +0100500 return 1;
501 }
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100502
503 for (;low <= high; low++)
Christopher Faulet5ab51772017-11-22 11:21:58 +0100504 *proc |= 1UL << (low-1);
Christopher Faulet62519022017-10-16 15:49:32 +0200505 }
Willy Tarreauc9a82e42019-01-26 13:25:14 +0100506 *proc &= ~0UL >> (LONGBITS - max);
Christopher Faulet1dcb9cb2017-11-22 10:24:40 +0100507
Christopher Faulet5ab51772017-11-22 11:21:58 +0100508 return 0;
Christopher Faulet62519022017-10-16 15:49:32 +0200509}
510
David Carlier7e351ee2017-12-01 09:14:02 +0000511#ifdef USE_CPU_AFFINITY
Christopher Faulet62519022017-10-16 15:49:32 +0200512/* Parse cpu sets. Each CPU set is either a unique number between 0 and
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200513 * ha_cpuset_size() - 1 or a range with two such numbers delimited by a dash
Amaury Denoyellea8082352021-04-06 16:46:15 +0200514 * ('-'). If <comma_allowed> is set, each CPU set can be a list of unique
515 * numbers or ranges separated by a comma. It is also possible to specify
516 * multiple cpu numbers or ranges in distinct argument in <args>. On success,
517 * it returns 0, otherwise it returns 1 with an error message in <err>.
Christopher Faulet62519022017-10-16 15:49:32 +0200518 */
Amaury Denoyellea8082352021-04-06 16:46:15 +0200519unsigned long parse_cpu_set(const char **args, struct hap_cpuset *cpu_set,
520 int comma_allowed, char **err)
Christopher Faulet62519022017-10-16 15:49:32 +0200521{
522 int cur_arg = 0;
Amaury Denoyellea8082352021-04-06 16:46:15 +0200523 const char *arg;
Christopher Faulet62519022017-10-16 15:49:32 +0200524
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200525 ha_cpuset_zero(cpu_set);
526
Amaury Denoyellea8082352021-04-06 16:46:15 +0200527 arg = args[cur_arg];
528 while (*arg) {
529 const char *dash, *comma;
Christopher Faulet62519022017-10-16 15:49:32 +0200530 unsigned int low, high;
531
Willy Tarreau90807112020-02-25 08:16:33 +0100532 if (!isdigit((unsigned char)*args[cur_arg])) {
Amaury Denoyellea8082352021-04-06 16:46:15 +0200533 memprintf(err, "'%s' is not a CPU range.", arg);
Christopher Faulet62519022017-10-16 15:49:32 +0200534 return -1;
535 }
536
Amaury Denoyellea8082352021-04-06 16:46:15 +0200537 low = high = str2uic(arg);
538
539 comma = comma_allowed ? strchr(arg, ',') : NULL;
540 dash = strchr(arg, '-');
541
542 if (dash && (!comma || dash < comma))
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200543 high = *(dash+1) ? str2uic(dash + 1) : ha_cpuset_size() - 1;
Christopher Faulet62519022017-10-16 15:49:32 +0200544
545 if (high < low) {
546 unsigned int swap = low;
547 low = high;
548 high = swap;
549 }
550
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200551 if (high >= ha_cpuset_size()) {
552 memprintf(err, "supports CPU numbers from 0 to %d.",
553 ha_cpuset_size() - 1);
Christopher Faulet62519022017-10-16 15:49:32 +0200554 return 1;
555 }
556
557 while (low <= high)
Amaury Denoyellec90932b2021-04-14 16:16:03 +0200558 ha_cpuset_set(cpu_set, low++);
Christopher Faulet62519022017-10-16 15:49:32 +0200559
Amaury Denoyellea8082352021-04-06 16:46:15 +0200560 /* if a comma is present, parse the rest of the arg, else
561 * skip to the next arg */
562 arg = comma ? comma + 1 : args[++cur_arg];
Christopher Faulet62519022017-10-16 15:49:32 +0200563 }
564 return 0;
565}
David Carlier7e351ee2017-12-01 09:14:02 +0000566#endif
567
Frédéric Lécaille18251032019-01-11 11:07:15 +0100568/* Allocate and initialize the frontend of a "peers" section found in
Willy Tarreau356866a2022-05-31 09:10:19 +0200569 * file <file> at line <linenum> for section <peers>.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100570 * Return 0 if succeeded, -1 if not.
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200571 * Note that this function may be called from "default-server"
572 * or "peer" lines.
Frédéric Lécaille18251032019-01-11 11:07:15 +0100573 */
Willy Tarreau356866a2022-05-31 09:10:19 +0200574static int init_peers_frontend(const char *file, int linenum, struct peers *peers)
Frédéric Lécaille18251032019-01-11 11:07:15 +0100575{
576 struct proxy *p;
577
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200578 if (peers->peers_fe) {
579 p = peers->peers_fe;
580 goto out;
581 }
Frédéric Lécaille9492c4e2019-01-11 11:47:12 +0100582
Frédéric Lécaille18251032019-01-11 11:07:15 +0100583 p = calloc(1, sizeof *p);
584 if (!p) {
585 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
586 return -1;
587 }
588
589 init_new_proxy(p);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200590 peers_setup_frontend(p);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100591 p->parent = peers;
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200592 /* Finally store this frontend. */
593 peers->peers_fe = p;
594
595 out:
Willy Tarreau356866a2022-05-31 09:10:19 +0200596 if (!p->id && peers->id)
597 p->id = strdup(peers->id);
598
Frédéric Lécaille1055e682018-04-26 14:35:21 +0200599 free(p->conf.file);
Frédéric Lécaille18251032019-01-11 11:07:15 +0100600 p->conf.args.file = p->conf.file = strdup(file);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100601 if (linenum != -1)
602 p->conf.args.line = p->conf.line = linenum;
Frédéric Lécaille18251032019-01-11 11:07:15 +0100603
604 return 0;
605}
Willy Tarreauade5ec42010-01-28 19:33:49 +0100606
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100607/* Only change ->file, ->line and ->arg struct bind_conf member values
608 * if already present.
609 */
610static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p,
611 const char *file, int line,
612 const char *arg, struct xprt_ops *xprt)
613{
614 struct bind_conf *bind_conf;
615
616 if (!LIST_ISEMPTY(&p->conf.bind)) {
617 bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe);
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200618 /*
619 * We keep bind_conf->file and bind_conf->line unchanged
620 * to make them available for error messages
621 */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100622 if (arg) {
623 free(bind_conf->arg);
624 bind_conf->arg = strdup(arg);
625 }
626 }
627 else {
628 bind_conf = bind_conf_alloc(p, file, line, arg, xprt);
629 }
630
631 return bind_conf;
632}
633
634/*
635 * Allocate a new struct peer parsed at line <linenum> in file <file>
636 * to be added to <peers>.
637 * Returns the new allocated structure if succeeded, NULL if not.
638 */
639static struct peer *cfg_peers_add_peer(struct peers *peers,
640 const char *file, int linenum,
641 const char *id, int local)
642{
643 struct peer *p;
644
645 p = calloc(1, sizeof *p);
646 if (!p) {
647 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
648 return NULL;
649 }
650
651 /* the peers are linked backwards first */
652 peers->count++;
Christopher Faulet387e7972022-05-12 14:47:52 +0200653 p->peers = peers;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100654 p->next = peers->remote;
655 peers->remote = p;
656 p->conf.file = strdup(file);
657 p->conf.line = linenum;
658 p->last_change = now.tv_sec;
659 p->xprt = xprt_get(XPRT_RAW);
660 p->sock_init_arg = NULL;
661 HA_SPIN_INIT(&p->lock);
662 if (id)
663 p->id = strdup(id);
664 if (local) {
665 p->local = 1;
666 peers->local = p;
667 }
668
669 return p;
670}
671
Willy Tarreaubaaee002006-06-26 02:48:02 +0200672/*
William Lallemand51097192015-04-14 16:35:22 +0200673 * Parse a line in a <listen>, <frontend> or <backend> section.
Willy Tarreau93893792009-07-23 13:19:11 +0200674 * Returns the error code, 0 if OK, or any combination of :
675 * - ERR_ABORT: must abort ASAP
676 * - ERR_FATAL: we can continue parsing but not start the service
677 * - ERR_WARN: a warning has been emitted
678 * - ERR_ALERT: an alert has been emitted
679 * Only the two first ones can stop processing, the two others are just
680 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +0200681 */
Emeric Brun32da3c42010-09-23 18:39:19 +0200682int cfg_parse_peers(const char *file, int linenum, char **args, int kwm)
683{
684 static struct peers *curpeers = NULL;
685 struct peer *newpeer = NULL;
686 const char *err;
Willy Tarreau4348fad2012-09-20 16:48:07 +0200687 struct bind_conf *bind_conf;
688 struct listener *l;
Emeric Brun32da3c42010-09-23 18:39:19 +0200689 int err_code = 0;
Willy Tarreau902636f2013-03-10 19:44:48 +0100690 char *errmsg = NULL;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100691 static int bind_line, peer_line;
692
693 if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) {
694 int cur_arg;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100695 struct bind_conf *bind_conf;
Willy Tarreau55f0f7b2022-05-20 15:44:17 +0200696 int ret;
Emeric Brun32da3c42010-09-23 18:39:19 +0200697
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100698 cur_arg = 1;
699
Willy Tarreau356866a2022-05-31 09:10:19 +0200700 if (init_peers_frontend(file, linenum, curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200701 err_code |= ERR_ALERT | ERR_ABORT;
702 goto out;
703 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100704
705 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum,
Willy Tarreau8d158132022-07-05 15:54:09 +0200706 args[1], xprt_get(XPRT_RAW));
William Lallemand1d932172022-07-06 14:30:23 +0200707 if (!bind_conf) {
708 ha_alert("parsing [%s:%d] : '%s %s' : cannot allocate memory.\n", file, linenum, args[0], args[1]);
709 err_code |= ERR_FATAL;
710 goto out;
711 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100712 if (*args[0] == 'b') {
713 struct listener *l;
714
715 if (peer_line) {
716 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
717 err_code |= ERR_ALERT | ERR_FATAL;
718 goto out;
719 }
720
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200721 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
722 ha_alert("parsing [%s:%d] : One listener per \"peers\" section is authorized but another is already configured at [%s:%d].\n", file, linenum, bind_conf->file, bind_conf->line);
723 err_code |= ERR_FATAL;
724 }
725
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100726 if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
727 if (errmsg && *errmsg) {
728 indent_msg(&errmsg, 2);
729 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
730 }
731 else
732 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
Willy Tarreau0d044102022-05-20 15:19:48 +0200733 file, linenum, args[0], args[1], args[1]);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100734 err_code |= ERR_FATAL;
735 goto out;
736 }
Emeric Brunca825782022-05-25 10:25:45 +0200737 /*
738 * Newly allocated listener is at the end of the list
739 */
740 l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100741 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100742 l->accept = session_accept_fd;
743 l->analysers |= curpeers->peers_fe->fe_req_ana;
744 l->default_target = curpeers->peers_fe->default_target;
745 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100746 global.maxsock++; /* for the listening socket */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100747
748 bind_line = 1;
749 if (cfg_peers->local) {
750 newpeer = cfg_peers->local;
751 }
752 else {
753 /* This peer is local.
754 * Note that we do not set the peer ID. This latter is initialized
755 * when parsing "peer" or "server" line.
756 */
757 newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1);
758 if (!newpeer) {
759 err_code |= ERR_ALERT | ERR_ABORT;
760 goto out;
761 }
762 }
Willy Tarreau37159062020-08-27 07:48:42 +0200763 newpeer->addr = l->rx.addr;
Willy Tarreau5fc93282020-09-16 18:25:03 +0200764 newpeer->proto = l->rx.proto;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100765 cur_arg++;
766 }
767
Willy Tarreau55f0f7b2022-05-20 15:44:17 +0200768 ret = bind_parse_args_list(bind_conf, args, cur_arg, cursection, file, linenum);
769 err_code |= ret;
770 if (ret != 0)
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100771 goto out;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100772 }
773 else if (strcmp(args[0], "default-server") == 0) {
Willy Tarreau356866a2022-05-31 09:10:19 +0200774 if (init_peers_frontend(file, -1, curpeers) != 0) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100775 err_code |= ERR_ALERT | ERR_ABORT;
776 goto out;
777 }
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100778 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
779 SRV_PARSE_DEFAULT_SERVER|SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200780 }
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100781 else if (strcmp(args[0], "log") == 0) {
Willy Tarreau356866a2022-05-31 09:10:19 +0200782 if (init_peers_frontend(file, linenum, curpeers) != 0) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100783 err_code |= ERR_ALERT | ERR_ABORT;
784 goto out;
785 }
Emeric Brun9533a702021-04-02 10:13:43 +0200786 if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), file, linenum, &errmsg)) {
Frédéric Lécailleb6f759b2019-11-05 09:57:45 +0100787 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
788 err_code |= ERR_ALERT | ERR_FATAL;
789 goto out;
790 }
791 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200792 else if (strcmp(args[0], "peers") == 0) { /* new peers section */
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100793 /* Initialize these static variables when entering a new "peers" section*/
794 bind_line = peer_line = 0;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100795 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100796 ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum);
Willy Tarreau54984722014-02-16 08:20:13 +0100797 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100798 goto out;
799 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200800
William Lallemand6e62fb62015-04-28 16:55:23 +0200801 if (alertif_too_many_args(1, file, linenum, args, &err_code))
802 goto out;
803
Emeric Brun32da3c42010-09-23 18:39:19 +0200804 err = invalid_char(args[1]);
805 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100806 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
807 file, linenum, *err, args[0], args[1]);
Willy Tarreau54984722014-02-16 08:20:13 +0100808 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreau0dbbf312013-03-05 11:31:55 +0100809 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200810 }
811
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200812 for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) {
Emeric Brun32da3c42010-09-23 18:39:19 +0200813 /*
814 * If there are two proxies with the same name only following
815 * combinations are allowed:
816 */
817 if (strcmp(curpeers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100818 ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n",
819 file, linenum, args[1], curpeers->conf.file, curpeers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +0200820 err_code |= ERR_ALERT | ERR_FATAL;
Emeric Brun32da3c42010-09-23 18:39:19 +0200821 }
822 }
823
Vincent Bernat02779b62016-04-03 13:48:43 +0200824 if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100825 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Emeric Brun32da3c42010-09-23 18:39:19 +0200826 err_code |= ERR_ALERT | ERR_ABORT;
827 goto out;
828 }
829
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +0200830 curpeers->next = cfg_peers;
831 cfg_peers = curpeers;
Willy Tarreau8113a5d2012-10-04 08:01:43 +0200832 curpeers->conf.file = strdup(file);
Emeric Brun32da3c42010-09-23 18:39:19 +0200833 curpeers->conf.line = linenum;
834 curpeers->last_change = now.tv_sec;
835 curpeers->id = strdup(args[1]);
Willy Tarreau1ad64ac2020-09-24 08:48:08 +0200836 curpeers->disabled = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200837 }
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200838 else if (strcmp(args[0], "peer") == 0 ||
839 strcmp(args[0], "server") == 0) { /* peer or server definition */
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100840 int local_peer, peer;
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100841 int parse_addr = 0;
Emeric Brun32da3c42010-09-23 18:39:19 +0200842
Frédéric Lécaille04636b72019-01-31 06:48:16 +0100843 peer = *args[0] == 'p';
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100844 local_peer = strcmp(args[1], localpeer) == 0;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100845 /* The local peer may have already partially been parsed on a "bind" line. */
846 if (*args[0] == 'p') {
847 if (bind_line) {
848 ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum);
849 err_code |= ERR_ALERT | ERR_FATAL;
850 goto out;
851 }
852 peer_line = 1;
853 }
854 if (cfg_peers->local && !cfg_peers->local->id && local_peer) {
855 /* The local peer has already been initialized on a "bind" line.
856 * Let's use it and store its ID.
857 */
858 newpeer = cfg_peers->local;
859 newpeer->id = strdup(localpeer);
860 }
861 else {
862 if (local_peer && cfg_peers->local) {
863 ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n",
864 file, linenum, args[0], args[1],
865 curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id);
866 err_code |= ERR_FATAL;
867 goto out;
868 }
869 newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer);
870 if (!newpeer) {
871 err_code |= ERR_ALERT | ERR_ABORT;
872 goto out;
873 }
874 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200875
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100876 /* Line number and peer ID are updated only if this peer is the local one. */
877 if (init_peers_frontend(file,
878 newpeer->local ? linenum: -1,
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100879 curpeers) != 0) {
Frédéric Lécaillec06b5d42018-04-26 10:06:41 +0200880 err_code |= ERR_ALERT | ERR_ABORT;
Willy Tarreaub36487e2013-03-10 18:37:42 +0100881 goto out;
882 }
Willy Tarreau2aa38802013-02-20 19:20:59 +0100883
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100884 /* This initializes curpeer->peers->peers_fe->srv.
885 * The server address is parsed only if we are parsing a "peer" line,
886 * or if we are parsing a "server" line and the current peer is not the local one.
887 */
Amaury Denoyelle30c05372021-03-08 16:36:46 +0100888 parse_addr = (peer || !local_peer) ? SRV_PARSE_PARSE_ADDR : 0;
889 err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL,
890 SRV_PARSE_IN_PEER_SECTION|parse_addr|SRV_PARSE_INITIAL_RESOLVE);
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200891 if (!curpeers->peers_fe->srv) {
892 /* Remove the newly allocated peer. */
893 if (newpeer != curpeers->local) {
894 struct peer *p;
895
896 p = curpeers->remote;
897 curpeers->remote = curpeers->remote->next;
898 free(p->id);
899 free(p);
900 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200901 goto out;
Frédéric Lécaille8ba10fe2020-04-03 09:43:47 +0200902 }
Emeric Brun32da3c42010-09-23 18:39:19 +0200903
Willy Tarreau824c8c52022-05-31 09:42:44 +0200904 if (curpeers->peers_fe->srv->init_addr_methods || curpeers->peers_fe->srv->resolvers_id ||
905 curpeers->peers_fe->srv->do_check || curpeers->peers_fe->srv->do_agent) {
906 ha_warning("parsing [%s:%d] : '%s %s' : init_addr, resolvers, check and agent are ignored for peers.\n", file, linenum, args[0], args[1]);
907 err_code |= ERR_WARN;
908 }
909
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100910 /* If the peer address has just been parsed, let's copy it to <newpeer>
911 * and initializes ->proto.
912 */
913 if (peer || !local_peer) {
914 newpeer->addr = curpeers->peers_fe->srv->addr;
Willy Tarreau14e7f292021-10-27 17:41:07 +0200915 newpeer->proto = protocol_lookup(newpeer->addr.ss_family, PROTO_TYPE_STREAM, 0);
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100916 }
917
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100918 newpeer->xprt = xprt_get(XPRT_RAW);
Willy Tarreaud02394b2012-05-11 18:32:18 +0200919 newpeer->sock_init_arg = NULL;
Christopher Faulet2a944ee2017-11-07 10:42:54 +0100920 HA_SPIN_INIT(&newpeer->lock);
Willy Tarreau26d8c592012-05-07 18:12:14 +0200921
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +0100922 newpeer->srv = curpeers->peers_fe->srv;
923 if (!newpeer->local)
Frédéric Lécaille6617e762018-04-25 15:13:38 +0200924 goto out;
925
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100926 /* The lines above are reserved to "peer" lines. */
927 if (*args[0] == 's')
Frédéric Lécaille4ba51982018-04-25 15:32:18 +0200928 goto out;
Emeric Brun32da3c42010-09-23 18:39:19 +0200929
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100930 bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW));
William Lallemand1d932172022-07-06 14:30:23 +0200931 if (!bind_conf) {
932 ha_alert("parsing [%s:%d] : '%s %s' : Cannot allocate memory.\n", file, linenum, args[0], args[1]);
933 err_code |= ERR_FATAL;
934 goto out;
935 }
Frédéric Lécaille16e49102019-01-11 11:27:16 +0100936
Emeric Brun49f6f4b2022-05-25 10:12:07 +0200937 if (!LIST_ISEMPTY(&bind_conf->listeners)) {
938 ha_alert("parsing [%s:%d] : One listener per \"peers\" section is authorized but another is already configured at [%s:%d].\n", file, linenum, bind_conf->file, bind_conf->line);
939 err_code |= ERR_FATAL;
940 }
941
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100942 if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) {
943 if (errmsg && *errmsg) {
944 indent_msg(&errmsg, 2);
945 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 +0100946 }
Frédéric Lécaille91694d52019-01-11 11:43:53 +0100947 else
948 ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n",
949 file, linenum, args[0], args[1], args[2]);
950 err_code |= ERR_FATAL;
951 goto out;
952 }
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100953
Emeric Brunca825782022-05-25 10:25:45 +0200954 /*
955 * Newly allocated listener is at the end of the list
956 */
957 l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind);
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100958 l->maxaccept = 1;
Frédéric Lécaille355b2032019-01-11 14:06:12 +0100959 l->accept = session_accept_fd;
960 l->analysers |= curpeers->peers_fe->fe_req_ana;
961 l->default_target = curpeers->peers_fe->default_target;
962 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100963 global.maxsock++; /* for the listening socket */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100964 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100965 else if (strcmp(args[0], "table") == 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100966 struct stktable *t, *other;
967 char *id;
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100968 size_t prefix_len;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100969
970 /* Line number and peer ID are updated only if this peer is the local one. */
Willy Tarreau356866a2022-05-31 09:10:19 +0200971 if (init_peers_frontend(file, -1, curpeers) != 0) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +0100972 err_code |= ERR_ALERT | ERR_ABORT;
973 goto out;
974 }
975
976 other = stktable_find_by_name(args[1]);
977 if (other) {
978 ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n",
979 file, linenum, args[1],
980 other->proxy ? proxy_cap_str(other->proxy->cap) : "peers",
981 other->proxy ? other->id : other->peers.p->id,
982 other->conf.file, other->conf.line);
983 err_code |= ERR_ALERT | ERR_FATAL;
984 goto out;
985 }
986
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100987 /* Build the stick-table name, concatenating the "peers" section name
988 * followed by a '/' character and the table name argument.
989 */
990 chunk_reset(&trash);
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100991 if (!chunk_strcpy(&trash, curpeers->id)) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +0100992 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
993 file, linenum, args[0], args[1]);
994 err_code |= ERR_ALERT | ERR_FATAL;
995 goto out;
996 }
997
998 prefix_len = trash.data;
Frédéric Lécaille7fcc24d2019-03-20 15:09:45 +0100999 if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) {
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001000 ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n",
1001 file, linenum, args[0], args[1]);
1002 err_code |= ERR_ALERT | ERR_FATAL;
1003 goto out;
1004 }
1005
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001006 t = calloc(1, sizeof *t);
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001007 id = strdup(trash.area);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001008 if (!t || !id) {
1009 ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n",
1010 file, linenum, args[0], args[1]);
Eric Salama1aab9112020-09-18 11:55:17 +02001011 free(t);
1012 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001013 err_code |= ERR_ALERT | ERR_FATAL;
1014 goto out;
1015 }
1016
Frédéric Lécaillec02766a2019-03-20 15:06:55 +01001017 err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers);
Eric Salama1aab9112020-09-18 11:55:17 +02001018 if (err_code & ERR_FATAL) {
1019 free(t);
1020 free(id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001021 goto out;
Eric Salama1aab9112020-09-18 11:55:17 +02001022 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001023
1024 stktable_store_name(t);
1025 t->next = stktables_list;
1026 stktables_list = t;
1027 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001028 else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02001029 curpeers->disabled |= PR_FL_DISABLED;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001030 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001031 else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02001032 curpeers->disabled = 0;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02001033 }
Emeric Brun32da3c42010-09-23 18:39:19 +02001034 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001035 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Emeric Brun32da3c42010-09-23 18:39:19 +02001036 err_code |= ERR_ALERT | ERR_FATAL;
1037 goto out;
1038 }
1039
1040out:
Willy Tarreau902636f2013-03-10 19:44:48 +01001041 free(errmsg);
Emeric Brun32da3c42010-09-23 18:39:19 +02001042 return err_code;
1043}
1044
Baptiste Assmann325137d2015-04-13 23:40:55 +02001045/*
William Lallemand51097192015-04-14 16:35:22 +02001046 * Parse a line in a <listen>, <frontend> or <backend> section.
Simon Horman0d16a402015-01-30 11:22:58 +09001047 * Returns the error code, 0 if OK, or any combination of :
1048 * - ERR_ABORT: must abort ASAP
1049 * - ERR_FATAL: we can continue parsing but not start the service
1050 * - ERR_WARN: a warning has been emitted
1051 * - ERR_ALERT: an alert has been emitted
1052 * Only the two first ones can stop processing, the two others are just
1053 * indicators.
1054 */
1055int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm)
1056{
1057 static struct mailers *curmailers = NULL;
1058 struct mailer *newmailer = NULL;
1059 const char *err;
1060 int err_code = 0;
1061 char *errmsg = NULL;
1062
1063 if (strcmp(args[0], "mailers") == 0) { /* new mailers section */
1064 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001065 ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001066 err_code |= ERR_ALERT | ERR_ABORT;
1067 goto out;
1068 }
1069
1070 err = invalid_char(args[1]);
1071 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001072 ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n",
1073 file, linenum, *err, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001074 err_code |= ERR_ALERT | ERR_ABORT;
1075 goto out;
1076 }
1077
1078 for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) {
1079 /*
1080 * If there are two proxies with the same name only following
1081 * combinations are allowed:
1082 */
1083 if (strcmp(curmailers->id, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001084 ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n",
1085 file, linenum, args[1], curmailers->conf.file, curmailers->conf.line);
Willy Tarreau911fa2e2015-05-26 10:35:50 +02001086 err_code |= ERR_ALERT | ERR_FATAL;
Simon Horman0d16a402015-01-30 11:22:58 +09001087 }
1088 }
1089
Vincent Bernat02779b62016-04-03 13:48:43 +02001090 if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001091 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001092 err_code |= ERR_ALERT | ERR_ABORT;
1093 goto out;
1094 }
1095
1096 curmailers->next = mailers;
1097 mailers = curmailers;
1098 curmailers->conf.file = strdup(file);
1099 curmailers->conf.line = linenum;
1100 curmailers->id = strdup(args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001101 curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP.
1102 * But need enough time so that timeouts don't occur
1103 * during tcp procssing. For now just us an arbitrary default. */
Simon Horman0d16a402015-01-30 11:22:58 +09001104 }
1105 else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */
1106 struct sockaddr_storage *sk;
1107 int port1, port2;
1108 struct protocol *proto;
1109
1110 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001111 ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n",
1112 file, linenum, args[0]);
Simon Horman0d16a402015-01-30 11:22:58 +09001113 err_code |= ERR_ALERT | ERR_FATAL;
1114 goto out;
1115 }
1116
1117 err = invalid_char(args[1]);
1118 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001119 ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n",
1120 file, linenum, *err, args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001121 err_code |= ERR_ALERT | ERR_FATAL;
1122 goto out;
1123 }
1124
Vincent Bernat02779b62016-04-03 13:48:43 +02001125 if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001126 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
Simon Horman0d16a402015-01-30 11:22:58 +09001127 err_code |= ERR_ALERT | ERR_ABORT;
1128 goto out;
1129 }
1130
1131 /* the mailers are linked backwards first */
1132 curmailers->count++;
1133 newmailer->next = curmailers->mailer_list;
1134 curmailers->mailer_list = newmailer;
1135 newmailer->mailers = curmailers;
1136 newmailer->conf.file = strdup(file);
1137 newmailer->conf.line = linenum;
1138
1139 newmailer->id = strdup(args[1]);
1140
Willy Tarreau5fc93282020-09-16 18:25:03 +02001141 sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto,
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001142 &errmsg, NULL, NULL,
1143 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 +09001144 if (!sk) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001145 ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg);
Simon Horman0d16a402015-01-30 11:22:58 +09001146 err_code |= ERR_ALERT | ERR_FATAL;
1147 goto out;
1148 }
1149
Willy Tarreau65ec4e32020-09-16 19:17:08 +02001150 if (proto->sock_prot != IPPROTO_TCP) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001151 ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n",
1152 file, linenum, args[0], args[1]);
Simon Horman0d16a402015-01-30 11:22:58 +09001153 err_code |= ERR_ALERT | ERR_FATAL;
1154 goto out;
1155 }
1156
Simon Horman0d16a402015-01-30 11:22:58 +09001157 newmailer->addr = *sk;
1158 newmailer->proto = proto;
Willy Tarreaua261e9b2016-12-22 20:44:00 +01001159 newmailer->xprt = xprt_get(XPRT_RAW);
Simon Horman0d16a402015-01-30 11:22:58 +09001160 newmailer->sock_init_arg = NULL;
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001161 }
1162 else if (strcmp(args[0], "timeout") == 0) {
1163 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001164 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n",
1165 file, linenum, args[0]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001166 err_code |= ERR_ALERT | ERR_FATAL;
1167 goto out;
1168 }
1169 else if (strcmp(args[1], "mail") == 0) {
1170 const char *res;
1171 unsigned int timeout_mail;
1172 if (!*args[2]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001173 ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n",
1174 file, linenum, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001175 err_code |= ERR_ALERT | ERR_FATAL;
1176 goto out;
1177 }
1178 res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001179 if (res == PARSE_TIME_OVER) {
1180 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n",
1181 file, linenum, args[2], args[0], args[1]);
1182 err_code |= ERR_ALERT | ERR_FATAL;
1183 goto out;
1184 }
1185 else if (res == PARSE_TIME_UNDER) {
1186 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n",
1187 file, linenum, args[2], args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001188 err_code |= ERR_ALERT | ERR_FATAL;
1189 goto out;
1190 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001191 else if (res) {
1192 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n",
1193 file, linenum, *res, args[0], args[1]);
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001194 err_code |= ERR_ALERT | ERR_FATAL;
1195 goto out;
1196 }
1197 curmailers->timeout.mail = timeout_mail;
1198 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001199 ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n",
Pieter Baauw235fcfc2016-02-13 15:33:40 +01001200 file, linenum, args[0], args[1]);
1201 err_code |= ERR_ALERT | ERR_FATAL;
1202 goto out;
1203 }
1204 }
Simon Horman0d16a402015-01-30 11:22:58 +09001205 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001206 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection);
Simon Horman0d16a402015-01-30 11:22:58 +09001207 err_code |= ERR_ALERT | ERR_FATAL;
1208 goto out;
1209 }
1210
1211out:
1212 free(errmsg);
1213 return err_code;
1214}
1215
Willy Tarreau3a1f5fd2018-11-11 15:40:36 +01001216void free_email_alert(struct proxy *p)
Simon Horman9dc49962015-01-30 11:22:59 +09001217{
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001218 ha_free(&p->email_alert.mailers.name);
1219 ha_free(&p->email_alert.from);
1220 ha_free(&p->email_alert.to);
1221 ha_free(&p->email_alert.myhostname);
Simon Horman9dc49962015-01-30 11:22:59 +09001222}
1223
Willy Tarreaubaaee002006-06-26 02:48:02 +02001224
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001225int
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001226cfg_parse_netns(const char *file, int linenum, char **args, int kwm)
1227{
Willy Tarreaue5733232019-05-22 19:24:06 +02001228#ifdef USE_NS
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001229 const char *err;
1230 const char *item = args[0];
1231
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001232 if (strcmp(item, "namespace_list") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001233 return 0;
1234 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001235 else if (strcmp(item, "namespace") == 0) {
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001236 size_t idx = 1;
1237 const char *current;
1238 while (*(current = args[idx++])) {
1239 err = invalid_char(current);
1240 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001241 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1242 file, linenum, *err, item, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001243 return ERR_ALERT | ERR_FATAL;
1244 }
1245
1246 if (netns_store_lookup(current, strlen(current))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001247 ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n",
1248 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001249 return ERR_ALERT | ERR_FATAL;
1250 }
1251 if (!netns_store_insert(current)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001252 ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n",
1253 file, linenum, current);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001254 return ERR_ALERT | ERR_FATAL;
1255 }
1256 }
1257 }
1258
1259 return 0;
1260#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001261 ha_alert("parsing [%s:%d]: namespace support is not compiled in.",
1262 file, linenum);
KOVACS Krisztianb3e54fe2014-11-17 15:11:45 +01001263 return ERR_ALERT | ERR_FATAL;
1264#endif
1265}
1266
1267int
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001268cfg_parse_users(const char *file, int linenum, char **args, int kwm)
1269{
1270
1271 int err_code = 0;
1272 const char *err;
1273
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001274 if (strcmp(args[0], "userlist") == 0) { /* new userlist */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001275 struct userlist *newul;
1276
1277 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001278 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1279 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001280 err_code |= ERR_ALERT | ERR_FATAL;
1281 goto out;
1282 }
William Lallemand6e62fb62015-04-28 16:55:23 +02001283 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1284 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001285
1286 err = invalid_char(args[1]);
1287 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001288 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1289 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001290 err_code |= ERR_ALERT | ERR_FATAL;
1291 goto out;
1292 }
1293
1294 for (newul = userlist; newul; newul = newul->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001295 if (strcmp(newul->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001296 ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n",
1297 file, linenum, args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001298 err_code |= ERR_WARN;
1299 goto out;
1300 }
1301
Vincent Bernat02779b62016-04-03 13:48:43 +02001302 newul = calloc(1, sizeof(*newul));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001303 if (!newul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001304 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001305 err_code |= ERR_ALERT | ERR_ABORT;
1306 goto out;
1307 }
1308
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001309 newul->name = strdup(args[1]);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001310 if (!newul->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001311 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001312 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier97880bb2016-04-08 10:35:26 +01001313 free(newul);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001314 goto out;
1315 }
1316
1317 newul->next = userlist;
1318 userlist = newul;
1319
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001320 } else if (strcmp(args[0], "group") == 0) { /* new group */
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001321 int cur_arg;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001322 const char *err;
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001323 struct auth_groups *ag;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001324
1325 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001326 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1327 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001328 err_code |= ERR_ALERT | ERR_FATAL;
1329 goto out;
1330 }
1331
1332 err = invalid_char(args[1]);
1333 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001334 ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n",
1335 file, linenum, *err, args[0], args[1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001336 err_code |= ERR_ALERT | ERR_FATAL;
1337 goto out;
1338 }
1339
William Lallemand4ac9f542015-05-28 18:03:51 +02001340 if (!userlist)
1341 goto out;
1342
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001343 for (ag = userlist->groups; ag; ag = ag->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001344 if (strcmp(ag->name, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001345 ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n",
1346 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001347 err_code |= ERR_ALERT;
1348 goto out;
1349 }
1350
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001351 ag = calloc(1, sizeof(*ag));
1352 if (!ag) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001353 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001354 err_code |= ERR_ALERT | ERR_ABORT;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001355 goto out;
1356 }
1357
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001358 ag->name = strdup(args[1]);
David Carlier70d60452016-08-22 23:27:42 +01001359 if (!ag->name) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001360 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001361 err_code |= ERR_ALERT | ERR_ABORT;
David Carlier70d60452016-08-22 23:27:42 +01001362 free(ag);
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001363 goto out;
1364 }
1365
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001366 cur_arg = 2;
1367
1368 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001369 if (strcmp(args[cur_arg], "users") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001370 ag->groupusers = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001371 cur_arg += 2;
1372 continue;
1373 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001374 ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n",
1375 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001376 err_code |= ERR_ALERT | ERR_FATAL;
David Carlier70d60452016-08-22 23:27:42 +01001377 free(ag->groupusers);
1378 free(ag->name);
1379 free(ag);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001380 goto out;
1381 }
1382 }
1383
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001384 ag->next = userlist->groups;
1385 userlist->groups = ag;
1386
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001387 } else if (strcmp(args[0], "user") == 0) { /* new user */
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001388 struct auth_users *newuser;
1389 int cur_arg;
1390
1391 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001392 ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n",
1393 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001394 err_code |= ERR_ALERT | ERR_FATAL;
1395 goto out;
1396 }
William Lallemand4ac9f542015-05-28 18:03:51 +02001397 if (!userlist)
1398 goto out;
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001399
1400 for (newuser = userlist->users; newuser; newuser = newuser->next)
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001401 if (strcmp(newuser->user, args[1]) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001402 ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n",
1403 file, linenum, args[1], userlist->name);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001404 err_code |= ERR_ALERT;
1405 goto out;
1406 }
1407
Vincent Bernat02779b62016-04-03 13:48:43 +02001408 newuser = calloc(1, sizeof(*newuser));
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001409 if (!newuser) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001410 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001411 err_code |= ERR_ALERT | ERR_ABORT;
1412 goto out;
1413 }
1414
1415 newuser->user = strdup(args[1]);
1416
1417 newuser->next = userlist->users;
1418 userlist->users = newuser;
1419
1420 cur_arg = 2;
1421
1422 while (*args[cur_arg]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001423 if (strcmp(args[cur_arg], "password") == 0) {
Willy Tarreaue5733232019-05-22 19:24:06 +02001424#ifdef USE_LIBCRYPT
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001425 if (!crypt("", args[cur_arg + 1])) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001426 ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n",
1427 file, linenum, newuser->user);
Cyril Bonté1a0191d2014-08-29 20:20:02 +02001428 err_code |= ERR_ALERT | ERR_FATAL;
1429 goto out;
1430 }
1431#else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001432 ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n",
1433 file, linenum);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001434 err_code |= ERR_ALERT;
1435#endif
1436 newuser->pass = strdup(args[cur_arg + 1]);
1437 cur_arg += 2;
1438 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001439 } else if (strcmp(args[cur_arg], "insecure-password") == 0) {
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001440 newuser->pass = strdup(args[cur_arg + 1]);
1441 newuser->flags |= AU_O_INSECURE;
1442 cur_arg += 2;
1443 continue;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001444 } else if (strcmp(args[cur_arg], "groups") == 0) {
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01001445 newuser->u.groups_names = strdup(args[cur_arg + 1]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001446 cur_arg += 2;
1447 continue;
1448 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001449 ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n",
1450 file, linenum, args[0]);
Krzysztof Piotr Oledzki96105042010-01-29 17:50:44 +01001451 err_code |= ERR_ALERT | ERR_FATAL;
1452 goto out;
1453 }
1454 }
1455 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001456 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 +01001457 err_code |= ERR_ALERT | ERR_FATAL;
1458 }
1459
1460out:
1461 return err_code;
1462}
Willy Tarreaubaaee002006-06-26 02:48:02 +02001463
Christopher Faulet79bdef32016-11-04 22:36:15 +01001464int
1465cfg_parse_scope(const char *file, int linenum, char *line)
1466{
1467 char *beg, *end, *scope = NULL;
1468 int err_code = 0;
1469 const char *err;
1470
1471 beg = line + 1;
1472 end = strchr(beg, ']');
1473
1474 /* Detect end of scope declaration */
1475 if (!end || end == beg) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001476 ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n",
1477 file, linenum);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001478 err_code |= ERR_ALERT | ERR_FATAL;
1479 goto out;
1480 }
1481
1482 /* Get scope name and check its validity */
1483 scope = my_strndup(beg, end-beg);
1484 err = invalid_char(scope);
1485 if (err) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001486 ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n",
1487 file, linenum, *err);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001488 err_code |= ERR_ALERT | ERR_ABORT;
1489 goto out;
1490 }
1491
1492 /* Be sure to have a scope declaration alone on its line */
1493 line = end+1;
1494 while (isspace((unsigned char)*line))
1495 line++;
1496 if (*line && *line != '#' && *line != '\n' && *line != '\r') {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001497 ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n",
1498 file, linenum, *line);
Christopher Faulet79bdef32016-11-04 22:36:15 +01001499 err_code |= ERR_ALERT | ERR_ABORT;
1500 goto out;
1501 }
1502
1503 /* We have a valid scope declaration, save it */
1504 free(cfg_scope);
1505 cfg_scope = scope;
1506 scope = NULL;
1507
1508 out:
1509 free(scope);
1510 return err_code;
1511}
1512
Frédéric Lécaillea41d5312018-01-29 12:05:07 +01001513int
1514cfg_parse_track_sc_num(unsigned int *track_sc_num,
1515 const char *arg, const char *end, char **errmsg)
1516{
1517 const char *p;
1518 unsigned int num;
1519
1520 p = arg;
1521 num = read_uint64(&arg, end);
1522
1523 if (arg != end) {
1524 memprintf(errmsg, "Wrong track-sc number '%s'", p);
1525 return -1;
1526 }
1527
1528 if (num >= MAX_SESS_STKCTR) {
1529 memprintf(errmsg, "%u track-sc number exceeding "
1530 "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1);
1531 return -1;
1532 }
1533
1534 *track_sc_num = num;
1535 return 0;
1536}
1537
Willy Tarreaubaaee002006-06-26 02:48:02 +02001538/*
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001539 * Detect a global section after a non-global one and output a diagnostic
1540 * warning.
1541 */
1542static void check_section_position(char *section_name,
1543 const char *file, int linenum,
1544 int *non_global_parsed)
1545{
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02001546 if (strcmp(section_name, "global") == 0) {
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001547 if (*non_global_parsed == 1)
1548 _ha_diag_warning("parsing [%s:%d] : global section detected after a non-global one, the prevalence of their statements is unspecified\n", file, linenum);
1549 }
1550 else if (*non_global_parsed == 0) {
1551 *non_global_parsed = 1;
1552 }
1553}
1554
Willy Tarreau8a022d52021-04-27 20:29:11 +02001555/* apply the current default_path setting for config file <file>, and
1556 * optionally replace the current path to <origin> if not NULL while the
1557 * default-path mode is set to "origin". Errors are returned into an
1558 * allocated string passed to <err> if it's not NULL. Returns 0 on failure
1559 * or non-zero on success.
1560 */
1561static int cfg_apply_default_path(const char *file, const char *origin, char **err)
1562{
1563 const char *beg, *end;
1564
1565 /* make path start at <beg> and end before <end>, and switch it to ""
1566 * if no slash was passed.
1567 */
1568 beg = file;
1569 end = strrchr(beg, '/');
1570 if (!end)
1571 end = beg;
1572
1573 if (!*initial_cwd) {
1574 if (getcwd(initial_cwd, sizeof(initial_cwd)) == NULL) {
1575 if (err)
1576 memprintf(err, "Impossible to retrieve startup directory name: %s", strerror(errno));
1577 return 0;
1578 }
1579 }
1580 else if (chdir(initial_cwd) == -1) {
1581 if (err)
1582 memprintf(err, "Impossible to get back to initial directory '%s': %s", initial_cwd, strerror(errno));
1583 return 0;
1584 }
1585
1586 /* OK now we're (back) to initial_cwd */
1587
1588 switch (default_path_mode) {
1589 case DEFAULT_PATH_CURRENT:
1590 /* current_cwd never set, nothing to do */
1591 return 1;
1592
1593 case DEFAULT_PATH_ORIGIN:
1594 /* current_cwd set in the config */
1595 if (origin &&
1596 snprintf(current_cwd, sizeof(current_cwd), "%s", origin) > sizeof(current_cwd)) {
1597 if (err)
1598 memprintf(err, "Absolute path too long: '%s'", origin);
1599 return 0;
1600 }
1601 break;
1602
1603 case DEFAULT_PATH_CONFIG:
1604 if (end - beg >= sizeof(current_cwd)) {
1605 if (err)
1606 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1607 return 0;
1608 }
1609 memcpy(current_cwd, beg, end - beg);
1610 current_cwd[end - beg] = 0;
1611 break;
1612
1613 case DEFAULT_PATH_PARENT:
1614 if (end - beg + 3 >= sizeof(current_cwd)) {
1615 if (err)
1616 memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file);
1617 return 0;
1618 }
1619 memcpy(current_cwd, beg, end - beg);
1620 if (end > beg)
1621 memcpy(current_cwd + (end - beg), "/..\0", 4);
1622 else
1623 memcpy(current_cwd + (end - beg), "..\0", 3);
1624 break;
1625 }
1626
1627 if (*current_cwd && chdir(current_cwd) == -1) {
1628 if (err)
1629 memprintf(err, "Impossible to get back to directory '%s': %s", initial_cwd, strerror(errno));
1630 return 0;
1631 }
1632
1633 return 1;
1634}
1635
1636/* parses a global "default-path" directive. */
1637static int cfg_parse_global_def_path(char **args, int section_type, struct proxy *curpx,
1638 const struct proxy *defpx, const char *file, int line,
1639 char **err)
1640{
1641 int ret = -1;
1642
1643 /* "current", "config", "parent", "origin <path>" */
1644
1645 if (strcmp(args[1], "current") == 0)
1646 default_path_mode = DEFAULT_PATH_CURRENT;
1647 else if (strcmp(args[1], "config") == 0)
1648 default_path_mode = DEFAULT_PATH_CONFIG;
1649 else if (strcmp(args[1], "parent") == 0)
1650 default_path_mode = DEFAULT_PATH_PARENT;
1651 else if (strcmp(args[1], "origin") == 0)
1652 default_path_mode = DEFAULT_PATH_ORIGIN;
1653 else {
1654 memprintf(err, "%s default-path mode '%s' for '%s', supported modes include 'current', 'config', 'parent', and 'origin'.", *args[1] ? "unsupported" : "missing", args[1], args[0]);
1655 goto end;
1656 }
1657
1658 if (default_path_mode == DEFAULT_PATH_ORIGIN) {
1659 if (!*args[2]) {
1660 memprintf(err, "'%s %s' expects a directory as an argument.", args[0], args[1]);
1661 goto end;
1662 }
1663 if (!cfg_apply_default_path(file, args[2], err)) {
1664 memprintf(err, "couldn't set '%s' to origin '%s': %s.", args[0], args[2], *err);
1665 goto end;
1666 }
1667 }
1668 else if (!cfg_apply_default_path(file, NULL, err)) {
1669 memprintf(err, "couldn't set '%s' to '%s': %s.", args[0], args[1], *err);
1670 goto end;
1671 }
1672
1673 /* note that once applied, the path is immediately updated */
1674
1675 ret = 0;
1676 end:
1677 return ret;
1678}
1679
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001680/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02001681 * This function reads and parses the configuration file given in the argument.
Willy Tarreauda543e12021-04-27 18:30:28 +02001682 * Returns the error code, 0 if OK, -1 if the config file couldn't be opened,
1683 * or any combination of :
Willy Tarreau058e9072009-07-20 09:30:05 +02001684 * - ERR_ABORT: must abort ASAP
1685 * - ERR_FATAL: we can continue parsing but not start the service
1686 * - ERR_WARN: a warning has been emitted
1687 * - ERR_ALERT: an alert has been emitted
1688 * Only the two first ones can stop processing, the two others are just
1689 * indicators.
Willy Tarreaubaaee002006-06-26 02:48:02 +02001690 */
Willy Tarreaub17916e2006-10-15 15:17:57 +02001691int readcfgfile(const char *file)
Willy Tarreaubaaee002006-06-26 02:48:02 +02001692{
Willy Tarreauda543e12021-04-27 18:30:28 +02001693 char *thisline = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001694 int linesize = LINESIZE;
Willy Tarreauda543e12021-04-27 18:30:28 +02001695 FILE *f = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001696 int linenum = 0;
Willy Tarreau058e9072009-07-20 09:30:05 +02001697 int err_code = 0;
William Lallemandd2ff56d2017-10-16 11:06:50 +02001698 struct cfg_section *cs = NULL, *pcs = NULL;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001699 struct cfg_section *ics;
William Lallemand64e84512015-05-12 14:25:37 +02001700 int readbytes = 0;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001701 char *outline = NULL;
1702 size_t outlen = 0;
1703 size_t outlinesize = 0;
Willy Tarreau32234e72020-06-16 17:14:33 +02001704 int fatal = 0;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001705 int missing_lf = -1;
Willy Tarreau4b103022021-02-12 17:59:10 +01001706 int nested_cond_lvl = 0;
1707 enum nested_cond_state nested_conds[MAXNESTEDCONDS];
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02001708 int non_global_section_parsed = 0;
Willy Tarreau8a022d52021-04-27 20:29:11 +02001709 char *errmsg = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02001710
Willy Tarreau51508052021-05-06 10:04:45 +02001711 global.cfg_curr_line = 0;
1712 global.cfg_curr_file = file;
1713
William Lallemand64e84512015-05-12 14:25:37 +02001714 if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) {
Willy Tarreauda543e12021-04-27 18:30:28 +02001715 ha_alert("Out of memory trying to allocate a buffer for a configuration line.\n");
1716 err_code = -1;
1717 goto err;
William Lallemand64e84512015-05-12 14:25:37 +02001718 }
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01001719
Willy Tarreauda543e12021-04-27 18:30:28 +02001720 if ((f = fopen(file,"r")) == NULL) {
1721 err_code = -1;
1722 goto err;
David Carlier97880bb2016-04-08 10:35:26 +01001723 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001724
Willy Tarreau8a022d52021-04-27 20:29:11 +02001725 /* change to the new dir if required */
1726 if (!cfg_apply_default_path(file, NULL, &errmsg)) {
1727 ha_alert("parsing [%s:%d]: failed to apply default-path: %s.\n", file, linenum, errmsg);
1728 free(errmsg);
1729 err_code = -1;
1730 goto err;
1731 }
1732
William Lallemandb2f07452015-05-12 14:27:13 +02001733next_line:
William Lallemand64e84512015-05-12 14:25:37 +02001734 while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) {
Willy Tarreau3842f002009-06-14 11:39:52 +02001735 int arg, kwm = KWM_STD;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001736 char *end;
1737 char *args[MAX_LINE_ARGS + 1];
1738 char *line = thisline;
1739
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001740 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001741 ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n",
1742 file, linenum, (missing_lf + 1));
1743 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001744 missing_lf = -1;
Tim Duesterhusf92afb72020-08-18 22:00:04 +02001745 break;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001746 }
1747
Willy Tarreaubaaee002006-06-26 02:48:02 +02001748 linenum++;
Willy Tarreau51508052021-05-06 10:04:45 +02001749 global.cfg_curr_line = linenum;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001750
Willy Tarreau32234e72020-06-16 17:14:33 +02001751 if (fatal >= 50) {
1752 ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal);
1753 break;
1754 }
1755
Willy Tarreaubaaee002006-06-26 02:48:02 +02001756 end = line + strlen(line);
1757
William Lallemand64e84512015-05-12 14:25:37 +02001758 if (end-line == linesize-1 && *(end-1) != '\n') {
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001759 /* Check if we reached the limit and the last char is not \n.
1760 * Watch out for the last line without the terminating '\n'!
1761 */
William Lallemand64e84512015-05-12 14:25:37 +02001762 char *newline;
1763 int newlinesize = linesize * 2;
1764
1765 newline = realloc(thisline, sizeof(*thisline) * newlinesize);
1766 if (newline == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001767 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1768 file, linenum);
William Lallemand64e84512015-05-12 14:25:37 +02001769 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001770 fatal++;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001771 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001772 continue;
1773 }
1774
1775 readbytes = linesize - 1;
1776 linesize = newlinesize;
1777 thisline = newline;
Willy Tarreau40cb26f2020-06-25 09:37:54 +02001778 linenum--;
William Lallemand64e84512015-05-12 14:25:37 +02001779 continue;
Krzysztof Piotr Oledzkie6bbd742007-11-01 00:33:12 +01001780 }
1781
William Lallemand64e84512015-05-12 14:25:37 +02001782 readbytes = 0;
1783
Willy Tarreau08488f62020-06-26 17:24:54 +02001784 if (end > line && *(end-1) == '\n') {
Tim Duesterhus70f58992020-06-22 22:57:44 +02001785 /* kill trailing LF */
1786 *(end - 1) = 0;
1787 }
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02001788 else {
1789 /* mark this line as truncated */
1790 missing_lf = end - line;
1791 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001792
Willy Tarreaubaaee002006-06-26 02:48:02 +02001793 /* skip leading spaces */
Willy Tarreau8f8e6452007-06-17 21:51:38 +02001794 while (isspace((unsigned char)*line))
Willy Tarreaubaaee002006-06-26 02:48:02 +02001795 line++;
William Lallemandf9873ba2015-05-05 17:37:14 +02001796
Joseph Herlanta14c03e2018-11-15 14:04:19 -08001797 if (*line == '[') {/* This is the beginning if a scope */
Christopher Faulet79bdef32016-11-04 22:36:15 +01001798 err_code |= cfg_parse_scope(file, linenum, line);
1799 goto next_line;
1800 }
1801
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001802 while (1) {
1803 uint32_t err;
Maximilian Mader29c6cd72021-06-06 00:50:21 +02001804 const char *errptr;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001805
Tim Duesterhusb3168b32021-06-06 00:50:20 +02001806 arg = sizeof(args) / sizeof(*args);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001807 outlen = outlinesize;
1808 err = parse_line(line, outline, &outlen, args, &arg,
1809 PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE |
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001810 PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND,
1811 &errptr);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001812
1813 if (err & PARSE_ERR_QUOTE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001814 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1815
1816 ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n"
1817 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001818 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001819 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001820 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001821 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001822
1823 if (err & PARSE_ERR_BRACE) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001824 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1825
1826 ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n"
1827 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001828 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001829 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001830 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001831 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001832
1833 if (err & PARSE_ERR_VARNAME) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001834 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1835
1836 ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n"
1837 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001838 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02001839 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001840 goto next_line;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001841 }
William Lallemandb2f07452015-05-12 14:27:13 +02001842
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001843 if (err & PARSE_ERR_HEX) {
Willy Tarreauc54e5ad2020-06-25 09:15:40 +02001844 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1845
1846 ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n"
1847 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001848 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus9f658a52020-06-16 18:14:21 +02001849 fatal++;
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001850 goto next_line;
1851 }
William Lallemandb2f07452015-05-12 14:27:13 +02001852
Amaury Denoyellefa41cb62020-10-01 14:32:35 +02001853 if (err & PARSE_ERR_WRONG_EXPAND) {
1854 size_t newpos = sanitize_for_printing(line, errptr - line, 80);
1855
1856 ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n"
1857 " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^");
1858 err_code |= ERR_ALERT | ERR_FATAL;
1859 fatal++;
1860 goto next_line;
1861 }
1862
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001863 if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) {
1864 outlinesize = (outlen + 1023) & -1024;
Ilya Shipitsin76837bc2021-01-07 22:45:13 +05001865 outline = my_realloc2(outline, outlinesize);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001866 if (outline == NULL) {
1867 ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n",
1868 file, linenum);
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001869 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau32234e72020-06-16 17:14:33 +02001870 fatal++;
Christopher Fauletdfe32c72022-05-18 16:22:43 +02001871 outlinesize = 0;
Willy Tarreau8ec9c812022-05-20 09:13:38 +02001872 goto err;
William Lallemandb2f07452015-05-12 14:27:13 +02001873 }
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001874 /* try again */
1875 continue;
Willy Tarreaubaaee002006-06-26 02:48:02 +02001876 }
Willy Tarreau07d47062020-06-25 07:41:22 +02001877
1878 if (err & PARSE_ERR_TOOMANY) {
1879 /* only check this *after* being sure the output is allocated */
1880 ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n",
1881 file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]);
1882 err_code |= ERR_ALERT | ERR_FATAL;
1883 fatal++;
1884 goto next_line;
1885 }
1886
Willy Tarreau9e1758e2020-06-16 16:32:59 +02001887 /* everything's OK */
1888 break;
William Lallemandf9873ba2015-05-05 17:37:14 +02001889 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02001890
1891 /* empty line */
1892 if (!**args)
1893 continue;
1894
Willy Tarreau4b103022021-02-12 17:59:10 +01001895 /* check for config macros */
1896 if (*args[0] == '.') {
1897 if (strcmp(args[0], ".if") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001898 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001899 char *errmsg = NULL;
1900 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02001901 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001902
Willy Tarreauc8194c32021-07-16 16:38:58 +02001903 /* remerge all words into a single expression */
1904 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
1905 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001906
Willy Tarreau4b103022021-02-12 17:59:10 +01001907 nested_cond_lvl++;
1908 if (nested_cond_lvl >= MAXNESTEDCONDS) {
1909 ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS);
1910 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1911 goto err;
1912 }
1913
Willy Tarreau6e647c92021-05-06 08:46:11 +02001914 if (nested_cond_lvl > 1 &&
1915 (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP ||
1916 nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP ||
1917 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP ||
1918 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP ||
1919 nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP)) {
Willy Tarreau4b103022021-02-12 17:59:10 +01001920 nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001921 goto next_line;
1922 }
1923
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001924 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001925 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001926 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 76);
1927
1928 ha_alert("parsing [%s:%d]: %s in '.if' at position %d:\n .if %s\n %*s\n",
1929 file, linenum, errmsg,
1930 (int)(errptr-args[1]+1), args[1], (int)(newpos+5), "^");
1931
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001932 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01001933 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1934 goto err;
1935 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001936
1937 if (cond)
1938 nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE;
1939 else
1940 nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP;
1941
Willy Tarreau4b103022021-02-12 17:59:10 +01001942 goto next_line;
1943 }
1944 else if (strcmp(args[0], ".elif") == 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001945 const char *errptr = NULL;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001946 char *errmsg = NULL;
1947 int cond;
Willy Tarreauc8194c32021-07-16 16:38:58 +02001948 char *w;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001949
Willy Tarreauc8194c32021-07-16 16:38:58 +02001950 /* remerge all words into a single expression */
1951 for (w = *args; (w += strlen(w)) < outline + outlen - 1; *w = ' ')
1952 ;
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001953
Willy Tarreau4b103022021-02-12 17:59:10 +01001954 if (!nested_cond_lvl) {
1955 ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum);
1956 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1957 goto err;
1958 }
1959
1960 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
1961 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
1962 ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum);
1963 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1964 goto err;
1965 }
1966
1967 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
1968 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
Willy Tarreauf67ff022021-05-06 08:48:09 +02001969 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
Willy Tarreau4b103022021-02-12 17:59:10 +01001970 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
1971 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP;
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001972 goto next_line;
1973 }
1974
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001975 cond = cfg_eval_condition(args + 1, &errmsg, &errptr);
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001976 if (cond < 0) {
Willy Tarreau299bd1c2021-05-06 15:07:10 +02001977 size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 74);
1978
1979 ha_alert("parsing [%s:%d]: %s in '.elif' at position %d:\n .elif %s\n %*s\n",
1980 file, linenum, errmsg,
1981 (int)(errptr-args[1]+1), args[1], (int)(newpos+7), "^");
1982
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001983 free(errmsg);
Willy Tarreau4b103022021-02-12 17:59:10 +01001984 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
1985 goto err;
1986 }
Willy Tarreau6a2110c2021-05-06 08:19:48 +02001987
1988 if (cond)
1989 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE;
1990 else
1991 nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP;
1992
Willy Tarreau4b103022021-02-12 17:59:10 +01001993 goto next_line;
1994 }
1995 else if (strcmp(args[0], ".else") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001996 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05001997 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02001998 file, linenum, args[1], args[0]);
1999 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2000 break;
2001 }
2002
Willy Tarreau4b103022021-02-12 17:59:10 +01002003 if (!nested_cond_lvl) {
2004 ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum);
2005 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2006 goto err;
2007 }
2008
2009 if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE ||
2010 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) {
2011 ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum);
2012 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2013 goto err;
2014 }
2015
2016 if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE ||
2017 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2018 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE ||
2019 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) {
2020 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP;
2021 } else {
2022 /* otherwise we take the "else" */
2023 nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE;
2024 }
2025 goto next_line;
2026 }
2027 else if (strcmp(args[0], ".endif") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002028 if (*args[1]) {
Ilya Shipitsin213bb992021-06-12 15:55:27 +05002029 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n",
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002030 file, linenum, args[1], args[0]);
2031 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2032 break;
2033 }
2034
Willy Tarreau4b103022021-02-12 17:59:10 +01002035 if (!nested_cond_lvl) {
2036 ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum);
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002037 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
Willy Tarreau4b103022021-02-12 17:59:10 +01002038 break;
2039 }
2040 nested_cond_lvl--;
2041 goto next_line;
2042 }
2043 }
2044
2045 if (nested_cond_lvl &&
2046 (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP ||
2047 nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP ||
2048 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP ||
2049 nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP ||
2050 nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) {
2051 /* The current block is masked out by the conditions */
2052 goto next_line;
2053 }
2054
Willy Tarreau7190b982021-05-07 08:59:50 +02002055 /* .warning/.error/.notice/.diag */
Willy Tarreau4b103022021-02-12 17:59:10 +01002056 if (*args[0] == '.') {
2057 if (strcmp(args[0], ".alert") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002058 if (*args[2]) {
2059 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2060 file, linenum, args[2], args[0]);
2061 err_code |= ERR_ALERT | ERR_FATAL;
2062 goto next_line;
2063 }
2064
Willy Tarreau4b103022021-02-12 17:59:10 +01002065 ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2066 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2067 goto err;
2068 }
2069 else if (strcmp(args[0], ".warning") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002070 if (*args[2]) {
2071 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2072 file, linenum, args[2], args[0]);
2073 err_code |= ERR_ALERT | ERR_FATAL;
2074 goto next_line;
2075 }
2076
Willy Tarreau4b103022021-02-12 17:59:10 +01002077 ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2078 err_code |= ERR_WARN;
2079 goto next_line;
2080 }
2081 else if (strcmp(args[0], ".notice") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002082 if (*args[2]) {
2083 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2084 file, linenum, args[2], args[0]);
2085 err_code |= ERR_ALERT | ERR_FATAL;
2086 goto next_line;
2087 }
2088
Willy Tarreau4b103022021-02-12 17:59:10 +01002089 ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2090 goto next_line;
2091 }
Willy Tarreau7190b982021-05-07 08:59:50 +02002092 else if (strcmp(args[0], ".diag") == 0) {
Tim Duesterhus5546c8b2021-05-26 17:45:33 +02002093 if (*args[2]) {
2094 ha_alert("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n",
2095 file, linenum, args[2], args[0]);
2096 err_code |= ERR_ALERT | ERR_FATAL;
2097 goto next_line;
2098 }
2099
Willy Tarreau7190b982021-05-07 08:59:50 +02002100 ha_diag_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]);
2101 goto next_line;
2102 }
Willy Tarreau4b103022021-02-12 17:59:10 +01002103 else {
2104 ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]);
2105 err_code |= ERR_ALERT | ERR_FATAL;
2106 fatal++;
2107 break;
2108 }
2109 }
2110
Willy Tarreau3842f002009-06-14 11:39:52 +02002111 /* check for keyword modifiers "no" and "default" */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002112 if (strcmp(args[0], "no") == 0) {
William Lallemand0f99e342011-10-12 17:50:54 +02002113 char *tmp;
2114
Willy Tarreau3842f002009-06-14 11:39:52 +02002115 kwm = KWM_NO;
William Lallemand0f99e342011-10-12 17:50:54 +02002116 tmp = args[0];
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002117 for (arg=0; *args[arg+1]; arg++)
2118 args[arg] = args[arg+1]; // shift args after inversion
William Lallemand0f99e342011-10-12 17:50:54 +02002119 *tmp = '\0'; // fix the next arg to \0
2120 args[arg] = tmp;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002121 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002122 else if (strcmp(args[0], "default") == 0) {
Willy Tarreau3842f002009-06-14 11:39:52 +02002123 kwm = KWM_DEF;
2124 for (arg=0; *args[arg+1]; arg++)
2125 args[arg] = args[arg+1]; // shift args after inversion
2126 }
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002127
William Dauchyec730982019-10-27 20:08:10 +01002128 if (kwm != KWM_STD && strcmp(args[0], "option") != 0 &&
2129 strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 &&
Willy Tarreaud96f1122019-12-03 07:07:36 +01002130 strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 &&
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002131 strcmp(args[0], "insecure-fork-wanted") != 0 &&
2132 strcmp(args[0], "numa-cpu-mapping") != 0) {
William Dauchyec730982019-10-27 20:08:10 +01002133 ha_alert("parsing [%s:%d]: negation/default currently "
William Dauchy0fec3ab2019-10-27 20:08:11 +01002134 "supported only for options, log, busy-polling, "
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002135 "set-dumpable, strict-limits, insecure-fork-wanted "
2136 "and numa-cpu-mapping.\n", file, linenum);
Willy Tarreau058e9072009-07-20 09:30:05 +02002137 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002138 fatal++;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01002139 }
2140
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002141 /* detect section start */
2142 list_for_each_entry(ics, &sections, list) {
2143 if (strcmp(args[0], ics->section_name) == 0) {
2144 cursection = ics->section_name;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002145 pcs = cs;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002146 cs = ics;
Willy Tarreau51508052021-05-06 10:04:45 +02002147 free(global.cfg_curr_section);
2148 global.cfg_curr_section = strdup(*args[1] ? args[1] : args[0]);
Amaury Denoyelle728be0f2021-03-31 11:43:47 +02002149
2150 if (global.mode & MODE_DIAG) {
2151 check_section_position(args[0], file, linenum,
2152 &non_global_section_parsed);
2153 }
2154
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01002155 break;
2156 }
Emeric Brun32da3c42010-09-23 18:39:19 +02002157 }
2158
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002159 if (pcs && pcs->post_section_parser) {
Willy Tarreau32234e72020-06-16 17:14:33 +02002160 int status;
2161
2162 status = pcs->post_section_parser();
2163 err_code |= status;
2164 if (status & ERR_FATAL)
2165 fatal++;
2166
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002167 if (err_code & ERR_ABORT)
2168 goto err;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002169 }
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002170 pcs = NULL;
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002171
William Lallemandd2ff56d2017-10-16 11:06:50 +02002172 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002173 ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]);
Willy Tarreau058e9072009-07-20 09:30:05 +02002174 err_code |= ERR_ALERT | ERR_FATAL;
Willy Tarreau32234e72020-06-16 17:14:33 +02002175 fatal++;
William Lallemandd2ff56d2017-10-16 11:06:50 +02002176 } else {
Willy Tarreau32234e72020-06-16 17:14:33 +02002177 int status;
2178
2179 status = cs->section_parser(file, linenum, args, kwm);
2180 err_code |= status;
2181 if (status & ERR_FATAL)
2182 fatal++;
2183
William Lallemandd2ff56d2017-10-16 11:06:50 +02002184 if (err_code & ERR_ABORT)
2185 goto err;
2186 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002187 }
William Lallemandd2ff56d2017-10-16 11:06:50 +02002188
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002189 if (missing_lf != -1) {
Tim Duesterhusf92afb72020-08-18 22:00:04 +02002190 ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n",
2191 file, linenum, (missing_lf + 1));
2192 err_code |= ERR_ALERT | ERR_FATAL;
Tim Duesterhus2fd5bdb2020-06-22 22:57:45 +02002193 }
2194
Willy Tarreau51508052021-05-06 10:04:45 +02002195 ha_free(&global.cfg_curr_section);
Christopher Fauletbf7a9592018-12-02 09:37:38 +01002196 if (cs && cs->post_section_parser)
Christopher Faulet7805e2b2018-11-30 13:50:47 +01002197 err_code |= cs->post_section_parser();
William Lallemandd2ff56d2017-10-16 11:06:50 +02002198
Willy Tarreau4b103022021-02-12 17:59:10 +01002199 if (nested_cond_lvl) {
2200 ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum);
2201 err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT;
2202 }
Willy Tarreau8a022d52021-04-27 20:29:11 +02002203
2204 if (*initial_cwd && chdir(initial_cwd) == -1) {
2205 ha_alert("Impossible to get back to initial directory '%s' : %s\n", initial_cwd, strerror(errno));
2206 err_code |= ERR_ALERT | ERR_FATAL;
2207 }
2208
William Lallemandd2ff56d2017-10-16 11:06:50 +02002209err:
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002210 ha_free(&cfg_scope);
Willy Tarreau6daf3432008-01-22 16:44:08 +01002211 cursection = NULL;
William Lallemand64e84512015-05-12 14:25:37 +02002212 free(thisline);
Willy Tarreau9e1758e2020-06-16 16:32:59 +02002213 free(outline);
Willy Tarreau51508052021-05-06 10:04:45 +02002214 global.cfg_curr_line = 0;
2215 global.cfg_curr_file = NULL;
2216
Willy Tarreauda543e12021-04-27 18:30:28 +02002217 if (f)
2218 fclose(f);
2219
Willy Tarreau058e9072009-07-20 09:30:05 +02002220 return err_code;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002221}
2222
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002223#if defined(USE_THREAD) && defined USE_CPU_AFFINITY
2224#if defined(__linux__)
2225
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002226/* filter directory name of the pattern node<X> */
2227static int numa_filter(const struct dirent *dir)
2228{
2229 char *endptr;
2230
2231 /* dir name must start with "node" prefix */
2232 if (strncmp(dir->d_name, "node", 4))
2233 return 0;
2234
2235 /* dir name must be at least 5 characters long */
2236 if (!dir->d_name[4])
2237 return 0;
2238
2239 /* dir name must end with a numeric id */
2240 if (strtol(&dir->d_name[4], &endptr, 10) < 0 || *endptr)
2241 return 0;
2242
2243 /* all tests succeeded */
2244 return 1;
2245}
2246
2247/* Parse a linux cpu map string representing to a numeric cpu mask map
2248 * The cpu map string is a list of 4-byte hex strings separated by commas, with
2249 * most-significant byte first, one bit per cpu number.
2250 */
2251static void parse_cpumap(char *cpumap_str, struct hap_cpuset *cpu_set)
2252{
2253 unsigned long cpumap;
2254 char *start, *endptr, *comma;
2255 int i, j;
2256
2257 ha_cpuset_zero(cpu_set);
2258
2259 i = 0;
2260 do {
2261 /* reverse-search for a comma, parse the string after the comma
2262 * or at the beginning if no comma found
2263 */
2264 comma = strrchr(cpumap_str, ',');
2265 start = comma ? comma + 1 : cpumap_str;
2266
2267 cpumap = strtoul(start, &endptr, 16);
2268 for (j = 0; cpumap; cpumap >>= 1, ++j) {
2269 if (cpumap & 0x1)
2270 ha_cpuset_set(cpu_set, j + i * 32);
2271 }
2272
2273 if (comma)
2274 *comma = '\0';
2275 ++i;
2276 } while (comma);
2277}
2278
2279/* Read the first line of a file from <path> into the trash buffer.
2280 * Returns 0 on success, otherwise non-zero.
2281 */
2282static int read_file_to_trash(const char *path)
2283{
2284 FILE *file;
2285 int ret = 1;
2286
2287 file = fopen(path, "r");
2288 if (file) {
2289 if (fgets(trash.area, trash.size, file))
2290 ret = 0;
2291
2292 fclose(file);
2293 }
2294
2295 return ret;
2296}
2297
2298/* Inspect the cpu topology of the machine on startup. If a multi-socket
2299 * machine is detected, try to bind on the first node with active cpu. This is
2300 * done to prevent an impact on the overall performance when the topology of
2301 * the machine is unknown. This function is not called if one of the conditions
2302 * is met :
2303 * - a non-null nbthread directive is active
2304 * - a restrictive cpu-map directive is active
2305 * - a restrictive affinity is already applied, for example via taskset
2306 *
2307 * Returns the count of cpus selected. If no automatic binding was required or
2308 * an error occurred and the topology is unknown, 0 is returned.
2309 */
2310static int numa_detect_topology()
2311{
2312 struct dirent **node_dirlist;
2313 int node_dirlist_size;
2314
2315 struct hap_cpuset active_cpus, node_cpu_set;
2316 const char *parse_cpu_set_args[2];
2317 char cpumap_path[PATH_MAX];
2318 char *err = NULL;
2319
2320 /* node_cpu_set count is used as return value */
2321 ha_cpuset_zero(&node_cpu_set);
2322
2323 /* 1. count the sysfs node<X> directories */
Willy Tarreau07bf21c2021-04-23 19:09:16 +02002324 node_dirlist = NULL;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002325 node_dirlist_size = scandir(NUMA_DETECT_SYSTEM_SYSFS_PATH"/node", &node_dirlist, numa_filter, alphasort);
2326 if (node_dirlist_size <= 1)
2327 goto free_scandir_entries;
2328
2329 /* 2. read and parse the list of currently online cpu */
2330 if (read_file_to_trash(NUMA_DETECT_SYSTEM_SYSFS_PATH"/cpu/online")) {
2331 ha_notice("Cannot read online CPUs list, will not try to refine binding\n");
2332 goto free_scandir_entries;
2333 }
2334
2335 parse_cpu_set_args[0] = trash.area;
2336 parse_cpu_set_args[1] = "\0";
2337 if (parse_cpu_set(parse_cpu_set_args, &active_cpus, 1, &err)) {
2338 ha_notice("Cannot read online CPUs list: '%s'. Will not try to refine binding\n", err);
2339 free(err);
2340 goto free_scandir_entries;
2341 }
2342
2343 /* 3. loop through nodes dirs and find the first one with active cpus */
2344 while (node_dirlist_size--) {
2345 const char *node = node_dirlist[node_dirlist_size]->d_name;
2346 ha_cpuset_zero(&node_cpu_set);
2347
2348 snprintf(cpumap_path, PATH_MAX, "%s/node/%s/cpumap",
2349 NUMA_DETECT_SYSTEM_SYSFS_PATH, node);
2350
2351 if (read_file_to_trash(cpumap_path)) {
2352 ha_notice("Cannot read CPUs list of '%s', will not select them to refine binding\n", node);
2353 free(node_dirlist[node_dirlist_size]);
2354 continue;
2355 }
2356
2357 parse_cpumap(trash.area, &node_cpu_set);
2358 ha_cpuset_and(&node_cpu_set, &active_cpus);
2359
2360 /* 5. set affinity on the first found node with active cpus */
2361 if (!ha_cpuset_count(&node_cpu_set)) {
2362 free(node_dirlist[node_dirlist_size]);
2363 continue;
2364 }
2365
2366 ha_diag_warning("Multi-socket cpu detected, automatically binding on active CPUs of '%s' (%u active cpu(s))\n", node, ha_cpuset_count(&node_cpu_set));
2367 if (sched_setaffinity(getpid(), sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2368 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2369
2370 /* clear the cpuset used as return value */
2371 ha_cpuset_zero(&node_cpu_set);
2372 }
2373
2374 free(node_dirlist[node_dirlist_size]);
2375 break;
2376 }
2377
2378 free_scandir_entries:
2379 while (node_dirlist_size-- > 0)
2380 free(node_dirlist[node_dirlist_size]);
2381 free(node_dirlist);
2382
2383 return ha_cpuset_count(&node_cpu_set);
2384}
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002385
David CARLIERf5d48f82021-12-06 11:00:10 +00002386#elif defined(__FreeBSD__)
2387static int numa_detect_topology()
2388{
2389 struct hap_cpuset node_cpu_set;
2390 int ndomains = 0, i;
2391 size_t len = sizeof(ndomains);
2392
2393 if (sysctlbyname("vm.ndomains", &ndomains, &len, NULL, 0) == -1) {
2394 ha_notice("Cannot assess the number of CPUs domains\n");
2395 return 0;
2396 }
2397
2398 BUG_ON(ndomains > MAXMEMDOM);
2399 ha_cpuset_zero(&node_cpu_set);
2400
2401 /*
2402 * We retrieve the first active valid CPU domain
2403 * with active cpu and binding it, we returns
2404 * the number of cpu from the said domain
2405 */
2406 for (i = 0; i < ndomains; i ++) {
2407 struct hap_cpuset dom;
2408 ha_cpuset_zero(&dom);
2409 if (cpuset_getaffinity(CPU_LEVEL_WHICH, CPU_WHICH_DOMAIN, i, sizeof(dom.cpuset), &dom.cpuset) == -1)
2410 continue;
2411
2412 if (!ha_cpuset_count(&dom))
2413 continue;
2414
2415 ha_cpuset_assign(&node_cpu_set, &dom);
2416
2417 ha_diag_warning("Multi-socket cpu detected, automatically binding on active CPUs of '%d' (%u active cpu(s))\n", i, ha_cpuset_count(&node_cpu_set));
2418 if (cpuset_setaffinity(CPU_LEVEL_WHICH, CPU_WHICH_PID, -1, sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) {
2419 ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n");
2420
2421 /* clear the cpuset used as return value */
2422 ha_cpuset_zero(&node_cpu_set);
2423 }
2424 break;
2425 }
2426
2427 return ha_cpuset_count(&node_cpu_set);
2428}
2429
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002430#else
2431static int numa_detect_topology()
2432{
2433 return 0;
2434}
2435
2436#endif
2437#endif /* USE_THREAD && USE_CPU_AFFINITY */
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002438
Willy Tarreaubb925012009-07-23 13:36:36 +02002439/*
2440 * Returns the error code, 0 if OK, or any combination of :
2441 * - ERR_ABORT: must abort ASAP
2442 * - ERR_FATAL: we can continue parsing but not start the service
2443 * - ERR_WARN: a warning has been emitted
2444 * - ERR_ALERT: an alert has been emitted
2445 * Only the two first ones can stop processing, the two others are just
2446 * indicators.
2447 */
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002448int check_config_validity()
2449{
2450 int cfgerr = 0;
2451 struct proxy *curproxy = NULL;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01002452 struct stktable *t;
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002453 struct server *newsrv = NULL;
Willy Tarreaubb925012009-07-23 13:36:36 +02002454 int err_code = 0;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002455 unsigned int next_pxid = 1;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002456 struct bind_conf *bind_conf;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002457 char *err;
William Lallemand48b4bb42017-10-23 14:36:34 +02002458 struct cfg_postparser *postparser;
Emeric Brun750fe792020-12-23 16:51:12 +01002459 struct resolvers *curr_resolvers = NULL;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01002460 int i;
Frédéric Lécaille372508c2022-05-06 08:53:16 +02002461 int diag_no_cluster_secret = 0;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002462
Willy Tarreau2a65ff02012-09-13 17:54:29 +02002463 bind_conf = NULL;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002464 /*
2465 * Now, check for the integrity of all that we have collected.
2466 */
2467
2468 /* will be needed further to delay some tasks */
Willy Tarreau55542642021-10-08 09:33:24 +02002469 clock_update_date(0,1);
Willy Tarreaubaaee002006-06-26 02:48:02 +02002470
Willy Tarreau193b8c62012-11-22 00:17:38 +01002471 if (!global.tune.max_http_hdr)
2472 global.tune.max_http_hdr = MAX_HTTP_HDR;
2473
2474 if (!global.tune.cookie_len)
2475 global.tune.cookie_len = CAPTURE_LEN;
2476
Stéphane Cottin23e9e932017-05-18 08:58:41 +02002477 if (!global.tune.requri_len)
2478 global.tune.requri_len = REQURI_LEN;
2479
Willy Tarreau149ab772019-01-26 14:27:06 +01002480 if (!global.nbthread) {
2481 /* nbthread not set, thus automatic. In this case, and only if
2482 * running on a single process, we enable the same number of
2483 * threads as the number of CPUs the process is bound to. This
2484 * allows to easily control the number of threads using taskset.
2485 */
2486 global.nbthread = 1;
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002487
Willy Tarreau149ab772019-01-26 14:27:06 +01002488#if defined(USE_THREAD)
Willy Tarreaub63dbb72021-06-11 16:50:29 +02002489 {
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002490 int numa_cores = 0;
Amaury Denoyelleb09f4472021-12-15 09:48:39 +01002491#if defined(USE_CPU_AFFINITY)
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01002492 if (global.numa_cpu_mapping && !thread_cpu_mask_forced())
Amaury Denoyelleb56a7c82021-03-26 18:20:47 +01002493 numa_cores = numa_detect_topology();
2494#endif
2495 global.nbthread = numa_cores ? numa_cores :
2496 thread_cpus_enabled_at_boot;
2497 }
Willy Tarreau149ab772019-01-26 14:27:06 +01002498#endif
2499 }
2500
Willy Tarreauc33b9692021-09-22 12:07:23 +02002501 if (!global.nbtgroups)
2502 global.nbtgroups = 1;
2503
Willy Tarreaue6806eb2021-09-27 10:10:26 +02002504 if (thread_map_to_groups() < 0) {
2505 err_code |= ERR_ALERT | ERR_FATAL;
2506 goto out;
2507 }
2508
Willy Tarreaubafbe012017-11-24 17:34:44 +01002509 pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED);
Emeric Brun96fd9262017-07-05 13:33:16 +02002510
Willy Tarreaubafbe012017-11-24 17:34:44 +01002511 pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED);
Willy Tarreau193b8c62012-11-22 00:17:38 +01002512
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01002513 /* Post initialisation of the users and groups lists. */
2514 err_code = userlist_postinit();
2515 if (err_code != ERR_NONE)
2516 goto out;
2517
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002518 /* first, we will invert the proxy list order */
2519 curproxy = NULL;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002520 while (proxies_list) {
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002521 struct proxy *next;
2522
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002523 next = proxies_list->next;
2524 proxies_list->next = curproxy;
2525 curproxy = proxies_list;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002526 if (!next)
2527 break;
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002528 proxies_list = next;
Willy Tarreau55bc0f82009-03-15 14:51:53 +01002529 }
2530
Olivier Houchardfbc74e82017-11-24 16:54:05 +01002531 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002532 struct switching_rule *rule;
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002533 struct server_rule *srule;
Emeric Brunb982a3d2010-01-04 15:45:53 +01002534 struct sticking_rule *mrule;
Dragan Dosen1322d092015-09-22 16:05:32 +02002535 struct logsrv *tmplogsrv;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002536 unsigned int next_id;
2537
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002538 if (!(curproxy->cap & PR_CAP_INT) && curproxy->uuid < 0) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002539 /* proxy ID not set, use automatic numbering with first
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002540 * spare entry starting with next_pxid. We don't assign
2541 * numbers for internal proxies as they may depend on
2542 * build or config options and we don't want them to
2543 * possibly reuse existing IDs.
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002544 */
2545 next_pxid = get_next_id(&used_proxy_id, next_pxid);
2546 curproxy->conf.id.key = curproxy->uuid = next_pxid;
2547 eb32_insert(&used_proxy_id, &curproxy->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02002548 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01002549
Willy Tarreau32b51cd2021-08-26 15:59:44 +02002550 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize >= (256 << 20) && ONLY_ONCE()) {
2551 ha_alert("global.tune.bufsize must be below 256 MB when HTTP is in use (current value = %d).\n",
2552 global.tune.bufsize);
2553 cfgerr++;
2554 }
2555
Willy Tarreaud3dbfd92021-08-20 10:15:40 +02002556 /* next IDs are shifted even if the proxy is disabled, this
2557 * guarantees that a proxy that is temporarily disabled in the
2558 * configuration doesn't cause a renumbering. Internal proxies
2559 * that are not assigned a static ID must never shift the IDs
2560 * either since they may appear in any order (Lua, logs, etc).
2561 * The GLOBAL proxy that carries the stats socket has its ID
2562 * forced to zero.
2563 */
2564 if (curproxy->uuid >= 0)
2565 next_pxid++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002566
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02002567 if (curproxy->flags & PR_FL_DISABLED) {
Willy Tarreau02b092f2020-10-07 18:36:54 +02002568 /* ensure we don't keep listeners uselessly bound. We
2569 * can't disable their listeners yet (fdtab not
2570 * allocated yet) but let's skip them.
2571 */
Dragan Dosen7d61a332019-05-07 14:16:18 +02002572 if (curproxy->table) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002573 ha_free(&curproxy->table->peers.name);
Dragan Dosen7d61a332019-05-07 14:16:18 +02002574 curproxy->table->peers.p = NULL;
2575 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002576 continue;
2577 }
2578
Christopher Fauletff556272021-10-13 11:04:10 +02002579 /* The current proxy is referencing a default proxy. We must
2580 * finalize its config, but only once. If the default proxy is
2581 * ready (PR_FL_READY) it means it was already fully configured.
2582 */
2583 if (curproxy->defpx) {
2584 if (!(curproxy->defpx->flags & PR_FL_READY)) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02002585 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
2586 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l4_rules, curproxy->defpx, &err_code);
2587 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.l5_rules, curproxy->defpx, &err_code);
2588 cfgerr += check_action_rules(&curproxy->defpx->tcp_req.inspect_rules, curproxy->defpx, &err_code);
2589 cfgerr += check_action_rules(&curproxy->defpx->tcp_rep.inspect_rules, curproxy->defpx, &err_code);
2590 cfgerr += check_action_rules(&curproxy->defpx->http_req_rules, curproxy->defpx, &err_code);
2591 cfgerr += check_action_rules(&curproxy->defpx->http_res_rules, curproxy->defpx, &err_code);
2592 cfgerr += check_action_rules(&curproxy->defpx->http_after_res_rules, curproxy->defpx, &err_code);
2593
Christopher Fauletff556272021-10-13 11:04:10 +02002594 err = NULL;
2595 i = smp_resolve_args(curproxy->defpx, &err);
2596 cfgerr += i;
2597 if (i) {
2598 indent_msg(&err, 8);
2599 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
2600 ha_free(&err);
2601 }
2602 else
2603 cfgerr += acl_find_targets(curproxy->defpx);
2604
2605 /* default proxy is now ready. Set the right FE/BE capabilities */
2606 curproxy->defpx->flags |= PR_FL_READY;
2607 }
2608 }
2609
Willy Tarreau3d209582014-05-09 17:06:11 +02002610 /* check and reduce the bind-proc of each listener */
2611 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
2612 unsigned long mask;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002613 struct listener *li;
Willy Tarreau3d209582014-05-09 17:06:11 +02002614
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002615 /* HTTP frontends with "h2" as ALPN/NPN will work in
2616 * HTTP/2 and absolutely require buffers 16kB or larger.
2617 */
2618#ifdef USE_OPENSSL
2619 if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) {
2620#ifdef OPENSSL_NPN_NEGOTIATED
2621 /* check NPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002622 if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002623 ha_alert("HTTP frontend '%s' enables HTTP/2 via NPN at [%s:%d], so global.tune.bufsize must be at least 16384 bytes (%d now).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002624 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002625 cfgerr++;
2626 }
2627#endif
2628#ifdef TLSEXT_TYPE_application_layer_protocol_negotiation
2629 /* check ALPN */
Willy Tarreau4db49c02018-11-11 10:36:25 +01002630 if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002631 ha_alert("HTTP frontend '%s' enables HTTP/2 via ALPN at [%s:%d], so global.tune.bufsize must be at least 16384 bytes (%d now).\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002632 curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize);
Willy Tarreau45a66cc2017-11-24 11:28:00 +01002633 cfgerr++;
2634 }
2635#endif
2636 } /* HTTP && bufsize < 16384 */
2637#endif
2638
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002639 /* detect and address thread affinity inconsistencies */
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002640 err = NULL;
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002641 if (thread_resolve_group_mask(bind_conf->bind_tgroup, bind_conf->bind_thread,
2642 &bind_conf->bind_tgroup, &bind_conf->bind_thread, &err) < 0) {
Willy Tarreaue3f4d742021-09-29 19:02:25 +02002643 ha_alert("Proxy '%s': %s in 'bind %s' at [%s:%d].\n",
2644 curproxy->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
2645 free(err);
2646 cfgerr++;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002647 } else if (!((mask = bind_conf->bind_thread) & ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled)) {
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002648 unsigned long new_mask = 0;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002649 ulong thr_mask = ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002650
2651 while (mask) {
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002652 new_mask |= mask & thr_mask;
2653 mask >>= ha_tgroup_info[bind_conf->bind_tgroup-1].count;
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002654 }
2655
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002656 bind_conf->bind_thread = new_mask;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02002657 ha_warning("Proxy '%s': the thread range specified on the 'thread' directive of 'bind %s' at [%s:%d] only refers to thread numbers out of the range supported by thread group %d (%d). The thread numbers were remapped to existing threads instead (mask 0x%lx).\n",
2658 curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line,
2659 bind_conf->bind_tgroup, ha_tgroup_info[bind_conf->bind_tgroup-1].count, new_mask);
Willy Tarreauc477b6f2018-07-27 18:07:41 +02002660 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002661
2662 /* apply thread masks and groups to all receivers */
2663 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
Willy Tarreau6dfbef42021-10-12 15:23:03 +02002664 if (bind_conf->settings.shards <= 1) {
2665 li->rx.bind_thread = bind_conf->bind_thread;
2666 li->rx.bind_tgroup = bind_conf->bind_tgroup;
2667 } else {
2668 struct listener *new_li;
2669 int shard, shards, todo, done, bit;
2670 ulong mask;
2671
2672 shards = bind_conf->settings.shards;
2673 todo = my_popcountl(bind_conf->bind_thread);
2674
2675 /* no more shards than total threads */
2676 if (shards > todo)
2677 shards = todo;
2678
2679 shard = done = bit = 0;
2680 new_li = li;
2681
2682 while (1) {
2683 mask = 0;
2684 while (done < todo) {
2685 /* enlarge mask to cover next bit of bind_thread */
2686 while (!(bind_conf->bind_thread & (1UL << bit)))
2687 bit++;
2688 mask |= (1UL << bit);
2689 bit++;
2690 done += shards;
2691 }
2692
2693 new_li->rx.bind_thread = bind_conf->bind_thread & mask;
2694 new_li->rx.bind_tgroup = bind_conf->bind_tgroup;
2695 done -= todo;
2696
2697 shard++;
2698 if (shard >= shards)
2699 break;
2700
2701 /* create another listener for new shards */
2702 new_li = clone_listener(li);
2703 if (!new_li) {
2704 ha_alert("Out of memory while trying to allocate extra listener for shard %d in %s %s\n",
2705 shard, proxy_type_str(curproxy), curproxy->id);
2706 cfgerr++;
2707 err_code |= ERR_FATAL | ERR_ALERT;
2708 goto out;
2709 }
2710 }
2711 }
Willy Tarreau01cac3f2021-10-12 08:47:54 +02002712 }
Willy Tarreau3d209582014-05-09 17:06:11 +02002713 }
2714
Willy Tarreauff01a212009-03-15 13:46:16 +01002715 switch (curproxy->mode) {
Willy Tarreauff01a212009-03-15 13:46:16 +01002716 case PR_MODE_TCP:
Willy Tarreau915e1eb2009-06-22 15:48:36 +02002717 cfgerr += proxy_cfg_ensure_no_http(curproxy);
Willy Tarreauff01a212009-03-15 13:46:16 +01002718 break;
2719
2720 case PR_MODE_HTTP:
Willy Tarreau25320b22013-03-24 07:22:08 +01002721 curproxy->http_needed = 1;
Willy Tarreauff01a212009-03-15 13:46:16 +01002722 break;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002723
2724 case PR_MODE_CLI:
2725 cfgerr += proxy_cfg_ensure_no_http(curproxy);
2726 break;
Emeric Brun54932b42020-07-07 09:43:24 +02002727 case PR_MODE_SYSLOG:
Willy Tarreaua389c9e2020-10-07 17:49:42 +02002728 case PR_MODE_PEERS:
Emeric Brun54932b42020-07-07 09:43:24 +02002729 case PR_MODES:
2730 /* should not happen, bug gcc warn missing switch statement */
Amaury Denoyelle11124302021-06-04 18:22:08 +02002731 ha_alert("%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 +02002732 proxy_type_str(curproxy), curproxy->id);
2733 cfgerr++;
2734 break;
Willy Tarreauff01a212009-03-15 13:46:16 +01002735 }
2736
William Lallemand2c04a5a2021-08-13 15:21:12 +02002737 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002738 ha_warning("%s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002739 proxy_type_str(curproxy), curproxy->id);
Willy Tarreauf3934b82015-08-11 11:36:45 +02002740 err_code |= ERR_WARN;
2741 }
2742
Willy Tarreau77e0dae2020-10-14 15:44:27 +02002743 if (curproxy->cap & PR_CAP_BE) {
Willy Tarreauf3e49f92009-10-03 12:21:20 +02002744 if (curproxy->lbprm.algo & BE_LB_KIND) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002745 if (curproxy->options & PR_O_TRANSP) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002746 ha_alert("%s '%s' cannot use both transparent and balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002747 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002748 cfgerr++;
2749 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002750#ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002751 else if (curproxy->srv == NULL) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002752 ha_alert("%s '%s' needs at least 1 server in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002753 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002754 cfgerr++;
2755 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002756#endif
Willy Tarreau1620ec32011-08-06 17:05:02 +02002757 else if (curproxy->options & PR_O_DISPATCH) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002758 ha_warning("dispatch address of %s '%s' will be ignored in balance mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002759 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02002760 err_code |= ERR_WARN;
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002761 }
2762 }
Willy Tarreau25241232021-07-18 19:18:56 +02002763 else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH))) {
Willy Tarreau3cd9af22009-03-15 14:06:41 +01002764 /* If no LB algo is set in a backend, and we're not in
2765 * transparent mode, dispatch mode nor proxy mode, we
2766 * want to use balance roundrobin by default.
2767 */
2768 curproxy->lbprm.algo &= ~BE_LB_ALGO;
2769 curproxy->lbprm.algo |= BE_LB_ALGO_RR;
Willy Tarreaubaaee002006-06-26 02:48:02 +02002770 }
2771 }
Willy Tarreau193cf932007-09-17 10:17:23 +02002772
Willy Tarreau1620ec32011-08-06 17:05:02 +02002773 if (curproxy->options & PR_O_DISPATCH)
Willy Tarreau25241232021-07-18 19:18:56 +02002774 curproxy->options &= ~PR_O_TRANSP;
Willy Tarreau1620ec32011-08-06 17:05:02 +02002775 else if (curproxy->options & PR_O_TRANSP)
Willy Tarreau25241232021-07-18 19:18:56 +02002776 curproxy->options &= ~PR_O_DISPATCH;
Willy Tarreau82936582007-11-30 15:20:09 +01002777
Christopher Faulete5870d82020-04-15 11:32:03 +02002778 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002779 ha_warning("%s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n",
Christopher Faulete5870d82020-04-15 11:32:03 +02002780 proxy_type_str(curproxy), curproxy->id);
2781 err_code |= ERR_WARN;
2782 }
2783
2784 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK &&
Christopher Fauletc0fcbe42020-06-03 19:00:42 +02002785 (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) {
Willy Tarreau1620ec32011-08-06 17:05:02 +02002786 if (curproxy->options & PR_O_DISABLE404) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002787 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002788 "disable-on-404", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002789 err_code |= ERR_WARN;
2790 curproxy->options &= ~PR_O_DISABLE404;
2791 }
2792 if (curproxy->options2 & PR_O2_CHK_SNDST) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002793 ha_warning("'%s' will be ignored for %s '%s' (requires 'option httpchk').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002794 "send-state", proxy_type_str(curproxy), curproxy->id);
Willy Tarreau1620ec32011-08-06 17:05:02 +02002795 err_code |= ERR_WARN;
2796 curproxy->options &= ~PR_O2_CHK_SNDST;
2797 }
Willy Tarreauef781042010-01-27 11:53:01 +01002798 }
2799
Simon Horman98637e52014-06-20 12:30:16 +09002800 if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) {
2801 if (!global.external_check) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002802 ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n",
2803 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002804 cfgerr++;
2805 }
2806 if (!curproxy->check_command) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002807 ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n",
2808 curproxy->id, "option external-check");
Simon Horman98637e52014-06-20 12:30:16 +09002809 cfgerr++;
2810 }
Willy Tarreaud96f1122019-12-03 07:07:36 +01002811 if (!(global.tune.options & GTUNE_INSECURE_FORK)) {
2812 ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n",
2813 curproxy->id, "option external-check");
2814 err_code |= ERR_WARN;
2815 }
Simon Horman98637e52014-06-20 12:30:16 +09002816 }
2817
Simon Horman64e34162015-02-06 11:11:57 +09002818 if (curproxy->email_alert.set) {
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002819 if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002820 ha_warning("'email-alert' will be ignored for %s '%s' (the presence any of "
Christopher Faulet767a84b2017-11-24 16:50:31 +01002821 "'email-alert from', 'email-alert level' 'email-alert mailers', "
2822 "'email-alert myhostname', or 'email-alert to' "
2823 "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' "
2824 "to be present).\n",
2825 proxy_type_str(curproxy), curproxy->id);
Simon Horman0ba0e4a2015-01-30 11:23:00 +09002826 err_code |= ERR_WARN;
2827 free_email_alert(curproxy);
2828 }
2829 if (!curproxy->email_alert.myhostname)
Cyril Bontée22bfd62015-12-04 03:07:07 +01002830 curproxy->email_alert.myhostname = strdup(hostname);
Simon Horman9dc49962015-01-30 11:22:59 +09002831 }
2832
Simon Horman98637e52014-06-20 12:30:16 +09002833 if (curproxy->check_command) {
2834 int clear = 0;
2835 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002836 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002837 "external-check command", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002838 err_code |= ERR_WARN;
2839 clear = 1;
2840 }
2841 if (curproxy->check_command[0] != '/' && !curproxy->check_path) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002842 ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n",
2843 curproxy->id, "external-check command");
Simon Horman98637e52014-06-20 12:30:16 +09002844 cfgerr++;
2845 }
2846 if (clear) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002847 ha_free(&curproxy->check_command);
Simon Horman98637e52014-06-20 12:30:16 +09002848 }
2849 }
2850
2851 if (curproxy->check_path) {
2852 if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02002853 ha_warning("'%s' will be ignored for %s '%s' (requires 'option external-check').\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01002854 "external-check path", proxy_type_str(curproxy), curproxy->id);
Simon Horman98637e52014-06-20 12:30:16 +09002855 err_code |= ERR_WARN;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002856 ha_free(&curproxy->check_path);
Simon Horman98637e52014-06-20 12:30:16 +09002857 }
2858 }
2859
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002860 /* if a default backend was specified, let's find it */
2861 if (curproxy->defbe.name) {
2862 struct proxy *target;
2863
Willy Tarreauafb39922015-05-26 12:04:09 +02002864 target = proxy_be_by_name(curproxy->defbe.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002865 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002866 ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n",
2867 curproxy->id, curproxy->defbe.name);
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002868 cfgerr++;
2869 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002870 ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n",
2871 curproxy->id, curproxy->defbe.name);
Willy Tarreaubb925012009-07-23 13:36:36 +02002872 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002873 } else if (target->mode != curproxy->mode &&
2874 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2875
Christopher Faulet767a84b2017-11-24 16:50:31 +01002876 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n",
2877 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2878 curproxy->conf.file, curproxy->conf.line,
2879 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2880 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002881 cfgerr++;
Willy Tarreau5fdfb912007-01-01 23:11:07 +01002882 } else {
2883 free(curproxy->defbe.name);
2884 curproxy->defbe.be = target;
Willy Tarreauff678132012-02-13 14:32:34 +01002885 /* Emit a warning if this proxy also has some servers */
2886 if (curproxy->srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002887 ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n",
2888 curproxy->id);
Willy Tarreauff678132012-02-13 14:32:34 +01002889 err_code |= ERR_WARN;
2890 }
Willy Tarreaubaaee002006-06-26 02:48:02 +02002891 }
2892 }
2893
Willy Tarreau55ea7572007-06-17 19:56:27 +02002894 /* find the target proxy for 'use_backend' rules */
2895 list_for_each_entry(rule, &curproxy->switching_rules, list) {
Willy Tarreau55ea7572007-06-17 19:56:27 +02002896 struct proxy *target;
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002897 struct logformat_node *node;
2898 char *pxname;
2899
2900 /* Try to parse the string as a log format expression. If the result
2901 * of the parsing is only one entry containing a simple string, then
2902 * it's a standard string corresponding to a static rule, thus the
2903 * parsing is cancelled and be.name is restored to be resolved.
2904 */
2905 pxname = rule->be.name;
2906 LIST_INIT(&rule->be.expr);
Thierry FOURNIER / OZON.IO4ed1c952016-11-24 23:57:54 +01002907 curproxy->conf.args.ctx = ARGC_UBK;
2908 curproxy->conf.args.file = rule->file;
2909 curproxy->conf.args.line = rule->line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002910 err = NULL;
2911 if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002912 ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n",
2913 rule->file, rule->line, pxname, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01002914 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01002915 cfgerr++;
2916 continue;
2917 }
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002918 node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list);
2919
2920 if (!LIST_ISEMPTY(&rule->be.expr)) {
2921 if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) {
2922 rule->dynamic = 1;
2923 free(pxname);
2924 continue;
2925 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002926 /* Only one element in the list, a simple string: free the expression and
2927 * fall back to static rule
2928 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002929 LIST_DELETE(&node->list);
Bertrand Jacquin702d44f2013-11-19 11:43:06 +01002930 free(node->arg);
2931 free(node);
2932 }
2933
2934 rule->dynamic = 0;
2935 rule->be.name = pxname;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002936
Willy Tarreauafb39922015-05-26 12:04:09 +02002937 target = proxy_be_by_name(rule->be.name);
Krzysztof Piotr Oledzki6eb730d2007-11-03 23:41:58 +01002938 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002939 ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n",
2940 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002941 cfgerr++;
2942 } else if (target == curproxy) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002943 ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n",
2944 curproxy->id, rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002945 cfgerr++;
Willy Tarreauafb39922015-05-26 12:04:09 +02002946 } else if (target->mode != curproxy->mode &&
2947 !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) {
2948
Christopher Faulet767a84b2017-11-24 16:50:31 +01002949 ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n",
2950 proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id,
2951 curproxy->conf.file, curproxy->conf.line,
2952 proxy_mode_str(target->mode), proxy_type_str(target), target->id,
2953 target->conf.file, target->conf.line);
Willy Tarreauafb39922015-05-26 12:04:09 +02002954 cfgerr++;
Willy Tarreau55ea7572007-06-17 19:56:27 +02002955 } else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01002956 ha_free(&rule->be.name);
Willy Tarreau55ea7572007-06-17 19:56:27 +02002957 rule->be.backend = target;
2958 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01002959 err_code |= warnif_tcp_http_cond(curproxy, rule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002960 }
2961
Willy Tarreau64ab6072014-09-16 12:17:36 +02002962 /* find the target server for 'use_server' rules */
Willy Tarreau4a5cade2012-04-05 21:09:48 +02002963 list_for_each_entry(srule, &curproxy->server_rules, list) {
Jerome Magnin824186b2020-03-29 09:37:12 +02002964 struct server *target;
2965 struct logformat_node *node;
2966 char *server_name;
2967
2968 /* We try to parse the string as a log format expression. If the result of the parsing
2969 * is only one entry containing a single string, then it's a standard string corresponding
2970 * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr.
2971 */
2972 server_name = srule->srv.name;
2973 LIST_INIT(&srule->expr);
2974 curproxy->conf.args.ctx = ARGC_USRV;
2975 err = NULL;
2976 if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) {
2977 ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n",
2978 srule->file, srule->line, server_name, err);
2979 free(err);
2980 cfgerr++;
2981 continue;
2982 }
2983 node = LIST_NEXT(&srule->expr, struct logformat_node *, list);
2984
2985 if (!LIST_ISEMPTY(&srule->expr)) {
2986 if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) {
2987 srule->dynamic = 1;
2988 free(server_name);
2989 continue;
2990 }
Christopher Fauletf82ea4a2020-05-07 15:59:33 +02002991 /* Only one element in the list, a simple string: free the expression and
2992 * fall back to static rule
2993 */
Willy Tarreau2b718102021-04-21 07:32:39 +02002994 LIST_DELETE(&node->list);
Jerome Magnin824186b2020-03-29 09:37:12 +02002995 free(node->arg);
2996 free(node);
2997 }
2998
2999 srule->dynamic = 0;
3000 srule->srv.name = server_name;
3001 target = findserver(curproxy, srule->srv.name);
Christopher Faulet581db2b2021-03-26 10:02:46 +01003002 err_code |= warnif_tcp_http_cond(curproxy, srule->cond);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003003
3004 if (!target) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003005 ha_alert("%s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003006 proxy_type_str(curproxy), curproxy->id, srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003007 cfgerr++;
3008 continue;
3009 }
Willy Tarreau35cd7342021-02-26 20:51:47 +01003010 ha_free(&srule->srv.name);
Willy Tarreau4a5cade2012-04-05 21:09:48 +02003011 srule->srv.ptr = target;
Amaury Denoyelle06269612021-08-23 14:05:07 +02003012 target->flags |= SRV_F_NON_PURGEABLE;
Willy Tarreau55ea7572007-06-17 19:56:27 +02003013 }
3014
Emeric Brunb982a3d2010-01-04 15:45:53 +01003015 /* find the target table for 'stick' rules */
3016 list_for_each_entry(mrule, &curproxy->sticking_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003017 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003018
Emeric Brun1d33b292010-01-04 15:47:17 +01003019 curproxy->be_req_ana |= AN_REQ_STICKING_RULES;
3020 if (mrule->flags & STK_IS_STORE)
3021 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3022
Emeric Brunb982a3d2010-01-04 15:45:53 +01003023 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003024 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003025 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003026 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003027
3028 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003029 ha_alert("Proxy '%s': unable to find stick-table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003030 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003031 cfgerr++;
3032 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003033 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003034 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3035 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003036 cfgerr++;
3037 }
3038 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003039 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003040 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003041 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3042 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003043 if (!in_proxies_list(target->proxies_list, curproxy)) {
3044 curproxy->next_stkt_ref = target->proxies_list;
3045 target->proxies_list = curproxy;
3046 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003047 }
Christopher Faulet581db2b2021-03-26 10:02:46 +01003048 err_code |= warnif_tcp_http_cond(curproxy, mrule->cond);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003049 }
3050
3051 /* find the target table for 'store response' rules */
3052 list_for_each_entry(mrule, &curproxy->storersp_rules, list) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003053 struct stktable *target;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003054
Emeric Brun1d33b292010-01-04 15:47:17 +01003055 curproxy->be_rsp_ana |= AN_RES_STORE_RULES;
3056
Emeric Brunb982a3d2010-01-04 15:45:53 +01003057 if (mrule->table.name)
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003058 target = stktable_find_by_name(mrule->table.name);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003059 else
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003060 target = curproxy->table;
Emeric Brunb982a3d2010-01-04 15:45:53 +01003061
3062 if (!target) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003063 ha_alert("Proxy '%s': unable to find store table '%s'.\n",
Willy Tarreau508d2322020-01-24 07:19:34 +01003064 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003065 cfgerr++;
3066 }
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003067 else if (!stktable_compatible_sample(mrule->expr, target->type)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003068 ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n",
3069 curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id);
Emeric Brunb982a3d2010-01-04 15:45:53 +01003070 cfgerr++;
3071 }
3072 else {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003073 ha_free(&mrule->table.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003074 mrule->table.t = target;
Emeric Brunc64a2a32021-06-30 18:01:02 +02003075 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL, NULL);
3076 stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL, NULL);
Frédéric Lécaille9c3a0ce2019-09-02 14:02:28 +02003077 if (!in_proxies_list(target->proxies_list, curproxy)) {
3078 curproxy->next_stkt_ref = target->proxies_list;
3079 target->proxies_list = curproxy;
3080 }
Emeric Brunb982a3d2010-01-04 15:45:53 +01003081 }
3082 }
3083
Christopher Faulet42c6cf92021-03-25 17:19:04 +01003084 /* check validity for 'tcp-request' layer 4/5/6/7 rules */
3085 cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code);
3086 cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code);
3087 cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code);
3088 cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code);
3089 cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code);
3090 cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code);
3091 cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code);
Christopher Faulet6d0c3df2020-01-22 09:26:35 +01003092
Christopher Faulet5eef0182021-03-31 17:13:49 +02003093 /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */
3094 if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) {
3095 if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP)
3096 ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. "
3097 "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n",
3098 curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy));
3099 }
3100
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003101 if (curproxy->table && curproxy->table->peers.name) {
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003102 struct peers *curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003103
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02003104 for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) {
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003105 if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) {
Willy Tarreau35cd7342021-02-26 20:51:47 +01003106 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003107 curproxy->table->peers.p = curpeers;
Emeric Brun32da3c42010-09-23 18:39:19 +02003108 break;
3109 }
3110 }
3111
3112 if (!curpeers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003113 ha_alert("Proxy '%s': unable to find sync peers '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003114 curproxy->id, curproxy->table->peers.name);
Willy Tarreau35cd7342021-02-26 20:51:47 +01003115 ha_free(&curproxy->table->peers.name);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003116 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003117 cfgerr++;
3118 }
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02003119 else if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003120 /* silently disable this peers section */
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003121 curproxy->table->peers.p = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02003122 }
Emeric Brun32da3c42010-09-23 18:39:19 +02003123 else if (!curpeers->peers_fe) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003124 ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n",
3125 curproxy->id, localpeer, curpeers->id);
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01003126 curproxy->table->peers.p = NULL;
Emeric Brun32da3c42010-09-23 18:39:19 +02003127 cfgerr++;
3128 }
3129 }
3130
Simon Horman9dc49962015-01-30 11:22:59 +09003131
3132 if (curproxy->email_alert.mailers.name) {
3133 struct mailers *curmailers = mailers;
3134
3135 for (curmailers = mailers; curmailers; curmailers = curmailers->next) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01003136 if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0)
Simon Horman9dc49962015-01-30 11:22:59 +09003137 break;
Simon Horman9dc49962015-01-30 11:22:59 +09003138 }
Simon Horman9dc49962015-01-30 11:22:59 +09003139 if (!curmailers) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003140 ha_alert("Proxy '%s': unable to find mailers '%s'.\n",
3141 curproxy->id, curproxy->email_alert.mailers.name);
Simon Horman9dc49962015-01-30 11:22:59 +09003142 free_email_alert(curproxy);
3143 cfgerr++;
3144 }
Christopher Faulet0108bb32017-10-20 21:34:32 +02003145 else {
3146 err = NULL;
3147 if (init_email_alert(curmailers, curproxy, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003148 ha_alert("Proxy '%s': %s.\n", curproxy->id, err);
Christopher Faulet0108bb32017-10-20 21:34:32 +02003149 free(err);
3150 cfgerr++;
3151 }
3152 }
Simon Horman9dc49962015-01-30 11:22:59 +09003153 }
3154
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003155 if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) &&
Willy Tarreauff011f22011-01-06 17:51:27 +01003156 !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) &&
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003157 (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003158 ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n",
3159 "proxy", curproxy->id);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003160 cfgerr++;
3161 goto out_uri_auth_compat;
3162 }
3163
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003164 if (curproxy->uri_auth && curproxy->uri_auth->userlist &&
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003165 (!(curproxy->uri_auth->flags & STAT_CONVDONE) ||
Willy Tarreauee4f5f82019-10-09 09:59:22 +02003166 LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003167 const char *uri_auth_compat_req[10];
Thierry FOURNIERa28a9422015-08-04 19:35:46 +02003168 struct act_rule *rule;
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003169 i = 0;
3170
Willy Tarreau95fa4692010-02-01 13:05:50 +01003171 /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */
3172 uri_auth_compat_req[i++] = "auth";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003173
3174 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003175 uri_auth_compat_req[i++] = "realm";
3176 uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm;
3177 }
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003178
Willy Tarreau95fa4692010-02-01 13:05:50 +01003179 uri_auth_compat_req[i++] = "unless";
3180 uri_auth_compat_req[i++] = "{";
3181 uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)";
3182 uri_auth_compat_req[i++] = "}";
3183 uri_auth_compat_req[i++] = "";
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003184
Willy Tarreauff011f22011-01-06 17:51:27 +01003185 rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy);
3186 if (!rule) {
Willy Tarreau95fa4692010-02-01 13:05:50 +01003187 cfgerr++;
3188 break;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003189 }
3190
Willy Tarreau2b718102021-04-21 07:32:39 +02003191 LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list);
Willy Tarreau95fa4692010-02-01 13:05:50 +01003192
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003193 if (curproxy->uri_auth->auth_realm) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003194 ha_free(&curproxy->uri_auth->auth_realm);
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003195 }
Willy Tarreau5bbc6762021-02-12 11:49:25 +01003196 curproxy->uri_auth->flags |= STAT_CONVDONE;
Krzysztof Piotr Oledzki8c8bd452010-01-29 19:29:32 +01003197 }
3198out_uri_auth_compat:
3199
Dragan Dosen43885c72015-10-01 13:18:13 +02003200 /* check whether we have a log server that uses RFC5424 log format */
Dragan Dosen1322d092015-09-22 16:05:32 +02003201 list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) {
Dragan Dosen43885c72015-10-01 13:18:13 +02003202 if (tmplogsrv->format == LOG_FORMAT_RFC5424) {
3203 if (!curproxy->conf.logformat_sd_string) {
3204 /* set the default logformat_sd_string */
3205 curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format;
3206 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003207 break;
Dragan Dosen1322d092015-09-22 16:05:32 +02003208 }
Dragan Dosen1322d092015-09-22 16:05:32 +02003209 }
Dragan Dosen68d2e3a2015-09-19 22:35:44 +02003210
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003211 /* compile the log format */
3212 if (!(curproxy->cap & PR_CAP_FE)) {
Willy Tarreau62a61232013-04-12 18:13:46 +02003213 if (curproxy->conf.logformat_string != default_http_log_format &&
3214 curproxy->conf.logformat_string != default_tcp_log_format &&
3215 curproxy->conf.logformat_string != clf_http_log_format)
3216 free(curproxy->conf.logformat_string);
3217 curproxy->conf.logformat_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003218 ha_free(&curproxy->conf.lfs_file);
Willy Tarreau62a61232013-04-12 18:13:46 +02003219 curproxy->conf.lfs_line = 0;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003220
3221 if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format)
3222 free(curproxy->conf.logformat_sd_string);
3223 curproxy->conf.logformat_sd_string = NULL;
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003224 ha_free(&curproxy->conf.lfsd_file);
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003225 curproxy->conf.lfsd_line = 0;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003226 }
3227
Willy Tarreau62a61232013-04-12 18:13:46 +02003228 if (curproxy->conf.logformat_string) {
3229 curproxy->conf.args.ctx = ARGC_LOG;
3230 curproxy->conf.args.file = curproxy->conf.lfs_file;
3231 curproxy->conf.args.line = curproxy->conf.lfs_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003232 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003233 if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat,
3234 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003235 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003236 ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n",
3237 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003238 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003239 cfgerr++;
3240 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003241 curproxy->conf.args.file = NULL;
3242 curproxy->conf.args.line = 0;
3243 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003244
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003245 if (curproxy->conf.logformat_sd_string) {
3246 curproxy->conf.args.ctx = ARGC_LOGSD;
3247 curproxy->conf.args.file = curproxy->conf.lfsd_file;
3248 curproxy->conf.args.line = curproxy->conf.lfsd_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003249 err = NULL;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003250 if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd,
3251 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003252 SMP_VAL_FE_LOG_END, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003253 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3254 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003255 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003256 cfgerr++;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003257 } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003258 ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n",
3259 curproxy->conf.lfs_file, curproxy->conf.lfs_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003260 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003261 cfgerr++;
3262 }
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003263 curproxy->conf.args.file = NULL;
3264 curproxy->conf.args.line = 0;
3265 }
3266
Willy Tarreau62a61232013-04-12 18:13:46 +02003267 if (curproxy->conf.uniqueid_format_string) {
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003268 int where = 0;
3269
Willy Tarreau62a61232013-04-12 18:13:46 +02003270 curproxy->conf.args.ctx = ARGC_UIF;
3271 curproxy->conf.args.file = curproxy->conf.uif_file;
3272 curproxy->conf.args.line = curproxy->conf.uif_line;
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003273 err = NULL;
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003274 if (curproxy->cap & PR_CAP_FE)
3275 where |= SMP_VAL_FE_HRQ_HDR;
3276 if (curproxy->cap & PR_CAP_BE)
3277 where |= SMP_VAL_BE_HRQ_HDR;
Dragan Dosen1e3b16f2020-06-23 18:16:44 +02003278 if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id,
Christopher Faulet7a06ffb2021-10-13 17:22:17 +02003279 LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES, where, &err)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01003280 ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n",
3281 curproxy->conf.uif_file, curproxy->conf.uif_line, err);
Thierry FOURNIER / OZON.IO8a4e4422016-11-23 00:41:28 +01003282 free(err);
Thierry FOURNIER / OZON.IO59fd5112016-11-22 23:50:02 +01003283 cfgerr++;
3284 }
Willy Tarreau62a61232013-04-12 18:13:46 +02003285 curproxy->conf.args.file = NULL;
3286 curproxy->conf.args.line = 0;
3287 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003288
Remi Tricot-Le Bretonfe21fe72021-08-31 12:08:52 +02003289 if (curproxy->conf.error_logformat_string) {
3290 curproxy->conf.args.ctx = ARGC_LOG;
3291 curproxy->conf.args.file = curproxy->conf.elfs_file;
3292 curproxy->conf.args.line = curproxy->conf.elfs_line;
3293 err = NULL;
3294 if (!parse_logformat_string(curproxy->conf.error_logformat_string, curproxy, &curproxy->logformat_error,
3295 LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES,
3296 SMP_VAL_FE_LOG_END, &err)) {
3297 ha_alert("Parsing [%s:%d]: failed to parse error-log-format : %s.\n",
3298 curproxy->conf.elfs_file, curproxy->conf.elfs_line, err);
3299 free(err);
3300 cfgerr++;
3301 }
3302 curproxy->conf.args.file = NULL;
3303 curproxy->conf.args.line = 0;
3304 }
3305
Willy Tarreau7c9a0fe2022-04-25 10:25:34 +02003306 /* "balance hash" needs to compile its expression */
3307 if ((curproxy->lbprm.algo & BE_LB_ALGO) == BE_LB_ALGO_SMP) {
3308 int idx = 0;
3309 const char *args[] = {
3310 curproxy->lbprm.arg_str,
3311 NULL,
3312 };
3313
3314 err = NULL;
3315 curproxy->conf.args.ctx = ARGC_USRV; // same context as use_server.
3316 curproxy->lbprm.expr =
3317 sample_parse_expr((char **)args, &idx,
3318 curproxy->conf.file, curproxy->conf.line,
3319 &err, &curproxy->conf.args, NULL);
3320
3321 if (!curproxy->lbprm.expr) {
3322 ha_alert("%s '%s' [%s:%d]: failed to parse 'balance hash' expression '%s' in : %s.\n",
3323 proxy_type_str(curproxy), curproxy->id,
3324 curproxy->conf.file, curproxy->conf.line,
3325 curproxy->lbprm.arg_str, err);
3326 ha_free(&err);
3327 cfgerr++;
3328 }
3329 else if (!(curproxy->lbprm.expr->fetch->val & SMP_VAL_BE_SET_SRV)) {
3330 ha_alert("%s '%s' [%s:%d]: error detected while parsing 'balance hash' expression '%s' "
3331 "which requires information from %s, which is not available here.\n",
3332 proxy_type_str(curproxy), curproxy->id,
3333 curproxy->conf.file, curproxy->conf.line,
3334 curproxy->lbprm.arg_str, sample_src_names(curproxy->lbprm.expr->fetch->use));
3335 cfgerr++;
3336 }
3337 else if (curproxy->mode == PR_MODE_HTTP && (curproxy->lbprm.expr->fetch->use & SMP_USE_L6REQ)) {
3338 ha_warning("%s '%s' [%s:%d]: L6 sample fetch <%s> will be ignored in 'balance hash' expression in HTTP mode.\n",
3339 proxy_type_str(curproxy), curproxy->id,
3340 curproxy->conf.file, curproxy->conf.line,
3341 curproxy->lbprm.arg_str);
3342 }
3343 else
3344 curproxy->http_needed |= !!(curproxy->lbprm.expr->fetch->use & SMP_USE_HTTP_ANY);
3345 }
3346
Thierry FOURNIER9eec0a62014-01-22 18:38:02 +01003347 /* only now we can check if some args remain unresolved.
3348 * This must be done after the users and groups resolution.
3349 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01003350 err = NULL;
3351 i = smp_resolve_args(curproxy, &err);
3352 cfgerr += i;
3353 if (i) {
3354 indent_msg(&err, 8);
3355 ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err);
3356 ha_free(&err);
3357 } else
Willy Tarreaua4312fa2013-04-02 16:34:32 +02003358 cfgerr += acl_find_targets(curproxy);
Krzysztof Piotr Oledzkif9423ae2010-01-29 19:26:18 +01003359
William Lallemand2c04a5a2021-08-13 15:21:12 +02003360 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Willy Tarreau0c303ee2008-07-07 00:09:58 +02003361 (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) ||
Willy Tarreaud825eef2007-05-12 22:35:00 +02003362 ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) &&
Willy Tarreauce887fd2012-05-12 12:50:00 +02003363 (!curproxy->timeout.connect ||
3364 (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003365 ha_warning("missing timeouts for %s '%s'.\n"
Christopher Faulet767a84b2017-11-24 16:50:31 +01003366 " | While not properly invalid, you will certainly encounter various problems\n"
3367 " | with such a configuration. To fix this, please ensure that all following\n"
3368 " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n",
3369 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003370 err_code |= ERR_WARN;
Willy Tarreau2738a142006-07-08 17:28:09 +02003371 }
Willy Tarreauf3c69202006-07-09 16:42:34 +02003372
Willy Tarreau1fa31262007-12-03 00:36:16 +01003373 /* Historically, the tarpit and queue timeouts were inherited from contimeout.
3374 * We must still support older configurations, so let's find out whether those
3375 * parameters have been set or must be copied from contimeouts.
3376 */
Willy Tarreau937c3ea2021-02-12 11:14:35 +01003377 if (!curproxy->timeout.tarpit)
3378 curproxy->timeout.tarpit = curproxy->timeout.connect;
3379 if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue)
3380 curproxy->timeout.queue = curproxy->timeout.connect;
Willy Tarreau1fa31262007-12-03 00:36:16 +01003381
Christopher Faulete5870d82020-04-15 11:32:03 +02003382 if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003383 ha_warning("%s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003384 proxy_type_str(curproxy), curproxy->id);
Willy Tarreau215663d2014-06-13 18:30:23 +02003385 err_code |= ERR_WARN;
3386 }
3387
Willy Tarreau193b8c62012-11-22 00:17:38 +01003388 /* ensure that cookie capture length is not too large */
3389 if (curproxy->capture_len >= global.tune.cookie_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003390 ha_warning("truncating capture length to %d bytes for %s '%s'.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003391 global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id);
Willy Tarreau193b8c62012-11-22 00:17:38 +01003392 err_code |= ERR_WARN;
3393 curproxy->capture_len = global.tune.cookie_len - 1;
3394 }
3395
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003396 /* The small pools required for the capture lists */
Willy Tarreau9a54e132012-03-24 08:33:05 +01003397 if (curproxy->nb_req_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003398 curproxy->req_cap_pool = create_pool("ptrcap",
3399 curproxy->nb_req_cap * sizeof(char *),
3400 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003401 }
3402
3403 if (curproxy->nb_rsp_cap) {
Willy Tarreaud9ed3d22014-06-13 12:23:06 +02003404 curproxy->rsp_cap_pool = create_pool("ptrcap",
3405 curproxy->nb_rsp_cap * sizeof(char *),
3406 MEM_F_SHARED);
Willy Tarreau9a54e132012-03-24 08:33:05 +01003407 }
Willy Tarreaucf7f3202007-05-13 22:46:04 +02003408
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003409 switch (curproxy->load_server_state_from_file) {
3410 case PR_SRV_STATE_FILE_UNSPEC:
3411 curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE;
3412 break;
3413 case PR_SRV_STATE_FILE_GLOBAL:
3414 if (!global.server_state_file) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003415 ha_warning("backend '%s' configured to load server state file from global section 'server-state-file' directive. Unfortunately, 'server-state-file' is not set!\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003416 curproxy->id);
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02003417 err_code |= ERR_WARN;
3418 }
3419 break;
3420 }
3421
Willy Tarreaubaaee002006-06-26 02:48:02 +02003422 /* first, we will invert the servers list order */
3423 newsrv = NULL;
3424 while (curproxy->srv) {
3425 struct server *next;
3426
3427 next = curproxy->srv->next;
3428 curproxy->srv->next = newsrv;
3429 newsrv = curproxy->srv;
3430 if (!next)
3431 break;
3432 curproxy->srv = next;
3433 }
3434
Willy Tarreau17edc812014-01-03 12:14:34 +01003435 /* Check that no server name conflicts. This causes trouble in the stats.
3436 * We only emit a warning for the first conflict affecting each server,
3437 * in order to avoid combinatory explosion if all servers have the same
3438 * name. We do that only for servers which do not have an explicit ID,
3439 * because these IDs were made also for distinguishing them and we don't
3440 * want to annoy people who correctly manage them.
3441 */
3442 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3443 struct server *other_srv;
3444
3445 if (newsrv->puid)
3446 continue;
3447
3448 for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) {
3449 if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) {
Willy Tarreaub01302f2019-05-27 19:31:06 +02003450 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 +01003451 newsrv->conf.file, newsrv->conf.line,
3452 proxy_type_str(curproxy), curproxy->id,
3453 newsrv->id, other_srv->conf.line);
Willy Tarreaub01302f2019-05-27 19:31:06 +02003454 cfgerr++;
Willy Tarreau17edc812014-01-03 12:14:34 +01003455 break;
3456 }
3457 }
3458 }
3459
Willy Tarreaudd701652010-05-25 23:03:02 +02003460 /* assign automatic UIDs to servers which don't have one yet */
3461 next_id = 1;
3462 newsrv = curproxy->srv;
3463 while (newsrv != NULL) {
3464 if (!newsrv->puid) {
3465 /* server ID not set, use automatic numbering with first
3466 * spare entry starting with next_svid.
3467 */
3468 next_id = get_next_id(&curproxy->conf.used_server_id, next_id);
3469 newsrv->conf.id.key = newsrv->puid = next_id;
3470 eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id);
3471 }
Amaury Denoyelle077c6b82021-06-14 17:04:25 +02003472 newsrv->conf.name.key = newsrv->id;
3473 ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name);
3474
Willy Tarreaudd701652010-05-25 23:03:02 +02003475 next_id++;
3476 newsrv = newsrv->next;
3477 }
3478
Willy Tarreau20697042007-11-15 23:26:18 +01003479 curproxy->lbprm.wmult = 1; /* default weight multiplier */
Willy Tarreau5dc2fa62007-11-19 19:10:18 +01003480 curproxy->lbprm.wdiv = 1; /* default weight divider */
Willy Tarreaubaaee002006-06-26 02:48:02 +02003481
Willy Tarreau62c3be22012-01-20 13:12:32 +01003482 /*
3483 * If this server supports a maxconn parameter, it needs a dedicated
3484 * tasks to fill the emptied slots when a connection leaves.
3485 * Also, resolve deferred tracking dependency if needed.
3486 */
3487 newsrv = curproxy->srv;
3488 while (newsrv != NULL) {
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003489 set_usermsgs_ctx(newsrv->conf.file, newsrv->conf.line, &newsrv->obj_type);
3490
Willy Tarreau62c3be22012-01-20 13:12:32 +01003491 if (newsrv->minconn > newsrv->maxconn) {
3492 /* Only 'minconn' was specified, or it was higher than or equal
3493 * to 'maxconn'. Let's turn this into maxconn and clean it, as
3494 * this will avoid further useless expensive computations.
3495 */
3496 newsrv->maxconn = newsrv->minconn;
3497 } else if (newsrv->maxconn && !newsrv->minconn) {
3498 /* minconn was not specified, so we set it to maxconn */
3499 newsrv->minconn = newsrv->maxconn;
3500 }
3501
William Dauchyf6370442020-11-14 19:25:33 +01003502 /* this will also properly set the transport layer for
3503 * prod and checks
3504 * if default-server have use_ssl, prerare ssl init
3505 * without activating it */
3506 if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 ||
Christopher Faulet4ab26792021-12-01 09:50:41 +01003507 (newsrv->proxy->options & PR_O_TCPCHK_SSL) ||
3508 ((newsrv->flags & SRV_F_DEFSRV_USE_SSL) && newsrv->use_ssl != 1)) {
Willy Tarreau17d45382016-12-22 21:16:08 +01003509 if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv)
3510 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv);
3511 }
Emeric Brun94324a42012-10-11 14:00:19 +02003512
Willy Tarreau034c88c2017-01-23 23:36:45 +01003513 if ((newsrv->flags & SRV_F_FASTOPEN) &&
3514 ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) !=
3515 (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)))
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003516 ha_warning("server 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");
Willy Tarreau034c88c2017-01-23 23:36:45 +01003517
Willy Tarreau62c3be22012-01-20 13:12:32 +01003518 if (newsrv->trackit) {
Amaury Denoyelle669b6202021-07-13 10:35:23 +02003519 if (srv_apply_track(newsrv, curproxy)) {
3520 ++cfgerr;
Willy Tarreau62c3be22012-01-20 13:12:32 +01003521 goto next_srv;
3522 }
Willy Tarreau62c3be22012-01-20 13:12:32 +01003523 }
Baptiste Assmanna68ca962015-04-14 01:15:08 +02003524
Willy Tarreau62c3be22012-01-20 13:12:32 +01003525 next_srv:
Amaury Denoyellee74cbc32021-05-28 10:34:01 +02003526 reset_usermsgs_ctx();
Willy Tarreau62c3be22012-01-20 13:12:32 +01003527 newsrv = newsrv->next;
3528 }
3529
Olivier Houchard4e694042017-03-14 20:01:29 +01003530 /*
3531 * Try to generate dynamic cookies for servers now.
3532 * It couldn't be done earlier, since at the time we parsed
3533 * the server line, we may not have known yet that we
3534 * should use dynamic cookies, or the secret key may not
3535 * have been provided yet.
3536 */
3537 if (curproxy->ck_opts & PR_CK_DYNAMIC) {
3538 newsrv = curproxy->srv;
3539 while (newsrv != NULL) {
3540 srv_set_dyncookie(newsrv);
3541 newsrv = newsrv->next;
3542 }
3543
3544 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003545 /* We have to initialize the server lookup mechanism depending
Joseph Herlanta14c03e2018-11-15 14:04:19 -08003546 * on what LB algorithm was chosen.
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003547 */
3548
3549 curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN);
3550 switch (curproxy->lbprm.algo & BE_LB_KIND) {
3551 case BE_LB_KIND_RR:
Willy Tarreau9757a382009-10-03 12:56:50 +02003552 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) {
3553 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3554 init_server_map(curproxy);
Willy Tarreau760e81d2018-05-03 07:20:40 +02003555 } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) {
3556 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003557 if (chash_init_server_tree(curproxy) < 0) {
3558 cfgerr++;
3559 }
Willy Tarreau9757a382009-10-03 12:56:50 +02003560 } else {
3561 curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN;
3562 fwrr_init_server_groups(curproxy);
3563 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003564 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003565
Willy Tarreau3ebb1162012-02-13 16:57:44 +01003566 case BE_LB_KIND_CB:
Willy Tarreauf09c6602012-02-13 17:12:08 +01003567 if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) {
3568 curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN;
3569 fwlc_init_server_tree(curproxy);
3570 } else {
3571 curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN;
3572 fas_init_server_tree(curproxy);
3573 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003574 break;
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003575
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003576 case BE_LB_KIND_HI:
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003577 if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) {
3578 curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN;
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003579 if (chash_init_server_tree(curproxy) < 0) {
3580 cfgerr++;
3581 }
Willy Tarreau6b2e11b2009-10-01 07:52:15 +02003582 } else {
3583 curproxy->lbprm.algo |= BE_LB_LKUP_MAP;
3584 init_server_map(curproxy);
3585 }
Willy Tarreauf3e49f92009-10-03 12:21:20 +02003586 break;
3587 }
Willy Tarreaucd10def2020-10-17 18:48:47 +02003588 HA_RWLOCK_INIT(&curproxy->lbprm.lock);
Willy Tarreaubaaee002006-06-26 02:48:02 +02003589
3590 if (curproxy->options & PR_O_LOGASAP)
3591 curproxy->to_log &= ~LW_BYTES;
3592
William Lallemand2c04a5a2021-08-13 15:21:12 +02003593 if (!(curproxy->cap & PR_CAP_INT) && (curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) &&
Dragan Dosen0b85ece2015-09-25 19:17:44 +02003594 (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) &&
3595 (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003596 ha_warning("log format ignored for %s '%s' since it has no log address.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003597 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue7ded1f2009-08-09 10:11:45 +02003598 err_code |= ERR_WARN;
3599 }
3600
Christopher Faulet3b6446f2021-03-15 15:10:38 +01003601 if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) {
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003602 int optnum;
3603
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003604 if (curproxy->uri_auth) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003605 ha_warning("'stats' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003606 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003607 err_code |= ERR_WARN;
3608 curproxy->uri_auth = NULL;
3609 }
3610
Willy Tarreaude7dc882017-03-10 11:49:21 +01003611 if (curproxy->capture_name) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003612 ha_warning("'capture' statement ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003613 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003614 err_code |= ERR_WARN;
3615 }
3616
3617 if (!LIST_ISEMPTY(&curproxy->http_req_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003618 ha_warning("'http-request' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003619 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003620 err_code |= ERR_WARN;
3621 }
3622
3623 if (!LIST_ISEMPTY(&curproxy->http_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003624 ha_warning("'http-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003625 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003626 err_code |= ERR_WARN;
3627 }
3628
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003629 if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003630 ha_warning("'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Fauletbb7abed2021-03-15 15:09:21 +01003631 proxy_type_str(curproxy), curproxy->id);
3632 err_code |= ERR_WARN;
3633 }
3634
Willy Tarreaude7dc882017-03-10 11:49:21 +01003635 if (!LIST_ISEMPTY(&curproxy->redirect_rules)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003636 ha_warning("'redirect' rules ignored for %s '%s' as they require HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003637 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaude7dc882017-03-10 11:49:21 +01003638 err_code |= ERR_WARN;
3639 }
3640
Willy Tarreau87cf5142011-08-19 22:57:24 +02003641 if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003642 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003643 "forwardfor", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003644 err_code |= ERR_WARN;
Willy Tarreau87cf5142011-08-19 22:57:24 +02003645 curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003646 }
3647
3648 if (curproxy->options & PR_O_ORGTO) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003649 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003650 "originalto", proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003651 err_code |= ERR_WARN;
3652 curproxy->options &= ~PR_O_ORGTO;
3653 }
3654
3655 for (optnum = 0; cfg_opts[optnum].name; optnum++) {
3656 if (cfg_opts[optnum].mode == PR_MODE_HTTP &&
3657 (curproxy->cap & cfg_opts[optnum].cap) &&
3658 (curproxy->options & cfg_opts[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003659 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003660 cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003661 err_code |= ERR_WARN;
3662 curproxy->options &= ~cfg_opts[optnum].val;
3663 }
3664 }
3665
3666 for (optnum = 0; cfg_opts2[optnum].name; optnum++) {
3667 if (cfg_opts2[optnum].mode == PR_MODE_HTTP &&
3668 (curproxy->cap & cfg_opts2[optnum].cap) &&
3669 (curproxy->options2 & cfg_opts2[optnum].val)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003670 ha_warning("'option %s' ignored for %s '%s' as it requires HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003671 cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id);
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003672 err_code |= ERR_WARN;
3673 curproxy->options2 &= ~cfg_opts2[optnum].val;
3674 }
3675 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003676
Willy Tarreau29fbe512015-08-20 19:35:14 +02003677#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003678 if (curproxy->conn_src.bind_hdr_occ) {
3679 curproxy->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02003680 ha_warning("%s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003681 proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003682 err_code |= ERR_WARN;
3683 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003684#endif
Willy Tarreaue24fdfb2010-03-25 07:22:56 +01003685 }
3686
Willy Tarreaubaaee002006-06-26 02:48:02 +02003687 /*
Willy Tarreau21d2af32008-02-14 20:25:24 +01003688 * ensure that we're not cross-dressing a TCP server into HTTP.
3689 */
3690 newsrv = curproxy->srv;
3691 while (newsrv != NULL) {
Willy Tarreau0cec3312011-10-31 13:49:26 +01003692 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003693 ha_alert("%s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003694 proxy_type_str(curproxy), curproxy->id);
Willy Tarreaubb925012009-07-23 13:36:36 +02003695 cfgerr++;
Willy Tarreau21d2af32008-02-14 20:25:24 +01003696 }
Willy Tarreaubce70882009-09-07 11:51:47 +02003697
Willy Tarreau0cec3312011-10-31 13:49:26 +01003698 if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003699 ha_warning("%s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003700 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau0cec3312011-10-31 13:49:26 +01003701 err_code |= ERR_WARN;
3702 }
3703
Willy Tarreauc93cd162014-05-13 15:54:22 +02003704 if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003705 ha_warning("%s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003706 proxy_type_str(curproxy), curproxy->id, newsrv->id);
Willy Tarreau82ffa392013-08-13 17:19:08 +02003707 err_code |= ERR_WARN;
3708 }
3709
Willy Tarreau29fbe512015-08-20 19:35:14 +02003710#if defined(CONFIG_HAP_TRANSPARENT)
Willy Tarreauef9a3602012-12-08 22:29:20 +01003711 if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) {
3712 newsrv->conn_src.bind_hdr_occ = 0;
Amaury Denoyelle11124302021-06-04 18:22:08 +02003713 ha_warning("%s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n",
Christopher Faulet767a84b2017-11-24 16:50:31 +01003714 proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name);
Willy Tarreaubce70882009-09-07 11:51:47 +02003715 err_code |= ERR_WARN;
3716 }
Willy Tarreauefa5f512010-03-30 20:13:29 +02003717#endif
Willy Tarreau4c183462017-01-06 12:21:38 +01003718
Willy Tarreau46deab62018-04-28 07:18:15 +02003719 if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR)
3720 curproxy->options &= ~PR_O_REUSE_MASK;
3721
Willy Tarreau21d2af32008-02-14 20:25:24 +01003722 newsrv = newsrv->next;
3723 }
3724
Christopher Fauletd7c91962015-04-30 11:48:27 +02003725 /* Check filter configuration, if any */
3726 cfgerr += flt_check(curproxy);
3727
Willy Tarreauc1a21672009-08-16 22:37:44 +02003728 if (curproxy->cap & PR_CAP_FE) {
Willy Tarreau050536d2012-10-04 08:47:34 +02003729 if (!curproxy->accept)
3730 curproxy->accept = frontend_accept;
Willy Tarreau81f9aa32010-06-01 17:45:26 +02003731
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003732 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
3733 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02003734 curproxy->fe_req_ana |= AN_REQ_INSPECT_FE;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003735
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003736 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003737 curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003738 curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003739 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003740
William Lallemandcf62f7e2018-10-26 14:47:40 +02003741 if (curproxy->mode == PR_MODE_CLI) {
3742 curproxy->fe_req_ana |= AN_REQ_WAIT_CLI;
3743 curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI;
3744 }
3745
Willy Tarreauc1a21672009-08-16 22:37:44 +02003746 /* both TCP and HTTP must check switching rules */
3747 curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003748
3749 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003750 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003751 curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3752 curproxy->fe_rsp_ana |= AN_RES_FLT_START_FE | AN_RES_FLT_XFER_DATA | AN_RES_FLT_END;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003753 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003754 }
3755
3756 if (curproxy->cap & PR_CAP_BE) {
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003757 if (!LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules) ||
3758 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_req.inspect_rules)))
Willy Tarreaufb356202010-08-03 14:02:05 +02003759 curproxy->be_req_ana |= AN_REQ_INSPECT_BE;
3760
Christopher Fauletee08d6c2021-10-13 15:40:15 +02003761 if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules) ||
3762 (curproxy->defpx && !LIST_ISEMPTY(&curproxy->defpx->tcp_rep.inspect_rules)))
Emeric Brun97679e72010-09-23 17:56:44 +02003763 curproxy->be_rsp_ana |= AN_RES_INSPECT;
3764
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003765 if (curproxy->mode == PR_MODE_HTTP) {
Willy Tarreauc1a21672009-08-16 22:37:44 +02003766 curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE;
Willy Tarreaub37c27e2009-10-18 22:53:08 +02003767 curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE;
Willy Tarreau4e5b8282009-08-16 22:57:50 +02003768 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003769
3770 /* If the backend does requires RDP cookie persistence, we have to
3771 * enable the corresponding analyser.
3772 */
3773 if (curproxy->options2 & PR_O2_RDPC_PRST)
3774 curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003775
3776 /* Add filters analyzers if needed */
Christopher Faulet443ea1a2016-02-04 13:40:26 +01003777 if (!LIST_ISEMPTY(&curproxy->filter_configs)) {
Christopher Faulet0184ea72017-01-05 14:06:34 +01003778 curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END;
3779 curproxy->be_rsp_ana |= AN_RES_FLT_START_BE | AN_RES_FLT_XFER_DATA | AN_RES_FLT_END;
Christopher Fauletd7c91962015-04-30 11:48:27 +02003780 }
Willy Tarreauc1a21672009-08-16 22:37:44 +02003781 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003782
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003783 /* Check the mux protocols, if any, for each listener and server
Christopher Fauleta717b992018-04-10 14:43:00 +02003784 * attached to the current proxy */
3785 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
3786 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003787 const struct mux_proto_list *mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003788
Willy Tarreau730cc022022-05-20 18:07:06 +02003789 if (!bind_conf->mux_proto) {
3790 /* No protocol was specified. If we're using QUIC at the transport
3791 * layer, we'll instantiate it as a mux as well. If QUIC is not
3792 * compiled in, this wil remain NULL.
3793 */
3794 if (bind_conf->xprt && bind_conf->xprt == xprt_get(XPRT_QUIC))
3795 bind_conf->mux_proto = get_mux_proto(ist("quic"));
3796 }
3797
Christopher Fauleta717b992018-04-10 14:43:00 +02003798 if (!bind_conf->mux_proto)
3799 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003800
3801 /* it is possible that an incorrect mux was referenced
3802 * due to the proxy's mode not being taken into account
3803 * on first pass. Let's adjust it now.
3804 */
3805 mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode);
3806
3807 if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003808 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n",
Christopher Fauleta717b992018-04-10 14:43:00 +02003809 proxy_type_str(curproxy), curproxy->id,
3810 (int)bind_conf->mux_proto->token.len,
3811 bind_conf->mux_proto->token.ptr,
3812 bind_conf->arg, bind_conf->file, bind_conf->line);
3813 cfgerr++;
Willy Tarreaucac619b2022-05-20 17:53:32 +02003814 } else {
3815 if ((mux_ent->mux->flags & MX_FL_FRAMED) && !(bind_conf->options & BC_O_USE_SOCK_DGRAM)) {
3816 ha_alert("%s '%s' : frame-based MUX protocol '%.*s' is incompatible with stream transport of 'bind %s' at [%s:%d].\n",
3817 proxy_type_str(curproxy), curproxy->id,
3818 (int)bind_conf->mux_proto->token.len,
3819 bind_conf->mux_proto->token.ptr,
3820 bind_conf->arg, bind_conf->file, bind_conf->line);
3821 cfgerr++;
3822 }
3823 else if (!(mux_ent->mux->flags & MX_FL_FRAMED) && !(bind_conf->options & BC_O_USE_SOCK_STREAM)) {
3824 ha_alert("%s '%s' : stream-based MUX protocol '%.*s' is incompatible with framed transport of 'bind %s' at [%s:%d].\n",
3825 proxy_type_str(curproxy), curproxy->id,
3826 (int)bind_conf->mux_proto->token.len,
3827 bind_conf->mux_proto->token.ptr,
3828 bind_conf->arg, bind_conf->file, bind_conf->line);
3829 cfgerr++;
3830 }
Christopher Fauleta717b992018-04-10 14:43:00 +02003831 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003832
3833 /* update the mux */
3834 bind_conf->mux_proto = mux_ent;
Christopher Fauleta717b992018-04-10 14:43:00 +02003835 }
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003836 for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) {
3837 int mode = (1 << (curproxy->mode == PR_MODE_HTTP));
Willy Tarreau76a551d2018-12-02 13:09:09 +01003838 const struct mux_proto_list *mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003839
3840 if (!newsrv->mux_proto)
3841 continue;
Willy Tarreau76a551d2018-12-02 13:09:09 +01003842
3843 /* it is possible that an incorrect mux was referenced
3844 * due to the proxy's mode not being taken into account
3845 * on first pass. Let's adjust it now.
3846 */
3847 mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode);
3848
3849 if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02003850 ha_alert("%s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n",
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003851 proxy_type_str(curproxy), curproxy->id,
3852 (int)newsrv->mux_proto->token.len,
3853 newsrv->mux_proto->token.ptr,
3854 newsrv->id, newsrv->conf.file, newsrv->conf.line);
3855 cfgerr++;
3856 }
Willy Tarreau76a551d2018-12-02 13:09:09 +01003857
3858 /* update the mux */
3859 newsrv->mux_proto = mux_ent;
Christopher Faulet8ed0a3e2018-04-10 14:45:45 +02003860 }
Amaury Denoyellef2c27a52021-07-23 15:46:46 +02003861
3862 /* Allocate default tcp-check rules for proxies without
3863 * explicit rules.
3864 */
3865 if (curproxy->cap & PR_CAP_BE) {
3866 if (!(curproxy->options2 & PR_O2_CHK_ANY)) {
3867 struct tcpcheck_ruleset *rs = NULL;
3868 struct tcpcheck_rules *rules = &curproxy->tcpcheck_rules;
3869
3870 curproxy->options2 |= PR_O2_TCPCHK_CHK;
3871
3872 rs = find_tcpcheck_ruleset("*tcp-check");
3873 if (!rs) {
3874 rs = create_tcpcheck_ruleset("*tcp-check");
3875 if (rs == NULL) {
3876 ha_alert("config: %s '%s': out of memory.\n",
3877 proxy_type_str(curproxy), curproxy->id);
3878 cfgerr++;
3879 }
3880 }
3881
3882 free_tcpcheck_vars(&rules->preset_vars);
3883 rules->list = &rs->rules;
3884 rules->flags = 0;
3885 }
3886 }
Willy Tarreau4cdac162021-03-05 10:48:42 +01003887 }
Willy Tarreau835daa12019-02-07 14:46:29 +01003888
Willy Tarreau4cdac162021-03-05 10:48:42 +01003889 /***********************************************************/
3890 /* At this point, target names have already been resolved. */
3891 /***********************************************************/
Willy Tarreau835daa12019-02-07 14:46:29 +01003892
Willy Tarreau4cdac162021-03-05 10:48:42 +01003893 /* we must finish to initialize certain things on the servers */
Willy Tarreau835daa12019-02-07 14:46:29 +01003894
Willy Tarreau4cdac162021-03-05 10:48:42 +01003895 list_for_each_entry(newsrv, &servers_list, global_list) {
3896 /* initialize idle conns lists */
Miroslav Zagorac8a8f2702021-06-15 15:33:20 +02003897 if (srv_init_per_thr(newsrv) == -1) {
Willy Tarreau430bf4a2021-03-04 09:45:32 +01003898 ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n",
3899 newsrv->conf.file, newsrv->conf.line, newsrv->id);
Willy Tarreau4cdac162021-03-05 10:48:42 +01003900 cfgerr++;
3901 continue;
3902 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003903
Willy Tarreau4cdac162021-03-05 10:48:42 +01003904 if (newsrv->max_idle_conns != 0) {
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003905 newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr));
3906 if (!newsrv->curr_idle_thr) {
3907 ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n",
3908 newsrv->conf.file, newsrv->conf.line, newsrv->id);
3909 cfgerr++;
3910 continue;
3911 }
Remi Tricot-Le Breton47646202021-05-19 16:40:28 +02003912
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003913 }
3914 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003915
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003916 idle_conn_task = task_new_anywhere();
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003917 if (!idle_conn_task) {
3918 ha_alert("parsing : failed to allocate global idle connection task.\n");
3919 cfgerr++;
3920 }
3921 else {
3922 idle_conn_task->process = srv_cleanup_idle_conns;
3923 idle_conn_task->context = NULL;
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003924
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003925 for (i = 0; i < global.nbthread; i++) {
Willy Tarreaubeeabf52021-10-01 18:23:30 +02003926 idle_conns[i].cleanup_task = task_new_on(i);
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003927 if (!idle_conns[i].cleanup_task) {
3928 ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i);
3929 cfgerr++;
3930 break;
Willy Tarreau4cdac162021-03-05 10:48:42 +01003931 }
Olivier Houcharddc2f2752020-02-13 19:12:07 +01003932
Amaury Denoyelle3efee652021-03-08 17:31:39 +01003933 idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns;
3934 idle_conns[i].cleanup_task->context = NULL;
3935 HA_SPIN_INIT(&idle_conns[i].idle_conns_lock);
3936 MT_LIST_INIT(&idle_conns[i].toremove_conns);
Willy Tarreau835daa12019-02-07 14:46:29 +01003937 }
Willy Tarreau419ead82014-09-16 13:41:21 +02003938 }
3939
Willy Tarreau419ead82014-09-16 13:41:21 +02003940 /* perform the final checks before creating tasks */
3941
Olivier Houchardfbc74e82017-11-24 16:54:05 +01003942 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Willy Tarreau419ead82014-09-16 13:41:21 +02003943 struct listener *listener;
3944 unsigned int next_id;
Willy Tarreauc1a21672009-08-16 22:37:44 +02003945
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003946 /* Configure SSL for each bind line.
3947 * Note: if configuration fails at some point, the ->ctx member
3948 * remains NULL so that listeners can later detach.
3949 */
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003950 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau55d37912016-12-21 23:38:39 +01003951 if (bind_conf->xprt->prepare_bind_conf &&
3952 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003953 cfgerr++;
Willy Tarreau2a65ff02012-09-13 17:54:29 +02003954 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02003955
Willy Tarreaue6b98942007-10-29 01:09:36 +01003956 /* adjust this proxy's listeners */
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003957 next_id = 1;
Willy Tarreau4348fad2012-09-20 16:48:07 +02003958 list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) {
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003959 if (!listener->luid) {
3960 /* listener ID not set, use automatic numbering with first
3961 * spare entry starting with next_luid.
3962 */
3963 next_id = get_next_id(&curproxy->conf.used_listener_id, next_id);
3964 listener->conf.id.key = listener->luid = next_id;
3965 eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id);
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003966 }
Krzysztof Piotr Oledzkidf5cb9f2010-02-05 20:58:27 +01003967 next_id++;
Willy Tarreau53fb4ae2009-10-04 23:04:08 +02003968
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003969 /* enable separate counters */
3970 if (curproxy->options2 & PR_O2_SOCKSTAT) {
Willy Tarreauae9bea02016-11-25 14:44:52 +01003971 listener->counters = calloc(1, sizeof(*listener->counters));
Willy Tarreau19d14ef2012-10-29 16:51:55 +01003972 if (!listener->name)
3973 memprintf(&listener->name, "sock-%d", listener->luid);
Krzysztof Piotr Oledzkiaeebf9b2009-10-04 15:43:17 +02003974 }
Willy Tarreau81796be2012-09-22 19:11:47 +02003975
Willy Tarreaue6b98942007-10-29 01:09:36 +01003976 if (curproxy->options & PR_O_TCP_NOLING)
3977 listener->options |= LI_O_NOLINGER;
Willy Tarreau16a21472012-11-19 12:39:59 +01003978 if (!listener->maxaccept)
Willy Tarreau66161322021-02-19 15:50:27 +01003979 listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT;
Willy Tarreau16a21472012-11-19 12:39:59 +01003980
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01003981 /* listener accept callback */
3982 listener->accept = session_accept_fd;
3983#ifdef USE_QUIC
3984 /* override the accept callback for QUIC listeners. */
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01003985 if (listener->flags & LI_F_QUIC_LISTENER) {
Frédéric Lécaille372508c2022-05-06 08:53:16 +02003986 if (!global.cluster_secret)
3987 diag_no_cluster_secret = 1;
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01003988 listener->accept = quic_session_accept;
Amaury Denoyellef68b2cb2022-01-25 16:21:47 +01003989 li_init_per_thr(listener);
3990 }
Amaury Denoyelleb59b8892022-01-25 17:48:47 +01003991#endif
Amaury Denoyelle57af0692022-01-18 15:39:02 +01003992
Willy Tarreauc1a21672009-08-16 22:37:44 +02003993 listener->analysers |= curproxy->fe_req_ana;
Willy Tarreau10b688f2015-03-13 16:43:12 +01003994 listener->default_target = curproxy->default_target;
Willy Tarreau3bc13772008-12-07 11:50:35 +01003995
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003996 if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules))
Willy Tarreau7d9736f2016-10-21 16:34:21 +02003997 listener->options |= LI_O_TCP_L4_RULES;
Willy Tarreaua5c0ab22010-05-31 10:30:33 +02003998
Willy Tarreau620408f2016-10-21 16:37:51 +02003999 if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules))
4000 listener->options |= LI_O_TCP_L5_RULES;
4001
Willy Tarreau9ea05a72009-06-14 12:07:01 +02004002 /* smart accept mode is automatic in HTTP mode */
4003 if ((curproxy->options2 & PR_O2_SMARTACC) ||
Willy Tarreau11ba4042022-05-20 15:56:32 +02004004 ((curproxy->mode == PR_MODE_HTTP || (listener->bind_conf->options & BC_O_USE_SSL)) &&
Willy Tarreau9ea05a72009-06-14 12:07:01 +02004005 !(curproxy->no_options2 & PR_O2_SMARTACC)))
4006 listener->options |= LI_O_NOQUICKACK;
Willy Tarreaue6b98942007-10-29 01:09:36 +01004007 }
4008
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004009 /* Release unused SSL configs */
4010 list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) {
Willy Tarreau11ba4042022-05-20 15:56:32 +02004011 if (!(bind_conf->options & BC_O_USE_SSL) && bind_conf->xprt->destroy_bind_conf)
Willy Tarreau795cdab2016-12-22 17:30:54 +01004012 bind_conf->xprt->destroy_bind_conf(bind_conf);
Willy Tarreau2a65ff02012-09-13 17:54:29 +02004013 }
Willy Tarreauf5ae8f72012-09-07 16:58:00 +02004014
Willy Tarreau918ff602011-07-25 16:33:49 +02004015 /* create the task associated with the proxy */
Willy Tarreaubeeabf52021-10-01 18:23:30 +02004016 curproxy->task = task_new_anywhere();
Willy Tarreau918ff602011-07-25 16:33:49 +02004017 if (curproxy->task) {
4018 curproxy->task->context = curproxy;
4019 curproxy->task->process = manage_proxy;
Christopher Faulet56717802021-10-13 10:10:09 +02004020 curproxy->flags |= PR_FL_READY;
Willy Tarreau918ff602011-07-25 16:33:49 +02004021 } else {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004022 ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n",
4023 curproxy->id);
Willy Tarreau918ff602011-07-25 16:33:49 +02004024 cfgerr++;
4025 }
Willy Tarreaub369a042014-09-16 13:21:03 +02004026 }
4027
Frédéric Lécaille372508c2022-05-06 08:53:16 +02004028 if (diag_no_cluster_secret)
Frédéric Lécaillead20a562022-05-16 16:51:41 +02004029 ha_diag_warning("No cluster secret was set. The stateless reset and Retry"
4030 " features are disabled for all QUIC bindings.\n");
Frédéric Lécaille372508c2022-05-06 08:53:16 +02004031
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004032 /*
4033 * Recount currently required checks.
4034 */
4035
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004036 for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) {
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004037 int optnum;
4038
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004039 for (optnum = 0; cfg_opts[optnum].name; optnum++)
4040 if (curproxy->options & cfg_opts[optnum].val)
4041 global.last_checks |= cfg_opts[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004042
Willy Tarreau66aa61f2009-01-18 21:44:07 +01004043 for (optnum = 0; cfg_opts2[optnum].name; optnum++)
4044 if (curproxy->options2 & cfg_opts2[optnum].val)
4045 global.last_checks |= cfg_opts2[optnum].checks;
Krzysztof Oledzki336d4752007-12-25 02:40:22 +01004046 }
4047
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004048 if (cfg_peers) {
4049 struct peers *curpeers = cfg_peers, **last;
Willy Tarreau122541c2011-09-07 21:24:49 +02004050 struct peer *p, *pb;
4051
Willy Tarreau1e273012015-05-01 19:15:17 +02004052 /* Remove all peers sections which don't have a valid listener,
4053 * which are not used by any table, or which are bound to more
4054 * than one process.
Willy Tarreau122541c2011-09-07 21:24:49 +02004055 */
Frédéric Lécailleed2b4a62017-07-13 09:07:09 +02004056 last = &cfg_peers;
Willy Tarreau122541c2011-09-07 21:24:49 +02004057 while (*last) {
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004058 struct stktable *t;
Willy Tarreau122541c2011-09-07 21:24:49 +02004059 curpeers = *last;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004060
Willy Tarreau1ad64ac2020-09-24 08:48:08 +02004061 if (curpeers->disabled) {
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004062 /* the "disabled" keyword was present */
4063 if (curpeers->peers_fe)
4064 stop_proxy(curpeers->peers_fe);
4065 curpeers->peers_fe = NULL;
4066 }
Frédéric Lécaille5a4fe5a2019-10-04 08:30:04 +02004067 else if (!curpeers->peers_fe || !curpeers->peers_fe->id) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004068 ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n",
4069 curpeers->id, localpeer);
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004070 if (curpeers->peers_fe)
4071 stop_proxy(curpeers->peers_fe);
4072 curpeers->peers_fe = NULL;
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004073 }
4074 else {
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004075 /* Initializes the transport layer of the server part of all the peers belonging to
4076 * <curpeers> section if required.
4077 * Note that ->srv is used by the local peer of a new process to connect to the local peer
4078 * of an old process.
4079 */
Christopher Faulet56717802021-10-13 10:10:09 +02004080 curpeers->peers_fe->flags |= PR_FL_READY;
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004081 p = curpeers->remote;
4082 while (p) {
Frédéric Lécaille355b2032019-01-11 14:06:12 +01004083 if (p->srv) {
Christopher Fauletf61f33a2020-03-27 18:55:49 +01004084 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 +01004085 cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv);
4086 }
Frédéric Lécaille1055e682018-04-26 14:35:21 +02004087 p = p->next;
4088 }
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004089 /* Configure the SSL bindings of the local peer if required. */
4090 if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) {
4091 struct list *l;
4092 struct bind_conf *bind_conf;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004093 struct listener *li;
4094 unsigned long mask;
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004095
4096 l = &curpeers->peers_fe->conf.bind;
4097 bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe);
Willy Tarreaud2494e02022-07-05 16:00:56 +02004098
4099 err = NULL;
4100 if (thread_resolve_group_mask(bind_conf->bind_tgroup, bind_conf->bind_thread,
4101 &bind_conf->bind_tgroup, &bind_conf->bind_thread, &err) < 0) {
4102 ha_alert("Peers section '%s': %s in 'bind %s' at [%s:%d].\n",
4103 curpeers->peers_fe->id, err, bind_conf->arg, bind_conf->file, bind_conf->line);
4104 free(err);
4105 cfgerr++;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004106 } else if (!((mask = bind_conf->bind_thread) & ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled)) {
Willy Tarreaud2494e02022-07-05 16:00:56 +02004107 unsigned long new_mask = 0;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004108 ulong thr_mask = ha_tgroup_info[bind_conf->bind_tgroup-1].threads_enabled;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004109
4110 while (mask) {
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004111 new_mask |= mask & thr_mask;
4112 mask >>= ha_tgroup_info[bind_conf->bind_tgroup-1].count;
Willy Tarreaud2494e02022-07-05 16:00:56 +02004113 }
4114
4115 bind_conf->bind_thread = new_mask;
Willy Tarreaud0b73bc2022-06-28 08:30:43 +02004116 ha_warning("Peers section '%s': the thread range specified on the 'thread' directive of 'bind %s' at [%s:%d] only refers to thread numbers out of the range supported by thread group %d (%d). The thread numbers were remapped to existing threads instead (mask 0x%lx).\n",
4117 curpeers->peers_fe->id, bind_conf->arg, bind_conf->file, bind_conf->line,
4118 bind_conf->bind_tgroup, ha_tgroup_info[bind_conf->bind_tgroup-1].count, new_mask);
Willy Tarreaud2494e02022-07-05 16:00:56 +02004119 }
4120
4121 /* apply thread masks and groups to all receivers */
4122 list_for_each_entry(li, &bind_conf->listeners, by_bind) {
4123 li->rx.bind_thread = bind_conf->bind_thread;
4124 li->rx.bind_tgroup = bind_conf->bind_tgroup;
4125 }
4126
Frédéric Lécaille76d2cef2019-02-12 19:12:32 +01004127 if (bind_conf->xprt->prepare_bind_conf &&
4128 bind_conf->xprt->prepare_bind_conf(bind_conf) < 0)
4129 cfgerr++;
4130 }
Frédéric Lécaille8d78fa72019-05-20 18:22:52 +02004131 if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) {
Willy Tarreaud9443442018-10-15 11:18:03 +02004132 ha_alert("Peers section '%s': out of memory, giving up on peers.\n",
4133 curpeers->id);
4134 cfgerr++;
4135 break;
4136 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004137 last = &curpeers->next;
4138 continue;
4139 }
4140
Willy Tarreau77e4bd12015-05-01 20:02:17 +02004141 /* clean what has been detected above */
Willy Tarreau122541c2011-09-07 21:24:49 +02004142 p = curpeers->remote;
4143 while (p) {
4144 pb = p->next;
4145 free(p->id);
4146 free(p);
4147 p = pb;
4148 }
4149
4150 /* Destroy and unlink this curpeers section.
4151 * Note: curpeers is backed up into *last.
4152 */
4153 free(curpeers->id);
4154 curpeers = curpeers->next;
Frédéric Lécaille87eacbb2020-03-24 20:08:30 +01004155 /* Reset any refereance to this peers section in the list of stick-tables */
4156 for (t = stktables_list; t; t = t->next) {
4157 if (t->peers.p && t->peers.p == *last)
4158 t->peers.p = NULL;
4159 }
Willy Tarreau122541c2011-09-07 21:24:49 +02004160 free(*last);
4161 *last = curpeers;
4162 }
4163 }
4164
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004165 for (t = stktables_list; t; t = t->next) {
4166 if (t->proxy)
4167 continue;
4168 if (!stktable_init(t)) {
4169 ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id);
4170 cfgerr++;
4171 }
4172 }
4173
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004174 /* initialize stick-tables on backend capable proxies. This must not
4175 * be done earlier because the data size may be discovered while parsing
4176 * other proxies.
4177 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004178 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Christopher Fauletdfd10ab2021-10-06 14:24:19 +02004179 if ((curproxy->flags & PR_FL_DISABLED) || !curproxy->table)
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004180 continue;
4181
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01004182 if (!stktable_init(curproxy->table)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004183 ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id);
Willy Tarreau6866f3f2015-05-01 19:09:08 +02004184 cfgerr++;
4185 }
4186 }
4187
Simon Horman0d16a402015-01-30 11:22:58 +09004188 if (mailers) {
4189 struct mailers *curmailers = mailers, **last;
4190 struct mailer *m, *mb;
4191
4192 /* Remove all mailers sections which don't have a valid listener.
4193 * This can happen when a mailers section is never referenced.
4194 */
4195 last = &mailers;
4196 while (*last) {
4197 curmailers = *last;
4198 if (curmailers->users) {
4199 last = &curmailers->next;
4200 continue;
4201 }
4202
Christopher Faulet767a84b2017-11-24 16:50:31 +01004203 ha_warning("Removing incomplete section 'mailers %s'.\n",
4204 curmailers->id);
Simon Horman0d16a402015-01-30 11:22:58 +09004205
4206 m = curmailers->mailer_list;
4207 while (m) {
4208 mb = m->next;
4209 free(m->id);
4210 free(m);
4211 m = mb;
4212 }
4213
4214 /* Destroy and unlink this curmailers section.
4215 * Note: curmailers is backed up into *last.
4216 */
4217 free(curmailers->id);
4218 curmailers = curmailers->next;
4219 free(*last);
4220 *last = curmailers;
4221 }
4222 }
4223
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004224 /* Update server_state_file_name to backend name if backend is supposed to use
4225 * a server-state file locally defined and none has been provided */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01004226 for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) {
Baptiste Assmanne11cfcd2015-08-19 16:44:03 +02004227 if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL &&
4228 curproxy->server_state_file_name == NULL)
4229 curproxy->server_state_file_name = strdup(curproxy->id);
4230 }
4231
Emeric Brun750fe792020-12-23 16:51:12 +01004232 list_for_each_entry(curr_resolvers, &sec_resolvers, list) {
Ben Draut054fbee2018-04-13 15:43:04 -06004233 if (LIST_ISEMPTY(&curr_resolvers->nameservers)) {
Amaury Denoyelle11124302021-06-04 18:22:08 +02004234 ha_warning("resolvers '%s' [%s:%d] has no nameservers configured!\n",
Ben Draut054fbee2018-04-13 15:43:04 -06004235 curr_resolvers->id, curr_resolvers->conf.file,
4236 curr_resolvers->conf.line);
4237 err_code |= ERR_WARN;
4238 }
4239 }
4240
William Lallemand48b4bb42017-10-23 14:36:34 +02004241 list_for_each_entry(postparser, &postparsers, list) {
4242 if (postparser->func)
4243 cfgerr += postparser->func();
4244 }
4245
Willy Tarreaubb925012009-07-23 13:36:36 +02004246 if (cfgerr > 0)
4247 err_code |= ERR_ALERT | ERR_FATAL;
4248 out:
4249 return err_code;
Willy Tarreaubaaee002006-06-26 02:48:02 +02004250}
4251
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004252/*
4253 * Registers the CFG keyword list <kwl> as a list of valid keywords for next
4254 * parsing sessions.
4255 */
4256void cfg_register_keywords(struct cfg_kw_list *kwl)
4257{
Willy Tarreau2b718102021-04-21 07:32:39 +02004258 LIST_APPEND(&cfg_keywords.list, &kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004259}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004260
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004261/*
4262 * Unregisters the CFG keyword list <kwl> from the list of valid keywords.
4263 */
4264void cfg_unregister_keywords(struct cfg_kw_list *kwl)
4265{
Willy Tarreau2b718102021-04-21 07:32:39 +02004266 LIST_DELETE(&kwl->list);
Willy Tarreau5b2c3362008-07-09 19:39:06 +02004267 LIST_INIT(&kwl->list);
4268}
Willy Tarreaubaaee002006-06-26 02:48:02 +02004269
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004270/* this function register new section in the haproxy configuration file.
4271 * <section_name> is the name of this new section and <section_parser>
4272 * is the called parser. If two section declaration have the same name,
4273 * only the first declared is used.
4274 */
4275int cfg_register_section(char *section_name,
William Lallemandd2ff56d2017-10-16 11:06:50 +02004276 int (*section_parser)(const char *, int, char **, int),
4277 int (*post_section_parser)())
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004278{
4279 struct cfg_section *cs;
4280
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004281 list_for_each_entry(cs, &sections, list) {
4282 if (strcmp(cs->section_name, section_name) == 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004283 ha_alert("register section '%s': already registered.\n", section_name);
Willy Tarreau5e4261b2016-05-17 16:16:09 +02004284 return 0;
4285 }
4286 }
4287
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004288 cs = calloc(1, sizeof(*cs));
4289 if (!cs) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004290 ha_alert("register section '%s': out of memory.\n", section_name);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004291 return 0;
4292 }
4293
4294 cs->section_name = section_name;
4295 cs->section_parser = section_parser;
William Lallemandd2ff56d2017-10-16 11:06:50 +02004296 cs->post_section_parser = post_section_parser;
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004297
Willy Tarreau2b718102021-04-21 07:32:39 +02004298 LIST_APPEND(&sections, &cs->list);
Thierry FOURNIERfa45f1d2014-03-18 13:54:18 +01004299
4300 return 1;
4301}
4302
William Lallemand48b4bb42017-10-23 14:36:34 +02004303/* this function register a new function which will be called once the haproxy
4304 * configuration file has been parsed. It's useful to check dependencies
4305 * between sections or to resolve items once everything is parsed.
4306 */
4307int cfg_register_postparser(char *name, int (*func)())
4308{
4309 struct cfg_postparser *cp;
4310
4311 cp = calloc(1, sizeof(*cp));
4312 if (!cp) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01004313 ha_alert("register postparser '%s': out of memory.\n", name);
William Lallemand48b4bb42017-10-23 14:36:34 +02004314 return 0;
4315 }
4316 cp->name = name;
4317 cp->func = func;
4318
Willy Tarreau2b718102021-04-21 07:32:39 +02004319 LIST_APPEND(&postparsers, &cp->list);
William Lallemand48b4bb42017-10-23 14:36:34 +02004320
4321 return 1;
4322}
4323
Willy Tarreaubaaee002006-06-26 02:48:02 +02004324/*
David Carlier845efb52015-09-25 11:49:18 +01004325 * free all config section entries
4326 */
4327void cfg_unregister_sections(void)
4328{
4329 struct cfg_section *cs, *ics;
4330
4331 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004332 LIST_DELETE(&cs->list);
David Carlier845efb52015-09-25 11:49:18 +01004333 free(cs);
4334 }
4335}
4336
Christopher Faulet7110b402016-10-26 11:09:44 +02004337void cfg_backup_sections(struct list *backup_sections)
4338{
4339 struct cfg_section *cs, *ics;
4340
4341 list_for_each_entry_safe(cs, ics, &sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004342 LIST_DELETE(&cs->list);
4343 LIST_APPEND(backup_sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004344 }
4345}
4346
4347void cfg_restore_sections(struct list *backup_sections)
4348{
4349 struct cfg_section *cs, *ics;
4350
4351 list_for_each_entry_safe(cs, ics, backup_sections, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02004352 LIST_DELETE(&cs->list);
4353 LIST_APPEND(&sections, &cs->list);
Christopher Faulet7110b402016-10-26 11:09:44 +02004354 }
4355}
4356
Willy Tarreauca1acd62022-03-29 15:02:44 +02004357/* dumps all registered keywords by section on stdout */
4358void cfg_dump_registered_keywords()
4359{
4360 const char* sect_names[] = { "", "global", "listen", "userlist", "peers", 0 };
4361 int section;
4362 int index;
4363
4364 for (section = 1; sect_names[section]; section++) {
4365 struct cfg_kw_list *kwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004366 const struct cfg_keyword *kwp, *kwn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004367
4368 printf("%s\n", sect_names[section]);
Willy Tarreaud9058262022-03-30 11:21:32 +02004369
4370 for (kwn = kwp = NULL;; kwp = kwn) {
4371 list_for_each_entry(kwl, &cfg_keywords.list, list) {
4372 for (index = 0; kwl->kw[index].kw != NULL; index++)
4373 if (kwl->kw[index].section == section &&
4374 strordered(kwp ? kwp->kw : NULL, kwl->kw[index].kw, kwn != kwp ? kwn->kw : NULL))
4375 kwn = &kwl->kw[index];
4376 }
4377 if (kwn == kwp)
4378 break;
4379 printf("\t%s\n", kwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004380 }
4381
4382 if (section == CFG_LISTEN) {
4383 /* there are plenty of other keywords there */
4384 extern struct list tcp_req_conn_keywords, tcp_req_sess_keywords,
4385 tcp_req_cont_keywords, tcp_res_cont_keywords;
4386 extern struct bind_kw_list bind_keywords;
4387 extern struct ssl_bind_kw ssl_bind_kws[] __maybe_unused;
4388 extern struct srv_kw_list srv_keywords;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004389 struct bind_kw_list *bkwl;
4390 struct srv_kw_list *skwl;
Willy Tarreaud9058262022-03-30 11:21:32 +02004391 const struct bind_kw *bkwp, *bkwn;
4392 const struct srv_kw *skwp, *skwn;
4393 const struct ssl_bind_kw *sbkwp __maybe_unused, *sbkwn __maybe_unused;
4394 const struct cfg_opt *coptp, *coptn;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004395
Willy Tarreaud9058262022-03-30 11:21:32 +02004396 for (bkwn = bkwp = NULL;; bkwp = bkwn) {
4397 list_for_each_entry(bkwl, &bind_keywords.list, list) {
4398 for (index = 0; bkwl->kw[index].kw != NULL; index++)
4399 if (strordered(bkwp ? bkwp->kw : NULL,
4400 bkwl->kw[index].kw,
4401 bkwn != bkwp ? bkwn->kw : NULL))
4402 bkwn = &bkwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004403 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004404 if (bkwn == bkwp)
4405 break;
4406
4407 if (!bkwn->skip)
4408 printf("\tbind <addr> %s\n", bkwn->kw);
4409 else
4410 printf("\tbind <addr> %s +%d\n", bkwn->kw, bkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004411 }
4412
4413#if defined(USE_OPENSSL)
Willy Tarreaud9058262022-03-30 11:21:32 +02004414 for (sbkwn = sbkwp = NULL;; sbkwp = sbkwn) {
4415 for (index = 0; ssl_bind_kws[index].kw != NULL; index++) {
4416 if (strordered(sbkwp ? sbkwp->kw : NULL,
4417 ssl_bind_kws[index].kw,
4418 sbkwn != sbkwp ? sbkwn->kw : NULL))
4419 sbkwn = &ssl_bind_kws[index];
4420 }
4421 if (sbkwn == sbkwp)
4422 break;
4423 if (!sbkwn->skip)
4424 printf("\tbind <addr> ssl %s\n", sbkwn->kw);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004425 else
Willy Tarreaud9058262022-03-30 11:21:32 +02004426 printf("\tbind <addr> ssl %s +%d\n", sbkwn->kw, sbkwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004427 }
4428#endif
4429
Willy Tarreaud9058262022-03-30 11:21:32 +02004430 for (skwn = skwp = NULL;; skwp = skwn) {
4431 list_for_each_entry(skwl, &srv_keywords.list, list) {
4432 for (index = 0; skwl->kw[index].kw != NULL; index++)
4433 if (strordered(skwp ? skwp->kw : NULL,
4434 skwl->kw[index].kw,
4435 skwn != skwp ? skwn->kw : NULL))
4436 skwn = &skwl->kw[index];
Willy Tarreauca1acd62022-03-29 15:02:44 +02004437 }
Willy Tarreaud9058262022-03-30 11:21:32 +02004438 if (skwn == skwp)
4439 break;
Willy Tarreauca1acd62022-03-29 15:02:44 +02004440
Willy Tarreaud9058262022-03-30 11:21:32 +02004441 if (!skwn->skip)
4442 printf("\tserver <name> <addr> %s\n", skwn->kw);
4443 else
4444 printf("\tserver <name> <addr> %s +%d\n", skwn->kw, skwn->skip);
Willy Tarreauca1acd62022-03-29 15:02:44 +02004445 }
4446
Willy Tarreaud9058262022-03-30 11:21:32 +02004447 for (coptn = coptp = NULL;; coptp = coptn) {
4448 for (index = 0; cfg_opts[index].name; index++)
4449 if (strordered(coptp ? coptp->name : NULL,
4450 cfg_opts[index].name,
4451 coptn != coptp ? coptn->name : NULL))
4452 coptn = &cfg_opts[index];
4453
4454 for (index = 0; cfg_opts2[index].name; index++)
4455 if (strordered(coptp ? coptp->name : NULL,
4456 cfg_opts2[index].name,
4457 coptn != coptp ? coptn->name : NULL))
4458 coptn = &cfg_opts2[index];
4459 if (coptn == coptp)
4460 break;
4461
4462 printf("\toption %s [ ", coptn->name);
4463 if (coptn->cap & PR_CAP_FE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004464 printf("FE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004465 if (coptn->cap & PR_CAP_BE)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004466 printf("BE ");
Willy Tarreaud9058262022-03-30 11:21:32 +02004467 if (coptn->mode == PR_MODE_HTTP)
Willy Tarreauca1acd62022-03-29 15:02:44 +02004468 printf("HTTP ");
4469 printf("]\n");
4470 }
4471
Willy Tarreaud9058262022-03-30 11:21:32 +02004472 dump_act_rules(&tcp_req_conn_keywords, "\ttcp-request connection ");
4473 dump_act_rules(&tcp_req_sess_keywords, "\ttcp-request session ");
4474 dump_act_rules(&tcp_req_cont_keywords, "\ttcp-request content ");
4475 dump_act_rules(&tcp_res_cont_keywords, "\ttcp-response content ");
4476 dump_act_rules(&http_req_keywords.list, "\thttp-request ");
4477 dump_act_rules(&http_res_keywords.list, "\thttp-response ");
4478 dump_act_rules(&http_after_res_keywords.list, "\thttp-after-response ");
Willy Tarreauca1acd62022-03-29 15:02:44 +02004479 }
4480 }
4481}
4482
Willy Tarreaue6552512018-11-26 11:33:13 +01004483/* these are the config sections handled by default */
4484REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL);
4485REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL);
4486REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL);
4487REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL);
4488REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL);
4489REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL);
4490REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL);
4491REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL);
4492REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL);
Willy Tarreau659fbf02016-05-26 17:55:28 +02004493
Willy Tarreau8a022d52021-04-27 20:29:11 +02004494static struct cfg_kw_list cfg_kws = {{ },{
4495 { CFG_GLOBAL, "default-path", cfg_parse_global_def_path },
4496 { /* END */ }
4497}};
4498
4499INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
4500
David Carlier845efb52015-09-25 11:49:18 +01004501/*
Willy Tarreaubaaee002006-06-26 02:48:02 +02004502 * Local variables:
4503 * c-indent-level: 8
4504 * c-basic-offset: 8
4505 * End:
4506 */