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