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