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