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