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