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