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