Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Configuration parser |
| 3 | * |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 4 | * Copyright 2000-2011 Willy Tarreau <w@1wt.eu> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 5 | * |
| 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 Tarreau | e36b38e | 2022-08-07 16:55:07 +0200 | [diff] [blame] | 13 | /* This is to have crypt() and sched_setaffinity() defined on Linux */ |
Cyril Bonté | 1a0191d | 2014-08-29 20:20:02 +0200 | [diff] [blame] | 14 | #define _GNU_SOURCE |
| 15 | |
Willy Tarreau | e36b38e | 2022-08-07 16:55:07 +0200 | [diff] [blame] | 16 | #ifdef USE_LIBCRYPT |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 17 | #ifdef USE_CRYPT_H |
Cyril Bonté | 1a0191d | 2014-08-29 20:20:02 +0200 | [diff] [blame] | 18 | /* some platforms such as Solaris need this */ |
| 19 | #include <crypt.h> |
| 20 | #endif |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 21 | #endif /* USE_LIBCRYPT */ |
Cyril Bonté | 1a0191d | 2014-08-29 20:20:02 +0200 | [diff] [blame] | 22 | |
Amaury Denoyelle | b56a7c8 | 2021-03-26 18:20:47 +0100 | [diff] [blame] | 23 | #include <dirent.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 24 | #include <stdio.h> |
| 25 | #include <stdlib.h> |
| 26 | #include <string.h> |
| 27 | #include <netdb.h> |
| 28 | #include <ctype.h> |
Willy Tarreau | 95c20ac | 2007-03-25 15:39:23 +0200 | [diff] [blame] | 29 | #include <pwd.h> |
| 30 | #include <grp.h> |
Willy Tarreau | 0b4ed90 | 2007-03-26 00:18:40 +0200 | [diff] [blame] | 31 | #include <errno.h> |
Willy Tarreau | e36b38e | 2022-08-07 16:55:07 +0200 | [diff] [blame] | 32 | #ifdef USE_CPU_AFFINITY |
| 33 | #include <sched.h> |
| 34 | #endif |
Willy Tarreau | 3f49b30 | 2007-06-11 00:29:26 +0200 | [diff] [blame] | 35 | #include <sys/types.h> |
| 36 | #include <sys/stat.h> |
| 37 | #include <fcntl.h> |
| 38 | #include <unistd.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 39 | |
Willy Tarreau | dcc048a | 2020-06-04 19:11:43 +0200 | [diff] [blame] | 40 | #include <haproxy/acl.h> |
Christopher Faulet | 42c6cf9 | 2021-03-25 17:19:04 +0100 | [diff] [blame] | 41 | #include <haproxy/action.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 42 | #include <haproxy/api.h> |
Willy Tarreau | 732525f | 2021-05-06 15:49:04 +0200 | [diff] [blame] | 43 | #include <haproxy/arg.h> |
Willy Tarreau | ac13aea | 2020-06-04 10:36:03 +0200 | [diff] [blame] | 44 | #include <haproxy/auth.h> |
Willy Tarreau | 4980160 | 2020-06-04 22:50:02 +0200 | [diff] [blame] | 45 | #include <haproxy/backend.h> |
Willy Tarreau | 278161c | 2020-06-04 11:18:28 +0200 | [diff] [blame] | 46 | #include <haproxy/capture.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 47 | #include <haproxy/cfgparse.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 48 | #include <haproxy/channel.h> |
Willy Tarreau | 4aa573d | 2020-06-04 18:21:56 +0200 | [diff] [blame] | 49 | #include <haproxy/check.h> |
Willy Tarreau | c13ed53 | 2020-06-02 10:22:45 +0200 | [diff] [blame] | 50 | #include <haproxy/chunk.h> |
Amaury Denoyelle | a6f9c5d | 2021-04-23 16:58:08 +0200 | [diff] [blame] | 51 | #ifdef USE_CPU_AFFINITY |
Amaury Denoyelle | c90932b | 2021-04-14 16:16:03 +0200 | [diff] [blame] | 52 | #include <haproxy/cpuset.h> |
Amaury Denoyelle | a6f9c5d | 2021-04-23 16:58:08 +0200 | [diff] [blame] | 53 | #endif |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 54 | #include <haproxy/connection.h> |
Willy Tarreau | 8d36697 | 2020-05-27 16:10:29 +0200 | [diff] [blame] | 55 | #include <haproxy/errors.h> |
Willy Tarreau | c7babd8 | 2020-06-04 21:29:29 +0200 | [diff] [blame] | 56 | #include <haproxy/filters.h> |
Willy Tarreau | 762d7a5 | 2020-06-04 11:23:07 +0200 | [diff] [blame] | 57 | #include <haproxy/frontend.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 58 | #include <haproxy/global.h> |
Willy Tarreau | c2b1ff0 | 2020-06-04 21:21:03 +0200 | [diff] [blame] | 59 | #include <haproxy/http_ana.h> |
Willy Tarreau | c761f84 | 2020-06-04 11:40:28 +0200 | [diff] [blame] | 60 | #include <haproxy/http_rules.h> |
Willy Tarreau | fbe8da3 | 2020-06-04 14:34:27 +0200 | [diff] [blame] | 61 | #include <haproxy/lb_chash.h> |
Willy Tarreau | b5fc3bf | 2020-06-04 14:37:38 +0200 | [diff] [blame] | 62 | #include <haproxy/lb_fas.h> |
Willy Tarreau | 0254941 | 2020-06-04 14:41:04 +0200 | [diff] [blame] | 63 | #include <haproxy/lb_fwlc.h> |
Willy Tarreau | 546ba42 | 2020-06-04 14:45:03 +0200 | [diff] [blame] | 64 | #include <haproxy/lb_fwrr.h> |
Willy Tarreau | 2867159 | 2020-06-04 20:22:59 +0200 | [diff] [blame] | 65 | #include <haproxy/lb_map.h> |
Willy Tarreau | 213e990 | 2020-06-04 14:58:24 +0200 | [diff] [blame] | 66 | #include <haproxy/listener.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 67 | #include <haproxy/log.h> |
Willy Tarreau | cee013e | 2020-06-05 11:40:38 +0200 | [diff] [blame] | 68 | #include <haproxy/mailers.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 69 | #include <haproxy/namespace.h> |
Willy Tarreau | 8efbdfb | 2020-06-04 11:29:21 +0200 | [diff] [blame] | 70 | #include <haproxy/obj_type-t.h> |
Willy Tarreau | 3c2a7c2 | 2020-06-04 18:38:21 +0200 | [diff] [blame] | 71 | #include <haproxy/peers-t.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 72 | #include <haproxy/peers.h> |
Willy Tarreau | d0ef439 | 2020-06-02 09:38:52 +0200 | [diff] [blame] | 73 | #include <haproxy/pool.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 74 | #include <haproxy/protocol.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 75 | #include <haproxy/proxy.h> |
Emeric Brun | c943799 | 2021-02-12 19:42:55 +0100 | [diff] [blame] | 76 | #include <haproxy/resolvers.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 77 | #include <haproxy/sample.h> |
| 78 | #include <haproxy/server.h> |
Willy Tarreau | 48d25b3 | 2020-06-04 18:58:52 +0200 | [diff] [blame] | 79 | #include <haproxy/session.h> |
Willy Tarreau | 2eec9b5 | 2020-06-04 19:58:55 +0200 | [diff] [blame] | 80 | #include <haproxy/stats-t.h> |
Willy Tarreau | 872f2ea | 2020-06-04 18:46:44 +0200 | [diff] [blame] | 81 | #include <haproxy/stick_table.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 82 | #include <haproxy/stream.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 83 | #include <haproxy/task.h> |
Willy Tarreau | 8b550af | 2020-06-04 17:42:48 +0200 | [diff] [blame] | 84 | #include <haproxy/tcp_rules.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 85 | #include <haproxy/thread.h> |
| 86 | #include <haproxy/time.h> |
| 87 | #include <haproxy/tools.h> |
| 88 | #include <haproxy/uri_auth-t.h> |
Frédéric Lécaille | 884f2e9 | 2020-11-23 14:23:21 +0100 | [diff] [blame] | 89 | #include <haproxy/xprt_quic.h> |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 90 | |
| 91 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 92 | /* Used to chain configuration sections definitions. This list |
| 93 | * stores struct cfg_section |
| 94 | */ |
| 95 | struct list sections = LIST_HEAD_INIT(sections); |
| 96 | |
William Lallemand | 48b4bb4 | 2017-10-23 14:36:34 +0200 | [diff] [blame] | 97 | struct list postparsers = LIST_HEAD_INIT(postparsers); |
| 98 | |
Eric Salama | 1b8dacc | 2021-03-16 15:12:17 +0100 | [diff] [blame] | 99 | extern struct proxy *mworker_proxy; |
| 100 | |
Willy Tarreau | 3a1f5fd | 2018-11-11 15:40:36 +0100 | [diff] [blame] | 101 | char *cursection = NULL; |
Willy Tarreau | c8d5b95 | 2019-02-27 17:25:52 +0100 | [diff] [blame] | 102 | int cfg_maxpconn = 0; /* # of simultaneous connections per proxy (-N) */ |
Willy Tarreau | 5af24ef | 2009-03-15 15:23:16 +0100 | [diff] [blame] | 103 | int cfg_maxconn = 0; /* # of simultaneous connections, (-n) */ |
Christopher Faulet | 79bdef3 | 2016-11-04 22:36:15 +0100 | [diff] [blame] | 104 | char *cfg_scope = NULL; /* the current scope during the configuration parsing */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 105 | |
Willy Tarreau | 8a022d5 | 2021-04-27 20:29:11 +0200 | [diff] [blame] | 106 | /* how to handle default paths */ |
| 107 | static enum default_path_mode { |
| 108 | DEFAULT_PATH_CURRENT = 0, /* "current": paths are relative to CWD (this is the default) */ |
| 109 | DEFAULT_PATH_CONFIG, /* "config": paths are relative to config file */ |
| 110 | DEFAULT_PATH_PARENT, /* "parent": paths are relative to config file's ".." */ |
| 111 | DEFAULT_PATH_ORIGIN, /* "origin": paths are relative to default_path_origin */ |
| 112 | } default_path_mode; |
| 113 | |
| 114 | static char initial_cwd[PATH_MAX]; |
| 115 | static char current_cwd[PATH_MAX]; |
| 116 | |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 117 | /* List head of all known configuration keywords */ |
Willy Tarreau | 36b9e22 | 2018-11-11 15:19:52 +0100 | [diff] [blame] | 118 | struct cfg_kw_list cfg_keywords = { |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 119 | .list = LIST_HEAD_INIT(cfg_keywords.list) |
| 120 | }; |
| 121 | |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 122 | /* nested if/elif/else/endif block states */ |
| 123 | enum nested_cond_state { |
| 124 | NESTED_COND_IF_TAKE, // "if" with a true condition |
| 125 | NESTED_COND_IF_DROP, // "if" with a false condition |
| 126 | NESTED_COND_IF_SKIP, // "if" masked by an outer false condition |
| 127 | |
| 128 | NESTED_COND_ELIF_TAKE, // "elif" with a true condition from a false one |
| 129 | NESTED_COND_ELIF_DROP, // "elif" with a false condition from a false one |
| 130 | NESTED_COND_ELIF_SKIP, // "elif" masked by an outer false condition or a previously taken if |
| 131 | |
| 132 | NESTED_COND_ELSE_TAKE, // taken "else" after an if false condition |
| 133 | NESTED_COND_ELSE_DROP, // "else" masked by outer false condition or an if true condition |
| 134 | }; |
| 135 | |
| 136 | /* 100 levels of nested conditions should already be sufficient */ |
| 137 | #define MAXNESTEDCONDS 100 |
| 138 | |
Willy Tarreau | 732525f | 2021-05-06 15:49:04 +0200 | [diff] [blame] | 139 | /* supported conditional predicates for .if/.elif */ |
| 140 | enum cond_predicate { |
| 141 | CFG_PRED_NONE, // none |
Willy Tarreau | 42ed14b | 2021-05-06 15:55:14 +0200 | [diff] [blame] | 142 | CFG_PRED_DEFINED, // "defined" |
Willy Tarreau | 58ca706 | 2021-05-06 16:34:23 +0200 | [diff] [blame] | 143 | CFG_PRED_FEATURE, // "feature" |
Willy Tarreau | 6492e87 | 2021-05-06 16:10:09 +0200 | [diff] [blame] | 144 | CFG_PRED_STREQ, // "streq" |
| 145 | CFG_PRED_STRNEQ, // "strneq" |
Willy Tarreau | 0b7c78a | 2021-05-06 16:53:26 +0200 | [diff] [blame] | 146 | CFG_PRED_VERSION_ATLEAST, // "version_atleast" |
| 147 | CFG_PRED_VERSION_BEFORE, // "version_before" |
Willy Tarreau | 732525f | 2021-05-06 15:49:04 +0200 | [diff] [blame] | 148 | }; |
| 149 | |
| 150 | struct cond_pred_kw { |
| 151 | const char *word; // NULL marks the end of the list |
| 152 | enum cond_predicate prd; // one of the CFG_PRED_* above |
| 153 | uint64_t arg_mask; // mask of supported arguments (strings only) |
| 154 | }; |
| 155 | |
| 156 | /* supported condition predicates */ |
| 157 | const struct cond_pred_kw cond_predicates[] = { |
Willy Tarreau | 42ed14b | 2021-05-06 15:55:14 +0200 | [diff] [blame] | 158 | { "defined", CFG_PRED_DEFINED, ARG1(1, STR) }, |
Willy Tarreau | 58ca706 | 2021-05-06 16:34:23 +0200 | [diff] [blame] | 159 | { "feature", CFG_PRED_FEATURE, ARG1(1, STR) }, |
Willy Tarreau | 6492e87 | 2021-05-06 16:10:09 +0200 | [diff] [blame] | 160 | { "streq", CFG_PRED_STREQ, ARG2(2, STR, STR) }, |
| 161 | { "strneq", CFG_PRED_STRNEQ, ARG2(2, STR, STR) }, |
Willy Tarreau | 0b7c78a | 2021-05-06 16:53:26 +0200 | [diff] [blame] | 162 | { "version_atleast", CFG_PRED_VERSION_ATLEAST, ARG1(1, STR) }, |
| 163 | { "version_before", CFG_PRED_VERSION_BEFORE, ARG1(1, STR) }, |
Willy Tarreau | 732525f | 2021-05-06 15:49:04 +0200 | [diff] [blame] | 164 | { NULL, CFG_PRED_NONE, 0 } |
| 165 | }; |
| 166 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 167 | /* |
| 168 | * converts <str> to a list of listeners which are dynamically allocated. |
| 169 | * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where : |
| 170 | * - <addr> can be empty or "*" to indicate INADDR_ANY ; |
| 171 | * - <port> is a numerical port from 1 to 65535 ; |
| 172 | * - <end> indicates to use the range from <port> to <end> instead (inclusive). |
| 173 | * This can be repeated as many times as necessary, separated by a coma. |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 174 | * Function returns 1 for success or 0 if error. In case of errors, if <err> is |
| 175 | * not NULL, it must be a valid pointer to either NULL or a freeable area that |
| 176 | * will be replaced with an error message. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 177 | */ |
Willy Tarreau | 4fbb228 | 2012-09-20 20:01:39 +0200 | [diff] [blame] | 178 | int str2listener(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 179 | { |
Willy Tarreau | 9b3178d | 2020-09-16 17:58:55 +0200 | [diff] [blame] | 180 | struct protocol *proto; |
Willy Tarreau | 2dff0c2 | 2011-03-04 15:43:13 +0100 | [diff] [blame] | 181 | char *next, *dupstr; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 182 | int port, end; |
| 183 | |
| 184 | next = dupstr = strdup(str); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 185 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 186 | while (next && *next) { |
Willy Tarreau | 0de59fd | 2017-09-15 08:10:44 +0200 | [diff] [blame] | 187 | struct sockaddr_storage *ss2; |
Willy Tarreau | 40aa070 | 2013-03-10 23:51:38 +0100 | [diff] [blame] | 188 | int fd = -1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 189 | |
| 190 | str = next; |
| 191 | /* 1) look for the end of the first address */ |
Krzysztof Piotr Oledzki | 52d522b | 2009-01-27 16:57:08 +0100 | [diff] [blame] | 192 | if ((next = strchr(str, ',')) != NULL) { |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 193 | *next++ = 0; |
| 194 | } |
| 195 | |
Willy Tarreau | 5fc9328 | 2020-09-16 18:25:03 +0200 | [diff] [blame] | 196 | ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err, |
Eric Salama | 1b8dacc | 2021-03-16 15:12:17 +0100 | [diff] [blame] | 197 | (curproxy == global.cli_fe || curproxy == mworker_proxy) ? NULL : global.unix_bind.prefix, |
Willy Tarreau | 3281993 | 2020-09-04 15:53:16 +0200 | [diff] [blame] | 198 | NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE | |
Willy Tarreau | 5e1779a | 2020-09-16 16:28:08 +0200 | [diff] [blame] | 199 | PA_O_SOCKET_FD | PA_O_STREAM | PA_O_XPRT); |
Willy Tarreau | 12eb2a6 | 2013-03-06 15:45:03 +0100 | [diff] [blame] | 200 | if (!ss2) |
| 201 | goto fail; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 202 | |
Willy Tarreau | 12eb2a6 | 2013-03-06 15:45:03 +0100 | [diff] [blame] | 203 | /* OK the address looks correct */ |
Frédéric Lécaille | 884f2e9 | 2020-11-23 14:23:21 +0100 | [diff] [blame] | 204 | |
| 205 | #ifdef USE_QUIC |
| 206 | /* The transport layer automatically switches to QUIC when QUIC |
| 207 | * is selected, regardless of bind_conf settings. We then need |
| 208 | * to initialize QUIC params. |
| 209 | */ |
| 210 | if (proto->sock_type == SOCK_DGRAM && proto->ctrl_type == SOCK_STREAM) { |
| 211 | bind_conf->xprt = xprt_get(XPRT_QUIC); |
| 212 | quic_transport_params_init(&bind_conf->quic_params, 1); |
| 213 | } |
| 214 | #endif |
Willy Tarreau | 9b3178d | 2020-09-16 17:58:55 +0200 | [diff] [blame] | 215 | if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) { |
Willy Tarreau | 0de59fd | 2017-09-15 08:10:44 +0200 | [diff] [blame] | 216 | memprintf(err, "%s for address '%s'.\n", *err, str); |
| 217 | goto fail; |
| 218 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 219 | } /* end while(next) */ |
| 220 | free(dupstr); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 221 | return 1; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 222 | fail: |
| 223 | free(dupstr); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 224 | return 0; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 225 | } |
| 226 | |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 227 | /* |
Willy Tarreau | aa33312 | 2020-09-16 15:13:04 +0200 | [diff] [blame] | 228 | * converts <str> to a list of datagram-oriented listeners which are dynamically |
| 229 | * allocated. |
| 230 | * The format is "{addr|'*'}:port[-end][,{addr|'*'}:port[-end]]*", where : |
| 231 | * - <addr> can be empty or "*" to indicate INADDR_ANY ; |
| 232 | * - <port> is a numerical port from 1 to 65535 ; |
| 233 | * - <end> indicates to use the range from <port> to <end> instead (inclusive). |
| 234 | * This can be repeated as many times as necessary, separated by a coma. |
| 235 | * Function returns 1 for success or 0 if error. In case of errors, if <err> is |
| 236 | * not NULL, it must be a valid pointer to either NULL or a freeable area that |
| 237 | * will be replaced with an error message. |
| 238 | */ |
| 239 | int str2receiver(char *str, struct proxy *curproxy, struct bind_conf *bind_conf, const char *file, int line, char **err) |
| 240 | { |
Willy Tarreau | 9b3178d | 2020-09-16 17:58:55 +0200 | [diff] [blame] | 241 | struct protocol *proto; |
Willy Tarreau | aa33312 | 2020-09-16 15:13:04 +0200 | [diff] [blame] | 242 | char *next, *dupstr; |
| 243 | int port, end; |
| 244 | |
| 245 | next = dupstr = strdup(str); |
| 246 | |
| 247 | while (next && *next) { |
| 248 | struct sockaddr_storage *ss2; |
| 249 | int fd = -1; |
| 250 | |
| 251 | str = next; |
| 252 | /* 1) look for the end of the first address */ |
| 253 | if ((next = strchr(str, ',')) != NULL) { |
| 254 | *next++ = 0; |
| 255 | } |
| 256 | |
Willy Tarreau | 5fc9328 | 2020-09-16 18:25:03 +0200 | [diff] [blame] | 257 | ss2 = str2sa_range(str, NULL, &port, &end, &fd, &proto, err, |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 258 | curproxy == global.cli_fe ? NULL : global.unix_bind.prefix, |
Willy Tarreau | aa33312 | 2020-09-16 15:13:04 +0200 | [diff] [blame] | 259 | NULL, PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_PORT_RANGE | |
| 260 | PA_O_SOCKET_FD | PA_O_DGRAM | PA_O_XPRT); |
| 261 | if (!ss2) |
| 262 | goto fail; |
| 263 | |
| 264 | /* OK the address looks correct */ |
Willy Tarreau | 9b3178d | 2020-09-16 17:58:55 +0200 | [diff] [blame] | 265 | if (!create_listeners(bind_conf, ss2, port, end, fd, proto, err)) { |
Willy Tarreau | aa33312 | 2020-09-16 15:13:04 +0200 | [diff] [blame] | 266 | memprintf(err, "%s for address '%s'.\n", *err, str); |
| 267 | goto fail; |
| 268 | } |
| 269 | } /* end while(next) */ |
| 270 | free(dupstr); |
| 271 | return 1; |
| 272 | fail: |
| 273 | free(dupstr); |
| 274 | return 0; |
| 275 | } |
| 276 | |
| 277 | /* |
Willy Tarreau | 0813861 | 2021-05-08 19:58:37 +0200 | [diff] [blame] | 278 | * Sends a warning if proxy <proxy> does not have at least one of the |
| 279 | * capabilities in <cap>. An optional <hint> may be added at the end |
| 280 | * of the warning to help the user. Returns 1 if a warning was emitted |
| 281 | * or 0 if the condition is valid. |
| 282 | */ |
| 283 | int warnifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint) |
| 284 | { |
| 285 | char *msg; |
| 286 | |
| 287 | switch (cap) { |
| 288 | case PR_CAP_BE: msg = "no backend"; break; |
| 289 | case PR_CAP_FE: msg = "no frontend"; break; |
| 290 | case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break; |
| 291 | default: msg = "not enough"; break; |
| 292 | } |
| 293 | |
| 294 | if (!(proxy->cap & cap)) { |
| 295 | ha_warning("parsing [%s:%d] : '%s' ignored because %s '%s' has %s capability.%s\n", |
| 296 | file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : ""); |
| 297 | return 1; |
| 298 | } |
| 299 | return 0; |
| 300 | } |
| 301 | |
| 302 | /* |
| 303 | * Sends an alert if proxy <proxy> does not have at least one of the |
| 304 | * capabilities in <cap>. An optional <hint> may be added at the end |
| 305 | * of the alert to help the user. Returns 1 if an alert was emitted |
| 306 | * or 0 if the condition is valid. |
| 307 | */ |
| 308 | int failifnotcap(struct proxy *proxy, int cap, const char *file, int line, const char *arg, const char *hint) |
| 309 | { |
| 310 | char *msg; |
| 311 | |
| 312 | switch (cap) { |
| 313 | case PR_CAP_BE: msg = "no backend"; break; |
| 314 | case PR_CAP_FE: msg = "no frontend"; break; |
| 315 | case PR_CAP_BE|PR_CAP_FE: msg = "neither frontend nor backend"; break; |
| 316 | default: msg = "not enough"; break; |
| 317 | } |
| 318 | |
| 319 | if (!(proxy->cap & cap)) { |
| 320 | ha_alert("parsing [%s:%d] : '%s' not allowed because %s '%s' has %s capability.%s\n", |
| 321 | file, line, arg, proxy_type_str(proxy), proxy->id, msg, hint ? hint : ""); |
| 322 | return 1; |
| 323 | } |
| 324 | return 0; |
| 325 | } |
| 326 | |
| 327 | /* |
Willy Tarreau | ece9b07 | 2016-12-21 22:41:44 +0100 | [diff] [blame] | 328 | * Report an error in <msg> when there are too many arguments. This version is |
| 329 | * intended to be used by keyword parsers so that the message will be included |
| 330 | * into the general error message. The index is the current keyword in args. |
| 331 | * Return 0 if the number of argument is correct, otherwise build a message and |
| 332 | * return 1. Fill err_code with an ERR_ALERT and an ERR_FATAL if not null. The |
| 333 | * message may also be null, it will simply not be produced (useful to check only). |
| 334 | * <msg> and <err_code> are only affected on error. |
| 335 | */ |
| 336 | int too_many_args_idx(int maxarg, int index, char **args, char **msg, int *err_code) |
| 337 | { |
| 338 | int i; |
| 339 | |
| 340 | if (!*args[index + maxarg + 1]) |
| 341 | return 0; |
| 342 | |
| 343 | if (msg) { |
| 344 | *msg = NULL; |
| 345 | memprintf(msg, "%s", args[0]); |
| 346 | for (i = 1; i <= index; i++) |
| 347 | memprintf(msg, "%s %s", *msg, args[i]); |
| 348 | |
| 349 | memprintf(msg, "'%s' cannot handle unexpected argument '%s'.", *msg, args[index + maxarg + 1]); |
| 350 | } |
| 351 | if (err_code) |
| 352 | *err_code |= ERR_ALERT | ERR_FATAL; |
| 353 | |
| 354 | return 1; |
| 355 | } |
| 356 | |
| 357 | /* |
| 358 | * same as too_many_args_idx with a 0 index |
| 359 | */ |
| 360 | int too_many_args(int maxarg, char **args, char **msg, int *err_code) |
| 361 | { |
| 362 | return too_many_args_idx(maxarg, 0, args, msg, err_code); |
| 363 | } |
| 364 | |
| 365 | /* |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 366 | * Report a fatal Alert when there is too much arguments |
| 367 | * The index is the current keyword in args |
| 368 | * Return 0 if the number of argument is correct, otherwise emit an alert and return 1 |
| 369 | * Fill err_code with an ERR_ALERT and an ERR_FATAL |
| 370 | */ |
| 371 | int alertif_too_many_args_idx(int maxarg, int index, const char *file, int linenum, char **args, int *err_code) |
| 372 | { |
| 373 | char *kw = NULL; |
| 374 | int i; |
| 375 | |
| 376 | if (!*args[index + maxarg + 1]) |
| 377 | return 0; |
| 378 | |
| 379 | memprintf(&kw, "%s", args[0]); |
| 380 | for (i = 1; i <= index; i++) { |
| 381 | memprintf(&kw, "%s %s", kw, args[i]); |
| 382 | } |
| 383 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 384 | ha_alert("parsing [%s:%d] : '%s' cannot handle unexpected argument '%s'.\n", file, linenum, kw, args[index + maxarg + 1]); |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 385 | free(kw); |
| 386 | *err_code |= ERR_ALERT | ERR_FATAL; |
| 387 | return 1; |
| 388 | } |
| 389 | |
| 390 | /* |
| 391 | * same as alertif_too_many_args_idx with a 0 index |
| 392 | */ |
| 393 | int alertif_too_many_args(int maxarg, const char *file, int linenum, char **args, int *err_code) |
| 394 | { |
| 395 | return alertif_too_many_args_idx(maxarg, 0, file, linenum, args, err_code); |
| 396 | } |
| 397 | |
Willy Tarreau | 61d1889 | 2009-03-31 10:49:21 +0200 | [diff] [blame] | 398 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 399 | /* Report it if a request ACL condition uses some keywords that are incompatible |
| 400 | * with the place where the ACL is used. It returns either 0 or ERR_WARN so that |
| 401 | * its result can be or'ed with err_code. Note that <cond> may be NULL and then |
| 402 | * will be ignored. |
Willy Tarreau | f1e98b8 | 2010-01-28 17:59:39 +0100 | [diff] [blame] | 403 | */ |
Willy Tarreau | 3a1f5fd | 2018-11-11 15:40:36 +0100 | [diff] [blame] | 404 | int warnif_cond_conflicts(const struct acl_cond *cond, unsigned int where, const char *file, int line) |
Willy Tarreau | f1e98b8 | 2010-01-28 17:59:39 +0100 | [diff] [blame] | 405 | { |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 406 | const struct acl *acl; |
Willy Tarreau | 93fddf1 | 2013-03-31 22:59:32 +0200 | [diff] [blame] | 407 | const char *kw; |
Willy Tarreau | f1e98b8 | 2010-01-28 17:59:39 +0100 | [diff] [blame] | 408 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 409 | if (!cond) |
Willy Tarreau | f1e98b8 | 2010-01-28 17:59:39 +0100 | [diff] [blame] | 410 | return 0; |
| 411 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 412 | acl = acl_cond_conflicts(cond, where); |
| 413 | if (acl) { |
| 414 | if (acl->name && *acl->name) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 415 | ha_warning("parsing [%s:%d] : acl '%s' will never match because it only involves keywords that are incompatible with '%s'\n", |
| 416 | file, line, acl->name, sample_ckp_names(where)); |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 417 | else |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 418 | ha_warning("parsing [%s:%d] : anonymous acl will never match because it uses keyword '%s' which is incompatible with '%s'\n", |
| 419 | file, line, LIST_ELEM(acl->expr.n, struct acl_expr *, list)->kw, sample_ckp_names(where)); |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 420 | return ERR_WARN; |
| 421 | } |
| 422 | if (!acl_cond_kw_conflicts(cond, where, &acl, &kw)) |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 423 | return 0; |
| 424 | |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 425 | if (acl->name && *acl->name) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 426 | ha_warning("parsing [%s:%d] : acl '%s' involves keywords '%s' which is incompatible with '%s'\n", |
| 427 | file, line, acl->name, kw, sample_ckp_names(where)); |
Willy Tarreau | a91d0a5 | 2013-03-25 08:12:18 +0100 | [diff] [blame] | 428 | else |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 429 | ha_warning("parsing [%s:%d] : anonymous acl involves keyword '%s' which is incompatible with '%s'\n", |
| 430 | file, line, kw, sample_ckp_names(where)); |
Willy Tarreau | fdb563c | 2010-01-31 15:43:27 +0100 | [diff] [blame] | 431 | return ERR_WARN; |
| 432 | } |
| 433 | |
Christopher Faulet | 581db2b | 2021-03-26 10:02:46 +0100 | [diff] [blame] | 434 | /* Report it if an ACL uses a L6 sample fetch from an HTTP proxy. It returns |
| 435 | * either 0 or ERR_WARN so that its result can be or'ed with err_code. Note that |
| 436 | * <cond> may be NULL and then will be ignored. |
| 437 | */ |
| 438 | int warnif_tcp_http_cond(const struct proxy *px, const struct acl_cond *cond) |
| 439 | { |
| 440 | if (!cond || px->mode != PR_MODE_HTTP) |
| 441 | return 0; |
| 442 | |
| 443 | if (cond->use & (SMP_USE_L6REQ|SMP_USE_L6RES)) { |
| 444 | ha_warning("Proxy '%s': L6 sample fetches ignored on HTTP proxies (declared at %s:%d).\n", |
| 445 | px->id, cond->file, cond->line); |
| 446 | return ERR_WARN; |
| 447 | } |
| 448 | return 0; |
| 449 | } |
| 450 | |
Willy Tarreau | e2afcc4 | 2021-03-12 09:08:04 +0100 | [diff] [blame] | 451 | /* try to find in <list> the word that looks closest to <word> by counting |
| 452 | * transitions between letters, digits and other characters. Will return the |
| 453 | * best matching word if found, otherwise NULL. An optional array of extra |
| 454 | * words to compare may be passed in <extra>, but it must then be terminated |
| 455 | * by a NULL entry. If unused it may be NULL. |
| 456 | */ |
| 457 | const char *cfg_find_best_match(const char *word, const struct list *list, int section, const char **extra) |
| 458 | { |
| 459 | uint8_t word_sig[1024]; // 0..25=letter, 26=digit, 27=other, 28=begin, 29=end |
| 460 | uint8_t list_sig[1024]; |
| 461 | const struct cfg_kw_list *kwl; |
| 462 | int index; |
| 463 | const char *best_ptr = NULL; |
| 464 | int dist, best_dist = INT_MAX; |
| 465 | |
| 466 | make_word_fingerprint(word_sig, word); |
| 467 | list_for_each_entry(kwl, list, list) { |
| 468 | for (index = 0; kwl->kw[index].kw != NULL; index++) { |
| 469 | if (kwl->kw[index].section != section) |
| 470 | continue; |
| 471 | |
| 472 | make_word_fingerprint(list_sig, kwl->kw[index].kw); |
| 473 | dist = word_fingerprint_distance(word_sig, list_sig); |
| 474 | if (dist < best_dist) { |
| 475 | best_dist = dist; |
| 476 | best_ptr = kwl->kw[index].kw; |
| 477 | } |
| 478 | } |
| 479 | } |
| 480 | |
| 481 | while (extra && *extra) { |
| 482 | make_word_fingerprint(list_sig, *extra); |
| 483 | dist = word_fingerprint_distance(word_sig, list_sig); |
| 484 | if (dist < best_dist) { |
| 485 | best_dist = dist; |
| 486 | best_ptr = *extra; |
| 487 | } |
| 488 | extra++; |
| 489 | } |
| 490 | |
| 491 | if (best_dist > 2 * strlen(word) || (best_ptr && best_dist > 2 * strlen(best_ptr))) |
| 492 | best_ptr = NULL; |
| 493 | return best_ptr; |
| 494 | } |
| 495 | |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 496 | /* Parse a string representing a process number or a set of processes. It must |
Willy Tarreau | c9a82e4 | 2019-01-26 13:25:14 +0100 | [diff] [blame] | 497 | * be "all", "odd", "even", a number between 1 and <max> or a range with |
Christopher Faulet | 5ab5177 | 2017-11-22 11:21:58 +0100 | [diff] [blame] | 498 | * two such numbers delimited by a dash ('-'). On success, it returns |
| 499 | * 0. otherwise it returns 1 with an error message in <err>. |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 500 | * |
| 501 | * Note: this function can also be used to parse a thread number or a set of |
| 502 | * threads. |
| 503 | */ |
Willy Tarreau | c9a82e4 | 2019-01-26 13:25:14 +0100 | [diff] [blame] | 504 | int parse_process_number(const char *arg, unsigned long *proc, int max, int *autoinc, char **err) |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 505 | { |
Christopher Faulet | 26028f6 | 2017-11-22 15:01:51 +0100 | [diff] [blame] | 506 | if (autoinc) { |
| 507 | *autoinc = 0; |
| 508 | if (strncmp(arg, "auto:", 5) == 0) { |
| 509 | arg += 5; |
| 510 | *autoinc = 1; |
| 511 | } |
| 512 | } |
| 513 | |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 514 | if (strcmp(arg, "all") == 0) |
Christopher Faulet | 5ab5177 | 2017-11-22 11:21:58 +0100 | [diff] [blame] | 515 | *proc |= ~0UL; |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 516 | else if (strcmp(arg, "odd") == 0) |
Christopher Faulet | 5ab5177 | 2017-11-22 11:21:58 +0100 | [diff] [blame] | 517 | *proc |= ~0UL/3UL; /* 0x555....555 */ |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 518 | else if (strcmp(arg, "even") == 0) |
Christopher Faulet | 5ab5177 | 2017-11-22 11:21:58 +0100 | [diff] [blame] | 519 | *proc |= (~0UL/3UL) << 1; /* 0xAAA...AAA */ |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 520 | else { |
Christopher Faulet | 18cca78 | 2019-02-07 16:29:41 +0100 | [diff] [blame] | 521 | const char *p, *dash = NULL; |
Christopher Faulet | 1dcb9cb | 2017-11-22 10:24:40 +0100 | [diff] [blame] | 522 | unsigned int low, high; |
| 523 | |
Christopher Faulet | 18cca78 | 2019-02-07 16:29:41 +0100 | [diff] [blame] | 524 | for (p = arg; *p; p++) { |
| 525 | if (*p == '-' && !dash) |
| 526 | dash = p; |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 527 | else if (!isdigit((unsigned char)*p)) { |
Christopher Faulet | 18cca78 | 2019-02-07 16:29:41 +0100 | [diff] [blame] | 528 | memprintf(err, "'%s' is not a valid number/range.", arg); |
| 529 | return -1; |
| 530 | } |
Christopher Faulet | 5ab5177 | 2017-11-22 11:21:58 +0100 | [diff] [blame] | 531 | } |
Christopher Faulet | 1dcb9cb | 2017-11-22 10:24:40 +0100 | [diff] [blame] | 532 | |
| 533 | low = high = str2uic(arg); |
Christopher Faulet | 18cca78 | 2019-02-07 16:29:41 +0100 | [diff] [blame] | 534 | if (dash) |
Willy Tarreau | c9a82e4 | 2019-01-26 13:25:14 +0100 | [diff] [blame] | 535 | high = ((!*(dash+1)) ? max : str2uic(dash + 1)); |
Christopher Faulet | ff4121f | 2017-11-22 16:38:49 +0100 | [diff] [blame] | 536 | |
Christopher Faulet | 1dcb9cb | 2017-11-22 10:24:40 +0100 | [diff] [blame] | 537 | if (high < low) { |
| 538 | unsigned int swap = low; |
| 539 | low = high; |
| 540 | high = swap; |
| 541 | } |
| 542 | |
Willy Tarreau | c9a82e4 | 2019-01-26 13:25:14 +0100 | [diff] [blame] | 543 | if (low < 1 || low > max || high > max) { |
Christopher Faulet | cb6a945 | 2017-11-22 16:50:41 +0100 | [diff] [blame] | 544 | memprintf(err, "'%s' is not a valid number/range." |
| 545 | " It supports numbers from 1 to %d.\n", |
Willy Tarreau | c9a82e4 | 2019-01-26 13:25:14 +0100 | [diff] [blame] | 546 | arg, max); |
Christopher Faulet | 5ab5177 | 2017-11-22 11:21:58 +0100 | [diff] [blame] | 547 | return 1; |
| 548 | } |
Christopher Faulet | 1dcb9cb | 2017-11-22 10:24:40 +0100 | [diff] [blame] | 549 | |
| 550 | for (;low <= high; low++) |
Christopher Faulet | 5ab5177 | 2017-11-22 11:21:58 +0100 | [diff] [blame] | 551 | *proc |= 1UL << (low-1); |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 552 | } |
Willy Tarreau | c9a82e4 | 2019-01-26 13:25:14 +0100 | [diff] [blame] | 553 | *proc &= ~0UL >> (LONGBITS - max); |
Christopher Faulet | 1dcb9cb | 2017-11-22 10:24:40 +0100 | [diff] [blame] | 554 | |
Christopher Faulet | 5ab5177 | 2017-11-22 11:21:58 +0100 | [diff] [blame] | 555 | return 0; |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 556 | } |
| 557 | |
David Carlier | 7e351ee | 2017-12-01 09:14:02 +0000 | [diff] [blame] | 558 | #ifdef USE_CPU_AFFINITY |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 559 | /* Parse cpu sets. Each CPU set is either a unique number between 0 and |
Amaury Denoyelle | c90932b | 2021-04-14 16:16:03 +0200 | [diff] [blame] | 560 | * ha_cpuset_size() - 1 or a range with two such numbers delimited by a dash |
Amaury Denoyelle | a808235 | 2021-04-06 16:46:15 +0200 | [diff] [blame] | 561 | * ('-'). If <comma_allowed> is set, each CPU set can be a list of unique |
| 562 | * numbers or ranges separated by a comma. It is also possible to specify |
| 563 | * multiple cpu numbers or ranges in distinct argument in <args>. On success, |
| 564 | * it returns 0, otherwise it returns 1 with an error message in <err>. |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 565 | */ |
Amaury Denoyelle | a808235 | 2021-04-06 16:46:15 +0200 | [diff] [blame] | 566 | unsigned long parse_cpu_set(const char **args, struct hap_cpuset *cpu_set, |
| 567 | int comma_allowed, char **err) |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 568 | { |
| 569 | int cur_arg = 0; |
Amaury Denoyelle | a808235 | 2021-04-06 16:46:15 +0200 | [diff] [blame] | 570 | const char *arg; |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 571 | |
Amaury Denoyelle | c90932b | 2021-04-14 16:16:03 +0200 | [diff] [blame] | 572 | ha_cpuset_zero(cpu_set); |
| 573 | |
Amaury Denoyelle | a808235 | 2021-04-06 16:46:15 +0200 | [diff] [blame] | 574 | arg = args[cur_arg]; |
| 575 | while (*arg) { |
| 576 | const char *dash, *comma; |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 577 | unsigned int low, high; |
| 578 | |
Willy Tarreau | 9080711 | 2020-02-25 08:16:33 +0100 | [diff] [blame] | 579 | if (!isdigit((unsigned char)*args[cur_arg])) { |
Amaury Denoyelle | a808235 | 2021-04-06 16:46:15 +0200 | [diff] [blame] | 580 | memprintf(err, "'%s' is not a CPU range.", arg); |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 581 | return -1; |
| 582 | } |
| 583 | |
Amaury Denoyelle | a808235 | 2021-04-06 16:46:15 +0200 | [diff] [blame] | 584 | low = high = str2uic(arg); |
| 585 | |
| 586 | comma = comma_allowed ? strchr(arg, ',') : NULL; |
| 587 | dash = strchr(arg, '-'); |
| 588 | |
| 589 | if (dash && (!comma || dash < comma)) |
Amaury Denoyelle | c90932b | 2021-04-14 16:16:03 +0200 | [diff] [blame] | 590 | high = *(dash+1) ? str2uic(dash + 1) : ha_cpuset_size() - 1; |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 591 | |
| 592 | if (high < low) { |
| 593 | unsigned int swap = low; |
| 594 | low = high; |
| 595 | high = swap; |
| 596 | } |
| 597 | |
Amaury Denoyelle | c90932b | 2021-04-14 16:16:03 +0200 | [diff] [blame] | 598 | if (high >= ha_cpuset_size()) { |
| 599 | memprintf(err, "supports CPU numbers from 0 to %d.", |
| 600 | ha_cpuset_size() - 1); |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 601 | return 1; |
| 602 | } |
| 603 | |
| 604 | while (low <= high) |
Amaury Denoyelle | c90932b | 2021-04-14 16:16:03 +0200 | [diff] [blame] | 605 | ha_cpuset_set(cpu_set, low++); |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 606 | |
Amaury Denoyelle | a808235 | 2021-04-06 16:46:15 +0200 | [diff] [blame] | 607 | /* if a comma is present, parse the rest of the arg, else |
| 608 | * skip to the next arg */ |
| 609 | arg = comma ? comma + 1 : args[++cur_arg]; |
Christopher Faulet | 6251902 | 2017-10-16 15:49:32 +0200 | [diff] [blame] | 610 | } |
| 611 | return 0; |
| 612 | } |
David Carlier | 7e351ee | 2017-12-01 09:14:02 +0000 | [diff] [blame] | 613 | #endif |
| 614 | |
Frédéric Lécaille | 1825103 | 2019-01-11 11:07:15 +0100 | [diff] [blame] | 615 | /* Allocate and initialize the frontend of a "peers" section found in |
| 616 | * file <file> at line <linenum> with <id> as ID. |
| 617 | * Return 0 if succeeded, -1 if not. |
Frédéric Lécaille | c06b5d4 | 2018-04-26 10:06:41 +0200 | [diff] [blame] | 618 | * Note that this function may be called from "default-server" |
| 619 | * or "peer" lines. |
Frédéric Lécaille | 1825103 | 2019-01-11 11:07:15 +0100 | [diff] [blame] | 620 | */ |
| 621 | static int init_peers_frontend(const char *file, int linenum, |
| 622 | const char *id, struct peers *peers) |
| 623 | { |
| 624 | struct proxy *p; |
| 625 | |
Frédéric Lécaille | c06b5d4 | 2018-04-26 10:06:41 +0200 | [diff] [blame] | 626 | if (peers->peers_fe) { |
| 627 | p = peers->peers_fe; |
| 628 | goto out; |
| 629 | } |
Frédéric Lécaille | 9492c4e | 2019-01-11 11:47:12 +0100 | [diff] [blame] | 630 | |
Frédéric Lécaille | 1825103 | 2019-01-11 11:07:15 +0100 | [diff] [blame] | 631 | p = calloc(1, sizeof *p); |
| 632 | if (!p) { |
| 633 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 634 | return -1; |
| 635 | } |
| 636 | |
| 637 | init_new_proxy(p); |
Frédéric Lécaille | c06b5d4 | 2018-04-26 10:06:41 +0200 | [diff] [blame] | 638 | peers_setup_frontend(p); |
Frédéric Lécaille | 1825103 | 2019-01-11 11:07:15 +0100 | [diff] [blame] | 639 | p->parent = peers; |
Frédéric Lécaille | c06b5d4 | 2018-04-26 10:06:41 +0200 | [diff] [blame] | 640 | /* Finally store this frontend. */ |
| 641 | peers->peers_fe = p; |
| 642 | |
| 643 | out: |
| 644 | if (id && !p->id) |
| 645 | p->id = strdup(id); |
Frédéric Lécaille | 1055e68 | 2018-04-26 14:35:21 +0200 | [diff] [blame] | 646 | free(p->conf.file); |
Frédéric Lécaille | 1825103 | 2019-01-11 11:07:15 +0100 | [diff] [blame] | 647 | p->conf.args.file = p->conf.file = strdup(file); |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 648 | if (linenum != -1) |
| 649 | p->conf.args.line = p->conf.line = linenum; |
Frédéric Lécaille | 1825103 | 2019-01-11 11:07:15 +0100 | [diff] [blame] | 650 | |
| 651 | return 0; |
| 652 | } |
Willy Tarreau | ade5ec4 | 2010-01-28 19:33:49 +0100 | [diff] [blame] | 653 | |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 654 | /* Only change ->file, ->line and ->arg struct bind_conf member values |
| 655 | * if already present. |
| 656 | */ |
| 657 | static struct bind_conf *bind_conf_uniq_alloc(struct proxy *p, |
| 658 | const char *file, int line, |
| 659 | const char *arg, struct xprt_ops *xprt) |
| 660 | { |
| 661 | struct bind_conf *bind_conf; |
| 662 | |
| 663 | if (!LIST_ISEMPTY(&p->conf.bind)) { |
| 664 | bind_conf = LIST_ELEM((&p->conf.bind)->n, typeof(bind_conf), by_fe); |
Emeric Brun | 0618a3a | 2022-05-25 10:12:07 +0200 | [diff] [blame] | 665 | /* |
| 666 | * We keep bind_conf->file and bind_conf->line unchanged |
| 667 | * to make them available for error messages |
| 668 | */ |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 669 | if (arg) { |
| 670 | free(bind_conf->arg); |
| 671 | bind_conf->arg = strdup(arg); |
| 672 | } |
| 673 | } |
| 674 | else { |
| 675 | bind_conf = bind_conf_alloc(p, file, line, arg, xprt); |
| 676 | } |
| 677 | |
| 678 | return bind_conf; |
| 679 | } |
| 680 | |
| 681 | /* |
| 682 | * Allocate a new struct peer parsed at line <linenum> in file <file> |
| 683 | * to be added to <peers>. |
| 684 | * Returns the new allocated structure if succeeded, NULL if not. |
| 685 | */ |
| 686 | static struct peer *cfg_peers_add_peer(struct peers *peers, |
| 687 | const char *file, int linenum, |
| 688 | const char *id, int local) |
| 689 | { |
| 690 | struct peer *p; |
| 691 | |
| 692 | p = calloc(1, sizeof *p); |
| 693 | if (!p) { |
| 694 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 695 | return NULL; |
| 696 | } |
| 697 | |
| 698 | /* the peers are linked backwards first */ |
| 699 | peers->count++; |
| 700 | p->next = peers->remote; |
| 701 | peers->remote = p; |
| 702 | p->conf.file = strdup(file); |
| 703 | p->conf.line = linenum; |
| 704 | p->last_change = now.tv_sec; |
| 705 | p->xprt = xprt_get(XPRT_RAW); |
| 706 | p->sock_init_arg = NULL; |
| 707 | HA_SPIN_INIT(&p->lock); |
| 708 | if (id) |
| 709 | p->id = strdup(id); |
| 710 | if (local) { |
| 711 | p->local = 1; |
| 712 | peers->local = p; |
| 713 | } |
| 714 | |
| 715 | return p; |
| 716 | } |
| 717 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 718 | /* |
William Lallemand | 5109719 | 2015-04-14 16:35:22 +0200 | [diff] [blame] | 719 | * Parse a line in a <listen>, <frontend> or <backend> section. |
Willy Tarreau | 9389379 | 2009-07-23 13:19:11 +0200 | [diff] [blame] | 720 | * Returns the error code, 0 if OK, or any combination of : |
| 721 | * - ERR_ABORT: must abort ASAP |
| 722 | * - ERR_FATAL: we can continue parsing but not start the service |
| 723 | * - ERR_WARN: a warning has been emitted |
| 724 | * - ERR_ALERT: an alert has been emitted |
| 725 | * Only the two first ones can stop processing, the two others are just |
| 726 | * indicators. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 727 | */ |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 728 | int cfg_parse_peers(const char *file, int linenum, char **args, int kwm) |
| 729 | { |
| 730 | static struct peers *curpeers = NULL; |
| 731 | struct peer *newpeer = NULL; |
| 732 | const char *err; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 733 | struct bind_conf *bind_conf; |
| 734 | struct listener *l; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 735 | int err_code = 0; |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 736 | char *errmsg = NULL; |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 737 | static int bind_line, peer_line; |
| 738 | |
| 739 | if (strcmp(args[0], "bind") == 0 || strcmp(args[0], "default-bind") == 0) { |
| 740 | int cur_arg; |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 741 | struct bind_conf *bind_conf; |
| 742 | struct bind_kw *kw; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 743 | |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 744 | cur_arg = 1; |
| 745 | |
Frédéric Lécaille | c06b5d4 | 2018-04-26 10:06:41 +0200 | [diff] [blame] | 746 | if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) { |
| 747 | err_code |= ERR_ALERT | ERR_ABORT; |
| 748 | goto out; |
| 749 | } |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 750 | |
| 751 | bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum, |
Willy Tarreau | 8ed7615 | 2022-07-05 15:54:09 +0200 | [diff] [blame] | 752 | args[1], xprt_get(XPRT_RAW)); |
William Lallemand | 8e1b8df | 2022-07-06 14:30:23 +0200 | [diff] [blame] | 753 | if (!bind_conf) { |
| 754 | ha_alert("parsing [%s:%d] : '%s %s' : cannot allocate memory.\n", file, linenum, args[0], args[1]); |
| 755 | err_code |= ERR_FATAL; |
| 756 | goto out; |
| 757 | } |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 758 | if (*args[0] == 'b') { |
| 759 | struct listener *l; |
| 760 | |
| 761 | if (peer_line) { |
| 762 | ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum); |
| 763 | err_code |= ERR_ALERT | ERR_FATAL; |
| 764 | goto out; |
| 765 | } |
| 766 | |
Emeric Brun | 0618a3a | 2022-05-25 10:12:07 +0200 | [diff] [blame] | 767 | if (!LIST_ISEMPTY(&bind_conf->listeners)) { |
| 768 | 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); |
| 769 | err_code |= ERR_FATAL; |
| 770 | } |
| 771 | |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 772 | if (!str2listener(args[1], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) { |
| 773 | if (errmsg && *errmsg) { |
| 774 | indent_msg(&errmsg, 2); |
| 775 | ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg); |
| 776 | } |
| 777 | else |
| 778 | ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n", |
Willy Tarreau | 5ab278b | 2022-05-20 15:19:48 +0200 | [diff] [blame] | 779 | file, linenum, args[0], args[1], args[1]); |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 780 | err_code |= ERR_FATAL; |
| 781 | goto out; |
| 782 | } |
Emeric Brun | a25fb61 | 2022-05-25 10:25:45 +0200 | [diff] [blame] | 783 | /* |
| 784 | * Newly allocated listener is at the end of the list |
| 785 | */ |
| 786 | l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind); |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 787 | l->maxaccept = 1; |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 788 | l->accept = session_accept_fd; |
| 789 | l->analysers |= curpeers->peers_fe->fe_req_ana; |
| 790 | l->default_target = curpeers->peers_fe->default_target; |
| 791 | l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */ |
Willy Tarreau | 18215cb | 2019-02-27 16:25:28 +0100 | [diff] [blame] | 792 | global.maxsock++; /* for the listening socket */ |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 793 | |
| 794 | bind_line = 1; |
| 795 | if (cfg_peers->local) { |
| 796 | newpeer = cfg_peers->local; |
| 797 | } |
| 798 | else { |
| 799 | /* This peer is local. |
| 800 | * Note that we do not set the peer ID. This latter is initialized |
| 801 | * when parsing "peer" or "server" line. |
| 802 | */ |
| 803 | newpeer = cfg_peers_add_peer(curpeers, file, linenum, NULL, 1); |
| 804 | if (!newpeer) { |
| 805 | err_code |= ERR_ALERT | ERR_ABORT; |
| 806 | goto out; |
| 807 | } |
| 808 | } |
Willy Tarreau | 3715906 | 2020-08-27 07:48:42 +0200 | [diff] [blame] | 809 | newpeer->addr = l->rx.addr; |
Willy Tarreau | 5fc9328 | 2020-09-16 18:25:03 +0200 | [diff] [blame] | 810 | newpeer->proto = l->rx.proto; |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 811 | cur_arg++; |
| 812 | } |
| 813 | |
| 814 | while (*args[cur_arg] && (kw = bind_find_kw(args[cur_arg]))) { |
| 815 | int ret; |
| 816 | |
| 817 | ret = kw->parse(args, cur_arg, curpeers->peers_fe, bind_conf, &errmsg); |
| 818 | err_code |= ret; |
| 819 | if (ret) { |
| 820 | if (errmsg && *errmsg) { |
| 821 | indent_msg(&errmsg, 2); |
| 822 | ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg); |
| 823 | } |
| 824 | else |
| 825 | ha_alert("parsing [%s:%d]: error encountered while processing '%s'\n", |
| 826 | file, linenum, args[cur_arg]); |
| 827 | if (ret & ERR_FATAL) |
| 828 | goto out; |
| 829 | } |
| 830 | cur_arg += 1 + kw->skip; |
| 831 | } |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 832 | if (*args[cur_arg] != 0) { |
Willy Tarreau | 433b05f | 2021-03-12 10:14:07 +0100 | [diff] [blame] | 833 | const char *best = bind_find_best_kw(args[cur_arg]); |
| 834 | if (best) |
| 835 | ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section; did you mean '%s' maybe ?\n", |
| 836 | file, linenum, args[cur_arg], cursection, best); |
| 837 | else |
| 838 | ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section.\n", |
| 839 | file, linenum, args[cur_arg], cursection); |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 840 | err_code |= ERR_ALERT | ERR_FATAL; |
| 841 | goto out; |
| 842 | } |
| 843 | } |
| 844 | else if (strcmp(args[0], "default-server") == 0) { |
| 845 | if (init_peers_frontend(file, -1, NULL, curpeers) != 0) { |
| 846 | err_code |= ERR_ALERT | ERR_ABORT; |
| 847 | goto out; |
| 848 | } |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 849 | err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, |
| 850 | SRV_PARSE_DEFAULT_SERVER|SRV_PARSE_IN_PEER_SECTION|SRV_PARSE_INITIAL_RESOLVE); |
Frédéric Lécaille | c06b5d4 | 2018-04-26 10:06:41 +0200 | [diff] [blame] | 851 | } |
Frédéric Lécaille | b6f759b | 2019-11-05 09:57:45 +0100 | [diff] [blame] | 852 | else if (strcmp(args[0], "log") == 0) { |
| 853 | if (init_peers_frontend(file, linenum, NULL, curpeers) != 0) { |
| 854 | err_code |= ERR_ALERT | ERR_ABORT; |
| 855 | goto out; |
| 856 | } |
Emeric Brun | 9533a70 | 2021-04-02 10:13:43 +0200 | [diff] [blame] | 857 | if (!parse_logsrv(args, &curpeers->peers_fe->logsrvs, (kwm == KWM_NO), file, linenum, &errmsg)) { |
Frédéric Lécaille | b6f759b | 2019-11-05 09:57:45 +0100 | [diff] [blame] | 858 | ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg); |
| 859 | err_code |= ERR_ALERT | ERR_FATAL; |
| 860 | goto out; |
| 861 | } |
| 862 | } |
Frédéric Lécaille | c06b5d4 | 2018-04-26 10:06:41 +0200 | [diff] [blame] | 863 | else if (strcmp(args[0], "peers") == 0) { /* new peers section */ |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 864 | /* Initialize these static variables when entering a new "peers" section*/ |
| 865 | bind_line = peer_line = 0; |
Willy Tarreau | 0dbbf31 | 2013-03-05 11:31:55 +0100 | [diff] [blame] | 866 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 867 | ha_alert("parsing [%s:%d] : missing name for peers section.\n", file, linenum); |
Willy Tarreau | 5498472 | 2014-02-16 08:20:13 +0100 | [diff] [blame] | 868 | err_code |= ERR_ALERT | ERR_ABORT; |
Willy Tarreau | 0dbbf31 | 2013-03-05 11:31:55 +0100 | [diff] [blame] | 869 | goto out; |
| 870 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 871 | |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 872 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 873 | goto out; |
| 874 | |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 875 | err = invalid_char(args[1]); |
| 876 | if (err) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 877 | ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 878 | file, linenum, *err, args[0], args[1]); |
Willy Tarreau | 5498472 | 2014-02-16 08:20:13 +0100 | [diff] [blame] | 879 | err_code |= ERR_ALERT | ERR_ABORT; |
Willy Tarreau | 0dbbf31 | 2013-03-05 11:31:55 +0100 | [diff] [blame] | 880 | goto out; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 881 | } |
| 882 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 883 | for (curpeers = cfg_peers; curpeers != NULL; curpeers = curpeers->next) { |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 884 | /* |
| 885 | * If there are two proxies with the same name only following |
| 886 | * combinations are allowed: |
| 887 | */ |
| 888 | if (strcmp(curpeers->id, args[1]) == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 889 | ha_alert("Parsing [%s:%d]: peers section '%s' has the same name as another peers section declared at %s:%d.\n", |
| 890 | file, linenum, args[1], curpeers->conf.file, curpeers->conf.line); |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 891 | err_code |= ERR_ALERT | ERR_FATAL; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 892 | } |
| 893 | } |
| 894 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 895 | if ((curpeers = calloc(1, sizeof(*curpeers))) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 896 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 897 | err_code |= ERR_ALERT | ERR_ABORT; |
| 898 | goto out; |
| 899 | } |
| 900 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 901 | curpeers->next = cfg_peers; |
| 902 | cfg_peers = curpeers; |
Willy Tarreau | 8113a5d | 2012-10-04 08:01:43 +0200 | [diff] [blame] | 903 | curpeers->conf.file = strdup(file); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 904 | curpeers->conf.line = linenum; |
| 905 | curpeers->last_change = now.tv_sec; |
| 906 | curpeers->id = strdup(args[1]); |
Willy Tarreau | 1ad64ac | 2020-09-24 08:48:08 +0200 | [diff] [blame] | 907 | curpeers->disabled = 0; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 908 | } |
Frédéric Lécaille | c06b5d4 | 2018-04-26 10:06:41 +0200 | [diff] [blame] | 909 | else if (strcmp(args[0], "peer") == 0 || |
| 910 | strcmp(args[0], "server") == 0) { /* peer or server definition */ |
Frédéric Lécaille | 04636b7 | 2019-01-31 06:48:16 +0100 | [diff] [blame] | 911 | int local_peer, peer; |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 912 | int parse_addr = 0; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 913 | |
Frédéric Lécaille | 04636b7 | 2019-01-31 06:48:16 +0100 | [diff] [blame] | 914 | peer = *args[0] == 'p'; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 915 | local_peer = strcmp(args[1], localpeer) == 0; |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 916 | /* The local peer may have already partially been parsed on a "bind" line. */ |
| 917 | if (*args[0] == 'p') { |
| 918 | if (bind_line) { |
| 919 | ha_alert("parsing [%s:%d] : mixing \"peer\" and \"bind\" line is forbidden\n", file, linenum); |
| 920 | err_code |= ERR_ALERT | ERR_FATAL; |
| 921 | goto out; |
| 922 | } |
| 923 | peer_line = 1; |
| 924 | } |
| 925 | if (cfg_peers->local && !cfg_peers->local->id && local_peer) { |
| 926 | /* The local peer has already been initialized on a "bind" line. |
| 927 | * Let's use it and store its ID. |
| 928 | */ |
| 929 | newpeer = cfg_peers->local; |
| 930 | newpeer->id = strdup(localpeer); |
| 931 | } |
| 932 | else { |
| 933 | if (local_peer && cfg_peers->local) { |
| 934 | ha_alert("parsing [%s:%d] : '%s %s' : local peer name already referenced at %s:%d. %s\n", |
| 935 | file, linenum, args[0], args[1], |
| 936 | curpeers->peers_fe->conf.file, curpeers->peers_fe->conf.line, cfg_peers->local->id); |
| 937 | err_code |= ERR_FATAL; |
| 938 | goto out; |
| 939 | } |
| 940 | newpeer = cfg_peers_add_peer(curpeers, file, linenum, args[1], local_peer); |
| 941 | if (!newpeer) { |
| 942 | err_code |= ERR_ALERT | ERR_ABORT; |
| 943 | goto out; |
| 944 | } |
| 945 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 946 | |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 947 | /* Line number and peer ID are updated only if this peer is the local one. */ |
| 948 | if (init_peers_frontend(file, |
| 949 | newpeer->local ? linenum: -1, |
| 950 | newpeer->local ? newpeer->id : NULL, |
| 951 | curpeers) != 0) { |
Frédéric Lécaille | c06b5d4 | 2018-04-26 10:06:41 +0200 | [diff] [blame] | 952 | err_code |= ERR_ALERT | ERR_ABORT; |
Willy Tarreau | b36487e | 2013-03-10 18:37:42 +0100 | [diff] [blame] | 953 | goto out; |
| 954 | } |
Willy Tarreau | 2aa3880 | 2013-02-20 19:20:59 +0100 | [diff] [blame] | 955 | |
Frédéric Lécaille | 76d2cef | 2019-02-12 19:12:32 +0100 | [diff] [blame] | 956 | /* This initializes curpeer->peers->peers_fe->srv. |
| 957 | * The server address is parsed only if we are parsing a "peer" line, |
| 958 | * or if we are parsing a "server" line and the current peer is not the local one. |
| 959 | */ |
Amaury Denoyelle | 30c0537 | 2021-03-08 16:36:46 +0100 | [diff] [blame] | 960 | parse_addr = (peer || !local_peer) ? SRV_PARSE_PARSE_ADDR : 0; |
| 961 | err_code |= parse_server(file, linenum, args, curpeers->peers_fe, NULL, |
| 962 | SRV_PARSE_IN_PEER_SECTION|parse_addr|SRV_PARSE_INITIAL_RESOLVE); |
Frédéric Lécaille | 8ba10fe | 2020-04-03 09:43:47 +0200 | [diff] [blame] | 963 | if (!curpeers->peers_fe->srv) { |
| 964 | /* Remove the newly allocated peer. */ |
| 965 | if (newpeer != curpeers->local) { |
| 966 | struct peer *p; |
| 967 | |
| 968 | p = curpeers->remote; |
| 969 | curpeers->remote = curpeers->remote->next; |
| 970 | free(p->id); |
| 971 | free(p); |
| 972 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 973 | goto out; |
Frédéric Lécaille | 8ba10fe | 2020-04-03 09:43:47 +0200 | [diff] [blame] | 974 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 975 | |
Frédéric Lécaille | 76d2cef | 2019-02-12 19:12:32 +0100 | [diff] [blame] | 976 | /* If the peer address has just been parsed, let's copy it to <newpeer> |
| 977 | * and initializes ->proto. |
| 978 | */ |
| 979 | if (peer || !local_peer) { |
| 980 | newpeer->addr = curpeers->peers_fe->srv->addr; |
| 981 | newpeer->proto = protocol_by_family(newpeer->addr.ss_family); |
| 982 | } |
| 983 | |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 984 | newpeer->xprt = xprt_get(XPRT_RAW); |
Willy Tarreau | d02394b | 2012-05-11 18:32:18 +0200 | [diff] [blame] | 985 | newpeer->sock_init_arg = NULL; |
Christopher Faulet | 2a944ee | 2017-11-07 10:42:54 +0100 | [diff] [blame] | 986 | HA_SPIN_INIT(&newpeer->lock); |
Willy Tarreau | 26d8c59 | 2012-05-07 18:12:14 +0200 | [diff] [blame] | 987 | |
Frédéric Lécaille | 76d2cef | 2019-02-12 19:12:32 +0100 | [diff] [blame] | 988 | newpeer->srv = curpeers->peers_fe->srv; |
| 989 | if (!newpeer->local) |
Frédéric Lécaille | 6617e76 | 2018-04-25 15:13:38 +0200 | [diff] [blame] | 990 | goto out; |
| 991 | |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 992 | /* The lines above are reserved to "peer" lines. */ |
| 993 | if (*args[0] == 's') |
Frédéric Lécaille | 4ba5198 | 2018-04-25 15:32:18 +0200 | [diff] [blame] | 994 | goto out; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 995 | |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 996 | bind_conf = bind_conf_uniq_alloc(curpeers->peers_fe, file, linenum, args[2], xprt_get(XPRT_RAW)); |
William Lallemand | 8e1b8df | 2022-07-06 14:30:23 +0200 | [diff] [blame] | 997 | if (!bind_conf) { |
| 998 | ha_alert("parsing [%s:%d] : '%s %s' : Cannot allocate memory.\n", file, linenum, args[0], args[1]); |
| 999 | err_code |= ERR_FATAL; |
| 1000 | goto out; |
| 1001 | } |
Frédéric Lécaille | 16e4910 | 2019-01-11 11:27:16 +0100 | [diff] [blame] | 1002 | |
Emeric Brun | 0618a3a | 2022-05-25 10:12:07 +0200 | [diff] [blame] | 1003 | if (!LIST_ISEMPTY(&bind_conf->listeners)) { |
| 1004 | 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); |
| 1005 | err_code |= ERR_FATAL; |
| 1006 | } |
| 1007 | |
Frédéric Lécaille | 91694d5 | 2019-01-11 11:43:53 +0100 | [diff] [blame] | 1008 | if (!str2listener(args[2], curpeers->peers_fe, bind_conf, file, linenum, &errmsg)) { |
| 1009 | if (errmsg && *errmsg) { |
| 1010 | indent_msg(&errmsg, 2); |
| 1011 | ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg); |
Frédéric Lécaille | 16e4910 | 2019-01-11 11:27:16 +0100 | [diff] [blame] | 1012 | } |
Frédéric Lécaille | 91694d5 | 2019-01-11 11:43:53 +0100 | [diff] [blame] | 1013 | else |
| 1014 | ha_alert("parsing [%s:%d] : '%s %s' : error encountered while parsing listening address %s.\n", |
| 1015 | file, linenum, args[0], args[1], args[2]); |
| 1016 | err_code |= ERR_FATAL; |
| 1017 | goto out; |
| 1018 | } |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 1019 | |
Emeric Brun | a25fb61 | 2022-05-25 10:25:45 +0200 | [diff] [blame] | 1020 | /* |
| 1021 | * Newly allocated listener is at the end of the list |
| 1022 | */ |
| 1023 | l = LIST_ELEM(bind_conf->listeners.p, typeof(l), by_bind); |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 1024 | l->maxaccept = 1; |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 1025 | l->accept = session_accept_fd; |
| 1026 | l->analysers |= curpeers->peers_fe->fe_req_ana; |
| 1027 | l->default_target = curpeers->peers_fe->default_target; |
| 1028 | l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */ |
Willy Tarreau | 18215cb | 2019-02-27 16:25:28 +0100 | [diff] [blame] | 1029 | global.maxsock++; /* for the listening socket */ |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1030 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1031 | else if (strcmp(args[0], "table") == 0) { |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1032 | struct stktable *t, *other; |
| 1033 | char *id; |
Frédéric Lécaille | c02766a | 2019-03-20 15:06:55 +0100 | [diff] [blame] | 1034 | size_t prefix_len; |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1035 | |
| 1036 | /* Line number and peer ID are updated only if this peer is the local one. */ |
| 1037 | if (init_peers_frontend(file, -1, NULL, curpeers) != 0) { |
| 1038 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1039 | goto out; |
| 1040 | } |
| 1041 | |
| 1042 | other = stktable_find_by_name(args[1]); |
| 1043 | if (other) { |
| 1044 | ha_alert("parsing [%s:%d] : stick-table name '%s' conflicts with table declared in %s '%s' at %s:%d.\n", |
| 1045 | file, linenum, args[1], |
| 1046 | other->proxy ? proxy_cap_str(other->proxy->cap) : "peers", |
| 1047 | other->proxy ? other->id : other->peers.p->id, |
| 1048 | other->conf.file, other->conf.line); |
| 1049 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1050 | goto out; |
| 1051 | } |
| 1052 | |
Frédéric Lécaille | c02766a | 2019-03-20 15:06:55 +0100 | [diff] [blame] | 1053 | /* Build the stick-table name, concatenating the "peers" section name |
| 1054 | * followed by a '/' character and the table name argument. |
| 1055 | */ |
| 1056 | chunk_reset(&trash); |
Frédéric Lécaille | 7fcc24d | 2019-03-20 15:09:45 +0100 | [diff] [blame] | 1057 | if (!chunk_strcpy(&trash, curpeers->id)) { |
Frédéric Lécaille | c02766a | 2019-03-20 15:06:55 +0100 | [diff] [blame] | 1058 | ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n", |
| 1059 | file, linenum, args[0], args[1]); |
| 1060 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1061 | goto out; |
| 1062 | } |
| 1063 | |
| 1064 | prefix_len = trash.data; |
Frédéric Lécaille | 7fcc24d | 2019-03-20 15:09:45 +0100 | [diff] [blame] | 1065 | if (!chunk_memcat(&trash, "/", 1) || !chunk_strcat(&trash, args[1])) { |
Frédéric Lécaille | c02766a | 2019-03-20 15:06:55 +0100 | [diff] [blame] | 1066 | ha_alert("parsing [%s:%d]: '%s %s' : stick-table name too long.\n", |
| 1067 | file, linenum, args[0], args[1]); |
| 1068 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1069 | goto out; |
| 1070 | } |
| 1071 | |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1072 | t = calloc(1, sizeof *t); |
Frédéric Lécaille | c02766a | 2019-03-20 15:06:55 +0100 | [diff] [blame] | 1073 | id = strdup(trash.area); |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1074 | if (!t || !id) { |
| 1075 | ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n", |
| 1076 | file, linenum, args[0], args[1]); |
Eric Salama | 1aab911 | 2020-09-18 11:55:17 +0200 | [diff] [blame] | 1077 | free(t); |
| 1078 | free(id); |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1079 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1080 | goto out; |
| 1081 | } |
| 1082 | |
Frédéric Lécaille | c02766a | 2019-03-20 15:06:55 +0100 | [diff] [blame] | 1083 | err_code |= parse_stick_table(file, linenum, args, t, id, id + prefix_len, curpeers); |
Eric Salama | 1aab911 | 2020-09-18 11:55:17 +0200 | [diff] [blame] | 1084 | if (err_code & ERR_FATAL) { |
| 1085 | free(t); |
| 1086 | free(id); |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1087 | goto out; |
Eric Salama | 1aab911 | 2020-09-18 11:55:17 +0200 | [diff] [blame] | 1088 | } |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 1089 | |
| 1090 | stktable_store_name(t); |
| 1091 | t->next = stktables_list; |
| 1092 | stktables_list = t; |
| 1093 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1094 | else if (strcmp(args[0], "disabled") == 0) { /* disables this peers section */ |
Willy Tarreau | 1ad64ac | 2020-09-24 08:48:08 +0200 | [diff] [blame] | 1095 | curpeers->disabled = 1; |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 1096 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1097 | else if (strcmp(args[0], "enabled") == 0) { /* enables this peers section (used to revert a disabled default) */ |
Willy Tarreau | 1ad64ac | 2020-09-24 08:48:08 +0200 | [diff] [blame] | 1098 | curpeers->disabled = 0; |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 1099 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1100 | else if (*args[0] != 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1101 | ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1102 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1103 | goto out; |
| 1104 | } |
| 1105 | |
| 1106 | out: |
Willy Tarreau | 902636f | 2013-03-10 19:44:48 +0100 | [diff] [blame] | 1107 | free(errmsg); |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 1108 | return err_code; |
| 1109 | } |
| 1110 | |
Baptiste Assmann | 325137d | 2015-04-13 23:40:55 +0200 | [diff] [blame] | 1111 | /* |
William Lallemand | 5109719 | 2015-04-14 16:35:22 +0200 | [diff] [blame] | 1112 | * Parse a line in a <listen>, <frontend> or <backend> section. |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1113 | * Returns the error code, 0 if OK, or any combination of : |
| 1114 | * - ERR_ABORT: must abort ASAP |
| 1115 | * - ERR_FATAL: we can continue parsing but not start the service |
| 1116 | * - ERR_WARN: a warning has been emitted |
| 1117 | * - ERR_ALERT: an alert has been emitted |
| 1118 | * Only the two first ones can stop processing, the two others are just |
| 1119 | * indicators. |
| 1120 | */ |
| 1121 | int cfg_parse_mailers(const char *file, int linenum, char **args, int kwm) |
| 1122 | { |
| 1123 | static struct mailers *curmailers = NULL; |
| 1124 | struct mailer *newmailer = NULL; |
| 1125 | const char *err; |
| 1126 | int err_code = 0; |
| 1127 | char *errmsg = NULL; |
| 1128 | |
| 1129 | if (strcmp(args[0], "mailers") == 0) { /* new mailers section */ |
| 1130 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1131 | ha_alert("parsing [%s:%d] : missing name for mailers section.\n", file, linenum); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1132 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1133 | goto out; |
| 1134 | } |
| 1135 | |
| 1136 | err = invalid_char(args[1]); |
| 1137 | if (err) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1138 | ha_alert("parsing [%s:%d] : character '%c' is not permitted in '%s' name '%s'.\n", |
| 1139 | file, linenum, *err, args[0], args[1]); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1140 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1141 | goto out; |
| 1142 | } |
| 1143 | |
| 1144 | for (curmailers = mailers; curmailers != NULL; curmailers = curmailers->next) { |
| 1145 | /* |
| 1146 | * If there are two proxies with the same name only following |
| 1147 | * combinations are allowed: |
| 1148 | */ |
| 1149 | if (strcmp(curmailers->id, args[1]) == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1150 | ha_alert("Parsing [%s:%d]: mailers section '%s' has the same name as another mailers section declared at %s:%d.\n", |
| 1151 | file, linenum, args[1], curmailers->conf.file, curmailers->conf.line); |
Willy Tarreau | 911fa2e | 2015-05-26 10:35:50 +0200 | [diff] [blame] | 1152 | err_code |= ERR_ALERT | ERR_FATAL; |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1153 | } |
| 1154 | } |
| 1155 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1156 | if ((curmailers = calloc(1, sizeof(*curmailers))) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1157 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1158 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1159 | goto out; |
| 1160 | } |
| 1161 | |
| 1162 | curmailers->next = mailers; |
| 1163 | mailers = curmailers; |
| 1164 | curmailers->conf.file = strdup(file); |
| 1165 | curmailers->conf.line = linenum; |
| 1166 | curmailers->id = strdup(args[1]); |
Pieter Baauw | 235fcfc | 2016-02-13 15:33:40 +0100 | [diff] [blame] | 1167 | curmailers->timeout.mail = DEF_MAILALERTTIME;/* XXX: Would like to Skip to the next alert, if any, ASAP. |
| 1168 | * But need enough time so that timeouts don't occur |
| 1169 | * during tcp procssing. For now just us an arbitrary default. */ |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1170 | } |
| 1171 | else if (strcmp(args[0], "mailer") == 0) { /* mailer definition */ |
| 1172 | struct sockaddr_storage *sk; |
| 1173 | int port1, port2; |
| 1174 | struct protocol *proto; |
| 1175 | |
| 1176 | if (!*args[2]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1177 | ha_alert("parsing [%s:%d] : '%s' expects <name> and <addr>[:<port>] as arguments.\n", |
| 1178 | file, linenum, args[0]); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1179 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1180 | goto out; |
| 1181 | } |
| 1182 | |
| 1183 | err = invalid_char(args[1]); |
| 1184 | if (err) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1185 | ha_alert("parsing [%s:%d] : character '%c' is not permitted in server name '%s'.\n", |
| 1186 | file, linenum, *err, args[1]); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1187 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1188 | goto out; |
| 1189 | } |
| 1190 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1191 | if ((newmailer = calloc(1, sizeof(*newmailer))) == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1192 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1193 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1194 | goto out; |
| 1195 | } |
| 1196 | |
| 1197 | /* the mailers are linked backwards first */ |
| 1198 | curmailers->count++; |
| 1199 | newmailer->next = curmailers->mailer_list; |
| 1200 | curmailers->mailer_list = newmailer; |
| 1201 | newmailer->mailers = curmailers; |
| 1202 | newmailer->conf.file = strdup(file); |
| 1203 | newmailer->conf.line = linenum; |
| 1204 | |
| 1205 | newmailer->id = strdup(args[1]); |
| 1206 | |
Willy Tarreau | 5fc9328 | 2020-09-16 18:25:03 +0200 | [diff] [blame] | 1207 | sk = str2sa_range(args[2], NULL, &port1, &port2, NULL, &proto, |
Willy Tarreau | 65ec4e3 | 2020-09-16 19:17:08 +0200 | [diff] [blame] | 1208 | &errmsg, NULL, NULL, |
| 1209 | PA_O_RESOLVE | PA_O_PORT_OK | PA_O_PORT_MAND | PA_O_STREAM | PA_O_XPRT | PA_O_CONNECT); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1210 | if (!sk) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1211 | ha_alert("parsing [%s:%d] : '%s %s' : %s\n", file, linenum, args[0], args[1], errmsg); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1212 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1213 | goto out; |
| 1214 | } |
| 1215 | |
Willy Tarreau | 65ec4e3 | 2020-09-16 19:17:08 +0200 | [diff] [blame] | 1216 | if (proto->sock_prot != IPPROTO_TCP) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1217 | ha_alert("parsing [%s:%d] : '%s %s' : TCP not supported for this address family.\n", |
| 1218 | file, linenum, args[0], args[1]); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1219 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1220 | goto out; |
| 1221 | } |
| 1222 | |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1223 | newmailer->addr = *sk; |
| 1224 | newmailer->proto = proto; |
Willy Tarreau | a261e9b | 2016-12-22 20:44:00 +0100 | [diff] [blame] | 1225 | newmailer->xprt = xprt_get(XPRT_RAW); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1226 | newmailer->sock_init_arg = NULL; |
Pieter Baauw | 235fcfc | 2016-02-13 15:33:40 +0100 | [diff] [blame] | 1227 | } |
| 1228 | else if (strcmp(args[0], "timeout") == 0) { |
| 1229 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1230 | ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments.\n", |
| 1231 | file, linenum, args[0]); |
Pieter Baauw | 235fcfc | 2016-02-13 15:33:40 +0100 | [diff] [blame] | 1232 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1233 | goto out; |
| 1234 | } |
| 1235 | else if (strcmp(args[1], "mail") == 0) { |
| 1236 | const char *res; |
| 1237 | unsigned int timeout_mail; |
| 1238 | if (!*args[2]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1239 | ha_alert("parsing [%s:%d] : '%s %s' expects <time> as argument.\n", |
| 1240 | file, linenum, args[0], args[1]); |
Pieter Baauw | 235fcfc | 2016-02-13 15:33:40 +0100 | [diff] [blame] | 1241 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1242 | goto out; |
| 1243 | } |
| 1244 | res = parse_time_err(args[2], &timeout_mail, TIME_UNIT_MS); |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 1245 | if (res == PARSE_TIME_OVER) { |
| 1246 | ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s %s>, maximum value is 2147483647 ms (~24.8 days).\n", |
| 1247 | file, linenum, args[2], args[0], args[1]); |
| 1248 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1249 | goto out; |
| 1250 | } |
| 1251 | else if (res == PARSE_TIME_UNDER) { |
| 1252 | ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s %s>, minimum non-null value is 1 ms.\n", |
| 1253 | file, linenum, args[2], args[0], args[1]); |
Pieter Baauw | 235fcfc | 2016-02-13 15:33:40 +0100 | [diff] [blame] | 1254 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1255 | goto out; |
| 1256 | } |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 1257 | else if (res) { |
| 1258 | ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s %s>.\n", |
| 1259 | file, linenum, *res, args[0], args[1]); |
Pieter Baauw | 235fcfc | 2016-02-13 15:33:40 +0100 | [diff] [blame] | 1260 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1261 | goto out; |
| 1262 | } |
| 1263 | curmailers->timeout.mail = timeout_mail; |
| 1264 | } else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1265 | ha_alert("parsing [%s:%d] : '%s' expects 'mail' and <time> as arguments got '%s'.\n", |
Pieter Baauw | 235fcfc | 2016-02-13 15:33:40 +0100 | [diff] [blame] | 1266 | file, linenum, args[0], args[1]); |
| 1267 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1268 | goto out; |
| 1269 | } |
| 1270 | } |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1271 | else if (*args[0] != 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1272 | ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], cursection); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 1273 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1274 | goto out; |
| 1275 | } |
| 1276 | |
| 1277 | out: |
| 1278 | free(errmsg); |
| 1279 | return err_code; |
| 1280 | } |
| 1281 | |
Willy Tarreau | 3a1f5fd | 2018-11-11 15:40:36 +0100 | [diff] [blame] | 1282 | void free_email_alert(struct proxy *p) |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 1283 | { |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 1284 | ha_free(&p->email_alert.mailers.name); |
| 1285 | ha_free(&p->email_alert.from); |
| 1286 | ha_free(&p->email_alert.to); |
| 1287 | ha_free(&p->email_alert.myhostname); |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 1288 | } |
| 1289 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1290 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1291 | int |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1292 | cfg_parse_netns(const char *file, int linenum, char **args, int kwm) |
| 1293 | { |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1294 | #ifdef USE_NS |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1295 | const char *err; |
| 1296 | const char *item = args[0]; |
| 1297 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1298 | if (strcmp(item, "namespace_list") == 0) { |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1299 | return 0; |
| 1300 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1301 | else if (strcmp(item, "namespace") == 0) { |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1302 | size_t idx = 1; |
| 1303 | const char *current; |
| 1304 | while (*(current = args[idx++])) { |
| 1305 | err = invalid_char(current); |
| 1306 | if (err) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1307 | ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n", |
| 1308 | file, linenum, *err, item, current); |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1309 | return ERR_ALERT | ERR_FATAL; |
| 1310 | } |
| 1311 | |
| 1312 | if (netns_store_lookup(current, strlen(current))) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1313 | ha_alert("parsing [%s:%d]: Namespace '%s' is already added.\n", |
| 1314 | file, linenum, current); |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1315 | return ERR_ALERT | ERR_FATAL; |
| 1316 | } |
| 1317 | if (!netns_store_insert(current)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1318 | ha_alert("parsing [%s:%d]: Cannot open namespace '%s'.\n", |
| 1319 | file, linenum, current); |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1320 | return ERR_ALERT | ERR_FATAL; |
| 1321 | } |
| 1322 | } |
| 1323 | } |
| 1324 | |
| 1325 | return 0; |
| 1326 | #else |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1327 | ha_alert("parsing [%s:%d]: namespace support is not compiled in.", |
| 1328 | file, linenum); |
KOVACS Krisztian | b3e54fe | 2014-11-17 15:11:45 +0100 | [diff] [blame] | 1329 | return ERR_ALERT | ERR_FATAL; |
| 1330 | #endif |
| 1331 | } |
| 1332 | |
| 1333 | int |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1334 | cfg_parse_users(const char *file, int linenum, char **args, int kwm) |
| 1335 | { |
| 1336 | |
| 1337 | int err_code = 0; |
| 1338 | const char *err; |
| 1339 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1340 | if (strcmp(args[0], "userlist") == 0) { /* new userlist */ |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1341 | struct userlist *newul; |
| 1342 | |
| 1343 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1344 | ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n", |
| 1345 | file, linenum, args[0]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1346 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1347 | goto out; |
| 1348 | } |
William Lallemand | 6e62fb6 | 2015-04-28 16:55:23 +0200 | [diff] [blame] | 1349 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 1350 | goto out; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1351 | |
| 1352 | err = invalid_char(args[1]); |
| 1353 | if (err) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1354 | ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n", |
| 1355 | file, linenum, *err, args[0], args[1]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1356 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1357 | goto out; |
| 1358 | } |
| 1359 | |
| 1360 | for (newul = userlist; newul; newul = newul->next) |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1361 | if (strcmp(newul->name, args[1]) == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1362 | ha_warning("parsing [%s:%d]: ignoring duplicated userlist '%s'.\n", |
| 1363 | file, linenum, args[1]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1364 | err_code |= ERR_WARN; |
| 1365 | goto out; |
| 1366 | } |
| 1367 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1368 | newul = calloc(1, sizeof(*newul)); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1369 | if (!newul) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1370 | ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1371 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1372 | goto out; |
| 1373 | } |
| 1374 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1375 | newul->name = strdup(args[1]); |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 1376 | if (!newul->name) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1377 | ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1378 | err_code |= ERR_ALERT | ERR_ABORT; |
David Carlier | 97880bb | 2016-04-08 10:35:26 +0100 | [diff] [blame] | 1379 | free(newul); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1380 | goto out; |
| 1381 | } |
| 1382 | |
| 1383 | newul->next = userlist; |
| 1384 | userlist = newul; |
| 1385 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1386 | } else if (strcmp(args[0], "group") == 0) { /* new group */ |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 1387 | int cur_arg; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1388 | const char *err; |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 1389 | struct auth_groups *ag; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1390 | |
| 1391 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1392 | ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n", |
| 1393 | file, linenum, args[0]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1394 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1395 | goto out; |
| 1396 | } |
| 1397 | |
| 1398 | err = invalid_char(args[1]); |
| 1399 | if (err) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1400 | ha_alert("parsing [%s:%d]: character '%c' is not permitted in '%s' name '%s'.\n", |
| 1401 | file, linenum, *err, args[0], args[1]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1402 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1403 | goto out; |
| 1404 | } |
| 1405 | |
William Lallemand | 4ac9f54 | 2015-05-28 18:03:51 +0200 | [diff] [blame] | 1406 | if (!userlist) |
| 1407 | goto out; |
| 1408 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 1409 | for (ag = userlist->groups; ag; ag = ag->next) |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1410 | if (strcmp(ag->name, args[1]) == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1411 | ha_warning("parsing [%s:%d]: ignoring duplicated group '%s' in userlist '%s'.\n", |
| 1412 | file, linenum, args[1], userlist->name); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1413 | err_code |= ERR_ALERT; |
| 1414 | goto out; |
| 1415 | } |
| 1416 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 1417 | ag = calloc(1, sizeof(*ag)); |
| 1418 | if (!ag) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1419 | ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 1420 | err_code |= ERR_ALERT | ERR_ABORT; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1421 | goto out; |
| 1422 | } |
| 1423 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 1424 | ag->name = strdup(args[1]); |
David Carlier | 70d6045 | 2016-08-22 23:27:42 +0100 | [diff] [blame] | 1425 | if (!ag->name) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1426 | ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 1427 | err_code |= ERR_ALERT | ERR_ABORT; |
David Carlier | 70d6045 | 2016-08-22 23:27:42 +0100 | [diff] [blame] | 1428 | free(ag); |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 1429 | goto out; |
| 1430 | } |
| 1431 | |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1432 | cur_arg = 2; |
| 1433 | |
| 1434 | while (*args[cur_arg]) { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1435 | if (strcmp(args[cur_arg], "users") == 0) { |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 1436 | ag->groupusers = strdup(args[cur_arg + 1]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1437 | cur_arg += 2; |
| 1438 | continue; |
| 1439 | } else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1440 | ha_alert("parsing [%s:%d]: '%s' only supports 'users' option.\n", |
| 1441 | file, linenum, args[0]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1442 | err_code |= ERR_ALERT | ERR_FATAL; |
David Carlier | 70d6045 | 2016-08-22 23:27:42 +0100 | [diff] [blame] | 1443 | free(ag->groupusers); |
| 1444 | free(ag->name); |
| 1445 | free(ag); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1446 | goto out; |
| 1447 | } |
| 1448 | } |
| 1449 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 1450 | ag->next = userlist->groups; |
| 1451 | userlist->groups = ag; |
| 1452 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1453 | } else if (strcmp(args[0], "user") == 0) { /* new user */ |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1454 | struct auth_users *newuser; |
| 1455 | int cur_arg; |
| 1456 | |
| 1457 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1458 | ha_alert("parsing [%s:%d]: '%s' expects <name> as arguments.\n", |
| 1459 | file, linenum, args[0]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1460 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1461 | goto out; |
| 1462 | } |
William Lallemand | 4ac9f54 | 2015-05-28 18:03:51 +0200 | [diff] [blame] | 1463 | if (!userlist) |
| 1464 | goto out; |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1465 | |
| 1466 | for (newuser = userlist->users; newuser; newuser = newuser->next) |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1467 | if (strcmp(newuser->user, args[1]) == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1468 | ha_warning("parsing [%s:%d]: ignoring duplicated user '%s' in userlist '%s'.\n", |
| 1469 | file, linenum, args[1], userlist->name); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1470 | err_code |= ERR_ALERT; |
| 1471 | goto out; |
| 1472 | } |
| 1473 | |
Vincent Bernat | 02779b6 | 2016-04-03 13:48:43 +0200 | [diff] [blame] | 1474 | newuser = calloc(1, sizeof(*newuser)); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1475 | if (!newuser) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1476 | ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1477 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1478 | goto out; |
| 1479 | } |
| 1480 | |
| 1481 | newuser->user = strdup(args[1]); |
| 1482 | |
| 1483 | newuser->next = userlist->users; |
| 1484 | userlist->users = newuser; |
| 1485 | |
| 1486 | cur_arg = 2; |
| 1487 | |
| 1488 | while (*args[cur_arg]) { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1489 | if (strcmp(args[cur_arg], "password") == 0) { |
Willy Tarreau | e573323 | 2019-05-22 19:24:06 +0200 | [diff] [blame] | 1490 | #ifdef USE_LIBCRYPT |
Cyril Bonté | 1a0191d | 2014-08-29 20:20:02 +0200 | [diff] [blame] | 1491 | if (!crypt("", args[cur_arg + 1])) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1492 | ha_alert("parsing [%s:%d]: the encrypted password used for user '%s' is not supported by crypt(3).\n", |
| 1493 | file, linenum, newuser->user); |
Cyril Bonté | 1a0191d | 2014-08-29 20:20:02 +0200 | [diff] [blame] | 1494 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1495 | goto out; |
| 1496 | } |
| 1497 | #else |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1498 | ha_warning("parsing [%s:%d]: no crypt(3) support compiled, encrypted passwords will not work.\n", |
| 1499 | file, linenum); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1500 | err_code |= ERR_ALERT; |
| 1501 | #endif |
| 1502 | newuser->pass = strdup(args[cur_arg + 1]); |
| 1503 | cur_arg += 2; |
| 1504 | continue; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1505 | } else if (strcmp(args[cur_arg], "insecure-password") == 0) { |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1506 | newuser->pass = strdup(args[cur_arg + 1]); |
| 1507 | newuser->flags |= AU_O_INSECURE; |
| 1508 | cur_arg += 2; |
| 1509 | continue; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1510 | } else if (strcmp(args[cur_arg], "groups") == 0) { |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 1511 | newuser->u.groups_names = strdup(args[cur_arg + 1]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1512 | cur_arg += 2; |
| 1513 | continue; |
| 1514 | } else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1515 | ha_alert("parsing [%s:%d]: '%s' only supports 'password', 'insecure-password' and 'groups' options.\n", |
| 1516 | file, linenum, args[0]); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1517 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1518 | goto out; |
| 1519 | } |
| 1520 | } |
| 1521 | } else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1522 | ha_alert("parsing [%s:%d]: unknown keyword '%s' in '%s' section\n", file, linenum, args[0], "users"); |
Krzysztof Piotr Oledzki | 9610504 | 2010-01-29 17:50:44 +0100 | [diff] [blame] | 1523 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1524 | } |
| 1525 | |
| 1526 | out: |
| 1527 | return err_code; |
| 1528 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1529 | |
Christopher Faulet | 79bdef3 | 2016-11-04 22:36:15 +0100 | [diff] [blame] | 1530 | int |
| 1531 | cfg_parse_scope(const char *file, int linenum, char *line) |
| 1532 | { |
| 1533 | char *beg, *end, *scope = NULL; |
| 1534 | int err_code = 0; |
| 1535 | const char *err; |
| 1536 | |
| 1537 | beg = line + 1; |
| 1538 | end = strchr(beg, ']'); |
| 1539 | |
| 1540 | /* Detect end of scope declaration */ |
| 1541 | if (!end || end == beg) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1542 | ha_alert("parsing [%s:%d] : empty scope name is forbidden.\n", |
| 1543 | file, linenum); |
Christopher Faulet | 79bdef3 | 2016-11-04 22:36:15 +0100 | [diff] [blame] | 1544 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1545 | goto out; |
| 1546 | } |
| 1547 | |
| 1548 | /* Get scope name and check its validity */ |
| 1549 | scope = my_strndup(beg, end-beg); |
| 1550 | err = invalid_char(scope); |
| 1551 | if (err) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1552 | ha_alert("parsing [%s:%d] : character '%c' is not permitted in a scope name.\n", |
| 1553 | file, linenum, *err); |
Christopher Faulet | 79bdef3 | 2016-11-04 22:36:15 +0100 | [diff] [blame] | 1554 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1555 | goto out; |
| 1556 | } |
| 1557 | |
| 1558 | /* Be sure to have a scope declaration alone on its line */ |
| 1559 | line = end+1; |
| 1560 | while (isspace((unsigned char)*line)) |
| 1561 | line++; |
| 1562 | if (*line && *line != '#' && *line != '\n' && *line != '\r') { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1563 | ha_alert("parsing [%s:%d] : character '%c' is not permitted after scope declaration.\n", |
| 1564 | file, linenum, *line); |
Christopher Faulet | 79bdef3 | 2016-11-04 22:36:15 +0100 | [diff] [blame] | 1565 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1566 | goto out; |
| 1567 | } |
| 1568 | |
| 1569 | /* We have a valid scope declaration, save it */ |
| 1570 | free(cfg_scope); |
| 1571 | cfg_scope = scope; |
| 1572 | scope = NULL; |
| 1573 | |
| 1574 | out: |
| 1575 | free(scope); |
| 1576 | return err_code; |
| 1577 | } |
| 1578 | |
Frédéric Lécaille | a41d531 | 2018-01-29 12:05:07 +0100 | [diff] [blame] | 1579 | int |
| 1580 | cfg_parse_track_sc_num(unsigned int *track_sc_num, |
| 1581 | const char *arg, const char *end, char **errmsg) |
| 1582 | { |
| 1583 | const char *p; |
| 1584 | unsigned int num; |
| 1585 | |
| 1586 | p = arg; |
| 1587 | num = read_uint64(&arg, end); |
| 1588 | |
| 1589 | if (arg != end) { |
| 1590 | memprintf(errmsg, "Wrong track-sc number '%s'", p); |
| 1591 | return -1; |
| 1592 | } |
| 1593 | |
| 1594 | if (num >= MAX_SESS_STKCTR) { |
| 1595 | memprintf(errmsg, "%u track-sc number exceeding " |
| 1596 | "%d (MAX_SESS_STKCTR-1) value", num, MAX_SESS_STKCTR - 1); |
| 1597 | return -1; |
| 1598 | } |
| 1599 | |
| 1600 | *track_sc_num = num; |
| 1601 | return 0; |
| 1602 | } |
| 1603 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1604 | /* |
Amaury Denoyelle | 728be0f | 2021-03-31 11:43:47 +0200 | [diff] [blame] | 1605 | * Detect a global section after a non-global one and output a diagnostic |
| 1606 | * warning. |
| 1607 | */ |
| 1608 | static void check_section_position(char *section_name, |
| 1609 | const char *file, int linenum, |
| 1610 | int *non_global_parsed) |
| 1611 | { |
| 1612 | if (!strcmp(section_name, "global")) { |
| 1613 | if (*non_global_parsed == 1) |
| 1614 | _ha_diag_warning("parsing [%s:%d] : global section detected after a non-global one, the prevalence of their statements is unspecified\n", file, linenum); |
| 1615 | } |
| 1616 | else if (*non_global_parsed == 0) { |
| 1617 | *non_global_parsed = 1; |
| 1618 | } |
| 1619 | } |
| 1620 | |
Willy Tarreau | 8a022d5 | 2021-04-27 20:29:11 +0200 | [diff] [blame] | 1621 | /* apply the current default_path setting for config file <file>, and |
| 1622 | * optionally replace the current path to <origin> if not NULL while the |
| 1623 | * default-path mode is set to "origin". Errors are returned into an |
| 1624 | * allocated string passed to <err> if it's not NULL. Returns 0 on failure |
| 1625 | * or non-zero on success. |
| 1626 | */ |
| 1627 | static int cfg_apply_default_path(const char *file, const char *origin, char **err) |
| 1628 | { |
| 1629 | const char *beg, *end; |
| 1630 | |
| 1631 | /* make path start at <beg> and end before <end>, and switch it to "" |
| 1632 | * if no slash was passed. |
| 1633 | */ |
| 1634 | beg = file; |
| 1635 | end = strrchr(beg, '/'); |
| 1636 | if (!end) |
| 1637 | end = beg; |
| 1638 | |
| 1639 | if (!*initial_cwd) { |
| 1640 | if (getcwd(initial_cwd, sizeof(initial_cwd)) == NULL) { |
| 1641 | if (err) |
| 1642 | memprintf(err, "Impossible to retrieve startup directory name: %s", strerror(errno)); |
| 1643 | return 0; |
| 1644 | } |
| 1645 | } |
| 1646 | else if (chdir(initial_cwd) == -1) { |
| 1647 | if (err) |
| 1648 | memprintf(err, "Impossible to get back to initial directory '%s': %s", initial_cwd, strerror(errno)); |
| 1649 | return 0; |
| 1650 | } |
| 1651 | |
| 1652 | /* OK now we're (back) to initial_cwd */ |
| 1653 | |
| 1654 | switch (default_path_mode) { |
| 1655 | case DEFAULT_PATH_CURRENT: |
| 1656 | /* current_cwd never set, nothing to do */ |
| 1657 | return 1; |
| 1658 | |
| 1659 | case DEFAULT_PATH_ORIGIN: |
| 1660 | /* current_cwd set in the config */ |
| 1661 | if (origin && |
| 1662 | snprintf(current_cwd, sizeof(current_cwd), "%s", origin) > sizeof(current_cwd)) { |
| 1663 | if (err) |
| 1664 | memprintf(err, "Absolute path too long: '%s'", origin); |
| 1665 | return 0; |
| 1666 | } |
| 1667 | break; |
| 1668 | |
| 1669 | case DEFAULT_PATH_CONFIG: |
| 1670 | if (end - beg >= sizeof(current_cwd)) { |
| 1671 | if (err) |
| 1672 | memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file); |
| 1673 | return 0; |
| 1674 | } |
| 1675 | memcpy(current_cwd, beg, end - beg); |
| 1676 | current_cwd[end - beg] = 0; |
| 1677 | break; |
| 1678 | |
| 1679 | case DEFAULT_PATH_PARENT: |
| 1680 | if (end - beg + 3 >= sizeof(current_cwd)) { |
| 1681 | if (err) |
| 1682 | memprintf(err, "Config file path too long, cannot use for relative paths: '%s'", file); |
| 1683 | return 0; |
| 1684 | } |
| 1685 | memcpy(current_cwd, beg, end - beg); |
| 1686 | if (end > beg) |
| 1687 | memcpy(current_cwd + (end - beg), "/..\0", 4); |
| 1688 | else |
| 1689 | memcpy(current_cwd + (end - beg), "..\0", 3); |
| 1690 | break; |
| 1691 | } |
| 1692 | |
| 1693 | if (*current_cwd && chdir(current_cwd) == -1) { |
| 1694 | if (err) |
| 1695 | memprintf(err, "Impossible to get back to directory '%s': %s", initial_cwd, strerror(errno)); |
| 1696 | return 0; |
| 1697 | } |
| 1698 | |
| 1699 | return 1; |
| 1700 | } |
| 1701 | |
| 1702 | /* parses a global "default-path" directive. */ |
| 1703 | static int cfg_parse_global_def_path(char **args, int section_type, struct proxy *curpx, |
| 1704 | const struct proxy *defpx, const char *file, int line, |
| 1705 | char **err) |
| 1706 | { |
| 1707 | int ret = -1; |
| 1708 | |
| 1709 | /* "current", "config", "parent", "origin <path>" */ |
| 1710 | |
| 1711 | if (strcmp(args[1], "current") == 0) |
| 1712 | default_path_mode = DEFAULT_PATH_CURRENT; |
| 1713 | else if (strcmp(args[1], "config") == 0) |
| 1714 | default_path_mode = DEFAULT_PATH_CONFIG; |
| 1715 | else if (strcmp(args[1], "parent") == 0) |
| 1716 | default_path_mode = DEFAULT_PATH_PARENT; |
| 1717 | else if (strcmp(args[1], "origin") == 0) |
| 1718 | default_path_mode = DEFAULT_PATH_ORIGIN; |
| 1719 | else { |
| 1720 | 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]); |
| 1721 | goto end; |
| 1722 | } |
| 1723 | |
| 1724 | if (default_path_mode == DEFAULT_PATH_ORIGIN) { |
| 1725 | if (!*args[2]) { |
| 1726 | memprintf(err, "'%s %s' expects a directory as an argument.", args[0], args[1]); |
| 1727 | goto end; |
| 1728 | } |
| 1729 | if (!cfg_apply_default_path(file, args[2], err)) { |
| 1730 | memprintf(err, "couldn't set '%s' to origin '%s': %s.", args[0], args[2], *err); |
| 1731 | goto end; |
| 1732 | } |
| 1733 | } |
| 1734 | else if (!cfg_apply_default_path(file, NULL, err)) { |
| 1735 | memprintf(err, "couldn't set '%s' to '%s': %s.", args[0], args[1], *err); |
| 1736 | goto end; |
| 1737 | } |
| 1738 | |
| 1739 | /* note that once applied, the path is immediately updated */ |
| 1740 | |
| 1741 | ret = 0; |
| 1742 | end: |
| 1743 | return ret; |
| 1744 | } |
| 1745 | |
Willy Tarreau | 732525f | 2021-05-06 15:49:04 +0200 | [diff] [blame] | 1746 | /* looks up a cond predicate matching the keyword in <str>, possibly followed |
| 1747 | * by a parenthesis. Returns a pointer to it or NULL if not found. |
| 1748 | */ |
| 1749 | static const struct cond_pred_kw *cfg_lookup_cond_pred(const char *str) |
| 1750 | { |
| 1751 | const struct cond_pred_kw *ret; |
| 1752 | int len = strcspn(str, " ("); |
| 1753 | |
| 1754 | for (ret = &cond_predicates[0]; ret->word; ret++) { |
| 1755 | if (len != strlen(ret->word)) |
| 1756 | continue; |
| 1757 | if (strncmp(str, ret->word, len) != 0) |
| 1758 | continue; |
| 1759 | return ret; |
| 1760 | } |
| 1761 | return NULL; |
| 1762 | } |
| 1763 | |
Willy Tarreau | 6a2110c | 2021-05-06 08:19:48 +0200 | [diff] [blame] | 1764 | /* evaluate a condition on a .if/.elif line. The condition is already tokenized |
| 1765 | * in <err>. Returns -1 on error (in which case err is filled with a message, |
Willy Tarreau | 299bd1c | 2021-05-06 15:07:10 +0200 | [diff] [blame] | 1766 | * and only in this case), 0 if the condition is false, 1 if it's true. If |
| 1767 | * <errptr> is not NULL, it's set to the first invalid character on error. |
Willy Tarreau | 6a2110c | 2021-05-06 08:19:48 +0200 | [diff] [blame] | 1768 | */ |
Willy Tarreau | 299bd1c | 2021-05-06 15:07:10 +0200 | [diff] [blame] | 1769 | static int cfg_eval_condition(char **args, char **err, const char **errptr) |
Willy Tarreau | 6a2110c | 2021-05-06 08:19:48 +0200 | [diff] [blame] | 1770 | { |
Willy Tarreau | 732525f | 2021-05-06 15:49:04 +0200 | [diff] [blame] | 1771 | const struct cond_pred_kw *cond_pred = NULL; |
| 1772 | const char *end_ptr; |
| 1773 | struct arg *argp = NULL; |
| 1774 | int err_arg; |
| 1775 | int nbargs; |
| 1776 | int ret = -1; |
Willy Tarreau | 6a2110c | 2021-05-06 08:19:48 +0200 | [diff] [blame] | 1777 | char *end; |
| 1778 | long val; |
| 1779 | |
| 1780 | if (!*args[0]) /* note: empty = false */ |
| 1781 | return 0; |
| 1782 | |
| 1783 | val = strtol(args[0], &end, 0); |
| 1784 | if (end && *end == '\0') |
| 1785 | return val != 0; |
| 1786 | |
Willy Tarreau | 732525f | 2021-05-06 15:49:04 +0200 | [diff] [blame] | 1787 | /* below we'll likely all make_arg_list() so we must return only via |
| 1788 | * the <done> label which frees the arg list. |
| 1789 | */ |
| 1790 | cond_pred = cfg_lookup_cond_pred(args[0]); |
| 1791 | if (cond_pred) { |
| 1792 | nbargs = make_arg_list(args[0] + strlen(cond_pred->word), -1, |
| 1793 | cond_pred->arg_mask, &argp, err, |
| 1794 | &end_ptr, &err_arg, NULL); |
| 1795 | |
| 1796 | if (nbargs < 0) { |
| 1797 | memprintf(err, "%s in argument %d of predicate '%s' used in conditional expression", *err, err_arg, cond_pred->word); |
| 1798 | if (errptr) |
| 1799 | *errptr = end_ptr; |
| 1800 | goto done; |
| 1801 | } |
| 1802 | |
| 1803 | /* here we know we have a valid predicate with <nbargs> valid |
| 1804 | * arguments, placed in <argp> (which we'll need to free). |
| 1805 | */ |
| 1806 | switch (cond_pred->prd) { |
Willy Tarreau | 42ed14b | 2021-05-06 15:55:14 +0200 | [diff] [blame] | 1807 | case CFG_PRED_DEFINED: // checks if arg exists as an environment variable |
| 1808 | ret = getenv(argp[0].data.str.area) != NULL; |
| 1809 | goto done; |
| 1810 | |
Willy Tarreau | 58ca706 | 2021-05-06 16:34:23 +0200 | [diff] [blame] | 1811 | case CFG_PRED_FEATURE: { // checks if the arg matches an enabled feature |
| 1812 | const char *p; |
| 1813 | |
| 1814 | for (p = build_features; (p = strstr(p, argp[0].data.str.area)); p++) { |
| 1815 | if ((p[argp[0].data.str.data] == ' ' || p[argp[0].data.str.data] == 0) && |
| 1816 | p > build_features) { |
| 1817 | if (*(p-1) == '+') { // "+OPENSSL" |
| 1818 | ret = 1; |
| 1819 | goto done; |
| 1820 | } |
| 1821 | else if (*(p-1) == '-') { // "-OPENSSL" |
| 1822 | ret = 0; |
| 1823 | goto done; |
| 1824 | } |
| 1825 | /* it was a sub-word, let's restart from next place */ |
| 1826 | } |
| 1827 | } |
| 1828 | /* not found */ |
| 1829 | ret = 0; |
| 1830 | goto done; |
| 1831 | } |
Willy Tarreau | 6492e87 | 2021-05-06 16:10:09 +0200 | [diff] [blame] | 1832 | case CFG_PRED_STREQ: // checks if the two arg are equal |
| 1833 | ret = strcmp(argp[0].data.str.area, argp[1].data.str.area) == 0; |
| 1834 | goto done; |
| 1835 | |
| 1836 | case CFG_PRED_STRNEQ: // checks if the two arg are different |
| 1837 | ret = strcmp(argp[0].data.str.area, argp[1].data.str.area) != 0; |
| 1838 | goto done; |
| 1839 | |
Willy Tarreau | 0b7c78a | 2021-05-06 16:53:26 +0200 | [diff] [blame] | 1840 | case CFG_PRED_VERSION_ATLEAST: // checks if the current version is at least this one |
| 1841 | ret = compare_current_version(argp[0].data.str.area) <= 0; |
| 1842 | goto done; |
| 1843 | |
| 1844 | case CFG_PRED_VERSION_BEFORE: // checks if the current version is older than this one |
| 1845 | ret = compare_current_version(argp[0].data.str.area) > 0; |
| 1846 | goto done; |
| 1847 | |
Willy Tarreau | 732525f | 2021-05-06 15:49:04 +0200 | [diff] [blame] | 1848 | default: |
| 1849 | memprintf(err, "internal error: unhandled conditional expression predicate '%s'", cond_pred->word); |
| 1850 | if (errptr) |
| 1851 | *errptr = args[0]; |
| 1852 | goto done; |
| 1853 | } |
| 1854 | } |
| 1855 | |
Willy Tarreau | 299bd1c | 2021-05-06 15:07:10 +0200 | [diff] [blame] | 1856 | memprintf(err, "unparsable conditional expression '%s'", args[0]); |
| 1857 | if (errptr) |
| 1858 | *errptr = args[0]; |
Willy Tarreau | 732525f | 2021-05-06 15:49:04 +0200 | [diff] [blame] | 1859 | done: |
| 1860 | for (nbargs = 0; argp && argp[nbargs].type != ARGT_STOP; nbargs++) { |
| 1861 | if (argp[nbargs].type == ARGT_STR) |
| 1862 | free(argp[nbargs].data.str.area); |
| 1863 | } |
| 1864 | free(argp); |
| 1865 | return ret; |
Willy Tarreau | 6a2110c | 2021-05-06 08:19:48 +0200 | [diff] [blame] | 1866 | } |
Willy Tarreau | 8a022d5 | 2021-04-27 20:29:11 +0200 | [diff] [blame] | 1867 | |
Amaury Denoyelle | 728be0f | 2021-03-31 11:43:47 +0200 | [diff] [blame] | 1868 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1869 | * This function reads and parses the configuration file given in the argument. |
Willy Tarreau | da543e1 | 2021-04-27 18:30:28 +0200 | [diff] [blame] | 1870 | * Returns the error code, 0 if OK, -1 if the config file couldn't be opened, |
| 1871 | * or any combination of : |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1872 | * - ERR_ABORT: must abort ASAP |
| 1873 | * - ERR_FATAL: we can continue parsing but not start the service |
| 1874 | * - ERR_WARN: a warning has been emitted |
| 1875 | * - ERR_ALERT: an alert has been emitted |
| 1876 | * Only the two first ones can stop processing, the two others are just |
| 1877 | * indicators. |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1878 | */ |
Willy Tarreau | b17916e | 2006-10-15 15:17:57 +0200 | [diff] [blame] | 1879 | int readcfgfile(const char *file) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1880 | { |
Willy Tarreau | da543e1 | 2021-04-27 18:30:28 +0200 | [diff] [blame] | 1881 | char *thisline = NULL; |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 1882 | int linesize = LINESIZE; |
Willy Tarreau | da543e1 | 2021-04-27 18:30:28 +0200 | [diff] [blame] | 1883 | FILE *f = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1884 | int linenum = 0; |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 1885 | int err_code = 0; |
William Lallemand | d2ff56d | 2017-10-16 11:06:50 +0200 | [diff] [blame] | 1886 | struct cfg_section *cs = NULL, *pcs = NULL; |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 1887 | struct cfg_section *ics; |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 1888 | int readbytes = 0; |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 1889 | char *outline = NULL; |
| 1890 | size_t outlen = 0; |
| 1891 | size_t outlinesize = 0; |
Willy Tarreau | 32234e7 | 2020-06-16 17:14:33 +0200 | [diff] [blame] | 1892 | int fatal = 0; |
Tim Duesterhus | 2fd5bdb | 2020-06-22 22:57:45 +0200 | [diff] [blame] | 1893 | int missing_lf = -1; |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 1894 | int nested_cond_lvl = 0; |
| 1895 | enum nested_cond_state nested_conds[MAXNESTEDCONDS]; |
Amaury Denoyelle | 728be0f | 2021-03-31 11:43:47 +0200 | [diff] [blame] | 1896 | int non_global_section_parsed = 0; |
Willy Tarreau | 8a022d5 | 2021-04-27 20:29:11 +0200 | [diff] [blame] | 1897 | char *errmsg = NULL; |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 1898 | |
Willy Tarreau | 5150805 | 2021-05-06 10:04:45 +0200 | [diff] [blame] | 1899 | global.cfg_curr_line = 0; |
| 1900 | global.cfg_curr_file = file; |
| 1901 | |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 1902 | if ((thisline = malloc(sizeof(*thisline) * linesize)) == NULL) { |
Willy Tarreau | da543e1 | 2021-04-27 18:30:28 +0200 | [diff] [blame] | 1903 | ha_alert("Out of memory trying to allocate a buffer for a configuration line.\n"); |
| 1904 | err_code = -1; |
| 1905 | goto err; |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 1906 | } |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 1907 | |
Willy Tarreau | da543e1 | 2021-04-27 18:30:28 +0200 | [diff] [blame] | 1908 | if ((f = fopen(file,"r")) == NULL) { |
| 1909 | err_code = -1; |
| 1910 | goto err; |
David Carlier | 97880bb | 2016-04-08 10:35:26 +0100 | [diff] [blame] | 1911 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1912 | |
Willy Tarreau | 8a022d5 | 2021-04-27 20:29:11 +0200 | [diff] [blame] | 1913 | /* change to the new dir if required */ |
| 1914 | if (!cfg_apply_default_path(file, NULL, &errmsg)) { |
| 1915 | ha_alert("parsing [%s:%d]: failed to apply default-path: %s.\n", file, linenum, errmsg); |
| 1916 | free(errmsg); |
| 1917 | err_code = -1; |
| 1918 | goto err; |
| 1919 | } |
| 1920 | |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 1921 | next_line: |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 1922 | while (fgets(thisline + readbytes, linesize - readbytes, f) != NULL) { |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 1923 | int arg, kwm = KWM_STD; |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 1924 | char *end; |
| 1925 | char *args[MAX_LINE_ARGS + 1]; |
| 1926 | char *line = thisline; |
| 1927 | |
Tim Duesterhus | 2fd5bdb | 2020-06-22 22:57:45 +0200 | [diff] [blame] | 1928 | if (missing_lf != -1) { |
Tim Duesterhus | f92afb7 | 2020-08-18 22:00:04 +0200 | [diff] [blame] | 1929 | ha_alert("parsing [%s:%d]: Stray NUL character at position %d.\n", |
| 1930 | file, linenum, (missing_lf + 1)); |
| 1931 | err_code |= ERR_ALERT | ERR_FATAL; |
Tim Duesterhus | 2fd5bdb | 2020-06-22 22:57:45 +0200 | [diff] [blame] | 1932 | missing_lf = -1; |
Tim Duesterhus | f92afb7 | 2020-08-18 22:00:04 +0200 | [diff] [blame] | 1933 | break; |
Tim Duesterhus | 2fd5bdb | 2020-06-22 22:57:45 +0200 | [diff] [blame] | 1934 | } |
| 1935 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1936 | linenum++; |
Willy Tarreau | 5150805 | 2021-05-06 10:04:45 +0200 | [diff] [blame] | 1937 | global.cfg_curr_line = linenum; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1938 | |
Willy Tarreau | 32234e7 | 2020-06-16 17:14:33 +0200 | [diff] [blame] | 1939 | if (fatal >= 50) { |
| 1940 | ha_alert("parsing [%s:%d]: too many fatal errors (%d), stopping now.\n", file, linenum, fatal); |
| 1941 | break; |
| 1942 | } |
| 1943 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1944 | end = line + strlen(line); |
| 1945 | |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 1946 | if (end-line == linesize-1 && *(end-1) != '\n') { |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 1947 | /* Check if we reached the limit and the last char is not \n. |
| 1948 | * Watch out for the last line without the terminating '\n'! |
| 1949 | */ |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 1950 | char *newline; |
| 1951 | int newlinesize = linesize * 2; |
| 1952 | |
| 1953 | newline = realloc(thisline, sizeof(*thisline) * newlinesize); |
| 1954 | if (newline == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1955 | ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n", |
| 1956 | file, linenum); |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 1957 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 32234e7 | 2020-06-16 17:14:33 +0200 | [diff] [blame] | 1958 | fatal++; |
Willy Tarreau | 40cb26f | 2020-06-25 09:37:54 +0200 | [diff] [blame] | 1959 | linenum--; |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 1960 | continue; |
| 1961 | } |
| 1962 | |
| 1963 | readbytes = linesize - 1; |
| 1964 | linesize = newlinesize; |
| 1965 | thisline = newline; |
Willy Tarreau | 40cb26f | 2020-06-25 09:37:54 +0200 | [diff] [blame] | 1966 | linenum--; |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 1967 | continue; |
Krzysztof Piotr Oledzki | e6bbd74 | 2007-11-01 00:33:12 +0100 | [diff] [blame] | 1968 | } |
| 1969 | |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 1970 | readbytes = 0; |
| 1971 | |
Willy Tarreau | 08488f6 | 2020-06-26 17:24:54 +0200 | [diff] [blame] | 1972 | if (end > line && *(end-1) == '\n') { |
Tim Duesterhus | 70f5899 | 2020-06-22 22:57:44 +0200 | [diff] [blame] | 1973 | /* kill trailing LF */ |
| 1974 | *(end - 1) = 0; |
| 1975 | } |
Tim Duesterhus | 2fd5bdb | 2020-06-22 22:57:45 +0200 | [diff] [blame] | 1976 | else { |
| 1977 | /* mark this line as truncated */ |
| 1978 | missing_lf = end - line; |
| 1979 | } |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 1980 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1981 | /* skip leading spaces */ |
Willy Tarreau | 8f8e645 | 2007-06-17 21:51:38 +0200 | [diff] [blame] | 1982 | while (isspace((unsigned char)*line)) |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1983 | line++; |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 1984 | |
Joseph Herlant | a14c03e | 2018-11-15 14:04:19 -0800 | [diff] [blame] | 1985 | if (*line == '[') {/* This is the beginning if a scope */ |
Christopher Faulet | 79bdef3 | 2016-11-04 22:36:15 +0100 | [diff] [blame] | 1986 | err_code |= cfg_parse_scope(file, linenum, line); |
| 1987 | goto next_line; |
| 1988 | } |
| 1989 | |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 1990 | while (1) { |
| 1991 | uint32_t err; |
| 1992 | char *errptr; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 1993 | |
Willy Tarreau | 61dd44b | 2020-06-25 07:35:42 +0200 | [diff] [blame] | 1994 | arg = MAX_LINE_ARGS + 1; |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 1995 | outlen = outlinesize; |
| 1996 | err = parse_line(line, outline, &outlen, args, &arg, |
| 1997 | PARSE_OPT_ENV | PARSE_OPT_DQUOTE | PARSE_OPT_SQUOTE | |
Amaury Denoyelle | fa41cb6 | 2020-10-01 14:32:35 +0200 | [diff] [blame] | 1998 | PARSE_OPT_BKSLASH | PARSE_OPT_SHARP | PARSE_OPT_WORD_EXPAND, |
| 1999 | &errptr); |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2000 | |
| 2001 | if (err & PARSE_ERR_QUOTE) { |
Willy Tarreau | c54e5ad | 2020-06-25 09:15:40 +0200 | [diff] [blame] | 2002 | size_t newpos = sanitize_for_printing(line, errptr - line, 80); |
| 2003 | |
| 2004 | ha_alert("parsing [%s:%d]: unmatched quote at position %d:\n" |
| 2005 | " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^"); |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2006 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 32234e7 | 2020-06-16 17:14:33 +0200 | [diff] [blame] | 2007 | fatal++; |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2008 | goto next_line; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2009 | } |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2010 | |
| 2011 | if (err & PARSE_ERR_BRACE) { |
Willy Tarreau | c54e5ad | 2020-06-25 09:15:40 +0200 | [diff] [blame] | 2012 | size_t newpos = sanitize_for_printing(line, errptr - line, 80); |
| 2013 | |
| 2014 | ha_alert("parsing [%s:%d]: unmatched brace in environment variable name at position %d:\n" |
| 2015 | " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^"); |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2016 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 32234e7 | 2020-06-16 17:14:33 +0200 | [diff] [blame] | 2017 | fatal++; |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2018 | goto next_line; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2019 | } |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2020 | |
| 2021 | if (err & PARSE_ERR_VARNAME) { |
Willy Tarreau | c54e5ad | 2020-06-25 09:15:40 +0200 | [diff] [blame] | 2022 | size_t newpos = sanitize_for_printing(line, errptr - line, 80); |
| 2023 | |
| 2024 | ha_alert("parsing [%s:%d]: forbidden first char in environment variable name at position %d:\n" |
| 2025 | " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^"); |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2026 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 32234e7 | 2020-06-16 17:14:33 +0200 | [diff] [blame] | 2027 | fatal++; |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2028 | goto next_line; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2029 | } |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 2030 | |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2031 | if (err & PARSE_ERR_HEX) { |
Willy Tarreau | c54e5ad | 2020-06-25 09:15:40 +0200 | [diff] [blame] | 2032 | size_t newpos = sanitize_for_printing(line, errptr - line, 80); |
| 2033 | |
| 2034 | ha_alert("parsing [%s:%d]: truncated or invalid hexadecimal sequence at position %d:\n" |
| 2035 | " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^"); |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2036 | err_code |= ERR_ALERT | ERR_FATAL; |
Tim Duesterhus | 9f658a5 | 2020-06-16 18:14:21 +0200 | [diff] [blame] | 2037 | fatal++; |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2038 | goto next_line; |
| 2039 | } |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 2040 | |
Amaury Denoyelle | fa41cb6 | 2020-10-01 14:32:35 +0200 | [diff] [blame] | 2041 | if (err & PARSE_ERR_WRONG_EXPAND) { |
| 2042 | size_t newpos = sanitize_for_printing(line, errptr - line, 80); |
| 2043 | |
| 2044 | ha_alert("parsing [%s:%d]: truncated or invalid word expansion sequence at position %d:\n" |
| 2045 | " %s\n %*s\n", file, linenum, (int)(errptr-thisline+1), line, (int)(newpos+1), "^"); |
| 2046 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2047 | fatal++; |
| 2048 | goto next_line; |
| 2049 | } |
| 2050 | |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2051 | if (err & (PARSE_ERR_TOOLARGE|PARSE_ERR_OVERLAP)) { |
| 2052 | outlinesize = (outlen + 1023) & -1024; |
Ilya Shipitsin | 76837bc | 2021-01-07 22:45:13 +0500 | [diff] [blame] | 2053 | outline = my_realloc2(outline, outlinesize); |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2054 | if (outline == NULL) { |
| 2055 | ha_alert("parsing [%s:%d]: line too long, cannot allocate memory.\n", |
| 2056 | file, linenum); |
Willy Tarreau | 0c68be7 | 2022-05-20 09:13:38 +0200 | [diff] [blame] | 2057 | err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT; |
Willy Tarreau | 32234e7 | 2020-06-16 17:14:33 +0200 | [diff] [blame] | 2058 | fatal++; |
Christopher Faulet | 6ae99cb | 2022-05-18 16:22:43 +0200 | [diff] [blame] | 2059 | outlinesize = 0; |
Willy Tarreau | 0c68be7 | 2022-05-20 09:13:38 +0200 | [diff] [blame] | 2060 | goto err; |
William Lallemand | b2f0745 | 2015-05-12 14:27:13 +0200 | [diff] [blame] | 2061 | } |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2062 | /* try again */ |
| 2063 | continue; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2064 | } |
Willy Tarreau | 07d4706 | 2020-06-25 07:41:22 +0200 | [diff] [blame] | 2065 | |
| 2066 | if (err & PARSE_ERR_TOOMANY) { |
| 2067 | /* only check this *after* being sure the output is allocated */ |
| 2068 | ha_alert("parsing [%s:%d]: too many words, truncating after word %d, position %ld: <%s>.\n", |
| 2069 | file, linenum, MAX_LINE_ARGS, (long)(args[MAX_LINE_ARGS-1] - outline + 1), args[MAX_LINE_ARGS-1]); |
| 2070 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2071 | fatal++; |
| 2072 | goto next_line; |
| 2073 | } |
| 2074 | |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2075 | /* everything's OK */ |
| 2076 | break; |
William Lallemand | f9873ba | 2015-05-05 17:37:14 +0200 | [diff] [blame] | 2077 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2078 | |
| 2079 | /* empty line */ |
| 2080 | if (!**args) |
| 2081 | continue; |
| 2082 | |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2083 | /* check for config macros */ |
| 2084 | if (*args[0] == '.') { |
| 2085 | if (strcmp(args[0], ".if") == 0) { |
Willy Tarreau | 299bd1c | 2021-05-06 15:07:10 +0200 | [diff] [blame] | 2086 | const char *errptr = NULL; |
Willy Tarreau | 6a2110c | 2021-05-06 08:19:48 +0200 | [diff] [blame] | 2087 | char *errmsg = NULL; |
| 2088 | int cond; |
| 2089 | |
Tim Duesterhus | f41ea3e | 2021-05-26 17:45:33 +0200 | [diff] [blame] | 2090 | if (*args[2]) { |
| 2091 | ha_warning("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n", |
| 2092 | file, linenum, args[2], args[0]); |
| 2093 | err_code |= ERR_WARN; |
| 2094 | } |
| 2095 | |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2096 | nested_cond_lvl++; |
| 2097 | if (nested_cond_lvl >= MAXNESTEDCONDS) { |
| 2098 | ha_alert("parsing [%s:%d]: too many nested '.if', max is %d.\n", file, linenum, MAXNESTEDCONDS); |
| 2099 | err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT; |
| 2100 | goto err; |
| 2101 | } |
| 2102 | |
Willy Tarreau | 6e647c9 | 2021-05-06 08:46:11 +0200 | [diff] [blame] | 2103 | if (nested_cond_lvl > 1 && |
| 2104 | (nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_DROP || |
| 2105 | nested_conds[nested_cond_lvl - 1] == NESTED_COND_IF_SKIP || |
| 2106 | nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_DROP || |
| 2107 | nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELIF_SKIP || |
| 2108 | nested_conds[nested_cond_lvl - 1] == NESTED_COND_ELSE_DROP)) { |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2109 | nested_conds[nested_cond_lvl] = NESTED_COND_IF_SKIP; |
Willy Tarreau | 6a2110c | 2021-05-06 08:19:48 +0200 | [diff] [blame] | 2110 | goto next_line; |
| 2111 | } |
| 2112 | |
Willy Tarreau | 299bd1c | 2021-05-06 15:07:10 +0200 | [diff] [blame] | 2113 | cond = cfg_eval_condition(args + 1, &errmsg, &errptr); |
Willy Tarreau | 6a2110c | 2021-05-06 08:19:48 +0200 | [diff] [blame] | 2114 | if (cond < 0) { |
Willy Tarreau | 299bd1c | 2021-05-06 15:07:10 +0200 | [diff] [blame] | 2115 | size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 76); |
| 2116 | |
| 2117 | ha_alert("parsing [%s:%d]: %s in '.if' at position %d:\n .if %s\n %*s\n", |
| 2118 | file, linenum, errmsg, |
| 2119 | (int)(errptr-args[1]+1), args[1], (int)(newpos+5), "^"); |
| 2120 | |
Willy Tarreau | 6a2110c | 2021-05-06 08:19:48 +0200 | [diff] [blame] | 2121 | free(errmsg); |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2122 | err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT; |
| 2123 | goto err; |
| 2124 | } |
Willy Tarreau | 6a2110c | 2021-05-06 08:19:48 +0200 | [diff] [blame] | 2125 | |
| 2126 | if (cond) |
| 2127 | nested_conds[nested_cond_lvl] = NESTED_COND_IF_TAKE; |
| 2128 | else |
| 2129 | nested_conds[nested_cond_lvl] = NESTED_COND_IF_DROP; |
| 2130 | |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2131 | goto next_line; |
| 2132 | } |
| 2133 | else if (strcmp(args[0], ".elif") == 0) { |
Willy Tarreau | 299bd1c | 2021-05-06 15:07:10 +0200 | [diff] [blame] | 2134 | const char *errptr = NULL; |
Willy Tarreau | 6a2110c | 2021-05-06 08:19:48 +0200 | [diff] [blame] | 2135 | char *errmsg = NULL; |
| 2136 | int cond; |
| 2137 | |
Tim Duesterhus | f41ea3e | 2021-05-26 17:45:33 +0200 | [diff] [blame] | 2138 | if (*args[2]) { |
| 2139 | ha_warning("parsing [%s:%d]: Unexpected argument '%s' for '%s'.\n", |
| 2140 | file, linenum, args[2], args[0]); |
| 2141 | err_code |= ERR_WARN; |
| 2142 | } |
| 2143 | |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2144 | if (!nested_cond_lvl) { |
| 2145 | ha_alert("parsing [%s:%d]: lone '.elif' with no matching '.if'.\n", file, linenum); |
| 2146 | err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT; |
| 2147 | goto err; |
| 2148 | } |
| 2149 | |
| 2150 | if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE || |
| 2151 | nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) { |
| 2152 | ha_alert("parsing [%s:%d]: '.elif' after '.else' is not permitted.\n", file, linenum); |
| 2153 | err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT; |
| 2154 | goto err; |
| 2155 | } |
| 2156 | |
| 2157 | if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE || |
| 2158 | nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP || |
Willy Tarreau | f67ff02 | 2021-05-06 08:48:09 +0200 | [diff] [blame] | 2159 | nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE || |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2160 | nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) { |
| 2161 | nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_SKIP; |
Willy Tarreau | 6a2110c | 2021-05-06 08:19:48 +0200 | [diff] [blame] | 2162 | goto next_line; |
| 2163 | } |
| 2164 | |
Willy Tarreau | 299bd1c | 2021-05-06 15:07:10 +0200 | [diff] [blame] | 2165 | cond = cfg_eval_condition(args + 1, &errmsg, &errptr); |
Willy Tarreau | 6a2110c | 2021-05-06 08:19:48 +0200 | [diff] [blame] | 2166 | if (cond < 0) { |
Willy Tarreau | 299bd1c | 2021-05-06 15:07:10 +0200 | [diff] [blame] | 2167 | size_t newpos = sanitize_for_printing(args[1], errptr - args[1], 74); |
| 2168 | |
| 2169 | ha_alert("parsing [%s:%d]: %s in '.elif' at position %d:\n .elif %s\n %*s\n", |
| 2170 | file, linenum, errmsg, |
| 2171 | (int)(errptr-args[1]+1), args[1], (int)(newpos+7), "^"); |
| 2172 | |
Willy Tarreau | 6a2110c | 2021-05-06 08:19:48 +0200 | [diff] [blame] | 2173 | free(errmsg); |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2174 | err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT; |
| 2175 | goto err; |
| 2176 | } |
Willy Tarreau | 6a2110c | 2021-05-06 08:19:48 +0200 | [diff] [blame] | 2177 | |
| 2178 | if (cond) |
| 2179 | nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_TAKE; |
| 2180 | else |
| 2181 | nested_conds[nested_cond_lvl] = NESTED_COND_ELIF_DROP; |
| 2182 | |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2183 | goto next_line; |
| 2184 | } |
| 2185 | else if (strcmp(args[0], ".else") == 0) { |
Tim Duesterhus | f41ea3e | 2021-05-26 17:45:33 +0200 | [diff] [blame] | 2186 | if (*args[1]) { |
| 2187 | ha_warning("parsing [%s:%d]: Unxpected argument '%s' for '%s'.\n", |
| 2188 | file, linenum, args[1], args[0]); |
| 2189 | err_code |= ERR_WARN; |
| 2190 | } |
| 2191 | |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2192 | if (!nested_cond_lvl) { |
| 2193 | ha_alert("parsing [%s:%d]: lone '.else' with no matching '.if'.\n", file, linenum); |
| 2194 | err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT; |
| 2195 | goto err; |
| 2196 | } |
| 2197 | |
| 2198 | if (nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_TAKE || |
| 2199 | nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP) { |
| 2200 | ha_alert("parsing [%s:%d]: '.else' after '.else' is not permitted.\n", file, linenum); |
| 2201 | err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT; |
| 2202 | goto err; |
| 2203 | } |
| 2204 | |
| 2205 | if (nested_conds[nested_cond_lvl] == NESTED_COND_IF_TAKE || |
| 2206 | nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP || |
| 2207 | nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_TAKE || |
| 2208 | nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP) { |
| 2209 | nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_DROP; |
| 2210 | } else { |
| 2211 | /* otherwise we take the "else" */ |
| 2212 | nested_conds[nested_cond_lvl] = NESTED_COND_ELSE_TAKE; |
| 2213 | } |
| 2214 | goto next_line; |
| 2215 | } |
| 2216 | else if (strcmp(args[0], ".endif") == 0) { |
Tim Duesterhus | f41ea3e | 2021-05-26 17:45:33 +0200 | [diff] [blame] | 2217 | if (*args[1]) { |
| 2218 | ha_warning("parsing [%s:%d]: Unxpected argument '%s' for '%s'.\n", |
| 2219 | file, linenum, args[1], args[0]); |
| 2220 | err_code |= ERR_WARN; |
| 2221 | } |
| 2222 | |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2223 | if (!nested_cond_lvl) { |
| 2224 | ha_alert("parsing [%s:%d]: lone '.endif' with no matching '.if'.\n", file, linenum); |
Tim Duesterhus | f41ea3e | 2021-05-26 17:45:33 +0200 | [diff] [blame] | 2225 | err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT; |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2226 | break; |
| 2227 | } |
| 2228 | nested_cond_lvl--; |
| 2229 | goto next_line; |
| 2230 | } |
| 2231 | } |
| 2232 | |
| 2233 | if (nested_cond_lvl && |
| 2234 | (nested_conds[nested_cond_lvl] == NESTED_COND_IF_DROP || |
| 2235 | nested_conds[nested_cond_lvl] == NESTED_COND_IF_SKIP || |
| 2236 | nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_DROP || |
| 2237 | nested_conds[nested_cond_lvl] == NESTED_COND_ELIF_SKIP || |
| 2238 | nested_conds[nested_cond_lvl] == NESTED_COND_ELSE_DROP)) { |
| 2239 | /* The current block is masked out by the conditions */ |
| 2240 | goto next_line; |
| 2241 | } |
| 2242 | |
Willy Tarreau | 7190b98 | 2021-05-07 08:59:50 +0200 | [diff] [blame] | 2243 | /* .warning/.error/.notice/.diag */ |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2244 | if (*args[0] == '.') { |
| 2245 | if (strcmp(args[0], ".alert") == 0) { |
Tim Duesterhus | f41ea3e | 2021-05-26 17:45:33 +0200 | [diff] [blame] | 2246 | if (*args[2]) { |
| 2247 | ha_warning("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n", |
| 2248 | file, linenum, args[2], args[0]); |
| 2249 | err_code |= ERR_WARN; |
| 2250 | } |
| 2251 | |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2252 | ha_alert("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]); |
| 2253 | err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT; |
| 2254 | goto err; |
| 2255 | } |
| 2256 | else if (strcmp(args[0], ".warning") == 0) { |
Tim Duesterhus | f41ea3e | 2021-05-26 17:45:33 +0200 | [diff] [blame] | 2257 | if (*args[2]) { |
| 2258 | ha_warning("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n", |
| 2259 | file, linenum, args[2], args[0]); |
| 2260 | err_code |= ERR_WARN; |
| 2261 | } |
| 2262 | |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2263 | ha_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]); |
| 2264 | err_code |= ERR_WARN; |
| 2265 | goto next_line; |
| 2266 | } |
| 2267 | else if (strcmp(args[0], ".notice") == 0) { |
Tim Duesterhus | f41ea3e | 2021-05-26 17:45:33 +0200 | [diff] [blame] | 2268 | if (*args[2]) { |
| 2269 | ha_warning("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n", |
| 2270 | file, linenum, args[2], args[0]); |
| 2271 | err_code |= ERR_WARN; |
| 2272 | } |
| 2273 | |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2274 | ha_notice("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]); |
| 2275 | goto next_line; |
| 2276 | } |
Willy Tarreau | 7190b98 | 2021-05-07 08:59:50 +0200 | [diff] [blame] | 2277 | else if (strcmp(args[0], ".diag") == 0) { |
Tim Duesterhus | f41ea3e | 2021-05-26 17:45:33 +0200 | [diff] [blame] | 2278 | if (*args[2]) { |
| 2279 | ha_warning("parsing [%s:%d]: Unexpected argument '%s' for '%s'. Use quotes if the message should contain spaces.\n", |
| 2280 | file, linenum, args[2], args[0]); |
| 2281 | err_code |= ERR_WARN; |
| 2282 | } |
| 2283 | |
Willy Tarreau | 7190b98 | 2021-05-07 08:59:50 +0200 | [diff] [blame] | 2284 | ha_diag_warning("parsing [%s:%d]: '%s'.\n", file, linenum, args[1]); |
| 2285 | goto next_line; |
| 2286 | } |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2287 | else { |
| 2288 | ha_alert("parsing [%s:%d]: unknown directive '%s'.\n", file, linenum, args[0]); |
| 2289 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2290 | fatal++; |
| 2291 | break; |
| 2292 | } |
| 2293 | } |
| 2294 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 2295 | /* check for keyword modifiers "no" and "default" */ |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2296 | if (strcmp(args[0], "no") == 0) { |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 2297 | char *tmp; |
| 2298 | |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 2299 | kwm = KWM_NO; |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 2300 | tmp = args[0]; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 2301 | for (arg=0; *args[arg+1]; arg++) |
| 2302 | args[arg] = args[arg+1]; // shift args after inversion |
William Lallemand | 0f99e34 | 2011-10-12 17:50:54 +0200 | [diff] [blame] | 2303 | *tmp = '\0'; // fix the next arg to \0 |
| 2304 | args[arg] = tmp; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 2305 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2306 | else if (strcmp(args[0], "default") == 0) { |
Willy Tarreau | 3842f00 | 2009-06-14 11:39:52 +0200 | [diff] [blame] | 2307 | kwm = KWM_DEF; |
| 2308 | for (arg=0; *args[arg+1]; arg++) |
| 2309 | args[arg] = args[arg+1]; // shift args after inversion |
| 2310 | } |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 2311 | |
William Dauchy | ec73098 | 2019-10-27 20:08:10 +0100 | [diff] [blame] | 2312 | if (kwm != KWM_STD && strcmp(args[0], "option") != 0 && |
| 2313 | strcmp(args[0], "log") != 0 && strcmp(args[0], "busy-polling") != 0 && |
Willy Tarreau | d96f112 | 2019-12-03 07:07:36 +0100 | [diff] [blame] | 2314 | strcmp(args[0], "set-dumpable") != 0 && strcmp(args[0], "strict-limits") != 0 && |
Amaury Denoyelle | 0f50cb9 | 2021-03-26 18:50:33 +0100 | [diff] [blame] | 2315 | strcmp(args[0], "insecure-fork-wanted") != 0 && |
| 2316 | strcmp(args[0], "numa-cpu-mapping") != 0) { |
William Dauchy | ec73098 | 2019-10-27 20:08:10 +0100 | [diff] [blame] | 2317 | ha_alert("parsing [%s:%d]: negation/default currently " |
William Dauchy | 0fec3ab | 2019-10-27 20:08:11 +0100 | [diff] [blame] | 2318 | "supported only for options, log, busy-polling, " |
Amaury Denoyelle | 0f50cb9 | 2021-03-26 18:50:33 +0100 | [diff] [blame] | 2319 | "set-dumpable, strict-limits, insecure-fork-wanted " |
| 2320 | "and numa-cpu-mapping.\n", file, linenum); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 2321 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 32234e7 | 2020-06-16 17:14:33 +0200 | [diff] [blame] | 2322 | fatal++; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 2323 | } |
| 2324 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 2325 | /* detect section start */ |
| 2326 | list_for_each_entry(ics, §ions, list) { |
| 2327 | if (strcmp(args[0], ics->section_name) == 0) { |
| 2328 | cursection = ics->section_name; |
Christopher Faulet | 7805e2b | 2018-11-30 13:50:47 +0100 | [diff] [blame] | 2329 | pcs = cs; |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 2330 | cs = ics; |
Willy Tarreau | 5150805 | 2021-05-06 10:04:45 +0200 | [diff] [blame] | 2331 | free(global.cfg_curr_section); |
| 2332 | global.cfg_curr_section = strdup(*args[1] ? args[1] : args[0]); |
Amaury Denoyelle | 728be0f | 2021-03-31 11:43:47 +0200 | [diff] [blame] | 2333 | |
| 2334 | if (global.mode & MODE_DIAG) { |
| 2335 | check_section_position(args[0], file, linenum, |
| 2336 | &non_global_section_parsed); |
| 2337 | } |
| 2338 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 2339 | break; |
| 2340 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 2341 | } |
| 2342 | |
Christopher Faulet | 7805e2b | 2018-11-30 13:50:47 +0100 | [diff] [blame] | 2343 | if (pcs && pcs->post_section_parser) { |
Willy Tarreau | 32234e7 | 2020-06-16 17:14:33 +0200 | [diff] [blame] | 2344 | int status; |
| 2345 | |
| 2346 | status = pcs->post_section_parser(); |
| 2347 | err_code |= status; |
| 2348 | if (status & ERR_FATAL) |
| 2349 | fatal++; |
| 2350 | |
Christopher Faulet | 7805e2b | 2018-11-30 13:50:47 +0100 | [diff] [blame] | 2351 | if (err_code & ERR_ABORT) |
| 2352 | goto err; |
Christopher Faulet | 7805e2b | 2018-11-30 13:50:47 +0100 | [diff] [blame] | 2353 | } |
Christopher Faulet | bf7a959 | 2018-12-02 09:37:38 +0100 | [diff] [blame] | 2354 | pcs = NULL; |
Christopher Faulet | 7805e2b | 2018-11-30 13:50:47 +0100 | [diff] [blame] | 2355 | |
William Lallemand | d2ff56d | 2017-10-16 11:06:50 +0200 | [diff] [blame] | 2356 | if (!cs) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2357 | ha_alert("parsing [%s:%d]: unknown keyword '%s' out of section.\n", file, linenum, args[0]); |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 2358 | err_code |= ERR_ALERT | ERR_FATAL; |
Willy Tarreau | 32234e7 | 2020-06-16 17:14:33 +0200 | [diff] [blame] | 2359 | fatal++; |
William Lallemand | d2ff56d | 2017-10-16 11:06:50 +0200 | [diff] [blame] | 2360 | } else { |
Willy Tarreau | 32234e7 | 2020-06-16 17:14:33 +0200 | [diff] [blame] | 2361 | int status; |
| 2362 | |
| 2363 | status = cs->section_parser(file, linenum, args, kwm); |
| 2364 | err_code |= status; |
| 2365 | if (status & ERR_FATAL) |
| 2366 | fatal++; |
| 2367 | |
William Lallemand | d2ff56d | 2017-10-16 11:06:50 +0200 | [diff] [blame] | 2368 | if (err_code & ERR_ABORT) |
| 2369 | goto err; |
| 2370 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2371 | } |
William Lallemand | d2ff56d | 2017-10-16 11:06:50 +0200 | [diff] [blame] | 2372 | |
Tim Duesterhus | 2fd5bdb | 2020-06-22 22:57:45 +0200 | [diff] [blame] | 2373 | if (missing_lf != -1) { |
Tim Duesterhus | f92afb7 | 2020-08-18 22:00:04 +0200 | [diff] [blame] | 2374 | ha_alert("parsing [%s:%d]: Missing LF on last line, file might have been truncated at position %d.\n", |
| 2375 | file, linenum, (missing_lf + 1)); |
| 2376 | err_code |= ERR_ALERT | ERR_FATAL; |
Tim Duesterhus | 2fd5bdb | 2020-06-22 22:57:45 +0200 | [diff] [blame] | 2377 | } |
| 2378 | |
Willy Tarreau | 5150805 | 2021-05-06 10:04:45 +0200 | [diff] [blame] | 2379 | ha_free(&global.cfg_curr_section); |
Christopher Faulet | bf7a959 | 2018-12-02 09:37:38 +0100 | [diff] [blame] | 2380 | if (cs && cs->post_section_parser) |
Christopher Faulet | 7805e2b | 2018-11-30 13:50:47 +0100 | [diff] [blame] | 2381 | err_code |= cs->post_section_parser(); |
William Lallemand | d2ff56d | 2017-10-16 11:06:50 +0200 | [diff] [blame] | 2382 | |
Willy Tarreau | 4b10302 | 2021-02-12 17:59:10 +0100 | [diff] [blame] | 2383 | if (nested_cond_lvl) { |
| 2384 | ha_alert("parsing [%s:%d]: non-terminated '.if' block.\n", file, linenum); |
| 2385 | err_code |= ERR_ALERT | ERR_FATAL | ERR_ABORT; |
| 2386 | } |
Willy Tarreau | 8a022d5 | 2021-04-27 20:29:11 +0200 | [diff] [blame] | 2387 | |
| 2388 | if (*initial_cwd && chdir(initial_cwd) == -1) { |
| 2389 | ha_alert("Impossible to get back to initial directory '%s' : %s\n", initial_cwd, strerror(errno)); |
| 2390 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2391 | } |
| 2392 | |
William Lallemand | d2ff56d | 2017-10-16 11:06:50 +0200 | [diff] [blame] | 2393 | err: |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 2394 | ha_free(&cfg_scope); |
Willy Tarreau | 6daf343 | 2008-01-22 16:44:08 +0100 | [diff] [blame] | 2395 | cursection = NULL; |
William Lallemand | 64e8451 | 2015-05-12 14:25:37 +0200 | [diff] [blame] | 2396 | free(thisline); |
Willy Tarreau | 9e1758e | 2020-06-16 16:32:59 +0200 | [diff] [blame] | 2397 | free(outline); |
Willy Tarreau | 5150805 | 2021-05-06 10:04:45 +0200 | [diff] [blame] | 2398 | global.cfg_curr_line = 0; |
| 2399 | global.cfg_curr_file = NULL; |
| 2400 | |
Willy Tarreau | da543e1 | 2021-04-27 18:30:28 +0200 | [diff] [blame] | 2401 | if (f) |
| 2402 | fclose(f); |
| 2403 | |
Willy Tarreau | 058e907 | 2009-07-20 09:30:05 +0200 | [diff] [blame] | 2404 | return err_code; |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 2405 | } |
| 2406 | |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 2407 | /* This function propagates processes from frontend <from> to backend <to> so |
| 2408 | * that it is always guaranteed that a backend pointed to by a frontend is |
| 2409 | * bound to all of its processes. After that, if the target is a "listen" |
| 2410 | * instance, the function recursively descends the target's own targets along |
Willy Tarreau | 98d0485 | 2015-05-26 12:18:29 +0200 | [diff] [blame] | 2411 | * default_backend and use_backend rules. Since the bits are |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 2412 | * checked first to ensure that <to> is already bound to all processes of |
| 2413 | * <from>, there is no risk of looping and we ensure to follow the shortest |
| 2414 | * path to the destination. |
| 2415 | * |
| 2416 | * It is possible to set <to> to NULL for the first call so that the function |
| 2417 | * takes care of visiting the initial frontend in <from>. |
| 2418 | * |
| 2419 | * It is important to note that the function relies on the fact that all names |
| 2420 | * have already been resolved. |
| 2421 | */ |
| 2422 | void propagate_processes(struct proxy *from, struct proxy *to) |
| 2423 | { |
| 2424 | struct switching_rule *rule; |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 2425 | |
| 2426 | if (to) { |
| 2427 | /* check whether we need to go down */ |
| 2428 | if (from->bind_proc && |
| 2429 | (from->bind_proc & to->bind_proc) == from->bind_proc) |
| 2430 | return; |
| 2431 | |
| 2432 | if (!from->bind_proc && !to->bind_proc) |
| 2433 | return; |
| 2434 | |
| 2435 | to->bind_proc = from->bind_proc ? |
| 2436 | (to->bind_proc | from->bind_proc) : 0; |
| 2437 | |
| 2438 | /* now propagate down */ |
| 2439 | from = to; |
| 2440 | } |
| 2441 | |
Willy Tarreau | 8a95d8c | 2014-12-18 13:56:26 +0100 | [diff] [blame] | 2442 | if (!(from->cap & PR_CAP_FE)) |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 2443 | return; |
| 2444 | |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 2445 | if (from->disabled) |
Willy Tarreau | f6b7001 | 2014-12-18 14:00:43 +0100 | [diff] [blame] | 2446 | return; |
| 2447 | |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 2448 | /* default_backend */ |
| 2449 | if (from->defbe.be) |
| 2450 | propagate_processes(from, from->defbe.be); |
| 2451 | |
| 2452 | /* use_backend */ |
| 2453 | list_for_each_entry(rule, &from->switching_rules, list) { |
Cyril Bonté | 5163969 | 2014-10-02 19:56:25 +0200 | [diff] [blame] | 2454 | if (rule->dynamic) |
| 2455 | continue; |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 2456 | to = rule->be.backend; |
| 2457 | propagate_processes(from, to); |
| 2458 | } |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 2459 | } |
| 2460 | |
Willy Tarreau | 6bfc10c | 2021-05-14 08:30:46 +0200 | [diff] [blame] | 2461 | #if defined(USE_THREAD) && defined(__linux__) && defined USE_CPU_AFFINITY |
Amaury Denoyelle | b56a7c8 | 2021-03-26 18:20:47 +0100 | [diff] [blame] | 2462 | /* filter directory name of the pattern node<X> */ |
| 2463 | static int numa_filter(const struct dirent *dir) |
| 2464 | { |
| 2465 | char *endptr; |
| 2466 | |
| 2467 | /* dir name must start with "node" prefix */ |
| 2468 | if (strncmp(dir->d_name, "node", 4)) |
| 2469 | return 0; |
| 2470 | |
| 2471 | /* dir name must be at least 5 characters long */ |
| 2472 | if (!dir->d_name[4]) |
| 2473 | return 0; |
| 2474 | |
| 2475 | /* dir name must end with a numeric id */ |
| 2476 | if (strtol(&dir->d_name[4], &endptr, 10) < 0 || *endptr) |
| 2477 | return 0; |
| 2478 | |
| 2479 | /* all tests succeeded */ |
| 2480 | return 1; |
| 2481 | } |
| 2482 | |
| 2483 | /* Parse a linux cpu map string representing to a numeric cpu mask map |
| 2484 | * The cpu map string is a list of 4-byte hex strings separated by commas, with |
| 2485 | * most-significant byte first, one bit per cpu number. |
| 2486 | */ |
| 2487 | static void parse_cpumap(char *cpumap_str, struct hap_cpuset *cpu_set) |
| 2488 | { |
| 2489 | unsigned long cpumap; |
| 2490 | char *start, *endptr, *comma; |
| 2491 | int i, j; |
| 2492 | |
| 2493 | ha_cpuset_zero(cpu_set); |
| 2494 | |
| 2495 | i = 0; |
| 2496 | do { |
| 2497 | /* reverse-search for a comma, parse the string after the comma |
| 2498 | * or at the beginning if no comma found |
| 2499 | */ |
| 2500 | comma = strrchr(cpumap_str, ','); |
| 2501 | start = comma ? comma + 1 : cpumap_str; |
| 2502 | |
| 2503 | cpumap = strtoul(start, &endptr, 16); |
| 2504 | for (j = 0; cpumap; cpumap >>= 1, ++j) { |
| 2505 | if (cpumap & 0x1) |
| 2506 | ha_cpuset_set(cpu_set, j + i * 32); |
| 2507 | } |
| 2508 | |
| 2509 | if (comma) |
| 2510 | *comma = '\0'; |
| 2511 | ++i; |
| 2512 | } while (comma); |
| 2513 | } |
| 2514 | |
| 2515 | /* Read the first line of a file from <path> into the trash buffer. |
| 2516 | * Returns 0 on success, otherwise non-zero. |
| 2517 | */ |
| 2518 | static int read_file_to_trash(const char *path) |
| 2519 | { |
| 2520 | FILE *file; |
| 2521 | int ret = 1; |
| 2522 | |
| 2523 | file = fopen(path, "r"); |
| 2524 | if (file) { |
| 2525 | if (fgets(trash.area, trash.size, file)) |
| 2526 | ret = 0; |
| 2527 | |
| 2528 | fclose(file); |
| 2529 | } |
| 2530 | |
| 2531 | return ret; |
| 2532 | } |
| 2533 | |
| 2534 | /* Inspect the cpu topology of the machine on startup. If a multi-socket |
| 2535 | * machine is detected, try to bind on the first node with active cpu. This is |
| 2536 | * done to prevent an impact on the overall performance when the topology of |
| 2537 | * the machine is unknown. This function is not called if one of the conditions |
| 2538 | * is met : |
| 2539 | * - a non-null nbthread directive is active |
| 2540 | * - a restrictive cpu-map directive is active |
| 2541 | * - a restrictive affinity is already applied, for example via taskset |
| 2542 | * |
| 2543 | * Returns the count of cpus selected. If no automatic binding was required or |
| 2544 | * an error occurred and the topology is unknown, 0 is returned. |
| 2545 | */ |
| 2546 | static int numa_detect_topology() |
| 2547 | { |
| 2548 | struct dirent **node_dirlist; |
| 2549 | int node_dirlist_size; |
| 2550 | |
| 2551 | struct hap_cpuset active_cpus, node_cpu_set; |
| 2552 | const char *parse_cpu_set_args[2]; |
| 2553 | char cpumap_path[PATH_MAX]; |
| 2554 | char *err = NULL; |
| 2555 | |
| 2556 | /* node_cpu_set count is used as return value */ |
| 2557 | ha_cpuset_zero(&node_cpu_set); |
| 2558 | |
| 2559 | /* 1. count the sysfs node<X> directories */ |
Willy Tarreau | 07bf21c | 2021-04-23 19:09:16 +0200 | [diff] [blame] | 2560 | node_dirlist = NULL; |
Amaury Denoyelle | b56a7c8 | 2021-03-26 18:20:47 +0100 | [diff] [blame] | 2561 | node_dirlist_size = scandir(NUMA_DETECT_SYSTEM_SYSFS_PATH"/node", &node_dirlist, numa_filter, alphasort); |
| 2562 | if (node_dirlist_size <= 1) |
| 2563 | goto free_scandir_entries; |
| 2564 | |
| 2565 | /* 2. read and parse the list of currently online cpu */ |
| 2566 | if (read_file_to_trash(NUMA_DETECT_SYSTEM_SYSFS_PATH"/cpu/online")) { |
| 2567 | ha_notice("Cannot read online CPUs list, will not try to refine binding\n"); |
| 2568 | goto free_scandir_entries; |
| 2569 | } |
| 2570 | |
| 2571 | parse_cpu_set_args[0] = trash.area; |
| 2572 | parse_cpu_set_args[1] = "\0"; |
| 2573 | if (parse_cpu_set(parse_cpu_set_args, &active_cpus, 1, &err)) { |
| 2574 | ha_notice("Cannot read online CPUs list: '%s'. Will not try to refine binding\n", err); |
| 2575 | free(err); |
| 2576 | goto free_scandir_entries; |
| 2577 | } |
| 2578 | |
| 2579 | /* 3. loop through nodes dirs and find the first one with active cpus */ |
| 2580 | while (node_dirlist_size--) { |
| 2581 | const char *node = node_dirlist[node_dirlist_size]->d_name; |
| 2582 | ha_cpuset_zero(&node_cpu_set); |
| 2583 | |
| 2584 | snprintf(cpumap_path, PATH_MAX, "%s/node/%s/cpumap", |
| 2585 | NUMA_DETECT_SYSTEM_SYSFS_PATH, node); |
| 2586 | |
| 2587 | if (read_file_to_trash(cpumap_path)) { |
| 2588 | ha_notice("Cannot read CPUs list of '%s', will not select them to refine binding\n", node); |
| 2589 | free(node_dirlist[node_dirlist_size]); |
| 2590 | continue; |
| 2591 | } |
| 2592 | |
| 2593 | parse_cpumap(trash.area, &node_cpu_set); |
| 2594 | ha_cpuset_and(&node_cpu_set, &active_cpus); |
| 2595 | |
| 2596 | /* 5. set affinity on the first found node with active cpus */ |
| 2597 | if (!ha_cpuset_count(&node_cpu_set)) { |
| 2598 | free(node_dirlist[node_dirlist_size]); |
| 2599 | continue; |
| 2600 | } |
| 2601 | |
| 2602 | 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)); |
| 2603 | if (sched_setaffinity(getpid(), sizeof(node_cpu_set.cpuset), &node_cpu_set.cpuset) == -1) { |
| 2604 | ha_warning("Cannot set the cpu affinity for this multi-cpu machine\n"); |
| 2605 | |
| 2606 | /* clear the cpuset used as return value */ |
| 2607 | ha_cpuset_zero(&node_cpu_set); |
| 2608 | } |
| 2609 | |
| 2610 | free(node_dirlist[node_dirlist_size]); |
| 2611 | break; |
| 2612 | } |
| 2613 | |
| 2614 | free_scandir_entries: |
| 2615 | while (node_dirlist_size-- > 0) |
| 2616 | free(node_dirlist[node_dirlist_size]); |
| 2617 | free(node_dirlist); |
| 2618 | |
| 2619 | return ha_cpuset_count(&node_cpu_set); |
| 2620 | } |
| 2621 | #endif /* __linux__ && USE_CPU_AFFINITY */ |
| 2622 | |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 2623 | /* |
| 2624 | * Returns the error code, 0 if OK, or any combination of : |
| 2625 | * - ERR_ABORT: must abort ASAP |
| 2626 | * - ERR_FATAL: we can continue parsing but not start the service |
| 2627 | * - ERR_WARN: a warning has been emitted |
| 2628 | * - ERR_ALERT: an alert has been emitted |
| 2629 | * Only the two first ones can stop processing, the two others are just |
| 2630 | * indicators. |
| 2631 | */ |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 2632 | int check_config_validity() |
| 2633 | { |
| 2634 | int cfgerr = 0; |
| 2635 | struct proxy *curproxy = NULL; |
Emeric Brun | fe0979f | 2022-08-18 15:53:21 +0200 | [diff] [blame] | 2636 | struct proxy *init_proxies_list = NULL; |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 2637 | struct stktable *t; |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 2638 | struct server *newsrv = NULL; |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 2639 | int err_code = 0; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 2640 | unsigned int next_pxid = 1; |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2641 | struct bind_conf *bind_conf; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 2642 | char *err; |
William Lallemand | 48b4bb4 | 2017-10-23 14:36:34 +0200 | [diff] [blame] | 2643 | struct cfg_postparser *postparser; |
Emeric Brun | 750fe79 | 2020-12-23 16:51:12 +0100 | [diff] [blame] | 2644 | struct resolvers *curr_resolvers = NULL; |
Amaury Denoyelle | 3efee65 | 2021-03-08 17:31:39 +0100 | [diff] [blame] | 2645 | int i; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2646 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 2647 | bind_conf = NULL; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2648 | /* |
| 2649 | * Now, check for the integrity of all that we have collected. |
| 2650 | */ |
| 2651 | |
| 2652 | /* will be needed further to delay some tasks */ |
Willy Tarreau | b0b37bc | 2008-06-23 14:00:57 +0200 | [diff] [blame] | 2653 | tv_update_date(0,1); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2654 | |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 2655 | if (!global.tune.max_http_hdr) |
| 2656 | global.tune.max_http_hdr = MAX_HTTP_HDR; |
| 2657 | |
| 2658 | if (!global.tune.cookie_len) |
| 2659 | global.tune.cookie_len = CAPTURE_LEN; |
| 2660 | |
Stéphane Cottin | 23e9e93 | 2017-05-18 08:58:41 +0200 | [diff] [blame] | 2661 | if (!global.tune.requri_len) |
| 2662 | global.tune.requri_len = REQURI_LEN; |
| 2663 | |
Willy Tarreau | 149ab77 | 2019-01-26 14:27:06 +0100 | [diff] [blame] | 2664 | if (!global.nbthread) { |
| 2665 | /* nbthread not set, thus automatic. In this case, and only if |
| 2666 | * running on a single process, we enable the same number of |
| 2667 | * threads as the number of CPUs the process is bound to. This |
| 2668 | * allows to easily control the number of threads using taskset. |
| 2669 | */ |
| 2670 | global.nbthread = 1; |
Amaury Denoyelle | b56a7c8 | 2021-03-26 18:20:47 +0100 | [diff] [blame] | 2671 | |
Willy Tarreau | 149ab77 | 2019-01-26 14:27:06 +0100 | [diff] [blame] | 2672 | #if defined(USE_THREAD) |
Amaury Denoyelle | b56a7c8 | 2021-03-26 18:20:47 +0100 | [diff] [blame] | 2673 | if (global.nbproc == 1) { |
| 2674 | int numa_cores = 0; |
| 2675 | #if defined(__linux__) && defined USE_CPU_AFFINITY |
Amaury Denoyelle | 0f50cb9 | 2021-03-26 18:50:33 +0100 | [diff] [blame] | 2676 | if (global.numa_cpu_mapping && !thread_cpu_mask_forced()) |
Amaury Denoyelle | b56a7c8 | 2021-03-26 18:20:47 +0100 | [diff] [blame] | 2677 | numa_cores = numa_detect_topology(); |
| 2678 | #endif |
| 2679 | global.nbthread = numa_cores ? numa_cores : |
| 2680 | thread_cpus_enabled_at_boot; |
| 2681 | } |
Willy Tarreau | 149ab77 | 2019-01-26 14:27:06 +0100 | [diff] [blame] | 2682 | all_threads_mask = nbits(global.nbthread); |
| 2683 | #endif |
| 2684 | } |
| 2685 | |
Willy Tarreau | 26f6ae1 | 2019-02-02 12:56:15 +0100 | [diff] [blame] | 2686 | if (global.nbproc > 1 && global.nbthread > 1) { |
| 2687 | ha_alert("config : cannot enable multiple processes if multiple threads are configured. Please use either nbproc or nbthread but not both.\n"); |
| 2688 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2689 | goto out; |
| 2690 | } |
| 2691 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 2692 | pool_head_requri = create_pool("requri", global.tune.requri_len , MEM_F_SHARED); |
Emeric Brun | 96fd926 | 2017-07-05 13:33:16 +0200 | [diff] [blame] | 2693 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 2694 | pool_head_capture = create_pool("capture", global.tune.cookie_len, MEM_F_SHARED); |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 2695 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 2696 | /* Post initialisation of the users and groups lists. */ |
| 2697 | err_code = userlist_postinit(); |
| 2698 | if (err_code != ERR_NONE) |
| 2699 | goto out; |
| 2700 | |
Willy Tarreau | 55bc0f8 | 2009-03-15 14:51:53 +0100 | [diff] [blame] | 2701 | /* first, we will invert the proxy list order */ |
| 2702 | curproxy = NULL; |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 2703 | while (proxies_list) { |
Willy Tarreau | 55bc0f8 | 2009-03-15 14:51:53 +0100 | [diff] [blame] | 2704 | struct proxy *next; |
| 2705 | |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 2706 | next = proxies_list->next; |
| 2707 | proxies_list->next = curproxy; |
| 2708 | curproxy = proxies_list; |
Willy Tarreau | 55bc0f8 | 2009-03-15 14:51:53 +0100 | [diff] [blame] | 2709 | if (!next) |
| 2710 | break; |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 2711 | proxies_list = next; |
Willy Tarreau | 55bc0f8 | 2009-03-15 14:51:53 +0100 | [diff] [blame] | 2712 | } |
| 2713 | |
Emeric Brun | fe0979f | 2022-08-18 15:53:21 +0200 | [diff] [blame] | 2714 | /* starting to initialize the main proxies list */ |
| 2715 | init_proxies_list = proxies_list; |
| 2716 | |
| 2717 | init_proxies_list_stage1: |
| 2718 | for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) { |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 2719 | struct switching_rule *rule; |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 2720 | struct server_rule *srule; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 2721 | struct sticking_rule *mrule; |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 2722 | struct logsrv *tmplogsrv; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 2723 | unsigned int next_id; |
Willy Tarreau | 16a2147 | 2012-11-19 12:39:59 +0100 | [diff] [blame] | 2724 | int nbproc; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 2725 | |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 2726 | if (curproxy->uuid < 0) { |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 2727 | /* proxy ID not set, use automatic numbering with first |
| 2728 | * spare entry starting with next_pxid. |
| 2729 | */ |
| 2730 | next_pxid = get_next_id(&used_proxy_id, next_pxid); |
| 2731 | curproxy->conf.id.key = curproxy->uuid = next_pxid; |
| 2732 | eb32_insert(&used_proxy_id, &curproxy->conf.id); |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 2733 | } |
Krzysztof Piotr Oledzki | df5cb9f | 2010-02-05 20:58:27 +0100 | [diff] [blame] | 2734 | next_pxid++; |
| 2735 | |
Willy Tarreau | 95d0810 | 2021-08-26 15:59:44 +0200 | [diff] [blame] | 2736 | if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize >= (256 << 20) && ONLY_ONCE()) { |
| 2737 | ha_alert("global.tune.bufsize must be below 256 MB when HTTP is in use (current value = %d).\n", |
| 2738 | global.tune.bufsize); |
| 2739 | cfgerr++; |
| 2740 | } |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 2741 | |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 2742 | if (curproxy->disabled) { |
Willy Tarreau | 02b092f | 2020-10-07 18:36:54 +0200 | [diff] [blame] | 2743 | /* ensure we don't keep listeners uselessly bound. We |
| 2744 | * can't disable their listeners yet (fdtab not |
| 2745 | * allocated yet) but let's skip them. |
| 2746 | */ |
Dragan Dosen | 7d61a33 | 2019-05-07 14:16:18 +0200 | [diff] [blame] | 2747 | if (curproxy->table) { |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 2748 | ha_free(&curproxy->table->peers.name); |
Dragan Dosen | 7d61a33 | 2019-05-07 14:16:18 +0200 | [diff] [blame] | 2749 | curproxy->table->peers.p = NULL; |
| 2750 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2751 | continue; |
| 2752 | } |
| 2753 | |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 2754 | /* Check multi-process mode compatibility for the current proxy */ |
| 2755 | |
| 2756 | if (curproxy->bind_proc) { |
| 2757 | /* an explicit bind-process was specified, let's check how many |
| 2758 | * processes remain. |
| 2759 | */ |
David Carlier | e6c3941 | 2015-07-02 07:00:17 +0000 | [diff] [blame] | 2760 | nbproc = my_popcountl(curproxy->bind_proc); |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 2761 | |
Willy Tarreau | a38a717 | 2019-02-02 17:11:28 +0100 | [diff] [blame] | 2762 | curproxy->bind_proc &= all_proc_mask; |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 2763 | if (!curproxy->bind_proc && nbproc == 1) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2764 | ha_warning("Proxy '%s': the process specified on the 'bind-process' directive refers to a process number that is higher than global.nbproc. The proxy has been forced to run on process 1 only.\n", curproxy->id); |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 2765 | curproxy->bind_proc = 1; |
| 2766 | } |
| 2767 | else if (!curproxy->bind_proc && nbproc > 1) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2768 | ha_warning("Proxy '%s': all processes specified on the 'bind-process' directive refer to numbers that are all higher than global.nbproc. The directive was ignored and the proxy will run on all processes.\n", curproxy->id); |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 2769 | curproxy->bind_proc = 0; |
| 2770 | } |
| 2771 | } |
| 2772 | |
Willy Tarreau | 3d20958 | 2014-05-09 17:06:11 +0200 | [diff] [blame] | 2773 | /* check and reduce the bind-proc of each listener */ |
| 2774 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
| 2775 | unsigned long mask; |
| 2776 | |
Willy Tarreau | 45a66cc | 2017-11-24 11:28:00 +0100 | [diff] [blame] | 2777 | /* HTTP frontends with "h2" as ALPN/NPN will work in |
| 2778 | * HTTP/2 and absolutely require buffers 16kB or larger. |
| 2779 | */ |
| 2780 | #ifdef USE_OPENSSL |
| 2781 | if (curproxy->mode == PR_MODE_HTTP && global.tune.bufsize < 16384) { |
| 2782 | #ifdef OPENSSL_NPN_NEGOTIATED |
| 2783 | /* check NPN */ |
Willy Tarreau | 4db49c0 | 2018-11-11 10:36:25 +0100 | [diff] [blame] | 2784 | if (bind_conf->ssl_conf.npn_str && strstr(bind_conf->ssl_conf.npn_str, "\002h2")) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2785 | ha_alert("config : HTTP frontend '%s' enables HTTP/2 via NPN at [%s:%d], so global.tune.bufsize must be at least 16384 bytes (%d now).\n", |
| 2786 | curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize); |
Willy Tarreau | 45a66cc | 2017-11-24 11:28:00 +0100 | [diff] [blame] | 2787 | cfgerr++; |
| 2788 | } |
| 2789 | #endif |
| 2790 | #ifdef TLSEXT_TYPE_application_layer_protocol_negotiation |
| 2791 | /* check ALPN */ |
Willy Tarreau | 4db49c0 | 2018-11-11 10:36:25 +0100 | [diff] [blame] | 2792 | if (bind_conf->ssl_conf.alpn_str && strstr(bind_conf->ssl_conf.alpn_str, "\002h2")) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2793 | ha_alert("config : HTTP frontend '%s' enables HTTP/2 via ALPN at [%s:%d], so global.tune.bufsize must be at least 16384 bytes (%d now).\n", |
| 2794 | curproxy->id, bind_conf->file, bind_conf->line, global.tune.bufsize); |
Willy Tarreau | 45a66cc | 2017-11-24 11:28:00 +0100 | [diff] [blame] | 2795 | cfgerr++; |
| 2796 | } |
| 2797 | #endif |
| 2798 | } /* HTTP && bufsize < 16384 */ |
| 2799 | #endif |
| 2800 | |
Willy Tarreau | c477b6f | 2018-07-27 18:07:41 +0200 | [diff] [blame] | 2801 | /* detect and address thread affinity inconsistencies */ |
Willy Tarreau | e26993c | 2020-09-03 07:18:55 +0200 | [diff] [blame] | 2802 | mask = thread_mask(bind_conf->settings.bind_thread); |
Willy Tarreau | 3d95717 | 2019-02-02 18:00:17 +0100 | [diff] [blame] | 2803 | if (!(mask & all_threads_mask)) { |
Willy Tarreau | c477b6f | 2018-07-27 18:07:41 +0200 | [diff] [blame] | 2804 | unsigned long new_mask = 0; |
| 2805 | |
| 2806 | while (mask) { |
Willy Tarreau | 0c026f4 | 2018-08-01 19:12:20 +0200 | [diff] [blame] | 2807 | new_mask |= mask & all_threads_mask; |
Willy Tarreau | c477b6f | 2018-07-27 18:07:41 +0200 | [diff] [blame] | 2808 | mask >>= global.nbthread; |
| 2809 | } |
| 2810 | |
Willy Tarreau | e26993c | 2020-09-03 07:18:55 +0200 | [diff] [blame] | 2811 | bind_conf->settings.bind_thread = new_mask; |
Willy Tarreau | c477b6f | 2018-07-27 18:07:41 +0200 | [diff] [blame] | 2812 | ha_warning("Proxy '%s': the thread range specified on the 'process' directive of 'bind %s' at [%s:%d] only refers to thread numbers out of the range defined by the global 'nbthread' directive. The thread numbers were remapped to existing threads instead (mask 0x%lx).\n", |
| 2813 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line, new_mask); |
| 2814 | } |
| 2815 | |
| 2816 | /* detect process and nbproc affinity inconsistencies */ |
Willy Tarreau | e26993c | 2020-09-03 07:18:55 +0200 | [diff] [blame] | 2817 | mask = proc_mask(bind_conf->settings.bind_proc) & proc_mask(curproxy->bind_proc); |
Willy Tarreau | a36b324 | 2019-02-02 13:14:34 +0100 | [diff] [blame] | 2818 | if (!(mask & all_proc_mask)) { |
| 2819 | mask = proc_mask(curproxy->bind_proc) & all_proc_mask; |
Willy Tarreau | e26993c | 2020-09-03 07:18:55 +0200 | [diff] [blame] | 2820 | nbproc = my_popcountl(bind_conf->settings.bind_proc); |
| 2821 | bind_conf->settings.bind_proc = proc_mask(bind_conf->settings.bind_proc) & mask; |
Willy Tarreau | 3d20958 | 2014-05-09 17:06:11 +0200 | [diff] [blame] | 2822 | |
Willy Tarreau | e26993c | 2020-09-03 07:18:55 +0200 | [diff] [blame] | 2823 | if (!bind_conf->settings.bind_proc && nbproc == 1) { |
Willy Tarreau | a36b324 | 2019-02-02 13:14:34 +0100 | [diff] [blame] | 2824 | ha_warning("Proxy '%s': the process number specified on the 'process' directive of 'bind %s' at [%s:%d] refers to a process not covered by the proxy. This has been fixed by forcing it to run on the proxy's first process only.\n", |
| 2825 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Willy Tarreau | e26993c | 2020-09-03 07:18:55 +0200 | [diff] [blame] | 2826 | bind_conf->settings.bind_proc = mask & ~(mask - 1); |
Willy Tarreau | a36b324 | 2019-02-02 13:14:34 +0100 | [diff] [blame] | 2827 | } |
Willy Tarreau | e26993c | 2020-09-03 07:18:55 +0200 | [diff] [blame] | 2828 | else if (!bind_conf->settings.bind_proc && nbproc > 1) { |
Willy Tarreau | a36b324 | 2019-02-02 13:14:34 +0100 | [diff] [blame] | 2829 | ha_warning("Proxy '%s': the process range specified on the 'process' directive of 'bind %s' at [%s:%d] only refers to processes not covered by the proxy. The directive was ignored so that all of the proxy's processes are used.\n", |
| 2830 | curproxy->id, bind_conf->arg, bind_conf->file, bind_conf->line); |
Willy Tarreau | e26993c | 2020-09-03 07:18:55 +0200 | [diff] [blame] | 2831 | bind_conf->settings.bind_proc = 0; |
Willy Tarreau | a36b324 | 2019-02-02 13:14:34 +0100 | [diff] [blame] | 2832 | } |
Willy Tarreau | 3d20958 | 2014-05-09 17:06:11 +0200 | [diff] [blame] | 2833 | } |
| 2834 | } |
| 2835 | |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 2836 | switch (curproxy->mode) { |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 2837 | case PR_MODE_TCP: |
Willy Tarreau | 915e1eb | 2009-06-22 15:48:36 +0200 | [diff] [blame] | 2838 | cfgerr += proxy_cfg_ensure_no_http(curproxy); |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 2839 | break; |
| 2840 | |
| 2841 | case PR_MODE_HTTP: |
Willy Tarreau | 25320b2 | 2013-03-24 07:22:08 +0100 | [diff] [blame] | 2842 | curproxy->http_needed = 1; |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 2843 | break; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2844 | |
| 2845 | case PR_MODE_CLI: |
| 2846 | cfgerr += proxy_cfg_ensure_no_http(curproxy); |
| 2847 | break; |
Emeric Brun | fe0979f | 2022-08-18 15:53:21 +0200 | [diff] [blame] | 2848 | |
Emeric Brun | 54932b4 | 2020-07-07 09:43:24 +0200 | [diff] [blame] | 2849 | case PR_MODE_SYSLOG: |
Emeric Brun | fe0979f | 2022-08-18 15:53:21 +0200 | [diff] [blame] | 2850 | /* this mode is initialized as the classic tcp proxy */ |
| 2851 | cfgerr += proxy_cfg_ensure_no_http(curproxy); |
| 2852 | break; |
| 2853 | |
Willy Tarreau | a389c9e | 2020-10-07 17:49:42 +0200 | [diff] [blame] | 2854 | case PR_MODE_PEERS: |
Emeric Brun | 54932b4 | 2020-07-07 09:43:24 +0200 | [diff] [blame] | 2855 | case PR_MODES: |
| 2856 | /* should not happen, bug gcc warn missing switch statement */ |
Emeric Brun | fe0979f | 2022-08-18 15:53:21 +0200 | [diff] [blame] | 2857 | ha_alert("config: %s '%s' cannot initialize this proxy mode (peers) in this way. NOTE: PLEASE REPORT THIS TO DEVELOPERS AS YOU'RE NOT SUPPOSED TO BE ABLE TO CREATE A CONFIGURATION TRIGGERING THIS!\n", |
Emeric Brun | 54932b4 | 2020-07-07 09:43:24 +0200 | [diff] [blame] | 2858 | proxy_type_str(curproxy), curproxy->id); |
| 2859 | cfgerr++; |
| 2860 | break; |
Willy Tarreau | ff01a21 | 2009-03-15 13:46:16 +0100 | [diff] [blame] | 2861 | } |
| 2862 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 2863 | if (curproxy != global.cli_fe && (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->conf.listeners)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2864 | ha_warning("config : %s '%s' has no 'bind' directive. Please declare it as a backend if this was intended.\n", |
| 2865 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | f3934b8 | 2015-08-11 11:36:45 +0200 | [diff] [blame] | 2866 | err_code |= ERR_WARN; |
| 2867 | } |
| 2868 | |
Willy Tarreau | 77e0dae | 2020-10-14 15:44:27 +0200 | [diff] [blame] | 2869 | if (curproxy->cap & PR_CAP_BE) { |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 2870 | if (curproxy->lbprm.algo & BE_LB_KIND) { |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 2871 | if (curproxy->options & PR_O_TRANSP) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2872 | ha_alert("config : %s '%s' cannot use both transparent and balance mode.\n", |
| 2873 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 2874 | cfgerr++; |
| 2875 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2876 | #ifdef WE_DONT_SUPPORT_SERVERLESS_LISTENERS |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 2877 | else if (curproxy->srv == NULL) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2878 | ha_alert("config : %s '%s' needs at least 1 server in balance mode.\n", |
| 2879 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 2880 | cfgerr++; |
| 2881 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2882 | #endif |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 2883 | else if (curproxy->options & PR_O_DISPATCH) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2884 | ha_warning("config : dispatch address of %s '%s' will be ignored in balance mode.\n", |
| 2885 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 2886 | err_code |= ERR_WARN; |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 2887 | } |
| 2888 | } |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 2889 | else if (!(curproxy->options & (PR_O_TRANSP | PR_O_DISPATCH | PR_O_HTTP_PROXY))) { |
Willy Tarreau | 3cd9af2 | 2009-03-15 14:06:41 +0100 | [diff] [blame] | 2890 | /* If no LB algo is set in a backend, and we're not in |
| 2891 | * transparent mode, dispatch mode nor proxy mode, we |
| 2892 | * want to use balance roundrobin by default. |
| 2893 | */ |
| 2894 | curproxy->lbprm.algo &= ~BE_LB_ALGO; |
| 2895 | curproxy->lbprm.algo |= BE_LB_ALGO_RR; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 2896 | } |
| 2897 | } |
Willy Tarreau | 193cf93 | 2007-09-17 10:17:23 +0200 | [diff] [blame] | 2898 | |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 2899 | if (curproxy->options & PR_O_DISPATCH) |
| 2900 | curproxy->options &= ~(PR_O_TRANSP | PR_O_HTTP_PROXY); |
| 2901 | else if (curproxy->options & PR_O_HTTP_PROXY) |
| 2902 | curproxy->options &= ~(PR_O_DISPATCH | PR_O_TRANSP); |
| 2903 | else if (curproxy->options & PR_O_TRANSP) |
| 2904 | curproxy->options &= ~(PR_O_DISPATCH | PR_O_HTTP_PROXY); |
Willy Tarreau | 8293658 | 2007-11-30 15:20:09 +0100 | [diff] [blame] | 2905 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 2906 | if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_HTTP_RS)) { |
| 2907 | ha_warning("config : %s '%s' uses http-check rules without 'option httpchk', so the rules are ignored.\n", |
| 2908 | proxy_type_str(curproxy), curproxy->id); |
| 2909 | err_code |= ERR_WARN; |
| 2910 | } |
| 2911 | |
| 2912 | if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_TCPCHK_CHK && |
Christopher Faulet | c0fcbe4 | 2020-06-03 19:00:42 +0200 | [diff] [blame] | 2913 | (curproxy->tcpcheck_rules.flags & TCPCHK_RULES_PROTO_CHK) != TCPCHK_RULES_HTTP_CHK) { |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 2914 | if (curproxy->options & PR_O_DISABLE404) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2915 | ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n", |
| 2916 | "disable-on-404", proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 2917 | err_code |= ERR_WARN; |
| 2918 | curproxy->options &= ~PR_O_DISABLE404; |
| 2919 | } |
| 2920 | if (curproxy->options2 & PR_O2_CHK_SNDST) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2921 | ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option httpchk').\n", |
| 2922 | "send-state", proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 1620ec3 | 2011-08-06 17:05:02 +0200 | [diff] [blame] | 2923 | err_code |= ERR_WARN; |
| 2924 | curproxy->options &= ~PR_O2_CHK_SNDST; |
| 2925 | } |
Willy Tarreau | ef78104 | 2010-01-27 11:53:01 +0100 | [diff] [blame] | 2926 | } |
| 2927 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2928 | if ((curproxy->options2 & PR_O2_CHK_ANY) == PR_O2_EXT_CHK) { |
| 2929 | if (!global.external_check) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2930 | ha_alert("Proxy '%s' : '%s' unable to find required 'global.external-check'.\n", |
| 2931 | curproxy->id, "option external-check"); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2932 | cfgerr++; |
| 2933 | } |
| 2934 | if (!curproxy->check_command) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2935 | ha_alert("Proxy '%s' : '%s' unable to find required 'external-check command'.\n", |
| 2936 | curproxy->id, "option external-check"); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2937 | cfgerr++; |
| 2938 | } |
Willy Tarreau | d96f112 | 2019-12-03 07:07:36 +0100 | [diff] [blame] | 2939 | if (!(global.tune.options & GTUNE_INSECURE_FORK)) { |
| 2940 | ha_warning("Proxy '%s' : 'insecure-fork-wanted' not enabled in the global section, '%s' will likely fail.\n", |
| 2941 | curproxy->id, "option external-check"); |
| 2942 | err_code |= ERR_WARN; |
| 2943 | } |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2944 | } |
| 2945 | |
Simon Horman | 64e3416 | 2015-02-06 11:11:57 +0900 | [diff] [blame] | 2946 | if (curproxy->email_alert.set) { |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 2947 | if (!(curproxy->email_alert.mailers.name && curproxy->email_alert.from && curproxy->email_alert.to)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2948 | ha_warning("config : 'email-alert' will be ignored for %s '%s' (the presence any of " |
| 2949 | "'email-alert from', 'email-alert level' 'email-alert mailers', " |
| 2950 | "'email-alert myhostname', or 'email-alert to' " |
| 2951 | "requires each of 'email-alert from', 'email-alert mailers' and 'email-alert to' " |
| 2952 | "to be present).\n", |
| 2953 | proxy_type_str(curproxy), curproxy->id); |
Simon Horman | 0ba0e4a | 2015-01-30 11:23:00 +0900 | [diff] [blame] | 2954 | err_code |= ERR_WARN; |
| 2955 | free_email_alert(curproxy); |
| 2956 | } |
| 2957 | if (!curproxy->email_alert.myhostname) |
Cyril Bonté | e22bfd6 | 2015-12-04 03:07:07 +0100 | [diff] [blame] | 2958 | curproxy->email_alert.myhostname = strdup(hostname); |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 2959 | } |
| 2960 | |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2961 | if (curproxy->check_command) { |
| 2962 | int clear = 0; |
| 2963 | if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2964 | ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n", |
| 2965 | "external-check command", proxy_type_str(curproxy), curproxy->id); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2966 | err_code |= ERR_WARN; |
| 2967 | clear = 1; |
| 2968 | } |
| 2969 | if (curproxy->check_command[0] != '/' && !curproxy->check_path) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2970 | ha_alert("Proxy '%s': '%s' does not have a leading '/' and 'external-check path' is not set.\n", |
| 2971 | curproxy->id, "external-check command"); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2972 | cfgerr++; |
| 2973 | } |
| 2974 | if (clear) { |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 2975 | ha_free(&curproxy->check_command); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2976 | } |
| 2977 | } |
| 2978 | |
| 2979 | if (curproxy->check_path) { |
| 2980 | if ((curproxy->options2 & PR_O2_CHK_ANY) != PR_O2_EXT_CHK) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2981 | ha_warning("config : '%s' will be ignored for %s '%s' (requires 'option external-check').\n", |
| 2982 | "external-check path", proxy_type_str(curproxy), curproxy->id); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2983 | err_code |= ERR_WARN; |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 2984 | ha_free(&curproxy->check_path); |
Simon Horman | 98637e5 | 2014-06-20 12:30:16 +0900 | [diff] [blame] | 2985 | } |
| 2986 | } |
| 2987 | |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 2988 | /* if a default backend was specified, let's find it */ |
| 2989 | if (curproxy->defbe.name) { |
| 2990 | struct proxy *target; |
| 2991 | |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 2992 | target = proxy_be_by_name(curproxy->defbe.name); |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 2993 | if (!target) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2994 | ha_alert("Proxy '%s': unable to find required default_backend: '%s'.\n", |
| 2995 | curproxy->id, curproxy->defbe.name); |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 2996 | cfgerr++; |
| 2997 | } else if (target == curproxy) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2998 | ha_alert("Proxy '%s': loop detected for default_backend: '%s'.\n", |
| 2999 | curproxy->id, curproxy->defbe.name); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 3000 | cfgerr++; |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 3001 | } else if (target->mode != curproxy->mode && |
| 3002 | !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) { |
| 3003 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3004 | ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) as its default backend (see 'mode').\n", |
| 3005 | proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id, |
| 3006 | curproxy->conf.file, curproxy->conf.line, |
| 3007 | proxy_mode_str(target->mode), proxy_type_str(target), target->id, |
| 3008 | target->conf.file, target->conf.line); |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 3009 | cfgerr++; |
Willy Tarreau | 5fdfb91 | 2007-01-01 23:11:07 +0100 | [diff] [blame] | 3010 | } else { |
| 3011 | free(curproxy->defbe.name); |
| 3012 | curproxy->defbe.be = target; |
Willy Tarreau | ff67813 | 2012-02-13 14:32:34 +0100 | [diff] [blame] | 3013 | /* Emit a warning if this proxy also has some servers */ |
| 3014 | if (curproxy->srv) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3015 | ha_warning("In proxy '%s', the 'default_backend' rule always has precedence over the servers, which will never be used.\n", |
| 3016 | curproxy->id); |
Willy Tarreau | ff67813 | 2012-02-13 14:32:34 +0100 | [diff] [blame] | 3017 | err_code |= ERR_WARN; |
| 3018 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3019 | } |
| 3020 | } |
| 3021 | |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3022 | /* find the target proxy for 'use_backend' rules */ |
| 3023 | list_for_each_entry(rule, &curproxy->switching_rules, list) { |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3024 | struct proxy *target; |
Bertrand Jacquin | 702d44f | 2013-11-19 11:43:06 +0100 | [diff] [blame] | 3025 | struct logformat_node *node; |
| 3026 | char *pxname; |
| 3027 | |
| 3028 | /* Try to parse the string as a log format expression. If the result |
| 3029 | * of the parsing is only one entry containing a simple string, then |
| 3030 | * it's a standard string corresponding to a static rule, thus the |
| 3031 | * parsing is cancelled and be.name is restored to be resolved. |
| 3032 | */ |
| 3033 | pxname = rule->be.name; |
| 3034 | LIST_INIT(&rule->be.expr); |
Thierry FOURNIER / OZON.IO | 4ed1c95 | 2016-11-24 23:57:54 +0100 | [diff] [blame] | 3035 | curproxy->conf.args.ctx = ARGC_UBK; |
| 3036 | curproxy->conf.args.file = rule->file; |
| 3037 | curproxy->conf.args.line = rule->line; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 3038 | err = NULL; |
| 3039 | if (!parse_logformat_string(pxname, curproxy, &rule->be.expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3040 | ha_alert("Parsing [%s:%d]: failed to parse use_backend rule '%s' : %s.\n", |
| 3041 | rule->file, rule->line, pxname, err); |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 3042 | free(err); |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 3043 | cfgerr++; |
| 3044 | continue; |
| 3045 | } |
Bertrand Jacquin | 702d44f | 2013-11-19 11:43:06 +0100 | [diff] [blame] | 3046 | node = LIST_NEXT(&rule->be.expr, struct logformat_node *, list); |
| 3047 | |
| 3048 | if (!LIST_ISEMPTY(&rule->be.expr)) { |
| 3049 | if (node->type != LOG_FMT_TEXT || node->list.n != &rule->be.expr) { |
| 3050 | rule->dynamic = 1; |
| 3051 | free(pxname); |
| 3052 | continue; |
| 3053 | } |
Christopher Faulet | f82ea4a | 2020-05-07 15:59:33 +0200 | [diff] [blame] | 3054 | /* Only one element in the list, a simple string: free the expression and |
| 3055 | * fall back to static rule |
| 3056 | */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3057 | LIST_DELETE(&node->list); |
Bertrand Jacquin | 702d44f | 2013-11-19 11:43:06 +0100 | [diff] [blame] | 3058 | free(node->arg); |
| 3059 | free(node); |
| 3060 | } |
| 3061 | |
| 3062 | rule->dynamic = 0; |
| 3063 | rule->be.name = pxname; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3064 | |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 3065 | target = proxy_be_by_name(rule->be.name); |
Krzysztof Piotr Oledzki | 6eb730d | 2007-11-03 23:41:58 +0100 | [diff] [blame] | 3066 | if (!target) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3067 | ha_alert("Proxy '%s': unable to find required use_backend: '%s'.\n", |
| 3068 | curproxy->id, rule->be.name); |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3069 | cfgerr++; |
| 3070 | } else if (target == curproxy) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3071 | ha_alert("Proxy '%s': loop detected for use_backend: '%s'.\n", |
| 3072 | curproxy->id, rule->be.name); |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3073 | cfgerr++; |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 3074 | } else if (target->mode != curproxy->mode && |
| 3075 | !(curproxy->mode == PR_MODE_TCP && target->mode == PR_MODE_HTTP)) { |
| 3076 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3077 | ha_alert("%s %s '%s' (%s:%d) tries to use incompatible %s %s '%s' (%s:%d) in a 'use_backend' rule (see 'mode').\n", |
| 3078 | proxy_mode_str(curproxy->mode), proxy_type_str(curproxy), curproxy->id, |
| 3079 | curproxy->conf.file, curproxy->conf.line, |
| 3080 | proxy_mode_str(target->mode), proxy_type_str(target), target->id, |
| 3081 | target->conf.file, target->conf.line); |
Willy Tarreau | afb3992 | 2015-05-26 12:04:09 +0200 | [diff] [blame] | 3082 | cfgerr++; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3083 | } else { |
Willy Tarreau | 35cd734 | 2021-02-26 20:51:47 +0100 | [diff] [blame] | 3084 | ha_free(&rule->be.name); |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3085 | rule->be.backend = target; |
| 3086 | } |
Christopher Faulet | 581db2b | 2021-03-26 10:02:46 +0100 | [diff] [blame] | 3087 | err_code |= warnif_tcp_http_cond(curproxy, rule->cond); |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 3088 | } |
| 3089 | |
Willy Tarreau | 64ab607 | 2014-09-16 12:17:36 +0200 | [diff] [blame] | 3090 | /* find the target server for 'use_server' rules */ |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 3091 | list_for_each_entry(srule, &curproxy->server_rules, list) { |
Jerome Magnin | 824186b | 2020-03-29 09:37:12 +0200 | [diff] [blame] | 3092 | struct server *target; |
| 3093 | struct logformat_node *node; |
| 3094 | char *server_name; |
| 3095 | |
| 3096 | /* We try to parse the string as a log format expression. If the result of the parsing |
| 3097 | * is only one entry containing a single string, then it's a standard string corresponding |
| 3098 | * to a static rule, thus the parsing is cancelled and we fall back to setting srv.ptr. |
| 3099 | */ |
| 3100 | server_name = srule->srv.name; |
| 3101 | LIST_INIT(&srule->expr); |
| 3102 | curproxy->conf.args.ctx = ARGC_USRV; |
| 3103 | err = NULL; |
| 3104 | if (!parse_logformat_string(server_name, curproxy, &srule->expr, 0, SMP_VAL_FE_HRQ_HDR, &err)) { |
| 3105 | ha_alert("Parsing [%s:%d]; use-server rule failed to parse log-format '%s' : %s.\n", |
| 3106 | srule->file, srule->line, server_name, err); |
| 3107 | free(err); |
| 3108 | cfgerr++; |
| 3109 | continue; |
| 3110 | } |
| 3111 | node = LIST_NEXT(&srule->expr, struct logformat_node *, list); |
| 3112 | |
| 3113 | if (!LIST_ISEMPTY(&srule->expr)) { |
| 3114 | if (node->type != LOG_FMT_TEXT || node->list.n != &srule->expr) { |
| 3115 | srule->dynamic = 1; |
| 3116 | free(server_name); |
| 3117 | continue; |
| 3118 | } |
Christopher Faulet | f82ea4a | 2020-05-07 15:59:33 +0200 | [diff] [blame] | 3119 | /* Only one element in the list, a simple string: free the expression and |
| 3120 | * fall back to static rule |
| 3121 | */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3122 | LIST_DELETE(&node->list); |
Jerome Magnin | 824186b | 2020-03-29 09:37:12 +0200 | [diff] [blame] | 3123 | free(node->arg); |
| 3124 | free(node); |
| 3125 | } |
| 3126 | |
| 3127 | srule->dynamic = 0; |
| 3128 | srule->srv.name = server_name; |
| 3129 | target = findserver(curproxy, srule->srv.name); |
Christopher Faulet | 581db2b | 2021-03-26 10:02:46 +0100 | [diff] [blame] | 3130 | err_code |= warnif_tcp_http_cond(curproxy, srule->cond); |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 3131 | |
| 3132 | if (!target) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3133 | ha_alert("config : %s '%s' : unable to find server '%s' referenced in a 'use-server' rule.\n", |
| 3134 | proxy_type_str(curproxy), curproxy->id, srule->srv.name); |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 3135 | cfgerr++; |
| 3136 | continue; |
| 3137 | } |
Willy Tarreau | 35cd734 | 2021-02-26 20:51:47 +0100 | [diff] [blame] | 3138 | ha_free(&srule->srv.name); |
Willy Tarreau | 4a5cade | 2012-04-05 21:09:48 +0200 | [diff] [blame] | 3139 | srule->srv.ptr = target; |
Willy Tarreau | 55ea757 | 2007-06-17 19:56:27 +0200 | [diff] [blame] | 3140 | } |
| 3141 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3142 | /* find the target table for 'stick' rules */ |
| 3143 | list_for_each_entry(mrule, &curproxy->sticking_rules, list) { |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3144 | struct stktable *target; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3145 | |
Emeric Brun | 1d33b29 | 2010-01-04 15:47:17 +0100 | [diff] [blame] | 3146 | curproxy->be_req_ana |= AN_REQ_STICKING_RULES; |
| 3147 | if (mrule->flags & STK_IS_STORE) |
| 3148 | curproxy->be_rsp_ana |= AN_RES_STORE_RULES; |
| 3149 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3150 | if (mrule->table.name) |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3151 | target = stktable_find_by_name(mrule->table.name); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3152 | else |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3153 | target = curproxy->table; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3154 | |
| 3155 | if (!target) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3156 | ha_alert("Proxy '%s': unable to find stick-table '%s'.\n", |
Willy Tarreau | 508d232 | 2020-01-24 07:19:34 +0100 | [diff] [blame] | 3157 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3158 | cfgerr++; |
| 3159 | } |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3160 | else if (!stktable_compatible_sample(mrule->expr, target->type)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3161 | ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n", |
| 3162 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3163 | cfgerr++; |
| 3164 | } |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3165 | else if (target->proxy && curproxy->bind_proc & ~target->proxy->bind_proc) { |
Willy Tarreau | 151e1ca | 2019-02-05 11:38:38 +0100 | [diff] [blame] | 3166 | ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n", |
| 3167 | curproxy->id, target->id, curproxy->id); |
Willy Tarreau | 1a0fe3b | 2019-02-06 10:25:07 +0100 | [diff] [blame] | 3168 | cfgerr++; |
Willy Tarreau | 151e1ca | 2019-02-05 11:38:38 +0100 | [diff] [blame] | 3169 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3170 | else { |
Willy Tarreau | 35cd734 | 2021-02-26 20:51:47 +0100 | [diff] [blame] | 3171 | ha_free(&mrule->table.name); |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3172 | mrule->table.t = target; |
| 3173 | stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL); |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 3174 | stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL); |
Frédéric Lécaille | 9c3a0ce | 2019-09-02 14:02:28 +0200 | [diff] [blame] | 3175 | if (!in_proxies_list(target->proxies_list, curproxy)) { |
| 3176 | curproxy->next_stkt_ref = target->proxies_list; |
| 3177 | target->proxies_list = curproxy; |
| 3178 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3179 | } |
Christopher Faulet | 581db2b | 2021-03-26 10:02:46 +0100 | [diff] [blame] | 3180 | err_code |= warnif_tcp_http_cond(curproxy, mrule->cond); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3181 | } |
| 3182 | |
| 3183 | /* find the target table for 'store response' rules */ |
| 3184 | list_for_each_entry(mrule, &curproxy->storersp_rules, list) { |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3185 | struct stktable *target; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3186 | |
Emeric Brun | 1d33b29 | 2010-01-04 15:47:17 +0100 | [diff] [blame] | 3187 | curproxy->be_rsp_ana |= AN_RES_STORE_RULES; |
| 3188 | |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3189 | if (mrule->table.name) |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3190 | target = stktable_find_by_name(mrule->table.name); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3191 | else |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3192 | target = curproxy->table; |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3193 | |
| 3194 | if (!target) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3195 | ha_alert("Proxy '%s': unable to find store table '%s'.\n", |
Willy Tarreau | 508d232 | 2020-01-24 07:19:34 +0100 | [diff] [blame] | 3196 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3197 | cfgerr++; |
| 3198 | } |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3199 | else if (!stktable_compatible_sample(mrule->expr, target->type)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3200 | ha_alert("Proxy '%s': type of fetch not usable with type of stick-table '%s'.\n", |
| 3201 | curproxy->id, mrule->table.name ? mrule->table.name : curproxy->id); |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3202 | cfgerr++; |
| 3203 | } |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3204 | else if (target->proxy && (curproxy->bind_proc & ~target->proxy->bind_proc)) { |
Willy Tarreau | 151e1ca | 2019-02-05 11:38:38 +0100 | [diff] [blame] | 3205 | ha_alert("Proxy '%s': stick-table '%s' referenced 'stick-store' rule not present on all processes covered by proxy '%s'.\n", |
| 3206 | curproxy->id, target->id, curproxy->id); |
Willy Tarreau | 1a0fe3b | 2019-02-06 10:25:07 +0100 | [diff] [blame] | 3207 | cfgerr++; |
Willy Tarreau | 151e1ca | 2019-02-05 11:38:38 +0100 | [diff] [blame] | 3208 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3209 | else { |
Willy Tarreau | 35cd734 | 2021-02-26 20:51:47 +0100 | [diff] [blame] | 3210 | ha_free(&mrule->table.name); |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3211 | mrule->table.t = target; |
| 3212 | stktable_alloc_data_type(target, STKTABLE_DT_SERVER_ID, NULL); |
Thayne McCombs | 92149f9 | 2020-11-20 01:28:26 -0700 | [diff] [blame] | 3213 | stktable_alloc_data_type(target, STKTABLE_DT_SERVER_KEY, NULL); |
Frédéric Lécaille | 9c3a0ce | 2019-09-02 14:02:28 +0200 | [diff] [blame] | 3214 | if (!in_proxies_list(target->proxies_list, curproxy)) { |
| 3215 | curproxy->next_stkt_ref = target->proxies_list; |
| 3216 | target->proxies_list = curproxy; |
| 3217 | } |
Emeric Brun | b982a3d | 2010-01-04 15:45:53 +0100 | [diff] [blame] | 3218 | } |
| 3219 | } |
| 3220 | |
Christopher Faulet | 42c6cf9 | 2021-03-25 17:19:04 +0100 | [diff] [blame] | 3221 | /* check validity for 'tcp-request' layer 4/5/6/7 rules */ |
| 3222 | cfgerr += check_action_rules(&curproxy->tcp_req.l4_rules, curproxy, &err_code); |
| 3223 | cfgerr += check_action_rules(&curproxy->tcp_req.l5_rules, curproxy, &err_code); |
| 3224 | cfgerr += check_action_rules(&curproxy->tcp_req.inspect_rules, curproxy, &err_code); |
| 3225 | cfgerr += check_action_rules(&curproxy->tcp_rep.inspect_rules, curproxy, &err_code); |
| 3226 | cfgerr += check_action_rules(&curproxy->http_req_rules, curproxy, &err_code); |
| 3227 | cfgerr += check_action_rules(&curproxy->http_res_rules, curproxy, &err_code); |
| 3228 | cfgerr += check_action_rules(&curproxy->http_after_res_rules, curproxy, &err_code); |
Christopher Faulet | 6d0c3df | 2020-01-22 09:26:35 +0100 | [diff] [blame] | 3229 | |
Christopher Faulet | 5eef018 | 2021-03-31 17:13:49 +0200 | [diff] [blame] | 3230 | /* Warn is a switch-mode http is used on a TCP listener with servers but no backend */ |
| 3231 | if (!curproxy->defbe.name && LIST_ISEMPTY(&curproxy->switching_rules) && curproxy->srv) { |
| 3232 | if ((curproxy->options & PR_O_HTTP_UPG) && curproxy->mode == PR_MODE_TCP) |
| 3233 | ha_warning("Proxy '%s' : 'switch-mode http' configured for a %s %s with no backend. " |
| 3234 | "Incoming connections upgraded to HTTP cannot be routed to TCP servers\n", |
| 3235 | curproxy->id, proxy_mode_str(curproxy->mode), proxy_type_str(curproxy)); |
| 3236 | } |
| 3237 | |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3238 | if (curproxy->table && curproxy->table->peers.name) { |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 3239 | struct peers *curpeers; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 3240 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 3241 | for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) { |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3242 | if (strcmp(curpeers->id, curproxy->table->peers.name) == 0) { |
Willy Tarreau | 35cd734 | 2021-02-26 20:51:47 +0100 | [diff] [blame] | 3243 | ha_free(&curproxy->table->peers.name); |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3244 | curproxy->table->peers.p = curpeers; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 3245 | break; |
| 3246 | } |
| 3247 | } |
| 3248 | |
| 3249 | if (!curpeers) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3250 | ha_alert("Proxy '%s': unable to find sync peers '%s'.\n", |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3251 | curproxy->id, curproxy->table->peers.name); |
Willy Tarreau | 35cd734 | 2021-02-26 20:51:47 +0100 | [diff] [blame] | 3252 | ha_free(&curproxy->table->peers.name); |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3253 | curproxy->table->peers.p = NULL; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 3254 | cfgerr++; |
| 3255 | } |
Willy Tarreau | 1ad64ac | 2020-09-24 08:48:08 +0200 | [diff] [blame] | 3256 | else if (curpeers->disabled) { |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 3257 | /* silently disable this peers section */ |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3258 | curproxy->table->peers.p = NULL; |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 3259 | } |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 3260 | else if (!curpeers->peers_fe) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3261 | ha_alert("Proxy '%s': unable to find local peer '%s' in peers section '%s'.\n", |
| 3262 | curproxy->id, localpeer, curpeers->id); |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 3263 | curproxy->table->peers.p = NULL; |
Emeric Brun | 32da3c4 | 2010-09-23 18:39:19 +0200 | [diff] [blame] | 3264 | cfgerr++; |
| 3265 | } |
| 3266 | } |
| 3267 | |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 3268 | |
| 3269 | if (curproxy->email_alert.mailers.name) { |
| 3270 | struct mailers *curmailers = mailers; |
| 3271 | |
| 3272 | for (curmailers = mailers; curmailers; curmailers = curmailers->next) { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 3273 | if (strcmp(curmailers->id, curproxy->email_alert.mailers.name) == 0) |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 3274 | break; |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 3275 | } |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 3276 | if (!curmailers) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3277 | ha_alert("Proxy '%s': unable to find mailers '%s'.\n", |
| 3278 | curproxy->id, curproxy->email_alert.mailers.name); |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 3279 | free_email_alert(curproxy); |
| 3280 | cfgerr++; |
| 3281 | } |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3282 | else { |
| 3283 | err = NULL; |
| 3284 | if (init_email_alert(curmailers, curproxy, &err)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3285 | ha_alert("Proxy '%s': %s.\n", curproxy->id, err); |
Christopher Faulet | 0108bb3 | 2017-10-20 21:34:32 +0200 | [diff] [blame] | 3286 | free(err); |
| 3287 | cfgerr++; |
| 3288 | } |
| 3289 | } |
Simon Horman | 9dc4996 | 2015-01-30 11:22:59 +0900 | [diff] [blame] | 3290 | } |
| 3291 | |
Willy Tarreau | 5bbc676 | 2021-02-12 11:49:25 +0100 | [diff] [blame] | 3292 | if (curproxy->uri_auth && !(curproxy->uri_auth->flags & STAT_CONVDONE) && |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3293 | !LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules) && |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3294 | (curproxy->uri_auth->userlist || curproxy->uri_auth->auth_realm )) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3295 | ha_alert("%s '%s': stats 'auth'/'realm' and 'http-request' can't be used at the same time.\n", |
| 3296 | "proxy", curproxy->id); |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3297 | cfgerr++; |
| 3298 | goto out_uri_auth_compat; |
| 3299 | } |
| 3300 | |
Willy Tarreau | ee4f5f8 | 2019-10-09 09:59:22 +0200 | [diff] [blame] | 3301 | if (curproxy->uri_auth && curproxy->uri_auth->userlist && |
Willy Tarreau | 5bbc676 | 2021-02-12 11:49:25 +0100 | [diff] [blame] | 3302 | (!(curproxy->uri_auth->flags & STAT_CONVDONE) || |
Willy Tarreau | ee4f5f8 | 2019-10-09 09:59:22 +0200 | [diff] [blame] | 3303 | LIST_ISEMPTY(&curproxy->uri_auth->http_req_rules))) { |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 3304 | const char *uri_auth_compat_req[10]; |
Thierry FOURNIER | a28a942 | 2015-08-04 19:35:46 +0200 | [diff] [blame] | 3305 | struct act_rule *rule; |
Amaury Denoyelle | 3efee65 | 2021-03-08 17:31:39 +0100 | [diff] [blame] | 3306 | i = 0; |
| 3307 | |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 3308 | /* build the ACL condition from scratch. We're relying on anonymous ACLs for that */ |
| 3309 | uri_auth_compat_req[i++] = "auth"; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3310 | |
| 3311 | if (curproxy->uri_auth->auth_realm) { |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 3312 | uri_auth_compat_req[i++] = "realm"; |
| 3313 | uri_auth_compat_req[i++] = curproxy->uri_auth->auth_realm; |
| 3314 | } |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3315 | |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 3316 | uri_auth_compat_req[i++] = "unless"; |
| 3317 | uri_auth_compat_req[i++] = "{"; |
| 3318 | uri_auth_compat_req[i++] = "http_auth(.internal-stats-userlist)"; |
| 3319 | uri_auth_compat_req[i++] = "}"; |
| 3320 | uri_auth_compat_req[i++] = ""; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3321 | |
Willy Tarreau | ff011f2 | 2011-01-06 17:51:27 +0100 | [diff] [blame] | 3322 | rule = parse_http_req_cond(uri_auth_compat_req, "internal-stats-auth-compat", 0, curproxy); |
| 3323 | if (!rule) { |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 3324 | cfgerr++; |
| 3325 | break; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3326 | } |
| 3327 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 3328 | LIST_APPEND(&curproxy->uri_auth->http_req_rules, &rule->list); |
Willy Tarreau | 95fa469 | 2010-02-01 13:05:50 +0100 | [diff] [blame] | 3329 | |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3330 | if (curproxy->uri_auth->auth_realm) { |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 3331 | ha_free(&curproxy->uri_auth->auth_realm); |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3332 | } |
Willy Tarreau | 5bbc676 | 2021-02-12 11:49:25 +0100 | [diff] [blame] | 3333 | curproxy->uri_auth->flags |= STAT_CONVDONE; |
Krzysztof Piotr Oledzki | 8c8bd45 | 2010-01-29 19:29:32 +0100 | [diff] [blame] | 3334 | } |
| 3335 | out_uri_auth_compat: |
| 3336 | |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 3337 | /* check whether we have a log server that uses RFC5424 log format */ |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 3338 | list_for_each_entry(tmplogsrv, &curproxy->logsrvs, list) { |
Dragan Dosen | 43885c7 | 2015-10-01 13:18:13 +0200 | [diff] [blame] | 3339 | if (tmplogsrv->format == LOG_FORMAT_RFC5424) { |
| 3340 | if (!curproxy->conf.logformat_sd_string) { |
| 3341 | /* set the default logformat_sd_string */ |
| 3342 | curproxy->conf.logformat_sd_string = default_rfc5424_sd_log_format; |
| 3343 | } |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 3344 | break; |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 3345 | } |
Dragan Dosen | 1322d09 | 2015-09-22 16:05:32 +0200 | [diff] [blame] | 3346 | } |
Dragan Dosen | 68d2e3a | 2015-09-19 22:35:44 +0200 | [diff] [blame] | 3347 | |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 3348 | /* compile the log format */ |
| 3349 | if (!(curproxy->cap & PR_CAP_FE)) { |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 3350 | if (curproxy->conf.logformat_string != default_http_log_format && |
| 3351 | curproxy->conf.logformat_string != default_tcp_log_format && |
| 3352 | curproxy->conf.logformat_string != clf_http_log_format) |
| 3353 | free(curproxy->conf.logformat_string); |
| 3354 | curproxy->conf.logformat_string = NULL; |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 3355 | ha_free(&curproxy->conf.lfs_file); |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 3356 | curproxy->conf.lfs_line = 0; |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 3357 | |
| 3358 | if (curproxy->conf.logformat_sd_string != default_rfc5424_sd_log_format) |
| 3359 | free(curproxy->conf.logformat_sd_string); |
| 3360 | curproxy->conf.logformat_sd_string = NULL; |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 3361 | ha_free(&curproxy->conf.lfsd_file); |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 3362 | curproxy->conf.lfsd_line = 0; |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 3363 | } |
| 3364 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 3365 | if (curproxy->conf.logformat_string) { |
| 3366 | curproxy->conf.args.ctx = ARGC_LOG; |
| 3367 | curproxy->conf.args.file = curproxy->conf.lfs_file; |
| 3368 | curproxy->conf.args.line = curproxy->conf.lfs_line; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 3369 | err = NULL; |
Dragan Dosen | 1e3b16f | 2020-06-23 18:16:44 +0200 | [diff] [blame] | 3370 | if (!parse_logformat_string(curproxy->conf.logformat_string, curproxy, &curproxy->logformat, |
| 3371 | LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES, |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 3372 | SMP_VAL_FE_LOG_END, &err)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3373 | ha_alert("Parsing [%s:%d]: failed to parse log-format : %s.\n", |
| 3374 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, err); |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 3375 | free(err); |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 3376 | cfgerr++; |
| 3377 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 3378 | curproxy->conf.args.file = NULL; |
| 3379 | curproxy->conf.args.line = 0; |
| 3380 | } |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 3381 | |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 3382 | if (curproxy->conf.logformat_sd_string) { |
| 3383 | curproxy->conf.args.ctx = ARGC_LOGSD; |
| 3384 | curproxy->conf.args.file = curproxy->conf.lfsd_file; |
| 3385 | curproxy->conf.args.line = curproxy->conf.lfsd_line; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 3386 | err = NULL; |
Dragan Dosen | 1e3b16f | 2020-06-23 18:16:44 +0200 | [diff] [blame] | 3387 | if (!parse_logformat_string(curproxy->conf.logformat_sd_string, curproxy, &curproxy->logformat_sd, |
| 3388 | LOG_OPT_MANDATORY|LOG_OPT_MERGE_SPACES, |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 3389 | SMP_VAL_FE_LOG_END, &err)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3390 | ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n", |
| 3391 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, err); |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 3392 | free(err); |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 3393 | cfgerr++; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 3394 | } else if (!add_to_logformat_list(NULL, NULL, LF_SEPARATOR, &curproxy->logformat_sd, &err)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3395 | ha_alert("Parsing [%s:%d]: failed to parse log-format-sd : %s.\n", |
| 3396 | curproxy->conf.lfs_file, curproxy->conf.lfs_line, err); |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 3397 | free(err); |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 3398 | cfgerr++; |
| 3399 | } |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 3400 | curproxy->conf.args.file = NULL; |
| 3401 | curproxy->conf.args.line = 0; |
| 3402 | } |
| 3403 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 3404 | if (curproxy->conf.uniqueid_format_string) { |
Christopher Faulet | 5f802b3 | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 3405 | int where = 0; |
| 3406 | |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 3407 | curproxy->conf.args.ctx = ARGC_UIF; |
| 3408 | curproxy->conf.args.file = curproxy->conf.uif_file; |
| 3409 | curproxy->conf.args.line = curproxy->conf.uif_line; |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 3410 | err = NULL; |
Christopher Faulet | 5f802b3 | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 3411 | if (curproxy->cap & PR_CAP_FE) |
| 3412 | where |= SMP_VAL_FE_HRQ_HDR; |
| 3413 | if (curproxy->cap & PR_CAP_BE) |
| 3414 | where |= SMP_VAL_BE_HRQ_HDR; |
Dragan Dosen | 1e3b16f | 2020-06-23 18:16:44 +0200 | [diff] [blame] | 3415 | if (!parse_logformat_string(curproxy->conf.uniqueid_format_string, curproxy, &curproxy->format_unique_id, |
Christopher Faulet | 5f802b3 | 2021-10-13 17:22:17 +0200 | [diff] [blame] | 3416 | LOG_OPT_HTTP|LOG_OPT_MERGE_SPACES, where, &err)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3417 | ha_alert("Parsing [%s:%d]: failed to parse unique-id : %s.\n", |
| 3418 | curproxy->conf.uif_file, curproxy->conf.uif_line, err); |
Thierry FOURNIER / OZON.IO | 8a4e442 | 2016-11-23 00:41:28 +0100 | [diff] [blame] | 3419 | free(err); |
Thierry FOURNIER / OZON.IO | 59fd511 | 2016-11-22 23:50:02 +0100 | [diff] [blame] | 3420 | cfgerr++; |
| 3421 | } |
Willy Tarreau | 62a6123 | 2013-04-12 18:13:46 +0200 | [diff] [blame] | 3422 | curproxy->conf.args.file = NULL; |
| 3423 | curproxy->conf.args.line = 0; |
| 3424 | } |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 3425 | |
Thierry FOURNIER | 9eec0a6 | 2014-01-22 18:38:02 +0100 | [diff] [blame] | 3426 | /* only now we can check if some args remain unresolved. |
| 3427 | * This must be done after the users and groups resolution. |
| 3428 | */ |
Willy Tarreau | 77e6a4e | 2021-03-26 16:11:55 +0100 | [diff] [blame] | 3429 | err = NULL; |
| 3430 | i = smp_resolve_args(curproxy, &err); |
| 3431 | cfgerr += i; |
| 3432 | if (i) { |
| 3433 | indent_msg(&err, 8); |
| 3434 | ha_alert("%s%s\n", i > 1 ? "multiple argument resolution errors:" : "", err); |
| 3435 | ha_free(&err); |
| 3436 | } else |
Willy Tarreau | a4312fa | 2013-04-02 16:34:32 +0200 | [diff] [blame] | 3437 | cfgerr += acl_find_targets(curproxy); |
Krzysztof Piotr Oledzki | f9423ae | 2010-01-29 19:26:18 +0100 | [diff] [blame] | 3438 | |
Willy Tarreau | 2738a14 | 2006-07-08 17:28:09 +0200 | [diff] [blame] | 3439 | if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) && |
Willy Tarreau | 0c303ee | 2008-07-07 00:09:58 +0200 | [diff] [blame] | 3440 | (((curproxy->cap & PR_CAP_FE) && !curproxy->timeout.client) || |
Willy Tarreau | d825eef | 2007-05-12 22:35:00 +0200 | [diff] [blame] | 3441 | ((curproxy->cap & PR_CAP_BE) && (curproxy->srv) && |
Willy Tarreau | ce887fd | 2012-05-12 12:50:00 +0200 | [diff] [blame] | 3442 | (!curproxy->timeout.connect || |
| 3443 | (!curproxy->timeout.server && (curproxy->mode == PR_MODE_HTTP || !curproxy->timeout.tunnel)))))) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3444 | ha_warning("config : missing timeouts for %s '%s'.\n" |
| 3445 | " | While not properly invalid, you will certainly encounter various problems\n" |
| 3446 | " | with such a configuration. To fix this, please ensure that all following\n" |
| 3447 | " | timeouts are set to a non-zero value: 'client', 'connect', 'server'.\n", |
| 3448 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 3449 | err_code |= ERR_WARN; |
Willy Tarreau | 2738a14 | 2006-07-08 17:28:09 +0200 | [diff] [blame] | 3450 | } |
Willy Tarreau | f3c6920 | 2006-07-09 16:42:34 +0200 | [diff] [blame] | 3451 | |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 3452 | /* Historically, the tarpit and queue timeouts were inherited from contimeout. |
| 3453 | * We must still support older configurations, so let's find out whether those |
| 3454 | * parameters have been set or must be copied from contimeouts. |
| 3455 | */ |
Willy Tarreau | 937c3ea | 2021-02-12 11:14:35 +0100 | [diff] [blame] | 3456 | if (!curproxy->timeout.tarpit) |
| 3457 | curproxy->timeout.tarpit = curproxy->timeout.connect; |
| 3458 | if ((curproxy->cap & PR_CAP_BE) && !curproxy->timeout.queue) |
| 3459 | curproxy->timeout.queue = curproxy->timeout.connect; |
Willy Tarreau | 1fa3126 | 2007-12-03 00:36:16 +0100 | [diff] [blame] | 3460 | |
Christopher Faulet | e5870d8 | 2020-04-15 11:32:03 +0200 | [diff] [blame] | 3461 | if ((curproxy->tcpcheck_rules.flags & TCPCHK_RULES_UNUSED_TCP_RS)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3462 | ha_warning("config : %s '%s' uses tcp-check rules without 'option tcp-check', so the rules are ignored.\n", |
| 3463 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 215663d | 2014-06-13 18:30:23 +0200 | [diff] [blame] | 3464 | err_code |= ERR_WARN; |
| 3465 | } |
| 3466 | |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 3467 | /* ensure that cookie capture length is not too large */ |
| 3468 | if (curproxy->capture_len >= global.tune.cookie_len) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3469 | ha_warning("config : truncating capture length to %d bytes for %s '%s'.\n", |
| 3470 | global.tune.cookie_len - 1, proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | 193b8c6 | 2012-11-22 00:17:38 +0100 | [diff] [blame] | 3471 | err_code |= ERR_WARN; |
| 3472 | curproxy->capture_len = global.tune.cookie_len - 1; |
| 3473 | } |
| 3474 | |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 3475 | /* The small pools required for the capture lists */ |
Willy Tarreau | 9a54e13 | 2012-03-24 08:33:05 +0100 | [diff] [blame] | 3476 | if (curproxy->nb_req_cap) { |
Willy Tarreau | d9ed3d2 | 2014-06-13 12:23:06 +0200 | [diff] [blame] | 3477 | curproxy->req_cap_pool = create_pool("ptrcap", |
| 3478 | curproxy->nb_req_cap * sizeof(char *), |
| 3479 | MEM_F_SHARED); |
Willy Tarreau | 9a54e13 | 2012-03-24 08:33:05 +0100 | [diff] [blame] | 3480 | } |
| 3481 | |
| 3482 | if (curproxy->nb_rsp_cap) { |
Willy Tarreau | d9ed3d2 | 2014-06-13 12:23:06 +0200 | [diff] [blame] | 3483 | curproxy->rsp_cap_pool = create_pool("ptrcap", |
| 3484 | curproxy->nb_rsp_cap * sizeof(char *), |
| 3485 | MEM_F_SHARED); |
Willy Tarreau | 9a54e13 | 2012-03-24 08:33:05 +0100 | [diff] [blame] | 3486 | } |
Willy Tarreau | cf7f320 | 2007-05-13 22:46:04 +0200 | [diff] [blame] | 3487 | |
Baptiste Assmann | e11cfcd | 2015-08-19 16:44:03 +0200 | [diff] [blame] | 3488 | switch (curproxy->load_server_state_from_file) { |
| 3489 | case PR_SRV_STATE_FILE_UNSPEC: |
| 3490 | curproxy->load_server_state_from_file = PR_SRV_STATE_FILE_NONE; |
| 3491 | break; |
| 3492 | case PR_SRV_STATE_FILE_GLOBAL: |
| 3493 | if (!global.server_state_file) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3494 | ha_warning("config : backend '%s' configured to load server state file from global section 'server-state-file' directive. Unfortunately, 'server-state-file' is not set!\n", |
| 3495 | curproxy->id); |
Baptiste Assmann | e11cfcd | 2015-08-19 16:44:03 +0200 | [diff] [blame] | 3496 | err_code |= ERR_WARN; |
| 3497 | } |
| 3498 | break; |
| 3499 | } |
| 3500 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3501 | /* first, we will invert the servers list order */ |
| 3502 | newsrv = NULL; |
| 3503 | while (curproxy->srv) { |
| 3504 | struct server *next; |
| 3505 | |
| 3506 | next = curproxy->srv->next; |
| 3507 | curproxy->srv->next = newsrv; |
| 3508 | newsrv = curproxy->srv; |
| 3509 | if (!next) |
| 3510 | break; |
| 3511 | curproxy->srv = next; |
| 3512 | } |
| 3513 | |
Willy Tarreau | 17edc81 | 2014-01-03 12:14:34 +0100 | [diff] [blame] | 3514 | /* Check that no server name conflicts. This causes trouble in the stats. |
| 3515 | * We only emit a warning for the first conflict affecting each server, |
| 3516 | * in order to avoid combinatory explosion if all servers have the same |
| 3517 | * name. We do that only for servers which do not have an explicit ID, |
| 3518 | * because these IDs were made also for distinguishing them and we don't |
| 3519 | * want to annoy people who correctly manage them. |
| 3520 | */ |
| 3521 | for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) { |
| 3522 | struct server *other_srv; |
| 3523 | |
| 3524 | if (newsrv->puid) |
| 3525 | continue; |
| 3526 | |
| 3527 | for (other_srv = curproxy->srv; other_srv && other_srv != newsrv; other_srv = other_srv->next) { |
| 3528 | if (!other_srv->puid && strcmp(other_srv->id, newsrv->id) == 0) { |
Willy Tarreau | b01302f | 2019-05-27 19:31:06 +0200 | [diff] [blame] | 3529 | ha_alert("parsing [%s:%d] : %s '%s', another server named '%s' was already defined at line %d, please use distinct names.\n", |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3530 | newsrv->conf.file, newsrv->conf.line, |
| 3531 | proxy_type_str(curproxy), curproxy->id, |
| 3532 | newsrv->id, other_srv->conf.line); |
Willy Tarreau | b01302f | 2019-05-27 19:31:06 +0200 | [diff] [blame] | 3533 | cfgerr++; |
Willy Tarreau | 17edc81 | 2014-01-03 12:14:34 +0100 | [diff] [blame] | 3534 | break; |
| 3535 | } |
| 3536 | } |
| 3537 | } |
| 3538 | |
Willy Tarreau | dd70165 | 2010-05-25 23:03:02 +0200 | [diff] [blame] | 3539 | /* assign automatic UIDs to servers which don't have one yet */ |
| 3540 | next_id = 1; |
| 3541 | newsrv = curproxy->srv; |
| 3542 | while (newsrv != NULL) { |
| 3543 | if (!newsrv->puid) { |
| 3544 | /* server ID not set, use automatic numbering with first |
| 3545 | * spare entry starting with next_svid. |
| 3546 | */ |
| 3547 | next_id = get_next_id(&curproxy->conf.used_server_id, next_id); |
| 3548 | newsrv->conf.id.key = newsrv->puid = next_id; |
| 3549 | eb32_insert(&curproxy->conf.used_server_id, &newsrv->conf.id); |
| 3550 | } |
Amaury Denoyelle | 50779ae | 2021-06-14 17:04:25 +0200 | [diff] [blame] | 3551 | newsrv->conf.name.key = newsrv->id; |
| 3552 | ebis_insert(&curproxy->conf.used_server_name, &newsrv->conf.name); |
| 3553 | |
Willy Tarreau | dd70165 | 2010-05-25 23:03:02 +0200 | [diff] [blame] | 3554 | next_id++; |
| 3555 | newsrv = newsrv->next; |
| 3556 | } |
| 3557 | |
Willy Tarreau | 2069704 | 2007-11-15 23:26:18 +0100 | [diff] [blame] | 3558 | curproxy->lbprm.wmult = 1; /* default weight multiplier */ |
Willy Tarreau | 5dc2fa6 | 2007-11-19 19:10:18 +0100 | [diff] [blame] | 3559 | curproxy->lbprm.wdiv = 1; /* default weight divider */ |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3560 | |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 3561 | /* |
| 3562 | * If this server supports a maxconn parameter, it needs a dedicated |
| 3563 | * tasks to fill the emptied slots when a connection leaves. |
| 3564 | * Also, resolve deferred tracking dependency if needed. |
| 3565 | */ |
| 3566 | newsrv = curproxy->srv; |
| 3567 | while (newsrv != NULL) { |
| 3568 | if (newsrv->minconn > newsrv->maxconn) { |
| 3569 | /* Only 'minconn' was specified, or it was higher than or equal |
| 3570 | * to 'maxconn'. Let's turn this into maxconn and clean it, as |
| 3571 | * this will avoid further useless expensive computations. |
| 3572 | */ |
| 3573 | newsrv->maxconn = newsrv->minconn; |
| 3574 | } else if (newsrv->maxconn && !newsrv->minconn) { |
| 3575 | /* minconn was not specified, so we set it to maxconn */ |
| 3576 | newsrv->minconn = newsrv->maxconn; |
| 3577 | } |
| 3578 | |
William Dauchy | f637044 | 2020-11-14 19:25:33 +0100 | [diff] [blame] | 3579 | /* this will also properly set the transport layer for |
| 3580 | * prod and checks |
| 3581 | * if default-server have use_ssl, prerare ssl init |
| 3582 | * without activating it */ |
| 3583 | if (newsrv->use_ssl == 1 || newsrv->check.use_ssl == 1 || |
Christopher Faulet | 7cbd156 | 2021-12-01 09:50:41 +0100 | [diff] [blame] | 3584 | (newsrv->proxy->options & PR_O_TCPCHK_SSL) || |
| 3585 | ((newsrv->flags & SRV_F_DEFSRV_USE_SSL) && newsrv->use_ssl != 1)) { |
Willy Tarreau | 17d4538 | 2016-12-22 21:16:08 +0100 | [diff] [blame] | 3586 | if (xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv) |
| 3587 | cfgerr += xprt_get(XPRT_SSL)->prepare_srv(newsrv); |
| 3588 | } |
Emeric Brun | 94324a4 | 2012-10-11 14:00:19 +0200 | [diff] [blame] | 3589 | |
Willy Tarreau | 034c88c | 2017-01-23 23:36:45 +0100 | [diff] [blame] | 3590 | if ((newsrv->flags & SRV_F_FASTOPEN) && |
| 3591 | ((curproxy->retry_type & (PR_RE_DISCONNECTED | PR_RE_TIMEOUT)) != |
| 3592 | (PR_RE_DISCONNECTED | PR_RE_TIMEOUT))) |
| 3593 | ha_warning("parsing [%s:%d] : %s '%s': server '%s' has tfo activated, the backend should be configured with at least 'conn-failure', 'empty-response' and 'response-timeout' or we wouldn't be able to retry the connection on failure.\n", |
| 3594 | newsrv->conf.file, newsrv->conf.line, |
| 3595 | proxy_type_str(curproxy), curproxy->id, |
| 3596 | newsrv->id); |
| 3597 | |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 3598 | if (newsrv->trackit) { |
| 3599 | struct proxy *px; |
Willy Tarreau | 3209123 | 2014-05-16 13:52:00 +0200 | [diff] [blame] | 3600 | struct server *srv, *loop; |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 3601 | char *pname, *sname; |
| 3602 | |
| 3603 | pname = newsrv->trackit; |
| 3604 | sname = strrchr(pname, '/'); |
| 3605 | |
| 3606 | if (sname) |
| 3607 | *sname++ = '\0'; |
| 3608 | else { |
| 3609 | sname = pname; |
| 3610 | pname = NULL; |
| 3611 | } |
| 3612 | |
| 3613 | if (pname) { |
Willy Tarreau | 9e0bb10 | 2015-05-26 11:24:42 +0200 | [diff] [blame] | 3614 | px = proxy_be_by_name(pname); |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 3615 | if (!px) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3616 | ha_alert("config : %s '%s', server '%s': unable to find required proxy '%s' for tracking.\n", |
| 3617 | proxy_type_str(curproxy), curproxy->id, |
| 3618 | newsrv->id, pname); |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 3619 | cfgerr++; |
| 3620 | goto next_srv; |
| 3621 | } |
| 3622 | } else |
| 3623 | px = curproxy; |
| 3624 | |
| 3625 | srv = findserver(px, sname); |
| 3626 | if (!srv) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3627 | ha_alert("config : %s '%s', server '%s': unable to find required server '%s' for tracking.\n", |
| 3628 | proxy_type_str(curproxy), curproxy->id, |
| 3629 | newsrv->id, sname); |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 3630 | cfgerr++; |
| 3631 | goto next_srv; |
| 3632 | } |
| 3633 | |
Christopher Faulet | 8892e5d | 2020-03-26 19:48:20 +0100 | [diff] [blame] | 3634 | if (!srv->do_check && !srv->do_agent && !srv->track && !srv->trackit) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3635 | ha_alert("config : %s '%s', server '%s': unable to use %s/%s for " |
| 3636 | "tracking as it does not have any check nor agent enabled.\n", |
| 3637 | proxy_type_str(curproxy), curproxy->id, |
| 3638 | newsrv->id, px->id, srv->id); |
Willy Tarreau | 3209123 | 2014-05-16 13:52:00 +0200 | [diff] [blame] | 3639 | cfgerr++; |
| 3640 | goto next_srv; |
| 3641 | } |
| 3642 | |
| 3643 | for (loop = srv->track; loop && loop != newsrv; loop = loop->track); |
| 3644 | |
Frédéric Lécaille | 2efc649 | 2017-03-14 14:32:17 +0100 | [diff] [blame] | 3645 | if (newsrv == srv || loop) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3646 | ha_alert("config : %s '%s', server '%s': unable to track %s/%s as it " |
| 3647 | "belongs to a tracking chain looping back to %s/%s.\n", |
| 3648 | proxy_type_str(curproxy), curproxy->id, |
| 3649 | newsrv->id, px->id, srv->id, px->id, |
| 3650 | newsrv == srv ? srv->id : loop->id); |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 3651 | cfgerr++; |
| 3652 | goto next_srv; |
| 3653 | } |
| 3654 | |
| 3655 | if (curproxy != px && |
| 3656 | (curproxy->options & PR_O_DISABLE404) != (px->options & PR_O_DISABLE404)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3657 | ha_alert("config : %s '%s', server '%s': unable to use %s/%s for" |
| 3658 | "tracking: disable-on-404 option inconsistency.\n", |
| 3659 | proxy_type_str(curproxy), curproxy->id, |
| 3660 | newsrv->id, px->id, srv->id); |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 3661 | cfgerr++; |
| 3662 | goto next_srv; |
| 3663 | } |
| 3664 | |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 3665 | newsrv->track = srv; |
Willy Tarreau | 1a53a3a | 2013-12-11 15:27:05 +0100 | [diff] [blame] | 3666 | newsrv->tracknext = srv->trackers; |
| 3667 | srv->trackers = newsrv; |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 3668 | |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 3669 | ha_free(&newsrv->trackit); |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 3670 | } |
Baptiste Assmann | a68ca96 | 2015-04-14 01:15:08 +0200 | [diff] [blame] | 3671 | |
Willy Tarreau | 62c3be2 | 2012-01-20 13:12:32 +0100 | [diff] [blame] | 3672 | next_srv: |
| 3673 | newsrv = newsrv->next; |
| 3674 | } |
| 3675 | |
Olivier Houchard | 4e69404 | 2017-03-14 20:01:29 +0100 | [diff] [blame] | 3676 | /* |
| 3677 | * Try to generate dynamic cookies for servers now. |
| 3678 | * It couldn't be done earlier, since at the time we parsed |
| 3679 | * the server line, we may not have known yet that we |
| 3680 | * should use dynamic cookies, or the secret key may not |
| 3681 | * have been provided yet. |
| 3682 | */ |
| 3683 | if (curproxy->ck_opts & PR_CK_DYNAMIC) { |
| 3684 | newsrv = curproxy->srv; |
| 3685 | while (newsrv != NULL) { |
| 3686 | srv_set_dyncookie(newsrv); |
| 3687 | newsrv = newsrv->next; |
| 3688 | } |
| 3689 | |
| 3690 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 3691 | /* We have to initialize the server lookup mechanism depending |
Joseph Herlant | a14c03e | 2018-11-15 14:04:19 -0800 | [diff] [blame] | 3692 | * on what LB algorithm was chosen. |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 3693 | */ |
| 3694 | |
| 3695 | curproxy->lbprm.algo &= ~(BE_LB_LKUP | BE_LB_PROP_DYN); |
| 3696 | switch (curproxy->lbprm.algo & BE_LB_KIND) { |
| 3697 | case BE_LB_KIND_RR: |
Willy Tarreau | 9757a38 | 2009-10-03 12:56:50 +0200 | [diff] [blame] | 3698 | if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_STATIC) { |
| 3699 | curproxy->lbprm.algo |= BE_LB_LKUP_MAP; |
| 3700 | init_server_map(curproxy); |
Willy Tarreau | 760e81d | 2018-05-03 07:20:40 +0200 | [diff] [blame] | 3701 | } else if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_RR_RANDOM) { |
| 3702 | curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN; |
Remi Tricot-Le Breton | c5c5bc4 | 2021-05-19 16:40:28 +0200 | [diff] [blame] | 3703 | if (chash_init_server_tree(curproxy) < 0) { |
| 3704 | cfgerr++; |
| 3705 | } |
Willy Tarreau | 9757a38 | 2009-10-03 12:56:50 +0200 | [diff] [blame] | 3706 | } else { |
| 3707 | curproxy->lbprm.algo |= BE_LB_LKUP_RRTREE | BE_LB_PROP_DYN; |
| 3708 | fwrr_init_server_groups(curproxy); |
| 3709 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 3710 | break; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 3711 | |
Willy Tarreau | 3ebb116 | 2012-02-13 16:57:44 +0100 | [diff] [blame] | 3712 | case BE_LB_KIND_CB: |
Willy Tarreau | f09c660 | 2012-02-13 17:12:08 +0100 | [diff] [blame] | 3713 | if ((curproxy->lbprm.algo & BE_LB_PARM) == BE_LB_CB_LC) { |
| 3714 | curproxy->lbprm.algo |= BE_LB_LKUP_LCTREE | BE_LB_PROP_DYN; |
| 3715 | fwlc_init_server_tree(curproxy); |
| 3716 | } else { |
| 3717 | curproxy->lbprm.algo |= BE_LB_LKUP_FSTREE | BE_LB_PROP_DYN; |
| 3718 | fas_init_server_tree(curproxy); |
| 3719 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 3720 | break; |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 3721 | |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 3722 | case BE_LB_KIND_HI: |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 3723 | if ((curproxy->lbprm.algo & BE_LB_HASH_TYPE) == BE_LB_HASH_CONS) { |
| 3724 | curproxy->lbprm.algo |= BE_LB_LKUP_CHTREE | BE_LB_PROP_DYN; |
Remi Tricot-Le Breton | c5c5bc4 | 2021-05-19 16:40:28 +0200 | [diff] [blame] | 3725 | if (chash_init_server_tree(curproxy) < 0) { |
| 3726 | cfgerr++; |
| 3727 | } |
Willy Tarreau | 6b2e11b | 2009-10-01 07:52:15 +0200 | [diff] [blame] | 3728 | } else { |
| 3729 | curproxy->lbprm.algo |= BE_LB_LKUP_MAP; |
| 3730 | init_server_map(curproxy); |
| 3731 | } |
Willy Tarreau | f3e49f9 | 2009-10-03 12:21:20 +0200 | [diff] [blame] | 3732 | break; |
| 3733 | } |
Willy Tarreau | cd10def | 2020-10-17 18:48:47 +0200 | [diff] [blame] | 3734 | HA_RWLOCK_INIT(&curproxy->lbprm.lock); |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3735 | |
| 3736 | if (curproxy->options & PR_O_LOGASAP) |
| 3737 | curproxy->to_log &= ~LW_BYTES; |
| 3738 | |
Willy Tarreau | e7ded1f | 2009-08-09 10:11:45 +0200 | [diff] [blame] | 3739 | if ((curproxy->mode == PR_MODE_TCP || curproxy->mode == PR_MODE_HTTP) && |
Dragan Dosen | 0b85ece | 2015-09-25 19:17:44 +0200 | [diff] [blame] | 3740 | (curproxy->cap & PR_CAP_FE) && LIST_ISEMPTY(&curproxy->logsrvs) && |
| 3741 | (!LIST_ISEMPTY(&curproxy->logformat) || !LIST_ISEMPTY(&curproxy->logformat_sd))) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3742 | ha_warning("config : log format ignored for %s '%s' since it has no log address.\n", |
| 3743 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | e7ded1f | 2009-08-09 10:11:45 +0200 | [diff] [blame] | 3744 | err_code |= ERR_WARN; |
| 3745 | } |
| 3746 | |
Christopher Faulet | 3b6446f | 2021-03-15 15:10:38 +0100 | [diff] [blame] | 3747 | if (curproxy->mode != PR_MODE_HTTP && !(curproxy->options & PR_O_HTTP_UPG)) { |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 3748 | int optnum; |
| 3749 | |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 3750 | if (curproxy->uri_auth) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3751 | ha_warning("config : 'stats' statement ignored for %s '%s' as it requires HTTP mode.\n", |
| 3752 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 3753 | err_code |= ERR_WARN; |
| 3754 | curproxy->uri_auth = NULL; |
| 3755 | } |
| 3756 | |
Willy Tarreau | de7dc88 | 2017-03-10 11:49:21 +0100 | [diff] [blame] | 3757 | if (curproxy->capture_name) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3758 | ha_warning("config : 'capture' statement ignored for %s '%s' as it requires HTTP mode.\n", |
| 3759 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | de7dc88 | 2017-03-10 11:49:21 +0100 | [diff] [blame] | 3760 | err_code |= ERR_WARN; |
| 3761 | } |
| 3762 | |
| 3763 | if (!LIST_ISEMPTY(&curproxy->http_req_rules)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3764 | ha_warning("config : 'http-request' rules ignored for %s '%s' as they require HTTP mode.\n", |
| 3765 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | de7dc88 | 2017-03-10 11:49:21 +0100 | [diff] [blame] | 3766 | err_code |= ERR_WARN; |
| 3767 | } |
| 3768 | |
| 3769 | if (!LIST_ISEMPTY(&curproxy->http_res_rules)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3770 | ha_warning("config : 'http-response' rules ignored for %s '%s' as they require HTTP mode.\n", |
| 3771 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | de7dc88 | 2017-03-10 11:49:21 +0100 | [diff] [blame] | 3772 | err_code |= ERR_WARN; |
| 3773 | } |
| 3774 | |
Christopher Faulet | bb7abed | 2021-03-15 15:09:21 +0100 | [diff] [blame] | 3775 | if (!LIST_ISEMPTY(&curproxy->http_after_res_rules)) { |
| 3776 | ha_warning("config : 'http-after-response' rules ignored for %s '%s' as they require HTTP mode.\n", |
| 3777 | proxy_type_str(curproxy), curproxy->id); |
| 3778 | err_code |= ERR_WARN; |
| 3779 | } |
| 3780 | |
Willy Tarreau | de7dc88 | 2017-03-10 11:49:21 +0100 | [diff] [blame] | 3781 | if (!LIST_ISEMPTY(&curproxy->redirect_rules)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3782 | ha_warning("config : 'redirect' rules ignored for %s '%s' as they require HTTP mode.\n", |
| 3783 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | de7dc88 | 2017-03-10 11:49:21 +0100 | [diff] [blame] | 3784 | err_code |= ERR_WARN; |
| 3785 | } |
| 3786 | |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 3787 | if (curproxy->options & (PR_O_FWDFOR | PR_O_FF_ALWAYS)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3788 | ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 3789 | "forwardfor", proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 3790 | err_code |= ERR_WARN; |
Willy Tarreau | 87cf514 | 2011-08-19 22:57:24 +0200 | [diff] [blame] | 3791 | curproxy->options &= ~(PR_O_FWDFOR | PR_O_FF_ALWAYS); |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 3792 | } |
| 3793 | |
| 3794 | if (curproxy->options & PR_O_ORGTO) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3795 | ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 3796 | "originalto", proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 3797 | err_code |= ERR_WARN; |
| 3798 | curproxy->options &= ~PR_O_ORGTO; |
| 3799 | } |
| 3800 | |
| 3801 | for (optnum = 0; cfg_opts[optnum].name; optnum++) { |
| 3802 | if (cfg_opts[optnum].mode == PR_MODE_HTTP && |
| 3803 | (curproxy->cap & cfg_opts[optnum].cap) && |
| 3804 | (curproxy->options & cfg_opts[optnum].val)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3805 | ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 3806 | cfg_opts[optnum].name, proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 3807 | err_code |= ERR_WARN; |
| 3808 | curproxy->options &= ~cfg_opts[optnum].val; |
| 3809 | } |
| 3810 | } |
| 3811 | |
| 3812 | for (optnum = 0; cfg_opts2[optnum].name; optnum++) { |
| 3813 | if (cfg_opts2[optnum].mode == PR_MODE_HTTP && |
| 3814 | (curproxy->cap & cfg_opts2[optnum].cap) && |
| 3815 | (curproxy->options2 & cfg_opts2[optnum].val)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3816 | ha_warning("config : 'option %s' ignored for %s '%s' as it requires HTTP mode.\n", |
| 3817 | cfg_opts2[optnum].name, proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 3818 | err_code |= ERR_WARN; |
| 3819 | curproxy->options2 &= ~cfg_opts2[optnum].val; |
| 3820 | } |
| 3821 | } |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 3822 | |
Willy Tarreau | 29fbe51 | 2015-08-20 19:35:14 +0200 | [diff] [blame] | 3823 | #if defined(CONFIG_HAP_TRANSPARENT) |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 3824 | if (curproxy->conn_src.bind_hdr_occ) { |
| 3825 | curproxy->conn_src.bind_hdr_occ = 0; |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3826 | ha_warning("config : %s '%s' : ignoring use of header %s as source IP in non-HTTP mode.\n", |
| 3827 | proxy_type_str(curproxy), curproxy->id, curproxy->conn_src.bind_hdr_name); |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 3828 | err_code |= ERR_WARN; |
| 3829 | } |
Willy Tarreau | efa5f51 | 2010-03-30 20:13:29 +0200 | [diff] [blame] | 3830 | #endif |
Willy Tarreau | e24fdfb | 2010-03-25 07:22:56 +0100 | [diff] [blame] | 3831 | } |
| 3832 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 3833 | /* |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 3834 | * ensure that we're not cross-dressing a TCP server into HTTP. |
| 3835 | */ |
| 3836 | newsrv = curproxy->srv; |
| 3837 | while (newsrv != NULL) { |
Willy Tarreau | 0cec331 | 2011-10-31 13:49:26 +0100 | [diff] [blame] | 3838 | if ((curproxy->mode != PR_MODE_HTTP) && newsrv->rdr_len) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3839 | ha_alert("config : %s '%s' : server cannot have cookie or redirect prefix in non-HTTP mode.\n", |
| 3840 | proxy_type_str(curproxy), curproxy->id); |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 3841 | cfgerr++; |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 3842 | } |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 3843 | |
Willy Tarreau | 0cec331 | 2011-10-31 13:49:26 +0100 | [diff] [blame] | 3844 | if ((curproxy->mode != PR_MODE_HTTP) && newsrv->cklen) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3845 | ha_warning("config : %s '%s' : ignoring cookie for server '%s' as HTTP mode is disabled.\n", |
| 3846 | proxy_type_str(curproxy), curproxy->id, newsrv->id); |
Willy Tarreau | 0cec331 | 2011-10-31 13:49:26 +0100 | [diff] [blame] | 3847 | err_code |= ERR_WARN; |
| 3848 | } |
| 3849 | |
Willy Tarreau | c93cd16 | 2014-05-13 15:54:22 +0200 | [diff] [blame] | 3850 | if ((newsrv->flags & SRV_F_MAPPORTS) && (curproxy->options2 & PR_O2_RDPC_PRST)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3851 | ha_warning("config : %s '%s' : RDP cookie persistence will not work for server '%s' because it lacks an explicit port number.\n", |
| 3852 | proxy_type_str(curproxy), curproxy->id, newsrv->id); |
Willy Tarreau | 82ffa39 | 2013-08-13 17:19:08 +0200 | [diff] [blame] | 3853 | err_code |= ERR_WARN; |
| 3854 | } |
| 3855 | |
Willy Tarreau | 29fbe51 | 2015-08-20 19:35:14 +0200 | [diff] [blame] | 3856 | #if defined(CONFIG_HAP_TRANSPARENT) |
Willy Tarreau | ef9a360 | 2012-12-08 22:29:20 +0100 | [diff] [blame] | 3857 | if (curproxy->mode != PR_MODE_HTTP && newsrv->conn_src.bind_hdr_occ) { |
| 3858 | newsrv->conn_src.bind_hdr_occ = 0; |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 3859 | ha_warning("config : %s '%s' : server %s cannot use header %s as source IP in non-HTTP mode.\n", |
| 3860 | proxy_type_str(curproxy), curproxy->id, newsrv->id, newsrv->conn_src.bind_hdr_name); |
Willy Tarreau | bce7088 | 2009-09-07 11:51:47 +0200 | [diff] [blame] | 3861 | err_code |= ERR_WARN; |
| 3862 | } |
Willy Tarreau | efa5f51 | 2010-03-30 20:13:29 +0200 | [diff] [blame] | 3863 | #endif |
Willy Tarreau | 4c18346 | 2017-01-06 12:21:38 +0100 | [diff] [blame] | 3864 | |
Willy Tarreau | 46deab6 | 2018-04-28 07:18:15 +0200 | [diff] [blame] | 3865 | if ((curproxy->mode != PR_MODE_HTTP) && (curproxy->options & PR_O_REUSE_MASK) != PR_O_REUSE_NEVR) |
| 3866 | curproxy->options &= ~PR_O_REUSE_MASK; |
| 3867 | |
Willy Tarreau | 21d2af3 | 2008-02-14 20:25:24 +0100 | [diff] [blame] | 3868 | newsrv = newsrv->next; |
| 3869 | } |
| 3870 | |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 3871 | /* Check filter configuration, if any */ |
| 3872 | cfgerr += flt_check(curproxy); |
| 3873 | |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 3874 | if (curproxy->cap & PR_CAP_FE) { |
Willy Tarreau | 050536d | 2012-10-04 08:47:34 +0200 | [diff] [blame] | 3875 | if (!curproxy->accept) |
| 3876 | curproxy->accept = frontend_accept; |
Willy Tarreau | 81f9aa3 | 2010-06-01 17:45:26 +0200 | [diff] [blame] | 3877 | |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 3878 | if (curproxy->tcp_req.inspect_delay || |
| 3879 | !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules)) |
Willy Tarreau | fb35620 | 2010-08-03 14:02:05 +0200 | [diff] [blame] | 3880 | curproxy->fe_req_ana |= AN_REQ_INSPECT_FE; |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 3881 | |
Willy Tarreau | 4e5b828 | 2009-08-16 22:57:50 +0200 | [diff] [blame] | 3882 | if (curproxy->mode == PR_MODE_HTTP) { |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 3883 | curproxy->fe_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_PROCESS_FE; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 3884 | curproxy->fe_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_FE; |
Willy Tarreau | 4e5b828 | 2009-08-16 22:57:50 +0200 | [diff] [blame] | 3885 | } |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 3886 | |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 3887 | if (curproxy->mode == PR_MODE_CLI) { |
| 3888 | curproxy->fe_req_ana |= AN_REQ_WAIT_CLI; |
| 3889 | curproxy->fe_rsp_ana |= AN_RES_WAIT_CLI; |
| 3890 | } |
| 3891 | |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 3892 | /* both TCP and HTTP must check switching rules */ |
| 3893 | curproxy->fe_req_ana |= AN_REQ_SWITCHING_RULES; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 3894 | |
| 3895 | /* Add filters analyzers if needed */ |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 3896 | if (!LIST_ISEMPTY(&curproxy->filter_configs)) { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 3897 | curproxy->fe_req_ana |= AN_REQ_FLT_START_FE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END; |
| 3898 | curproxy->fe_rsp_ana |= AN_RES_FLT_START_FE | AN_RES_FLT_XFER_DATA | AN_RES_FLT_END; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 3899 | } |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 3900 | } |
| 3901 | |
| 3902 | if (curproxy->cap & PR_CAP_BE) { |
Willy Tarreau | fb35620 | 2010-08-03 14:02:05 +0200 | [diff] [blame] | 3903 | if (curproxy->tcp_req.inspect_delay || |
| 3904 | !LIST_ISEMPTY(&curproxy->tcp_req.inspect_rules)) |
| 3905 | curproxy->be_req_ana |= AN_REQ_INSPECT_BE; |
| 3906 | |
Emeric Brun | 97679e7 | 2010-09-23 17:56:44 +0200 | [diff] [blame] | 3907 | if (!LIST_ISEMPTY(&curproxy->tcp_rep.inspect_rules)) |
| 3908 | curproxy->be_rsp_ana |= AN_RES_INSPECT; |
| 3909 | |
Willy Tarreau | 4e5b828 | 2009-08-16 22:57:50 +0200 | [diff] [blame] | 3910 | if (curproxy->mode == PR_MODE_HTTP) { |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 3911 | curproxy->be_req_ana |= AN_REQ_WAIT_HTTP | AN_REQ_HTTP_INNER | AN_REQ_HTTP_PROCESS_BE; |
Willy Tarreau | b37c27e | 2009-10-18 22:53:08 +0200 | [diff] [blame] | 3912 | curproxy->be_rsp_ana |= AN_RES_WAIT_HTTP | AN_RES_HTTP_PROCESS_BE; |
Willy Tarreau | 4e5b828 | 2009-08-16 22:57:50 +0200 | [diff] [blame] | 3913 | } |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 3914 | |
| 3915 | /* If the backend does requires RDP cookie persistence, we have to |
| 3916 | * enable the corresponding analyser. |
| 3917 | */ |
| 3918 | if (curproxy->options2 & PR_O2_RDPC_PRST) |
| 3919 | curproxy->be_req_ana |= AN_REQ_PRST_RDP_COOKIE; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 3920 | |
| 3921 | /* Add filters analyzers if needed */ |
Christopher Faulet | 443ea1a | 2016-02-04 13:40:26 +0100 | [diff] [blame] | 3922 | if (!LIST_ISEMPTY(&curproxy->filter_configs)) { |
Christopher Faulet | 0184ea7 | 2017-01-05 14:06:34 +0100 | [diff] [blame] | 3923 | curproxy->be_req_ana |= AN_REQ_FLT_START_BE | AN_REQ_FLT_XFER_DATA | AN_REQ_FLT_END; |
| 3924 | curproxy->be_rsp_ana |= AN_RES_FLT_START_BE | AN_RES_FLT_XFER_DATA | AN_RES_FLT_END; |
Christopher Faulet | d7c9196 | 2015-04-30 11:48:27 +0200 | [diff] [blame] | 3925 | } |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 3926 | } |
Christopher Faulet | a717b99 | 2018-04-10 14:43:00 +0200 | [diff] [blame] | 3927 | |
Christopher Faulet | 8ed0a3e | 2018-04-10 14:45:45 +0200 | [diff] [blame] | 3928 | /* Check the mux protocols, if any, for each listener and server |
Christopher Faulet | a717b99 | 2018-04-10 14:43:00 +0200 | [diff] [blame] | 3929 | * attached to the current proxy */ |
| 3930 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
| 3931 | int mode = (1 << (curproxy->mode == PR_MODE_HTTP)); |
Willy Tarreau | 76a551d | 2018-12-02 13:09:09 +0100 | [diff] [blame] | 3932 | const struct mux_proto_list *mux_ent; |
Christopher Faulet | a717b99 | 2018-04-10 14:43:00 +0200 | [diff] [blame] | 3933 | |
| 3934 | if (!bind_conf->mux_proto) |
| 3935 | continue; |
Willy Tarreau | 76a551d | 2018-12-02 13:09:09 +0100 | [diff] [blame] | 3936 | |
| 3937 | /* it is possible that an incorrect mux was referenced |
| 3938 | * due to the proxy's mode not being taken into account |
| 3939 | * on first pass. Let's adjust it now. |
| 3940 | */ |
| 3941 | mux_ent = conn_get_best_mux_entry(bind_conf->mux_proto->token, PROTO_SIDE_FE, mode); |
| 3942 | |
| 3943 | if (!mux_ent || !isteq(mux_ent->token, bind_conf->mux_proto->token)) { |
Christopher Faulet | a717b99 | 2018-04-10 14:43:00 +0200 | [diff] [blame] | 3944 | ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for 'bind %s' at [%s:%d].\n", |
| 3945 | proxy_type_str(curproxy), curproxy->id, |
| 3946 | (int)bind_conf->mux_proto->token.len, |
| 3947 | bind_conf->mux_proto->token.ptr, |
| 3948 | bind_conf->arg, bind_conf->file, bind_conf->line); |
| 3949 | cfgerr++; |
| 3950 | } |
Willy Tarreau | 76a551d | 2018-12-02 13:09:09 +0100 | [diff] [blame] | 3951 | |
| 3952 | /* update the mux */ |
| 3953 | bind_conf->mux_proto = mux_ent; |
Christopher Faulet | a717b99 | 2018-04-10 14:43:00 +0200 | [diff] [blame] | 3954 | } |
Christopher Faulet | 8ed0a3e | 2018-04-10 14:45:45 +0200 | [diff] [blame] | 3955 | for (newsrv = curproxy->srv; newsrv; newsrv = newsrv->next) { |
| 3956 | int mode = (1 << (curproxy->mode == PR_MODE_HTTP)); |
Willy Tarreau | 76a551d | 2018-12-02 13:09:09 +0100 | [diff] [blame] | 3957 | const struct mux_proto_list *mux_ent; |
Christopher Faulet | 8ed0a3e | 2018-04-10 14:45:45 +0200 | [diff] [blame] | 3958 | |
| 3959 | if (!newsrv->mux_proto) |
| 3960 | continue; |
Willy Tarreau | 76a551d | 2018-12-02 13:09:09 +0100 | [diff] [blame] | 3961 | |
| 3962 | /* it is possible that an incorrect mux was referenced |
| 3963 | * due to the proxy's mode not being taken into account |
| 3964 | * on first pass. Let's adjust it now. |
| 3965 | */ |
| 3966 | mux_ent = conn_get_best_mux_entry(newsrv->mux_proto->token, PROTO_SIDE_BE, mode); |
| 3967 | |
| 3968 | if (!mux_ent || !isteq(mux_ent->token, newsrv->mux_proto->token)) { |
Christopher Faulet | 8ed0a3e | 2018-04-10 14:45:45 +0200 | [diff] [blame] | 3969 | ha_alert("config : %s '%s' : MUX protocol '%.*s' is not usable for server '%s' at [%s:%d].\n", |
| 3970 | proxy_type_str(curproxy), curproxy->id, |
| 3971 | (int)newsrv->mux_proto->token.len, |
| 3972 | newsrv->mux_proto->token.ptr, |
| 3973 | newsrv->id, newsrv->conf.file, newsrv->conf.line); |
| 3974 | cfgerr++; |
| 3975 | } |
Willy Tarreau | 76a551d | 2018-12-02 13:09:09 +0100 | [diff] [blame] | 3976 | |
| 3977 | /* update the mux */ |
| 3978 | newsrv->mux_proto = mux_ent; |
Christopher Faulet | 8ed0a3e | 2018-04-10 14:45:45 +0200 | [diff] [blame] | 3979 | } |
Willy Tarreau | 4cdac16 | 2021-03-05 10:48:42 +0100 | [diff] [blame] | 3980 | } |
Willy Tarreau | 835daa1 | 2019-02-07 14:46:29 +0100 | [diff] [blame] | 3981 | |
Emeric Brun | fe0979f | 2022-08-18 15:53:21 +0200 | [diff] [blame] | 3982 | /* |
| 3983 | * We have just initialized the main proxies list |
| 3984 | * we must also configure the log-forward proxies list |
| 3985 | */ |
| 3986 | if (init_proxies_list == proxies_list) { |
| 3987 | init_proxies_list = cfg_log_forward; |
Emeric Brun | ba6af4f | 2022-08-22 10:25:11 +0200 | [diff] [blame] | 3988 | /* check if list is not null to avoid infinite loop */ |
| 3989 | if (init_proxies_list) |
| 3990 | goto init_proxies_list_stage1; |
Emeric Brun | fe0979f | 2022-08-18 15:53:21 +0200 | [diff] [blame] | 3991 | } |
| 3992 | |
Willy Tarreau | 4cdac16 | 2021-03-05 10:48:42 +0100 | [diff] [blame] | 3993 | /***********************************************************/ |
| 3994 | /* At this point, target names have already been resolved. */ |
| 3995 | /***********************************************************/ |
Willy Tarreau | 835daa1 | 2019-02-07 14:46:29 +0100 | [diff] [blame] | 3996 | |
Willy Tarreau | 4cdac16 | 2021-03-05 10:48:42 +0100 | [diff] [blame] | 3997 | /* we must finish to initialize certain things on the servers */ |
Willy Tarreau | 835daa1 | 2019-02-07 14:46:29 +0100 | [diff] [blame] | 3998 | |
Willy Tarreau | 4cdac16 | 2021-03-05 10:48:42 +0100 | [diff] [blame] | 3999 | list_for_each_entry(newsrv, &servers_list, global_list) { |
| 4000 | /* initialize idle conns lists */ |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 4001 | newsrv->per_thr = calloc(global.nbthread, sizeof(*newsrv->per_thr)); |
| 4002 | if (!newsrv->per_thr) { |
| 4003 | ha_alert("parsing [%s:%d] : failed to allocate per-thread lists for server '%s'.\n", |
| 4004 | newsrv->conf.file, newsrv->conf.line, newsrv->id); |
Willy Tarreau | 4cdac16 | 2021-03-05 10:48:42 +0100 | [diff] [blame] | 4005 | cfgerr++; |
| 4006 | continue; |
| 4007 | } |
Olivier Houchard | dc2f275 | 2020-02-13 19:12:07 +0100 | [diff] [blame] | 4008 | |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 4009 | for (i = 0; i < global.nbthread; i++) { |
| 4010 | newsrv->per_thr[i].idle_conns = EB_ROOT; |
| 4011 | newsrv->per_thr[i].safe_conns = EB_ROOT; |
| 4012 | newsrv->per_thr[i].avail_conns = EB_ROOT; |
Willy Tarreau | d4e78d8 | 2021-03-04 10:47:54 +0100 | [diff] [blame] | 4013 | MT_LIST_INIT(&newsrv->per_thr[i].streams); |
Willy Tarreau | 430bf4a | 2021-03-04 09:45:32 +0100 | [diff] [blame] | 4014 | } |
Olivier Houchard | dc2f275 | 2020-02-13 19:12:07 +0100 | [diff] [blame] | 4015 | |
Willy Tarreau | 4cdac16 | 2021-03-05 10:48:42 +0100 | [diff] [blame] | 4016 | if (newsrv->max_idle_conns != 0) { |
Amaury Denoyelle | 3efee65 | 2021-03-08 17:31:39 +0100 | [diff] [blame] | 4017 | newsrv->curr_idle_thr = calloc(global.nbthread, sizeof(*newsrv->curr_idle_thr)); |
| 4018 | if (!newsrv->curr_idle_thr) { |
| 4019 | ha_alert("parsing [%s:%d] : failed to allocate idle connection tasks for server '%s'.\n", |
| 4020 | newsrv->conf.file, newsrv->conf.line, newsrv->id); |
| 4021 | cfgerr++; |
| 4022 | continue; |
| 4023 | } |
Remi Tricot-Le Breton | c5c5bc4 | 2021-05-19 16:40:28 +0200 | [diff] [blame] | 4024 | |
Amaury Denoyelle | 3efee65 | 2021-03-08 17:31:39 +0100 | [diff] [blame] | 4025 | } |
| 4026 | } |
Olivier Houchard | dc2f275 | 2020-02-13 19:12:07 +0100 | [diff] [blame] | 4027 | |
Amaury Denoyelle | 3efee65 | 2021-03-08 17:31:39 +0100 | [diff] [blame] | 4028 | idle_conn_task = task_new(MAX_THREADS_MASK); |
| 4029 | if (!idle_conn_task) { |
| 4030 | ha_alert("parsing : failed to allocate global idle connection task.\n"); |
| 4031 | cfgerr++; |
| 4032 | } |
| 4033 | else { |
| 4034 | idle_conn_task->process = srv_cleanup_idle_conns; |
| 4035 | idle_conn_task->context = NULL; |
Olivier Houchard | dc2f275 | 2020-02-13 19:12:07 +0100 | [diff] [blame] | 4036 | |
Amaury Denoyelle | 3efee65 | 2021-03-08 17:31:39 +0100 | [diff] [blame] | 4037 | for (i = 0; i < global.nbthread; i++) { |
| 4038 | idle_conns[i].cleanup_task = task_new(1UL << i); |
| 4039 | if (!idle_conns[i].cleanup_task) { |
| 4040 | ha_alert("parsing : failed to allocate idle connection tasks for thread '%d'.\n", i); |
| 4041 | cfgerr++; |
| 4042 | break; |
Willy Tarreau | 4cdac16 | 2021-03-05 10:48:42 +0100 | [diff] [blame] | 4043 | } |
Olivier Houchard | dc2f275 | 2020-02-13 19:12:07 +0100 | [diff] [blame] | 4044 | |
Amaury Denoyelle | 3efee65 | 2021-03-08 17:31:39 +0100 | [diff] [blame] | 4045 | idle_conns[i].cleanup_task->process = srv_cleanup_toremove_conns; |
| 4046 | idle_conns[i].cleanup_task->context = NULL; |
| 4047 | HA_SPIN_INIT(&idle_conns[i].idle_conns_lock); |
| 4048 | MT_LIST_INIT(&idle_conns[i].toremove_conns); |
Willy Tarreau | 835daa1 | 2019-02-07 14:46:29 +0100 | [diff] [blame] | 4049 | } |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 4050 | } |
| 4051 | |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 4052 | /* Check multi-process mode compatibility */ |
| 4053 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 4054 | if (global.nbproc > 1 && global.cli_fe) { |
| 4055 | list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) { |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 4056 | unsigned long mask; |
| 4057 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 4058 | mask = proc_mask(global.cli_fe->bind_proc) && all_proc_mask; |
Willy Tarreau | e26993c | 2020-09-03 07:18:55 +0200 | [diff] [blame] | 4059 | mask &= proc_mask(bind_conf->settings.bind_proc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 4060 | |
| 4061 | /* stop here if more than one process is used */ |
Willy Tarreau | 9504dd6 | 2018-10-15 09:37:03 +0200 | [diff] [blame] | 4062 | if (atleast2(mask)) |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 4063 | break; |
| 4064 | } |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 4065 | if (&bind_conf->by_fe != &global.cli_fe->conf.bind) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4066 | ha_warning("stats socket will not work as expected in multi-process mode (nbproc > 1), you should force process binding globally using 'stats bind-process' or per socket using the 'process' attribute.\n"); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 4067 | } |
| 4068 | } |
| 4069 | |
| 4070 | /* Make each frontend inherit bind-process from its listeners when not specified. */ |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 4071 | for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) { |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 4072 | if (curproxy->bind_proc) |
| 4073 | continue; |
| 4074 | |
| 4075 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
| 4076 | unsigned long mask; |
| 4077 | |
Willy Tarreau | e26993c | 2020-09-03 07:18:55 +0200 | [diff] [blame] | 4078 | mask = proc_mask(bind_conf->settings.bind_proc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 4079 | curproxy->bind_proc |= mask; |
| 4080 | } |
Willy Tarreau | 6daac19 | 2019-02-02 17:39:53 +0100 | [diff] [blame] | 4081 | curproxy->bind_proc = proc_mask(curproxy->bind_proc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 4082 | } |
| 4083 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 4084 | if (global.cli_fe) { |
| 4085 | list_for_each_entry(bind_conf, &global.cli_fe->conf.bind, by_fe) { |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 4086 | unsigned long mask; |
| 4087 | |
Willy Tarreau | e26993c | 2020-09-03 07:18:55 +0200 | [diff] [blame] | 4088 | mask = bind_conf->settings.bind_proc ? bind_conf->settings.bind_proc : 0; |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 4089 | global.cli_fe->bind_proc |= mask; |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 4090 | } |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 4091 | global.cli_fe->bind_proc = proc_mask(global.cli_fe->bind_proc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 4092 | } |
| 4093 | |
Willy Tarreau | acbe8ab | 2014-10-01 20:50:17 +0200 | [diff] [blame] | 4094 | /* propagate bindings from frontends to backends. Don't do it if there |
| 4095 | * are any fatal errors as we must not call it with unresolved proxies. |
| 4096 | */ |
| 4097 | if (!cfgerr) { |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 4098 | for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) { |
Willy Tarreau | acbe8ab | 2014-10-01 20:50:17 +0200 | [diff] [blame] | 4099 | if (curproxy->cap & PR_CAP_FE) |
| 4100 | propagate_processes(curproxy, NULL); |
| 4101 | } |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 4102 | } |
| 4103 | |
| 4104 | /* Bind each unbound backend to all processes when not specified. */ |
Willy Tarreau | 6daac19 | 2019-02-02 17:39:53 +0100 | [diff] [blame] | 4105 | for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) |
| 4106 | curproxy->bind_proc = proc_mask(curproxy->bind_proc); |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 4107 | |
| 4108 | /*******************************************************/ |
| 4109 | /* At this step, all proxies have a non-null bind_proc */ |
| 4110 | /*******************************************************/ |
| 4111 | |
| 4112 | /* perform the final checks before creating tasks */ |
| 4113 | |
Emeric Brun | fe0979f | 2022-08-18 15:53:21 +0200 | [diff] [blame] | 4114 | /* starting to initialize the main proxies list */ |
| 4115 | init_proxies_list = proxies_list; |
| 4116 | |
| 4117 | init_proxies_list_stage2: |
| 4118 | for (curproxy = init_proxies_list; curproxy; curproxy = curproxy->next) { |
Willy Tarreau | 419ead8 | 2014-09-16 13:41:21 +0200 | [diff] [blame] | 4119 | struct listener *listener; |
| 4120 | unsigned int next_id; |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 4121 | |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 4122 | /* Configure SSL for each bind line. |
| 4123 | * Note: if configuration fails at some point, the ->ctx member |
| 4124 | * remains NULL so that listeners can later detach. |
| 4125 | */ |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4126 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
Willy Tarreau | 55d3791 | 2016-12-21 23:38:39 +0100 | [diff] [blame] | 4127 | if (bind_conf->xprt->prepare_bind_conf && |
| 4128 | bind_conf->xprt->prepare_bind_conf(bind_conf) < 0) |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 4129 | cfgerr++; |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4130 | } |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 4131 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 4132 | /* adjust this proxy's listeners */ |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 4133 | next_id = 1; |
Willy Tarreau | 4348fad | 2012-09-20 16:48:07 +0200 | [diff] [blame] | 4134 | list_for_each_entry(listener, &curproxy->conf.listeners, by_fe) { |
Willy Tarreau | 7c0ffd2 | 2016-04-14 11:47:38 +0200 | [diff] [blame] | 4135 | int nbproc; |
| 4136 | |
| 4137 | nbproc = my_popcountl(curproxy->bind_proc & |
Willy Tarreau | e26993c | 2020-09-03 07:18:55 +0200 | [diff] [blame] | 4138 | (listener->bind_conf->settings.bind_proc ? listener->bind_conf->settings.bind_proc : curproxy->bind_proc) & |
Willy Tarreau | a38a717 | 2019-02-02 17:11:28 +0100 | [diff] [blame] | 4139 | all_proc_mask); |
Willy Tarreau | 7c0ffd2 | 2016-04-14 11:47:38 +0200 | [diff] [blame] | 4140 | |
| 4141 | if (!nbproc) /* no intersection between listener and frontend */ |
| 4142 | nbproc = 1; |
| 4143 | |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 4144 | if (!listener->luid) { |
| 4145 | /* listener ID not set, use automatic numbering with first |
| 4146 | * spare entry starting with next_luid. |
| 4147 | */ |
| 4148 | next_id = get_next_id(&curproxy->conf.used_listener_id, next_id); |
| 4149 | listener->conf.id.key = listener->luid = next_id; |
| 4150 | eb32_insert(&curproxy->conf.used_listener_id, &listener->conf.id); |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 4151 | } |
Krzysztof Piotr Oledzki | df5cb9f | 2010-02-05 20:58:27 +0100 | [diff] [blame] | 4152 | next_id++; |
Willy Tarreau | 53fb4ae | 2009-10-04 23:04:08 +0200 | [diff] [blame] | 4153 | |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 4154 | /* enable separate counters */ |
| 4155 | if (curproxy->options2 & PR_O2_SOCKSTAT) { |
Willy Tarreau | ae9bea0 | 2016-11-25 14:44:52 +0100 | [diff] [blame] | 4156 | listener->counters = calloc(1, sizeof(*listener->counters)); |
Willy Tarreau | 19d14ef | 2012-10-29 16:51:55 +0100 | [diff] [blame] | 4157 | if (!listener->name) |
| 4158 | memprintf(&listener->name, "sock-%d", listener->luid); |
Krzysztof Piotr Oledzki | aeebf9b | 2009-10-04 15:43:17 +0200 | [diff] [blame] | 4159 | } |
Willy Tarreau | 81796be | 2012-09-22 19:11:47 +0200 | [diff] [blame] | 4160 | |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 4161 | if (curproxy->options & PR_O_TCP_NOLING) |
| 4162 | listener->options |= LI_O_NOLINGER; |
Willy Tarreau | 16a2147 | 2012-11-19 12:39:59 +0100 | [diff] [blame] | 4163 | if (!listener->maxaccept) |
Willy Tarreau | 6616132 | 2021-02-19 15:50:27 +0100 | [diff] [blame] | 4164 | listener->maxaccept = global.tune.maxaccept ? global.tune.maxaccept : MAX_ACCEPT; |
Willy Tarreau | 16a2147 | 2012-11-19 12:39:59 +0100 | [diff] [blame] | 4165 | |
| 4166 | /* we want to have an optimal behaviour on single process mode to |
| 4167 | * maximize the work at once, but in multi-process we want to keep |
| 4168 | * some fairness between processes, so we target half of the max |
| 4169 | * number of events to be balanced over all the processes the proxy |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 4170 | * is bound to. Remember that maxaccept = -1 must be kept as it is |
Willy Tarreau | 16a2147 | 2012-11-19 12:39:59 +0100 | [diff] [blame] | 4171 | * used to disable the limit. |
| 4172 | */ |
Christopher Faulet | 02f3cf1 | 2019-04-30 14:08:41 +0200 | [diff] [blame] | 4173 | if (listener->maxaccept > 0 && nbproc > 1) { |
| 4174 | listener->maxaccept = (listener->maxaccept + 1) / 2; |
Willy Tarreau | 16a2147 | 2012-11-19 12:39:59 +0100 | [diff] [blame] | 4175 | listener->maxaccept = (listener->maxaccept + nbproc - 1) / nbproc; |
| 4176 | } |
| 4177 | |
Willy Tarreau | 9903f0e | 2015-04-04 18:50:31 +0200 | [diff] [blame] | 4178 | listener->accept = session_accept_fd; |
Willy Tarreau | c1a2167 | 2009-08-16 22:37:44 +0200 | [diff] [blame] | 4179 | listener->analysers |= curproxy->fe_req_ana; |
Willy Tarreau | 10b688f | 2015-03-13 16:43:12 +0100 | [diff] [blame] | 4180 | listener->default_target = curproxy->default_target; |
Willy Tarreau | 3bc1377 | 2008-12-07 11:50:35 +0100 | [diff] [blame] | 4181 | |
Willy Tarreau | a5c0ab2 | 2010-05-31 10:30:33 +0200 | [diff] [blame] | 4182 | if (!LIST_ISEMPTY(&curproxy->tcp_req.l4_rules)) |
Willy Tarreau | 7d9736f | 2016-10-21 16:34:21 +0200 | [diff] [blame] | 4183 | listener->options |= LI_O_TCP_L4_RULES; |
Willy Tarreau | a5c0ab2 | 2010-05-31 10:30:33 +0200 | [diff] [blame] | 4184 | |
Willy Tarreau | 620408f | 2016-10-21 16:37:51 +0200 | [diff] [blame] | 4185 | if (!LIST_ISEMPTY(&curproxy->tcp_req.l5_rules)) |
| 4186 | listener->options |= LI_O_TCP_L5_RULES; |
| 4187 | |
Willy Tarreau | 9ea05a7 | 2009-06-14 12:07:01 +0200 | [diff] [blame] | 4188 | /* smart accept mode is automatic in HTTP mode */ |
| 4189 | if ((curproxy->options2 & PR_O2_SMARTACC) || |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4190 | ((curproxy->mode == PR_MODE_HTTP || listener->bind_conf->is_ssl) && |
Willy Tarreau | 9ea05a7 | 2009-06-14 12:07:01 +0200 | [diff] [blame] | 4191 | !(curproxy->no_options2 & PR_O2_SMARTACC))) |
| 4192 | listener->options |= LI_O_NOQUICKACK; |
Willy Tarreau | e6b9894 | 2007-10-29 01:09:36 +0100 | [diff] [blame] | 4193 | } |
| 4194 | |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4195 | /* Release unused SSL configs */ |
| 4196 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
Willy Tarreau | 795cdab | 2016-12-22 17:30:54 +0100 | [diff] [blame] | 4197 | if (!bind_conf->is_ssl && bind_conf->xprt->destroy_bind_conf) |
| 4198 | bind_conf->xprt->destroy_bind_conf(bind_conf); |
Willy Tarreau | 2a65ff0 | 2012-09-13 17:54:29 +0200 | [diff] [blame] | 4199 | } |
Willy Tarreau | f5ae8f7 | 2012-09-07 16:58:00 +0200 | [diff] [blame] | 4200 | |
Willy Tarreau | a38a717 | 2019-02-02 17:11:28 +0100 | [diff] [blame] | 4201 | if (atleast2(curproxy->bind_proc & all_proc_mask)) { |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 4202 | if (curproxy->uri_auth) { |
Willy Tarreau | eb791e0 | 2014-09-16 15:11:04 +0200 | [diff] [blame] | 4203 | int count, maxproc = 0; |
| 4204 | |
| 4205 | list_for_each_entry(bind_conf, &curproxy->conf.bind, by_fe) { |
Willy Tarreau | e26993c | 2020-09-03 07:18:55 +0200 | [diff] [blame] | 4206 | count = my_popcountl(bind_conf->settings.bind_proc); |
Willy Tarreau | eb791e0 | 2014-09-16 15:11:04 +0200 | [diff] [blame] | 4207 | if (count > maxproc) |
| 4208 | maxproc = count; |
| 4209 | } |
| 4210 | /* backends have 0, frontends have 1 or more */ |
| 4211 | if (maxproc != 1) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4212 | ha_warning("Proxy '%s': in multi-process mode, stats will be" |
| 4213 | " limited to process assigned to the current request.\n", |
| 4214 | curproxy->id); |
Willy Tarreau | eb791e0 | 2014-09-16 15:11:04 +0200 | [diff] [blame] | 4215 | |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 4216 | if (!LIST_ISEMPTY(&curproxy->uri_auth->admin_rules)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4217 | ha_warning("Proxy '%s': stats admin will not work correctly in multi-process mode.\n", |
| 4218 | curproxy->id); |
Cyril Bonté | 02ff8ef | 2010-12-14 22:48:49 +0100 | [diff] [blame] | 4219 | } |
Cyril Bonté | 02ff8ef | 2010-12-14 22:48:49 +0100 | [diff] [blame] | 4220 | } |
Willy Tarreau | 102df61 | 2014-05-07 23:56:38 +0200 | [diff] [blame] | 4221 | if (!LIST_ISEMPTY(&curproxy->sticking_rules)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4222 | ha_warning("Proxy '%s': sticking rules will not work correctly in multi-process mode.\n", |
| 4223 | curproxy->id); |
Cyril Bonté | 02ff8ef | 2010-12-14 22:48:49 +0100 | [diff] [blame] | 4224 | } |
| 4225 | } |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 4226 | |
| 4227 | /* create the task associated with the proxy */ |
Emeric Brun | c60def8 | 2017-09-27 14:59:38 +0200 | [diff] [blame] | 4228 | curproxy->task = task_new(MAX_THREADS_MASK); |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 4229 | if (curproxy->task) { |
| 4230 | curproxy->task->context = curproxy; |
| 4231 | curproxy->task->process = manage_proxy; |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 4232 | } else { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4233 | ha_alert("Proxy '%s': no more memory when trying to allocate the management task\n", |
| 4234 | curproxy->id); |
Willy Tarreau | 918ff60 | 2011-07-25 16:33:49 +0200 | [diff] [blame] | 4235 | cfgerr++; |
| 4236 | } |
Willy Tarreau | b369a04 | 2014-09-16 13:21:03 +0200 | [diff] [blame] | 4237 | } |
| 4238 | |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4239 | /* |
Emeric Brun | fe0979f | 2022-08-18 15:53:21 +0200 | [diff] [blame] | 4240 | * We have just initialized the main proxies list |
| 4241 | * we must also configure the log-forward proxies list |
| 4242 | */ |
| 4243 | if (init_proxies_list == proxies_list) { |
| 4244 | init_proxies_list = cfg_log_forward; |
Emeric Brun | ba6af4f | 2022-08-22 10:25:11 +0200 | [diff] [blame] | 4245 | /* check if list is not null to avoid infinite loop */ |
| 4246 | if (init_proxies_list) |
| 4247 | goto init_proxies_list_stage2; |
Emeric Brun | fe0979f | 2022-08-18 15:53:21 +0200 | [diff] [blame] | 4248 | } |
| 4249 | |
| 4250 | /* |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4251 | * Recount currently required checks. |
| 4252 | */ |
| 4253 | |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 4254 | for (curproxy=proxies_list; curproxy; curproxy=curproxy->next) { |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4255 | int optnum; |
| 4256 | |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 4257 | for (optnum = 0; cfg_opts[optnum].name; optnum++) |
| 4258 | if (curproxy->options & cfg_opts[optnum].val) |
| 4259 | global.last_checks |= cfg_opts[optnum].checks; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4260 | |
Willy Tarreau | 66aa61f | 2009-01-18 21:44:07 +0100 | [diff] [blame] | 4261 | for (optnum = 0; cfg_opts2[optnum].name; optnum++) |
| 4262 | if (curproxy->options2 & cfg_opts2[optnum].val) |
| 4263 | global.last_checks |= cfg_opts2[optnum].checks; |
Krzysztof Oledzki | 336d475 | 2007-12-25 02:40:22 +0100 | [diff] [blame] | 4264 | } |
| 4265 | |
Willy Tarreau | 0fca483 | 2015-05-01 19:12:05 +0200 | [diff] [blame] | 4266 | /* compute the required process bindings for the peers */ |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 4267 | for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 4268 | if (curproxy->table && curproxy->table->peers.p) |
| 4269 | curproxy->table->peers.p->peers_fe->bind_proc |= curproxy->bind_proc; |
Willy Tarreau | 0fca483 | 2015-05-01 19:12:05 +0200 | [diff] [blame] | 4270 | |
Frédéric Lécaille | 015e4d7 | 2019-03-19 14:55:01 +0100 | [diff] [blame] | 4271 | /* compute the required process bindings for the peers from <stktables_list> |
| 4272 | * for all the stick-tables, the ones coming with "peers" sections included. |
| 4273 | */ |
| 4274 | for (t = stktables_list; t; t = t->next) { |
| 4275 | struct proxy *p; |
| 4276 | |
| 4277 | for (p = t->proxies_list; p; p = p->next_stkt_ref) { |
| 4278 | if (t->peers.p && t->peers.p->peers_fe) { |
| 4279 | t->peers.p->peers_fe->bind_proc |= p->bind_proc; |
| 4280 | } |
| 4281 | } |
| 4282 | } |
| 4283 | |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 4284 | if (cfg_peers) { |
| 4285 | struct peers *curpeers = cfg_peers, **last; |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 4286 | struct peer *p, *pb; |
| 4287 | |
William Lallemand | a2cfd7e | 2020-03-24 16:02:48 +0100 | [diff] [blame] | 4288 | /* In the case the peers frontend was not initialized by a |
| 4289 | stick-table used in the configuration, set its bind_proc |
| 4290 | by default to the first process. */ |
| 4291 | while (curpeers) { |
William Lallemand | 3ef2d56 | 2020-03-24 16:42:15 +0100 | [diff] [blame] | 4292 | if (curpeers->peers_fe) { |
| 4293 | if (curpeers->peers_fe->bind_proc == 0) |
| 4294 | curpeers->peers_fe->bind_proc = 1; |
| 4295 | } |
William Lallemand | a2cfd7e | 2020-03-24 16:02:48 +0100 | [diff] [blame] | 4296 | curpeers = curpeers->next; |
| 4297 | } |
| 4298 | |
| 4299 | curpeers = cfg_peers; |
Willy Tarreau | 1e27301 | 2015-05-01 19:15:17 +0200 | [diff] [blame] | 4300 | /* Remove all peers sections which don't have a valid listener, |
| 4301 | * which are not used by any table, or which are bound to more |
| 4302 | * than one process. |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 4303 | */ |
Frédéric Lécaille | ed2b4a6 | 2017-07-13 09:07:09 +0200 | [diff] [blame] | 4304 | last = &cfg_peers; |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 4305 | while (*last) { |
Frédéric Lécaille | 87eacbb | 2020-03-24 20:08:30 +0100 | [diff] [blame] | 4306 | struct stktable *t; |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 4307 | curpeers = *last; |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 4308 | |
Willy Tarreau | 1ad64ac | 2020-09-24 08:48:08 +0200 | [diff] [blame] | 4309 | if (curpeers->disabled) { |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 4310 | /* the "disabled" keyword was present */ |
| 4311 | if (curpeers->peers_fe) |
| 4312 | stop_proxy(curpeers->peers_fe); |
| 4313 | curpeers->peers_fe = NULL; |
| 4314 | } |
Frédéric Lécaille | 5a4fe5a | 2019-10-04 08:30:04 +0200 | [diff] [blame] | 4315 | else if (!curpeers->peers_fe || !curpeers->peers_fe->id) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4316 | ha_warning("Removing incomplete section 'peers %s' (no peer named '%s').\n", |
| 4317 | curpeers->id, localpeer); |
Frédéric Lécaille | 87eacbb | 2020-03-24 20:08:30 +0100 | [diff] [blame] | 4318 | if (curpeers->peers_fe) |
| 4319 | stop_proxy(curpeers->peers_fe); |
| 4320 | curpeers->peers_fe = NULL; |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 4321 | } |
Willy Tarreau | 9504dd6 | 2018-10-15 09:37:03 +0200 | [diff] [blame] | 4322 | else if (atleast2(curpeers->peers_fe->bind_proc)) { |
Willy Tarreau | 1e27301 | 2015-05-01 19:15:17 +0200 | [diff] [blame] | 4323 | /* either it's totally stopped or too much used */ |
| 4324 | if (curpeers->peers_fe->bind_proc) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4325 | ha_alert("Peers section '%s': peers referenced by sections " |
| 4326 | "running in different processes (%d different ones). " |
| 4327 | "Check global.nbproc and all tables' bind-process " |
| 4328 | "settings.\n", curpeers->id, my_popcountl(curpeers->peers_fe->bind_proc)); |
Willy Tarreau | 1e27301 | 2015-05-01 19:15:17 +0200 | [diff] [blame] | 4329 | cfgerr++; |
| 4330 | } |
| 4331 | stop_proxy(curpeers->peers_fe); |
| 4332 | curpeers->peers_fe = NULL; |
| 4333 | } |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 4334 | else { |
Frédéric Lécaille | 76d2cef | 2019-02-12 19:12:32 +0100 | [diff] [blame] | 4335 | /* Initializes the transport layer of the server part of all the peers belonging to |
| 4336 | * <curpeers> section if required. |
| 4337 | * Note that ->srv is used by the local peer of a new process to connect to the local peer |
| 4338 | * of an old process. |
| 4339 | */ |
Frédéric Lécaille | 1055e68 | 2018-04-26 14:35:21 +0200 | [diff] [blame] | 4340 | p = curpeers->remote; |
| 4341 | while (p) { |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 4342 | if (p->srv) { |
Christopher Faulet | f61f33a | 2020-03-27 18:55:49 +0100 | [diff] [blame] | 4343 | if (p->srv->use_ssl == 1 && xprt_get(XPRT_SSL) && xprt_get(XPRT_SSL)->prepare_srv) |
Frédéric Lécaille | 355b203 | 2019-01-11 14:06:12 +0100 | [diff] [blame] | 4344 | cfgerr += xprt_get(XPRT_SSL)->prepare_srv(p->srv); |
| 4345 | } |
Frédéric Lécaille | 1055e68 | 2018-04-26 14:35:21 +0200 | [diff] [blame] | 4346 | p = p->next; |
| 4347 | } |
Frédéric Lécaille | 76d2cef | 2019-02-12 19:12:32 +0100 | [diff] [blame] | 4348 | /* Configure the SSL bindings of the local peer if required. */ |
| 4349 | if (!LIST_ISEMPTY(&curpeers->peers_fe->conf.bind)) { |
| 4350 | struct list *l; |
| 4351 | struct bind_conf *bind_conf; |
| 4352 | |
| 4353 | l = &curpeers->peers_fe->conf.bind; |
| 4354 | bind_conf = LIST_ELEM(l->n, typeof(bind_conf), by_fe); |
| 4355 | if (bind_conf->xprt->prepare_bind_conf && |
| 4356 | bind_conf->xprt->prepare_bind_conf(bind_conf) < 0) |
| 4357 | cfgerr++; |
| 4358 | } |
Frédéric Lécaille | 8d78fa7 | 2019-05-20 18:22:52 +0200 | [diff] [blame] | 4359 | if (!peers_init_sync(curpeers) || !peers_alloc_dcache(curpeers)) { |
Willy Tarreau | d944344 | 2018-10-15 11:18:03 +0200 | [diff] [blame] | 4360 | ha_alert("Peers section '%s': out of memory, giving up on peers.\n", |
| 4361 | curpeers->id); |
| 4362 | cfgerr++; |
| 4363 | break; |
| 4364 | } |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 4365 | last = &curpeers->next; |
| 4366 | continue; |
| 4367 | } |
| 4368 | |
Willy Tarreau | 77e4bd1 | 2015-05-01 20:02:17 +0200 | [diff] [blame] | 4369 | /* clean what has been detected above */ |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 4370 | p = curpeers->remote; |
| 4371 | while (p) { |
| 4372 | pb = p->next; |
| 4373 | free(p->id); |
| 4374 | free(p); |
| 4375 | p = pb; |
| 4376 | } |
| 4377 | |
| 4378 | /* Destroy and unlink this curpeers section. |
| 4379 | * Note: curpeers is backed up into *last. |
| 4380 | */ |
| 4381 | free(curpeers->id); |
| 4382 | curpeers = curpeers->next; |
Frédéric Lécaille | 87eacbb | 2020-03-24 20:08:30 +0100 | [diff] [blame] | 4383 | /* Reset any refereance to this peers section in the list of stick-tables */ |
| 4384 | for (t = stktables_list; t; t = t->next) { |
| 4385 | if (t->peers.p && t->peers.p == *last) |
| 4386 | t->peers.p = NULL; |
| 4387 | } |
Willy Tarreau | 122541c | 2011-09-07 21:24:49 +0200 | [diff] [blame] | 4388 | free(*last); |
| 4389 | *last = curpeers; |
| 4390 | } |
| 4391 | } |
| 4392 | |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 4393 | for (t = stktables_list; t; t = t->next) { |
| 4394 | if (t->proxy) |
| 4395 | continue; |
| 4396 | if (!stktable_init(t)) { |
| 4397 | ha_alert("Proxy '%s': failed to initialize stick-table.\n", t->id); |
| 4398 | cfgerr++; |
| 4399 | } |
| 4400 | } |
| 4401 | |
Willy Tarreau | 6866f3f | 2015-05-01 19:09:08 +0200 | [diff] [blame] | 4402 | /* initialize stick-tables on backend capable proxies. This must not |
| 4403 | * be done earlier because the data size may be discovered while parsing |
| 4404 | * other proxies. |
| 4405 | */ |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 4406 | for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) { |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 4407 | if (curproxy->disabled || !curproxy->table) |
Willy Tarreau | 6866f3f | 2015-05-01 19:09:08 +0200 | [diff] [blame] | 4408 | continue; |
| 4409 | |
Frédéric Lécaille | 1b8e68e | 2019-03-14 07:07:41 +0100 | [diff] [blame] | 4410 | if (!stktable_init(curproxy->table)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4411 | ha_alert("Proxy '%s': failed to initialize stick-table.\n", curproxy->id); |
Willy Tarreau | 6866f3f | 2015-05-01 19:09:08 +0200 | [diff] [blame] | 4412 | cfgerr++; |
| 4413 | } |
| 4414 | } |
| 4415 | |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 4416 | if (mailers) { |
| 4417 | struct mailers *curmailers = mailers, **last; |
| 4418 | struct mailer *m, *mb; |
| 4419 | |
| 4420 | /* Remove all mailers sections which don't have a valid listener. |
| 4421 | * This can happen when a mailers section is never referenced. |
| 4422 | */ |
| 4423 | last = &mailers; |
| 4424 | while (*last) { |
| 4425 | curmailers = *last; |
| 4426 | if (curmailers->users) { |
| 4427 | last = &curmailers->next; |
| 4428 | continue; |
| 4429 | } |
| 4430 | |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4431 | ha_warning("Removing incomplete section 'mailers %s'.\n", |
| 4432 | curmailers->id); |
Simon Horman | 0d16a40 | 2015-01-30 11:22:58 +0900 | [diff] [blame] | 4433 | |
| 4434 | m = curmailers->mailer_list; |
| 4435 | while (m) { |
| 4436 | mb = m->next; |
| 4437 | free(m->id); |
| 4438 | free(m); |
| 4439 | m = mb; |
| 4440 | } |
| 4441 | |
| 4442 | /* Destroy and unlink this curmailers section. |
| 4443 | * Note: curmailers is backed up into *last. |
| 4444 | */ |
| 4445 | free(curmailers->id); |
| 4446 | curmailers = curmailers->next; |
| 4447 | free(*last); |
| 4448 | *last = curmailers; |
| 4449 | } |
| 4450 | } |
| 4451 | |
Baptiste Assmann | e11cfcd | 2015-08-19 16:44:03 +0200 | [diff] [blame] | 4452 | /* Update server_state_file_name to backend name if backend is supposed to use |
| 4453 | * a server-state file locally defined and none has been provided */ |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 4454 | for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) { |
Baptiste Assmann | e11cfcd | 2015-08-19 16:44:03 +0200 | [diff] [blame] | 4455 | if (curproxy->load_server_state_from_file == PR_SRV_STATE_FILE_LOCAL && |
| 4456 | curproxy->server_state_file_name == NULL) |
| 4457 | curproxy->server_state_file_name = strdup(curproxy->id); |
| 4458 | } |
| 4459 | |
Emeric Brun | 750fe79 | 2020-12-23 16:51:12 +0100 | [diff] [blame] | 4460 | list_for_each_entry(curr_resolvers, &sec_resolvers, list) { |
Ben Draut | 054fbee | 2018-04-13 15:43:04 -0600 | [diff] [blame] | 4461 | if (LIST_ISEMPTY(&curr_resolvers->nameservers)) { |
| 4462 | ha_warning("config : resolvers '%s' [%s:%d] has no nameservers configured!\n", |
| 4463 | curr_resolvers->id, curr_resolvers->conf.file, |
| 4464 | curr_resolvers->conf.line); |
| 4465 | err_code |= ERR_WARN; |
| 4466 | } |
| 4467 | } |
| 4468 | |
William Lallemand | 48b4bb4 | 2017-10-23 14:36:34 +0200 | [diff] [blame] | 4469 | list_for_each_entry(postparser, &postparsers, list) { |
| 4470 | if (postparser->func) |
| 4471 | cfgerr += postparser->func(); |
| 4472 | } |
| 4473 | |
Willy Tarreau | bb92501 | 2009-07-23 13:36:36 +0200 | [diff] [blame] | 4474 | if (cfgerr > 0) |
| 4475 | err_code |= ERR_ALERT | ERR_FATAL; |
| 4476 | out: |
| 4477 | return err_code; |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4478 | } |
| 4479 | |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 4480 | /* |
| 4481 | * Registers the CFG keyword list <kwl> as a list of valid keywords for next |
| 4482 | * parsing sessions. |
| 4483 | */ |
| 4484 | void cfg_register_keywords(struct cfg_kw_list *kwl) |
| 4485 | { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 4486 | LIST_APPEND(&cfg_keywords.list, &kwl->list); |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 4487 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4488 | |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 4489 | /* |
| 4490 | * Unregisters the CFG keyword list <kwl> from the list of valid keywords. |
| 4491 | */ |
| 4492 | void cfg_unregister_keywords(struct cfg_kw_list *kwl) |
| 4493 | { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 4494 | LIST_DELETE(&kwl->list); |
Willy Tarreau | 5b2c336 | 2008-07-09 19:39:06 +0200 | [diff] [blame] | 4495 | LIST_INIT(&kwl->list); |
| 4496 | } |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4497 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 4498 | /* this function register new section in the haproxy configuration file. |
| 4499 | * <section_name> is the name of this new section and <section_parser> |
| 4500 | * is the called parser. If two section declaration have the same name, |
| 4501 | * only the first declared is used. |
| 4502 | */ |
| 4503 | int cfg_register_section(char *section_name, |
William Lallemand | d2ff56d | 2017-10-16 11:06:50 +0200 | [diff] [blame] | 4504 | int (*section_parser)(const char *, int, char **, int), |
| 4505 | int (*post_section_parser)()) |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 4506 | { |
| 4507 | struct cfg_section *cs; |
| 4508 | |
Willy Tarreau | 5e4261b | 2016-05-17 16:16:09 +0200 | [diff] [blame] | 4509 | list_for_each_entry(cs, §ions, list) { |
| 4510 | if (strcmp(cs->section_name, section_name) == 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4511 | ha_alert("register section '%s': already registered.\n", section_name); |
Willy Tarreau | 5e4261b | 2016-05-17 16:16:09 +0200 | [diff] [blame] | 4512 | return 0; |
| 4513 | } |
| 4514 | } |
| 4515 | |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 4516 | cs = calloc(1, sizeof(*cs)); |
| 4517 | if (!cs) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4518 | ha_alert("register section '%s': out of memory.\n", section_name); |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 4519 | return 0; |
| 4520 | } |
| 4521 | |
| 4522 | cs->section_name = section_name; |
| 4523 | cs->section_parser = section_parser; |
William Lallemand | d2ff56d | 2017-10-16 11:06:50 +0200 | [diff] [blame] | 4524 | cs->post_section_parser = post_section_parser; |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 4525 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 4526 | LIST_APPEND(§ions, &cs->list); |
Thierry FOURNIER | fa45f1d | 2014-03-18 13:54:18 +0100 | [diff] [blame] | 4527 | |
| 4528 | return 1; |
| 4529 | } |
| 4530 | |
William Lallemand | 48b4bb4 | 2017-10-23 14:36:34 +0200 | [diff] [blame] | 4531 | /* this function register a new function which will be called once the haproxy |
| 4532 | * configuration file has been parsed. It's useful to check dependencies |
| 4533 | * between sections or to resolve items once everything is parsed. |
| 4534 | */ |
| 4535 | int cfg_register_postparser(char *name, int (*func)()) |
| 4536 | { |
| 4537 | struct cfg_postparser *cp; |
| 4538 | |
| 4539 | cp = calloc(1, sizeof(*cp)); |
| 4540 | if (!cp) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 4541 | ha_alert("register postparser '%s': out of memory.\n", name); |
William Lallemand | 48b4bb4 | 2017-10-23 14:36:34 +0200 | [diff] [blame] | 4542 | return 0; |
| 4543 | } |
| 4544 | cp->name = name; |
| 4545 | cp->func = func; |
| 4546 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 4547 | LIST_APPEND(&postparsers, &cp->list); |
William Lallemand | 48b4bb4 | 2017-10-23 14:36:34 +0200 | [diff] [blame] | 4548 | |
| 4549 | return 1; |
| 4550 | } |
| 4551 | |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4552 | /* |
David Carlier | 845efb5 | 2015-09-25 11:49:18 +0100 | [diff] [blame] | 4553 | * free all config section entries |
| 4554 | */ |
| 4555 | void cfg_unregister_sections(void) |
| 4556 | { |
| 4557 | struct cfg_section *cs, *ics; |
| 4558 | |
| 4559 | list_for_each_entry_safe(cs, ics, §ions, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 4560 | LIST_DELETE(&cs->list); |
David Carlier | 845efb5 | 2015-09-25 11:49:18 +0100 | [diff] [blame] | 4561 | free(cs); |
| 4562 | } |
| 4563 | } |
| 4564 | |
Christopher Faulet | 7110b40 | 2016-10-26 11:09:44 +0200 | [diff] [blame] | 4565 | void cfg_backup_sections(struct list *backup_sections) |
| 4566 | { |
| 4567 | struct cfg_section *cs, *ics; |
| 4568 | |
| 4569 | list_for_each_entry_safe(cs, ics, §ions, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 4570 | LIST_DELETE(&cs->list); |
| 4571 | LIST_APPEND(backup_sections, &cs->list); |
Christopher Faulet | 7110b40 | 2016-10-26 11:09:44 +0200 | [diff] [blame] | 4572 | } |
| 4573 | } |
| 4574 | |
| 4575 | void cfg_restore_sections(struct list *backup_sections) |
| 4576 | { |
| 4577 | struct cfg_section *cs, *ics; |
| 4578 | |
| 4579 | list_for_each_entry_safe(cs, ics, backup_sections, list) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 4580 | LIST_DELETE(&cs->list); |
| 4581 | LIST_APPEND(§ions, &cs->list); |
Christopher Faulet | 7110b40 | 2016-10-26 11:09:44 +0200 | [diff] [blame] | 4582 | } |
| 4583 | } |
| 4584 | |
Willy Tarreau | e655251 | 2018-11-26 11:33:13 +0100 | [diff] [blame] | 4585 | /* these are the config sections handled by default */ |
| 4586 | REGISTER_CONFIG_SECTION("listen", cfg_parse_listen, NULL); |
| 4587 | REGISTER_CONFIG_SECTION("frontend", cfg_parse_listen, NULL); |
| 4588 | REGISTER_CONFIG_SECTION("backend", cfg_parse_listen, NULL); |
| 4589 | REGISTER_CONFIG_SECTION("defaults", cfg_parse_listen, NULL); |
| 4590 | REGISTER_CONFIG_SECTION("global", cfg_parse_global, NULL); |
| 4591 | REGISTER_CONFIG_SECTION("userlist", cfg_parse_users, NULL); |
| 4592 | REGISTER_CONFIG_SECTION("peers", cfg_parse_peers, NULL); |
| 4593 | REGISTER_CONFIG_SECTION("mailers", cfg_parse_mailers, NULL); |
| 4594 | REGISTER_CONFIG_SECTION("namespace_list", cfg_parse_netns, NULL); |
Willy Tarreau | 659fbf0 | 2016-05-26 17:55:28 +0200 | [diff] [blame] | 4595 | |
Willy Tarreau | 8a022d5 | 2021-04-27 20:29:11 +0200 | [diff] [blame] | 4596 | static struct cfg_kw_list cfg_kws = {{ },{ |
| 4597 | { CFG_GLOBAL, "default-path", cfg_parse_global_def_path }, |
| 4598 | { /* END */ } |
| 4599 | }}; |
| 4600 | |
| 4601 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 4602 | |
David Carlier | 845efb5 | 2015-09-25 11:49:18 +0100 | [diff] [blame] | 4603 | /* |
Willy Tarreau | baaee00 | 2006-06-26 02:48:02 +0200 | [diff] [blame] | 4604 | * Local variables: |
| 4605 | * c-indent-level: 8 |
| 4606 | * c-basic-offset: 8 |
| 4607 | * End: |
| 4608 | */ |